Skip to content

Commit

Permalink
app-admin/gentoo-perl-helpers: Bump to version 0.3.1
Browse files Browse the repository at this point in the history
Package-Manager: Portage-2.3.8, Repoman-2.3.3
  • Loading branch information
kentfredric committed Oct 12, 2017
1 parent 0d719cb commit 4627c60
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
1 change: 1 addition & 0 deletions app-admin/gentoo-perl-helpers/Manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ DIST gentoo-perl-helpers-0.2.0.tar.xz 8876 SHA256 73ed0e54870ca3979067251c35750a
DIST gentoo-perl-helpers-0.2.1.tar.xz 8904 SHA256 6e6e5e1a0162771cc7874dbd86910790bed9538e82355875308eafd3691d44c4 SHA512 f2815f0bc893faa815482333c79da0ea81eedb0919d9eec9d2403e0f6d886fa28561221a4f1b4b9d48b6182dea37a02ab79fcea2322a837817948428146a5ba3 WHIRLPOOL fe9742df1235a010a1c52249b510230d65668f3c95da75a0161e9d43431cc41336c77d9748126f77619a19fe0daec1bce0be7c1798b39ca57f52dab25e99f232
DIST gentoo-perl-helpers-0.2.2.tar.xz 9096 SHA256 1b6479d573f14458e3daa7a4b75b8c30867b480d1f94ca70c03c261bbd867ba3 SHA512 97653cbcff01cb65b5aa8b5e56ecdafedddfed773b8f41120707066d8c3d837634b9d2996eeed069cf434175684ac38a0e829719dd88a3bfd14e2e0ab6f80a14 WHIRLPOOL cd0fa43068dd30b7ee971e14006cf6818fdd22c89a88937a39b64fdf73c29f4066a1f27673485bb406ca41acf6234c4a87e2283b18081041ac22683700892e6b
DIST gentoo-perl-helpers-0.3.0.tar.xz 9392 SHA256 030aba5f692b77bced185af7ca158ccaa5207874062f965357e4bda57ff82031 SHA512 3feaf287457d0b4fa29cc58878566b38674b0c112ba356727bbce2bcff9b9cca07cec34cfb960260a0a32542c43611b783f74ee4127c9c0aa33843a144544c13 WHIRLPOOL bd2d60dbd5fb337e8d00797b082d9c3fb5ccd39459d15d1949ad1b4d66a97d0ad8337a1dfb4e9e446a4af21d740321f861a79e0ad08894fda6e2691769d628c9
DIST gentoo-perl-helpers-0.3.1.tar.xz 9420 SHA256 091631c606537304dae042827e5d2c45507110b51651fab5945db1665565751a SHA512 dce6addfebbdfd16da3b580776c34346eb60b2eaef9cc7bed03d5ae0bf028de7a0175fbf7f68113d44b645c3d5ca7f5175389478655b08c115a5342ff930e096 WHIRLPOOL a0b76c9ff5ccee74a63d5cb11b088d7c3b5c768b32a80c6a4318f9872190d44a60e28ed86e143c5b980fcfc0324291f41cbf04fd5d3ba63f27ab464ed0553b5a
54 changes: 54 additions & 0 deletions app-admin/gentoo-perl-helpers/gentoo-perl-helpers-0.3.1.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

DESCRIPTION="Introspection and Upgrade Assistance tools for Gentoo Perl"
HOMEPAGE="https://github.com/gentoo-perl/gentoo-perl-helpers"
SRC_URI="
https://github.com/gentoo-perl/${PN}/releases/download/${PV}/${P}.tar.xz
mirror://gentoo/${P}.tar.xz
https://dev.gentoo.org/~kentnl/distfiles/${P}.tar.xz
"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE=""

# Assumed System:
# sys-apps/coreutils
# sys-apps/grep
# sys-apps/findutils
# sys-apps/sed
# app-shells/bash
# sys-apps/gawk
# app-arch/tar

RDEPEND="
$(: --format support)
>=app-portage/portage-utils-0.60
sys-apps/portage
"
DEPEND=""

src_prepare() {
sed -i -e "s^@@LIBDIR@@^${EPREFIX}/usr/lib/gentoo-perl-helpers^g" \
-e "s^@@LIBEXECDIR@@^${EPREFIX}/usr/libexec/gentoo-perl-helpers^g" \
"${S}/bin/gentoo-perl" \
"${S}/lib/core-functions.sh" \
|| die "Can't patch bin/gentoo-perl"
default
}
src_compile() { :; }
src_install() {
exeinto /usr/bin
doexe "${S}/bin/"*

exeinto /usr/libexec/gentoo-perl-helpers
doexe "${S}/libexec/"*

insinto /usr/lib/gentoo-perl-helpers
doins -r "${S}/lib/"*

dodoc "${S}/README.mkdn" "${S}/Changes"
}

0 comments on commit 4627c60

Please sign in to comment.