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/Smart-Comments/
Date: Sun, 03 Apr 2011 23:52:50
Message-Id: f51c4d67bf1e8a35f243f39482227a1a313bcca3.kent@gentoo
1 commit: f51c4d67bf1e8a35f243f39482227a1a313bcca3
2 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
3 AuthorDate: Sun Apr 3 23:52:14 2011 +0000
4 Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
5 CommitDate: Sun Apr 3 23:52:14 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=f51c4d67
7
8 [fix] Remove version magic from Smart::Comments
9
10 (Portage version: 2.2.0_alpha29/git/Linux x86_64, signed Manifest commit with key 0A0CB301)
11
12 ---
13 dev-perl/Smart-Comments/ChangeLog | 5 +++++
14 .../Smart-Comments/Smart-Comments-1.0.3.ebuild | 16 ++++++++--------
15 .../Smart-Comments/Smart-Comments-1.0.4.ebuild | 10 +++++-----
16 3 files changed, 18 insertions(+), 13 deletions(-)
17
18 diff --git a/dev-perl/Smart-Comments/ChangeLog b/dev-perl/Smart-Comments/ChangeLog
19 index 1ffb264..ec0d8f5 100644
20 --- a/dev-perl/Smart-Comments/ChangeLog
21 +++ b/dev-perl/Smart-Comments/ChangeLog
22 @@ -2,6 +2,11 @@
23 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
24 # $Header: $
25
26 + 03 Apr 2011; Kent Fredric <kentfredric@×××××.com>
27 + Smart-Comments-1.0.3.ebuild, Smart-Comments-1.0.4.ebuild:
28 + QA Fixes, annotate the dependencies, remove the rubbish version magic in
29 + favour of MODULE_VERSION
30 +
31 11 Feb 2011; Kent Fredric <kentfredric@×××××.com>
32 Smart-Comments-1.0.4.ebuild:
33 MB dep fix
34
35 diff --git a/dev-perl/Smart-Comments/Smart-Comments-1.0.3.ebuild b/dev-perl/Smart-Comments/Smart-Comments-1.0.3.ebuild
36 index ff94cd9..4e40fe4 100644
37 --- a/dev-perl/Smart-Comments/Smart-Comments-1.0.3.ebuild
38 +++ b/dev-perl/Smart-Comments/Smart-Comments-1.0.3.ebuild
39 @@ -1,11 +1,10 @@
40 -# Copyright 1999-2009 Gentoo Foundation
41 +# Copyright 1999-2011 Gentoo Foundation
42 # Distributed under the terms of the GNU General Public License v2
43 # $Header: $
44
45 -EAPI=2
46 +EAPI=3
47 MODULE_AUTHOR=DCONWAY
48 -MY_P="${PN}-v${PV}"
49 -S="${WORKDIR}/${MY_P}"
50 +MODULE_VERSION="v1.0.3"
51 inherit perl-module
52 DESCRIPTION="Comments that do more than just sit there"
53 LICENSE="|| ( Artistic GPL-2 )"
54 @@ -14,14 +13,15 @@ SLOT="0"
55 KEYWORDS="~amd64 ~x86"
56
57 IUSE=""
58 +comment() { echo ''; }
59 DEPEND="
60 virtual/perl-Text-Balanced
61 + virtual/perl-Test-Simple
62 + virtual/perl-Scalar-List-Utils
63 virtual/perl-version
64 + $(comment virtual/perl-Data-Dumper)
65 + $(comment virtual/perl-Filter-Simple)
66 "
67 -# Data::Dumper
68 -# Filter::Simple
69 -# List::Util
70 -# Test::More
71
72 RDEPEND="${DEPEND}"
73 SRC_TEST="do"
74
75 diff --git a/dev-perl/Smart-Comments/Smart-Comments-1.0.4.ebuild b/dev-perl/Smart-Comments/Smart-Comments-1.0.4.ebuild
76 index bee6443..1f68474 100644
77 --- a/dev-perl/Smart-Comments/Smart-Comments-1.0.4.ebuild
78 +++ b/dev-perl/Smart-Comments/Smart-Comments-1.0.4.ebuild
79 @@ -2,10 +2,9 @@
80 # Distributed under the terms of the GNU General Public License v2
81 # $Header: $
82
83 -EAPI=2
84 +EAPI=4
85 MODULE_AUTHOR=CHORNY
86 -#MY_P="${PN}-v${PV}"
87 -#S="${WORKDIR}/${MY_P}"
88 +MODULE_VERSION=1.0.4
89 inherit perl-module
90 DESCRIPTION="Comments that do more than just sit there"
91 LICENSE="|| ( Artistic GPL-2 )"
92 @@ -14,13 +13,14 @@ SLOT="0"
93 KEYWORDS="~amd64 ~x86"
94
95 IUSE="test"
96 +comment() { echo ''; }
97 RDEPEND="
98 virtual/perl-Text-Balanced
99 virtual/perl-version
100 - virtual/perl-Filter
101 + $(comment virtual/perl-Filter-Simple)
102 + $(comment virtual/perl-Data-Dumper)
103 virtual/perl-Scalar-List-Utils
104 "
105 -# Data::Dumper
106
107 DEPEND="${DEPEND}
108 virtual/perl-Module-Build