Gentoo Archives: gentoo-commits

From: "Roy Marples (uberlord)" <uberlord@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout: baselayout-2.0.0_rc5.ebuild ChangeLog
Date: Mon, 22 Oct 2007 20:45:19
Message-Id: E1Ik49B-0006yN-Kf@stork.gentoo.org
1 uberlord 07/10/22 20:45:13
2
3 Modified: baselayout-2.0.0_rc5.ebuild ChangeLog
4 Log:
5 Fix upgrade/downgrade paths.
6 (Portage version: 2.1.3.15)
7
8 Revision Changes Path
9 1.3 sys-apps/baselayout/baselayout-2.0.0_rc5.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/baselayout/baselayout-2.0.0_rc5.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/baselayout/baselayout-2.0.0_rc5.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/baselayout/baselayout-2.0.0_rc5.ebuild?r1=1.2&r2=1.3
14
15 Index: baselayout-2.0.0_rc5.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout/baselayout-2.0.0_rc5.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- baselayout-2.0.0_rc5.ebuild 12 Oct 2007 06:46:05 -0000 1.2
22 +++ baselayout-2.0.0_rc5.ebuild 22 Oct 2007 20:45:13 -0000 1.3
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout/baselayout-2.0.0_rc5.ebuild,v 1.2 2007/10/12 06:46:05 uberlord Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout/baselayout-2.0.0_rc5.ebuild,v 1.3 2007/10/22 20:45:13 uberlord Exp $
28
29 inherit flag-o-matic eutils toolchain-funcs multilib
30
31 @@ -172,16 +172,12 @@
32 . "${ROOT}etc/conf.d/rc"
33 svcdir="${svcdir:-/var/lib/init.d}"
34 einfo "Moving state from ${ROOT}${svcdir} to ${ROOT}lib/rcscripts/init.d"
35 - cp -RPp "${ROOT}${svcdir}"/* "${ROOT}"lib/rcscripts/init.d
36 - rm -rf "${ROOT}"lib/rcscripts/init.d/daemons \
37 - "${ROOT}"lib/rcscripts/init.d/console
38 + cp -RPp "${ROOT}${svcdir}"/* "${ROOT}"lib/rc/init.d
39 + rm -rf "${ROOT}"lib/rc/init.d/daemons \
40 + "${ROOT}"lib/rc/init.d/console
41 umount "${ROOT}${svcdir}" 2>/dev/null
42 rm -rf "${ROOT}${svcdir}"
43 )
44 - elif has_version "<sys-apps/${PN}-2.0.0_alpha4" ; then
45 - # The format has changed since 1.13
46 - rm -rf "${ROOT}"lib/rcscripts/init.d/daemons \
47 - "${ROOT}"lib/rcscripts/init.d/console
48 elif has_version "<sys-apps/${PN}-2.0.0_rc5" ; then
49 if [ -d "${ROOT}"lib/rcscripts/init.d ] ; then
50 einfo "Moving state from ${ROOT}lib/rcscripts/init.d to ${ROOT}lib/rc/init.d"
51 @@ -292,7 +288,7 @@
52 )
53 elif has_version "<sys-apps/${PN}-2.0.0_rc5" ; then
54 einfo "Moving state from ${ROOT}lib/rc/init.d to ${ROOT}lib/rcscripts/init.d"
55 - mkdir -p "${ROOT}"lib/scripts/init.d
56 + mkdir -p "${ROOT}"lib/rcscripts/init.d
57 cp -RPp "${ROOT}"lib/rc/init.d/* "${ROOT}"lib/rcscripts/init.d
58 umount "${ROOT}"lib/rc/init.d 2>/dev/null
59 rm -rf "${ROOT}"lib/rc/init.d
60
61
62
63 1.440 sys-apps/baselayout/ChangeLog
64
65 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/baselayout/ChangeLog?rev=1.440&view=markup
66 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/baselayout/ChangeLog?rev=1.440&content-type=text/plain
67 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/baselayout/ChangeLog?r1=1.439&r2=1.440
68
69 Index: ChangeLog
70 ===================================================================
71 RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout/ChangeLog,v
72 retrieving revision 1.439
73 retrieving revision 1.440
74 diff -u -r1.439 -r1.440
75 --- ChangeLog 11 Oct 2007 15:56:40 -0000 1.439
76 +++ ChangeLog 22 Oct 2007 20:45:13 -0000 1.440
77 @@ -1,10 +1,14 @@
78 # ChangeLog for sys-apps/baselayout
79 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
80 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout/ChangeLog,v 1.439 2007/10/11 15:56:40 uberlord Exp $
81 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout/ChangeLog,v 1.440 2007/10/22 20:45:13 uberlord Exp $
82
83 # See the rc-scripts ChangeLog in subversion for release info:
84 # http://sources.gentoo.org/viewcvs.py/*checkout*/baselayout/trunk/ChangeLog
85
86 + 22 Oct 2007; Roy Marples <uberlord@g.o>
87 + baselayout-2.0.0_rc5.ebuild:
88 + Fix upgrade/downgrade paths.
89 +
90 *baselayout-2.0.0_rc5 (11 Oct 2007)
91
92 11 Oct 2007; Roy Marples <uberlord@g.o>
93
94
95
96 --
97 gentoo-commits@g.o mailing list