From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D023138335 for ; Mon, 13 May 2019 04:17:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69CECE0894; Mon, 13 May 2019 04:17:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4D584E0894 for ; Mon, 13 May 2019 04:17:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF66D34419F for ; Mon, 13 May 2019 04:17:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53FC95D5 for ; Mon, 13 May 2019 04:17:06 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1557721008.f2e386cff1df54fe2d0ecdea5f4a0a3c1f05e779.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild X-VCS-Directories: app-crypt/tpm-tools/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: f2e386cff1df54fe2d0ecdea5f4a0a3c1f05e779 X-VCS-Branch: master Date: Mon, 13 May 2019 04:17:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c2976967-541a-45ce-bb9c-d88b55778c9f X-Archives-Hash: a53300fbf9a427fa0b6d3f0664824dc8 commit: f2e386cff1df54fe2d0ecdea5f4a0a3c1f05e779 Author: Alon Bar-Lev gentoo org> AuthorDate: Mon May 13 04:16:48 2019 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Mon May 13 04:16:48 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2e386cf app-crypt/tpm-tools: cleanup old Signed-off-by: Alon Bar-Lev gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild | 47 ---------------------------- 1 file changed, 47 deletions(-) diff --git a/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild b/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild deleted file mode 100644 index 3be16cf93ed..00000000000 --- a/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic - -DESCRIPTION="TrouSerS' support tools for the Trusted Platform Modules" -HOMEPAGE="http://trousers.sourceforge.net" -SRC_URI="mirror://sourceforge/trousers/${PN}/${P}.tar.gz" - -LICENSE="CPL-1.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~m68k ~s390 ~sh x86" -IUSE="libressl nls pkcs11 debug" - -DEPEND=">=app-crypt/trousers-0.3.0 - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - pkcs11? ( dev-libs/opencryptoki )" -RDEPEND="${DEPEND}" -BDEPEND="nls? ( sys-devel/gettext )" - -S="${WORKDIR}" - -src_prepare() { - default - - sed -i -r \ - -e '/CFLAGS/s/ -m64//' \ - configure.ac || die - - eautoreconf -} - -src_configure() { - append-cppflags $(usex debug -DDEBUG -DNDEBUG) - - econf \ - $(use_enable nls) \ - $(use pkcs11 || echo --disable-pkcs11-support) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}