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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1B0271580FD for ; Mon, 23 Dec 2024 20:07:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5633FE05AC; Mon, 23 Dec 2024 20:07:01 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3B317E05AC for ; Mon, 23 Dec 2024 20:07:01 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 512E5335DC0 for ; Mon, 23 Dec 2024 20:07:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCEDD1048 for ; Mon, 23 Dec 2024 20:06:58 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1734984355.3ede28a2e903aeb500ea36377f61c5431a94e7f2.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmodbus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmodbus/libmodbus-3.1.11-r1.ebuild X-VCS-Directories: dev-libs/libmodbus/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 3ede28a2e903aeb500ea36377f61c5431a94e7f2 X-VCS-Branch: master Date: Mon, 23 Dec 2024 20:06:58 +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: 1e9a702d-57b8-4391-8070-24dc478cfdac X-Archives-Hash: 5fb6c83e971f933cbf2dd5b936c5070b commit: 3ede28a2e903aeb500ea36377f61c5431a94e7f2 Author: Conrad Kostecki gentoo org> AuthorDate: Mon Dec 23 20:05:55 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Dec 23 20:05:55 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ede28a2 dev-libs/libmodbus: restrict tests Running those tests with client server are meant to be run manually and are not made for automated running. Closes: https://bugs.gentoo.org/941994 Signed-off-by: Conrad Kostecki gentoo.org> dev-libs/libmodbus/libmodbus-3.1.11-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-libs/libmodbus/libmodbus-3.1.11-r1.ebuild b/dev-libs/libmodbus/libmodbus-3.1.11-r1.ebuild index 1fdfa0e1065b..57d673a40480 100644 --- a/dev-libs/libmodbus/libmodbus-3.1.11-r1.ebuild +++ b/dev-libs/libmodbus/libmodbus-3.1.11-r1.ebuild @@ -13,7 +13,9 @@ LICENSE="LGPL-3" SLOT="0" KEYWORDS="amd64 arm ~arm64 ~ppc ppc64 ~riscv x86" IUSE="static-libs test" -RESTRICT="!test? ( test )" + +# Tests are for manual testing +RESTRICT="test" PATCHES=( "${FILESDIR}/${PN}-3.1.11-cflags.patch" )