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 9C4F51382C5 for ; Wed, 20 Jan 2021 14:14:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5B55E0857; Wed, 20 Jan 2021 14:13:59 +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 9D7ADE084A for ; Wed, 20 Jan 2021 14:13:59 +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 D2C573410BA for ; Wed, 20 Jan 2021 14:13:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DAEB4AF for ; Wed, 20 Jan 2021 14:13:53 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1611152021.7f2b10bf493381a3a4ab5d8ac9a8c7681e88950a.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm2-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/tpm2-tools/tpm2-tools-5.0.ebuild X-VCS-Directories: app-crypt/tpm2-tools/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 7f2b10bf493381a3a4ab5d8ac9a8c7681e88950a X-VCS-Branch: master Date: Wed, 20 Jan 2021 14:13:53 +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: 4c2a1882-0c40-48a1-84af-ec3f292ea359 X-Archives-Hash: 92cf5fb237eb2af5e61bb4210098ca98 commit: 7f2b10bf493381a3a4ab5d8ac9a8c7681e88950a Author: Salah Coronya gmail com> AuthorDate: Sat Dec 19 02:57:06 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Jan 20 14:13:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f2b10bf app-crypt/tpm2-tools: Remove old Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Salah Coronya gmail.com> Closes: https://github.com/gentoo/gentoo/pull/18721 Signed-off-by: Joonas Niilola gentoo.org> app-crypt/tpm2-tools/tpm2-tools-5.0.ebuild | 42 ------------------------------ 1 file changed, 42 deletions(-) diff --git a/app-crypt/tpm2-tools/tpm2-tools-5.0.ebuild b/app-crypt/tpm2-tools/tpm2-tools-5.0.ebuild deleted file mode 100644 index 3252b0db14e..00000000000 --- a/app-crypt/tpm2-tools/tpm2-tools-5.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Tools for the TPM 2.0 TSS" -HOMEPAGE="https://github.com/tpm2-software/tpm2-tools" -SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/${PV}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+fapi libressl" - -# Integration test are now run as part of the testing suite, which will fail -# because none of the supported TPM emulators are in Portage. In a future -# version of tpm2-tools, swtpm will be supported and the tests can be run. -RESTRICT="test" - -RDEPEND="net-misc/curl:= - >=app-crypt/tpm2-tss-3.0.1:=[fapi?] - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" -PATCHES=( - "${FILESDIR}/${PN}-4.2.1-libressl.patch" - "${FILESDIR}/${PN}-4.3.0-Remove-WError.patch" -) - -src_prepare() { - eautoreconf - default -} - -src_configure() { - econf \ - $(use_enable fapi) \ - $(use_enable !libressl hardening) -}