Gentoo Archives: gentoo-commits

From: "Stefaan De Roeck (stefaan)" <stefaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-5.0.3-r5.ebuild
Date: Mon, 05 May 2008 13:30:23
Message-Id: E1Jt0lo-0003Ef-Ke@stork.gentoo.org
1 stefaan 08/05/05 13:30:20
2
3 Modified: ChangeLog autofs-5.0.3-r5.ebuild
4 Log:
5 Patch patches in temporary directory (fixes bug #220315)
6 (Portage version: 2.1.5_rc6)
7
8 Revision Changes Path
9 1.73 net-fs/autofs/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.73&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.73&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/ChangeLog?r1=1.72&r2=1.73
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
18 retrieving revision 1.72
19 retrieving revision 1.73
20 diff -u -r1.72 -r1.73
21 --- ChangeLog 3 May 2008 09:16:59 -0000 1.72
22 +++ ChangeLog 5 May 2008 13:30:20 -0000 1.73
23 @@ -1,6 +1,9 @@
24 # ChangeLog for net-fs/autofs
25 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.72 2008/05/03 09:16:59 stefaan Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.73 2008/05/05 13:30:20 stefaan Exp $
28 +
29 + 05 May 2008; Stefaan De Roeck <stefaan@g.o> autofs-5.0.3-r5.ebuild:
30 + Patch patches in temporary directory (fixes bug #220315)
31
32 *autofs-5.0.3-r5 (03 May 2008)
33
34
35
36
37 1.2 net-fs/autofs/autofs-5.0.3-r5.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/autofs-5.0.3-r5.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/autofs-5.0.3-r5.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/autofs-5.0.3-r5.ebuild?r1=1.1&r2=1.2
42
43 Index: autofs-5.0.3-r5.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.3-r5.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- autofs-5.0.3-r5.ebuild 3 May 2008 09:16:59 -0000 1.1
50 +++ autofs-5.0.3-r5.ebuild 5 May 2008 13:30:20 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.3-r5.ebuild,v 1.1 2008/05/03 09:16:59 stefaan Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.3-r5.ebuild,v 1.2 2008/05/05 13:30:20 stefaan Exp $
56
57 inherit eutils multilib autotools
58
59 @@ -34,8 +34,6 @@
60
61 src_unpack() {
62 unpack ${P}.tar.bz2
63 - patch "${DISTDIR}"/${P}-map-type-in-map-name.patch \
64 - < "${FILESDIR}"/${P}-map-patch-fix.patch || die "failed to patch"
65 PATCH_LIST="
66 ${P}-ldap-page-control-configure-fix.patch
67 ${P}-xfn-not-supported.patch
68 @@ -53,7 +51,13 @@
69 ${P}-map-type-in-map-name.patch
70 ${P}-mount-thread-create-cond-handling.patch"
71 for i in ${PATCH_LIST}; do
72 - EPATCH_OPTS="-p1 -d ${S}" epatch ${DISTDIR}/${i}
73 + cp ${DISTDIR}/${i} ${T}
74 + done
75 + patch "${T}"/${P}-map-type-in-map-name.patch \
76 + < "${FILESDIR}"/${P}-map-patch-fix.patch || die "failed to patch"
77 + for i in ${PATCH_LIST}; do
78 + EPATCH_OPTS="-p1 -d ${S}" epatch ${T}/${i}
79 + rm -f ${T}/${i}
80 done
81
82 # fixes bug #210762
83
84
85
86 --
87 gentoo-commits@l.g.o mailing list