commit:     c474dda61c900197ef05e64d1e5af35785cbb7c1
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 12:06:41 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 12:24:45 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c474dda6

sys-process/cronie: Bump to version 1.5.1

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/cronie/Manifest                 |  1 +
 sys-process/cronie/cronie-1.5.1.ebuild      | 91 +++++++++++++++++++++++++++++
 sys-process/cronie/files/cronie-1.3-crontab | 11 ++--
 3 files changed, 97 insertions(+), 6 deletions(-)

diff --git a/sys-process/cronie/Manifest b/sys-process/cronie/Manifest
index 1150470..1fa47d4 100644
--- a/sys-process/cronie/Manifest
+++ b/sys-process/cronie/Manifest
@@ -1 +1,2 @@
 DIST cronie-1.5.0.tar.gz 242072 SHA256 
9cf0e3f4f5042a9c09413d62c8e0c055e12401f70b112465f0f81f2c84ebfb3f SHA512 
cad4d78cbb58ea32d1093890b316b6599d115b29f367eecc2e4a0a3560ab85ac85aa159886c883e46defb6212432d37f425396cfca686e4dd8526102ca4dd8fe
 WHIRLPOOL 
69cb81b1d5673137132d921f8ed917e83965c5511004f58d386bb36e40787d30c640a3527d933346f3071b781c217b3001ee089045841ff054b965638e217744
+DIST cronie-1.5.1.tar.gz 243384 SHA256 
6c73666102a6b5d35e2eaf1bd06925f2d4b0cef8d3323c37286dda3089a85338 SHA512 
01cd289c459c916bc53d1b0d8a8235060d6670d8bb401e6b324757780461e0071d247e3cc98f72a845a0b4aedea79b502e8077976cb38a37e88628e31e4c23d4
 WHIRLPOOL 
4540d16dff83d7c30da89896df75f83c54b688e0e89eec6820a2b5e8ee734fb2f04265508306f40eddc54dad157890ed6d6c3389e10516a1159e8cf5d9ecb733

diff --git a/sys-process/cronie/cronie-1.5.1.ebuild 
b/sys-process/cronie/cronie-1.5.1.ebuild
new file mode 100644
index 0000000..62ae101
--- /dev/null
+++ b/sys-process/cronie/cronie-1.5.1.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cron eutils pam systemd user
+
+DESCRIPTION="Cronie is a standard UNIX daemon cron based on the original 
vixie-cron"
+SRC_URI="https://fedorahosted.org/releases/c/r/cronie/${P}.tar.gz";
+HOMEPAGE="https://fedorahosted.org/cronie/wiki";
+
+LICENSE="ISC BSD BSD-2 GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE="anacron +inotify pam selinux"
+
+DEPEND="pam? ( virtual/pam )
+       anacron? ( !sys-process/anacron )"
+RDEPEND="${DEPEND}"
+
+#cronie supports /etc/crontab
+CRON_SYSTEM_CRONTAB="yes"
+
+pkg_setup() {
+       enewgroup crontab
+}
+
+PATCHES=(
+       "${FILESDIR}/cronie-systemd.patch"
+)
+
+src_configure() {
+       SPOOL_DIR="/var/spool/cron/crontabs" \
+       ANACRON_SPOOL_DIR="/var/spool/anacron" \
+       econf \
+               $(use_with inotify) \
+               $(use_with pam) \
+               $(use_with selinux) \
+               $(use_enable anacron) \
+               --enable-syscrontab \
+               --with-daemon_username=cron \
+               --with-daemon_groupname=cron
+}
+
+src_install() {
+       emake install DESTDIR="${D}"
+
+       docrondir -m 1730 -o root -g crontab
+       fowners root:crontab /usr/bin/crontab
+       fperms 2751 /usr/bin/crontab
+
+       insinto /etc/conf.d
+       newins "${S}"/crond.sysconfig ${PN}
+
+       insinto /etc
+       newins "${FILESDIR}/${PN}-1.3-crontab" crontab
+       newins "${FILESDIR}/${PN}-1.2-cron.deny" cron.deny
+
+       keepdir /etc/cron.d
+       newinitd "${FILESDIR}/${PN}-1.3-initd" ${PN}
+       newpamd "${FILESDIR}/${PN}-1.4.3-pamd" crond
+
+       systemd_newunit contrib/cronie.systemd cronie.service
+
+       if use anacron ; then
+               local anacrondir="/var/spool/anacron"
+               keepdir ${anacrondir}
+               fowners root:cron ${anacrondir}
+               fperms 0750 ${anacrondir}
+
+               insinto /etc
+
+               doins contrib/anacrontab
+
+               insinto /etc/cron.hourly
+               doins contrib/0anacron
+               fperms 0750 /etc/cron.hourly/0anacron
+       fi
+
+       dodoc AUTHORS README NEWS contrib/*
+}
+
+pkg_postinst() {
+       cron_pkg_postinst
+
+       if [[ -n "${REPLACING_VERSIONS}" ]] ; then
+               ewarn "You should restart ${PN} daemon or else you might 
experience segfaults"
+               ewarn "or ${PN} not working reliably anymore."
+               einfo "(see https://bugs.gentoo.org/557406 for details.)"
+       fi
+}

diff --git a/sys-process/cronie/files/cronie-1.3-crontab 
b/sys-process/cronie/files/cronie-1.3-crontab
index c1364fa..14a6b9b 100644
--- a/sys-process/cronie/files/cronie-1.3-crontab
+++ b/sys-process/cronie/files/cronie-1.3-crontab
@@ -8,9 +8,8 @@ MAILTO=root
 HOME=/
 
 # check scripts in cron.hourly, cron.daily, cron.weekly and cron.monthly
-# if anacron is not present
-59  *  * * *   root    [ ! -x /etc/cron.hourly/0anacron ] && rm -f 
/var/spool/cron/lastrun/cron.hourly
-9  3  * * *    root    [ ! -x /etc/cron.hourly/0anacron ] && rm -f 
/var/spool/cron/lastrun/cron.daily
-19 4  * * 6    root    [ ! -x /etc/cron.hourly/0anacron ] && rm -f 
/var/spool/cron/lastrun/cron.weekly
-29 5  1 * *    root    [ ! -x /etc/cron.hourly/0anacron ] && rm -f 
/var/spool/cron/lastrun/cron.monthly
-*/10  *  * * * root    [ ! -x /etc/cron.hourly/0anacron ] && { test -x 
/usr/sbin/run-crons && /usr/sbin/run-crons ; }
+59  *  * * *   root    rm -f /var/spool/cron/lastrun/cron.hourly
+9  3  * * *    root    rm -f /var/spool/cron/lastrun/cron.daily
+19 4  * * 6    root    rm -f /var/spool/cron/lastrun/cron.weekly
+29 5  1 * *    root    rm -f /var/spool/cron/lastrun/cron.monthly
+*/10  *  * * * root    test -x /usr/sbin/run-crons && /usr/sbin/run-crons

Reply via email to