commit:     759553ccb091c82774c199bf2112edac1f3e72dc
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 31 08:42:34 2024 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> 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 <ulm <AT> 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
 

Reply via email to