diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-30 17:45:55 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-30 20:14:58 +0200 |
commit | 78bcc41d75501923717b0e77b1a0b5b4ed0d7c02 (patch) | |
tree | 979632ef34a54933d682fe6ec9ecd65056a6c611 /dev-python/pyilmbase | |
parent | sys-fs/btrfsmaintenance: drop cron dependency if systemd is enabled (diff) | |
download | gentoo-78bcc41d75501923717b0e77b1a0b5b4ed0d7c02.tar.gz gentoo-78bcc41d75501923717b0e77b1a0b5b4ed0d7c02.tar.bz2 gentoo-78bcc41d75501923717b0e77b1a0b5b4ed0d7c02.zip |
dev-python/pyilmbase: Drop 2.2.0
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-python/pyilmbase')
-rw-r--r-- | dev-python/pyilmbase/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyilmbase/files/pyilmbase-2.2.0-configure-boost_python.patch | 22 | ||||
-rw-r--r-- | dev-python/pyilmbase/pyilmbase-2.2.0.ebuild | 53 |
3 files changed, 0 insertions, 76 deletions
diff --git a/dev-python/pyilmbase/Manifest b/dev-python/pyilmbase/Manifest index 55654e87ea46..e99c4ca8492f 100644 --- a/dev-python/pyilmbase/Manifest +++ b/dev-python/pyilmbase/Manifest @@ -1,2 +1 @@ -DIST pyilmbase-2.2.0.tar.gz 469927 BLAKE2B 74a806f30bf8881a4c58135110c3e805b9748074eab08e9afa17735630ee7de16ffe6a797ced926bb93d122eafdeb04c5e6e80ddba1a90bc551cb87ddeb30671 SHA512 111deb65a73b4d0454454d4fb64d09165fb25aad2e5714e35510c2b7ef301dc8765041de3188c2f89c9bd2770494a55a24372953fcda8dcedb23c401137e4344 DIST pyilmbase-2.3.0.tar.gz 524975 BLAKE2B 7c3114921392ad29198025c672c366e6c98d2da968ed213ccfb446533b81fae4b78c687aba2108e476e16c4e97f11924799d0b0474ff3f82f17632f886bb6a39 SHA512 c20c26155315f2ae38efc183e5f33e2c18610365f5f1bca7a50363a005ff91c8782177293290ea037cf5f164f9b404f5710ce3cccba862e5e7f830727753589f diff --git a/dev-python/pyilmbase/files/pyilmbase-2.2.0-configure-boost_python.patch b/dev-python/pyilmbase/files/pyilmbase-2.2.0-configure-boost_python.patch deleted file mode 100644 index 897bc02baf90..000000000000 --- a/dev-python/pyilmbase/files/pyilmbase-2.2.0-configure-boost_python.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/configure.ac b/configure.ac -index a4d6027..edfb49f 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -76,7 +76,7 @@ LIBS="$LIBS -lpython$PYTHON_VERSION" - BOOST_PYTHON_CXXFLAGS="" - BOOST_PYTHON_LDFLAGS="" - BOOST_PYTHON_LIBS="" --BOOST_PYTHON_LIBNAME="boost_python" -+BOOST_PYTHON_LIBNAME="boost_python-$PYTHON_VERSION" - - AC_ARG_WITH( - [boost-include-dir], -@@ -90,7 +90,7 @@ AC_ARG_WITH( - - AC_ARG_WITH( - [boost-python-libname], -- [AS_HELP_STRING([--with-boost-python-libname],["boost::python library name (default: boost_python)"])], -+ [AS_HELP_STRING([--with-boost-python-libname],["boost::python library name (default: boost_python-$PYTHON_VERSION)"])], - [BOOST_PYTHON_LIBNAME="$withval"]) - - CXXFLAGS="$CXXFLAGS $BOOST_PYTHON_CXXFLAGS -I$PYTHON_INC_DIR" diff --git a/dev-python/pyilmbase/pyilmbase-2.2.0.ebuild b/dev-python/pyilmbase/pyilmbase-2.2.0.ebuild deleted file mode 100644 index bf77c879e00c..000000000000 --- a/dev-python/pyilmbase/pyilmbase-2.2.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) - -inherit eutils autotools python-single-r1 multilib-minimal - -DESCRIPTION="ilmbase Python bindings" -HOMEPAGE="http://www.openexr.com" -SRC_URI="http://download.savannah.gnu.org/releases/openexr/${P}.tar.gz" -LICENSE="BSD" - -SLOT="0" -KEYWORDS="~amd64" -IUSE="+numpy" - -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE}" - -DEPEND=" - ${PYTHON_DEP} - >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]" - -RDEPEND=" - ${PYTHON_DEP} - >=media-libs/ilmbase-${PV}:=[${MULTILIB_USEDEP}] - >=dev-libs/boost-1.62.0-r1[${MULTILIB_USEDEP},python(+),${PYTHON_USEDEP}] - numpy? ( >=dev-python/numpy-1.10.4 )" - -AT_M4DIR=m4 -PATCHES=( - "${FILESDIR}/${P}-configure-boost_python.patch" -) - -pkg_setup() { - python-single-r1_pkg_setup -} - -src_prepare() { - default - eautoreconf - multilib_copy_sources -} - -multilib_src_configure() { - ECONF_SOURCE=${S} econf "$(use_with numpy numpy)" -} - -# fails to install successfully if MAKEOPTS is set to use more than one core. -multilib_src_install() { - EMAKE_SOURCE=${S} emake DESTDIR="${D}" -j1 install -} |