diff options
author | 2021-05-03 16:58:45 -0500 | |
---|---|---|
committer | 2021-05-19 09:47:54 +0300 | |
commit | f070c598b8a1795f8dd388d585b5f85d27bdc8f9 (patch) | |
tree | 909ef441f351bcec1b857db699d90a37f084cb57 /app-crypt/tpm2-pkcs11 | |
parent | app-crypt/tpm2-pkcs11: Bump to 1.6.0 (diff) | |
download | gentoo-f070c598b8a1795f8dd388d585b5f85d27bdc8f9.tar.gz gentoo-f070c598b8a1795f8dd388d585b5f85d27bdc8f9.tar.bz2 gentoo-f070c598b8a1795f8dd388d585b5f85d27bdc8f9.zip |
app-crypt/tpm2-pkcs11: Remove old
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Christopher Byrne <salah.coronya@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/20676
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-crypt/tpm2-pkcs11')
-rw-r--r-- | app-crypt/tpm2-pkcs11/Manifest | 1 | ||||
-rw-r--r-- | app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.5.0.ebuild | 68 |
2 files changed, 0 insertions, 69 deletions
diff --git a/app-crypt/tpm2-pkcs11/Manifest b/app-crypt/tpm2-pkcs11/Manifest index f06cfe3129fa..24117b2930d9 100644 --- a/app-crypt/tpm2-pkcs11/Manifest +++ b/app-crypt/tpm2-pkcs11/Manifest @@ -1,2 +1 @@ -DIST tpm2-pkcs11-1.5.0.tar.gz 1355121 BLAKE2B 9c00deb62bf30e22ef346bcdf951252913709f6c953f45e68df35cea434e55f79a960fea16aaa46794650c0cceaf979f4250af8cc835e48f34aca5b2306f2685 SHA512 999adf3ea031dfbb0eadefbd6b2c5457bff738bad231efa70218032f851fe5ba466e37bdf47b5bce380c378b97e88b2a76c9b59a264db5c5f380a9ba3cce58a0 DIST tpm2-pkcs11-1.6.0.tar.gz 1370370 BLAKE2B 5dd8c587688a26958e8406366ce14cdadc9d2279f01276037df3895f49f835bd021b96da2c7399881e23527c79c45d25417b57acfb961f934f29d785dacf87f7 SHA512 db94b2194837564fa330ac7cc15a5185258d5d632f033a60fa82a2b3246e046dac29b6dfece19b4e075383e999ac157286c7f18f6c5ab6a98dd01c8e810065ea diff --git a/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.5.0.ebuild b/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.5.0.ebuild deleted file mode 100644 index fc4bbfa9a2f1..000000000000 --- a/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.5.0.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_REQ_USE="sqlite" - -inherit autotools distutils-r1 - -DESCRIPTION="A PKCS#11 interface for TPM2 hardware" -HOMEPAGE="https://tpm2-software.github.io/" -SRC_URI="https://github.com/tpm2-software/tpm2-pkcs11/releases/download/${PV}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64" - -IUSE="fapi" - -# python-pkcs11 is required but not in Portage. python-pkcs11 in turn requires -# aenum which is ALSO not in portage. Futhermore, aenum has a dead homepage. -RESTRICT="test" - -RDEPEND="app-crypt/p11-kit - app-crypt/tpm2-abrmd - app-crypt/tpm2-tools[fapi?] - !fapi? ( app-crypt/tpm2-tss ) - fapi? ( >=app-crypt/tpm2-tss-3.0.1[fapi] ) - dev-db/sqlite:3 - dev-libs/openssl:= - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/pyasn1[${PYTHON_USEDEP}] - dev-python/pyasn1-modules[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] " - -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/autoconf-archive - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${PN}-1.3.2-Remove-WError.patch" -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_enable fapi) -} - -src_compile() { - default - cd "${S}/tools" || die - BUILD_DIR="${S}/tools" python_foreach_impl distutils-r1_python_compile -} - -src_install() { - default - cd "${S}/tools" || die - BUILD_DIR="${S}/tools" python_foreach_impl distutils-r1_python_install - dobin "${S}/tools/tpm2_ptool" - find "${ED}" -name '*.la' -delete || die -} |