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/Task-Kensho/
Date: Sun, 24 Jun 2012 21:13:26
Message-Id: 1340571953.c596a93b61fde50ea167f78cbd2a4d7497ab7e78.kent@gentoo
1 commit: c596a93b61fde50ea167f78cbd2a4d7497ab7e78
2 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
3 AuthorDate: Sun Jun 24 21:05:53 2012 +0000
4 Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
5 CommitDate: Sun Jun 24 21:05:53 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=c596a93b
7
8 [newversion] Task-Kensho-0.330.0
9
10 (Portage version: 2.2.0_alpha101/git/Linux x86_64, signed Manifest commit with key 4132B87441EA24A4EB5E6DE181EC638ED7AE97A6)
11
12 ---
13 dev-perl/Task-Kensho/ChangeLog | 6 ++
14 dev-perl/Task-Kensho/Task-Kensho-0.330.0.ebuild | 67 +++++++++++++++++++++++
15 2 files changed, 73 insertions(+), 0 deletions(-)
16
17 diff --git a/dev-perl/Task-Kensho/ChangeLog b/dev-perl/Task-Kensho/ChangeLog
18 index fc67d37..56c6386 100644
19 --- a/dev-perl/Task-Kensho/ChangeLog
20 +++ b/dev-perl/Task-Kensho/ChangeLog
21 @@ -2,6 +2,12 @@
22 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
23 # $Header: $
24
25 +*Task-Kensho-0.330.0 (24 Jun 2012)
26 +
27 + 24 Jun 2012; Kent Fredric <kentfredric@×××××.com>
28 + +Task-Kensho-0.330.0.ebuild:
29 + Version Bump
30 +
31 *Task-Kensho-0.320.0 (23 Jun 2012)
32
33 23 Jun 2012; Kent Fredric <kentfredric@×××××.com>
34
35 diff --git a/dev-perl/Task-Kensho/Task-Kensho-0.330.0.ebuild b/dev-perl/Task-Kensho/Task-Kensho-0.330.0.ebuild
36 new file mode 100644
37 index 0000000..ea92b0c
38 --- /dev/null
39 +++ b/dev-perl/Task-Kensho/Task-Kensho-0.330.0.ebuild
40 @@ -0,0 +1,67 @@
41 +# Copyright 1999-2012 Gentoo Foundation
42 +# Distributed under the terms of the GNU General Public License v2
43 +# $Header: $
44 +EAPI=4
45 +MODULE_AUTHOR=ETHER
46 +MODULE_VERSION=0.33
47 +inherit perl-module
48 +
49 +DESCRIPTION='A glimpse at an Enlightened Perl.'
50 +LICENSE=" || ( Artistic GPL-2 )"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +
54 +IUSE="+basic-toolchain +testing +oop async webdev db crawl module-devel date
55 +config cli scripting xml +exceptions spreadsheet email scalability +logging"
56 +
57 +perl_meta_configure() {
58 + # ExtUtils::MakeMaker 6.36 ( 6.360.0 )
59 + echo \>=virtual/perl-ExtUtils-MakeMaker-6.360.0
60 +}
61 +perl_meta_build() {
62 + # ExtUtils::MakeMaker 6.36 ( 6.360.0 )
63 + echo \>=virtual/perl-ExtUtils-MakeMaker-6.360.0
64 +}
65 +
66 +feature() {
67 + local name="$1";
68 + shift;
69 + echo "$name? (";
70 + echo "$@";
71 + echo ")";
72 +}
73 +sfeature() {
74 + local name="$1";
75 + local suffix="$2";
76 + feature "$name" "dev-perl/Task-Kensho-${suffix}"
77 +}
78 +
79 +perl_meta_runtime() {
80 + sfeature 'basic-toolchain' 'Toolchain';
81 + sfeature 'exceptions' 'Exceptions';
82 + sfeature 'testing' 'Testing';
83 + sfeature 'oop' 'OOP';
84 + sfeature 'async' 'Async';
85 + sfeature 'xml' 'XML';
86 + sfeature 'webdev' 'WebDev';
87 + sfeature 'db' 'DBDev';
88 + sfeature 'crawl' 'WebCrawling';
89 + sfeature 'module-devel' 'ModuleDev';
90 + sfeature 'scalability' 'Scalability';
91 + sfeature 'date' 'Dates';
92 + sfeature 'config' 'Config';
93 + sfeature 'cli' 'CLI';
94 + sfeature 'scripting' 'Hackery';
95 + sfeature 'spreadsheet' 'ExcelCSV';
96 + sfeature 'email' 'Email';
97 + sfeature 'logging' 'Logging';
98 +}
99 +DEPEND="
100 + $(perl_meta_configure)
101 + $(perl_meta_build)
102 + $(perl_meta_runtime)
103 +"
104 +RDEPEND="
105 + $(perl_meta_runtime)
106 +"
107 +SRC_TEST="do"