diff options
author | David Seifert <soap@gentoo.org> | 2023-09-09 15:16:44 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-09-09 15:16:44 +0200 |
commit | e6d78cbaff7073d02c5738e33707728a931d9a7e (patch) | |
tree | 28cc262e1ec6436eefc7a3ec92e01aead1831e36 /app-crypt/swtpm/swtpm-0.8.0-r2.ebuild | |
parent | app-crypt/tpm2-tools: enable py3.12 (diff) | |
download | gentoo-e6d78cbaff7073d02c5738e33707728a931d9a7e.tar.gz gentoo-e6d78cbaff7073d02c5738e33707728a931d9a7e.tar.bz2 gentoo-e6d78cbaff7073d02c5738e33707728a931d9a7e.zip |
app-crypt/swtpm: drop 0.7.3, 0.8.0-r2
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-crypt/swtpm/swtpm-0.8.0-r2.ebuild')
-rw-r--r-- | app-crypt/swtpm/swtpm-0.8.0-r2.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/app-crypt/swtpm/swtpm-0.8.0-r2.ebuild b/app-crypt/swtpm/swtpm-0.8.0-r2.ebuild deleted file mode 100644 index 4f2d43053f44..000000000000 --- a/app-crypt/swtpm/swtpm-0.8.0-r2.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9,10,11} ) - -inherit autotools python-any-r1 - -DESCRIPTION="Libtpms-based TPM emulator" -HOMEPAGE="https://github.com/stefanberger/swtpm" -SRC_URI="https://github.com/stefanberger/swtpm/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" -IUSE="fuse seccomp test" -RESTRICT="!test? ( test )" - -RDEPEND="fuse? ( - dev-libs/glib:2 - sys-fs/fuse:0 - ) - seccomp? ( sys-libs/libseccomp ) - dev-libs/libtasn1:= - acct-group/tss - acct-user/tss - dev-libs/openssl:0= - dev-libs/json-glib - dev-libs/libtpms" - -DEPEND="${RDEPEND} - test? ( - net-misc/socat - dev-tcltk/expect - )" - -BDEPEND="${PYTHON_DEPS}" - -PATCHES=( - "${FILESDIR}/${PN}-0.6.0-fix-localca-path.patch" - "${FILESDIR}/${PN}-0.5.0-build-sys-Remove-WError.patch" - "${FILESDIR}/${PN}-0.7.2-Conditionalize-test-dependencies.patch" -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - --with-openssl \ - --without-selinux \ - $(use_with fuse cuse) \ - $(use_with seccomp) \ - $(use_enable test) -} - -src_install() { - default - fowners -R tss:root /var/lib/swtpm-localca - fperms 750 /var/lib/swtpm-localca - keepdir /var/lib/swtpm-localca - find "${D}" -name '*.la' -delete || die -} |