summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2015-05-29 04:37:40 +0000
committerLars Wendler <polynomial-c@gentoo.org>2015-05-29 04:37:40 +0000
commitb9604c9e4108eb968925c04a15fec374d4c33aa6 (patch)
tree88e2d17606acd281011a17f30154d3ad7d87ddee /sys-process
parentRename the old mod_perl.conf to match the ebuild #550638 by Vieri. (diff)
downloadgentoo-2-b9604c9e4108eb968925c04a15fec374d4c33aa6.tar.gz
gentoo-2-b9604c9e4108eb968925c04a15fec374d4c33aa6.tar.bz2
gentoo-2-b9604c9e4108eb968925c04a15fec374d4c33aa6.zip
Version bump (bug #550706). Removed old
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/cronie/ChangeLog9
-rw-r--r--sys-process/cronie/cronie-1.4.11-r1.ebuild83
-rw-r--r--sys-process/cronie/cronie-1.5.0.ebuild (renamed from sys-process/cronie/cronie-1.4.11-r3.ebuild)8
-rw-r--r--sys-process/cronie/files/anacron-1.0-initd18
-rw-r--r--sys-process/cronie/files/cronie-1.2-crontab15
5 files changed, 12 insertions, 121 deletions
diff --git a/sys-process/cronie/ChangeLog b/sys-process/cronie/ChangeLog
index c853f7250fef..5ff3c311b4b6 100644
--- a/sys-process/cronie/ChangeLog
+++ b/sys-process/cronie/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for sys-process/cronie
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.64 2015/02/28 21:30:03 tgall Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.65 2015/05/29 04:37:40 polynomial-c Exp $
+
+*cronie-1.5.0 (29 May 2015)
+
+ 29 May 2015; Lars Wendler <polynomial-c@gentoo.org> -cronie-1.4.11-r1.ebuild,
+ -cronie-1.4.11-r3.ebuild, +cronie-1.5.0.ebuild, -files/anacron-1.0-initd,
+ -files/cronie-1.2-crontab:
+ Version bump (bug #550706). Removed old.
28 Feb 2015; <tgall@gentoo.org> cronie-1.4.12.ebuild:
stable on arm64
diff --git a/sys-process/cronie/cronie-1.4.11-r1.ebuild b/sys-process/cronie/cronie-1.4.11-r1.ebuild
deleted file mode 100644
index 3c2b80e55f85..000000000000
--- a/sys-process/cronie/cronie-1.4.11-r1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.4.11-r1.ebuild,v 1.3 2014/08/10 20:11:30 slyfox Exp $
-
-EAPI=5
-
-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 hppa ~ia64 ~mips ~ppc ~ppc64 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
-}
-
-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.2-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
-
- sed s:sysconfig/crond:conf.d/cronie: contrib/cronie.systemd > "${T}"/cronie.service
- systemd_dounit "${T}"/cronie.service
-
- if use anacron ; then
- keepdir /var/spool/anacron
- fowners root:cron /var/spool/anacron
- fperms 0750 /var/spool/anacron
-
- insinto /etc
-
- doins contrib/anacrontab
- newinitd "${FILESDIR}"/anacron-1.0-initd anacron
-
- # Install this without execute permission.
- # User can enable it with chmod +x.
- insinto /etc/cron.hourly
- doins contrib/0anacron
- fi
-
- dodoc AUTHORS README contrib/*
-}
-
-pkg_postinst() {
- cron_pkg_postinst
-}
diff --git a/sys-process/cronie/cronie-1.4.11-r3.ebuild b/sys-process/cronie/cronie-1.5.0.ebuild
index 7dfe1acbb5ef..56dc276daab5 100644
--- a/sys-process/cronie/cronie-1.4.11-r3.ebuild
+++ b/sys-process/cronie/cronie-1.5.0.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.4.11-r3.ebuild,v 1.4 2014/09/07 15:27:13 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/cronie-1.5.0.ebuild,v 1.1 2015/05/29 04:37:40 polynomial-c Exp $
EAPI=5
@@ -11,7 +11,7 @@ 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 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
IUSE="anacron +inotify pam selinux"
DEPEND="pam? ( virtual/pam )
@@ -75,7 +75,7 @@ src_install() {
fperms 0750 /etc/cron.hourly/0anacron
fi
- dodoc AUTHORS README contrib/*
+ dodoc AUTHORS README NEWS contrib/*
}
pkg_postinst() {
diff --git a/sys-process/cronie/files/anacron-1.0-initd b/sys-process/cronie/files/anacron-1.0-initd
deleted file mode 100644
index 6462b900eceb..000000000000
--- a/sys-process/cronie/files/anacron-1.0-initd
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/files/anacron-1.0-initd,v 1.4 2014/03/04 00:17:58 polynomial-c Exp $
-
-# anacron forks itself when -d gets omitted. So s-s-d fails to create a valid
-# pidfile. DO NOT remove -d from command_args and let s-s-d start anacron
-# in background!
-
-command="/usr/sbin/anacron"
-command_args="-d -s -S /var/spool/anacron"
-pidfile="/var/run/anacron.pid"
-command_background="true"
-
-depend() {
- use clock logger
- need localmount
-}
diff --git a/sys-process/cronie/files/cronie-1.2-crontab b/sys-process/cronie/files/cronie-1.2-crontab
deleted file mode 100644
index e714d9196587..000000000000
--- a/sys-process/cronie/files/cronie-1.2-crontab
+++ /dev/null
@@ -1,15 +0,0 @@
-# for cronie
-# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/files/cronie-1.2-crontab,v 1.2 2009/05/12 09:10:59 bangert Exp $
-
-# Global variables
-SHELL=/bin/bash
-PATH=/sbin:/bin:/usr/sbin:/usr/bin
-MAILTO=root
-HOME=/
-
-# check scripts in cron.hourly, cron.daily, cron.weekly and cron.monthly
-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