From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 389D7138334 for ; Sun, 15 Dec 2019 13:37:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C211E086C; Sun, 15 Dec 2019 13:37:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76659E086C for ; Sun, 15 Dec 2019 13:37:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A6CEF34D87B for ; Sun, 15 Dec 2019 13:37:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4EBFD905 for ; Sun, 15 Dec 2019 13:37:09 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1576417025.e7472255a761c0ef2512b5e0b48e3e7f038d529b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/dcron/dcron-4.5-r1.ebuild X-VCS-Directories: sys-process/dcron/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e7472255a761c0ef2512b5e0b48e3e7f038d529b X-VCS-Branch: master Date: Sun, 15 Dec 2019 13:37:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ed7d2a39-79cb-4376-93d2-bfa6211f9d98 X-Archives-Hash: 42156f0834b5c1d6103f64da3bdf7a95 commit: e7472255a761c0ef2512b5e0b48e3e7f038d529b Author: Michał Górny gentoo org> AuthorDate: Sun Dec 15 13:21:25 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Dec 15 13:37:05 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7472255 sys-process/dcron: Drop old Signed-off-by: Michał Górny gentoo.org> sys-process/dcron/dcron-4.5-r1.ebuild | 47 ----------------------------------- 1 file changed, 47 deletions(-) diff --git a/sys-process/dcron/dcron-4.5-r1.ebuild b/sys-process/dcron/dcron-4.5-r1.ebuild deleted file mode 100644 index aeeb15bf702..00000000000 --- a/sys-process/dcron/dcron-4.5-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit cron toolchain-funcs eutils systemd - -DESCRIPTION="A cute little cron from Matt Dillon" -HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/" -SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-4.5-pidfile.patch - epatch "${FILESDIR}"/${PN}-4.5-ldflags.patch - tc-export CC - cat <<-EOF > config - PREFIX = /usr - CRONTAB_GROUP = cron - EOF -} - -src_install() { - emake install DESTDIR="${D}" - dodoc CHANGELOG README "${FILESDIR}"/crontab - - docrondir - docron crond -m0700 -o root -g wheel - docrontab - - insinto /etc - doins "${FILESDIR}"/crontab - insinto /etc/cron.d - doins extra/prune-cronstamps - dodoc extra/run-cron extra/root.crontab - - newinitd "${FILESDIR}"/dcron.init dcron - newconfd "${FILESDIR}"/dcron.confd dcron - systemd_dounit "${FILESDIR}"/dcron.service - - insinto /etc/logrotate.d - newins extra/crond.logrotate dcron -}