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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9E57215838C for ; Thu, 18 Jan 2024 01:52:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7000E2B50; Thu, 18 Jan 2024 01:52:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1E5F1E2B50 for ; Thu, 18 Jan 2024 01:52:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E820A343376 for ; Thu, 18 Jan 2024 01:52:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 553C1DB1 for ; Thu, 18 Jan 2024 01:52:29 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1705542720.0958563a4a1a43a0d800db35ece528e85f37cb39.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libltdl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libltdl/libltdl-2.4.7-r1.ebuild X-VCS-Directories: dev-libs/libltdl/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 0958563a4a1a43a0d800db35ece528e85f37cb39 X-VCS-Branch: master Date: Thu, 18 Jan 2024 01:52:29 +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: ee77c401-617a-4e8b-8c89-fb6d67a67a23 X-Archives-Hash: 276bd6de20ee86a9ba171e26450c058e commit: 0958563a4a1a43a0d800db35ece528e85f37cb39 Author: Mike Frysinger chromium org> AuthorDate: Wed Jan 17 23:17:29 2024 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Jan 18 01:52:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0958563a dev-libs/libltdl: add RESTRICT=test No point in trying to run `make check` when there are no tests. Signed-off-by: Mike Frysinger chromium.org> Signed-off-by: Mike Frysinger gentoo.org> dev-libs/libltdl/libltdl-2.4.7-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-libs/libltdl/libltdl-2.4.7-r1.ebuild b/dev-libs/libltdl/libltdl-2.4.7-r1.ebuild index 3e4ebeaf7604..8cca8705cd0f 100644 --- a/dev-libs/libltdl/libltdl-2.4.7-r1.ebuild +++ b/dev-libs/libltdl/libltdl-2.4.7-r1.ebuild @@ -18,7 +18,8 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" IUSE="static-libs" -# libltdl doesn't have a testsuite. +# libltdl doesn't have a testsuite. Don't bother trying. +RESTRICT="test" BDEPEND="app-arch/xz-utils"