Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyproj/
Date: Fri, 27 May 2022 19:48:26
Message-Id: 1653680839.430521ae4eb8c753454588be01e00d0e5b8b45d2.mgorny@gentoo
1 commit: 430521ae4eb8c753454588be01e00d0e5b8b45d2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 19:47:19 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 19:47:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=430521ae
7
8 dev-python/pyproj: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyproj/Manifest | 1 -
13 dev-python/pyproj/pyproj-3.3.0.ebuild | 35 -----------------------------------
14 2 files changed, 36 deletions(-)
15
16 diff --git a/dev-python/pyproj/Manifest b/dev-python/pyproj/Manifest
17 index 09972e7ede14..6c2536e0aef9 100644
18 --- a/dev-python/pyproj/Manifest
19 +++ b/dev-python/pyproj/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyproj-3.3.0.tar.gz 217539 BLAKE2B 14e2332ffdf3d67e531bb4809cd50fd4902828b0cc3d2427921624d56cf05bdc0f3d5b17ea0516b3f428ad82bc57df840e4bd2dde1232870c9b959c34998c254 SHA512 9e8429a4fbec1950bf72a8c582d4a944a6707ac54a107a7837bf7fe44f8c2e29f1f6d0dcd9f5ff3ef511f3d31016389745cc2dfc14e2089756e6e72fe6074c47
22 DIST pyproj-3.3.1.gh.tar.gz 238373 BLAKE2B 7996d253a35e3d64a343141179a88d2ab97e88f96447f3daf14c9f8d731099b506228c163fe460d3be30ae69c87e908879b3c0fe31eb7624c3bb8da157838337 SHA512 7175479f4ec526ada830d178bea77552d66aace4c7f6cde584aebef5fc4c6b7a46272eea2bd95f71910411c9ac8d8832d350891ffffda8a86eabb5449177a5eb
23
24 diff --git a/dev-python/pyproj/pyproj-3.3.0.ebuild b/dev-python/pyproj/pyproj-3.3.0.ebuild
25 deleted file mode 100644
26 index c6d3c9d8003f..000000000000
27 --- a/dev-python/pyproj/pyproj-3.3.0.ebuild
28 +++ /dev/null
29 @@ -1,35 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Python interface to the PROJ library"
39 -HOMEPAGE="https://github.com/pyproj4/pyproj"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~x86 ~amd64-linux"
45 -
46 -RDEPEND=">=sci-libs/proj-8.0.0:="
47 -BDEPEND="
48 - dev-python/cython[${PYTHON_USEDEP}]
49 - test? (
50 - dev-python/numpy[${PYTHON_USEDEP}]
51 - dev-python/pandas[${PYTHON_USEDEP}]
52 - dev-python/xarray[${PYTHON_USEDEP}]
53 - sci-libs/shapely[${PYTHON_USEDEP}]
54 - )"
55 -
56 -distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
57 -distutils_enable_tests pytest
58 -
59 -python_test() {
60 - distutils_install_for_testing
61 - cp -r test "${BUILD_DIR}" || die
62 - cd "${BUILD_DIR}" || die
63 - epytest --import-mode=append -m "not network" test
64 -}