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 3DF5D138010 for ; Sun, 28 Oct 2012 02:42:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F095FE0655; Sun, 28 Oct 2012 02:41:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5F72DE0655 for ; Sun, 28 Oct 2012 02:41:48 +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 AE17033D875 for ; Sun, 28 Oct 2012 02:41:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A5A1FE5457 for ; Sun, 28 Oct 2012 02:41:43 +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: <1351367894.26fef01e80dd672f234574a48fc624ba678f6a50.kent@gentoo> Subject: [gentoo-commits] proj/perl-overlay:master commit in: perl-core/HTTP-Tiny/ X-VCS-Repository: proj/perl-overlay X-VCS-Files: perl-core/HTTP-Tiny/ChangeLog perl-core/HTTP-Tiny/HTTP-Tiny-0.24.0.ebuild X-VCS-Directories: perl-core/HTTP-Tiny/ X-VCS-Committer: kent X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 26fef01e80dd672f234574a48fc624ba678f6a50 X-VCS-Branch: master Date: Sun, 28 Oct 2012 02:41:43 +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: bcdec278-bce3-43a9-8c8b-e28bc5c568d7 X-Archives-Hash: 21240a4d7f3518823248b8e7735efcd5 commit: 26fef01e80dd672f234574a48fc624ba678f6a50 Author: Kent Fredric gmail com> AuthorDate: Sat Oct 27 19:58:14 2012 +0000 Commit: Kent Fredric gmail 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 +HTTP-Tiny-0.24.0.ebuild: + Version Bump + *HTTP-Tiny-0.22.0 (09 Jun 2012) 09 Jun 2012; Kent Fredric +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"