Gentoo Archives: gentoo-commits

From: "William Hubbs (williamh)" <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/openrc: openrc-9999.ebuild
Date: Fri, 26 Jul 2013 02:05:25
Message-Id: 20130726020521.BE3572171D@flycatcher.gentoo.org
1 williamh 13/07/26 02:05:21
2
3 Modified: openrc-9999.ebuild
4 Log:
5 Add tmpfiles.dev to the boot runlevel and remove the note referring to the migration guide since we no longer support migration from baselayout-1.x.
6
7 (Portage version: 2.2.0_alpha188/cvs/Linux i686, signed Manifest commit with key 0x30C46538)
8
9 Revision Changes Path
10 1.122 sys-apps/openrc/openrc-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild?rev=1.122&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild?rev=1.122&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild?r1=1.121&r2=1.122
15
16 Index: openrc-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v
19 retrieving revision 1.121
20 retrieving revision 1.122
21 diff -u -r1.121 -r1.122
22 --- openrc-9999.ebuild 25 Apr 2013 21:04:45 -0000 1.121
23 +++ openrc-9999.ebuild 26 Jul 2013 02:05:21 -0000 1.122
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.121 2013/04/25 21:04:45 williamh Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.122 2013/07/26 02:05:21 williamh Exp $
29
30 EAPI=5
31
32 @@ -205,8 +205,11 @@
33 add_boot_init tmpfiles.setup boot
34 fi
35
36 - # loopback was added in 0.12 and needed in boot (february 2012)
37 - has_version ">=sys-apps/openrc-0.12" || add_boot_init loopback
38 + # these were added in 0.12.
39 + if ! has_version ">=sys-apps/openrc-0.12"; then
40 + add_boot_init loopback
41 + add_boot_init tmpfiles.dev sysinit
42 + fi
43 }
44
45 # >=OpenRC-0.11.3 requires udev-mount to be in the sysinit runlevel with udev.
46 @@ -294,7 +297,4 @@
47
48 elog "You should now update all files in /etc, using etc-update"
49 elog "or equivalent before restarting any services or this host."
50 - elog
51 - elog "Please read the migration guide available at:"
52 - elog "http://www.gentoo.org/doc/en/openrc-migration.xml"
53 }