Gentoo Archives: gentoo-commits

From: Kent Fredric <kentfredric@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/
Date: Sun, 26 Feb 2012 13:46:39
Message-Id: 1330254082.64112fe97f352e7a978ca14689f8d56129584240.kent@gentoo
1 commit: 64112fe97f352e7a978ca14689f8d56129584240
2 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
3 AuthorDate: Sun Feb 26 11:01:22 2012 +0000
4 Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
5 CommitDate: Sun Feb 26 11:01:22 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=64112fe9
7
8 [newversion] core/HTTP-Tiny-0.17.0
9
10 (Portage version: 2.2.0_alpha85/git/Linux x86_64, signed Manifest commit with key 4132B87441EA24A4EB5E6DE181EC638ED7AE97A6)
11
12 ---
13 perl-core/HTTP-Tiny/ChangeLog | 7 +++-
14 perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild | 66 +++++++++++++++++++++++++++
15 2 files changed, 72 insertions(+), 1 deletions(-)
16
17 diff --git a/perl-core/HTTP-Tiny/ChangeLog b/perl-core/HTTP-Tiny/ChangeLog
18 index 72a15f1..6c09bf9 100644
19 --- a/perl-core/HTTP-Tiny/ChangeLog
20 +++ b/perl-core/HTTP-Tiny/ChangeLog
21 @@ -1,7 +1,12 @@
22 # ChangeLog for perl-core/HTTP-Tiny
23 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
24 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
25 # $Header: $
26
27 +*HTTP-Tiny-0.17.0 (26 Feb 2012)
28 +
29 + 26 Feb 2012; Kent Fredric <kentfredric@×××××.com> +HTTP-Tiny-0.17.0.ebuild:
30 + Version Bump
31 +
32 *HTTP-Tiny-0.13.0 (18 Jul 2011)
33
34 18 Jul 2011; Torsten Veller <tove@g.o> +HTTP-Tiny-0.13.0.ebuild:
35
36 diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild b/perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild
37 new file mode 100644
38 index 0000000..2098680
39 --- /dev/null
40 +++ b/perl-core/HTTP-Tiny/HTTP-Tiny-0.17.0.ebuild
41 @@ -0,0 +1,66 @@
42 +# Copyright 1999-2012 Gentoo Foundation
43 +# Distributed under the terms of the GNU General Public License v2
44 +# $Header: $
45 +EAPI=4
46 +MODULE_AUTHOR=DAGOLDEN
47 +MODULE_VERSION=0.017
48 +inherit perl-module
49 +
50 +DESCRIPTION='A small, simple, correct HTTP/1.1 client'
51 +LICENSE=" || ( Artistic GPL-2 )"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +IUSE="test"
55 +perl_meta_configure() {
56 + # ExtUtils::MakeMaker 6.30 ( 6.300.0 )
57 + echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
58 +}
59 +perl_meta_runtime() {
60 + # Carp
61 + # echo dev-perl/Carp
62 + # IO::Socket
63 + echo virtual/perl-IO
64 + # Time::Local
65 + echo virtual/perl-Time-Local
66 + # bytes
67 + echo dev-lang/perl
68 + # perl 5.006 ( 5.6.0 )
69 + echo \>=dev-lang/perl-5.6.0
70 + # strict
71 + echo dev-lang/perl
72 + # warnings
73 + echo dev-lang/perl
74 +}
75 +perl_meta_test() {
76 + # Data::Dumper
77 + echo virtual/perl-Data-Dumper
78 + # Exporter
79 + echo virtual/perl-Exporter
80 + # File::Basename
81 + echo dev-lang/perl
82 + # File::Find
83 + echo dev-lang/perl
84 + # File::Spec
85 + echo virtual/perl-File-Spec
86 + # File::Temp
87 + echo virtual/perl-File-Temp
88 + # IO::Dir
89 + echo virtual/perl-IO
90 + # IO::File
91 + echo virtual/perl-IO
92 + # IO::Socket::INET
93 + echo virtual/perl-IO
94 + # Test::More 0.88 ( 0.880.0 )
95 + echo \>=virtual/perl-Test-Simple-0.88
96 + # open
97 + echo dev-lang/perl
98 +}
99 +DEPEND="
100 + $(perl_meta_configure)
101 + $(perl_meta_runtime)
102 + test? ( $(perl_meta_test) )
103 +"
104 +RDEPEND="
105 + $(perl_meta_runtime)
106 +"
107 +SRC_TEST="do"