public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2011-03-12 16:09 Kent Fredric
  0 siblings, 0 replies; 10+ messages in thread
From: Kent Fredric @ 2011-03-12 16:09 UTC (permalink / raw
  To: gentoo-commits

commit:     a7e950717b80e9011ab5f71d1bdc00a45a3a54d6
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Sat Mar 12 15:48:19 2011 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Sat Mar 12 15:48:19 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=a7e95071

[added] HTTP-Tiny : Will probably be in Perl 5.14

(Portage version: 2.2.0_alpha26/git/Linux x86_64, signed Manifest commit with key 0A0CB301)

---
 perl-core/HTTP-Tiny/ChangeLog               |   10 ++++++
 perl-core/HTTP-Tiny/HTTP-Tiny-0.10.0.ebuild |   43 +++++++++++++++++++++++++++
 perl-core/HTTP-Tiny/metadata.xml            |    9 +++++
 3 files changed, 62 insertions(+), 0 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
new file mode 100644
index 0000000..95cb2d3
--- /dev/null
+++ b/perl-core/HTTP-Tiny/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for perl-core/HTTP-Tiny
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*HTTP-Tiny-0.10.0 (12 Mar 2011)
+
+  12 Mar 2011; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.10.0.ebuild,
+  +metadata.xml:
+  Added: Comming up in Perl 5.14
+

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.10.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.10.0.ebuild
new file mode 100644
index 0000000..4714600
--- /dev/null
+++ b/perl-core/HTTP-Tiny/HTTP-Tiny-0.10.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI="3"
+MODULE_AUTHOR=DAGOLDEN
+MODULE_VERSION="0.010"
+inherit perl-module
+
+DESCRIPTION="A small, simple, correct HTTP/1.1 client"
+LICENSE="|| ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+comment() { echo ''; }
+
+COMMON_DEPEND="
+	$(comment Carp)
+	$(comment Erno)
+	virtual/perl-IO
+	$(comment ^^ IO::Socket)
+	virtual/perl-Time-Local
+"
+DEPEND="
+	${COMMON_DEPEND}
+	$(comment Data-Dumper)
+	$(comment Exporter)
+	$(comment File-Basename)
+	virtual/perl-File-Spec
+	virtual/perl-File-Temp
+	virtual/perl-IO
+	$(comment ^^ IO::Dir )
+	$(comment ^^ IO::File )
+	$(comment ^^ IO::Socket::INET )
+	test? (
+		>=virtual/perl-Test-Simple-0.88
+	)
+	>=virtual/perl-ExtUtils-MakeMaker-6.31
+"
+RDEPEND="
+	${COMMON_DEPEND}
+"
+SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/metadata.xml b/perl-core/HTTP-Tiny/metadata.xml
new file mode 100644
index 0000000..ccc7e0f
--- /dev/null
+++ b/perl-core/HTTP-Tiny/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <herd>perl</herd>
+    <maintainer>
+        <email>kentfredric@gmail.com</email>
+        <name>Kent Fredric</name>
+    </maintainer>
+</pkgmetadata>



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

* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2011-03-22  1:34 Kent Fredric
  0 siblings, 0 replies; 10+ messages in thread
From: Kent Fredric @ 2011-03-22  1:34 UTC (permalink / raw
  To: gentoo-commits

commit:     3c2664427668c9dc2091b62538e62581cbd021ca
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Tue Mar 22 00:27:07 2011 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Tue Mar 22 00:27:07 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=3c266442

[newversion] HTTP-Tiny-0.11.0

(Portage version: 2.2.0_alpha27/git/Linux x86_64, signed Manifest commit with key 0A0CB301)

---
 perl-core/HTTP-Tiny/ChangeLog               |    5 +++
 perl-core/HTTP-Tiny/HTTP-Tiny-0.11.0.ebuild |   42 +++++++++++++++++++++++++++
 2 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
index 95cb2d3..e9f5d86 100644
--- a/perl-core/HTTP-Tiny/ChangeLog
+++ b/perl-core/HTTP-Tiny/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*HTTP-Tiny-0.11.0 (22 Mar 2011)
+
+  22 Mar 2011; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.11.0.ebuild:
+  Bump
+
 *HTTP-Tiny-0.10.0 (12 Mar 2011)
 
   12 Mar 2011; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.10.0.ebuild,

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.11.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.11.0.ebuild
new file mode 100644
index 0000000..0f5aa16
--- /dev/null
+++ b/perl-core/HTTP-Tiny/HTTP-Tiny-0.11.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI="3"
+MODULE_AUTHOR=DAGOLDEN
+MODULE_VERSION="0.011"
+inherit perl-module
+
+DESCRIPTION="A small, simple, correct HTTP/1.1 client"
+LICENSE="|| ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+comment() { echo ''; }
+
+COMMON_DEPEND="
+	$(comment Carp)
+	virtual/perl-IO
+	$(comment ^^ IO::Socket)
+	virtual/perl-Time-Local
+"
+DEPEND="
+	${COMMON_DEPEND}
+	$(comment Data-Dumper)
+	$(comment Exporter)
+	$(comment File-Basename)
+	virtual/perl-File-Spec
+	virtual/perl-File-Temp
+	virtual/perl-IO
+	$(comment ^^ IO::Dir )
+	$(comment ^^ IO::File )
+	$(comment ^^ IO::Socket::INET )
+	test? (
+		>=virtual/perl-Test-Simple-0.88
+	)
+	>=virtual/perl-ExtUtils-MakeMaker-6.31
+"
+RDEPEND="
+	${COMMON_DEPEND}
+"
+SRC_TEST="do"



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

* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2011-04-01 13:20 Torsten Veller
  0 siblings, 0 replies; 10+ messages in thread
From: Torsten Veller @ 2011-04-01 13:20 UTC (permalink / raw
  To: gentoo-commits

commit:     7e559bb24bdd73b44a99a9d510f7c4a552ef2f4d
Author:     Torsten Veller <tove <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  1 13:18:51 2011 +0000
Commit:     Torsten Veller <tove <AT> gentoo <DOT> org>
CommitDate: Fri Apr  1 13:18:51 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=7e559bb2

[bump] perl-core/HTTP-Tiny-0.12.0

(Portage version: 2.2.0_alpha29/git/Linux x86_64, signed Manifest commit with key 0x4E046AEC)

---
 perl-core/HTTP-Tiny/ChangeLog               |    5 +++
 perl-core/HTTP-Tiny/HTTP-Tiny-0.12.0.ebuild |   42 +++++++++++++++++++++++++++
 2 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
index e9f5d86..b874f52 100644
--- a/perl-core/HTTP-Tiny/ChangeLog
+++ b/perl-core/HTTP-Tiny/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*HTTP-Tiny-0.12.0 (01 Apr 2011)
+
+  01 Apr 2011; Torsten Veller <tove@gentoo.org> +HTTP-Tiny-0.12.0.ebuild:
+  Version bump
+
 *HTTP-Tiny-0.11.0 (22 Mar 2011)
 
   22 Mar 2011; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.11.0.ebuild:

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.12.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.12.0.ebuild
new file mode 100644
index 0000000..aeacb0d
--- /dev/null
+++ b/perl-core/HTTP-Tiny/HTTP-Tiny-0.12.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI="3"
+MODULE_AUTHOR=DAGOLDEN
+MODULE_VERSION=0.012
+inherit perl-module
+
+DESCRIPTION="A small, simple, correct HTTP/1.1 client"
+LICENSE="|| ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+comment() { echo ''; }
+
+COMMON_DEPEND="
+	$(comment Carp)
+	virtual/perl-IO
+	$(comment ^^ IO::Socket)
+	virtual/perl-Time-Local
+"
+DEPEND="
+	${COMMON_DEPEND}
+	$(comment Data-Dumper)
+	$(comment Exporter)
+	$(comment File-Basename)
+	virtual/perl-File-Spec
+	virtual/perl-File-Temp
+	virtual/perl-IO
+	$(comment ^^ IO::Dir )
+	$(comment ^^ IO::File )
+	$(comment ^^ IO::Socket::INET )
+	test? (
+		>=virtual/perl-Test-Simple-0.88
+	)
+	>=virtual/perl-ExtUtils-MakeMaker-6.31
+"
+RDEPEND="
+	${COMMON_DEPEND}
+"
+SRC_TEST="do"



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

* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2011-07-18 17:39 Torsten Veller
  0 siblings, 0 replies; 10+ messages in thread
From: Torsten Veller @ 2011-07-18 17:39 UTC (permalink / raw
  To: gentoo-commits

commit:     c1ab84b7c26fcefe1e89a375661c415d88dd2e80
Author:     Torsten Veller <tove <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 18 17:38:40 2011 +0000
Commit:     Torsten Veller <tove <AT> gentoo <DOT> org>
CommitDate: Mon Jul 18 17:38:40 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=c1ab84b7

[bump] perl-core/HTTP-Tiny-0.13.0

(Portage version: 2.2.0_alpha45/git/Linux x86_64, signed Manifest commit with key 0x4E046AEC)

---
 perl-core/HTTP-Tiny/ChangeLog               |    5 +++
 perl-core/HTTP-Tiny/HTTP-Tiny-0.13.0.ebuild |   42 +++++++++++++++++++++++++++
 2 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
index b874f52..72a15f1 100644
--- a/perl-core/HTTP-Tiny/ChangeLog
+++ b/perl-core/HTTP-Tiny/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*HTTP-Tiny-0.13.0 (18 Jul 2011)
+
+  18 Jul 2011; Torsten Veller <tove@gentoo.org> +HTTP-Tiny-0.13.0.ebuild:
+  Version bump
+
 *HTTP-Tiny-0.12.0 (01 Apr 2011)
 
   01 Apr 2011; Torsten Veller <tove@gentoo.org> +HTTP-Tiny-0.12.0.ebuild:

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.13.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.13.0.ebuild
new file mode 100644
index 0000000..6f7bb60
--- /dev/null
+++ b/perl-core/HTTP-Tiny/HTTP-Tiny-0.13.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI=4
+MODULE_AUTHOR=DAGOLDEN
+MODULE_VERSION=0.013
+inherit perl-module
+
+DESCRIPTION="A small, simple, correct HTTP/1.1 client"
+LICENSE="|| ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+comment() { echo ''; }
+
+COMMON_DEPEND="
+	$(comment Carp)
+	virtual/perl-IO
+	$(comment ^^ IO::Socket)
+	virtual/perl-Time-Local
+"
+DEPEND="
+	${COMMON_DEPEND}
+	$(comment Data-Dumper)
+	$(comment Exporter)
+	$(comment File-Basename)
+	virtual/perl-File-Spec
+	virtual/perl-File-Temp
+	virtual/perl-IO
+	$(comment ^^ IO::Dir )
+	$(comment ^^ IO::File )
+	$(comment ^^ IO::Socket::INET )
+	test? (
+		>=virtual/perl-Test-Simple-0.88
+	)
+	>=virtual/perl-ExtUtils-MakeMaker-6.31
+"
+RDEPEND="
+	${COMMON_DEPEND}
+"
+SRC_TEST="do"



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

* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2012-02-26 13:46 Kent Fredric
  0 siblings, 0 replies; 10+ messages in thread
From: Kent Fredric @ 2012-02-26 13:46 UTC (permalink / raw
  To: gentoo-commits

commit:     64112fe97f352e7a978ca14689f8d56129584240
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Sun Feb 26 11:01:22 2012 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Sun Feb 26 11:01:22 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=64112fe9

[newversion] core/HTTP-Tiny-0.17.0

(Portage version: 2.2.0_alpha85/git/Linux x86_64, signed Manifest commit with key 4132B87441EA24A4EB5E6DE181EC638ED7AE97A6)

---
 perl-core/HTTP-Tiny/ChangeLog               |    7 +++-
 perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild |   66 +++++++++++++++++++++++++++
 2 files changed, 72 insertions(+), 1 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
index 72a15f1..6c09bf9 100644
--- a/perl-core/HTTP-Tiny/ChangeLog
+++ b/perl-core/HTTP-Tiny/ChangeLog
@@ -1,7 +1,12 @@
 # ChangeLog for perl-core/HTTP-Tiny
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*HTTP-Tiny-0.17.0 (26 Feb 2012)
+
+  26 Feb 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.17.0.ebuild:
+  Version Bump
+
 *HTTP-Tiny-0.13.0 (18 Jul 2011)
 
   18 Jul 2011; Torsten Veller <tove@gentoo.org> +HTTP-Tiny-0.13.0.ebuild:

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild
new file mode 100644
index 0000000..2098680
--- /dev/null
+++ b/perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI=4
+MODULE_AUTHOR=DAGOLDEN
+MODULE_VERSION=0.017
+inherit perl-module
+
+DESCRIPTION='A small, simple, correct HTTP/1.1 client'
+LICENSE=" || ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+perl_meta_configure() {
+	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
+	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
+}
+perl_meta_runtime() {
+	# Carp
+	# echo dev-perl/Carp
+	# IO::Socket
+	echo virtual/perl-IO
+	# Time::Local
+	echo virtual/perl-Time-Local
+	# bytes
+	echo dev-lang/perl
+	# perl 5.006 ( 5.6.0 )
+	echo \>=dev-lang/perl-5.6.0
+	# strict
+	echo dev-lang/perl
+	# warnings
+	echo dev-lang/perl
+}
+perl_meta_test() {
+	# Data::Dumper
+	echo virtual/perl-Data-Dumper
+	# Exporter
+	echo virtual/perl-Exporter
+	# File::Basename
+	echo dev-lang/perl
+	# File::Find
+	echo dev-lang/perl
+	# File::Spec
+	echo virtual/perl-File-Spec
+	# File::Temp
+	echo virtual/perl-File-Temp
+	# IO::Dir
+	echo virtual/perl-IO
+	# IO::File
+	echo virtual/perl-IO
+	# IO::Socket::INET
+	echo virtual/perl-IO
+	# Test::More 0.88 ( 0.880.0 )
+	echo \>=virtual/perl-Test-Simple-0.88
+	# open
+	echo dev-lang/perl
+}
+DEPEND="
+	$(perl_meta_configure)
+	$(perl_meta_runtime)
+	test? ( $(perl_meta_test) )
+"
+RDEPEND="
+	$(perl_meta_runtime)
+"
+SRC_TEST="do"



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

* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2012-05-27  7:47 Kent Fredric
  0 siblings, 0 replies; 10+ messages in thread
From: Kent Fredric @ 2012-05-27  7:47 UTC (permalink / raw
  To: gentoo-commits

commit:     e15a4a93acbddfb80acaf39fbcb46d126f8f468b
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Sun May 27 03:59:01 2012 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Sun May 27 03:59:01 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=e15a4a93

[newversion] HTTP-Tiny-0.21.0

(Portage version: 2.2.0_alpha101/git/Linux x86_64, signed Manifest commit with key 4132B87441EA24A4EB5E6DE181EC638ED7AE97A6)

---
 perl-core/HTTP-Tiny/ChangeLog               |    5 ++
 perl-core/HTTP-Tiny/HTTP-Tiny-0.21.0.ebuild |   72 +++++++++++++++++++++++++++
 2 files changed, 77 insertions(+), 0 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
index 6c09bf9..2202a08 100644
--- a/perl-core/HTTP-Tiny/ChangeLog
+++ b/perl-core/HTTP-Tiny/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*HTTP-Tiny-0.21.0 (27 May 2012)
+
+  27 May 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.21.0.ebuild:
+  Version Bump
+
 *HTTP-Tiny-0.17.0 (26 Feb 2012)
 
   26 Feb 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.17.0.ebuild:

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.21.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.21.0.ebuild
new file mode 100644
index 0000000..6382657
--- /dev/null
+++ b/perl-core/HTTP-Tiny/HTTP-Tiny-0.21.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI=4
+MODULE_AUTHOR=DAGOLDEN
+MODULE_VERSION=0.021
+inherit perl-module
+
+DESCRIPTION='A small, simple, correct HTTP/1.1 client'
+LICENSE=" || ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+perl_meta_configure() {
+	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
+	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
+}
+perl_meta_runtime() {
+	# Carp
+	# echo virtual/perl-Carp
+	# IO::Socket
+	echo virtual/perl-IO
+	# Time::Local
+	echo virtual/perl-Time-Local
+	# bytes
+	echo dev-lang/perl
+	# perl 5.006 ( 5.6.0 )
+	echo \>=dev-lang/perl-5.6.0
+	# strict
+	echo dev-lang/perl
+	# warnings
+	echo dev-lang/perl
+}
+perl_meta_test() {
+	# Data::Dumper
+	echo virtual/perl-Data-Dumper
+	# Exporter
+	echo virtual/perl-Exporter
+	# ExtUtils::MakeMaker
+	echo virtual/perl-ExtUtils-MakeMaker
+	# File::Basename
+	echo dev-lang/perl
+	# File::Find
+	echo dev-lang/perl
+	# File::Spec
+	echo virtual/perl-File-Spec
+	# File::Spec::Functions
+	echo virtual/perl-File-Spec
+	# File::Temp
+	echo virtual/perl-File-Temp
+	# IO::Dir
+	echo virtual/perl-IO
+	# IO::File
+	echo virtual/perl-IO
+	# IO::Socket::INET
+	echo virtual/perl-IO
+	# List::Util
+	echo virtual/perl-Scalar-List-Utils
+	# Test::More 0.88 ( 0.880.0 )
+	echo \>=virtual/perl-Test-Simple-0.88
+	# open
+	echo dev-lang/perl
+}
+DEPEND="
+	$(perl_meta_configure)
+	$(perl_meta_runtime)
+	test? ( $(perl_meta_test) )
+"
+RDEPEND="
+	$(perl_meta_runtime)
+"
+SRC_TEST="do"



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

* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2012-06-09 14:33 Kent Fredric
  0 siblings, 0 replies; 10+ messages in thread
From: Kent Fredric @ 2012-06-09 14:33 UTC (permalink / raw
  To: gentoo-commits

commit:     f9a7151be4c35046250c26410860d28e224d25d6
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Sat Jun  9 12:49:15 2012 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Sat Jun  9 12:49:15 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=f9a7151b

[newversion] HTTP-Tiny-0.22.0

(Portage version: 2.2.0_alpha101/git/Linux x86_64, signed Manifest commit with key 4132B87441EA24A4EB5E6DE181EC638ED7AE97A6)

---
 perl-core/HTTP-Tiny/ChangeLog               |    5 ++
 perl-core/HTTP-Tiny/HTTP-Tiny-0.22.0.ebuild |   72 +++++++++++++++++++++++++++
 2 files changed, 77 insertions(+), 0 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
index 2202a08..0344bd2 100644
--- a/perl-core/HTTP-Tiny/ChangeLog
+++ b/perl-core/HTTP-Tiny/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*HTTP-Tiny-0.22.0 (09 Jun 2012)
+
+  09 Jun 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.22.0.ebuild:
+  Version Bump
+
 *HTTP-Tiny-0.21.0 (27 May 2012)
 
   27 May 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.21.0.ebuild:

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.22.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.22.0.ebuild
new file mode 100644
index 0000000..e4f0117
--- /dev/null
+++ b/perl-core/HTTP-Tiny/HTTP-Tiny-0.22.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI=4
+MODULE_AUTHOR=DAGOLDEN
+MODULE_VERSION=0.022
+inherit perl-module
+
+DESCRIPTION='A small, simple, correct HTTP/1.1 client'
+LICENSE=" || ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+perl_meta_configure() {
+	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
+	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
+}
+perl_meta_runtime() {
+	# Carp
+	# echo virtual/perl-Carp
+	# IO::Socket
+	echo virtual/perl-IO
+	# Time::Local
+	echo virtual/perl-Time-Local
+	# bytes
+	echo dev-lang/perl
+	# perl 5.006 ( 5.6.0 )
+	echo \>=dev-lang/perl-5.6.0
+	# strict
+	echo dev-lang/perl
+	# warnings
+	echo dev-lang/perl
+}
+perl_meta_test() {
+	# Data::Dumper
+	echo virtual/perl-Data-Dumper
+	# Exporter
+	echo virtual/perl-Exporter
+	# ExtUtils::MakeMaker
+	echo virtual/perl-ExtUtils-MakeMaker
+	# File::Basename
+	echo dev-lang/perl
+	# File::Find
+	echo dev-lang/perl
+	# File::Spec
+	echo virtual/perl-File-Spec
+	# File::Spec::Functions
+	echo virtual/perl-File-Spec
+	# File::Temp
+	echo virtual/perl-File-Temp
+	# IO::Dir
+	echo virtual/perl-IO
+	# IO::File
+	echo virtual/perl-IO
+	# IO::Socket::INET
+	echo virtual/perl-IO
+	# List::Util
+	echo virtual/perl-Scalar-List-Utils
+	# Test::More 0.88 ( 0.880.0 )
+	echo \>=virtual/perl-Test-Simple-0.88
+	# open
+	echo dev-lang/perl
+}
+DEPEND="
+	$(perl_meta_configure)
+	$(perl_meta_runtime)
+	test? ( $(perl_meta_test) )
+"
+RDEPEND="
+	$(perl_meta_runtime)
+"
+SRC_TEST="do"



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

* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2012-10-28  2:41 Kent Fredric
  0 siblings, 0 replies; 10+ messages in thread
From: Kent Fredric @ 2012-10-28  2:41 UTC (permalink / raw
  To: gentoo-commits

commit:     26fef01e80dd672f234574a48fc624ba678f6a50
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Sat Oct 27 19:58:14 2012 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Sat Oct 27 19:58:14 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=26fef01e

[newversion] core/HTTP-Tiny-0.24.0

Package-Manager: portage-2.2.0_alpha141
Manifest-Sign-Key: ECD2C675C102CDA4

---
 perl-core/HTTP-Tiny/ChangeLog               |    5 ++
 perl-core/HTTP-Tiny/HTTP-Tiny-0.24.0.ebuild |   74 +++++++++++++++++++++++++++
 2 files changed, 79 insertions(+), 0 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
index 0344bd2..b9eedb0 100644
--- a/perl-core/HTTP-Tiny/ChangeLog
+++ b/perl-core/HTTP-Tiny/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*HTTP-Tiny-0.24.0 (27 Oct 2012)
+
+  27 Oct 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.24.0.ebuild:
+  Version Bump
+
 *HTTP-Tiny-0.22.0 (09 Jun 2012)
 
   09 Jun 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.22.0.ebuild:

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.24.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.24.0.ebuild
new file mode 100644
index 0000000..3d30926
--- /dev/null
+++ b/perl-core/HTTP-Tiny/HTTP-Tiny-0.24.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+EAPI=5
+MODULE_AUTHOR=DAGOLDEN
+MODULE_VERSION=0.024
+inherit perl-module
+
+DESCRIPTION='A small, simple, correct HTTP/1.1 client'
+LICENSE=" || ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+perl_meta_configure() {
+	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
+	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
+}
+perl_meta_runtime() {
+	# Carp
+	echo dev-lang/perl
+	# IO::Socket
+	echo virtual/perl-IO
+	# Time::Local
+	echo virtual/perl-Time-Local
+	# bytes
+	echo dev-lang/perl
+	# perl 5.006 ( 5.6.0 )
+	echo \>=dev-lang/perl-5.6.0
+	# strict
+	echo dev-lang/perl
+	# warnings
+	echo dev-lang/perl
+}
+perl_meta_test() {
+	# Data::Dumper
+	echo virtual/perl-Data-Dumper
+	# Exporter
+	echo virtual/perl-Exporter
+	# ExtUtils::MakeMaker
+	echo virtual/perl-ExtUtils-MakeMaker
+	# File::Basename
+	echo dev-lang/perl
+	# File::Find
+	echo dev-lang/perl
+	# File::Spec
+	echo virtual/perl-File-Spec
+	# File::Spec::Functions
+	echo virtual/perl-File-Spec
+	# File::Temp
+	echo virtual/perl-File-Temp
+	# IO::Dir
+	echo virtual/perl-IO
+	# IO::File
+	echo virtual/perl-IO
+	# IO::Socket::INET
+	echo virtual/perl-IO
+	# IPC::Cmd
+	echo virtual/perl-IPC-Cmd
+	# List::Util
+	echo virtual/perl-Scalar-List-Utils
+	# Test::More 0.88 ( 0.880.0 )
+	echo \>=virtual/perl-Test-Simple-0.88
+	# open
+	echo dev-lang/perl
+}
+DEPEND="
+	$(perl_meta_configure)
+	$(perl_meta_runtime)
+	test? ( $(perl_meta_test) )
+"
+RDEPEND="
+	$(perl_meta_runtime)
+"
+SRC_TEST="do"


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

* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2013-11-09  5:56 Kent Fredric
  0 siblings, 0 replies; 10+ messages in thread
From: Kent Fredric @ 2013-11-09  5:56 UTC (permalink / raw
  To: gentoo-commits

commit:     c2561c9d64cd928862248350189b5faa20da6aa4
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Fri Nov  8 15:32:23 2013 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Fri Nov  8 15:32:23 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=c2561c9d

[trim] perl-core/HTTP-Tiny-0.29.0 In gentoo

Package-Manager: portage-2.2.7
Manifest-Sign-Key: E854324B1366A820

---
 perl-core/HTTP-Tiny/ChangeLog               |  3 ++
 perl-core/HTTP-Tiny/HTTP-Tiny-0.29.0.ebuild | 74 -----------------------------
 2 files changed, 3 insertions(+), 74 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
index e4c5315..ab6ff4b 100644
--- a/perl-core/HTTP-Tiny/ChangeLog
+++ b/perl-core/HTTP-Tiny/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  08 Nov 2013; Kent Fredric <kentfredric@gmail.com> -HTTP-Tiny-0.29.0.ebuild:
+  In gentoo
+
 *HTTP-Tiny-0.29.0 (02 May 2013)
 
   02 May 2013; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.29.0.ebuild:

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.29.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.29.0.ebuild
deleted file mode 100644
index d9bc8d2..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.29.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.029
-inherit perl-module
-
-DESCRIPTION='A small, simple, correct HTTP/1.1 client'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-	# Carp
-	echo dev-lang/perl
-	# IO::Socket
-	echo virtual/perl-IO
-	# Time::Local
-	echo virtual/perl-Time-Local
-	# bytes
-	echo dev-lang/perl
-	# perl 5.006 ( 5.6.0 )
-	echo \>=dev-lang/perl-5.6.0
-	# strict
-	echo dev-lang/perl
-	# warnings
-	echo dev-lang/perl
-}
-perl_meta_test() {
-	# Data::Dumper
-	echo virtual/perl-Data-Dumper
-	# Exporter
-	echo virtual/perl-Exporter
-	# ExtUtils::MakeMaker
-	echo virtual/perl-ExtUtils-MakeMaker
-	# File::Basename
-	echo dev-lang/perl
-	# File::Find
-	echo dev-lang/perl
-	# File::Spec
-	echo virtual/perl-File-Spec
-	# File::Spec::Functions
-	echo virtual/perl-File-Spec
-	# File::Temp
-	echo virtual/perl-File-Temp
-	# IO::Dir
-	echo virtual/perl-IO
-	# IO::File
-	echo virtual/perl-IO
-	# IO::Socket::INET
-	echo virtual/perl-IO
-	# IPC::Cmd
-	echo virtual/perl-IPC-Cmd
-	# List::Util
-	echo virtual/perl-Scalar-List-Utils
-	# Test::More 0.96 ( 0.960.0 )
-	echo \>=virtual/perl-Test-Simple-0.96
-	# open
-	echo dev-lang/perl
-}
-DEPEND="
-	$(perl_meta_configure)
-	$(perl_meta_runtime)
-	test? ( $(perl_meta_test) )
-"
-RDEPEND="
-	$(perl_meta_runtime)
-"
-SRC_TEST="do"


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

* [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
@ 2014-09-06  9:52 Kent Fredric
  0 siblings, 0 replies; 10+ messages in thread
From: Kent Fredric @ 2014-09-06  9:52 UTC (permalink / raw
  To: gentoo-commits

commit:     3dc3bcdadb10300492827f8e28c356cda8bd523c
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Sat Sep  6 08:17:21 2014 +0000
Commit:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Sat Sep  6 08:17:21 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=3dc3bcda

[treeclean] remove HTTP-Tiny which is completely superceded by ::gentoo

---
 perl-core/HTTP-Tiny/ChangeLog               | 58 ----------------------
 perl-core/HTTP-Tiny/HTTP-Tiny-0.10.0.ebuild | 43 -----------------
 perl-core/HTTP-Tiny/HTTP-Tiny-0.11.0.ebuild | 42 ----------------
 perl-core/HTTP-Tiny/HTTP-Tiny-0.12.0.ebuild | 42 ----------------
 perl-core/HTTP-Tiny/HTTP-Tiny-0.13.0.ebuild | 42 ----------------
 perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild | 66 -------------------------
 perl-core/HTTP-Tiny/HTTP-Tiny-0.21.0.ebuild | 72 ----------------------------
 perl-core/HTTP-Tiny/HTTP-Tiny-0.22.0.ebuild | 72 ----------------------------
 perl-core/HTTP-Tiny/HTTP-Tiny-0.24.0.ebuild | 74 -----------------------------
 perl-core/HTTP-Tiny/HTTP-Tiny-0.25.0.ebuild | 74 -----------------------------
 perl-core/HTTP-Tiny/metadata.xml            | 13 -----
 11 files changed, 598 deletions(-)

diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
deleted file mode 100644
index ab6ff4b..0000000
--- a/perl-core/HTTP-Tiny/ChangeLog
+++ /dev/null
@@ -1,58 +0,0 @@
-# ChangeLog for perl-core/HTTP-Tiny
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  08 Nov 2013; Kent Fredric <kentfredric@gmail.com> -HTTP-Tiny-0.29.0.ebuild:
-  In gentoo
-
-*HTTP-Tiny-0.29.0 (02 May 2013)
-
-  02 May 2013; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.29.0.ebuild:
-  Version Bump
-
-*HTTP-Tiny-0.25.0 (24 Feb 2013)
-
-  24 Feb 2013; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.25.0.ebuild:
-  Version Bump
-
-*HTTP-Tiny-0.24.0 (27 Oct 2012)
-
-  27 Oct 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.24.0.ebuild:
-  Version Bump
-
-*HTTP-Tiny-0.22.0 (09 Jun 2012)
-
-  09 Jun 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.22.0.ebuild:
-  Version Bump
-
-*HTTP-Tiny-0.21.0 (27 May 2012)
-
-  27 May 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.21.0.ebuild:
-  Version Bump
-
-*HTTP-Tiny-0.17.0 (26 Feb 2012)
-
-  26 Feb 2012; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.17.0.ebuild:
-  Version Bump
-
-*HTTP-Tiny-0.13.0 (18 Jul 2011)
-
-  18 Jul 2011; Torsten Veller <tove@gentoo.org> +HTTP-Tiny-0.13.0.ebuild:
-  Version bump
-
-*HTTP-Tiny-0.12.0 (01 Apr 2011)
-
-  01 Apr 2011; Torsten Veller <tove@gentoo.org> +HTTP-Tiny-0.12.0.ebuild:
-  Version bump
-
-*HTTP-Tiny-0.11.0 (22 Mar 2011)
-
-  22 Mar 2011; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.11.0.ebuild:
-  Bump
-
-*HTTP-Tiny-0.10.0 (12 Mar 2011)
-
-  12 Mar 2011; Kent Fredric <kentfredric@gmail.com> +HTTP-Tiny-0.10.0.ebuild,
-  +metadata.xml:
-  Added: Comming up in Perl 5.14
-

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.10.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.10.0.ebuild
deleted file mode 100644
index 4714600..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.10.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI="3"
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION="0.010"
-inherit perl-module
-
-DESCRIPTION="A small, simple, correct HTTP/1.1 client"
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-comment() { echo ''; }
-
-COMMON_DEPEND="
-	$(comment Carp)
-	$(comment Erno)
-	virtual/perl-IO
-	$(comment ^^ IO::Socket)
-	virtual/perl-Time-Local
-"
-DEPEND="
-	${COMMON_DEPEND}
-	$(comment Data-Dumper)
-	$(comment Exporter)
-	$(comment File-Basename)
-	virtual/perl-File-Spec
-	virtual/perl-File-Temp
-	virtual/perl-IO
-	$(comment ^^ IO::Dir )
-	$(comment ^^ IO::File )
-	$(comment ^^ IO::Socket::INET )
-	test? (
-		>=virtual/perl-Test-Simple-0.88
-	)
-	>=virtual/perl-ExtUtils-MakeMaker-6.31
-"
-RDEPEND="
-	${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.11.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.11.0.ebuild
deleted file mode 100644
index 0f5aa16..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.11.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI="3"
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION="0.011"
-inherit perl-module
-
-DESCRIPTION="A small, simple, correct HTTP/1.1 client"
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-comment() { echo ''; }
-
-COMMON_DEPEND="
-	$(comment Carp)
-	virtual/perl-IO
-	$(comment ^^ IO::Socket)
-	virtual/perl-Time-Local
-"
-DEPEND="
-	${COMMON_DEPEND}
-	$(comment Data-Dumper)
-	$(comment Exporter)
-	$(comment File-Basename)
-	virtual/perl-File-Spec
-	virtual/perl-File-Temp
-	virtual/perl-IO
-	$(comment ^^ IO::Dir )
-	$(comment ^^ IO::File )
-	$(comment ^^ IO::Socket::INET )
-	test? (
-		>=virtual/perl-Test-Simple-0.88
-	)
-	>=virtual/perl-ExtUtils-MakeMaker-6.31
-"
-RDEPEND="
-	${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.12.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.12.0.ebuild
deleted file mode 100644
index aeacb0d..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.12.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI="3"
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.012
-inherit perl-module
-
-DESCRIPTION="A small, simple, correct HTTP/1.1 client"
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-comment() { echo ''; }
-
-COMMON_DEPEND="
-	$(comment Carp)
-	virtual/perl-IO
-	$(comment ^^ IO::Socket)
-	virtual/perl-Time-Local
-"
-DEPEND="
-	${COMMON_DEPEND}
-	$(comment Data-Dumper)
-	$(comment Exporter)
-	$(comment File-Basename)
-	virtual/perl-File-Spec
-	virtual/perl-File-Temp
-	virtual/perl-IO
-	$(comment ^^ IO::Dir )
-	$(comment ^^ IO::File )
-	$(comment ^^ IO::Socket::INET )
-	test? (
-		>=virtual/perl-Test-Simple-0.88
-	)
-	>=virtual/perl-ExtUtils-MakeMaker-6.31
-"
-RDEPEND="
-	${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.13.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.13.0.ebuild
deleted file mode 100644
index 6f7bb60..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.13.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.013
-inherit perl-module
-
-DESCRIPTION="A small, simple, correct HTTP/1.1 client"
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-comment() { echo ''; }
-
-COMMON_DEPEND="
-	$(comment Carp)
-	virtual/perl-IO
-	$(comment ^^ IO::Socket)
-	virtual/perl-Time-Local
-"
-DEPEND="
-	${COMMON_DEPEND}
-	$(comment Data-Dumper)
-	$(comment Exporter)
-	$(comment File-Basename)
-	virtual/perl-File-Spec
-	virtual/perl-File-Temp
-	virtual/perl-IO
-	$(comment ^^ IO::Dir )
-	$(comment ^^ IO::File )
-	$(comment ^^ IO::Socket::INET )
-	test? (
-		>=virtual/perl-Test-Simple-0.88
-	)
-	>=virtual/perl-ExtUtils-MakeMaker-6.31
-"
-RDEPEND="
-	${COMMON_DEPEND}
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild
deleted file mode 100644
index 2098680..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.017
-inherit perl-module
-
-DESCRIPTION='A small, simple, correct HTTP/1.1 client'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-	# Carp
-	# echo dev-perl/Carp
-	# IO::Socket
-	echo virtual/perl-IO
-	# Time::Local
-	echo virtual/perl-Time-Local
-	# bytes
-	echo dev-lang/perl
-	# perl 5.006 ( 5.6.0 )
-	echo \>=dev-lang/perl-5.6.0
-	# strict
-	echo dev-lang/perl
-	# warnings
-	echo dev-lang/perl
-}
-perl_meta_test() {
-	# Data::Dumper
-	echo virtual/perl-Data-Dumper
-	# Exporter
-	echo virtual/perl-Exporter
-	# File::Basename
-	echo dev-lang/perl
-	# File::Find
-	echo dev-lang/perl
-	# File::Spec
-	echo virtual/perl-File-Spec
-	# File::Temp
-	echo virtual/perl-File-Temp
-	# IO::Dir
-	echo virtual/perl-IO
-	# IO::File
-	echo virtual/perl-IO
-	# IO::Socket::INET
-	echo virtual/perl-IO
-	# Test::More 0.88 ( 0.880.0 )
-	echo \>=virtual/perl-Test-Simple-0.88
-	# open
-	echo dev-lang/perl
-}
-DEPEND="
-	$(perl_meta_configure)
-	$(perl_meta_runtime)
-	test? ( $(perl_meta_test) )
-"
-RDEPEND="
-	$(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.21.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.21.0.ebuild
deleted file mode 100644
index 6382657..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.21.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.021
-inherit perl-module
-
-DESCRIPTION='A small, simple, correct HTTP/1.1 client'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-	# Carp
-	# echo virtual/perl-Carp
-	# IO::Socket
-	echo virtual/perl-IO
-	# Time::Local
-	echo virtual/perl-Time-Local
-	# bytes
-	echo dev-lang/perl
-	# perl 5.006 ( 5.6.0 )
-	echo \>=dev-lang/perl-5.6.0
-	# strict
-	echo dev-lang/perl
-	# warnings
-	echo dev-lang/perl
-}
-perl_meta_test() {
-	# Data::Dumper
-	echo virtual/perl-Data-Dumper
-	# Exporter
-	echo virtual/perl-Exporter
-	# ExtUtils::MakeMaker
-	echo virtual/perl-ExtUtils-MakeMaker
-	# File::Basename
-	echo dev-lang/perl
-	# File::Find
-	echo dev-lang/perl
-	# File::Spec
-	echo virtual/perl-File-Spec
-	# File::Spec::Functions
-	echo virtual/perl-File-Spec
-	# File::Temp
-	echo virtual/perl-File-Temp
-	# IO::Dir
-	echo virtual/perl-IO
-	# IO::File
-	echo virtual/perl-IO
-	# IO::Socket::INET
-	echo virtual/perl-IO
-	# List::Util
-	echo virtual/perl-Scalar-List-Utils
-	# Test::More 0.88 ( 0.880.0 )
-	echo \>=virtual/perl-Test-Simple-0.88
-	# open
-	echo dev-lang/perl
-}
-DEPEND="
-	$(perl_meta_configure)
-	$(perl_meta_runtime)
-	test? ( $(perl_meta_test) )
-"
-RDEPEND="
-	$(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.22.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.22.0.ebuild
deleted file mode 100644
index e4f0117..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.22.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.022
-inherit perl-module
-
-DESCRIPTION='A small, simple, correct HTTP/1.1 client'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-	# Carp
-	# echo virtual/perl-Carp
-	# IO::Socket
-	echo virtual/perl-IO
-	# Time::Local
-	echo virtual/perl-Time-Local
-	# bytes
-	echo dev-lang/perl
-	# perl 5.006 ( 5.6.0 )
-	echo \>=dev-lang/perl-5.6.0
-	# strict
-	echo dev-lang/perl
-	# warnings
-	echo dev-lang/perl
-}
-perl_meta_test() {
-	# Data::Dumper
-	echo virtual/perl-Data-Dumper
-	# Exporter
-	echo virtual/perl-Exporter
-	# ExtUtils::MakeMaker
-	echo virtual/perl-ExtUtils-MakeMaker
-	# File::Basename
-	echo dev-lang/perl
-	# File::Find
-	echo dev-lang/perl
-	# File::Spec
-	echo virtual/perl-File-Spec
-	# File::Spec::Functions
-	echo virtual/perl-File-Spec
-	# File::Temp
-	echo virtual/perl-File-Temp
-	# IO::Dir
-	echo virtual/perl-IO
-	# IO::File
-	echo virtual/perl-IO
-	# IO::Socket::INET
-	echo virtual/perl-IO
-	# List::Util
-	echo virtual/perl-Scalar-List-Utils
-	# Test::More 0.88 ( 0.880.0 )
-	echo \>=virtual/perl-Test-Simple-0.88
-	# open
-	echo dev-lang/perl
-}
-DEPEND="
-	$(perl_meta_configure)
-	$(perl_meta_runtime)
-	test? ( $(perl_meta_test) )
-"
-RDEPEND="
-	$(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.24.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.24.0.ebuild
deleted file mode 100644
index 3d30926..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.24.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=5
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.024
-inherit perl-module
-
-DESCRIPTION='A small, simple, correct HTTP/1.1 client'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-	# Carp
-	echo dev-lang/perl
-	# IO::Socket
-	echo virtual/perl-IO
-	# Time::Local
-	echo virtual/perl-Time-Local
-	# bytes
-	echo dev-lang/perl
-	# perl 5.006 ( 5.6.0 )
-	echo \>=dev-lang/perl-5.6.0
-	# strict
-	echo dev-lang/perl
-	# warnings
-	echo dev-lang/perl
-}
-perl_meta_test() {
-	# Data::Dumper
-	echo virtual/perl-Data-Dumper
-	# Exporter
-	echo virtual/perl-Exporter
-	# ExtUtils::MakeMaker
-	echo virtual/perl-ExtUtils-MakeMaker
-	# File::Basename
-	echo dev-lang/perl
-	# File::Find
-	echo dev-lang/perl
-	# File::Spec
-	echo virtual/perl-File-Spec
-	# File::Spec::Functions
-	echo virtual/perl-File-Spec
-	# File::Temp
-	echo virtual/perl-File-Temp
-	# IO::Dir
-	echo virtual/perl-IO
-	# IO::File
-	echo virtual/perl-IO
-	# IO::Socket::INET
-	echo virtual/perl-IO
-	# IPC::Cmd
-	echo virtual/perl-IPC-Cmd
-	# List::Util
-	echo virtual/perl-Scalar-List-Utils
-	# Test::More 0.88 ( 0.880.0 )
-	echo \>=virtual/perl-Test-Simple-0.88
-	# open
-	echo dev-lang/perl
-}
-DEPEND="
-	$(perl_meta_configure)
-	$(perl_meta_runtime)
-	test? ( $(perl_meta_test) )
-"
-RDEPEND="
-	$(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.25.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.25.0.ebuild
deleted file mode 100644
index 34e7d05..0000000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.25.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=5
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.025
-inherit perl-module
-
-DESCRIPTION='A small, simple, correct HTTP/1.1 client'
-LICENSE=" || ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-perl_meta_configure() {
-	# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
-	echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
-}
-perl_meta_runtime() {
-	# Carp
-	echo dev-lang/perl
-	# IO::Socket
-	echo virtual/perl-IO
-	# Time::Local
-	echo virtual/perl-Time-Local
-	# bytes
-	echo dev-lang/perl
-	# perl 5.006 ( 5.6.0 )
-	echo \>=dev-lang/perl-5.6.0
-	# strict
-	echo dev-lang/perl
-	# warnings
-	echo dev-lang/perl
-}
-perl_meta_test() {
-	# Data::Dumper
-	echo virtual/perl-Data-Dumper
-	# Exporter
-	echo virtual/perl-Exporter
-	# ExtUtils::MakeMaker
-	echo virtual/perl-ExtUtils-MakeMaker
-	# File::Basename
-	echo dev-lang/perl
-	# File::Find
-	echo dev-lang/perl
-	# File::Spec
-	echo virtual/perl-File-Spec
-	# File::Spec::Functions
-	echo virtual/perl-File-Spec
-	# File::Temp
-	echo virtual/perl-File-Temp
-	# IO::Dir
-	echo virtual/perl-IO
-	# IO::File
-	echo virtual/perl-IO
-	# IO::Socket::INET
-	echo virtual/perl-IO
-	# IPC::Cmd
-	echo virtual/perl-IPC-Cmd
-	# List::Util
-	echo virtual/perl-Scalar-List-Utils
-	# Test::More 0.88 ( 0.880.0 )
-	echo \>=virtual/perl-Test-Simple-0.88
-	# open
-	echo dev-lang/perl
-}
-DEPEND="
-	$(perl_meta_configure)
-	$(perl_meta_runtime)
-	test? ( $(perl_meta_test) )
-"
-RDEPEND="
-	$(perl_meta_runtime)
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/metadata.xml b/perl-core/HTTP-Tiny/metadata.xml
deleted file mode 100644
index acba82a..0000000
--- a/perl-core/HTTP-Tiny/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <herd>perl</herd>
-  <maintainer>
-    <email>kentfredric@gmail.com</email>
-    <name>Kent Fredric</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="cpan">HTTP-Tiny</remote-id>
-    <remote-id type="cpan-module">HTTP::Tiny</remote-id>
-  </upstream>
-</pkgmetadata>


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

end of thread, other threads:[~2014-09-06  9:52 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-06  9:52 [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/ Kent Fredric
  -- strict thread matches above, loose matches on Subject: below --
2013-11-09  5:56 Kent Fredric
2012-10-28  2:41 Kent Fredric
2012-06-09 14:33 Kent Fredric
2012-05-27  7:47 Kent Fredric
2012-02-26 13:46 Kent Fredric
2011-07-18 17:39 Torsten Veller
2011-04-01 13:20 Torsten Veller
2011-03-22  1:34 Kent Fredric
2011-03-12 16: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