Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyproj/
Date: Sun, 01 Dec 2019 20:19:28
Message-Id: 1575231413.e89623a1be476e11f28a1522afe20ec3897550b1.asturm@gentoo
1 commit: e89623a1be476e11f28a1522afe20ec3897550b1
2 Author: Chris Mayo <aklhfex <AT> gmail <DOT> com>
3 AuthorDate: Thu Nov 7 19:48:47 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 1 20:16:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89623a1
7
8 dev-python/pyproj: bump to 2.4.1, EAPI 7 and Python 3
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Chris Mayo <aklhfex <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/13580
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 dev-python/pyproj/Manifest | 1 +
16 dev-python/pyproj/pyproj-2.4.1.ebuild | 49 +++++++++++++++++++++++++++++++++++
17 2 files changed, 50 insertions(+)
18
19 diff --git a/dev-python/pyproj/Manifest b/dev-python/pyproj/Manifest
20 index a47eba325f7..02a19abffc9 100644
21 --- a/dev-python/pyproj/Manifest
22 +++ b/dev-python/pyproj/Manifest
23 @@ -1 +1,2 @@
24 DIST pyproj-1.9.5.1.tar.gz 4424543 BLAKE2B cdf954ec0fe794f354b246fcd5afeac01b796f84cc2456efce3e289fcfb12074d7352c9fa7e9d74356199135dfa9814c07da9379f85771dbb7130b8b9b7ecc34 SHA512 b0e0f85be01a3399cb41c4bf29d1a63ecb519fd45d6092a3558060d93c715afafd12f7532c8665839225ad7243e739a117677f6747bf34a0ccbde5e75c85f324
25 +DIST pyproj-2.4.1.tar.gz 462332 BLAKE2B bd5f8f34bd1e4f928cbbba8736ede96425f1823171b1e4da0ecd6ccf9f105d4f5d4c9f953f353382412883c70803421b4d9a5175aba5cabcb689fafb19484a89 SHA512 c8bc987991b8136951f038f504cb6ffa5f69663b9ba447b586ab29d30e91b05661c46726132ac2cbfd756d92842606b1d5a5167b84c66878688e5ac4e5259353
26
27 diff --git a/dev-python/pyproj/pyproj-2.4.1.ebuild b/dev-python/pyproj/pyproj-2.4.1.ebuild
28 new file mode 100644
29 index 00000000000..0b652fa0701
30 --- /dev/null
31 +++ b/dev-python/pyproj/pyproj-2.4.1.ebuild
32 @@ -0,0 +1,49 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +# Python < 3.6 requires https://pypi.org/project/aenum/
39 +PYTHON_COMPAT=( python3_{6,7} )
40 +
41 +inherit distutils-r1 flag-o-matic
42 +
43 +DESCRIPTION="Python interface to the PROJ library"
44 +HOMEPAGE="https://github.com/jswhit/pyproj"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86 ~amd64-linux"
50 +IUSE="doc"
51 +
52 +RDEPEND=">=sci-libs/proj-6.2.0"
53 +DEPEND="${RDEPEND}
54 + dev-python/cython[${PYTHON_USEDEP}]"
55 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
56 + doc? ( dev-python/sphinx )
57 + test? (
58 + dev-python/mock[${PYTHON_USEDEP}]
59 + dev-python/numpy[${PYTHON_USEDEP}]
60 + $(python_gen_cond_dep 'sci-libs/Shapely[${PYTHON_USEDEP}]' python3_6)
61 + )"
62 +
63 +distutils_enable_tests pytest
64 +
65 +python_prepare_all() {
66 + distutils-r1_python_prepare_all
67 + append-cflags -fno-strict-aliasing
68 +}
69 +
70 +python_test() {
71 + PROJ_LIB="${EPREFIX}/usr/share/proj" pytest -ra || die
72 +}
73 +
74 +python_compile_all() {
75 + use doc && emake -C docs html
76 +}
77 +
78 +python_install_all() {
79 + use doc && local HTML_DOCS=( docs/_build/html/. )
80 + distutils-r1_python_install_all
81 +}