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/Digest-Nilsimsa/
Date: Fri, 31 Jul 2020 05:24:36
Message-Id: 1596173034.7476fb950131e1f9c8beba79cc0f56f6acf36f03.kentnl@gentoo
1 commit: 7476fb950131e1f9c8beba79cc0f56f6acf36f03
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 05:23:54 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 05:23:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7476fb95
7
8 dev-perl/Digest-Nilsimsa: -r bump for EAPI7 & CFLAGS love
9
10 - EAPI7
11 - Fix license slightly
12 - Ensure CFLAGS passed to make/compile
13 - Remove empty/unused variable assignments
14
15 Package-Manager: Portage-2.3.103, Repoman-2.3.22
16 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
17
18 .../Digest-Nilsimsa-0.60.0-r3.ebuild | 21 +++++++++++++++++++++
19 1 file changed, 21 insertions(+)
20
21 diff --git a/dev-perl/Digest-Nilsimsa/Digest-Nilsimsa-0.60.0-r3.ebuild b/dev-perl/Digest-Nilsimsa/Digest-Nilsimsa-0.60.0-r3.ebuild
22 new file mode 100644
23 index 00000000000..581f6868f7f
24 --- /dev/null
25 +++ b/dev-perl/Digest-Nilsimsa/Digest-Nilsimsa-0.60.0-r3.ebuild
26 @@ -0,0 +1,21 @@
27 +# Copyright 1999-2020 Gentoo Authors
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +EAPI=7
31 +
32 +DIST_AUTHOR=VIPUL
33 +DIST_VERSION=0.06
34 +inherit perl-module
35 +
36 +DESCRIPTION="Perl version of Nilsimsa code"
37 +# Bug: https://rt.cpan.org/Ticket/Display.html?id=133085
38 +LICENSE="GPL-2+ LGPL-2"
39 +SLOT="0"
40 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
41 +
42 +src_compile() {
43 + mymake=(
44 + "OPTIMIZE=${CFLAGS}"
45 + )
46 + perl-module_src_compile
47 +}