commit: b4f00d07884e0ff1ceedec0ca0ee3270b6a80edf
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jan 5 11:47:40 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jan 5 16:03:38 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b4f00d07
dev-python/imageutils: bump py targets, bump EAPI
old package is archived, this is the latest from pypi
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-python/imageutils/imageutils-0.3.8.ebuild | 16 ++++++++
dev-python/imageutils/imageutils-9999.ebuild | 57 ---------------------------
2 files changed, 16 insertions(+), 57 deletions(-)
diff --git a/dev-python/imageutils/imageutils-0.3.8.ebuild
b/dev-python/imageutils/imageutils-0.3.8.ebuild
new file mode 100644
index 000000000..09db367f1
--- /dev/null
+++ b/dev-python/imageutils/imageutils-0.3.8.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Various utilities for working with images"
+HOMEPAGE="https://pypi.org/project/imageutils/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
diff --git a/dev-python/imageutils/imageutils-9999.ebuild
b/dev-python/imageutils/imageutils-9999.ebuild
deleted file mode 100644
index 1e04e3394..000000000
--- a/dev-python/imageutils/imageutils-9999.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-inherit distutils-r1
-
-if [ ${PV} == "9999" ] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/astropy/${PN}.git"
-else
- SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="Image processing utilities for Astropy"
-HOMEPAGE="https://github.com/astropy/imageutils"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc"
-
-DOCS=( README.rst )
-
-RDEPEND="
- >=dev-python/astropy-0.4[${PYTHON_USEDEP}]
- dev-python/astropy-helpers[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-python_prepare_all() {
- distutils-r1_python_prepare_all
- sed -e '/import ah_bootstrap/d' -i setup.py || die "Removing
ah_bootstrap failed"
-}
-
-python_test() {
- distutils_install_for_testing
- cd "${TEST_DIR}" || die
- "${EPYTHON}" -c "import ${PN}, sys;r =
${PN}.test(verbose=True);sys.exit(r)" \
- || die "tests fail with ${EPYTHON}"
-}
-
-python_compile_all() {
- if use doc; then
- python_export_best
- VARTEXFONTS="${T}"/fonts \
- MPLCONFIGDIR="${BUILD_DIR}" \
- PYTHONPATH="${BUILD_DIR}"/lib \
- esetup.py build_sphinx
- fi
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
- distutils-r1_python_install_all
-}