summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@gentoo.org>2024-11-04 21:23:27 -0500
committerEli Schwartz <eschwartz@gentoo.org>2024-11-04 21:27:28 -0500
commit1286bd4111e59dd0a9b0929384180b27f9b78370 (patch)
treebdce68c2c373c3960bc3522adf946f9ecd54d90e /www-client
parentapp-misc/ranger: add 1.9.4 (diff)
downloadgentoo-1286bd4111e59dd0a9b0929384180b27f9b78370.tar.gz
gentoo-1286bd4111e59dd0a9b0929384180b27f9b78370.tar.bz2
gentoo-1286bd4111e59dd0a9b0929384180b27f9b78370.zip
www-client/chromium: fix duplicate KEYWORDS and revert #942590 stabilization
Having double KEYWORDS= in an ebuild makes tooling such as ekeyword barf and violates https://projects.gentoo.org/qa/policy-guide/ebuild-format.html#pg0105 Instead, we negate the comparison and simply define KEYWORDS= only when it should have meaningful values. The stabilization needs to be rolled back as it fails checks once actually applied -- due to ffmpeg-chromium. Bug: https://bugs.gentoo.org/942590 Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r--www-client/chromium/chromium-130.0.6723.91.ebuild4
-rw-r--r--www-client/chromium/chromium-131.0.6778.24.ebuild4
2 files changed, 2 insertions, 6 deletions
diff --git a/www-client/chromium/chromium-130.0.6723.91.ebuild b/www-client/chromium/chromium-130.0.6723.91.ebuild
index a7c6ea136a83..ed4c82004d6a 100644
--- a/www-client/chromium/chromium-130.0.6723.91.ebuild
+++ b/www-client/chromium/chromium-130.0.6723.91.ebuild
@@ -49,9 +49,7 @@ LICENSE="BSD"
SLOT="0/stable"
# Dev exists mostly to give devs some breathing room for beta/stable releases;
# it shouldn't be keyworded but adventurous users can select it.
-if [[ ${SLOT} == "0/dev" ]]; then
- KEYWORDS="amd64 arm64"
-else
+if [[ ${SLOT} != "0/dev" ]]; then
KEYWORDS="~amd64 ~arm64 ~ppc64"
fi
diff --git a/www-client/chromium/chromium-131.0.6778.24.ebuild b/www-client/chromium/chromium-131.0.6778.24.ebuild
index 86113d88e17a..3a1fa9fc3807 100644
--- a/www-client/chromium/chromium-131.0.6778.24.ebuild
+++ b/www-client/chromium/chromium-131.0.6778.24.ebuild
@@ -49,9 +49,7 @@ LICENSE="BSD"
SLOT="0/beta"
# Dev exists mostly to give devs some breathing room for beta/stable releases;
# it shouldn't be keyworded but adventurous users can select it.
-if [[ ${SLOT} == "0/dev" ]]; then
- KEYWORDS=""
-else
+if [[ ${SLOT} != "0/dev" ]]; then
KEYWORDS="~amd64 ~arm64"
fi