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 E0E87138359 for ; Thu, 16 Jul 2020 10:05:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 720D9E080E; Thu, 16 Jul 2020 10:05:37 +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 556E1E080E for ; Thu, 16 Jul 2020 10:05:37 +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 94E8A34F187 for ; Thu, 16 Jul 2020 10:05:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C06109C for ; Thu, 16 Jul 2020 10:05:31 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1594893923.a8fe76da1efe36a6572e82240eacf35071c1b933.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/kbd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/kbd/kbd-2.3.0-r1.ebuild sys-apps/kbd/kbd-2.3.0.ebuild X-VCS-Directories: sys-apps/kbd/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: a8fe76da1efe36a6572e82240eacf35071c1b933 X-VCS-Branch: master Date: Thu, 16 Jul 2020 10:05:31 +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: a51487aa-eecd-4e20-bc4c-cfdede587c3c X-Archives-Hash: 7bc04f206554423a765eeac8bdcd6027 commit: a8fe76da1efe36a6572e82240eacf35071c1b933 Author: Lars Wendler gentoo org> AuthorDate: Thu Jul 16 10:03:33 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Jul 16 10:05:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8fe76da sys-apps/kbd: Revbump to no longer install *.a and *.la files with USE="test". Also disabled tests until upstream fixed their test suite. Bug: https://bugs.gentoo.org/732868 Closes: https://bugs.gentoo.org/732612 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Lars Wendler gentoo.org> sys-apps/kbd/{kbd-2.3.0.ebuild => kbd-2.3.0-r1.ebuild} | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sys-apps/kbd/kbd-2.3.0.ebuild b/sys-apps/kbd/kbd-2.3.0-r1.ebuild similarity index 86% rename from sys-apps/kbd/kbd-2.3.0.ebuild rename to sys-apps/kbd/kbd-2.3.0-r1.ebuild index 32395a108a7..3cb9fb4edd0 100644 --- a/sys-apps/kbd/kbd-2.3.0.ebuild +++ b/sys-apps/kbd/kbd-2.3.0-r1.ebuild @@ -26,7 +26,9 @@ HOMEPAGE="http://kbd-project.org/" LICENSE="GPL-2" SLOT="0" IUSE="nls pam test" -RESTRICT="!test? ( test )" +#RESTRICT="!test? ( test )" +# Upstream has strange assumptions how to run tests (see bug #732868) +RESTRICT="test" RDEPEND=" app-arch/gzip @@ -65,6 +67,8 @@ src_prepare() { src_configure() { local myeconfargs=( + # USE="test" installs .a files + --disable-static $(use_enable nls) $(use_enable pam vlock) $(use_enable test tests) @@ -77,4 +81,7 @@ src_install() { docinto html dodoc docs/doc/*.html use pam && pamd_mimic_system vlock auth account + + # USE="test" installs .la files + find "${ED}" -type f -name "*.la" -delete || die }