diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-03-25 08:07:10 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-03-25 08:07:10 +0300 |
commit | a0030429277dacdc52db5330dedf02a13d9ba4b5 (patch) | |
tree | 03c55362381003c7dc9e3da613198f1a7e8331f3 /dev-python/pygobject | |
parent | net-misc/spice-gtk: Stabilize 0.42 x86, #902667 (diff) | |
download | gentoo-a0030429277dacdc52db5330dedf02a13d9ba4b5.tar.gz gentoo-a0030429277dacdc52db5330dedf02a13d9ba4b5.tar.bz2 gentoo-a0030429277dacdc52db5330dedf02a13d9ba4b5.zip |
dev-python/pygobject: use array for meson_src_configure
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/pygobject')
-rw-r--r-- | dev-python/pygobject/pygobject-3.42.2.ebuild | 8 | ||||
-rw-r--r-- | dev-python/pygobject/pygobject-3.44.1.ebuild | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/dev-python/pygobject/pygobject-3.42.2.ebuild b/dev-python/pygobject/pygobject-3.42.2.ebuild index fbabfa8de064..aa8df02fbf99 100644 --- a/dev-python/pygobject/pygobject-3.42.2.ebuild +++ b/dev-python/pygobject/pygobject-3.42.2.ebuild @@ -41,10 +41,12 @@ BDEPEND=" " python_configure() { - meson_src_configure \ - $(meson_feature cairo pycairo) \ - $(meson_use test tests) \ + local emesonargs=( + $(meson_feature cairo pycairo) + $(meson_use test tests) -Dpython="${EPYTHON}" + ) + meson_src_configure } python_compile() { diff --git a/dev-python/pygobject/pygobject-3.44.1.ebuild b/dev-python/pygobject/pygobject-3.44.1.ebuild index 1f73c26cb177..2b6d84b909b9 100644 --- a/dev-python/pygobject/pygobject-3.44.1.ebuild +++ b/dev-python/pygobject/pygobject-3.44.1.ebuild @@ -41,10 +41,12 @@ BDEPEND=" " python_configure() { - meson_src_configure \ - $(meson_feature cairo pycairo) \ - $(meson_use test tests) \ + local emesonargs=( + $(meson_feature cairo pycairo) + $(meson_use test tests) -Dpython="${EPYTHON}" + ) + meson_src_configure } python_compile() { |