diff options
author | Pacho Ramos <pacho@gentoo.org> | 2020-01-19 20:52:54 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2020-01-19 20:54:13 +0100 |
commit | 912620f73e2a9d9ca74bbe81cf1f8b29e870a99e (patch) | |
tree | 3af5f2e1209c8a4d1a0f9044ab40c6d5fd7672aa /dev-python | |
parent | (cat_pn): No reverse dep needs py2 support (diff) | |
download | gentoo-912620f73e2a9d9ca74bbe81cf1f8b29e870a99e.tar.gz gentoo-912620f73e2a9d9ca74bbe81cf1f8b29e870a99e.tar.bz2 gentoo-912620f73e2a9d9ca74bbe81cf1f8b29e870a99e.zip |
(cat_pn): No reverse dep needs py2 support
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild | 2 | ||||
-rw-r--r-- | dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild | 59 |
2 files changed, 60 insertions, 1 deletions
diff --git a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild index 019d4022e491..ef63b311c672 100644 --- a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild +++ b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://github.com/libdynd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc test" RESTRICT="!test? ( test )" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild new file mode 100644 index 000000000000..190b19a824e4 --- /dev/null +++ b/dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python3_6 ) + +inherit distutils-r1 + +# change each new dynd version, to avoid git in tree dependency +DYND_PYTHON_GIT_SHA1=8cdef57e71c784d7fe1f3f97a2ce2ce5727a89f1 + +DESCRIPTION="Python exposure of multidimensionnal array library libdynd" +HOMEPAGE="http://libdynd.org/" +SRC_URI="https://github.com/libdynd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc test" +RESTRICT="!test? ( test )" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + ~dev-libs/libdynd-${PV} + dev-python/numpy[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/cython[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( dev-python/nose[${PYTHON_USEDEP}] ) +" + +python_prepare_all() { + # remove the version mangling from git stuff it requires a git clone + # rather force set it a configure time + sed -e "/--dirty/s/ver =.*/ver = 'v${PV}'/" \ + -e '/--always/d' \ + -i setup.py || die + sed -e "s/get_git.*/set(DYND_PYTHON_GIT_SHA1 ${DYND_PYTHON_GIT_SHA1})/" \ + -e "s/git_describe.*/set(DYND_PYTHON_VERSION_STRING v${PV})/" \ + -e 's|-g -fomit-frame-pointer||' \ + -e 's|-Werror||g' \ + -i CMakeLists.txt || die + + distutils-r1_python_prepare_all +} + +python_compile_all() { + if use doc; then + emake -C docs html + HTML_DOCS=( docs/build/html/. ) + fi +} + +python_test() { + cd "${BUILD_DIR}/lib" || die + PYTHONPATH=${BUILD_DIR}/lib nosetests -v || die +} |