Gentoo Archives: gentoo-commits

From: Kent Fredric <kentfredric@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/WWW-REST/
Date: Sat, 04 Jul 2015 05:21:11
Message-Id: 1435977414.34c576a54c65ff50f1b41a0e690694f0e7a5f9bb.kent@gentoo
1 commit: 34c576a54c65ff50f1b41a0e690694f0e7a5f9bb
2 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
3 AuthorDate: Sat Jul 4 02:36:54 2015 +0000
4 Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
5 CommitDate: Sat Jul 4 02:36:54 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/perl-overlay.git/commit/?id=34c576a5
7
8 dev-perl/WWW-REST: EAPI5, Normalise version
9
10 Package-Manager: portage-2.2.17
11
12 dev-perl/WWW-REST/ChangeLog | 8 --------
13 dev-perl/WWW-REST/WWW-REST-0.01-r1.ebuild | 21 ---------------------
14 dev-perl/WWW-REST/WWW-REST-0.11.0.ebuild | 28 ++++++++++++++++++++++++++++
15 3 files changed, 28 insertions(+), 29 deletions(-)
16
17 diff --git a/dev-perl/WWW-REST/ChangeLog b/dev-perl/WWW-REST/ChangeLog
18 deleted file mode 100644
19 index ff9ca89..0000000
20 --- a/dev-perl/WWW-REST/ChangeLog
21 +++ /dev/null
22 @@ -1,8 +0,0 @@
23 -# ChangeLog for dev-perl/WWW-REST
24 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: $
26 -
27 - 09 Jul 2009; Daniel Westermann-Clark <dwc@×××××.com>
28 - WWW-REST-0.01-r1.ebuild, +metadata.xml:
29 - Convert to EAPI=2 and add metadata.xml
30 -
31
32 diff --git a/dev-perl/WWW-REST/WWW-REST-0.01-r1.ebuild b/dev-perl/WWW-REST/WWW-REST-0.01-r1.ebuild
33 deleted file mode 100644
34 index 14d01cc..0000000
35 --- a/dev-perl/WWW-REST/WWW-REST-0.01-r1.ebuild
36 +++ /dev/null
37 @@ -1,21 +0,0 @@
38 -# Copyright 1999-2009 Gentoo Foundation
39 -# Distributed under the terms of the GNU General Public License v2
40 -# $Header: $
41 -
42 -EAPI=2
43 -
44 -MODULE_AUTHOR=AUTRIJUS
45 -inherit perl-module
46 -
47 -DESCRIPTION="Base class for REST resources"
48 -
49 -SLOT="0"
50 -LICENSE="|| ( Artistic GPL-2 )"
51 -KEYWORDS="~amd64 ~x86"
52 -SRC_TEST="do"
53 -
54 -IUSE="test"
55 -RDEPEND="dev-perl/URI
56 - dev-perl/libwww-perl"
57 -DEPEND="${RDEPEND}
58 - test? ( virtual/perl-Test-Simple )"
59
60 diff --git a/dev-perl/WWW-REST/WWW-REST-0.11.0.ebuild b/dev-perl/WWW-REST/WWW-REST-0.11.0.ebuild
61 new file mode 100644
62 index 0000000..5990a6d
63 --- /dev/null
64 +++ b/dev-perl/WWW-REST/WWW-REST-0.11.0.ebuild
65 @@ -0,0 +1,28 @@
66 +# Copyright 1999-2015 Gentoo Foundation
67 +# Distributed under the terms of the GNU General Public License v2
68 +# $Header: $
69 +
70 +EAPI=5
71 +
72 +MODULE_AUTHOR=AUDREYT
73 +MODULE_VERSION=0.011
74 +inherit perl-module
75 +
76 +DESCRIPTION="Base class for REST resources"
77 +LICENSE="CC0-1.0"
78 +SLOT="0"
79 +KEYWORDS="~amd64 ~x86"
80 +
81 +# Class::Struct -> perl
82 +# HTTP::Request::Common -> HTTP-Message
83 +# LWP::UserAgent -> libwww-perl
84 +IUSE="test"
85 +RDEPEND="
86 + dev-perl/HTTP-Message
87 + dev-perl/libwww-perl
88 + dev-perl/URI
89 +"
90 +DEPEND="${RDEPEND}
91 + >=virtual/perl-ExtUtils-MakeMaker-6.590.0
92 + test? ( virtual/perl-Test-Simple )
93 +"