diff options
author | Salah Coronya <salah.coronya@gmail.com> | 2020-11-22 17:45:05 -0600 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-11-24 15:26:09 +0200 |
commit | 3835b89d923a7756b4adc03d238c12a72c1dcfb8 (patch) | |
tree | 33f6c93611a29818b56e466d68ab91301eaa09ea /app-crypt | |
parent | www-apps/gitea: Remove old ebuild. (diff) | |
download | gentoo-3835b89d923a7756b4adc03d238c12a72c1dcfb8.tar.gz gentoo-3835b89d923a7756b4adc03d238c12a72c1dcfb8.tar.bz2 gentoo-3835b89d923a7756b4adc03d238c12a72c1dcfb8.zip |
app-crypt/swtpm: Add missing python_setup call
Closes: https://bugs.gentoo.org/756058
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Salah Coronya <salah.coronya@gmail.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/swtpm/swtpm-0.5.1-r1.ebuild | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/app-crypt/swtpm/swtpm-0.5.1-r1.ebuild b/app-crypt/swtpm/swtpm-0.5.1-r1.ebuild new file mode 100644 index 000000000000..1e26f7a19575 --- /dev/null +++ b/app-crypt/swtpm/swtpm-0.5.1-r1.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit autotools distutils-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" +IUSE="fuse gnutls libressl seccomp test" +RESTRICT="!test? ( test )" + +COMMON_DEPEND=" + fuse? ( + dev-libs/glib:2 + sys-fs/fuse:0 + ) + gnutls? ( + dev-libs/libtasn1:= + >=net-libs/gnutls-3.1.0[tools] + ) + !libressl? ( + dev-libs/openssl:0= + dev-libs/libtpms[-libressl] + ) + libressl? ( + dev-libs/libressl:0= + dev-libs/libtpms[libressl] + ) + seccomp? ( sys-libs/libseccomp ) +" + +DEPEND="${COMMON_DEPEND} + test? ( + net-misc/socat + dev-tcltk/expect + ) +" + +RDEPEND="${COMMON_DEPEND} + acct-group/tss + acct-user/tss + dev-python/cryptography[${PYTHON_USEDEP}] +" + +PATCHES=( + "${FILESDIR}/${PN}-0.5.0-fix-localca-path.patch" + "${FILESDIR}/${PN}-0.5.0-build-sys-Remove-WError.patch" +) + +src_prepare() { + use test || eapply "${FILESDIR}/${PN}-0.5.0-disable-test-dependencies.patch" + python_setup + default + eautoreconf +} + +src_configure() { + econf \ + --disable-static \ + --with-openssl \ + --without-selinux \ + $(use_with fuse cuse) \ + $(use_with gnutls) \ + $(use_with seccomp) +} + +src_compile() { + # We want the default src_compile, not the version distutils-r1 exports + default +} + +src_install() { + default + python_foreach_impl python_optimize + 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 +} + +src_test() { + # We want the default src_test, not the version distutils-r1 exports + default +} |