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: Tue, 29 Nov 2022 12:43:44
Message-Id: 1669725782.747950631d35658480b711b289431a152669f1da.mgorny@gentoo
1 commit: 747950631d35658480b711b289431a152669f1da
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 12:43:02 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 12:43:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74795063
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.1.ebuild | 47 -----------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-python/pyproj/Manifest b/dev-python/pyproj/Manifest
17 index 0eb6a9d3932e..97a3eb1094e1 100644
18 --- a/dev-python/pyproj/Manifest
19 +++ b/dev-python/pyproj/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyproj-3.3.1.gh.tar.gz 238373 BLAKE2B 7996d253a35e3d64a343141179a88d2ab97e88f96447f3daf14c9f8d731099b506228c163fe460d3be30ae69c87e908879b3c0fe31eb7624c3bb8da157838337 SHA512 7175479f4ec526ada830d178bea77552d66aace4c7f6cde584aebef5fc4c6b7a46272eea2bd95f71910411c9ac8d8832d350891ffffda8a86eabb5449177a5eb
22 DIST pyproj-3.4.0.gh.tar.gz 231365 BLAKE2B a62e02a33424583ffec1e1de603a0162ea187b4eb093be51b957fb720b3625c7e4b65162f1272fb4a057edfd92f8146d74c17f1ad68a3beb0ae199df8641e03b SHA512 d0e9425ea5a10ce1620c2a2b3279be786741e75ad698a2430e38237acb73e2cd7dbd16dbb4cf952f52c38810526f4528c08f9bb0795a34fdab2f39686e6914c9
23
24 diff --git a/dev-python/pyproj/pyproj-3.3.1.ebuild b/dev-python/pyproj/pyproj-3.3.1.ebuild
25 deleted file mode 100644
26 index 93c1f69f34cc..000000000000
27 --- a/dev-python/pyproj/pyproj-3.3.1.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python interface to the PROJ library"
41 -HOMEPAGE="
42 - https://github.com/pyproj4/pyproj/
43 - https://pypi.org/project/pyproj/
44 -"
45 -SRC_URI="
46 - https://github.com/pyproj4/pyproj/archive/${PV}.tar.gz
47 - -> ${P}.gh.tar.gz
48 -"
49 -
50 -LICENSE="MIT"
51 -SLOT="0"
52 -KEYWORDS="amd64 ~x86 ~amd64-linux"
53 -
54 -RDEPEND="
55 - >=sci-libs/proj-8.0.0:=
56 -"
57 -DEPEND="
58 - ${RDEPEND}
59 -"
60 -BDEPEND="
61 - dev-python/cython[${PYTHON_USEDEP}]
62 - test? (
63 - dev-python/numpy[${PYTHON_USEDEP}]
64 - dev-python/pandas[${PYTHON_USEDEP}]
65 - dev-python/shapely[${PYTHON_USEDEP}]
66 - dev-python/xarray[${PYTHON_USEDEP}]
67 - )
68 -"
69 -
70 -distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
71 -distutils_enable_tests pytest
72 -
73 -python_test() {
74 - rm -rf pyproj || die
75 - epytest -m "not network" test
76 -}