From ee8e3f9449e8642d2d8d80ae62f96353892977ae Mon Sep 17 00:00:00 2001 From: Salah Coronya Date: Thu, 14 May 2020 21:53:24 -0500 Subject: app-crypt/tpm2-tss-engine: Bump to 1.1.0_rc0 Closes: https://bugs.gentoo.org/723108 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Salah Coronya Signed-off-by: Conrad Kostecki --- app-crypt/tpm2-tss-engine/Manifest | 1 + .../tpm2-tss-engine-1.1.0_rc0.ebuild | 45 ++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 app-crypt/tpm2-tss-engine/tpm2-tss-engine-1.1.0_rc0.ebuild (limited to 'app-crypt/tpm2-tss-engine') diff --git a/app-crypt/tpm2-tss-engine/Manifest b/app-crypt/tpm2-tss-engine/Manifest index 1b110fcb89d7..753f7dd092bc 100644 --- a/app-crypt/tpm2-tss-engine/Manifest +++ b/app-crypt/tpm2-tss-engine/Manifest @@ -1 +1,2 @@ DIST tpm2-tss-engine-1.0.1.tar.gz 382715 BLAKE2B b33b91bf892509f8ed88bea1ba9611f06c9342726932baebbe918fcd4208f6c4b07710db666261b7676b90feb796746552804553e79ef817c02587504d266f44 SHA512 106fc6aadf0b4b27c3b38be596356aa59b4b76ec1602e8c5564aec6b4be7e2b5d6077006ee13d41e58402255b879aadaa966c758b5b326ae32742007ce2ef238 +DIST tpm2-tss-engine-1.1.0_rc0.tar.gz 37583 BLAKE2B 634ebfa23452c32a4643f735d580df2d8fa07ba4c301804d877d1c75cf608ea4ddf634081c16ac71df3e163bea89931c8c91c188834fa5a7d2bbdedb0b39d952 SHA512 967eca63c58218f461b9e2b2a8042229794da6af7b759081f4c7ca1fbfcf16a1dc9a323f87c1383dc894614552babe1db7bc9c69849bd34526317b62879255a2 diff --git a/app-crypt/tpm2-tss-engine/tpm2-tss-engine-1.1.0_rc0.ebuild b/app-crypt/tpm2-tss-engine/tpm2-tss-engine-1.1.0_rc0.ebuild new file mode 100644 index 000000000000..48317f9f77c1 --- /dev/null +++ b/app-crypt/tpm2-tss-engine/tpm2-tss-engine-1.1.0_rc0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools bash-completion-r1 + +MY_PV="${PV/_/-}" + +DESCRIPTION="OpenSSL Engine for TPM2 devices" +HOMEPAGE="https://github.com/tpm2-software/tpm2-tools" +SRC_URI="https://github.com/tpm2-software/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="app-crypt/tpm2-tss + dev-libs/openssl:0=" +DEPEND="${RDEPEND} + test? ( dev-util/cmocka )" +BDEPEND="sys-devel/autoconf-archive + virtual/pkgconfig" +S="${WORKDIR}/${PN}-${MY_PV}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable test unit) \ + --disable-defaultflags \ + --disable-static \ + --with-completionsdir="$(get_bashcompdir)" + +} + +src_install () { + default + dobashcomp bash-completion/* +} -- cgit v1.2.3-65-gdbad