From: "Kent Fredric" <kentfredric@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/perl-overlay:master commit in: perl-core/CPANPLUS/
Date: Mon, 9 Apr 2012 16:05:16 +0000 (UTC) [thread overview]
Message-ID: <1333987434.e637e51f5606336e337ac9b82a7da3e89054077f.kent@gentoo> (raw)
commit: e637e51f5606336e337ac9b82a7da3e89054077f
Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Mon Apr 9 16:03:54 2012 +0000
Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Mon Apr 9 16:03:54 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=e637e51f
[newversion] CPANPLUS-0.912.400
(Portage version: 2.2.0_alpha100/git/Linux x86_64, signed Manifest commit with key 4132B87441EA24A4EB5E6DE181EC638ED7AE97A6)
---
perl-core/CPANPLUS/CPANPLUS-0.912.400.ebuild | 105 ++++++++++++++++++++++++++
perl-core/CPANPLUS/ChangeLog | 5 +
2 files changed, 110 insertions(+), 0 deletions(-)
diff --git a/perl-core/CPANPLUS/CPANPLUS-0.912.400.ebuild b/perl-core/CPANPLUS/CPANPLUS-0.912.400.ebuild
new file mode 100644
index 0000000..1e8f37c
--- /dev/null
+++ b/perl-core/CPANPLUS/CPANPLUS-0.912.400.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI=4
+MODULE_AUTHOR=BINGOS
+MODULE_VERSION=0.9124
+inherit perl-module
+
+DESCRIPTION='Ameliorated interface to the CPAN'
+LICENSE=" || ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="cpantest md5 signature storable sqlite_backend selfupgrade"
+REQUIRED_USE="
+ cpantest? ( selfupgrade )
+ md5? ( selfupgrade )
+ signature? ( selfupgrade )
+ storable? ( selfupgrade )
+ sqlite_backend? ( selfupgrade )
+"
+
+# See Selfupdate.pm in the dist
+# All values here come from there.
+
+perl_feature_cpantest() {
+ # Test::Reporter 1.34
+ echo \>=dev-perl/Test-Reporter-1.34
+ # Parse::CPAN::Meta 1.4200
+ echo \>=virtual/perl-Parse-CPAN-Meta-1.420
+}
+perl_feature_md5() {
+ # Digest::SHA
+ echo virtual/perl-Digest-SHA
+}
+perl_feature_signature() {
+ # gpg
+ echo app-crypt/gnupg
+ # Module::Signature 0.06
+ echo \>=dev-perl/Module-Signature-0.06
+}
+perl_feature_storable() {
+ # Storable
+ echo virtual/perl-Storable
+}
+perl_feature_sqlite_backend() {
+ # DBIx::Simple
+ echo dev-perl/DBIx-Simple
+ # DBD::SQLite
+ echo dev-perl/DBD-SQLite
+}
+perl_feature_selfupgrade() {
+ echo "sqlite_backend? ( $( perl_feature_sqlite_backend ) )"
+ echo "storable? ( $( perl_feature_storable ) )"
+ echo "signature? ( $( perl_feature_signature ) )"
+ echo "md5? ( $( perl_feature_md5 ) )"
+ echo "cpantest? ( $( perl_feature_cpantest ) )"
+
+ # File::Fetch 0.15_02
+ echo \>=virtual/perl-File-Fetch-0.16
+ # File::Spec 0.82
+ echo \>=virtual/perl-File-Spec-0.82
+ # IPC::Cmd 0.36
+ echo \>=virtual/perl-IPC-Cmd-0.360.0
+ # Locale::Maketext::Simple 0.01
+ echo \>=virtual/perl-Locale-Maketext-Simple-0.10.0
+ # Log::Message 0.01
+ echo \>=virtual/perl-Log-Message-0.01
+ # Module::Load 0.10
+ echo \>=virtual/perl-Module-Load-0.100.0
+ # Module::Load::Conditional 0.38 / 0.380.0
+ echo \>=virtual/perl-Module-Load-Conditional-0.380
+ # version 0.77
+ echo \>=virtual/perl-version-0.77
+ # Params::Check 0.22
+ echo \>=virtual/perl-Params-Check-0.22
+ # Package::Constants 0.01
+ echo \>=virtual/perl-Package-Constants-0.10.0
+ # Term::UI 0.18
+ echo \>=virtual/perl-Term-UI-0.18
+ # Test::Harness 2.62
+ echo \>=virtual/perl-Test-Harness-2.62
+ # Test::Simple 0.47
+ echo \>=virtual/perl-Test-Simple-0.47
+ # Archive::Extract 0.16
+ echo \>=virtual/perl-Archive-Extract-0.160.0
+ # Archive::Tar 1.23
+ echo \>=virtual/perl-Archive-Tar-1.23
+ # IO::Zlib 1.04
+ echo \>=virtual/perl-IO-Zlib-1.40.0
+ # Object::Accessor 0.34
+ echo \>=virtual/perl-Object-Accessor-0.34
+ # Module::CoreList 2.22
+ echo \>=virtual/perl-Module-CoreList-2.22
+ # Module::Pluggable 2.4
+ echo \>=virtual/perl-Module-Pluggable-2.400.0
+ # Module::Loaded 0.01
+ echo \>=virtual/perl-Module-Loaded-0.10.0
+ # Parse::CPAN::Meta 1.4200
+ echo \>=virtual/perl-Parse-CPAN-Meta-1.420
+ # ExtUtils::Install 1.42
+ echo \>=virtual/perl-ExtUtils-Install-1.42
+}
+DEPEND="selfupgrade? ( $( perl_feature_selfupgrade ) )"
+RDEPEND="selfupgrade? ( $( perl_feature_selfupgrade ) )"
+SRC_TEST="do"
diff --git a/perl-core/CPANPLUS/ChangeLog b/perl-core/CPANPLUS/ChangeLog
index 5677aaa..6b722d4 100644
--- a/perl-core/CPANPLUS/ChangeLog
+++ b/perl-core/CPANPLUS/ChangeLog
@@ -2,6 +2,11 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*CPANPLUS-0.912.400 (09 Apr 2012)
+
+ 09 Apr 2012; Kent Fredric <kentfredric@gmail.com> +CPANPLUS-0.912.400.ebuild:
+ Version Bump
+
*CPANPLUS-0.912.300 (06 Apr 2012)
06 Apr 2012; Kent Fredric <kentfredric@gmail.com> +CPANPLUS-0.912.300.ebuild:
next reply other threads:[~2012-04-09 16:05 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-09 16:05 Kent Fredric [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-09-06 9:52 [gentoo-commits] proj/perl-overlay:master commit in: perl-core/CPANPLUS/ Kent Fredric
2014-09-06 0:21 Kent Fredric
2013-05-03 4:12 Kent Fredric
2013-05-03 4:12 Kent Fredric
2013-05-01 22:23 Kent Fredric
2012-10-25 10:13 Kent Fredric
2012-05-27 7:47 Kent Fredric
2012-05-27 7:47 Kent Fredric
2012-04-29 19:26 Kent Fredric
2012-04-28 10:39 Kent Fredric
2012-04-06 20:43 Kent Fredric
2012-02-24 7:13 Kent Fredric
2011-09-02 5:06 Kent Fredric
2011-08-28 2:09 Kent Fredric
2011-07-16 22:59 Kent Fredric
2011-05-08 16:10 [gentoo-commits] proj/perl-overlay:perl514 " Kent Fredric
2011-05-06 7:21 ` [gentoo-commits] proj/perl-overlay:master " Kent Fredric
2011-04-20 14:36 Kent Fredric
2011-03-22 1:34 Kent Fredric
2011-03-10 22:20 Kent Fredric
2011-03-10 22:20 Kent Fredric
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1333987434.e637e51f5606336e337ac9b82a7da3e89054077f.kent@gentoo \
--to=kentfredric@gmail.com \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox