Gentoo Archives: gentoo-commits

From: "Tom Wijsman (tomwij)" <tomwij@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/epoch/files: epoch-1.0_rc1-epoch.conf epoch-1.0_rc1-fix-CFLAGS.patch
Date: Sat, 07 Dec 2013 21:16:11
Message-Id: 20131207211559.026362004B@flycatcher.gentoo.org
1 tomwij 13/12/07 21:15:58
2
3 Added: epoch-1.0_rc1-epoch.conf
4 epoch-1.0_rc1-fix-CFLAGS.patch
5 Log:
6 New ebuild for sys-apps/epoch; an init system, a /sbin/init replacement; designed for simplicity.
7
8 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
9
10 Revision Changes Path
11 1.1 sys-apps/epoch/files/epoch-1.0_rc1-epoch.conf
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/epoch/files/epoch-1.0_rc1-epoch.conf?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/epoch/files/epoch-1.0_rc1-epoch.conf?rev=1.1&content-type=text/plain
15
16 Index: epoch-1.0_rc1-epoch.conf
17 ===================================================================
18 BootBannerText=Welcome!
19 BootBannerColor=RED
20
21 Hostname=FILE /etc/hostname
22 DefaultRunlevel=boot
23 EnableLogging=true
24 MountVirtual=procfs sysfs devpts+ devshm+
25
26 ObjectID=mountrun
27 ObjectDescription=Mounting /run
28 ObjectStartCommand=mount /run
29 ObjectStartPriority=1
30 ObjectStopPriority=0
31 ObjectEnabled=true
32 ObjectOptions=RAWDESCRIPTION
33 ObjectRunlevels=boot
34
35 ObjectID=mounttmp
36 ObjectDescription=Mounting /tmp
37 ObjectStartCommand=mount /tmp
38 ObjectStartPriority=1
39 ObjectStopPriority=0
40 ObjectEnabled=true
41 ObjectOptions=RAWDESCRIPTION
42 ObjectRunlevels=boot
43
44 ObjectID=rwfs
45 ObjectDescription=read-write support on /
46 ObjectStartCommand=/bin/mount -o remount,rw /
47 ObjectStopCommand=/bin/mount -o remount,ro /
48 ObjectStartPriority=2
49 ObjectStopPriority=5
50 ObjectEnabled=true
51 ObjectRunlevels=boot
52
53 ObjectID=getty1
54 ObjectDescription=agetty on /dev/tty1
55 ObjectStartCommand=agetty --noclear tty1 &
56 ObjectStopCommand=NONE
57 ObjectStartPriority=3
58 ObjectStopPriority=0
59 ObjectEnabled=true
60 ObjectOptions=SERVICE AUTORESTART
61 ObjectRunlevels=boot
62
63 ObjectID=extrafs
64 ObjectDescription=extra filesystems and swaps
65 ObjectStartCommand=mount -a && swapon -a
66 ObjectStopCommand=swapoff -a && umount -a -r -t nodevtmpfs,notmpfs,nosysfs,noproc
67 ObjectStartPriority=4
68 ObjectStopPriority=4
69 ObjectEnabled=true
70 ObjectRunlevels=boot
71
72 ObjectID=killall5_soft
73 ObjectDescription=Terminating all processes
74 ObjectStopCommand=killall5 -15 && sleep 1
75 ObjectStartPriority=0
76 ObjectStopPriority=1
77 ObjectEnabled=true
78 ObjectOptions=HALTONLY RAWDESCRIPTION
79
80 ObjectID=sync
81 ObjectDescription=Syncing
82 ObjectStopCommand=/bin/sync
83 ObjectStartPriority=0
84 ObjectStopPriority=2
85 ObjectEnabled=true
86 ObjectOptions=HALTONLY RAWDESCRIPTION
87
88 ObjectID=killall5
89 ObjectDescription=Killing all processes
90 ObjectStopCommand=killall5 -9 && sleep 1
91 ObjectStartPriority=0
92 ObjectStopPriority=3
93 ObjectEnabled=true
94 ObjectOptions=HALTONLY RAWDESCRIPTION
95
96
97
98 1.1 sys-apps/epoch/files/epoch-1.0_rc1-fix-CFLAGS.patch
99
100 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/epoch/files/epoch-1.0_rc1-fix-CFLAGS.patch?rev=1.1&view=markup
101 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/epoch/files/epoch-1.0_rc1-fix-CFLAGS.patch?rev=1.1&content-type=text/plain
102
103 Index: epoch-1.0_rc1-fix-CFLAGS.patch
104 ===================================================================
105 --- a/buildepoch.sh
106 +++ b/buildepoch.sh
107 @@ -53,7 +53,7 @@
108 }
109
110 MEMBUS_SIZE_SET="0"
111 -NEED_EMPTY_CFLAGS="0"
112 +NEED_EMPTY_CFLAGS="1"
113 outdir="../built"
114
115 if [ "$CC" == "" ]; then