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/Crypt-Twofish/
Date: Thu, 02 Jul 2020 14:22:14
Message-Id: 1593699693.d636ee27e76e0bfe0c954eddbcda8350c52cadab.kentnl@gentoo
1 commit: d636ee27e76e0bfe0c954eddbcda8350c52cadab
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 14:21:33 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 14:21:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d636ee27
7
8 dev-perl/Crypt-Twofish: -r bump for EAPI7 + fixes
9
10 - EAPI7
11 - remove empty/unused variable assignments
12 - Parallel tests
13 - Ensure CFLAGS passed to make/compile
14
15 Package-Manager: Portage-2.3.100, Repoman-2.3.22
16 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
17
18 .../Crypt-Twofish/Crypt-Twofish-2.170.0-r2.ebuild | 21 +++++++++++++++++++++
19 1 file changed, 21 insertions(+)
20
21 diff --git a/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r2.ebuild b/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r2.ebuild
22 new file mode 100644
23 index 00000000000..d144fc5de02
24 --- /dev/null
25 +++ b/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r2.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=AMS
33 +DIST_VERSION=2.17
34 +inherit perl-module
35 +
36 +DESCRIPTION="The Twofish Encryption Algorithm"
37 +
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
40 +PATCHES=("${FILESDIR}/no-dot-inc.patch")
41 +
42 +src_compile() {
43 + mymake=(
44 + "OPTIMIZE=${CFLAGS}"
45 + )
46 + perl-module_src_compile
47 +}