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/pdlzip/
Date: Thu, 07 Jan 2021 00:55:43
Message-Id: 1609980936.d9092845a43876a2242517d4fbce306100f1359c.mgorny@gentoo
1 commit: d9092845a43876a2242517d4fbce306100f1359c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 00:46:15 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 00:55:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9092845
7
8 app-arch/pdlzip: Bump to 1.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/pdlzip/Manifest | 1 +
13 app-arch/pdlzip/pdlzip-1.11.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/app-arch/pdlzip/Manifest b/app-arch/pdlzip/Manifest
17 index ab89ec193a3..fb4c226eae0 100644
18 --- a/app-arch/pdlzip/Manifest
19 +++ b/app-arch/pdlzip/Manifest
20 @@ -1 +1,2 @@
21 DIST pdlzip-1.10.tar.gz 62416 BLAKE2B 7e8a4bc5793e10a819e911535149336138473b30b552e6d728b3f547e13e34540ac8fa91d84656c3feeb2816c06cd636cf3eafc5b031cca2b63e704a8f7f6ee8 SHA512 a0da45df3af68176d1ebceccba833d0d41b04750d37e90b3da6f1bdc98a41fffcb8e0ce04a296a31351aa7babd1dcaddf08f616d103970ad5fbf13e469f287ad
22 +DIST pdlzip-1.11.tar.gz 73641 BLAKE2B 32b59f7ce1eb70916cba96444234fa95c4c798b00f32f54c0ec51e6c6558c7b01ee118f82c011a6d642a58b11b5f270bffe21df8d9b62478b809a84abe51164a SHA512 8fc3639ab1367026d9b5185d2f9db321b1eccfb2f2f3eebc22a41b10b2a824e598dd81d9d701923a7f55943501189b11f4ec00b0187dbadd56b06e329b750075
23
24 diff --git a/app-arch/pdlzip/pdlzip-1.11.ebuild b/app-arch/pdlzip/pdlzip-1.11.ebuild
25 new file mode 100644
26 index 00000000000..521219ce7f4
27 --- /dev/null
28 +++ b/app-arch/pdlzip/pdlzip-1.11.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit toolchain-funcs
36 +
37 +DESCRIPTION="Public-domain version of lzip compressor"
38 +HOMEPAGE="https://www.nongnu.org/lzip/pdlzip.html"
39 +SRC_URI="https://download.savannah.gnu.org/releases/lzip/pdlzip/${P}.tar.gz"
40 +
41 +LICENSE="public-domain"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~mips ~x86"
44 +IUSE=""
45 +
46 +src_configure() {
47 + local myconf=(
48 + --prefix="${EPREFIX}"/usr
49 + CC="$(tc-getCC)"
50 + CFLAGS="${CFLAGS}"
51 + CPPFLAGS="${CPPFLAGS}"
52 + LDFLAGS="${LDFLAGS}"
53 + )
54 +
55 + # not autotools-based
56 + ./configure "${myconf[@]}" || die
57 +}