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/frontier-rpc/
Date: Sun, 22 Oct 2017 01:12:28
Message-Id: 1508634729.4e7bb72e89d1bba15f175e39c9bcebb42e7cf8f1.kentnl@gentoo
1 commit: 4e7bb72e89d1bba15f175e39c9bcebb42e7cf8f1
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 22 01:11:43 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 22 01:12:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e7bb72e
7
8 dev-perl/frontier-rpc: EAPI6 + Tests
9
10 - EAPI6ify
11 - Enable tests
12
13 Package-Manager: Portage-2.3.8, Repoman-2.3.3
14
15 .../frontier-rpc/frontier-rpc-0.07_beta4-r2.ebuild | 23 ++++++++++++++++++++++
16 1 file changed, 23 insertions(+)
17
18 diff --git a/dev-perl/frontier-rpc/frontier-rpc-0.07_beta4-r2.ebuild b/dev-perl/frontier-rpc/frontier-rpc-0.07_beta4-r2.ebuild
19 new file mode 100644
20 index 00000000000..f34439cff25
21 --- /dev/null
22 +++ b/dev-perl/frontier-rpc/frontier-rpc-0.07_beta4-r2.ebuild
23 @@ -0,0 +1,23 @@
24 +# Copyright 1999-2017 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=6
28 +
29 +DIST_NAME=Frontier-RPC
30 +DIST_VERSION=0.07b4
31 +DIST_AUTHOR=KMACLEOD
32 +inherit perl-module
33 +
34 +DESCRIPTION="Perform remote procedure calls using extensible markup language"
35 +SRC_URI+=" http://perl-xml.sourceforge.net/xml-rpc/${DIST_NAME}-${DIST_VERSION}.tar.gz"
36 +HOMEPAGE+=" http://perl-xml.sourceforge.net/xml-rpc/"
37 +
38 +SLOT="0"
39 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
40 +IUSE=""
41 +
42 +RDEPEND="
43 + dev-perl/XML-Parser
44 + dev-perl/libwww-perl
45 +"
46 +DEPEND="${RDEPEND}"