commit: cf77b6d8733067d4fb5a564212ca324da55fcc5e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 23 10:12:11 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 23 15:15:20 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf77b6d8
rpm.eclass: use 'QA Notice:' prefix in eqawarn
This makes life easier for tinderboxes, but we should improve this in some
future
EAPI.
Signed-off-by: Sam James <sam <AT> gentoo.org>
eclass/rpm.eclass | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/eclass/rpm.eclass b/eclass/rpm.eclass
index c9c21aa6ebbd..e00332e55ca0 100644
--- a/eclass/rpm.eclass
+++ b/eclass/rpm.eclass
@@ -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
# @ECLASS: rpm.eclass
@@ -31,9 +31,9 @@ rpm_unpack() {
if [[ ${a} == ./* ]] ; then
: # nothing to do -- path is local
elif [[ ${a} == "${DISTDIR}"/* ]] ; then
- eqawarn 'do not use ${DISTDIR} with rpm_unpack -- it is
added for you'
+ eqawarn 'QA Notice: do not use ${DISTDIR} with
rpm_unpack -- it is added for you'
elif [[ ${a} == /* ]] ; then
- eqawarn 'do not use full paths with rpm_unpack -- use
./ paths instead'
+ eqawarn 'QA Notice: do not use full paths with
rpm_unpack -- use ./ paths instead'
else
a="${DISTDIR}/${a}"
fi