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 E99F9198005 for ; Sat, 2 Mar 2013 07:02:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5487BE0653; Sat, 2 Mar 2013 07:02:05 +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 731DBE062B for ; Sat, 2 Mar 2013 07:02:04 +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 41C7433DC3E for ; Sat, 2 Mar 2013 07:02:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 45B38E42E2 for ; Sat, 2 Mar 2013 07:02:01 +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: <1362173941.7b4f3d43beb50b4bdd4fc1867ad7f4067c7f5ce4.kent@gentoo> Subject: [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Catalyst-Plugin-Session/ X-VCS-Repository: proj/perl-overlay X-VCS-Files: dev-perl/Catalyst-Plugin-Session/Catalyst-Plugin-Session-0.370.0.ebuild dev-perl/Catalyst-Plugin-Session/ChangeLog X-VCS-Directories: dev-perl/Catalyst-Plugin-Session/ X-VCS-Committer: kent X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 7b4f3d43beb50b4bdd4fc1867ad7f4067c7f5ce4 X-VCS-Branch: master Date: Sat, 2 Mar 2013 07:02:01 +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: 116d49ce-631b-4285-85b1-35a8986085b4 X-Archives-Hash: ceb048eaab74c2dbef7dae62472487fb commit: 7b4f3d43beb50b4bdd4fc1867ad7f4067c7f5ce4 Author: Kent Fredric gmail com> AuthorDate: Fri Mar 1 21:39:01 2013 +0000 Commit: Kent Fredric gmail com> CommitDate: Fri Mar 1 21:39:01 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=7b4f3d43 [newversion] Catalyst-Plugin-Session-0.370.0 Package-Manager: portage-2.2.0_alpha141 Manifest-Sign-Key: ECD2C675C102CDA4 --- .../Catalyst-Plugin-Session-0.370.0.ebuild | 62 ++++++++++++++++++++ dev-perl/Catalyst-Plugin-Session/ChangeLog | 6 ++ 2 files changed, 68 insertions(+), 0 deletions(-) diff --git a/dev-perl/Catalyst-Plugin-Session/Catalyst-Plugin-Session-0.370.0.ebuild b/dev-perl/Catalyst-Plugin-Session/Catalyst-Plugin-Session-0.370.0.ebuild new file mode 100644 index 0000000..aed9b11 --- /dev/null +++ b/dev-perl/Catalyst-Plugin-Session/Catalyst-Plugin-Session-0.370.0.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ +EAPI=5 +MODULE_AUTHOR=BOBTFISH +MODULE_VERSION=0.37 +inherit perl-module + +DESCRIPTION='Generic Session plugin - connect server side storage and client side state to maintain session data' +LICENSE=" || ( Artistic GPL-2 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +perl_meta_configure() { + # ExtUtils::MakeMaker 6.59 ( 6.590.0 ) + echo \>=virtual/perl-ExtUtils-MakeMaker-6.590.0 +} +perl_meta_build() { + # ExtUtils::MakeMaker 6.59 ( 6.590.0 ) + echo \>=virtual/perl-ExtUtils-MakeMaker-6.590.0 + # Test::Deep + echo dev-perl/Test-Deep + # Test::Exception + echo dev-perl/Test-Exception + # Test::WWW::Mechanize::PSGI + echo dev-perl/Test-WWW-Mechanize-PSGI +} +perl_meta_runtime() { + # Catalyst::Runtime 5.71001 ( 5.710.10 ) + echo \>=dev-perl/Catalyst-Runtime-5.710.10 + # Digest + echo virtual/perl-digest-base + # File::Spec + echo virtual/perl-File-Spec + # File::Temp + echo virtual/perl-File-Temp + # MRO::Compat + echo dev-perl/MRO-Compat + # Moose 0.76 ( 0.760.0 ) + echo \>=dev-perl/Moose-0.760.0 + # MooseX::Emulate::Class::Accessor::Fast 0.00801 ( 0.8.10 ) + echo \>=dev-perl/MooseX-Emulate-Class-Accessor-Fast-0.8.10 + # Object::Signature + echo dev-perl/Object-Signature + # Test::More 0.88 ( 0.880.0 ) + echo \>=virtual/perl-Test-Simple-0.88 + # Tie::RefHash 1.34 ( 1.340.0 ) + echo \>=dev-perl/Tie-RefHash-1.340.0 + # namespace::clean 0.10 ( 0.100.0 ) + echo \>=dev-perl/namespace-clean-0.100.0 + # perl v5.8.0 ( 5.8.0 ) + echo \>=dev-lang/perl-5.8.0 +} +DEPEND=" + $(perl_meta_configure) + $(perl_meta_build) + $(perl_meta_runtime) +" +RDEPEND=" + $(perl_meta_runtime) +" +SRC_TEST="do" diff --git a/dev-perl/Catalyst-Plugin-Session/ChangeLog b/dev-perl/Catalyst-Plugin-Session/ChangeLog index a8856e1..3d8bdac 100644 --- a/dev-perl/Catalyst-Plugin-Session/ChangeLog +++ b/dev-perl/Catalyst-Plugin-Session/ChangeLog @@ -2,6 +2,12 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*Catalyst-Plugin-Session-0.370.0 (01 Mar 2013) + + 01 Mar 2013; Kent Fredric + +Catalyst-Plugin-Session-0.370.0.ebuild: + Version Bump + 07 Feb 2013; Kent Fredric Catalyst-Plugin-Session-0.280.0.ebuild, Catalyst-Plugin-Session-0.290.0.ebuild,