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/cronie: ChangeLog cronie-1.4.1.ebuild cronie-1.3.ebuild cronie-1.2.ebuild
Date: Sun, 23 Aug 2009 20:12:46
Message-Id: E1MfJQh-0001rI-UB@stork.gentoo.org
1 bangert 09/08/23 20:12:43
2
3 Modified: ChangeLog
4 Added: cronie-1.4.1.ebuild
5 Removed: cronie-1.3.ebuild cronie-1.2.ebuild
6 Log:
7 version bump - remove old versions
8 (Portage version: 2.2_rc33/cvs/Linux i686)
9
10 Revision Changes Path
11 1.6 sys-process/cronie/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 28 Jul 2009 20:52:47 -0000 1.5
24 +++ ChangeLog 23 Aug 2009 20:12:43 -0000 1.6
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-process/cronie
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.5 2009/07/28 20:52:47 bangert Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.6 2009/08/23 20:12:43 bangert Exp $
30 +
31 +*cronie-1.4.1 (23 Aug 2009)
32 +
33 + 23 Aug 2009; Thilo Bangert <bangert@g.o> -cronie-1.2.ebuild,
34 + -files/cronie-1.2-pathnames.h-fix-SPOOL_DIR.patch, -cronie-1.3.ebuild,
35 + +cronie-1.4.1.ebuild:
36 + version bump - remove old versions
37
38 *cronie-1.4 (28 Jul 2009)
39
40
41
42
43 1.1 sys-process/cronie/cronie-1.4.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/cronie-1.4.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/cronie/cronie-1.4.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: cronie-1.4.1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.4.1.ebuild,v 1.1 2009/08/23 20:12:43 bangert Exp $
53
54 EAPI="2"
55
56 inherit cron eutils
57
58 DESCRIPTION="Cronie is a standard UNIX daemon cron based on the original vixie-cron."
59 SRC_URI="https://fedorahosted.org/releases/c/r/cronie/${P}.tar.gz"
60 HOMEPAGE="https://fedorahosted.org/cronie/wiki"
61
62 LICENSE="ISC BSD BSD-2"
63 KEYWORDS="~x86"
64 IUSE="inotify pam"
65
66 DEPEND="pam? ( virtual/pam )"
67 RDEPEND="${DEPEND}"
68
69 #cronie supports /etc/crontab
70 CRON_SYSTEM_CRONTAB="yes"
71
72 src_configure() {
73 SPOOL_DIR="/var/spool/cron/crontabs" econf \
74 $(use_with inotify ) \
75 $(use_with pam ) \
76 --with-daemon_username=cron \
77 --with-daemon_groupname=cron \
78 || die "econf failed"
79 }
80
81 src_install() {
82 emake install DESTDIR="${D}" || die "install failed"
83
84 docrondir
85 fowners root:cron /usr/bin/crontab
86 fperms 2750 /usr/bin/crontab
87
88 insinto /etc
89 newins "${FILESDIR}/${PN}-1.2-crontab" crontab
90 newins "${FILESDIR}/${PN}-1.2-cron.deny" cron.deny
91
92 keepdir /etc/cron.d
93 newinitd "${FILESDIR}/${PN}-1.2-initd" cronie
94 dodoc NEWS AUTHORS README
95 }
96
97 pkg_postinst() {
98 cron_pkg_postinst
99 }