diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-08-13 09:58:09 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-09-06 09:26:16 +0200 |
commit | 6eb1fb6129b4297b07ecb003e36f1d84b9c6486f (patch) | |
tree | 86527d7a0520cd43c21bdd7ee4949cc4af2cd2a7 /app-office | |
parent | media-libs/ming: Remove last-rited pkg (diff) | |
download | gentoo-6eb1fb6129b4297b07ecb003e36f1d84b9c6486f.tar.gz gentoo-6eb1fb6129b4297b07ecb003e36f1d84b9c6486f.tar.bz2 gentoo-6eb1fb6129b4297b07ecb003e36f1d84b9c6486f.zip |
app-office/gnumeric: Improve Python support
Add missing PYTHON_REQUIRED_USE and PYTHON_DEPS for gi.overrides
install. While at it, make it conditional to USE=introspection.
Reduce deps for USE=python to Python 2 variants.
Closes: https://bugs.gentoo.org/690552
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/12691
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/gnumeric/gnumeric-1.12.43.ebuild | 17 | ||||
-rw-r--r-- | app-office/gnumeric/gnumeric-1.12.44.ebuild | 17 |
2 files changed, 22 insertions, 12 deletions
diff --git a/app-office/gnumeric/gnumeric-1.12.43.ebuild b/app-office/gnumeric/gnumeric-1.12.43.ebuild index ed6ea6ba93b7..903ec136a3a5 100644 --- a/app-office/gnumeric/gnumeric-1.12.43.ebuild +++ b/app-office/gnumeric/gnumeric-1.12.43.ebuild @@ -16,7 +16,9 @@ KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="+introspection libgda perl python" # python-loader plugin is python2.7 only -REQUIRED_USE="python? ( $(python_gen_useflags -2) )" +REQUIRED_USE=" + introspection? ( ${PYTHON_REQUIRED_USE} ) + python? ( || ( $(python_gen_useflags -2) ) )" # Missing gnome-extra/libgnomedb required version in tree # but its upstream is dead and will be dropped soon. @@ -37,9 +39,10 @@ RDEPEND=" >=x11-libs/gtk+-3.8.7:3 x11-libs/cairo:=[svg] - introspection? ( >=dev-libs/gobject-introspection-1:= ) + introspection? ( ${PYTHON_DEPS} + >=dev-libs/gobject-introspection-1:= ) perl? ( dev-lang/perl:= ) - python? ( ${PYTHON_DEPS} + python? ( $(python_gen_impl_dep '' -2) >=dev-python/pygobject-3:3[${PYTHON_USEDEP}] ) libgda? ( gnome-extra/libgda:5[gtk] ) " @@ -59,7 +62,7 @@ src_prepare() { src_configure() { if use python ; then - python_setup 'python2*' + python_setup -2 fi gnome2_src_configure \ --disable-static \ @@ -72,6 +75,8 @@ src_configure() { src_install() { gnome2_src_install - python_moduleinto gi.overrides - python_foreach_impl python_domodule introspection/gi/overrides/Gnm.py + if use introspection; then + python_moduleinto gi.overrides + python_foreach_impl python_domodule introspection/gi/overrides/Gnm.py + fi } diff --git a/app-office/gnumeric/gnumeric-1.12.44.ebuild b/app-office/gnumeric/gnumeric-1.12.44.ebuild index ed6ea6ba93b7..903ec136a3a5 100644 --- a/app-office/gnumeric/gnumeric-1.12.44.ebuild +++ b/app-office/gnumeric/gnumeric-1.12.44.ebuild @@ -16,7 +16,9 @@ KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="+introspection libgda perl python" # python-loader plugin is python2.7 only -REQUIRED_USE="python? ( $(python_gen_useflags -2) )" +REQUIRED_USE=" + introspection? ( ${PYTHON_REQUIRED_USE} ) + python? ( || ( $(python_gen_useflags -2) ) )" # Missing gnome-extra/libgnomedb required version in tree # but its upstream is dead and will be dropped soon. @@ -37,9 +39,10 @@ RDEPEND=" >=x11-libs/gtk+-3.8.7:3 x11-libs/cairo:=[svg] - introspection? ( >=dev-libs/gobject-introspection-1:= ) + introspection? ( ${PYTHON_DEPS} + >=dev-libs/gobject-introspection-1:= ) perl? ( dev-lang/perl:= ) - python? ( ${PYTHON_DEPS} + python? ( $(python_gen_impl_dep '' -2) >=dev-python/pygobject-3:3[${PYTHON_USEDEP}] ) libgda? ( gnome-extra/libgda:5[gtk] ) " @@ -59,7 +62,7 @@ src_prepare() { src_configure() { if use python ; then - python_setup 'python2*' + python_setup -2 fi gnome2_src_configure \ --disable-static \ @@ -72,6 +75,8 @@ src_configure() { src_install() { gnome2_src_install - python_moduleinto gi.overrides - python_foreach_impl python_domodule introspection/gi/overrides/Gnm.py + if use introspection; then + python_moduleinto gi.overrides + python_foreach_impl python_domodule introspection/gi/overrides/Gnm.py + fi } |