summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-11-18 06:33:36 +0100
committerMichał Górny <mgorny@gentoo.org>2024-11-18 06:33:36 +0100
commita791a1f54bb4290edd2e08797aff431d3737c0e2 (patch)
tree090ac7924490c2fe115ca9ac8360467e18958609 /x11-wm/marco
parentdev-python/pygccxml: Enable py3.13 (diff)
downloadgentoo-a791a1f54bb4290edd2e08797aff431d3737c0e2.tar.gz
gentoo-a791a1f54bb4290edd2e08797aff431d3737c0e2.tar.bz2
gentoo-a791a1f54bb4290edd2e08797aff431d3737c0e2.zip
x11-wm/marco: Refactor to unbreak gpy-list-pkg-impls
Refactor so that plain "bash marco-1.28.1-r2.ebuild" call does not trigger syntax errors, so gpy-list-pkg-impls can use it. Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'x11-wm/marco')
-rw-r--r--x11-wm/marco/marco-1.28.1-r2.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-wm/marco/marco-1.28.1-r2.ebuild b/x11-wm/marco/marco-1.28.1-r2.ebuild
index b4b18d3de582..89f6d23eba1c 100644
--- a/x11-wm/marco/marco-1.28.1-r2.ebuild
+++ b/x11-wm/marco/marco-1.28.1-r2.ebuild
@@ -10,8 +10,8 @@ PYTHON_COMPAT=( python3_{10..13} )
inherit mate meson python-any-r1
-MINOR=$(($(ver_cut 2) % 2))
-if [[ ${MINOR} -eq 0 ]]; then
+MINOR=$(ver_cut 2)
+if [[ $(( MINOR % 2 )) -eq 0 ]]; then
KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
fi