cronie: update to 1.4.11.

This commit is contained in:
Juan RP 2013-11-29 09:14:11 +01:00
parent ee341d4c4a
commit 1e8e751716
2 changed files with 12 additions and 15 deletions

View file

@ -1,5 +1,5 @@
SHELL=/bin/sh SHELL=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin PATH=/usr/sbin:/usr/bin
MAILTO="" MAILTO=""
HOME=/ HOME=/

View file

@ -1,28 +1,21 @@
# Template file for 'cronie' # Template file for 'cronie'
pkgname=cronie pkgname=cronie
version=1.4.9 version=1.4.11
revision=2 revision=1
build_style=gnu-configure build_style=gnu-configure
configure_args="--with-inotify --without-selinux --with-pam configure_args="--with-inotify --without-selinux --with-pam
--disable-anacron --localstatedir=/var --enable-pie --enable-relro" --disable-anacron --localstatedir=/var --enable-pie --enable-relro"
makedepends="pam-devel run-parts"
short_desc="Runs specified programs at scheduled times" short_desc="Runs specified programs at scheduled times"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
homepage="https://fedorahosted.org/cronie/" homepage="https://fedorahosted.org/cronie/"
license="BSD" license="BSD"
distfiles="https://fedorahosted.org/releases/c/r/cronie/cronie-$version.tar.gz" distfiles="https://fedorahosted.org/releases/c/r/cronie/cronie-$version.tar.gz"
checksum=bd7f6f118460c452bd1217a24b80fd3c000425d3de28731b98354a81a2133e92 checksum=fd08084cedddbb42499f80ddb7f2158195c3555c2ff40ee11d4ece2f9864d7be
makedepends="pam-devel run-parts"
post_install() { post_install() {
install -d ${DESTDIR}/etc/cron.{d,hourly,daily,weekly,monthly}
touch ${DESTDIR}/etc/cron.{d,hourly,daily,weekly,monthly}/.owned
vmkdir var/spool/cron
touch ${DESTDIR}/var/spool/cron/.owned
vinstall ${FILESDIR}/cronie.service 644 usr/lib/systemd/system vinstall ${FILESDIR}/cronie.service 644 usr/lib/systemd/system
vinstall ${FILESDIR}/crontab 644 etc vinstall ${FILESDIR}/crontab 644 etc
rm -f ${DESTDIR}/etc/pam.d/crond
vinstall ${FILESDIR}/crond.pam 644 etc/pam.d crond vinstall ${FILESDIR}/crond.pam 644 etc/pam.d crond
# Add /etc/cron.deny empty, to allow all users. # Add /etc/cron.deny empty, to allow all users.
@ -31,14 +24,18 @@ post_install() {
} }
cronie_package() { cronie_package() {
make_dirs="
/etc/cron.d/daily
/etc/cron.d/weekly
/etc/cron.d/monthly
/etc/cron.d/yearly
/var/spool/cron"
conf_files="/etc/crontab /etc/pam.d/crond /etc/cron.deny" conf_files="/etc/crontab /etc/pam.d/crond /etc/cron.deny"
replaces="cron-daemon>=0" replaces="cron-daemon>=0"
provides="cron-daemon-0" provides="cron-daemon-0"
systemd_services="cronie.service on" systemd_services="cronie.service on"
depends="run-parts" depends="run-parts"
pkg_install() { pkg_install() {
vmove etc vmove all
vmove usr
vmove var
} }
} }