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 BF2F715812D for ; Tue, 31 Dec 2024 14:21:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B926FE077A; Tue, 31 Dec 2024 14:21:58 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B99FE077A for ; Tue, 31 Dec 2024 14:21:58 +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 A230F335D2B for ; Tue, 31 Dec 2024 14:21:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02B7D97F for ; Tue, 31 Dec 2024 14:21:56 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1735634554.759553ccb091c82774c199bf2112edac1f3e72dc.ulm@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ebuild-helpers/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild-helpers/fowners bin/ebuild-helpers/fperms X-VCS-Directories: bin/ebuild-helpers/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 759553ccb091c82774c199bf2112edac1f3e72dc X-VCS-Branch: master Date: Tue, 31 Dec 2024 14:21:56 +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: e9c31d5c-0e75-4200-aaf7-eb689073368b X-Archives-Hash: 38d7ef1da833920f17c1aa4215f06991 commit: 759553ccb091c82774c199bf2112edac1f3e72dc Author: Ulrich Müller gentoo org> AuthorDate: Tue Dec 31 08:42:34 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Dec 31 08:42:34 2024 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=759553cc fowners, fperms: Drop QA warnings Bug: https://bugs.gentoo.org/905223 Signed-off-by: Ulrich Müller gentoo.org> bin/ebuild-helpers/fowners | 8 +------- bin/ebuild-helpers/fperms | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/bin/ebuild-helpers/fowners b/bin/ebuild-helpers/fowners index d05094caba..c675bea296 100755 --- a/bin/ebuild-helpers/fowners +++ b/bin/ebuild-helpers/fowners @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 source "${PORTAGE_BIN_PATH}"/isolated-functions.sh || exit 1 @@ -19,12 +19,6 @@ for arg; do args+=( "${arg}" ) else args+=( "${ED%/}/${arg#/}" ) - # remove the QA warning after 2024-12-31 - if [[ ${arg:0:1} != / ]]; then - eqawarn "QA Notice: ${0##*/}: Path '${arg}' does not start with '/'." - eqawarn "This is unsupported. Add a slash for a path in \${ED}," - eqawarn "or use 'chown' for a path relative to the working dir." - fi fi done diff --git a/bin/ebuild-helpers/fperms b/bin/ebuild-helpers/fperms index 16772d11f2..aab8084ce6 100755 --- a/bin/ebuild-helpers/fperms +++ b/bin/ebuild-helpers/fperms @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 source "${PORTAGE_BIN_PATH}"/isolated-functions.sh || exit 1 @@ -20,12 +20,6 @@ for arg; do args+=( "${arg}" ) else args+=( "${ED%/}/${arg#/}" ) - # remove the QA warning after 2024-12-31 - if [[ ${arg:0:1} != / ]]; then - eqawarn "QA Notice: ${0##*/}: Path '${arg}' does not start with '/'." - eqawarn "This is unsupported. Add a slash for a path in \${ED}," - eqawarn "or use 'chmod' for a path relative to the working dir." - fi fi done