Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/cronie/
Date: Sun, 30 Aug 2015 13:10:16
Message-Id: 1440940203.eeff2c1a87a8efd41398e23c350108cb6e45627c.polynomial-c@gentoo
1 commit: eeff2c1a87a8efd41398e23c350108cb6e45627c
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 30 13:00:59 2015 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 30 13:10:03 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeff2c1a
7
8 sys-process/cronie: Removed old.
9
10 Package-Manager: portage-2.2.20.1
11
12 sys-process/cronie/Manifest | 1 -
13 sys-process/cronie/cronie-1.4.12.ebuild | 83 ---------------------------------
14 2 files changed, 84 deletions(-)
15
16 diff --git a/sys-process/cronie/Manifest b/sys-process/cronie/Manifest
17 index 9fd0eca..1150470 100644
18 --- a/sys-process/cronie/Manifest
19 +++ b/sys-process/cronie/Manifest
20 @@ -1,2 +1 @@
21 -DIST cronie-1.4.12.tar.gz 234214 SHA256 0f5c9bf32f352599451c4ca0d6bc076d19e73ecfa5a90b34ecfe47c918c8bafd SHA512 ff17c9a1ba39957727db390d28d21248f05414f55119094d99a646695698e1b148b920f3fc91e9733b862bc8ce226824d290fff51abe17410a0e63ab3b424865 WHIRLPOOL 61a6a7c3a660bbbb38ff2b7b700fe6fa84b1144d20d658e26f4cde522f6fc3faa6141f4cb176f78cfb22cfb50e17f2a945aeb382761ba2aa1b25e6e16ad20082
22 DIST cronie-1.5.0.tar.gz 242072 SHA256 9cf0e3f4f5042a9c09413d62c8e0c055e12401f70b112465f0f81f2c84ebfb3f SHA512 cad4d78cbb58ea32d1093890b316b6599d115b29f367eecc2e4a0a3560ab85ac85aa159886c883e46defb6212432d37f425396cfca686e4dd8526102ca4dd8fe WHIRLPOOL 69cb81b1d5673137132d921f8ed917e83965c5511004f58d386bb36e40787d30c640a3527d933346f3071b781c217b3001ee089045841ff054b965638e217744
23
24 diff --git a/sys-process/cronie/cronie-1.4.12.ebuild b/sys-process/cronie/cronie-1.4.12.ebuild
25 deleted file mode 100644
26 index 9149c05..0000000
27 --- a/sys-process/cronie/cronie-1.4.12.ebuild
28 +++ /dev/null
29 @@ -1,83 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -inherit cron eutils pam systemd user
37 -
38 -DESCRIPTION="Cronie is a standard UNIX daemon cron based on the original vixie-cron"
39 -SRC_URI="https://fedorahosted.org/releases/c/r/cronie/${P}.tar.gz"
40 -HOMEPAGE="https://fedorahosted.org/cronie/wiki"
41 -
42 -LICENSE="ISC BSD BSD-2 GPL-2"
43 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
44 -IUSE="anacron +inotify pam selinux"
45 -
46 -DEPEND="pam? ( virtual/pam )
47 - anacron? ( !sys-process/anacron )"
48 -RDEPEND="${DEPEND}"
49 -
50 -#cronie supports /etc/crontab
51 -CRON_SYSTEM_CRONTAB="yes"
52 -
53 -pkg_setup() {
54 - enewgroup crontab
55 -}
56 -
57 -src_configure() {
58 - SPOOL_DIR="/var/spool/cron/crontabs" \
59 - ANACRON_SPOOL_DIR="/var/spool/anacron" \
60 - econf \
61 - $(use_with inotify) \
62 - $(use_with pam) \
63 - $(use_with selinux) \
64 - $(use_enable anacron) \
65 - --enable-syscrontab \
66 - --with-daemon_username=cron \
67 - --with-daemon_groupname=cron
68 -}
69 -
70 -src_install() {
71 - emake install DESTDIR="${D}"
72 -
73 - docrondir -m 1730 -o root -g crontab
74 - fowners root:crontab /usr/bin/crontab
75 - fperms 2751 /usr/bin/crontab
76 -
77 - insinto /etc/conf.d
78 - newins "${S}"/crond.sysconfig ${PN}
79 -
80 - insinto /etc
81 - newins "${FILESDIR}/${PN}-1.3-crontab" crontab
82 - newins "${FILESDIR}/${PN}-1.2-cron.deny" cron.deny
83 -
84 - keepdir /etc/cron.d
85 - newinitd "${FILESDIR}/${PN}-1.3-initd" ${PN}
86 - newpamd "${FILESDIR}/${PN}-1.4.3-pamd" crond
87 -
88 - sed s:sysconfig/crond:conf.d/cronie: contrib/cronie.systemd \
89 - > "${T}"/cronie.service
90 - systemd_dounit "${T}"/cronie.service
91 -
92 - if use anacron ; then
93 - local anacrondir="/var/spool/anacron"
94 - keepdir ${anacrondir}
95 - fowners root:cron ${anacrondir}
96 - fperms 0750 ${anacrondir}
97 -
98 - insinto /etc
99 -
100 - doins contrib/anacrontab
101 -
102 - insinto /etc/cron.hourly
103 - doins contrib/0anacron
104 - fperms 0750 /etc/cron.hourly/0anacron
105 - fi
106 -
107 - dodoc AUTHORS README contrib/*
108 -}
109 -
110 -pkg_postinst() {
111 - cron_pkg_postinst
112 -}