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 46E731382C5 for ; Sat, 20 Mar 2021 14:17:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79DEDE0817; Sat, 20 Mar 2021 14:17:34 +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 5BE92E0817 for ; Sat, 20 Mar 2021 14:17:34 +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 B42833409F1 for ; Sat, 20 Mar 2021 14:17:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB27A46C for ; Sat, 20 Mar 2021 14:17:30 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1616249831.28b8b5944c4ffaaca1b2ac51d78fb83e80460002.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/libyubikey/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/libyubikey/libyubikey-1.13.ebuild X-VCS-Directories: sys-auth/libyubikey/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 28b8b5944c4ffaaca1b2ac51d78fb83e80460002 X-VCS-Branch: master Date: Sat, 20 Mar 2021 14:17:30 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 556a3a20-ef0d-412c-8a24-1dbd8192afe7 X-Archives-Hash: 0b1f581f38cd17d5eb3fd177838b5863 commit: 28b8b5944c4ffaaca1b2ac51d78fb83e80460002 Author: David Seifert gentoo org> AuthorDate: Sat Mar 20 14:17:11 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Mar 20 14:17:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28b8b594 sys-auth/libyubikey: Port to EAPI 7 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> sys-auth/libyubikey/libyubikey-1.13.ebuild | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/sys-auth/libyubikey/libyubikey-1.13.ebuild b/sys-auth/libyubikey/libyubikey-1.13.ebuild index 77e3e6329d8..6fbe9d92318 100644 --- a/sys-auth/libyubikey/libyubikey-1.13.ebuild +++ b/sys-auth/libyubikey/libyubikey-1.13.ebuild @@ -1,18 +1,23 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 - -inherit eutils autotools-utils +EAPI=7 DESCRIPTION="Yubico C low-level library" HOMEPAGE="https://github.com/Yubico/yubico-c" -#http://opensource.yubico.com/yubico-c/releases.html SRC_URI="http://opensource.yubico.com/yubico-c/releases/${P}.tar.gz" -SLOT="0" LICENSE="BSD-2" +SLOT="0" KEYWORDS="amd64 ~arm64 ~ppc64 x86" -IUSE="static-libs" -DOCS=( AUTHORS ChangeLog NEWS README THANKS ) +src_configure() { + econf --disable-static +} + +src_install() { + default + + # no static archives + find "${ED}" -name '*.la' -delete || die +}