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 83DE6138331 for ; Sun, 27 May 2018 12:01:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8DB97E08BB; Sun, 27 May 2018 12:01:06 +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 6D7D3E089F for ; Sun, 27 May 2018 12:01:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4C898335CC1 for ; Sun, 27 May 2018 12:01:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E7F82AA for ; Sun, 27 May 2018 12:01:03 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1527422455.7b21c42dc7191ae530c5ce64cfcc6dd4cf1a6992.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lockrun/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lockrun/lockrun-20120508.ebuild X-VCS-Directories: dev-util/lockrun/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 7b21c42dc7191ae530c5ce64cfcc6dd4cf1a6992 X-VCS-Branch: master Date: Sun, 27 May 2018 12:01:03 +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-Archives-Salt: 136a245a-91e4-4bfe-8470-511510cd69f3 X-Archives-Hash: ec2ff664180d0c97f56f8a7281e03b7e commit: 7b21c42dc7191ae530c5ce64cfcc6dd4cf1a6992 Author: Pacho Ramos gentoo org> AuthorDate: Sun May 27 11:51:49 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun May 27 12:00:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b21c42d dev-util/lockrun: Drop old Package-Manager: Portage-2.3.38, Repoman-2.3.9 dev-util/lockrun/lockrun-20120508.ebuild | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/dev-util/lockrun/lockrun-20120508.ebuild b/dev-util/lockrun/lockrun-20120508.ebuild deleted file mode 100644 index 70d5bafe59d..00000000000 --- a/dev-util/lockrun/lockrun-20120508.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit toolchain-funcs - -DESCRIPTION="Lockrun - runs cronjobs with overrun protection" -HOMEPAGE="http://www.unixwiz.net/tools/lockrun.html" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="amd64 hppa x86" -IUSE="" - -S="${WORKDIR}" - -src_unpack() { - cp "${FILESDIR}"/${PN}.c-${PV} "${S}"/${PN}.c || die - cp "${FILESDIR}"/${PN}.c-${PV} "${S}"/README || die -} - -src_compile() { - emake CC=$(tc-getCC) ${PN} - sed -i README -e '60q;s|^ \*||g' || die -} - -src_install () { - dobin ${PN} - dodoc README -}