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/i18n-langtags: ChangeLog i18n-langtags-0.35.ebuild
Date: Sat, 06 Nov 2010 08:35:57
Message-Id: 20101106083550.C1E5920051@flycatcher.gentoo.org
1 tove 10/11/06 08:35:50
2
3 Modified: ChangeLog i18n-langtags-0.35.ebuild
4 Log:
5 Fix "defined(%hash) is deprecated" warning. Maintenance, EAPI bump.
6
7 (Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 perl-core/i18n-langtags/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/i18n-langtags/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/i18n-langtags/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/i18n-langtags/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/perl-core/i18n-langtags/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 23 Dec 2009 16:55:39 -0000 1.6
23 +++ ChangeLog 6 Nov 2010 08:35:50 -0000 1.7
24 @@ -1,6 +1,9 @@
25 # ChangeLog for perl-core/i18n-langtags
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/perl-core/i18n-langtags/ChangeLog,v 1.6 2009/12/23 16:55:39 grobian Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/perl-core/i18n-langtags/ChangeLog,v 1.7 2010/11/06 08:35:50 tove Exp $
30 +
31 + 06 Nov 2010; Torsten Veller <tove@g.o> i18n-langtags-0.35.ebuild:
32 + Fix "defined(%hash) is deprecated" warning. Maintenance, EAPI bump.
33
34 23 Dec 2009; Fabian Groffen <grobian@g.o>
35 i18n-langtags-0.35.ebuild:
36
37
38
39 1.7 perl-core/i18n-langtags/i18n-langtags-0.35.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/i18n-langtags/i18n-langtags-0.35.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/i18n-langtags/i18n-langtags-0.35.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/perl-core/i18n-langtags/i18n-langtags-0.35.ebuild?r1=1.6&r2=1.7
44
45 Index: i18n-langtags-0.35.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/perl-core/i18n-langtags/i18n-langtags-0.35.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- i18n-langtags-0.35.ebuild 23 Dec 2009 16:55:39 -0000 1.6
52 +++ i18n-langtags-0.35.ebuild 6 Nov 2010 08:35:50 -0000 1.7
53 @@ -1,20 +1,21 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/perl-core/i18n-langtags/i18n-langtags-0.35.ebuild,v 1.6 2009/12/23 16:55:39 grobian Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/perl-core/i18n-langtags/i18n-langtags-0.35.ebuild,v 1.7 2010/11/06 08:35:50 tove Exp $
59
60 -inherit perl-module
61 +EAPI=3
62
63 -MY_P=I18N-LangTags-${PV}
64 +MODULE_AUTHOR=SBURKE
65 +MY_PN=I18N-LangTags
66 +MY_P=${MY_PN}-${PV}
67 S=${WORKDIR}/${MY_P}
68 +inherit perl-module
69 +
70 DESCRIPTION="RFC3066 language tag handling for Perl"
71 -HOMEPAGE="http://search.cpan.org/~sburke/"
72 -SRC_URI="mirror://cpan/authors/id/S/SB/SBURKE/${MY_P}.tar.gz"
73 +SRC_URI+=" http://dev.gentoo.org/~tove/files/${MY_P}-Detect-1.04.patch"
74
75 -LICENSE="|| ( Artistic GPL-2 )"
76 SLOT="0"
77 KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-solaris"
78 IUSE=""
79
80 SRC_TEST="do"
81 -
82 -DEPEND="dev-lang/perl"
83 +PATCHES=( "${DISTDIR}"/${MY_P}-Detect-1.04.patch )