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 CDA50158170 for ; Sat, 20 Jul 2024 05:07:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90BC3E2A2B; Sat, 20 Jul 2024 05:07:57 +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 5AB8BE2A2B for ; Sat, 20 Jul 2024 05:07:57 +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 45F45342FFB for ; Sat, 20 Jul 2024 05:07:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD2C61CEA for ; Sat, 20 Jul 2024 05:07:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1721452002.b2a2324ebb6e86b47ecca117bf7adf5473f6e41f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libnl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libnl/libnl-3.10.0.ebuild dev-libs/libnl/libnl-3.7.0.ebuild dev-libs/libnl/libnl-3.8.0.ebuild dev-libs/libnl/libnl-3.9.0.ebuild dev-libs/libnl/libnl-9999.ebuild X-VCS-Directories: dev-libs/libnl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b2a2324ebb6e86b47ecca117bf7adf5473f6e41f X-VCS-Branch: master Date: Sat, 20 Jul 2024 05:07:54 +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: ed6fd90e-42a8-4ef0-a119-2ca029752a6f X-Archives-Hash: c5d2b6ae6e4b9813be619cf6aeb45181 commit: b2a2324ebb6e86b47ecca117bf7adf5473f6e41f Author: Sam James gentoo org> AuthorDate: Sat Jul 20 05:04:56 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 20 05:06:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a2324e dev-libs/libnl: restrict tests Bug: https://github.com/thom311/libnl/issues/361 Closes: https://bugs.gentoo.org/840167 Signed-off-by: Sam James gentoo.org> dev-libs/libnl/libnl-3.10.0.ebuild | 3 ++- dev-libs/libnl/libnl-3.7.0.ebuild | 6 ++++-- dev-libs/libnl/libnl-3.8.0.ebuild | 6 ++++-- dev-libs/libnl/libnl-3.9.0.ebuild | 4 +++- dev-libs/libnl/libnl-9999.ebuild | 4 +++- 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/dev-libs/libnl/libnl-3.10.0.ebuild b/dev-libs/libnl/libnl-3.10.0.ebuild index 7075f44f5c89..1c7d4454ac9e 100644 --- a/dev-libs/libnl/libnl-3.10.0.ebuild +++ b/dev-libs/libnl/libnl-3.10.0.ebuild @@ -30,7 +30,8 @@ fi LICENSE="LGPL-2.1 utils? ( GPL-2 )" SLOT="3" IUSE="+debug python test utils" -# Tests require privileges +# Tests fail w/ sandboxes +# https://github.com/thom311/libnl/issues/361 RESTRICT="!test? ( test ) test" RDEPEND="python? ( ${PYTHON_DEPS} )" diff --git a/dev-libs/libnl/libnl-3.7.0.ebuild b/dev-libs/libnl/libnl-3.7.0.ebuild index dc16175b64ac..c4bd28210037 100644 --- a/dev-libs/libnl/libnl-3.7.0.ebuild +++ b/dev-libs/libnl/libnl-3.7.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -27,7 +27,9 @@ fi LICENSE="LGPL-2.1 utils? ( GPL-2 )" SLOT="3" IUSE="+debug python test utils" -RESTRICT="!test? ( test )" +# Tests fail w/ sandboxes +# https://github.com/thom311/libnl/issues/361 +RESTRICT="!test? ( test ) test" RDEPEND="python? ( ${PYTHON_DEPS} )" DEPEND="${RDEPEND}" diff --git a/dev-libs/libnl/libnl-3.8.0.ebuild b/dev-libs/libnl/libnl-3.8.0.ebuild index c72e4b01c347..5a815cb27fa7 100644 --- a/dev-libs/libnl/libnl-3.8.0.ebuild +++ b/dev-libs/libnl/libnl-3.8.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -30,7 +30,9 @@ fi LICENSE="LGPL-2.1 utils? ( GPL-2 )" SLOT="3" IUSE="+debug python test utils" -RESTRICT="!test? ( test )" +# Tests fail w/ sandboxes +# https://github.com/thom311/libnl/issues/361 +RESTRICT="!test? ( test ) test" RDEPEND="python? ( ${PYTHON_DEPS} )" DEPEND="${RDEPEND}" diff --git a/dev-libs/libnl/libnl-3.9.0.ebuild b/dev-libs/libnl/libnl-3.9.0.ebuild index cd91ab04a015..157fe4e901fc 100644 --- a/dev-libs/libnl/libnl-3.9.0.ebuild +++ b/dev-libs/libnl/libnl-3.9.0.ebuild @@ -30,7 +30,9 @@ fi LICENSE="LGPL-2.1 utils? ( GPL-2 )" SLOT="3" IUSE="+debug python test utils" -RESTRICT="!test? ( test )" +# Tests fail w/ sandboxes +# https://github.com/thom311/libnl/issues/361 +RESTRICT="!test? ( test ) test" RDEPEND="python? ( ${PYTHON_DEPS} )" DEPEND="${RDEPEND}" diff --git a/dev-libs/libnl/libnl-9999.ebuild b/dev-libs/libnl/libnl-9999.ebuild index 65afdf1df751..1c7d4454ac9e 100644 --- a/dev-libs/libnl/libnl-9999.ebuild +++ b/dev-libs/libnl/libnl-9999.ebuild @@ -30,7 +30,9 @@ fi LICENSE="LGPL-2.1 utils? ( GPL-2 )" SLOT="3" IUSE="+debug python test utils" -RESTRICT="!test? ( test )" +# Tests fail w/ sandboxes +# https://github.com/thom311/libnl/issues/361 +RESTRICT="!test? ( test ) test" RDEPEND="python? ( ${PYTHON_DEPS} )" DEPEND="${RDEPEND}"