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 2E9C5138334 for ; Thu, 26 Jul 2018 23:34:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82FFDE090E; Thu, 26 Jul 2018 23:34:43 +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 4FF43E090E for ; Thu, 26 Jul 2018 23:34:41 +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 31423335CCB for ; Thu, 26 Jul 2018 23:34:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA322389 for ; Thu, 26 Jul 2018 23:34:37 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1532648074.2204826c6a2e2b3cd280edc76a8bcd32cafc6ab4.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/restartd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/restartd/restartd-0.2.2.ebuild X-VCS-Directories: sys-apps/restartd/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 2204826c6a2e2b3cd280edc76a8bcd32cafc6ab4 X-VCS-Branch: master Date: Thu, 26 Jul 2018 23:34:37 +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: 40838d34-52a9-4dfe-ad19-9265ddac961e X-Archives-Hash: 4fdb8cab0958d78eba29f0c9e2ff24da commit: 2204826c6a2e2b3cd280edc76a8bcd32cafc6ab4 Author: Mikle Kolyada gentoo org> AuthorDate: Thu Jul 26 23:34:12 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Thu Jul 26 23:34:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2204826c sys-apps/restartd: Drop old Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-apps/restartd/restartd-0.2.2.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/sys-apps/restartd/restartd-0.2.2.ebuild b/sys-apps/restartd/restartd-0.2.2.ebuild deleted file mode 100644 index 1de6a97b5fd..00000000000 --- a/sys-apps/restartd/restartd-0.2.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit eutils toolchain-funcs - -MY_PV=${PV/_alpha/.a-} -DESCRIPTION="A daemon for checking your running and not running processes" -HOMEPAGE="http://packages.debian.org/unstable/utils/restartd" -SRC_URI="mirror://debian/pool/main/r/restartd/${PN}_${MY_PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="" - -src_prepare() { - sed -i Makefile -e 's|-o restartd|$(LDFLAGS) &|g' || die "sed Makefile" -} - -src_compile() { - emake CC=$(tc-getCC) C_ARGS="${CFLAGS}" || die -} - -src_install() { - dodir /etc /usr/sbin /usr/share/man/man8 /usr/share/man/fr/man8/ - emake DESTDIR="${D}" install || die -}