commit:     70cb7228def34e7089865e8984cbb4c15a5b0db4
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jan  5 11:40:02 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=70cb7228

dev-python/gammapy: bump EAPI, bump py targets

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/gammapy/gammapy-0.18.2.ebuild | 59 +++++++++++++++++++++++++
 dev-python/gammapy/gammapy-9999.ebuild   | 75 --------------------------------
 2 files changed, 59 insertions(+), 75 deletions(-)

diff --git a/dev-python/gammapy/gammapy-0.18.2.ebuild 
b/dev-python/gammapy/gammapy-0.18.2.ebuild
new file mode 100644
index 000000000..c26732aed
--- /dev/null
+++ b/dev-python/gammapy/gammapy-0.18.2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="A Python package for gamma-ray astronomy"
+HOMEPAGE="https://github.com/gammapy/gammapy";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+#TODO: Package all these pytest deps:
+#      pytest-doctestplus>=0.2.0
+#      pytest-remotedata>=0.3.1
+#      pytest-openfiles>=0.3.1
+#      pytest-astropy-header>=0.1.2
+#      pytest-arraydiff>=0.1
+#      pytest-filter-subpackage>=0.1
+RESTRICT="test"
+
+RDEPEND="
+       dev-python/click[${PYTHON_USEDEP}]
+       >=dev-python/astropy-0.4[${PYTHON_USEDEP}]
+       dev-python/numpy[${PYTHON_USEDEP}]
+       dev-python/pydantic[${PYTHON_USEDEP}]
+       dev-python/pyyaml[${PYTHON_USEDEP}]
+       dev-python/regions[${PYTHON_USEDEP}]
+       dev-python/scipy[${PYTHON_USEDEP}]
+"
+
+# TODO: fix this
+# There is a programmable error in your configuration file:
+# KeyError: 'build_docs'
+#distutils_enable_sphinx docs dev-python/sphinx-astropy
+distutils_enable_tests pytest
+
+pkg_postinst() {
+       elog "To get additional features, a number of optional runtime"
+       elog "dependencies may be installed:"
+       elog ""
+       optfeature "Plotting" dev-python/matplotlib
+       optfeature "Plotting Astronomical Images" dev-python/aplpy
+       optfeature "Read/write CVS files" dev-python/pandas
+       optfeature "Image Processing" sci-libs/scikit-image
+       optfeature "Conversion helper functions" dev-python/rootpy
+
+       # In science overlay:
+       optfeature "Image photometry" dev-python/photutils
+       optfeature "Image Utility Functions" dev-python/imageutils
+
+       # Not packaged: Gammalib, ctools, sherpa, imfun, uncertainties, 
reproject
+}

diff --git a/dev-python/gammapy/gammapy-9999.ebuild 
b/dev-python/gammapy/gammapy-9999.ebuild
deleted file mode 100644
index bd0ee2702..000000000
--- a/dev-python/gammapy/gammapy-9999.ebuild
+++ /dev/null
@@ -1,75 +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 eutils
-
-if [ ${PV} == "9999" ] ; then
-       inherit git-r3
-       EGIT_REPO_URI="https://github.com/gammapy/${PN}.git";
-else
-       SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-       KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="A Python package for gamma-ray astronomy"
-HOMEPAGE="https://github.com/gammapy/gammapy";
-
-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_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_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_install_all() {
-       use doc && local HTML_DOCS=( docs/_build/html/. )
-       distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-       elog "To get additional features, a number of optional runtime"
-       elog "dependencies may be installed:"
-       elog ""
-       optfeature "Numerical Methods" dev-python/scipy
-       optfeature "Plotting" dev-python/matplotlib
-       optfeature "Plotting Astronomical Images" dev-python/aplpy
-       optfeature "Read/write CVS files" dev-python/pandas
-       optfeature "Image Processing" sci-libs/scikit-image
-       optfeature "Conversion helper functions" dev-python/rootpy
-
-       # In science overlay:
-       optfeature "Image photometry" dev-python/photutils
-       optfeature "Image Utility Functions" dev-python/imageutils
-
-       # Not packaged: Gammalib, ctools, sherpa, imfun, uncertainties, 
reproject
-}

Reply via email to