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 0461C139694 for ; Thu, 16 Feb 2017 23:45:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3831521C090; Thu, 16 Feb 2017 23:45:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1808B21C090 for ; Thu, 16 Feb 2017 23:45:05 +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 1C5DA340FC1 for ; Thu, 16 Feb 2017 23:45:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CB4A4A5A for ; Thu, 16 Feb 2017 23:45:02 +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: <1487288688.36d10d69731092f1f0b827e51b2d2aff9091a2ff.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pixz/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/pixz/pixz-1.0.6.ebuild app-arch/pixz/pixz-9999.ebuild X-VCS-Directories: app-arch/pixz/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 36d10d69731092f1f0b827e51b2d2aff9091a2ff X-VCS-Branch: master Date: Thu, 16 Feb 2017 23:45:02 +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: dc9a0b64-f649-464b-9bab-62ecdb1cd3a8 X-Archives-Hash: 19fdd32f44f14ce6f7c7c53a2ad95874 commit: 36d10d69731092f1f0b827e51b2d2aff9091a2ff Author: Mike Frysinger gentoo org> AuthorDate: Thu Feb 16 23:11:41 2017 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Feb 16 23:44:48 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36d10d69 app-arch/pixz: use default src_{compile,install} targets This is a standard autotools package, so use the default compile/install steps from the PM. These ad-hoc funcs look like leftovers from the much older versions. app-arch/pixz/pixz-1.0.6.ebuild | 12 +----------- app-arch/pixz/pixz-9999.ebuild | 12 +----------- 2 files changed, 2 insertions(+), 22 deletions(-) diff --git a/app-arch/pixz/pixz-1.0.6.ebuild b/app-arch/pixz/pixz-1.0.6.ebuild index 7e31c748a8..7caca229a6 100644 --- a/app-arch/pixz/pixz-1.0.6.ebuild +++ b/app-arch/pixz/pixz-1.0.6.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit toolchain-funcs flag-o-matic autotools +inherit flag-o-matic autotools DESCRIPTION="Parallel Indexed XZ compressor" HOMEPAGE="https://github.com/vasi/pixz" @@ -41,13 +41,3 @@ src_configure() { export ac_cv_file_src_pixz_1=$([[ -f src/pixz.1 ]] && echo yes || echo no) econf } - -src_compile() { - emake CC="$(tc-getCC)" OPT="" -} - -src_install() { - dobin src/pixz - doman src/pixz.1 - dodoc NEWS README.md TODO -} diff --git a/app-arch/pixz/pixz-9999.ebuild b/app-arch/pixz/pixz-9999.ebuild index 7e31c748a8..7caca229a6 100644 --- a/app-arch/pixz/pixz-9999.ebuild +++ b/app-arch/pixz/pixz-9999.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit toolchain-funcs flag-o-matic autotools +inherit flag-o-matic autotools DESCRIPTION="Parallel Indexed XZ compressor" HOMEPAGE="https://github.com/vasi/pixz" @@ -41,13 +41,3 @@ src_configure() { export ac_cv_file_src_pixz_1=$([[ -f src/pixz.1 ]] && echo yes || echo no) econf } - -src_compile() { - emake CC="$(tc-getCC)" OPT="" -} - -src_install() { - dobin src/pixz - doman src/pixz.1 - dodoc NEWS README.md TODO -}