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 A17B7138334 for ; Fri, 23 Nov 2018 07:51:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71A0DE07F9; Fri, 23 Nov 2018 07:51:57 +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 3DE96E07F9 for ; Fri, 23 Nov 2018 07:51:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B2CA4335CE7 for ; Fri, 23 Nov 2018 07:51:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49D5C442 for ; Fri, 23 Nov 2018 07:51:53 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1542959483.2084875d5ddd01a0efb61a5d18aff9bb049ff6d5.dev-zero@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/libcacard/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/libcacard/libcacard-2.6.0.ebuild X-VCS-Directories: app-emulation/libcacard/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: 2084875d5ddd01a0efb61a5d18aff9bb049ff6d5 X-VCS-Branch: master Date: Fri, 23 Nov 2018 07:51:53 +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-Archives-Salt: 5935f13b-8eaf-4900-a1e3-7138b02af079 X-Archives-Hash: 54bc74199153a83952593cc729194cc3 commit: 2084875d5ddd01a0efb61a5d18aff9bb049ff6d5 Author: Tiziano Müller gentoo org> AuthorDate: Fri Nov 23 07:49:56 2018 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Fri Nov 23 07:51:23 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2084875d app-emulation/libcacard: fix test failures by reducing the test suite for now to avoid pulling in SoftHSMv2 Closes: https://bugs.gentoo.org/663704 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Tiziano Müller gentoo.org> app-emulation/libcacard/libcacard-2.6.0.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app-emulation/libcacard/libcacard-2.6.0.ebuild b/app-emulation/libcacard/libcacard-2.6.0.ebuild index 22750df56b3..39e02adda5a 100644 --- a/app-emulation/libcacard/libcacard-2.6.0.ebuild +++ b/app-emulation/libcacard/libcacard-2.6.0.ebuild @@ -18,6 +18,15 @@ RDEPEND=">=dev-libs/nss-3.13 DEPEND="${RDEPEND} virtual/pkgconfig" +src_prepare() { + default + + # remove test requiring SoftHSMv2 which is not in the tree atm + sed -i \ + -e 's|tests/hwtests$(EXEEXT) \($(am__EXEEXT_1)\)|\1|' \ + Makefile.in || die +} + src_configure() { econf \ $(use_enable passthrough pcsc) \