Gentoo Archives: gentoo-commits

From: Alice Ferrazzi <alicef@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/epoch/files/, sys-apps/epoch/
Date: Thu, 26 Jan 2017 17:53:31
Message-Id: 1485453194.7fa79cf5834aecd6d6ba4b827cfe435e4d55fc0b.alicef@gentoo
1 commit: 7fa79cf5834aecd6d6ba4b827cfe435e4d55fc0b
2 Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 26 17:52:12 2017 +0000
4 Commit: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 26 17:53:14 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fa79cf5
7
8 sys-apps/epoch: fix #607214 missing default config file
9
10 Package-Manager: portage-2.3.3
11
12 sys-apps/epoch/epoch-1.2.1.ebuild | 4 +-
13 sys-apps/epoch/epoch-1.2.2.ebuild | 4 +-
14 sys-apps/epoch/epoch-1.3.0.ebuild | 4 +-
15 sys-apps/epoch/files/epoch-1.0-epoch.conf | 77 +++++++++++++++++++++++++++++++
16 4 files changed, 83 insertions(+), 6 deletions(-)
17
18 diff --git a/sys-apps/epoch/epoch-1.2.1.ebuild b/sys-apps/epoch/epoch-1.2.1.ebuild
19 index af7b6bb..1978a71 100644
20 --- a/sys-apps/epoch/epoch-1.2.1.ebuild
21 +++ b/sys-apps/epoch/epoch-1.2.1.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2015 Gentoo Foundation
24 +# Copyright 1999-2017 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 # $Id$
27
28 @@ -55,7 +55,7 @@ src_install() {
29 newepochins sbin
30
31 insinto /etc/epoch/
32 - newins "${FILESDIR}"/${PN}-1.0_rc1-epoch.conf epoch.conf
33 + newins "${FILESDIR}"/${PN}-1.0-epoch.conf epoch.conf
34 }
35
36 pkg_postinst() {
37
38 diff --git a/sys-apps/epoch/epoch-1.2.2.ebuild b/sys-apps/epoch/epoch-1.2.2.ebuild
39 index 6057021..3485856 100644
40 --- a/sys-apps/epoch/epoch-1.2.2.ebuild
41 +++ b/sys-apps/epoch/epoch-1.2.2.ebuild
42 @@ -1,4 +1,4 @@
43 -# Copyright 1999-2015 Gentoo Foundation
44 +# Copyright 1999-2017 Gentoo Foundation
45 # Distributed under the terms of the GNU General Public License v2
46 # $Id$
47
48 @@ -55,7 +55,7 @@ src_install() {
49 newepochins sbin
50
51 insinto /etc/epoch/
52 - newins "${FILESDIR}"/${PN}-1.0_rc1-epoch.conf epoch.conf
53 + newins "${FILESDIR}"/${PN}-1.0-epoch.conf epoch.conf
54 }
55
56 pkg_postinst() {
57
58 diff --git a/sys-apps/epoch/epoch-1.3.0.ebuild b/sys-apps/epoch/epoch-1.3.0.ebuild
59 index 70f783d..e418402 100644
60 --- a/sys-apps/epoch/epoch-1.3.0.ebuild
61 +++ b/sys-apps/epoch/epoch-1.3.0.ebuild
62 @@ -1,4 +1,4 @@
63 -# Copyright 1999-2016 Gentoo Foundation
64 +# Copyright 1999-2017 Gentoo Foundation
65 # Distributed under the terms of the GNU General Public License v2
66 # $Id$
67
68 @@ -56,7 +56,7 @@ src_install() {
69 newepochins sbin
70
71 insinto /etc/epoch/
72 - newins "${FILESDIR}"/${PN}-1.0_rc1-epoch.conf epoch.conf
73 + newins "${FILESDIR}"/${PN}-1.0-epoch.conf epoch.conf
74 }
75
76 pkg_postinst() {
77
78 diff --git a/sys-apps/epoch/files/epoch-1.0-epoch.conf b/sys-apps/epoch/files/epoch-1.0-epoch.conf
79 new file mode 100644
80 index 00000000..e0550d4
81 --- /dev/null
82 +++ b/sys-apps/epoch/files/epoch-1.0-epoch.conf
83 @@ -0,0 +1,77 @@
84 +BootBannerText=Welcome!
85 +BootBannerColor=RED
86 +
87 +Hostname=FILE /etc/hostname
88 +DefaultRunlevel=boot
89 +EnableLogging=true
90 +MountVirtual=procfs sysfs devpts+ devshm+
91 +
92 +ObjectID=mountrun
93 + ObjectDescription=Mounting /run
94 + ObjectStartCommand=mount /run
95 + ObjectStartPriority=1
96 + ObjectStopPriority=0
97 + ObjectEnabled=true
98 + ObjectOptions=RAWDESCRIPTION
99 + ObjectRunlevels=boot
100 +
101 +ObjectID=mounttmp
102 + ObjectDescription=Mounting /tmp
103 + ObjectStartCommand=mount /tmp
104 + ObjectStartPriority=1
105 + ObjectStopPriority=0
106 + ObjectEnabled=true
107 + ObjectOptions=RAWDESCRIPTION
108 + ObjectRunlevels=boot
109 +
110 +ObjectID=rwfs
111 + ObjectDescription=read-write support on /
112 + ObjectStartCommand=/bin/mount -o remount,rw /
113 + ObjectStopCommand=/bin/mount -o remount,ro /
114 + ObjectStartPriority=2
115 + ObjectStopPriority=5
116 + ObjectEnabled=true
117 + ObjectRunlevels=boot
118 +
119 +ObjectID=getty1
120 + ObjectDescription=agetty on /dev/tty1
121 + ObjectStartCommand=agetty --noclear tty1 &
122 + ObjectStopCommand=NONE
123 + ObjectStartPriority=3
124 + ObjectStopPriority=0
125 + ObjectEnabled=true
126 + ObjectOptions=SERVICE AUTORESTART
127 + ObjectRunlevels=boot
128 +
129 +ObjectID=extrafs
130 + ObjectDescription=extra filesystems and swaps
131 + ObjectStartCommand=mount -a && swapon -a
132 + ObjectStopCommand=swapoff -a && umount -a -r -t nodevtmpfs,notmpfs,nosysfs,noproc
133 + ObjectStartPriority=4
134 + ObjectStopPriority=4
135 + ObjectEnabled=true
136 + ObjectRunlevels=boot
137 +
138 +ObjectID=killall5_soft
139 + ObjectDescription=Terminating all processes
140 + ObjectStopCommand=killall5 -15 && sleep 1
141 + ObjectStartPriority=0
142 + ObjectStopPriority=1
143 + ObjectEnabled=true
144 + ObjectOptions=HALTONLY RAWDESCRIPTION
145 +
146 +ObjectID=sync
147 + ObjectDescription=Syncing
148 + ObjectStopCommand=/bin/sync
149 + ObjectStartPriority=0
150 + ObjectStopPriority=2
151 + ObjectEnabled=true
152 + ObjectOptions=HALTONLY RAWDESCRIPTION
153 +
154 +ObjectID=killall5
155 + ObjectDescription=Killing all processes
156 + ObjectStopCommand=killall5 -9 && sleep 1
157 + ObjectStartPriority=0
158 + ObjectStopPriority=3
159 + ObjectEnabled=true
160 + ObjectOptions=HALTONLY RAWDESCRIPTION