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 1D340139085 for ; Sat, 4 Feb 2017 01:32:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E63421C0A5; Sat, 4 Feb 2017 01:31:59 +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 7BADC21C0A5 for ; Sat, 4 Feb 2017 01:31:49 +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 C80AA3413AA for ; Sat, 4 Feb 2017 01:31:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC5413DD0 for ; Sat, 4 Feb 2017 01:31:40 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1486171852.505cee87fb75945d9cda75ddbdb3a14937e8e522.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/scute/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/scute/scute-1.4.0.ebuild X-VCS-Directories: app-crypt/scute/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 505cee87fb75945d9cda75ddbdb3a14937e8e522 X-VCS-Branch: master Date: Sat, 4 Feb 2017 01:31:40 +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: f61f41d8-94d9-4301-a1ae-bff2ba1bec66 X-Archives-Hash: 04ee502daa0ce7cb2c838478aa5ffe98 commit: 505cee87fb75945d9cda75ddbdb3a14937e8e522 Author: Alon Bar-Lev gentoo org> AuthorDate: Sat Feb 4 00:32:59 2017 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sat Feb 4 01:30:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=505cee87 app-crypt/scute: eapi bump Package-Manager: portage-2.3.3 app-crypt/scute/scute-1.4.0.ebuild | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/app-crypt/scute/scute-1.4.0.ebuild b/app-crypt/scute/scute-1.4.0.ebuild index edaf929..85dd003 100644 --- a/app-crypt/scute/scute-1.4.0.ebuild +++ b/app-crypt/scute/scute-1.4.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=6 -inherit autotools eutils libtool multilib +inherit autotools eutils libtool DESCRIPTION="A PKCS #11 module for OpenPGP smartcards" HOMEPAGE="http://www.scute.org/" @@ -26,14 +26,17 @@ DEPEND=" >=app-crypt/gnupg-2.0.17-r1[smartcard]" RDEPEND="${DEPEND}" -src_prepare() { +PATCHES=( # We need no ABI versioning, reduce the number of symlinks installed - epatch "${FILESDIR}"/scute-1.2.0-noversion.patch + "${FILESDIR}/scute-1.2.0-noversion.patch" + # Don't build tests during src_compile. - epatch "${FILESDIR}"/scute-1.4.0-tests.patch + "${FILESDIR}/scute-1.4.0-tests.patch" +) +src_prepare() { + default eautoreconf - elibtoolize } src_configure() { @@ -44,7 +47,6 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - find "${D}" -name '*.la' -delete - dodoc AUTHORS ChangeLog NEWS README TODO + default + prune_libtool_files --modules }