commit:     f242b23d0183d88c96c0546f8628312ce4335e6e
Author:     Christopher Byrne <salah.coronya <AT> gmail <DOT> com>
AuthorDate: Tue Oct  1 23:07:38 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct  2 01:21:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f242b23d

app-crypt/tpm2-tools: drop 5.5

Signed-off-by: Christopher Byrne <salah.coronya <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-crypt/tpm2-tools/Manifest              |  1 -
 app-crypt/tpm2-tools/tpm2-tools-5.5.ebuild | 66 ------------------------------
 2 files changed, 67 deletions(-)

diff --git a/app-crypt/tpm2-tools/Manifest b/app-crypt/tpm2-tools/Manifest
index de6dabd7afff..bfd53a735d4b 100644
--- a/app-crypt/tpm2-tools/Manifest
+++ b/app-crypt/tpm2-tools/Manifest
@@ -1,4 +1,3 @@
-DIST tpm2-tools-5.5.tar.gz 1241390 BLAKE2B 
2225f9e0835988351f84ed06f914616e25fd65bacaa93b51d0bb04185314efb9a6f60eb3539b250f54b2c2ba590f1b76594df3e625e45c8d37e38d13371bea26
 SHA512 
24f72a3e9840d531d900e96771a863baae1c71a76fcad0fda8020dff06acd8e3b65b86401ace21f034766403caf9ae97ce710ff6013bb7ed25657a6ecf325470
 DIST 
tpm2-tools-5.6-tpm2_eventlog-Create-raw-and-pretty-print-format-for.patch.xz 
47916 BLAKE2B 
1bbc84f58ad46507417c89be1b4ce2450fb33cf3abe8f080c23890d96be85379f135ef1dbf4b580e1a386fa6d5ebc4fbaab351b5238bbf1011bb97b0f49a847b
 SHA512 
3db0daa39a8dc756d7cb25e3673149dc3eeafd7410f2c6537464431b501e3704a886d9b7a9acd71440d6d419649dd471fd6f9247d593c89a30b05774a8d1b3de
 DIST tpm2-tools-5.6.1.tar.gz 1255474 BLAKE2B 
7fda0084283bbd592c3323605f598ebb77ba267ebb900e62b2eff2742257378d95f99b48aab090f80438a6c86f168e1863f9350c18571a23e17eea90a1b9bdd9
 SHA512 
7a5903db0578a1364c44ca8ac3672c3cae745e2b0ab66ddf6a91fdb75146441af32dfe4ccad6825bea343fea74bed97f9e45bf752594ee56f32e4cb7be2bed33
 DIST tpm2-tools-5.6.tar.gz 1266731 BLAKE2B 
fe88722c26d62128cd6dfbdd8ef2568656a75fe27b1443fed28387d0db1f50b7d0651819d34dfa98acde785b4cfb4e7c11420b110bb5333ed2bb6b67cdd4fc70
 SHA512 
14216f29ed3ecca5fbe356ed3744c8b6b25a62ff11b2aed596d11101328c8bfd29a02f6ca5a218f9a4477a5e9648c50f0ae96e71de0b4ff5ea1f98ebeeb73cd7

diff --git a/app-crypt/tpm2-tools/tpm2-tools-5.5.ebuild 
b/app-crypt/tpm2-tools/tpm2-tools-5.5.ebuild
deleted file mode 100644
index 866f1e799d24..000000000000
--- a/app-crypt/tpm2-tools/tpm2-tools-5.5.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-inherit bash-completion-r1 flag-o-matic python-any-r1
-
-DESCRIPTION="Tools for the TPM 2.0 TSS"
-HOMEPAGE="https://github.com/tpm2-software/tpm2-tools";
-SRC_URI="https://github.com/tpm2-software/tpm2-tools/releases/download/${PV}/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc64 x86"
-IUSE="+fapi test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=app-crypt/tpm2-tss-3.0.1:=[fapi?]
-       dev-libs/openssl:=
-       net-misc/curl
-       sys-libs/efivar:="
-DEPEND="${RDEPEND}
-       test? (
-               app-crypt/swtpm
-               app-crypt/tpm2-abrmd
-               dev-util/cmocka
-       )"
-BDEPEND="virtual/pkgconfig
-       dev-build/autoconf-archive
-       test? (
-               app-editors/vim-core
-               dev-tcltk/expect
-               $(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]')
-       )
-       ${PYTHON_DEPS}"
-
-python_check_deps() {
-       python_has_version "dev-python/pyyaml[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-       use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-       # tests fail with LTO enabbled. See bug 865275 and 865277
-       filter-lto
-       econf \
-               $(use_enable fapi) \
-               $(use_enable test unit) \
-               --with-bashcompdir=$(get_bashcompdir) \
-               --enable-hardening
-}
-
-src_install() {
-       default
-       mv "${ED}"/$(get_bashcompdir)/tpm2{_completion.bash,} || die
-       local utils=( "${ED}"/usr/bin/tpm2_* )
-       utils=("${utils[@]##*/}")
-       # these utiltites don't have bash completions
-       local nobashcomp=( tpm2_encodeobject tpm2_getpolicydigest 
tpm2_sessionconfig )
-       mapfile -d $'\0' -t utils < <(printf '%s\0' "${utils[@]}" | grep -Ezvw 
"${nobashcomp[@]/#/-e}")
-       bashcomp_alias tpm2 "${utils[@]}"
-}

Reply via email to