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 5EDA51382C5 for ; Fri, 19 Jun 2020 23:47:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D6A9E08CA; Fri, 19 Jun 2020 23:47:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6644EE08CA for ; Fri, 19 Jun 2020 23:47:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 59FF134F182 for ; Fri, 19 Jun 2020 23:47:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D80D0175 for ; Fri, 19 Jun 2020 23:47:20 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1592610432.df6979f97a2c9440834e02118716b0d1b523f808.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm2-totp/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/tpm2-totp/tpm2-totp-0.2.1-r1.ebuild X-VCS-Directories: app-crypt/tpm2-totp/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: df6979f97a2c9440834e02118716b0d1b523f808 X-VCS-Branch: master Date: Fri, 19 Jun 2020 23:47:20 +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: e363d217-e224-46e3-88e2-e4a4016c01dc X-Archives-Hash: 9d81276a7c431481bcd5938f711dec51 commit: df6979f97a2c9440834e02118716b0d1b523f808 Author: Salah Coronya gmail com> AuthorDate: Sun May 31 20:48:19 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Jun 19 23:47:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6979f9 app-crypt/tpm2-totp: Don't install static libs Closes: https://bugs.gentoo.org/726494 Closes: https://github.com/gentoo/gentoo/pull/16037 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Salah Coronya gmail.com> Signed-off-by: Conrad Kostecki gentoo.org> app-crypt/tpm2-totp/tpm2-totp-0.2.1-r1.ebuild | 35 +++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/app-crypt/tpm2-totp/tpm2-totp-0.2.1-r1.ebuild b/app-crypt/tpm2-totp/tpm2-totp-0.2.1-r1.ebuild new file mode 100644 index 00000000000..bafbd71fdc7 --- /dev/null +++ b/app-crypt/tpm2-totp/tpm2-totp-0.2.1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Attest the trustworthiness of a device against a human using time-based OTP" +HOMEPAGE="https://github.com/tpm2-software/tpm2-totp" +SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=">=app-crypt/tpm2-tss-2.0 + media-gfx/qrencode:=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --disable-static + --disable-defaultflags +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}