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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2BEC11584AD for ; Thu, 24 Apr 2025 08:34:59 +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 1B98D34305D for ; Thu, 24 Apr 2025 08:34:59 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E208811028B; Thu, 24 Apr 2025 08:34: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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id D94A911028B for ; Thu, 24 Apr 2025 08:34: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 8ECEF34305B for ; Thu, 24 Apr 2025 08:34:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7FD12511 for ; Thu, 24 Apr 2025 08:34:55 +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: <1745483650.6eb6abd03595e182f69888ed45b2537afbe144eb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtserialport/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtserialport/qtserialport-5.15.16.ebuild X-VCS-Directories: dev-qt/qtserialport/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6eb6abd03595e182f69888ed45b2537afbe144eb X-VCS-Branch: master Date: Thu, 24 Apr 2025 08:34:55 +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: 51b2b233-5597-48ef-a59a-a967a1d27420 X-Archives-Hash: 6d3c3df625440a690bbebc83afbcf387 commit: 6eb6abd03595e182f69888ed45b2537afbe144eb Author: Sam James gentoo org> AuthorDate: Thu Apr 24 08:34:10 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 24 08:34:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eb6abd0 dev-qt/qtserialport: substitute -ludev unconditionally Apparently sometimes QMAKE_LIBS_LIBUDEV isn't populated and it's not worth spending time to figure out why for Qt 5. Bug: https://bugs.gentoo.org/673532 Closes: https://bugs.gentoo.org/930543 Signed-off-by: Sam James gentoo.org> dev-qt/qtserialport/qtserialport-5.15.16.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-qt/qtserialport/qtserialport-5.15.16.ebuild b/dev-qt/qtserialport/qtserialport-5.15.16.ebuild index 560fa3473a30..b395750f920e 100644 --- a/dev-qt/qtserialport/qtserialport-5.15.16.ebuild +++ b/dev-qt/qtserialport/qtserialport-5.15.16.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 @@ -22,6 +22,7 @@ RDEPEND="${DEPEND}" src_prepare() { # make sure we link against libudev sed -i -e 's/:qtConfig(libudev)//' \ + -e "s/\$\$QMAKE_LIBS_LIBUDEV/-ludev/" \ src/serialport/serialport-lib.pri || die qt5-build_src_prepare