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 D756E158041 for ; Wed, 8 Sep 2021 06:46:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 616BFE08ED; Wed, 8 Sep 2021 06:46:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 7A25EE08BF for ; Wed, 8 Sep 2021 06:46:18 +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 2ABFE342AFB for ; Wed, 8 Sep 2021 06:46:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96F61BD for ; Wed, 8 Sep 2021 06:46:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1631083564.181bde925ebf9d87ffa07d4fe3e055b112882b2c.sam@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.1.1-r1.ebuild X-VCS-Directories: app-crypt/tpm2-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 181bde925ebf9d87ffa07d4fe3e055b112882b2c X-VCS-Branch: master Date: Wed, 8 Sep 2021 06:46:15 +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: cf804a0c-ce8f-437d-8970-7d1c838dc5c4 X-Archives-Hash: 2d1d7a4a8d2b6af442d692d5406c8814 commit: 181bde925ebf9d87ffa07d4fe3e055b112882b2c Author: Christopher Byrne gmail com> AuthorDate: Wed Sep 8 03:01:35 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 8 06:46:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=181bde92 app-crypt/tpm2-tools: Remove old Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Christopher Byrne gmail.com> Closes: https://github.com/gentoo/gentoo/pull/22241 Signed-off-by: Sam James gentoo.org> app-crypt/tpm2-tools/tpm2-tools-5.1.1-r1.ebuild | 70 ------------------------- 1 file changed, 70 deletions(-) diff --git a/app-crypt/tpm2-tools/tpm2-tools-5.1.1-r1.ebuild b/app-crypt/tpm2-tools/tpm2-tools-5.1.1-r1.ebuild deleted file mode 100644 index fb7168bfb2f..00000000000 --- a/app-crypt/tpm2-tools/tpm2-tools-5.1.1-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8,9} ) -inherit autotools bash-completion-r1 python-single-r1 - -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 test" - -RDEPEND="net-misc/curl:= - >=app-crypt/tpm2-tss-3.0.1:=[fapi?] - dev-libs/openssl:= - ${PYTHON_DEPS}" -DEPEND="${RDEPEND} - test? ( - app-crypt/swtpm - app-crypt/tpm2-abrmd - app-editors/vim-core - dev-tcltk/expect - dev-util/cmocka - dev-python/pyyaml - )" -BDEPEND="virtual/pkgconfig - sys-devel/autoconf-archive" - -RESTRICT="!test? ( test )" -REQUIRED_USE=" ${PYTHON_REQUIRED_USE} " - -# One of the tests fails without this patch. See -# https://github.com/tpm2-software/tpm2-tools/issues/2767 -PATCHES=( - "${FILESDIR}/${PN}-5.1.1-fix-tpm-checkquote.patch" -) - -src_prepare() { - sed -i \ - "s/m4_esyscmd_s(\[git describe --tags --always --dirty\])/${PV}/" \ - "${S}/configure.ac" || die - "${S}/scripts/utils/man_to_bashcompletion.sh" - eautoreconf - default -} - -src_configure() { - econf \ - $(use_enable fapi) \ - $(use_enable test unit) \ - --with-bashcompdir=$(get_bashcompdir) \ - --enable-hardening -} - -src_install() { - default - - mv "${D}/$(get_bashcompdir)/tpm2_completion.bash" \ - "${D}/$(get_bashcompdir)/tpm2" || die - for B in "${D}"/usr/bin/tpm2_* - do - TPM2_UTILS="${TPM2_UTILS} $(basename ${B})" - done - bashcomp_alias tpm2 ${TPM2_UTILS} -}