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/lzip/
Date: Fri, 04 Feb 2022 20:45:00
Message-Id: 1644007430.5c0c6e7c203ec1cfdc04609b8ddfdce1766a88a0.mgorny@gentoo
1 commit: 5c0c6e7c203ec1cfdc04609b8ddfdce1766a88a0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 4 20:43:50 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 4 20:43:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0c6e7c
7
8 app-arch/lzip: Bump to 1.23
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/lzip/Manifest | 1 +
13 app-arch/lzip/lzip-1.23.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/app-arch/lzip/Manifest b/app-arch/lzip/Manifest
17 index 7627a121f501..30ca2e650ed6 100644
18 --- a/app-arch/lzip/Manifest
19 +++ b/app-arch/lzip/Manifest
20 @@ -1 +1,2 @@
21 DIST lzip-1.22.tar.gz 120769 BLAKE2B d6d4faaff981d64219e27364c7072f9e1309507220e80d4195d866c3429db537a9fa9b7a4ac67ef5c267cad0f6e43ce997a98f1e47a88b228bd1aa437c991140 SHA512 318de74effdbdfa79070d28919459a85bf1efe662b818b8af2a3daa964b6c24e3386c37de360c6d5b8b624d549b5c9ed777c6234561129c477e03d92ac2db206
22 +DIST lzip-1.23.tar.gz 121817 BLAKE2B 934a35e31b0db76c4dcbe2fe903f04b60471485118aa5d4001599a3c23a7db74f05f703cf430bb299795be7025f71efb225afddff85c8245e962bdadcf82aef7 SHA512 482804205b6e92fdf9cb17fb9482df7987227c7b1bef9e42d78787acfabe73995f5b1a66f847d2176423f22dce56f1122c5b1c9670f0b778c0bdad2852369c85
23
24 diff --git a/app-arch/lzip/lzip-1.23.ebuild b/app-arch/lzip/lzip-1.23.ebuild
25 new file mode 100644
26 index 000000000000..9472e59e3d1d
27 --- /dev/null
28 +++ b/app-arch/lzip/lzip-1.23.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit toolchain-funcs
36 +
37 +DESCRIPTION="lossless data compressor based on the LZMA algorithm"
38 +HOMEPAGE="https://www.nongnu.org/lzip/lzip.html"
39 +SRC_URI="https://download.savannah.gnu.org/releases/${PN}/${P/_/-}.tar.gz"
40 +S="${WORKDIR}/${P/_/-}"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
45 +
46 +src_configure() {
47 + # not autotools-based
48 + ./configure \
49 + --prefix="${EPREFIX}"/usr \
50 + CXX="$(tc-getCXX)" \
51 + CPPFLAGS="${CPPFLAGS}" \
52 + CXXFLAGS="${CXXFLAGS}" \
53 + LDFLAGS="${LDFLAGS}" || die
54 +}