Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/lrzip/
Date: Sat, 17 Jul 2021 19:41:29
Message-Id: 1626550710.60bd435238cca3919a5b20e87c2bf00f8904e2f6.dilfridge@gentoo
1 commit: 60bd435238cca3919a5b20e87c2bf00f8904e2f6
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 17 19:38:30 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 17 19:38:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60bd4352
7
8 app-arch/lrzip: remove old
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 app-arch/lrzip/Manifest | 1 -
14 app-arch/lrzip/lrzip-0.631_p20190619.ebuild | 50 -----------------------------
15 2 files changed, 51 deletions(-)
16
17 diff --git a/app-arch/lrzip/Manifest b/app-arch/lrzip/Manifest
18 index 232f61c9ee8..82812d24526 100644
19 --- a/app-arch/lrzip/Manifest
20 +++ b/app-arch/lrzip/Manifest
21 @@ -1,2 +1 @@
22 -DIST lrzip-0.631_p20190619.tar.gz 259195 BLAKE2B d0bedfe02485011e48fa07240b1eef68560d8d61f5d28dae25bd9fcb1c41c1b8bc1b552acb06a49d853b70a0912371cec9caebb2bf7905ef528c2408d2153297 SHA512 f366c31c84a52f6ccfba56e8b11c0bcd270482d9d120e07783fbe310d7a62dddfa60ecd310a7630e7c98cfb961f57fc9e6b843d3857d0c90d36c580074528298
23 DIST lrzip-0.641.tar.gz 262761 BLAKE2B 5a81d9ca8b40c141c90488e9ffcd1dfd5bef3fe7cf9b02c00b9382cd902ef8cd891401f21c9cdd5d5750daf639c05a1e6f1f010fcbf42a9cdaa4f11921fac783 SHA512 cb14dda15485faa24cb840dd94ecd4741bd47464770ae8b27f97b5c263d8a32e40ceb17b288f0f70426598ef2acf84b091593fc8cf7a0f2db0abde88d09a301f
24
25 diff --git a/app-arch/lrzip/lrzip-0.631_p20190619.ebuild b/app-arch/lrzip/lrzip-0.631_p20190619.ebuild
26 deleted file mode 100644
27 index 7afb90831e9..00000000000
28 --- a/app-arch/lrzip/lrzip-0.631_p20190619.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools
37 -
38 -MY_COMMIT="b9220181288c5c9920ff00f00005b31a9e40e387"
39 -
40 -DESCRIPTION="Long Range ZIP or Lzma RZIP optimized for compressing large files"
41 -HOMEPAGE="https://github.com/ckolivas/lrzip"
42 -SRC_URI="https://github.com/ckolivas/lrzip/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 -IUSE="static-libs"
48 -
49 -RDEPEND="dev-libs/lzo
50 - app-arch/bzip2
51 - sys-libs/zlib:="
52 -DEPEND="${RDEPEND}
53 - x86? ( dev-lang/nasm )
54 - virtual/perl-Pod-Parser"
55 -
56 -PATCHES=(
57 - "${FILESDIR}"/${PN}-missing-stdarg_h.patch
58 - "${FILESDIR}"/${PN}-0.631-solaris.patch
59 -)
60 -
61 -S="${WORKDIR}/${PN}-${MY_COMMIT}"
62 -
63 -src_prepare() {
64 - default
65 -
66 - eautoreconf
67 -}
68 -
69 -src_configure() {
70 - econf $(use_enable static-libs static)
71 -}
72 -
73 -src_install() {
74 - default
75 - # Don't collide with net-dialup/lrzsz and /usr/bin/lrz, bug #588206
76 - rm -f "${ED}"/usr/bin/lrz
77 - rm -f "${ED}"/usr/share/man/man1/lrz.*
78 -
79 - find "${D}" -name '*.la' -delete || die
80 -}