Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/cronbase: cronbase-0.3.5-r1.ebuild ChangeLog cronbase-0.3.5.ebuild
Date: Thu, 23 Jul 2015 02:54:00
Message-Id: 20150723025354.8183FBD@oystercatcher.gentoo.org
1 vapier 15/07/23 02:53:54
2
3 Modified: ChangeLog
4 Added: cronbase-0.3.5-r1.ebuild
5 Removed: cronbase-0.3.5.ebuild
6 Log:
7 Use err level when logging failed scripts #540274 by Tobias Klausmann.
8
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
10
11 Revision Changes Path
12 1.45 sys-process/cronbase/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronbase/ChangeLog?rev=1.45&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronbase/ChangeLog?rev=1.45&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronbase/ChangeLog?r1=1.44&r2=1.45
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-process/cronbase/ChangeLog,v
21 retrieving revision 1.44
22 retrieving revision 1.45
23 diff -u -r1.44 -r1.45
24 --- ChangeLog 22 Jul 2015 07:12:15 -0000 1.44
25 +++ ChangeLog 23 Jul 2015 02:53:54 -0000 1.45
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-process/cronbase
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-process/cronbase/ChangeLog,v 1.44 2015/07/22 07:12:15 vapier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-process/cronbase/ChangeLog,v 1.45 2015/07/23 02:53:54 vapier Exp $
31 +
32 +*cronbase-0.3.5-r1 (23 Jul 2015)
33 +
34 + 23 Jul 2015; Mike Frysinger <vapier@g.o> +cronbase-0.3.5-r1.ebuild,
35 + -cronbase-0.3.5.ebuild, files/run-crons-0.3.5:
36 + Use err level when logging failed scripts #540274 by Tobias Klausmann.
37
38 *cronbase-0.3.5 (22 Jul 2015)
39
40
41
42
43 1.1 sys-process/cronbase/cronbase-0.3.5-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronbase/cronbase-0.3.5-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronbase/cronbase-0.3.5-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: cronbase-0.3.5-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-process/cronbase/cronbase-0.3.5-r1.ebuild,v 1.1 2015/07/23 02:53:54 vapier Exp $
53
54 EAPI="5"
55
56 inherit user
57
58 DESCRIPTION="base for all cron ebuilds"
59 HOMEPAGE="http://www.gentoo.org/"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
64 IUSE=""
65
66 S=${WORKDIR}
67
68 pkg_setup() {
69 enewgroup cron 16
70 enewuser cron 16 -1 /var/spool/cron cron
71 }
72
73 src_install() {
74 newsbin "${FILESDIR}"/run-crons-${PV} run-crons
75
76 diropts -m0750
77 keepdir /etc/cron.{hourly,daily,weekly,monthly}
78
79 keepdir /var/spool/cron/lastrun
80 diropts -m0750 -o root -g cron
81 keepdir /var/spool/cron
82 }