commit: 12ad64bd70a1cef923293e0f6ccc5c8a71d03c73 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Sat Mar 8 19:18:57 2025 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Sat Mar 8 19:19:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12ad64bd
app-arch/unp: drop 2.0_pre9, 2.0_pre10, EAPI=7-- Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> app-arch/unp/Manifest | 2 -- app-arch/unp/unp-2.0_pre10.ebuild | 52 --------------------------------------- app-arch/unp/unp-2.0_pre9.ebuild | 49 ------------------------------------ 3 files changed, 103 deletions(-) diff --git a/app-arch/unp/Manifest b/app-arch/unp/Manifest index 1388f986cc78..5e38038a6028 100644 --- a/app-arch/unp/Manifest +++ b/app-arch/unp/Manifest @@ -1,3 +1 @@ DIST unp_2.0.tar.xz 19252 BLAKE2B d807cdae6cccd846b3d138b7060b17f37f6f6962e2dd75400e86f0fd8f7f4721afbf29509dfce16beb5dac66996df45cc146d72312f859999f33d435f66890d5 SHA512 bdb2059aa3f1872efd49eb6c8e2fa3a09c05d9e1c26abdcfc4e728699c25a132ea610525461e94183263086756e9b60daeb5cecf69533578d01ab1a37b0af744 -DIST unp_2.0~pre10.tar.xz 17992 BLAKE2B 63d8c995091a1342677b6aed5854293c582cb6d42c6748ef3d92347ca75e1d3e9e5b128309299ec0b6fc0361bc14dededcc8e290fe8721aecfe82665e07998e9 SHA512 3f8f9f20eef88658b4b00efd37208d859fb3220178f9446696f755a864fea3c3dd301100668bd9c97ca9312ebe961aaf9ec523d8817b8aacb5a1ee6a36213666 -DIST unp_2.0~pre9.tar.xz 16424 BLAKE2B 9042f48be0f80d5e40a08161a35c282ba458dc98cf13992835bdeecebd5fbadd33b3af9165738332cb9f508550a234a48d314332f00ecdacc808a8051eb0740b SHA512 74c9a6e143c9023bdd456dacff5c3a6e30722e259f324c066fe3eed9e4a09c38b399b381719c8677c2fa84434c1e7720384d782d97c098fa6fbcbdbf4030986e diff --git a/app-arch/unp/unp-2.0_pre10.ebuild b/app-arch/unp/unp-2.0_pre10.ebuild deleted file mode 100644 index c719be032835..000000000000 --- a/app-arch/unp/unp-2.0_pre10.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 strip-linguas - -DESCRIPTION="Script for unpacking various file formats" -HOMEPAGE="https://packages.qa.debian.org/u/unp.html" -MY_PV="${PV/_pre/$'\x7e'pre}" -SRC_URI="mirror://debian/pool/main/u/unp/${PN}_${MY_PV}.tar.xz" -S="${WORKDIR}/${PN}-${MY_PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="nls" - -DEPEND="nls? ( sys-devel/gettext )" - -RDEPEND="${DEPEND} - dev-lang/perl" - -# tests in upstream tarball are missing sample files -RESTRICT="test" - -src_compile() { - if use nls; then - strip-linguas -i . - if [ -n "$LINGUAS" ]; then - emake -C po MOFILES="${LINGUAS// /.po }.po" - else - emake -C po - fi - fi -} - -src_install() { - dobin unp - dosym unp /usr/bin/ucat - doman debian/unp.1 - dodoc debian/changelog debian/README.Debian - newbashcomp debian/unp.bash-completion unp - - if use nls; then - if [ -n "$LINGUAS" ]; then - emake -C po MOFILES="${LINGUAS// /.mo }.mo" DESTDIR="${D}" install - else - emake -C po DESTDIR="${D}" install - fi - fi -} diff --git a/app-arch/unp/unp-2.0_pre9.ebuild b/app-arch/unp/unp-2.0_pre9.ebuild deleted file mode 100644 index f1c6e585a03f..000000000000 --- a/app-arch/unp/unp-2.0_pre9.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit bash-completion-r1 strip-linguas - -DESCRIPTION="Script for unpacking various file formats" -HOMEPAGE="https://packages.qa.debian.org/u/unp.html" -MY_PV="${PV/_pre/$'\x7e'pre}" -SRC_URI="mirror://debian/pool/main/u/unp/${PN}_${MY_PV}.tar.xz" -S="${WORKDIR}/${PN}-${MY_PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="nls" - -DEPEND="nls? ( sys-devel/gettext )" - -RDEPEND="${DEPEND} - dev-lang/perl" - -src_compile() { - if use nls; then - strip-linguas -i . - if [ -n "$LINGUAS" ]; then - emake -C po MOFILES="${LINGUAS// /.po }.po" - else - emake -C po - fi - fi -} - -src_install() { - dobin unp - dosym unp /usr/bin/ucat - doman debian/unp.1 - dodoc debian/changelog debian/README.Debian - newbashcomp debian/unp.bash-completion unp - - if use nls; then - if [ -n "$LINGUAS" ]; then - emake -C po MOFILES="${LINGUAS// /.mo }.mo" DESTDIR="${D}" install - else - emake -C po DESTDIR="${D}" install - fi - fi -}
