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-DES/
Date: Tue, 30 Jun 2020 16:02:11
Message-Id: 1593532913.7fbfc32611f111174ac4f7b8d2f2d8e3303f5304.kentnl@gentoo
1 commit: 7fbfc32611f111174ac4f7b8d2f2d8e3303f5304
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 30 15:53:37 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 30 16:01:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fbfc326
7
8 dev-perl/Crypt-DES: -r bump for EAPI7 and fixes
9
10 - EAPI7
11 - Correct BDEPENDS slightly
12 - Ensure CFLAGS passed through to make ( the existing code that appeared
13 to do this simply _DID NOT WORK_ )
14
15 Package-Manager: Portage-2.3.100, Repoman-2.3.22
16 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
17
18 dev-perl/Crypt-DES/Crypt-DES-2.70.0-r2.ebuild | 27 +++++++++++++++++++++++++++
19 1 file changed, 27 insertions(+)
20
21 diff --git a/dev-perl/Crypt-DES/Crypt-DES-2.70.0-r2.ebuild b/dev-perl/Crypt-DES/Crypt-DES-2.70.0-r2.ebuild
22 new file mode 100644
23 index 00000000000..ebaea9455c7
24 --- /dev/null
25 +++ b/dev-perl/Crypt-DES/Crypt-DES-2.70.0-r2.ebuild
26 @@ -0,0 +1,27 @@
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=DPARIS
33 +DIST_VERSION=2.07
34 +inherit perl-module
35 +
36 +DESCRIPTION="Perl DES encryption module"
37 +
38 +LICENSE="DES"
39 +SLOT="0"
40 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
41 +IUSE="test"
42 +RESTRICT="!test? ( test )"
43 +
44 +BDEPEND="
45 + virtual/perl-ExtUtils-MakeMaker
46 + test? ( dev-perl/Crypt-CBC )
47 +"
48 +src_compile() {
49 + mymake=(
50 + "OPTIMIZE=${CFLAGS}"
51 + )
52 + perl-module_src_compile
53 +}