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 1C49B1584F2 for ; Tue, 18 Mar 2025 15:38:01 +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 015C4343226 for ; Tue, 18 Mar 2025 15:38:01 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 9DCF41103C8; Tue, 18 Mar 2025 15:37:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 958891103C8 for ; Tue, 18 Mar 2025 15:37:55 +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 4CA4F34322B for ; Tue, 18 Mar 2025 15:37:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6AD423BB for ; Tue, 18 Mar 2025 15:37:53 +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: <1742312236.abd77b252767ebf9d4d765cf4d1d327247a11194.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgweather/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgweather/libgweather-4.4.2.ebuild X-VCS-Directories: dev-libs/libgweather/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: abd77b252767ebf9d4d765cf4d1d327247a11194 X-VCS-Branch: master Date: Tue, 18 Mar 2025 15:37:53 +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: c2e54477-2b1f-467d-908b-e91d2c4b251f X-Archives-Hash: bead945043a79ac3a36ba75abcbc3d37 commit: abd77b252767ebf9d4d765cf4d1d327247a11194 Author: Sam James gentoo org> AuthorDate: Tue Mar 18 15:32:30 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 18 15:37:16 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abd77b25 dev-libs/libgweather: don't run pylint tests They're style tests and fail on uninteresting changes in Python, not our job. They also don't tell us anything about whether the package works. Signed-off-by: Sam James gentoo.org> dev-libs/libgweather/libgweather-4.4.2.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-libs/libgweather/libgweather-4.4.2.ebuild b/dev-libs/libgweather/libgweather-4.4.2.ebuild index e913265014c1..28d20a263ce2 100644 --- a/dev-libs/libgweather/libgweather-4.4.2.ebuild +++ b/dev-libs/libgweather/libgweather-4.4.2.ebuild @@ -59,12 +59,20 @@ src_prepare() { } src_configure() { + local native_file="${T}"/meson.ini.local + # We don't want to run pylint tests. They're only for style. + cat >> ${native_file} <<-EOF || die + [binaries] + pylint='pylint-falseified' + EOF + local emesonargs=( $(meson_use vala enable_vala) $(meson_use gtk-doc gtk_doc) $(meson_use introspection) $(meson_use test tests) -Dsoup2=false + --native-file "${native_file}" ) meson_src_configure }