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/lbzip2/
Date: Fri, 24 May 2019 13:15:53
Message-Id: 1558703733.4eef4f1444cb45ca61b14c11969f0aac4cd087ff.whissi@gentoo
1 commit: 4eef4f1444cb45ca61b14c11969f0aac4cd087ff
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 24 13:15:18 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri May 24 13:15:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eef4f14
7
8 app-arch/lbzip2: bump to snapshot release from 2018-12-27
9
10 Closes: https://bugs.gentoo.org/686660
11 Package-Manager: Portage-2.3.66, Repoman-2.3.12
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 app-arch/lbzip2/Manifest | 1 +
15 app-arch/lbzip2/lbzip2-2.5_p20181227.ebuild | 45 +++++++++++++++++++++++++++++
16 2 files changed, 46 insertions(+)
17
18 diff --git a/app-arch/lbzip2/Manifest b/app-arch/lbzip2/Manifest
19 index 1e28c06e66e..8a96825a5a1 100644
20 --- a/app-arch/lbzip2/Manifest
21 +++ b/app-arch/lbzip2/Manifest
22 @@ -1,2 +1,3 @@
23 DIST lbzip2-2.3.tar.gz 630226 BLAKE2B c08a7257eff859c0b7fb66ae638a57f837f1a2380c500c42ea65dc36e5650b30865d3c4c9820d6fed62bdbc4e3bdf7bae9e8bfe519897d9aac7f0c77cceacfb2 SHA512 4f694445cc90377bf8dac5046b952ff174db571f390c2d7b0aa001f73c76f3d3f048ff8e7297c2055ed1f7b210174496dc31d6628e1cbeff63146a36a442ad4c
24 DIST lbzip2-2.5.tar.gz 651399 BLAKE2B a53fc34084ed16c0e78a9f084f68fc0bd1217245e9470ee023f0a4f5a1e2ae4e5866086f9fbc3ff7ec5654c595b4388d9eff495bc0228edbe0322bf9d1fd1f23 SHA512 76e96cfa75b3ed515b2f891349dffc1403daab2dd0a2a614fa0c811cec6ca25faa395da08ad68a9b6ba4069332c4571f70fb7424f06ef3d800c3082c08d7d3d7
25 +DIST lbzip2-2.5_p20181227.tar.gz 704920 BLAKE2B e5da0091c0e4fb73724c5ea472d757d76356cffbf1fc679bf4ee05e25690b7712dceaf17f355383bfd4eb525c4aea04c2e5312592df5bb99159e000769bcee2e SHA512 53b29721a106d280927f2c18f33247645bb7fb3e67d835885d73e037910bf02e473f1210d848df41a387be30f829213d98ac9387b2a9201b94d12117809fbcf5
26
27 diff --git a/app-arch/lbzip2/lbzip2-2.5_p20181227.ebuild b/app-arch/lbzip2/lbzip2-2.5_p20181227.ebuild
28 new file mode 100644
29 index 00000000000..930340af611
30 --- /dev/null
31 +++ b/app-arch/lbzip2/lbzip2-2.5_p20181227.ebuild
32 @@ -0,0 +1,45 @@
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 +DESCRIPTION="Parallel bzip2 utility"
41 +HOMEPAGE="https://github.com/kjn/lbzip2/"
42 +SRC_URI="https://dev.gentoo.org/~whissi/dist/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-3"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
47 +IUSE="debug symlink"
48 +
49 +RDEPEND="symlink? ( !app-arch/pbzip2[symlink] )"
50 +DEPEND=""
51 +
52 +PATCHES=(
53 + "${FILESDIR}"/${PN}-2.3-s_isreg.patch
54 +)
55 +
56 +src_prepare() {
57 + default
58 +
59 + eautoreconf
60 +}
61 +
62 +src_configure() {
63 + local myeconfargs=(
64 + --disable-silent-rules
65 + $(use_enable debug tracing)
66 + )
67 + econf "${myeconfargs[@]}"
68 +}
69 +
70 +src_install() {
71 + default
72 +
73 + if use symlink; then
74 + dosym ${PN} /usr/bin/bzip2
75 + dosym lbunzip2 /usr/bin/bunzip2
76 + fi
77 +}