Gentoo Archives: gentoo-dev

From: Grant <emailgrant@×××××.com>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] anybody interested in writing a Perl ebuild?
Date: Thu, 24 May 2012 19:23:14
Message-Id: CAN0CFw0QD5oCRsL2=y_D3F2ttsXXUa4KJVrugK31KQTqdwu2Bg@mail.gmail.com
In Reply to: Re: [gentoo-dev] anybody interested in writing a Perl ebuild? by Kent Fredric
1 >> DateTime-Format-RFC3339
2 >
3 > Ah. The dreaded v-strings.
4 >
5 > You'll note: http://cpan.metacpan.org/authors/id/I/IK/IKEGAMI/
6 >
7 > That there is a "v" before the version specifier in the problem dist,
8 > and the portage ebuild has not factored this into the equation, and is
9 > looking for DateTime-Format-RFC3339-1.0.5.tar.gz     when it should be
10 > looking for DateTime-Format-RFC3339-v1.0.5.tar.gz
11 >
12 > If you can edit the ebuild source to solve this issue, and then re-run
13 > repoman manifest, that might help. But at least we now know what is
14 > happening wrong with g-cpan.
15 >
16 > In editing, you'll be wanting to look for varibles ( mostly in SRC_URI
17 > and I think S )  which use "${PV}" and change it to use "v${PV}"
18 > instead.
19
20 These ebuilds don't seem to have any of those variables:
21
22 # Copyright 1999-2010 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24 # This ebuild generated by g-cpan 0.16.4
25
26 EAPI="2"
27
28 MODULE_AUTHOR="IKEGAMI"
29
30 inherit perl-module
31
32 DESCRIPTION="Parse and format RFC3339 datetime strings"
33
34 LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
35 SLOT="0"
36 KEYWORDS="alpha amd64 amd64-fbsd arm hppa ia64 m68k mips ppc ppc64
37 s390 sh sparc sparc-fbsd x86 x86-fbsd ppc-aix x86-freebsd
38 x64-freebsd sparc64-freebsd hppa-hpux ia64-hpux x86-interix
39 amd64-linux arm-linux ia64-linux ppc64-linux x86-linux ppc-macos
40 x86-macos x64-macos m68k-mint x86-netbsd ppc-openbsd x86-openbsd
41 x64-openbsd sparc-solaris sparc64-solaris x64-solaris x86-solaris
42 x86-winnt x86-cygwin"
43 IUSE=""
44
45 DEPEND="dev-perl/DateTime
46 dev-lang/perl"
47
48 - Grant

Replies

Subject Author
Re: [gentoo-dev] anybody interested in writing a Perl ebuild? Kent Fredric <kentfredric@×××××.com>
Re: [gentoo-dev] anybody interested in writing a Perl ebuild? David Abbott <dabbott@g.o>