Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in perl-core/ExtUtils-MakeMaker: ExtUtils-MakeMaker-6.620.0.ebuild ChangeLog
Date: Wed, 01 Feb 2012 18:03:58
Message-Id: 20120201180345.8E3BD2004B@flycatcher.gentoo.org
1 tove 12/02/01 18:03:45
2
3 Modified: ChangeLog
4 Added: ExtUtils-MakeMaker-6.620.0.ebuild
5 Log:
6 [bump] perl-core/ExtUtils-MakeMaker-6.620.0
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.27 perl-core/ExtUtils-MakeMaker/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/ExtUtils-MakeMaker/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/ExtUtils-MakeMaker/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/ExtUtils-MakeMaker/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/perl-core/ExtUtils-MakeMaker/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 6 Aug 2011 08:09:17 -0000 1.26
24 +++ ChangeLog 1 Feb 2012 18:03:45 -0000 1.27
25 @@ -1,6 +1,12 @@
26 # ChangeLog for perl-core/ExtUtils-MakeMaker
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/perl-core/ExtUtils-MakeMaker/ChangeLog,v 1.26 2011/08/06 08:09:17 tove Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/perl-core/ExtUtils-MakeMaker/ChangeLog,v 1.27 2012/02/01 18:03:45 tove Exp $
31 +
32 +*ExtUtils-MakeMaker-6.620.0 (01 Feb 2012)
33 +
34 + 01 Feb 2012; Torsten Veller <tove@g.o>
35 + +ExtUtils-MakeMaker-6.620.0.ebuild:
36 + Version bump
37
38 *ExtUtils-MakeMaker-6.590.0 (06 Aug 2011)
39
40
41
42
43 1.1 perl-core/ExtUtils-MakeMaker/ExtUtils-MakeMaker-6.620.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/ExtUtils-MakeMaker/ExtUtils-MakeMaker-6.620.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/ExtUtils-MakeMaker/ExtUtils-MakeMaker-6.620.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ExtUtils-MakeMaker-6.620.0.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/perl-core/ExtUtils-MakeMaker/ExtUtils-MakeMaker-6.620.0.ebuild,v 1.1 2012/02/01 18:03:45 tove Exp $
53
54 EAPI=4
55 MODULE_AUTHOR=MSCHWERN
56 MODULE_VERSION=6.62
57 inherit eutils perl-module
58
59 DESCRIPTION="Create a module Makefile"
60 HOMEPAGE="http://makemaker.org ${HOMEPAGE}"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE=""
64
65 DEPEND="
66 >=virtual/perl-ExtUtils-Command-1.16
67 >=virtual/perl-ExtUtils-Install-1.52
68 >=virtual/perl-ExtUtils-Manifest-1.58
69 >=virtual/perl-File-Spec-0.8
70 "
71 RDEPEND="${DEPEND}"
72 PDEPEND="
73 >=virtual/perl-CPAN-Meta-2.110.930
74 >=virtual/perl-Parse-CPAN-Meta-1.440.100
75 "
76
77 PATCHES=(
78 "${FILESDIR}/6.58-delete_packlist_podlocal.patch"
79 "${FILESDIR}/6.58-RUNPATH.patch"
80 )
81 SRC_TEST=do
82
83 src_prepare (){
84 edos2unix "${S}/lib/ExtUtils/MM_Unix.pm"
85 edos2unix "${S}/lib/ExtUtils/MM_Any.pm"
86
87 perl-module_src_prepare
88 }
89
90 src_install() {
91 perl-module_src_install
92
93 # remove all the bundled distributions
94 pushd "${D}" >/dev/null
95 find ".${VENDOR_LIB}" -mindepth 1 -maxdepth 1 -not -name "ExtUtils" -exec rm -rf {} \+
96 popd >/dev/null
97 }