Gentoo Archives: gentoo-commits

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