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/Cache-Memcached/
Date: Sat, 09 May 2020 02:20:53
Message-Id: 1588990834.e52f86df9bd339ad0ae4549121e7485470928bb7.kentnl@gentoo
1 commit: e52f86df9bd339ad0ae4549121e7485470928bb7
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 9 02:19:31 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Sat May 9 02:20:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52f86df
7
8 dev-perl/Cache-Memcached: -r bump for EAPI7
9
10 - EAPI7
11 - Fix depends
12 - Prune empty variable assignments and unused vars
13 - Reflect upstream license as much as possible re bug #721730
14 - Annotate testing requirements
15 - Parallel tests
16
17 Bug: https://bugs.gentoo.org/721730
18 Package-Manager: Portage-2.3.99, Repoman-2.3.22
19 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
20
21 .../Cache-Memcached-1.300.0-r2.ebuild | 32 ++++++++++++++++++++++
22 1 file changed, 32 insertions(+)
23
24 diff --git a/dev-perl/Cache-Memcached/Cache-Memcached-1.300.0-r2.ebuild b/dev-perl/Cache-Memcached/Cache-Memcached-1.300.0-r2.ebuild
25 new file mode 100644
26 index 00000000000..63dd6a3526d
27 --- /dev/null
28 +++ b/dev-perl/Cache-Memcached/Cache-Memcached-1.300.0-r2.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DIST_AUTHOR=DORMANDO
36 +DIST_VERSION=1.30
37 +inherit perl-module
38 +
39 +DESCRIPTION="Perl API for memcached"
40 +HOMEPAGE="http://www.danga.com/memcached/ https://metacpan.org/release/Cache-Memcached"
41 +# Bug: https://bugs.gentoo.org/721730
42 +LICENSE="|| ( Artistic GPL-1 )"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
45 +
46 +RDEPEND="
47 + virtual/perl-Encode
48 + virtual/perl-Storable
49 + dev-perl/String-CRC32
50 + virtual/perl-Time-HiRes
51 +"
52 +BDEPEND="${RDEPEND}
53 + virtual/perl-ExtUtils-MakeMaker
54 +"
55 +src_test() {
56 + ewarn "Comprehensive testing of this module needs manual configuration."
57 + ewarn "For details, see:"
58 + ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}"
59 + echo
60 + perl-module_src_test
61 +}