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 EF6F9139694 for ; Thu, 22 Jun 2017 21:58:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA397234010; Thu, 22 Jun 2017 21:58:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0AE9234010 for ; Thu, 22 Jun 2017 21:58:07 +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 80BC334181A for ; Thu, 22 Jun 2017 21:58:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA95A747C for ; Thu, 22 Jun 2017 21:58:03 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1498168671.03e328116a02937579c4182a5ab249a54bcc0a7f.monsieurp@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-r1.ebuild X-VCS-Directories: dev-util/lockrun/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 03e328116a02937579c4182a5ab249a54bcc0a7f X-VCS-Branch: master Date: Thu, 22 Jun 2017 21:58: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: 907c60c4-ab6e-4429-8e34-97b9aec5bdfd X-Archives-Hash: 8ddfeab23f061f3482e35ffd9b40cdf6 commit: 03e328116a02937579c4182a5ab249a54bcc0a7f Author: Patrice Clement gentoo org> AuthorDate: Thu Jun 22 21:57:51 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Jun 22 21:57:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e32811 dev-util/lockrun: EAPI 6 bump. Package-Manager: Portage-2.3.5, Repoman-2.3.1 dev-util/lockrun/lockrun-20120508-r1.ebuild | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-util/lockrun/lockrun-20120508-r1.ebuild b/dev-util/lockrun/lockrun-20120508-r1.ebuild new file mode 100644 index 00000000000..1a0c8c9f499 --- /dev/null +++ b/dev-util/lockrun/lockrun-20120508-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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" + +S="${WORKDIR}" + +src_unpack() { + cp -v "${FILESDIR}"/${PN}.c-${PV} "${S}"/${PN}.c || die + cp -v "${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} + einstalldocs +}