Gentoo Archives: gentoo-commits

From: Kent Fredric <kentfredric@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Archive-Peek/
Date: Mon, 24 Oct 2011 23:12:35
Message-Id: 1074e4d4a4c0e001d4ee2a2da7f83f7dee5d8708.kent@gentoo
1 commit: 1074e4d4a4c0e001d4ee2a2da7f83f7dee5d8708
2 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
3 AuthorDate: Mon Oct 24 22:33:23 2011 +0000
4 Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
5 CommitDate: Mon Oct 24 22:33:23 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=1074e4d4
7
8 [newversion] LBROCARD/Archive-Peek-0.35 0.350.0
9
10 - add support for .tar.bz2
11
12 (Portage version: 2.2.0_alpha70/git/Linux x86_64, signed Manifest commit with key BD86D695)
13
14 ---
15 dev-perl/Archive-Peek/Archive-Peek-0.350.0.ebuild | 36 +++++++++++++++++++++
16 dev-perl/Archive-Peek/ChangeLog | 8 +++++
17 2 files changed, 44 insertions(+), 0 deletions(-)
18
19 diff --git a/dev-perl/Archive-Peek/Archive-Peek-0.350.0.ebuild b/dev-perl/Archive-Peek/Archive-Peek-0.350.0.ebuild
20 new file mode 100644
21 index 0000000..67ec9eb
22 --- /dev/null
23 +++ b/dev-perl/Archive-Peek/Archive-Peek-0.350.0.ebuild
24 @@ -0,0 +1,36 @@
25 +# Copyright 1999-2011 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +# $Header: $
28 +EAPI=4
29 +MODULE_AUTHOR=LBROCARD
30 +MODULE_VERSION=0.35
31 +inherit perl-module
32 +
33 +DESCRIPTION="Peek into archives without extracting them"
34 +LICENSE="|| ( Artistic GPL-2 )"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE=""
38 +meta_build_dep() {
39 + # ExtUtils::MakeMaker
40 + echo virtual/perl-ExtUtils-MakeMaker
41 +}
42 +meta_configure_dep() {
43 + # ExtUtils::MakeMaker
44 + echo virtual/perl-ExtUtils-MakeMaker
45 +}
46 +meta_runtime_dep() {
47 + # Archive::Tar
48 + echo virtual/perl-Archive-Tar
49 + # Archive::Zip
50 + echo dev-perl/Archive-Zip
51 + # Moose
52 + echo dev-perl/Moose
53 + # MooseX::Types::Path::Class
54 + echo dev-perl/MooseX-Types-Path-Class
55 + # Test::More
56 + echo virtual/perl-Test-Simple
57 +}
58 +DEPEND="$(meta_configure_dep) $(meta_build_dep) $(meta_runtime_dep)"
59 +RDEPEND="$(meta_runtime_dep)"
60 +SRC_TEST="do"
61
62 diff --git a/dev-perl/Archive-Peek/ChangeLog b/dev-perl/Archive-Peek/ChangeLog
63 index f8b2dca..ffb2c36 100644
64 --- a/dev-perl/Archive-Peek/ChangeLog
65 +++ b/dev-perl/Archive-Peek/ChangeLog
66 @@ -2,6 +2,14 @@
67 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
68 # $Header: $
69
70 +*Archive-Peek-0.350.0 (24 Oct 2011)
71 +
72 + 24 Oct 2011; Kent Fredric <kentfredric@×××××.com>
73 + +Archive-Peek-0.350.0.ebuild:
74 + Version Bump
75 +
76 + - adds support for .tar.bz2
77 +
78 *Archive-Peek-0.340.0 (02 Sep 2011)
79
80 02 Sep 2011; Kent Fredric <kentfredric@×××××.com>