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 E4B84138334 for ; Wed, 11 Sep 2019 16:21:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 133B2E09C2; Wed, 11 Sep 2019 16:21:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 ED5E0E09C2 for ; Wed, 11 Sep 2019 16:21:36 +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 175B334B081 for ; Wed, 11 Sep 2019 16:21:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A81F7F0 for ; Wed, 11 Sep 2019 16:21:32 +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: <1568218858.3761f8c21c91b2d9a3c11ebb40aabac9faea2240.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/anacron/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/anacron/anacron-2.3-r3.ebuild X-VCS-Directories: sys-process/anacron/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3761f8c21c91b2d9a3c11ebb40aabac9faea2240 X-VCS-Branch: master Date: Wed, 11 Sep 2019 16:21:32 +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: edfba89f-5943-4e3e-af0e-ef26f673a538 X-Archives-Hash: c59319498fe4c87cb528de6ba65754ae commit: 3761f8c21c91b2d9a3c11ebb40aabac9faea2240 Author: Michał Górny gentoo org> AuthorDate: Wed Sep 11 11:27:14 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 11 16:20:58 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3761f8c2 sys-process/anacron: Drop old Signed-off-by: Michał Górny gentoo.org> sys-process/anacron/anacron-2.3-r3.ebuild | 63 ------------------------------- 1 file changed, 63 deletions(-) diff --git a/sys-process/anacron/anacron-2.3-r3.ebuild b/sys-process/anacron/anacron-2.3-r3.ebuild deleted file mode 100644 index 30f89d82973..00000000000 --- a/sys-process/anacron/anacron-2.3-r3.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit eutils toolchain-funcs - -DESCRIPTION="a periodic command scheduler" -HOMEPAGE="http://anacron.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86" -IUSE="" - -DEPEND="sys-process/cronbase" -RDEPEND="${RDEPEND} - virtual/mta" - -src_prepare() { - epatch "${FILESDIR}"/${P}-compile-fix-from-debian.patch - epatch "${FILESDIR}"/${P}-headers.patch - sed -i \ - -e '/^CFLAGS/{s:=:+=:;s:-O2::}' \ - Makefile || die -} - -src_configure() { - tc-export CC -} - -src_install() { - #this does not work if the directory exists already - diropts -m0750 -o root -g cron - keepdir /var/spool/anacron - - doman anacrontab.5 anacron.8 - - newinitd "${FILESDIR}"/anacron.rc6 anacron - - dodoc ChangeLog README TODO - - dosbin anacron - - insinto /etc - doins "${FILESDIR}"/anacrontab -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]] ; then - elog "Schedule the command \"anacron -s\" as a daily cron-job (preferably" - elog "at some early morning hour). This will make sure that jobs are run" - elog "when the systems is left running for a night." - echo - elog "Update /etc/anacrontab to include what you want anacron to run." - - echo - elog "You may wish to read the Gentoo Linux Cron Guide, which can be" - elog "found online at:" - elog " https://wiki.gentoo.org/wiki/Cron" - fi -}