Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/plzip/
Date: Sat, 29 Jan 2022 18:13:55
Message-Id: 1643479956.c68c017ca4538afcb9267e283efe453528977eb1.mgorny@gentoo
1 commit: c68c017ca4538afcb9267e283efe453528977eb1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 29 18:12:36 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 29 18:12:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c68c017c
7
8 app-arch/plzip: Bump to 1.10
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/plzip/Manifest | 1 +
13 app-arch/plzip/plzip-1.10.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/app-arch/plzip/Manifest b/app-arch/plzip/Manifest
17 index 17b0e2c6c697..bd14fd2e5e81 100644
18 --- a/app-arch/plzip/Manifest
19 +++ b/app-arch/plzip/Manifest
20 @@ -1,2 +1,3 @@
21 +DIST plzip-1.10.tar.gz 94541 BLAKE2B deb49345ba3d6b120086aa8646f5684a32e6b64453f2ffc6321011dfd0741ddacca919bb11cba9435a26ea6aa63f453e7c5ff9a7dc7dc38c8ed0c6841237aeef SHA512 7fd7ec288800950deaec9337b3112db72cde059721a0143a091650fc20ba2a3d9d7eebbd7a312e5bbb1a61ca6c902d2450e6c3c7172dccf9c0c8b86db7c2a944
22 DIST plzip-1.8.tar.gz 72365 BLAKE2B 66b8881b6c70932c66e40edab22235103d671a870c980c0b0b08754e94fbc1b2d0f2eeb26deac4f27fbc89d69c3b588bd51cb973b7b59cbb2d0f6ab4cc9a115d SHA512 e8e822f8ae77e06178538b62075fa1c5d9cbc76c78bee7ad595a4637cd4077f53fd9e3fe61ca3fbddaa8b950e739d97527dc8fbecae04de1ac3ef83d0d5f13b4
23 DIST plzip-1.9.tar.gz 93312 BLAKE2B a5b9a81cfffa17eca9a4cf4d6b037ad943235022142bd053ec8bcfc4dd99b2b730d69332fa54187ba7704266666efde52d23e13f91c290b9cddb96a87023173e SHA512 3bca603ba6337462bde3967e7c7a7e66287f3a71adf8db987429fcdcb06ebbb90b52e666a7f98ac699bc158cbda21a9cce02490131d33fc44171b84ebb3a4a19
24
25 diff --git a/app-arch/plzip/plzip-1.10.ebuild b/app-arch/plzip/plzip-1.10.ebuild
26 new file mode 100644
27 index 000000000000..e28408c9f42f
28 --- /dev/null
29 +++ b/app-arch/plzip/plzip-1.10.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="Parallel lzip compressor"
39 +HOMEPAGE="https://www.nongnu.org/lzip/plzip.html"
40 +SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="GPL-3"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
45 +IUSE=""
46 +
47 +RDEPEND="app-arch/lzlib:0="
48 +DEPEND=${RDEPEND}
49 +
50 +src_configure() {
51 + local myconf=(
52 + --prefix="${EPREFIX}"/usr
53 + CXX="$(tc-getCXX)"
54 + CPPFLAGS="${CPPFLAGS}"
55 + CXXFLAGS="${CXXFLAGS}"
56 + LDFLAGS="${LDFLAGS}"
57 + )
58 +
59 + # not autotools-based
60 + ./configure "${myconf[@]}" || die
61 +}