public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/CGI-Application-Dispatch/
@ 2015-04-29 18:02 Kent Fredric
  0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2015-04-29 18:02 UTC (permalink / raw
  To: gentoo-commits

commit:     c43eed8679ce98131b983607e5da2d4d03fd0193
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Wed Apr 29 16:23:10 2015 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Wed Apr 29 16:23:50 2015 +0000
URL:        https://gitweb.gentoo.org/proj/perl-overlay.git/commit/?id=c43eed86

[fixup] CGI-Application-Dispatch: EAPI5, Fixup deps, make depending on apache for testing optional

Package-Manager: portage-2.2.17

 .../CGI-Application-Dispatch-3.120.0-r1.ebuild     | 53 ++++++++++++++++
 .../CGI-Application-Dispatch-3.120.0.ebuild        | 74 ----------------------
 dev-perl/CGI-Application-Dispatch/metadata.xml     |  5 +-
 3 files changed, 57 insertions(+), 75 deletions(-)

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.120.0-r1.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.120.0-r1.ebuild
new file mode 100644
index 0000000..19ee4bf
--- /dev/null
+++ b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.120.0-r1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI=5
+MODULE_AUTHOR=MARKSTOS
+MODULE_VERSION=3.12
+inherit perl-module
+
+DESCRIPTION='Dispatch requests to CGI::Application based objects'
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test apache_test"
+
+# Test::More -> Test-Simple
+TEST_DEPEND_APACHE="dev-perl/Apache-Test"
+RDEPEND="
+	>=virtual/perl-version-0.820.0
+	>=dev-perl/CGI-Application-4.500.0
+	dev-perl/HTTP-Exception
+	>=dev-perl/Exception-Class-1.200.0
+	dev-perl/Try-Tiny
+"
+DEPEND="${RDEPEND}
+	>=virtual/perl-Module-Build-0.380.0
+	test? (
+		apache_test? (
+			${TEST_DEPEND_APACHE}
+		)
+		dev-perl/CGI-PSGI
+		virtual/perl-Test-Simple
+		dev-perl/Test-LongString
+		>=dev-perl/Plack-0.995.600
+	)
+"
+apache_env() {
+	# This jiggerypokery appears to be required if Apache::Test
+	# is present. If it is not present or not use test? then we're ok,
+	# but otherwise, we need to specify where apache is, or it will
+	# for some reason, get stuck in a death loop and fill your log file
+	# and your hard drive. JOY! http://gist.github.com/447135
+	APACHE_TEST_HTTPD=/usr/sbin/apache2
+	export APACHE_TEST_HTTPD
+}
+src_prepare() {
+	if  ! use apache_test || ! use test; then
+		PERL_RM_FILES=( "t/handler.t" )
+	fi
+	perl-module_src_prepare
+}
+src_test() {
+	use apache_test && apache_env;
+	perl-module_src_test;
+}

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.120.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.120.0.ebuild
deleted file mode 100644
index 12ee796..0000000
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.120.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=MARKSTOS
-MODULE_VERSION=3.12
-inherit perl-module
-
-DESCRIPTION='Dispatch requests to CGI::Application based objects'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-apache_test_deps() {
-	echo "dev-perl/Apache-Test"
-}
-apache_test_code() {
-	# This jiggerypokery appears to be required if Apache::Test
-	# is present. If it is not present or not use test? then we're ok,
-	# but otherwise, we need to specify where apache is, or it will
-	# for some reason, get stuck in a death loop and fill your log file
-	# and your hard drive. JOY! http://gist.github.com/447135
-
-	# NB. Because I have no way of conditionally triggering this code
-	# whether or not Apache-Test is installed ( like the code does )
-	# I have test-depped on it basically forcing a known circuit.
-
-	APACHE_TEST_HTTPD=/usr/sbin/apache2
-	export APACHE_TEST_HTTPD
-	perl-module_src_test
-}
-perl_meta_configure() {
-	# Module::Build 0.38 ( 0.380.0 )
-	echo \>=virtual/perl-Module-Build-0.380.0
-
-}
-perl_meta_build() {
-	# CGI::PSGI
-	echo dev-perl/CGI-PSGI
-	# Plack 0.9956 ( 0.995.600 )
-	echo \>=dev-perl/Plack-0.995.600
-	# Test::LongString
-	echo dev-perl/Test-LongString
-	# Test::More
-	echo virtual/perl-Test-Simple
-}
-perl_meta_runtime() {
-	# CGI::Application 4.50 ( 4.500.0 )
-	echo \>=dev-perl/CGI-Application-4.500.0
-	# Exception::Class 1.2 ( 1.200.0 )
-	echo \>=dev-perl/Exception-Class-1.200.0
-	# HTTP::Exception
-	echo dev-perl/HTTP-Exception
-	# Try::Tiny
-	echo dev-perl/Try-Tiny
-	# perl v5.6.0 ( 5.6.0 )
-	echo \>=dev-lang/perl-5.6.0
-	# version 0.82 ( 0.820.0 )
-	echo \>=virtual/perl-version-0.820.0
-}
-DEPEND="
-	$(perl_meta_configure)
-	$(perl_meta_build)
-	$(perl_meta_runtime)
-"
-RDEPEND="
-	$(perl_meta_runtime)
-"
-SRC_TEST="do"
-
-DEPEND="${DEPEND} test? ( $(apache_test_deps) )"
-src_test() {
-	apache_test_code;
-}

diff --git a/dev-perl/CGI-Application-Dispatch/metadata.xml b/dev-perl/CGI-Application-Dispatch/metadata.xml
index 748bae6..ce4526d 100644
--- a/dev-perl/CGI-Application-Dispatch/metadata.xml
+++ b/dev-perl/CGI-Application-Dispatch/metadata.xml
@@ -11,5 +11,8 @@
         <remote-id type="cpan-module">CGI::Application::Dispatch</remote-id>
         <remote-id type="cpan-module">CGI::Application::Dispatch::PSGI</remote-id>
         <remote-id type="cpan-module">CGI::Application::Dispatch::Regexp</remote-id>
-    </upstream>
+	</upstream>
+	<use>
+		<flag name="apache_test">With FEATURES=test, do tests using Apache</flag>
+	</use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/CGI-Application-Dispatch/
@ 2015-04-29 18:02 Kent Fredric
  0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2015-04-29 18:02 UTC (permalink / raw
  To: gentoo-commits

commit:     10b4f1f599b915e131269a07e7eb82ee919250af
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Wed Apr 29 15:08:59 2015 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Wed Apr 29 15:08:59 2015 +0000
URL:        https://gitweb.gentoo.org/proj/perl-overlay.git/commit/?id=10b4f1f5

[cleanup] CGI-Application-Dispatch: Remove old versions

Package-Manager: portage-2.2.17

 .../CGI-Application-Dispatch-2.160.0.ebuild        | 23 -------
 .../CGI-Application-Dispatch-2.170.0.ebuild        | 46 -------------
 .../CGI-Application-Dispatch-2.180.0.ebuild        | 48 -------------
 .../CGI-Application-Dispatch-3.30.0.ebuild         | 51 --------------
 .../CGI-Application-Dispatch-3.40.0.ebuild         | 51 --------------
 .../CGI-Application-Dispatch-3.70.0.ebuild         | 80 ----------------------
 6 files changed, 299 deletions(-)

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild
deleted file mode 100644
index 6825a7b..0000000
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=2
-MODULE_AUTHOR=MARKSTOS
-MODULE_VERSION="2.16"
-inherit perl-module
-
-DESCRIPTION="Framework for building reusable web-applications"
-LICENSE="|| ( Artistic GPL-2 )"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE=""
-RDEPEND="
-	perl-core/Module-Build
-	>=dev-perl/CGI-Application-3.200.0
-	dev-perl/Exception-Class
-	dev-perl/Exception-Class-TryCatch
-"
-DEPEND="${RDEPEND}"
-SRC_TEST=do

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild
deleted file mode 100644
index cd8a280..0000000
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=2
-MODULE_AUTHOR=MARKSTOS
-MODULE_VERSION="2.17"
-inherit perl-module
-
-DESCRIPTION="Framework for building reusable web-applications"
-LICENSE="|| ( Artistic GPL-2 )"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="test"
-RDEPEND="
-	perl-core/Module-Build
-	>=dev-perl/CGI-Application-3.200.0
-	dev-perl/Exception-Class
-	dev-perl/Exception-Class-TryCatch
-"
-DEPEND="
-	test? (
-		virtual/perl-Test-Simple
-		dev-perl/Test-LongString
-		dev-perl/Apache-Test
-	)
-	${RDEPEND}
-"
-SRC_TEST=do
-
-src_test() {
-	# This jiggerypokery appears to be required if Apache::Test
-	# is present. If it is not present or not use test? then we're ok,
-	# but otherwise, we need to specify where apache is, or it will
-	# for some reason, get stuck in a death loop and fill your log file
-	# and your hard drive. JOY! http://gist.github.com/447135
-
-	# NB. Because I have no way of conditionally triggering this code
-	# whether or not Apache-Test is installed ( like the code does )
-	# I have test-depped on it basically forcing a known circuit.
-
-	APACHE_TEST_HTTPD=/usr/sbin/apache2
-	export APACHE_TEST_HTTPD
-	perl-module_src_test
-}

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.0.ebuild
deleted file mode 100644
index eb4dbd8..0000000
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-MODULE_AUTHOR=MARKSTOS
-MODULE_VERSION=2.18
-inherit perl-module
-
-DESCRIPTION="Framework for building reusable web-applications"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-	>=dev-perl/CGI-Application-3.200.0
-	dev-perl/Exception-Class
-	dev-perl/Exception-Class-TryCatch
-	>=virtual/perl-version-0.82
-"
-DEPEND="
-	virtual/perl-Module-Build
-	test? (
-		virtual/perl-Test-Simple
-		dev-perl/Test-LongString
-		dev-perl/Apache-Test
-	)
-	${RDEPEND}
-"
-SRC_TEST=do
-
-src_test() {
-	# This jiggerypokery appears to be required if Apache::Test
-	# is present. If it is not present or not use test? then we're ok,
-	# but otherwise, we need to specify where apache is, or it will
-	# for some reason, get stuck in a death loop and fill your log file
-	# and your hard drive. JOY! http://gist.github.com/447135
-
-	# NB. Because I have no way of conditionally triggering this code
-	# whether or not Apache-Test is installed ( like the code does )
-	# I have test-depped on it basically forcing a known circuit.
-
-	APACHE_TEST_HTTPD=/usr/sbin/apache2
-	export APACHE_TEST_HTTPD
-	perl-module_src_test
-}

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.30.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.30.0.ebuild
deleted file mode 100644
index bc9b97d..0000000
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.30.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-MODULE_AUTHOR=MARKSTOS
-MODULE_VERSION=3.03
-inherit perl-module
-
-DESCRIPTION="Framework for building reusable web-applications"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-comment() { echo ''; }
-RDEPEND="
-	>=virtual/perl-version-0.82 $(comment 0.820.0)
-	>=dev-perl/CGI-Application-4.500.0
-	dev-perl/HTTP-Exception
-	>=dev-perl/Exception-Class-1.2 $(comment 1.200.0)
-	dev-perl/Exception-Class-TryCatch
-"
-DEPEND="
-	virtual/perl-Module-Build
-	test? (
-		dev-perl/CGI-PSGI
-		virtual/perl-Test-Simple $(comment Test::More)
-		dev-perl/Test-LongString
-		>=dev-perl/Plack-0.995.600
-		dev-perl/Apache-Test
-	)
-	${RDEPEND}
-"
-SRC_TEST=do
-
-src_test() {
-	# This jiggerypokery appears to be required if Apache::Test
-	# is present. If it is not present or not use test? then we're ok,
-	# but otherwise, we need to specify where apache is, or it will
-	# for some reason, get stuck in a death loop and fill your log file
-	# and your hard drive. JOY! http://gist.github.com/447135
-
-	# NB. Because I have no way of conditionally triggering this code
-	# whether or not Apache-Test is installed ( like the code does )
-	# I have test-depped on it basically forcing a known circuit.
-
-	APACHE_TEST_HTTPD=/usr/sbin/apache2
-	export APACHE_TEST_HTTPD
-	perl-module_src_test
-}

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.40.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.40.0.ebuild
deleted file mode 100644
index 0468f01..0000000
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.40.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-MODULE_AUTHOR=MARKSTOS
-MODULE_VERSION=3.04
-inherit perl-module
-
-DESCRIPTION="Framework for building reusable web-applications"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-comment() { echo ''; }
-RDEPEND="
-	>=virtual/perl-version-0.82 $(comment 0.820.0)
-	>=dev-perl/CGI-Application-4.500.0
-	dev-perl/HTTP-Exception
-	>=dev-perl/Exception-Class-1.2 $(comment 1.200.0)
-	dev-perl/Exception-Class-TryCatch
-"
-DEPEND="
-	virtual/perl-Module-Build
-	test? (
-		dev-perl/CGI-PSGI
-		virtual/perl-Test-Simple $(comment Test::More)
-		dev-perl/Test-LongString
-		>=dev-perl/Plack-0.995.600
-		dev-perl/Apache-Test
-	)
-	${RDEPEND}
-"
-SRC_TEST=do
-
-src_test() {
-	# This jiggerypokery appears to be required if Apache::Test
-	# is present. If it is not present or not use test? then we're ok,
-	# but otherwise, we need to specify where apache is, or it will
-	# for some reason, get stuck in a death loop and fill your log file
-	# and your hard drive. JOY! http://gist.github.com/447135
-
-	# NB. Because I have no way of conditionally triggering this code
-	# whether or not Apache-Test is installed ( like the code does )
-	# I have test-depped on it basically forcing a known circuit.
-
-	APACHE_TEST_HTTPD=/usr/sbin/apache2
-	export APACHE_TEST_HTTPD
-	perl-module_src_test
-}

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.70.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.70.0.ebuild
deleted file mode 100644
index dcb09a0..0000000
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.70.0.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-MODULE_AUTHOR=MARKSTOS
-MODULE_VERSION=3.07
-inherit perl-module
-
-DESCRIPTION="Framework for building reusable web-applications"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-comment() { true; }
-RDEPEND="
-	$(comment perl 5.6.0)
-
-	$(comment version 0.82)
-	>=virtual/perl-version-0.82
-	$(comment CGI::Application 4.50)
-	>=dev-perl/CGI-Application-4.500.0
-	$(comment HTTP::Exception)
-	dev-perl/HTTP-Exception
-	$(comment Exception::Class 1.2)
-	>=dev-perl/Exception-Class-1.200.0
-	$(comment Try::Tiny)
-	dev-perl/Try-Tiny
-"
-DEPEND="
-	$(comment --configure)
-	$(comment 'This stanza is to match the dynamic stuff at the top of
-		Build.PL')
-
-	!test? (
-		$(comment Module::Build)
-		>=virtual/perl-Module-Build-0.380.0
-	)
-	test? (
-		$(comment Apache::Test)
-		dev-perl/Apache-Test
-
-		$(comment Apache::TestMB)
-		dev-perl/Apache-Test
-	)
-	$(comment 'End of Build.PL heading magic')
-
-	$(comment --build)
-	$(comment CGI::PSGI)
-	dev-perl/CGI-PSGI
-	$(comment Test::More)
-	virtual/perl-Test-Simple
-	$(comment Test::LongString)
-	dev-perl/Test-LongString
-	$(comment Plack 0.9956)
-	>=dev-perl/Plack-0.995.600
-	test? (
-		$(comment Apache::Test)
-		dev-perl/Apache-Test
-	)
-	${RDEPEND}
-"
-SRC_TEST=do
-
-src_test() {
-	# This jiggerypokery appears to be required if Apache::Test
-	# is present. If it is not present or not use test? then we're ok,
-	# but otherwise, we need to specify where apache is, or it will
-	# for some reason, get stuck in a death loop and fill your log file
-	# and your hard drive. JOY! http://gist.github.com/447135
-
-	# NB. Because I have no way of conditionally triggering this code
-	# whether or not Apache-Test is installed ( like the code does )
-	# I have test-depped on it basically forcing a known circuit.
-
-	APACHE_TEST_HTTPD=/usr/sbin/apache2
-	export APACHE_TEST_HTTPD
-	perl-module_src_test
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/CGI-Application-Dispatch/
@ 2011-09-23  6:17 Kent Fredric
  0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2011-09-23  6:17 UTC (permalink / raw
  To: gentoo-commits

commit:     7d2e4a31e33678d1c0d41baa55e457d50a75380b
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Thu Sep 22 03:52:44 2011 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Thu Sep 22 07:26:47 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=7d2e4a31

[newversion] CGI-Application-Dispatch-3.70.0

(Portage version: 2.2.0_alpha57/git/Linux x86_64, signed Manifest commit with key BD86D695)

---
 .../CGI-Application-Dispatch-3.70.0.ebuild         |   80 ++++++++++++++++++++
 dev-perl/CGI-Application-Dispatch/ChangeLog        |    6 ++
 2 files changed, 86 insertions(+), 0 deletions(-)

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.70.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.70.0.ebuild
new file mode 100644
index 0000000..dcb09a0
--- /dev/null
+++ b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.70.0.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+MODULE_AUTHOR=MARKSTOS
+MODULE_VERSION=3.07
+inherit perl-module
+
+DESCRIPTION="Framework for building reusable web-applications"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+comment() { true; }
+RDEPEND="
+	$(comment perl 5.6.0)
+
+	$(comment version 0.82)
+	>=virtual/perl-version-0.82
+	$(comment CGI::Application 4.50)
+	>=dev-perl/CGI-Application-4.500.0
+	$(comment HTTP::Exception)
+	dev-perl/HTTP-Exception
+	$(comment Exception::Class 1.2)
+	>=dev-perl/Exception-Class-1.200.0
+	$(comment Try::Tiny)
+	dev-perl/Try-Tiny
+"
+DEPEND="
+	$(comment --configure)
+	$(comment 'This stanza is to match the dynamic stuff at the top of
+		Build.PL')
+
+	!test? (
+		$(comment Module::Build)
+		>=virtual/perl-Module-Build-0.380.0
+	)
+	test? (
+		$(comment Apache::Test)
+		dev-perl/Apache-Test
+
+		$(comment Apache::TestMB)
+		dev-perl/Apache-Test
+	)
+	$(comment 'End of Build.PL heading magic')
+
+	$(comment --build)
+	$(comment CGI::PSGI)
+	dev-perl/CGI-PSGI
+	$(comment Test::More)
+	virtual/perl-Test-Simple
+	$(comment Test::LongString)
+	dev-perl/Test-LongString
+	$(comment Plack 0.9956)
+	>=dev-perl/Plack-0.995.600
+	test? (
+		$(comment Apache::Test)
+		dev-perl/Apache-Test
+	)
+	${RDEPEND}
+"
+SRC_TEST=do
+
+src_test() {
+	# This jiggerypokery appears to be required if Apache::Test
+	# is present. If it is not present or not use test? then we're ok,
+	# but otherwise, we need to specify where apache is, or it will
+	# for some reason, get stuck in a death loop and fill your log file
+	# and your hard drive. JOY! http://gist.github.com/447135
+
+	# NB. Because I have no way of conditionally triggering this code
+	# whether or not Apache-Test is installed ( like the code does )
+	# I have test-depped on it basically forcing a known circuit.
+
+	APACHE_TEST_HTTPD=/usr/sbin/apache2
+	export APACHE_TEST_HTTPD
+	perl-module_src_test
+}

diff --git a/dev-perl/CGI-Application-Dispatch/ChangeLog b/dev-perl/CGI-Application-Dispatch/ChangeLog
index 4524fb6..66b15a0 100644
--- a/dev-perl/CGI-Application-Dispatch/ChangeLog
+++ b/dev-perl/CGI-Application-Dispatch/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*CGI-Application-Dispatch-3.70.0 (22 Sep 2011)
+
+  22 Sep 2011; Kent Fredric <kentfredric@gmail.com>
+  +CGI-Application-Dispatch-3.70.0.ebuild:
+  Version Bump
+
 *CGI-Application-Dispatch-3.40.0 (15 Jul 2011)
 
   15 Jul 2011; Kent Fredric <kentfredric@gmail.com>



^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/CGI-Application-Dispatch/
@ 2011-07-15  7:11 Kent Fredric
  0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2011-07-15  7:11 UTC (permalink / raw
  To: gentoo-commits

commit:     923388304d38429d8b4754426e09a23bee2c1fea
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Fri Jul 15 03:52:22 2011 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Fri Jul 15 03:52:22 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=92338830

[newversion] CGI-Application-Dispatch-3.40.0

(Portage version: 2.2.0_alpha43/git/Linux x86_64, signed Manifest commit with key BD86D695)

---
 .../CGI-Application-Dispatch-3.40.0.ebuild         |   51 ++++++++++++++++++++
 dev-perl/CGI-Application-Dispatch/ChangeLog        |    6 ++
 2 files changed, 57 insertions(+), 0 deletions(-)

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.40.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.40.0.ebuild
new file mode 100644
index 0000000..0468f01
--- /dev/null
+++ b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.40.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+MODULE_AUTHOR=MARKSTOS
+MODULE_VERSION=3.04
+inherit perl-module
+
+DESCRIPTION="Framework for building reusable web-applications"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+comment() { echo ''; }
+RDEPEND="
+	>=virtual/perl-version-0.82 $(comment 0.820.0)
+	>=dev-perl/CGI-Application-4.500.0
+	dev-perl/HTTP-Exception
+	>=dev-perl/Exception-Class-1.2 $(comment 1.200.0)
+	dev-perl/Exception-Class-TryCatch
+"
+DEPEND="
+	virtual/perl-Module-Build
+	test? (
+		dev-perl/CGI-PSGI
+		virtual/perl-Test-Simple $(comment Test::More)
+		dev-perl/Test-LongString
+		>=dev-perl/Plack-0.995.600
+		dev-perl/Apache-Test
+	)
+	${RDEPEND}
+"
+SRC_TEST=do
+
+src_test() {
+	# This jiggerypokery appears to be required if Apache::Test
+	# is present. If it is not present or not use test? then we're ok,
+	# but otherwise, we need to specify where apache is, or it will
+	# for some reason, get stuck in a death loop and fill your log file
+	# and your hard drive. JOY! http://gist.github.com/447135
+
+	# NB. Because I have no way of conditionally triggering this code
+	# whether or not Apache-Test is installed ( like the code does )
+	# I have test-depped on it basically forcing a known circuit.
+
+	APACHE_TEST_HTTPD=/usr/sbin/apache2
+	export APACHE_TEST_HTTPD
+	perl-module_src_test
+}

diff --git a/dev-perl/CGI-Application-Dispatch/ChangeLog b/dev-perl/CGI-Application-Dispatch/ChangeLog
index 3331deb..4524fb6 100644
--- a/dev-perl/CGI-Application-Dispatch/ChangeLog
+++ b/dev-perl/CGI-Application-Dispatch/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*CGI-Application-Dispatch-3.40.0 (15 Jul 2011)
+
+  15 Jul 2011; Kent Fredric <kentfredric@gmail.com>
+  +CGI-Application-Dispatch-3.40.0.ebuild:
+  Version Bump
+
 *CGI-Application-Dispatch-3.30.0 (28 Jun 2011)
 
   28 Jun 2011; Kent Fredric <kentfredric@gmail.com>



^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/CGI-Application-Dispatch/
@ 2011-06-28  5:09 Kent Fredric
  0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2011-06-28  5:09 UTC (permalink / raw
  To: gentoo-commits

commit:     849c53f1d2e620c1e8f1476fab30ca363008a25b
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Tue Jun 28 05:03:28 2011 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Tue Jun 28 05:03:28 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=849c53f1

[newversion] CGI-Application-Dispatch-3.30.0

(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key BD86D695)

---
 .../CGI-Application-Dispatch-3.30.0.ebuild         |   51 ++++++++++++++++++++
 dev-perl/CGI-Application-Dispatch/ChangeLog        |    6 ++
 2 files changed, 57 insertions(+), 0 deletions(-)

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.30.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.30.0.ebuild
new file mode 100644
index 0000000..bc9b97d
--- /dev/null
+++ b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-3.30.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+MODULE_AUTHOR=MARKSTOS
+MODULE_VERSION=3.03
+inherit perl-module
+
+DESCRIPTION="Framework for building reusable web-applications"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+comment() { echo ''; }
+RDEPEND="
+	>=virtual/perl-version-0.82 $(comment 0.820.0)
+	>=dev-perl/CGI-Application-4.500.0
+	dev-perl/HTTP-Exception
+	>=dev-perl/Exception-Class-1.2 $(comment 1.200.0)
+	dev-perl/Exception-Class-TryCatch
+"
+DEPEND="
+	virtual/perl-Module-Build
+	test? (
+		dev-perl/CGI-PSGI
+		virtual/perl-Test-Simple $(comment Test::More)
+		dev-perl/Test-LongString
+		>=dev-perl/Plack-0.995.600
+		dev-perl/Apache-Test
+	)
+	${RDEPEND}
+"
+SRC_TEST=do
+
+src_test() {
+	# This jiggerypokery appears to be required if Apache::Test
+	# is present. If it is not present or not use test? then we're ok,
+	# but otherwise, we need to specify where apache is, or it will
+	# for some reason, get stuck in a death loop and fill your log file
+	# and your hard drive. JOY! http://gist.github.com/447135
+
+	# NB. Because I have no way of conditionally triggering this code
+	# whether or not Apache-Test is installed ( like the code does )
+	# I have test-depped on it basically forcing a known circuit.
+
+	APACHE_TEST_HTTPD=/usr/sbin/apache2
+	export APACHE_TEST_HTTPD
+	perl-module_src_test
+}

diff --git a/dev-perl/CGI-Application-Dispatch/ChangeLog b/dev-perl/CGI-Application-Dispatch/ChangeLog
index 7e655c7..3331deb 100644
--- a/dev-perl/CGI-Application-Dispatch/ChangeLog
+++ b/dev-perl/CGI-Application-Dispatch/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*CGI-Application-Dispatch-3.30.0 (28 Jun 2011)
+
+  28 Jun 2011; Kent Fredric <kentfredric@gmail.com>
+  +CGI-Application-Dispatch-3.30.0.ebuild:
+  Version Bump
+
   27 Jun 2011; Kent Fredric <kentfredric@gmail.com>
   CGI-Application-Dispatch-2.160.0.ebuild,
   CGI-Application-Dispatch-2.170.0.ebuild,



^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/CGI-Application-Dispatch/
@ 2011-06-28  5:09 Kent Fredric
  0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2011-06-28  5:09 UTC (permalink / raw
  To: gentoo-commits

commit:     9b7d4994b47c283b92db431f0124ce55e5055afa
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Mon Jun 27 02:16:08 2011 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Mon Jun 27 02:16:08 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=9b7d4994

[migrate/addzero] CGI-Application-Dispatch

(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key BD86D695)

---
 ...ild => CGI-Application-Dispatch-2.160.0.ebuild} |    3 ++-
 ...ild => CGI-Application-Dispatch-2.170.0.ebuild} |    3 ++-
 ...ild => CGI-Application-Dispatch-2.180.0.ebuild} |    0
 dev-perl/CGI-Application-Dispatch/ChangeLog        |   12 ++++++++++++
 4 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.16.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild
similarity index 87%
rename from dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.16.ebuild
rename to dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild
index b8b9646..16889a8 100644
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.16.ebuild
+++ b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 EAPI=2
 MODULE_AUTHOR=MARKSTOS
+MODULE_VERSION="2.16"
 inherit perl-module
 
 DESCRIPTION="Framework for building reusable web-applications"

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.17.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild
similarity index 94%
rename from dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.17.ebuild
rename to dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild
index 446153e..3583d60 100644
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.17.ebuild
+++ b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 EAPI=2
 MODULE_AUTHOR=MARKSTOS
+MODULE_VERSION="2.17"
 inherit perl-module
 
 DESCRIPTION="Framework for building reusable web-applications"

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.0.ebuild
similarity index 100%
rename from dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.ebuild
rename to dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.0.ebuild

diff --git a/dev-perl/CGI-Application-Dispatch/ChangeLog b/dev-perl/CGI-Application-Dispatch/ChangeLog
index cc52cb1..a171086 100644
--- a/dev-perl/CGI-Application-Dispatch/ChangeLog
+++ b/dev-perl/CGI-Application-Dispatch/ChangeLog
@@ -2,6 +2,18 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*CGI-Application-Dispatch-2.180.0 (27 Jun 2011)
+*CGI-Application-Dispatch-2.170.0 (27 Jun 2011)
+*CGI-Application-Dispatch-2.160.0 (27 Jun 2011)
+
+  27 Jun 2011; Kent Fredric <kentfredric@gmail.com>
+  -CGI-Application-Dispatch-2.16.ebuild, -CGI-Application-Dispatch-2.17.ebuild,
+  +CGI-Application-Dispatch-2.160.0.ebuild,
+  +CGI-Application-Dispatch-2.170.0.ebuild,
+  -CGI-Application-Dispatch-2.180.ebuild,
+  +CGI-Application-Dispatch-2.180.0.ebuild:
+  Migrate/AddZero
+
 *CGI-Application-Dispatch-2.180 (09 Jan 2011)
 
   09 Jan 2011; Torsten Veller <tove@gentoo.org>



^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/CGI-Application-Dispatch/
@ 2011-06-28  5:09 Kent Fredric
  0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2011-06-28  5:09 UTC (permalink / raw
  To: gentoo-commits

commit:     91a1e8e41bddd18f0e14bc9c91ef72ccf9505a02
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Mon Jun 27 02:18:40 2011 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Mon Jun 27 02:18:40 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=91a1e8e4

[fixdep] CGI-Application-Dispatch -> CGI-Application

(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key BD86D695)

---
 .../CGI-Application-Dispatch-2.160.0.ebuild        |    2 +-
 .../CGI-Application-Dispatch-2.170.0.ebuild        |   10 +++++-----
 .../CGI-Application-Dispatch-2.180.0.ebuild        |   10 +++++-----
 dev-perl/CGI-Application-Dispatch/ChangeLog        |    6 ++++++
 4 files changed, 17 insertions(+), 11 deletions(-)

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild
index 16889a8..6825a7b 100644
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild
+++ b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.160.0.ebuild
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 RDEPEND="
 	perl-core/Module-Build
-	>=dev-perl/CGI-Application-3.2
+	>=dev-perl/CGI-Application-3.200.0
 	dev-perl/Exception-Class
 	dev-perl/Exception-Class-TryCatch
 "

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild
index 3583d60..cd8a280 100644
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild
+++ b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.170.0.ebuild
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="test"
 RDEPEND="
 	perl-core/Module-Build
-	>=dev-perl/CGI-Application-3.2
+	>=dev-perl/CGI-Application-3.200.0
 	dev-perl/Exception-Class
 	dev-perl/Exception-Class-TryCatch
 "
@@ -30,13 +30,13 @@ DEPEND="
 SRC_TEST=do
 
 src_test() {
-	# This jiggerypokery appears to be required if Apache::Test 
-	# is present. If it is not present or not use test? then we're ok, 
-	# but otherwise, we need to specify where apache is, or it will 
+	# This jiggerypokery appears to be required if Apache::Test
+	# is present. If it is not present or not use test? then we're ok,
+	# but otherwise, we need to specify where apache is, or it will
 	# for some reason, get stuck in a death loop and fill your log file
 	# and your hard drive. JOY! http://gist.github.com/447135
 
-	# NB. Because I have no way of conditionally triggering this code 
+	# NB. Because I have no way of conditionally triggering this code
 	# whether or not Apache-Test is installed ( like the code does )
 	# I have test-depped on it basically forcing a known circuit.
 

diff --git a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.0.ebuild b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.0.ebuild
index 788360f..eb4dbd8 100644
--- a/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.0.ebuild
+++ b/dev-perl/CGI-Application-Dispatch/CGI-Application-Dispatch-2.180.0.ebuild
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
 RDEPEND="
-	>=dev-perl/CGI-Application-3.2
+	>=dev-perl/CGI-Application-3.200.0
 	dev-perl/Exception-Class
 	dev-perl/Exception-Class-TryCatch
 	>=virtual/perl-version-0.82
@@ -32,13 +32,13 @@ DEPEND="
 SRC_TEST=do
 
 src_test() {
-	# This jiggerypokery appears to be required if Apache::Test 
-	# is present. If it is not present or not use test? then we're ok, 
-	# but otherwise, we need to specify where apache is, or it will 
+	# This jiggerypokery appears to be required if Apache::Test
+	# is present. If it is not present or not use test? then we're ok,
+	# but otherwise, we need to specify where apache is, or it will
 	# for some reason, get stuck in a death loop and fill your log file
 	# and your hard drive. JOY! http://gist.github.com/447135
 
-	# NB. Because I have no way of conditionally triggering this code 
+	# NB. Because I have no way of conditionally triggering this code
 	# whether or not Apache-Test is installed ( like the code does )
 	# I have test-depped on it basically forcing a known circuit.
 

diff --git a/dev-perl/CGI-Application-Dispatch/ChangeLog b/dev-perl/CGI-Application-Dispatch/ChangeLog
index a171086..7e655c7 100644
--- a/dev-perl/CGI-Application-Dispatch/ChangeLog
+++ b/dev-perl/CGI-Application-Dispatch/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  27 Jun 2011; Kent Fredric <kentfredric@gmail.com>
+  CGI-Application-Dispatch-2.160.0.ebuild,
+  CGI-Application-Dispatch-2.170.0.ebuild,
+  CGI-Application-Dispatch-2.180.0.ebuild:
+  Fix dependency on CGI-Application
+
 *CGI-Application-Dispatch-2.180.0 (27 Jun 2011)
 *CGI-Application-Dispatch-2.170.0 (27 Jun 2011)
 *CGI-Application-Dispatch-2.160.0 (27 Jun 2011)



^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-04-29 18:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-29 18:02 [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/CGI-Application-Dispatch/ Kent Fredric
  -- strict thread matches above, loose matches on Subject: below --
2015-04-29 18:02 Kent Fredric
2011-09-23  6:17 Kent Fredric
2011-07-15  7:11 Kent Fredric
2011-06-28  5:09 Kent Fredric
2011-06-28  5:09 Kent Fredric
2011-06-28  5:09 Kent Fredric

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox