From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BA9B71381F3 for ; Sun, 28 Apr 2013 16:45:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F24EE0AE7; Sun, 28 Apr 2013 16:45:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 282B0E0A9B for ; Sun, 28 Apr 2013 16:45:31 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B1B533DF4B for ; Sun, 28 Apr 2013 16:45:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 07D3EE440A for ; Sun, 28 Apr 2013 16:45:29 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1367159254.bf4302779998d9c4c83595c0e7864cc4cc0d15b9.kent@gentoo> Subject: [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Parse-CPAN-Distributions/ X-VCS-Repository: proj/perl-overlay X-VCS-Files: dev-perl/Parse-CPAN-Distributions/ChangeLog dev-perl/Parse-CPAN-Distributions/Parse-CPAN-Distributions-0.80.0.ebuild X-VCS-Directories: dev-perl/Parse-CPAN-Distributions/ X-VCS-Committer: kent X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: bf4302779998d9c4c83595c0e7864cc4cc0d15b9 X-VCS-Branch: master Date: Sun, 28 Apr 2013 16:45:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b97ee06f-e0b2-45c2-97a8-d20ce1b073d4 X-Archives-Hash: 9e1ac555f2f2e05dc3ed3b426ebc9491 commit: bf4302779998d9c4c83595c0e7864cc4cc0d15b9 Author: Kent Fredric gmail com> AuthorDate: Sun Apr 28 14:27:34 2013 +0000 Commit: Kent Fredric gmail com> CommitDate: Sun Apr 28 14:27:34 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=bf430277 [newversion] Parse-CPAN-Distributions-0.80.0 Package-Manager: portage-2.2.0_alpha166 Manifest-Sign-Key: ECD2C675C102CDA4 --- dev-perl/Parse-CPAN-Distributions/ChangeLog | 8 +++- .../Parse-CPAN-Distributions-0.80.0.ebuild | 52 ++++++++++++++++++++ 2 files changed, 59 insertions(+), 1 deletions(-) diff --git a/dev-perl/Parse-CPAN-Distributions/ChangeLog b/dev-perl/Parse-CPAN-Distributions/ChangeLog index 86207e2..ee10a17 100644 --- a/dev-perl/Parse-CPAN-Distributions/ChangeLog +++ b/dev-perl/Parse-CPAN-Distributions/ChangeLog @@ -1,7 +1,13 @@ # ChangeLog for dev-perl/Parse-CPAN-Distributions -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*Parse-CPAN-Distributions-0.80.0 (28 Apr 2013) + + 28 Apr 2013; Kent Fredric + +Parse-CPAN-Distributions-0.80.0.ebuild: + Version Bump + 10 Nov 2012; Kent Fredric -Parse-CPAN-Distributions-0.50.0.ebuild, -Parse-CPAN-Distributions-0.60.0.ebuild: diff --git a/dev-perl/Parse-CPAN-Distributions/Parse-CPAN-Distributions-0.80.0.ebuild b/dev-perl/Parse-CPAN-Distributions/Parse-CPAN-Distributions-0.80.0.ebuild new file mode 100644 index 0000000..5b030f9 --- /dev/null +++ b/dev-perl/Parse-CPAN-Distributions/Parse-CPAN-Distributions-0.80.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ +EAPI=5 +MODULE_AUTHOR=BARBIE +MODULE_VERSION=0.08 +inherit perl-module + +DESCRIPTION='Provides an index for current CPAN distributions' +LICENSE=" Artistic-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +perl_meta_build() { + # ExtUtils::MakeMaker + echo virtual/perl-ExtUtils-MakeMaker +} +perl_meta_runtime() { + # CPAN::DistnameInfo + echo dev-perl/CPAN-DistnameInfo + # File::Basename + echo dev-lang/perl + # File::Path + echo virtual/perl-File-Path + # File::Slurp + echo dev-perl/File-Slurp + # File::Temp + echo virtual/perl-File-Temp + # IO::File + echo virtual/perl-IO + # IO::Zlib + echo virtual/perl-IO-Zlib + # LWP::UserAgent + echo dev-perl/libwww-perl + # perl 5.006 ( 5.6.0 ) + echo \>=dev-lang/perl-5.6.0 + # version + echo virtual/perl-version +} +perl_meta_test() { + # Test::More 0.70 ( 0.700.0 ) + echo \>=virtual/perl-Test-Simple-0.70 +} +DEPEND=" + $(perl_meta_build) + $(perl_meta_runtime) + test? ( $(perl_meta_test) ) +" +RDEPEND=" + $(perl_meta_runtime) +" +SRC_TEST="do"