Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Compress-LZF/
Date: Fri, 26 Jun 2020 22:21:10
Message-Id: 1593210043.6f06af2f3bb3f3c99be403bd492ff62720da084c.kentnl@gentoo
1 commit: 6f06af2f3bb3f3c99be403bd492ff62720da084c
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 26 22:20:26 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 26 22:20:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f06af2f
7
8 dev-perl/Compress-LZF: -r bump for EAPI7
9
10 - EAPI7
11 - Fix LICENSE
12 - Ensure passing CFLAGS through to make
13
14 Package-Manager: Portage-2.3.100, Repoman-2.3.22
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 .../Compress-LZF/Compress-LZF-3.800.0-r1.ebuild | 23 ++++++++++++++++++++++
18 1 file changed, 23 insertions(+)
19
20 diff --git a/dev-perl/Compress-LZF/Compress-LZF-3.800.0-r1.ebuild b/dev-perl/Compress-LZF/Compress-LZF-3.800.0-r1.ebuild
21 new file mode 100644
22 index 00000000000..4c3508ba9f9
23 --- /dev/null
24 +++ b/dev-perl/Compress-LZF/Compress-LZF-3.800.0-r1.ebuild
25 @@ -0,0 +1,23 @@
26 +# Copyright 1999-2020 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=7
30 +
31 +DIST_AUTHOR=MLEHMANN
32 +DIST_VERSION=3.8
33 +inherit perl-module
34 +
35 +DESCRIPTION="extremely light-weight Lempel-Ziv-Free compression"
36 +# lzfP.h for BSD/GPL2+
37 +LICENSE="|| ( Artistic GPL-1+ ) || ( BSD-2 GPL-2+ )"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86"
40 +
41 +BDEPEND="virtual/perl-ExtUtils-MakeMaker"
42 +
43 +src_compile() {
44 + mymake=(
45 + "OPTIMIZE=${CFLAGS}"
46 + )
47 + perl-module_src_compile
48 +}