Gentoo Archives: gentoo-commits

From: "Thilo Bangert (bangert)" <bangert@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/bcron: bcron-0.09.ebuild ChangeLog
Date: Sat, 27 Oct 2007 21:21:53
Message-Id: E1Ilt6L-0001h9-5o@stork.gentoo.org
1 bangert 07/10/27 21:21:49
2
3 Modified: bcron-0.09.ebuild ChangeLog
4 Log:
5 fix quoting - use the cron eclass
6 (Portage version: 2.1.3.9)
7
8 Revision Changes Path
9 1.8 sys-process/bcron/bcron-0.09.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/bcron/bcron-0.09.ebuild?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/bcron/bcron-0.09.ebuild?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/bcron/bcron-0.09.ebuild?r1=1.7&r2=1.8
14
15 Index: bcron-0.09.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-process/bcron/bcron-0.09.ebuild,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- bcron-0.09.ebuild 10 Oct 2007 08:45:58 -0000 1.7
22 +++ bcron-0.09.ebuild 27 Oct 2007 21:21:48 -0000 1.8
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-process/bcron/bcron-0.09.ebuild,v 1.7 2007/10/10 08:45:58 opfer Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-process/bcron/bcron-0.09.ebuild,v 1.8 2007/10/27 21:21:48 bangert Exp $
28
29 CRON_SYSTEM_CRONTAB="yes"
30
31 @@ -30,7 +30,7 @@
32 echo "${D}/usr/bin" > conf-bin
33 echo "$(tc-getCC) ${CFLAGS}" > conf-cc
34 echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
35 - make || die "make failed"
36 + make || die "make failed" #no emake b/c jobserver
37 }
38
39 src_install() {
40 @@ -59,7 +59,7 @@
41 dodir /etc/bcron
42
43 insinto /etc
44 - doins ${FILESDIR}/crontab
45 + doins "${FILESDIR}"/crontab
46
47 insinto /var/lib/supervise/bcron
48 doins bcron-sched.run
49 @@ -75,27 +75,27 @@
50 }
51
52 pkg_config() {
53 - cd /var/lib/supervise/bcron
54 + cd "${ROOT}"var/lib/supervise/bcron
55 [ -e run ] && cp run bcron-sched.run.`date +%Y%m%d%H%M%S`
56 cp bcron-sched.run run
57 chmod u+x run
58
59 - cd /var/lib/supervise/bcron/log
60 + cd "${ROOT}"/var/lib/supervise/bcron/log
61 [ -e run ] && cp run bcron-sched-log.run.`date +%Y%m%d%H%M%S`
62 cp bcron-sched-log.run run
63 chmod u+x run
64
65 - cd /var/lib/supervise/bcron-spool
66 + cd "${ROOT}"/var/lib/supervise/bcron-spool
67 [ -e run ] && cp run bcron-spool.run.`date +%Y%m%d%H%M%S`
68 cp bcron-spool.run run
69 chmod u+x run
70
71 - cd /var/lib/supervise/bcron-update
72 + cd "${ROOT}"/var/lib/supervise/bcron-update
73 [ -e run ] && cp run bcron-update.run.`date +%Y%m%d%H%M%S`
74 cp bcron-update.run run
75 chmod u+x run
76
77 - [ ! -e /var/spool/cron/trigger ] && mkfifo /var/spool/cron/trigger
78 + [ ! -e "${ROOT}"/var/spool/cron/trigger ] && mkfifo "${ROOT}"var/spool/cron/trigger
79 chown cron:cron /var/spool/cron/trigger
80 chmod go-rwx /var/spool/cron/trigger
81 }
82 @@ -109,5 +109,5 @@
83 elog " /var/lib/supervise/bcron-spool (crontab receiver) and"
84 elog " /var/lib/supervise/bcron-update (system crontab updater)"
85
86 -# cron_pkg_postinst
87 + cron_pkg_postinst
88 }
89
90
91
92 1.9 sys-process/bcron/ChangeLog
93
94 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/bcron/ChangeLog?rev=1.9&view=markup
95 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/bcron/ChangeLog?rev=1.9&content-type=text/plain
96 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/bcron/ChangeLog?r1=1.8&r2=1.9
97
98 Index: ChangeLog
99 ===================================================================
100 RCS file: /var/cvsroot/gentoo-x86/sys-process/bcron/ChangeLog,v
101 retrieving revision 1.8
102 retrieving revision 1.9
103 diff -u -r1.8 -r1.9
104 --- ChangeLog 10 Oct 2007 08:45:58 -0000 1.8
105 +++ ChangeLog 27 Oct 2007 21:21:48 -0000 1.9
106 @@ -1,6 +1,9 @@
107 # ChangeLog for sys-process/bcron
108 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
109 -# $Header: /var/cvsroot/gentoo-x86/sys-process/bcron/ChangeLog,v 1.8 2007/10/10 08:45:58 opfer Exp $
110 +# $Header: /var/cvsroot/gentoo-x86/sys-process/bcron/ChangeLog,v 1.9 2007/10/27 21:21:48 bangert Exp $
111 +
112 + 27 Oct 2007; Thilo Bangert <bangert@g.o> bcron-0.09.ebuild:
113 + fix quoting - use eclass
114
115 10 Oct 2007; Christian Faulhammer <opfer@g.o> bcron-0.09.ebuild:
116 stable x86, bug 195303
117
118
119
120 --
121 gentoo-commits@g.o mailing list