From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id BD27D1584F2 for ; Wed, 19 Mar 2025 23:50:16 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A8A8334326E for ; Wed, 19 Mar 2025 23:50:16 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E68C71103C8; Wed, 19 Mar 2025 23:50:11 +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 bobolink.gentoo.org (Postfix) with ESMTPS id DDB3C1103C8 for ; Wed, 19 Mar 2025 23:50:11 +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 923DF34309D for ; Wed, 19 Mar 2025 23:50:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D99AE2822 for ; Wed, 19 Mar 2025 23:50:09 +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: <1742428186.e00bd732368e13b4e034744958970b60f78b6250.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libusb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libusb/libusb-1.0.27-r1.ebuild X-VCS-Directories: dev-libs/libusb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e00bd732368e13b4e034744958970b60f78b6250 X-VCS-Branch: master Date: Wed, 19 Mar 2025 23:50:09 +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: dfb7535b-56c6-4004-b588-a603eae28334 X-Archives-Hash: d4ac26b74fee0065b77b48af901fa8fb commit: e00bd732368e13b4e034744958970b60f78b6250 Author: Sam James gentoo org> AuthorDate: Wed Mar 19 23:49:11 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 19 23:49:46 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e00bd732 dev-libs/libusb: skip umockdev test Seems to fail in sandbox and the dep was automagic anyway (with USE=udev as a test dep). Closes: https://bugs.gentoo.org/923738 Signed-off-by: Sam James gentoo.org> dev-libs/libusb/libusb-1.0.27-r1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-libs/libusb/libusb-1.0.27-r1.ebuild b/dev-libs/libusb/libusb-1.0.27-r1.ebuild index 4218481065ce..2d138348be73 100644 --- a/dev-libs/libusb/libusb-1.0.27-r1.ebuild +++ b/dev-libs/libusb/libusb-1.0.27-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -25,6 +25,10 @@ BDEPEND="doc? ( app-text/doxygen )" src_prepare() { default + + # bug #923738 + sed -i -e "s:umockdev-1.0:umockdev-1.0-DISABLED:" configure || die + elibtoolize }