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-Blowfish/
Date: Mon, 29 Jun 2020 18:48:17
Message-Id: 1593456466.e321c256d853d20d4d9b3123e39f5277c1e1a9c4.kentnl@gentoo
1 commit: e321c256d853d20d4d9b3123e39f5277c1e1a9c4
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 29 18:40:58 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 29 18:47:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e321c256
7
8 dev-perl/Crypt-Blowfish: -r bump for EAPI7 & fixes
9
10 - EAPI7
11 - Remove some redundancy from DESCRIPTION
12 - Fix LICENSE ( yes, its really the same licenses as Crypt-IDEA, no idea
13 what license it is otherwise )
14 - Parallel tests
15 - Localise the CFLAGS hackery, which proved to be useful, as the
16 existing provision that *looked* like it would help, was tested to do
17 nothing at all!
18 - Add one test dep so CBC tests are runnable.
19
20 Package-Manager: Portage-2.3.100, Repoman-2.3.22
21 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
22
23 .../Crypt-Blowfish-2.140.0-r2.ebuild | 29 ++++++++++++++++++++++
24 1 file changed, 29 insertions(+)
25
26 diff --git a/dev-perl/Crypt-Blowfish/Crypt-Blowfish-2.140.0-r2.ebuild b/dev-perl/Crypt-Blowfish/Crypt-Blowfish-2.140.0-r2.ebuild
27 new file mode 100644
28 index 00000000000..abdc8041bf6
29 --- /dev/null
30 +++ b/dev-perl/Crypt-Blowfish/Crypt-Blowfish-2.140.0-r2.ebuild
31 @@ -0,0 +1,29 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DIST_AUTHOR=DPARIS
38 +DIST_VERSION=2.14
39 +inherit perl-module
40 +
41 +DESCRIPTION="Perl Blowfish encryption module"
42 +
43 +LICENSE="Crypt-IDEA"
44 +SLOT="0"
45 +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"
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +
49 +BDEPEND="
50 + virtual/perl-ExtUtils-MakeMaker
51 + test? (
52 + dev-perl/Crypt-CBC
53 + )
54 +"
55 +src_compile() {
56 + mymake=(
57 + "OPTIMIZE=${CFLAGS}"
58 + )
59 + perl-module_src_compile
60 +}