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/lzlib/
Date: Sat, 29 Jan 2022 18:13:55
Message-Id: 1643479884.12a146807bbc9ea9488826c0fa43cce458163c47.mgorny@gentoo
1 commit: 12a146807bbc9ea9488826c0fa43cce458163c47
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 29 18:11:24 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 29 18:11:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a14680
7
8 app-arch/lzlib: Bump to 1.13
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/lzlib/Manifest | 1 +
13 app-arch/lzlib/lzlib-1.13.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/app-arch/lzlib/Manifest b/app-arch/lzlib/Manifest
17 index 7911ded06777..a9d3ec48eb6a 100644
18 --- a/app-arch/lzlib/Manifest
19 +++ b/app-arch/lzlib/Manifest
20 @@ -1,2 +1,3 @@
21 DIST lzlib-1.11.tar.gz 105873 BLAKE2B 6caadc4c3b78db835bcf4f11e5290342f0f952943006589345898a85211b0a0ae5d775d0a8e7747c549eae00dd0abd2e2afb5c07eb75b4fda712a9361a71bd59 SHA512 5aa3ff084177efe906518724a98a78c32d1c0e02b967800a44388fc6af441de48fcc5899457913fca11fae3beb8bebc260ac447f0a336b1c14f3f13726114567
22 DIST lzlib-1.12.tar.gz 128996 BLAKE2B 3a86005eaf660a45888ec5af97bc6100368da2a3003c119c2379e881cd77ef318707342b7c930efa9473b671b8c2aff5c5e00dd5b312f647b7cafc39f29a2eea SHA512 b5379422eed4016b0ee124e39902dd22c314ca5cc5f72c1af5ec2ef6a68e1e85c523ab18e30048d453689f73f780d0144dcabaf881337e1c8101e2fe17ee21f8
23 +DIST lzlib-1.13.tar.gz 130005 BLAKE2B 88721890f111c2bb1901329e9cc39e7f581c220bb58bbc93098c34984b7557a80adff236f5755057099870ba20201f6b692925080b97965b4612d221d21cb33c SHA512 b9c4e5a9aca982984b497d1da2e1f0439b37b19acaf88a02f5af114b0a65a828c5ae235b3bd4f419ce001963de38a4d03445a6a1bd93f37e783e799abd75578d
24
25 diff --git a/app-arch/lzlib/lzlib-1.13.ebuild b/app-arch/lzlib/lzlib-1.13.ebuild
26 new file mode 100644
27 index 000000000000..070ed59f4850
28 --- /dev/null
29 +++ b/app-arch/lzlib/lzlib-1.13.ebuild
30 @@ -0,0 +1,32 @@
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="Library for lzip compression"
39 +HOMEPAGE="https://www.nongnu.org/lzip/lzlib.html"
40 +SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="libstdc++" # fancy form of GPL-2+ with library exception
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
45 +IUSE=""
46 +
47 +src_configure() {
48 + local myconf=(
49 + --enable-shared
50 + --disable-static
51 + --disable-ldconfig
52 + --prefix="${EPREFIX}"/usr
53 + --libdir='$(prefix)'/$(get_libdir)
54 + CC="$(tc-getCC)"
55 + CFLAGS="${CFLAGS}"
56 + CPPFLAGS="${CPPFLAGS}"
57 + LDFLAGS="${LDFLAGS}"
58 + )
59 +
60 + # not autotools-based
61 + ./configure "${myconf[@]}" || die
62 +}