summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Byrne <salah.coronya@gmail.com>2022-04-23 14:34:19 -0500
committerSam James <sam@gentoo.org>2022-04-23 22:33:53 +0100
commit221ac1ce9e40b643c08860330b4764ceca457c49 (patch)
tree0dab9b13fbfd4bd55d2b78e8e8087c507519fd36 /app-crypt/tpm2-totp/tpm2-totp-0.3.0.ebuild
parentapp-crypt/tpm2-tools: Move to python-any-r1 (diff)
downloadgentoo-221ac1ce9e40b643c08860330b4764ceca457c49.tar.gz
gentoo-221ac1ce9e40b643c08860330b4764ceca457c49.tar.bz2
gentoo-221ac1ce9e40b643c08860330b4764ceca457c49.zip
app-crypt/tpm2-totp: Add sublot operator to app-crypt/tpm2-tss dep
Signed-off-by: Christopher Byrne <salah.coronya@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt/tpm2-totp/tpm2-totp-0.3.0.ebuild')
-rw-r--r--app-crypt/tpm2-totp/tpm2-totp-0.3.0.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/app-crypt/tpm2-totp/tpm2-totp-0.3.0.ebuild b/app-crypt/tpm2-totp/tpm2-totp-0.3.0.ebuild
deleted file mode 100644
index 67e6798a5655..000000000000
--- a/app-crypt/tpm2-totp/tpm2-totp-0.3.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Attest the trustworthiness of a device against a human using time-based OTP"
-HOMEPAGE="https://github.com/tpm2-software/tpm2-totp"
-SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/v${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="plymouth test"
-
-REQUIRED_USE="test? ( plymouth )"
-
-RDEPEND="app-crypt/tpm2-tss
- media-gfx/qrencode
- plymouth? ( sys-boot/plymouth )"
-DEPEND="${RDEPEND}
- test? (
- app-crypt/swtpm
- app-crypt/tpm2-tools
- >=app-crypt/tpm2-tss-3.0.0
- sys-apps/fakeroot
- sys-auth/oath-toolkit
- )"
-
-BDEPEND="virtual/pkgconfig"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=(
- "${FILESDIR}/${P}-Remove-bogus-value-from-Makefile.am"
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-static \
- --disable-defaultflags \
- $(use_enable plymouth) \
- $(use_enable test integration)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}