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 26D06139694 for ; Fri, 24 Feb 2017 10:18:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EB0F21C028; Fri, 24 Feb 2017 10:18:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 0A23721C028 for ; Fri, 24 Feb 2017 10:18:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BEAF7340889 for ; Fri, 24 Feb 2017 10:18:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34A6652D6 for ; Fri, 24 Feb 2017 10:18:48 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1487931512.2fa47554ee1957d76a6155e3b539b4f971efee76.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/acct/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/acct/acct-6.5.5-r3.ebuild X-VCS-Directories: sys-process/acct/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 2fa47554ee1957d76a6155e3b539b4f971efee76 X-VCS-Branch: master Date: Fri, 24 Feb 2017 10:18:48 +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: 9d0979f2-785a-4e54-80df-705fc6f998fb X-Archives-Hash: 119f0ce67150089c32400814250ebdfd commit: 2fa47554ee1957d76a6155e3b539b4f971efee76 Author: Manuel Rüger gentoo org> AuthorDate: Fri Feb 24 10:18:32 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Fri Feb 24 10:18:32 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fa47554 sys-process/acct: Remove old Package-Manager: Portage-2.3.3, Repoman-2.3.1 sys-process/acct/acct-6.5.5-r3.ebuild | 44 ----------------------------------- 1 file changed, 44 deletions(-) diff --git a/sys-process/acct/acct-6.5.5-r3.ebuild b/sys-process/acct/acct-6.5.5-r3.ebuild deleted file mode 100644 index 552da3be9c..0000000000 --- a/sys-process/acct/acct-6.5.5-r3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=3 -inherit eutils autotools systemd - -DESCRIPTION="GNU system accounting utilities" -HOMEPAGE="https://savannah.gnu.org/projects/acct/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="" - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-6.5.5-cross-compile.patch \ - "${FILESDIR}"/${PN}-6.5.5-no-gets.patch - eautoreconf -} - -src_configure() { - econf --enable-linux-multiformat -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog INSTALL NEWS README TODO - keepdir /var/account - newinitd "${FILESDIR}"/acct.initd acct || die - newconfd "${FILESDIR}"/acct.confd acct || die - systemd_dounit "${FILESDIR}"/acct.service - insinto /etc/logrotate.d - newins "${FILESDIR}"/acct.logrotate acct || die - - # sys-apps/sysvinit already provides this - rm "${ED}"/usr/bin/last "${ED}"/usr/share/man/man1/last.1 || die - - # accton in / is only a temp workaround for #239748 - dodir /sbin - mv "${ED}"/usr/sbin/accton "${ED}"/sbin/ || die -}