diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-12-19 22:22:29 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-12-19 22:22:29 +0100 |
commit | 003945dc38aa421b9ed9665c0bf2bfd391394170 (patch) | |
tree | 0ac80dd0a273f444460d3d5c82e55902b4922afd /dev-python/pyproj | |
parent | dev-python/python-cinderclient: Remove old (diff) | |
download | gentoo-003945dc38aa421b9ed9665c0bf2bfd391394170.tar.gz gentoo-003945dc38aa421b9ed9665c0bf2bfd391394170.tar.bz2 gentoo-003945dc38aa421b9ed9665c0bf2bfd391394170.zip |
dev-python/pyproj: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pyproj')
-rw-r--r-- | dev-python/pyproj/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyproj/pyproj-3.2.1.ebuild | 47 |
2 files changed, 0 insertions, 48 deletions
diff --git a/dev-python/pyproj/Manifest b/dev-python/pyproj/Manifest index bfd6abf2b347..b947ee1842f6 100644 --- a/dev-python/pyproj/Manifest +++ b/dev-python/pyproj/Manifest @@ -1,2 +1 @@ -DIST pyproj-3.2.1.tar.gz 213342 BLAKE2B 141f64f33f399e1089009f8047b2541516dc84f2b2133f5e0de5cbaf5d5bef30197f556f630076725a4d78c4244011bf1a7c9a54114d6e166cbb9c10c468da05 SHA512 4ba5bd2d2356c06b711e53581665bdcad3faeb420258c7d4bbb5639784948842a3a6ee0f1f0f50363878c183c38a27063071f25594576eccca146ceb33107761 DIST pyproj-3.3.0.tar.gz 217539 BLAKE2B 14e2332ffdf3d67e531bb4809cd50fd4902828b0cc3d2427921624d56cf05bdc0f3d5b17ea0516b3f428ad82bc57df840e4bd2dde1232870c9b959c34998c254 SHA512 9e8429a4fbec1950bf72a8c582d4a944a6707ac54a107a7837bf7fe44f8c2e29f1f6d0dcd9f5ff3ef511f3d31016389745cc2dfc14e2089756e6e72fe6074c47 diff --git a/dev-python/pyproj/pyproj-3.2.1.ebuild b/dev-python/pyproj/pyproj-3.2.1.ebuild deleted file mode 100644 index 7f3e2a508ab3..000000000000 --- a/dev-python/pyproj/pyproj-3.2.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Python interface to the PROJ library" -HOMEPAGE="https://github.com/pyproj4/pyproj" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~x86 ~amd64-linux" - -RDEPEND=">=sci-libs/proj-7.2.0:=" -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pandas[${PYTHON_USEDEP}] - dev-python/xarray[${PYTHON_USEDEP}] - sci-libs/shapely[${PYTHON_USEDEP}] - )" - -distutils_enable_sphinx docs dev-python/sphinx_rtd_theme -distutils_enable_tests pytest - -python_test() { - local EPYTEST_DESELECT=( - # TODO - test/test_datum.py - test/test_transformer.py::test_transform_wgs84_to_alaska - test/test_transformer.py::test_repr__conditional - test/test_transformer.py::test_transformer_group__unavailable - test/test_transformer.py::test_transformer_group__network_disabled - test/test_transformer.py::test_transformer_group__download_grids__directory - test/crs/test_crs.py::test_coordinate_operation_grids__alternative_grid_name - ) - - distutils_install_for_testing - cp -r test "${BUILD_DIR}" || die - cd "${BUILD_DIR}" || die - epytest --import-mode=append -m "not network" test -} |