Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/libwww-perl: libwww-perl-5.835.ebuild ChangeLog
Date: Thu, 06 May 2010 08:02:49
Message-Id: 20100506080243.08FAF29638@corvid.gentoo.org
1 tove 10/05/06 08:02:42
2
3 Modified: libwww-perl-5.835.ebuild ChangeLog
4 Log:
5 Used the wrong version as base: add prefix changes
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-perl/libwww-perl/libwww-perl-5.835.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/libwww-perl/libwww-perl-5.835.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/libwww-perl/libwww-perl-5.835.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/libwww-perl/libwww-perl-5.835.ebuild?r1=1.1&r2=1.2
14
15 Index: libwww-perl-5.835.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-perl/libwww-perl/libwww-perl-5.835.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- libwww-perl-5.835.ebuild 6 May 2010 06:29:55 -0000 1.1
22 +++ libwww-perl-5.835.ebuild 6 May 2010 08:02:42 -0000 1.2
23 @@ -1,8 +1,8 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/libwww-perl/libwww-perl-5.835.ebuild,v 1.1 2010/05/06 06:29:55 tove Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/libwww-perl/libwww-perl-5.835.ebuild,v 1.2 2010/05/06 08:02:42 tove Exp $
28
29 -EAPI=2
30 +EAPI=3
31
32 MODULE_AUTHOR=GAAS
33 inherit perl-module
34 @@ -10,7 +10,7 @@
35 DESCRIPTION="A collection of Perl Modules for the WWW"
36
37 SLOT="0"
38 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
39 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
40 IUSE="ssl"
41
42 DEPEND="virtual/perl-libnet
43 @@ -25,8 +25,20 @@
44
45 src_install() {
46 perl-module_src_install
47 - dosym /usr/bin/lwp-request /usr/bin/GET
48 - dosym /usr/bin/lwp-request /usr/bin/POST
49 - dosym /usr/bin/lwp-request /usr/bin/HEAD
50 +
51 + # Perform a check to see if the live filesystem is case-INsensitive
52 + # or not. If it is, the symlinks GET, POST and in particular HEAD
53 + # will collide with e.g. head from coreutils. While under Linux
54 + # having a case-INsensitive filesystem is really unusual, most Mac
55 + # OS X users are on it, and also Interix users deal with
56 + # case-INsensitivity since Windows is underneath.
57 +
58 + # bash should always be there, if we can find it in capitals, we're
59 + # on a case-INsensitive filesystem.
60 + if [[ ! -f ${EROOT}/BIN/BASH ]] ; then
61 + dosym /usr/bin/lwp-request /usr/bin/GET
62 + dosym /usr/bin/lwp-request /usr/bin/POST
63 + dosym /usr/bin/lwp-request /usr/bin/HEAD
64 + fi
65 }
66 #SRC_TEST=do
67
68
69
70 1.127 dev-perl/libwww-perl/ChangeLog
71
72 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/libwww-perl/ChangeLog?rev=1.127&view=markup
73 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/libwww-perl/ChangeLog?rev=1.127&content-type=text/plain
74 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/libwww-perl/ChangeLog?r1=1.126&r2=1.127
75
76 Index: ChangeLog
77 ===================================================================
78 RCS file: /var/cvsroot/gentoo-x86/dev-perl/libwww-perl/ChangeLog,v
79 retrieving revision 1.126
80 retrieving revision 1.127
81 diff -u -r1.126 -r1.127
82 --- ChangeLog 6 May 2010 06:29:55 -0000 1.126
83 +++ ChangeLog 6 May 2010 08:02:42 -0000 1.127
84 @@ -1,6 +1,9 @@
85 # ChangeLog for dev-perl/libwww-perl
86 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
87 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/libwww-perl/ChangeLog,v 1.126 2010/05/06 06:29:55 tove Exp $
88 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/libwww-perl/ChangeLog,v 1.127 2010/05/06 08:02:42 tove Exp $
89 +
90 + 06 May 2010; Torsten Veller <tove@g.o> libwww-perl-5.835.ebuild:
91 + Used the wrong version as base: add prefix changes
92
93 *libwww-perl-5.835 (06 May 2010)