commit: e321c256d853d20d4d9b3123e39f5277c1e1a9c4
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 29 18:40:58 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Jun 29 18:47:46 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e321c256
dev-perl/Crypt-Blowfish: -r bump for EAPI7 & fixes
- EAPI7
- Remove some redundancy from DESCRIPTION
- Fix LICENSE ( yes, its really the same licenses as Crypt-IDEA, no idea
what license it is otherwise )
- Parallel tests
- Localise the CFLAGS hackery, which proved to be useful, as the
existing provision that *looked* like it would help, was tested to do
nothing at all!
- Add one test dep so CBC tests are runnable.
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../Crypt-Blowfish-2.140.0-r2.ebuild | 29 ++++++++++++++++++++++
1 file changed, 29 insertions(+)
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
new file mode 100644
index 00000000000..abdc8041bf6
--- /dev/null
+++ b/dev-perl/Crypt-Blowfish/Crypt-Blowfish-2.140.0-r2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=DPARIS
+DIST_VERSION=2.14
+inherit perl-module
+
+DESCRIPTION="Perl Blowfish encryption module"
+
+LICENSE="Crypt-IDEA"
+SLOT="0"
+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"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ dev-perl/Crypt-CBC
+ )
+"
+src_compile() {
+ mymake=(
+ "OPTIMIZE=${CFLAGS}"
+ )
+ perl-module_src_compile
+}