From 59124c368c5d9673d5e4adc813ddff8b542d63fb Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Tue, 16 Jul 2019 19:52:52 +0200 Subject: media-libs/mlt: Re-add python2_7 support Thanks-to: ak <4nykey@gmail.com> Closes: https://bugs.gentoo.org/689068 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner --- media-libs/mlt/mlt-6.16.0-r1.ebuild | 10 +++++++--- media-libs/mlt/mlt-6.16.0-r2.ebuild | 10 +++++++--- 2 files changed, 14 insertions(+), 6 deletions(-) (limited to 'media-libs/mlt') diff --git a/media-libs/mlt/mlt-6.16.0-r1.ebuild b/media-libs/mlt/mlt-6.16.0-r1.ebuild index 6161697e042f..dee7260c926b 100644 --- a/media-libs/mlt/mlt-6.16.0-r1.ebuild +++ b/media-libs/mlt/mlt-6.16.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python2_7 python3_{6,7} ) # this ebuild currently only supports installing ruby bindings for a single ruby version # so USE_RUBY must contain only a single value (the latest stable) as the ebuild calls # /usr/bin/${USE_RUBY} directly @@ -112,8 +112,12 @@ src_prepare() { sed -i -e "s/env ruby/${USE_RUBY}/" src/swig/ruby/* || die - # fix python3 include dir - sed -i -e 's/python{}.{}/python{}.{}m/' src/swig/python/build || die + # fix python include dir + if use python; then + python_export PYTHON_INCLUDEDIR + sed -e "/PYTHON_INCLUDE=/s:=.*:=${PYTHON_INCLUDEDIR}:" \ + -i src/swig/python/build || die + fi } src_configure() { diff --git a/media-libs/mlt/mlt-6.16.0-r2.ebuild b/media-libs/mlt/mlt-6.16.0-r2.ebuild index 1605afaedced..31ed25573ff9 100644 --- a/media-libs/mlt/mlt-6.16.0-r2.ebuild +++ b/media-libs/mlt/mlt-6.16.0-r2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python2_7 python3_{6,7} ) # this ebuild currently only supports installing ruby bindings for a single ruby version # so USE_RUBY must contain only a single value (the latest stable) as the ebuild calls # /usr/bin/${USE_RUBY} directly @@ -112,8 +112,12 @@ src_prepare() { sed -i -e "s/env ruby/${USE_RUBY}/" src/swig/ruby/* || die - # fix python3 include dir - sed -i -e 's/python{}.{}/python{}.{}m/' src/swig/python/build || die + # fix python include dir + if use python; then + python_export PYTHON_INCLUDEDIR + sed -e "/PYTHON_INCLUDE=/s:=.*:=${PYTHON_INCLUDEDIR}:" \ + -i src/swig/python/build || die + fi } src_configure() { -- cgit v1.2.3-65-gdbad