From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DAC5C59CA3 for ; Sun, 14 Feb 2016 19:48:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B78BD21C003; Sun, 14 Feb 2016 19:48:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3FDB621C003 for ; Sun, 14 Feb 2016 19:48:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38EFE33BE2F for ; Sun, 14 Feb 2016 19:48:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9A8E150 for ; Sun, 14 Feb 2016 19:48:00 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1455479247.f16b2c2fd7ef413e13510d9ab7c33b296b3fadcd.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/cpio/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/cpio/cpio-2.12.ebuild X-VCS-Directories: app-arch/cpio/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: f16b2c2fd7ef413e13510d9ab7c33b296b3fadcd X-VCS-Branch: master Date: Sun, 14 Feb 2016 19:48:00 +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: d96526a2-1cf7-4bbe-93ee-168206215d42 X-Archives-Hash: d9d69271054e31e80070222ea6cbfa71 commit: f16b2c2fd7ef413e13510d9ab7c33b296b3fadcd Author: Mike Frysinger gentoo org> AuthorDate: Sun Feb 14 19:45:02 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sun Feb 14 19:47:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f16b2c2f app-arch/cpio: drop autotools usage Looks like a copy & paste holdover from the previous ebuild. app-arch/cpio/cpio-2.12.ebuild | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/app-arch/cpio/cpio-2.12.ebuild b/app-arch/cpio/cpio-2.12.ebuild index 559b65b..3f1baaa 100644 --- a/app-arch/cpio/cpio-2.12.ebuild +++ b/app-arch/cpio/cpio-2.12.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI="5" -inherit autotools eutils +inherit eutils DESCRIPTION="A file archival tool which can also read and write tar files" HOMEPAGE="https://www.gnu.org/software/cpio/cpio.html" @@ -17,7 +17,6 @@ IUSE="nls" src_prepare() { epatch "${FILESDIR}"/${PN}-2.12-non-gnu-compilers.patch #275295 - eautoreconf } src_configure() { @@ -26,7 +25,3 @@ src_configure() { --bindir="${EPREFIX}"/bin \ --with-rmt="${EPREFIX}"/usr/sbin/rmt } - -src_install() { - default -}