diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-08-22 09:08:11 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-08-22 09:08:11 +0200 |
commit | 5a29fbe7547c4d36761f46c1ef98555b57b86960 (patch) | |
tree | a3c2468776cd87fc4ea161fe144ef679a5eabc1b /dev-python/pyqtgraph | |
parent | dev-python/pypiserver: Remove redundant versions (diff) | |
download | gentoo-5a29fbe7547c4d36761f46c1ef98555b57b86960.tar.gz gentoo-5a29fbe7547c4d36761f46c1ef98555b57b86960.tar.bz2 gentoo-5a29fbe7547c4d36761f46c1ef98555b57b86960.zip |
dev-python/pyqtgraph: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pyqtgraph')
-rw-r--r-- | dev-python/pyqtgraph/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyqtgraph/pyqtgraph-0.10.0-r2.ebuild | 47 |
2 files changed, 0 insertions, 48 deletions
diff --git a/dev-python/pyqtgraph/Manifest b/dev-python/pyqtgraph/Manifest index 5b078024ea79..0af45bb7254f 100644 --- a/dev-python/pyqtgraph/Manifest +++ b/dev-python/pyqtgraph/Manifest @@ -1,2 +1 @@ -DIST pyqtgraph-0.10.0.tar.gz 704972 BLAKE2B cb1295608536b06de32ea72503b2df2be7f4ae3065b42431542539feec5eb37412e3a7697e2ee97309594b9aecc19c692ef7b45f843f37bd50148a3c0b6e1d31 SHA512 d995da7b4f13ae0009582aebe3f753dc78566dc50ba9314d3a2d37ad4ed8f2fd8bb497a01bb8b37b6d96bf14c071aad018bcbc7224d9dd9b47589a7b5b640d30 DIST pyqtgraph-0.11.0_rc0.tar.gz 755973 BLAKE2B 845c57a16c71d449419cca452ac70468eb21f198b3aebe39204e8ac1408ebd4471a95b24cbd91cd4c745439c17a805738e50a29f8690de5d84f86c2597310aea SHA512 6eb5573b19c7fc0bc263bdc5d75a9a7a5d86d5ce525e406fcbd8f4215a8b2a0a9a7d4839d177fb10ff62a5feacdf088347828900daa9f60ae84e54824b98f470 diff --git a/dev-python/pyqtgraph/pyqtgraph-0.10.0-r2.ebuild b/dev-python/pyqtgraph/pyqtgraph-0.10.0-r2.ebuild deleted file mode 100644 index b3db85104e1f..000000000000 --- a/dev-python/pyqtgraph/pyqtgraph-0.10.0-r2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_{6,7} ) -inherit distutils-r1 - -DESCRIPTION="A pure-python graphics and GUI library built on PyQt and numpy" -HOMEPAGE="http://www.pyqtgraph.org/ https://pypi.org/project/pyqtgraph/" -SRC_URI="http://www.pyqtgraph.org/downloads/${PV}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc examples opengl svg" - -RDEPEND="dev-python/numpy[${PYTHON_USEDEP}] - sci-libs/scipy[${PYTHON_USEDEP}] - dev-python/PyQt5[gui,widgets,opengl=,svg=,${PYTHON_USEDEP}] - opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" - -PATCHES=( "${FILESDIR}"/${P}-qt5.patch ) -S=${WORKDIR}/${PN}-${P} - -python_prepare_all() { - distutils-r1_python_prepare_all - - # fix distutils warning - sed -i 's/install_requires/requires/' setup.py || die - - if ! use opengl; then - rm -r pyqtgraph/opengl || die - fi -} - -python_compile_all() { - use doc && emake -C doc html -} - -python_install_all() { - use doc && local HTML_DOCS=( doc/build/html/. ) - use examples && dodoc -r examples - distutils-r1_python_install_all -} |