app-crypt/tpm2-tss: Remove old
authorSalah Coronya <salah.coronya@gmail.com>
Fri, 28 Feb 2020 04:06:09 +0000 (22:06 -0600)
committerJoonas Niilola <juippis@gentoo.org>
Wed, 4 Mar 2020 08:09:13 +0000 (10:09 +0200)
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Salah Coronya <salah.coronya@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14817
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
app-crypt/tpm2-tss/Manifest
app-crypt/tpm2-tss/tpm2-tss-2.3.2.ebuild [deleted file]

index f5165face4bb6c13d8ea9dc5bd2ee3db42dadb1a..b3e97a6392184624943b8a31066c693b21fb87bd 100644 (file)
@@ -1,3 +1,2 @@
 DIST tpm2-tss-2.2.3.tar.gz 912179 BLAKE2B 36b2a462512822dccb3adab605ea9922132f027455a1d2895b6735f6200fe44f08288477c99afd0f6c06b4bff3090104b6412b12ea4a518888cf756fb8ee53c4 SHA512 68087cbf2b7acc33788e90b3825bf2c91faa65cfc04b576790634c88876a8a6930d6943f83b7cf0858e37e5e7307703d0c975b9fc0b0ad1d87f66c74b65bd411
-DIST tpm2-tss-2.3.2.tar.gz 1087241 BLAKE2B cccefc0635ba141b2e54025da064e6328b3c4c74b4b11a25f2230e0e499e235eea67f6df8d1a6cb011c53ce23978827cb4c633e631540bfca88b85d6c8762ed7 SHA512 7b679b54f3478c3adee5b6c3135cbe491ffd9f4712991f465edbd6c7d2831e5f1537038ec36f288e9545c719d5d167b61116c924cf5d816220615d0b58a1d436
 DIST tpm2-tss-2.3.3.tar.gz 1171185 BLAKE2B de88d3301bf05239ac9644b4d0e8f257f483bd7a8196ba957a68da9f47cd88ca47422fded5fa8939ccb3bcdf4b39c1dd363c65b9e675f3e03021fb12ec723117 SHA512 df83908508fc8add8ca1aaf7144bcf369f13797f7e5d39fe29654d82e2de2cddf324cd06cb3154318ef767d706d863a7781d98c7b29a90945f081a54594128e5
diff --git a/app-crypt/tpm2-tss/tpm2-tss-2.3.2.ebuild b/app-crypt/tpm2-tss/tpm2-tss-2.3.2.ebuild
deleted file mode 100644 (file)
index 0a32297..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info udev
-
-DESCRIPTION="TCG Trusted Platform Module 2.0 Software Stack"
-HOMEPAGE="https://github.com/tpm2-software/tpm2-tss"
-SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/${PV}/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0/0"     # sublot is libtss2-sys number
-KEYWORDS="~amd64"
-IUSE="doc +gcrypt openssl static-libs test"
-
-RESTRICT="!test? ( test )"
-
-REQUIRED_USE="
-       gcrypt? ( !openssl )
-       openssl? ( !gcrypt )
-       || ( gcrypt openssl )"
-
-RDEPEND="acct-group/tss
-        acct-user/tss
-        gcrypt? ( dev-libs/libgcrypt:0= )
-        openssl? ( dev-libs/openssl:0= )"
-DEPEND="${RDEPEND}
-       test? ( dev-util/cmocka )"
-BDEPEND="virtual/pkgconfig
-       doc? ( app-doc/doxygen )"
-
-pkg_setup() {
-       local CONFIG_CHECK=" \
-               ~TCG_TPM
-       "
-       linux-info_pkg_setup
-       kernel_is ge 4 12 0 || ewarn "At least kernel 4.12.0 is required"
-}
-
-src_configure() {
-       econf \
-               $(use_enable doc doxygen-doc) \
-               $(use_enable static-libs static) \
-               $(use_enable test unit) \
-               --disable-defaultflags \
-               --disable-weakcrypto \
-               --with-crypto="$(usex gcrypt gcrypt ossl)" \
-               --with-udevrulesdir="$(get_udevdir)/rules.d" \
-               --with-udevrulesprefix=60-
-}
-
-src_install() {
-       default
-       find "${D}" -name '*.la' -delete || die
-}