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 67D641584AD for ; Wed, 23 Apr 2025 15:18:45 +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 56CDB343068 for ; Wed, 23 Apr 2025 15:18:45 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5F38E11029A; Wed, 23 Apr 2025 15:18:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 557A111029A for ; Wed, 23 Apr 2025 15:18:44 +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 0B7BF343068 for ; Wed, 23 Apr 2025 15:18:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9849F23D0 for ; Wed, 23 Apr 2025 15:18:42 +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: <1745421309.32bbaebe4b727997e483d6b78c8d71cf9fde6b7e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/distutils-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 32bbaebe4b727997e483d6b78c8d71cf9fde6b7e X-VCS-Branch: master Date: Wed, 23 Apr 2025 15:18:42 +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: 3c822cce-734f-4b17-9708-052f58a49e57 X-Archives-Hash: b835ee39cec14ef6b8ab38eb65dc46b6 commit: 32bbaebe4b727997e483d6b78c8d71cf9fde6b7e Author: Sam James gentoo org> AuthorDate: Wed Apr 23 09:47:48 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed Apr 23 15:15:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32bbaebe distutils-r1.eclass: add 'QA Notice:' prefix to eqawarn We need to fix this properly at some point in Portage/PMS but whatever, for now, add the 'QA Prefix:' prefix to eqawarn so tinderboxes pick these up and report them. Bug: https://bugs.gentoo.org/954151 Signed-off-by: Sam James gentoo.org> eclass/distutils-r1.eclass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 6e477823ce02..02fe41aa388f 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -389,7 +389,7 @@ _distutils_set_globals() { readonly DISTUTILS_DEPS fi else - eqawarn "distutils-r1.eclass legacy mode is deprecated and will be removed." + eqawarn "QA Notice: distutils-r1.eclass legacy mode is deprecated and will be removed." eqawarn "Please migrate your ebuilds to use DISTUTILS_USE_PEP517 (common values" eqawarn "are 'setuptools' for packages using setuptools/distutils," eqawarn "and 'no' for packages using non-PEP517 build systems)." @@ -650,7 +650,7 @@ distutils_enable_tests() { fi ;; setup.py) - eqawarn "'distutils_enable_tests setup.py' is deprecated and will be removed." + eqawarn "QA Notice: 'distutils_enable_tests setup.py' is deprecated and will be removed." eqawarn "Please use unittest or pytest instead." ;; unittest) @@ -1183,7 +1183,7 @@ _distutils-r1_get_backend() { # if we didn't die, we're dealing with a deprecated backend if [[ ! -f ${T}/.distutils_deprecated_backend_warned ]]; then - eqawarn "${build_backend} backend is deprecated. Please see:" + eqawarn "QA Notice: ${build_backend} backend is deprecated. Please see:" eqawarn "https://projects.gentoo.org/python/guide/qawarn.html#deprecated-pep-517-backends" eqawarn "The project should use ${expected_backend} instead." > "${T}"/.distutils_deprecated_backend_warned || die @@ -1991,7 +1991,7 @@ _distutils-r1_compare_installed_files() { --exclude="*$(get_modname)" \ "${_DISTUTILS_PREVIOUS_SITE}" "${sitedir}" if [[ ${?} -ne 0 ]]; then - eqawarn "Package creating at least one pure Python wheel installs different" + eqawarn "QA Notice: Package creating at least one pure Python wheel installs different" eqawarn "Python files between implementations. See diff in build log, above" eqawarn "this message." fi @@ -2182,7 +2182,7 @@ _distutils-r1_post_python_install() { if [[ ! ${DISTUTILS_EXT} && ! ${_DISTUTILS_EXT_WARNED} ]]; then if [[ $(find "${sitedir}" -name "*$(get_modname)" | head -n 1) ]] then - eqawarn "Python extension modules (*$(get_modname)) found installed. Please set:" + eqawarn "QA Notice: Python extension modules (*$(get_modname)) found installed. Please set:" eqawarn " DISTUTILS_EXT=1" eqawarn "in the ebuild." _DISTUTILS_EXT_WARNED=1