public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyproj/
Date: Sat, 18 Sep 2021 07:00:34 +0000 (UTC)	[thread overview]
Message-ID: <1631948023.96396a35cd33e0f07147af13ff4f47e490e80340.mgorny@gentoo> (raw)

commit:     96396a35cd33e0f07147af13ff4f47e490e80340
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 18 06:48:15 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep 18 06:53:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96396a35

dev-python/pyproj: Bump to 3.2.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/pyproj/Manifest            |  1 +
 dev-python/pyproj/pyproj-3.2.1.ebuild | 47 +++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/pyproj/Manifest b/dev-python/pyproj/Manifest
index 37dc0209afb..7dbbc6ffc5b 100644
--- a/dev-python/pyproj/Manifest
+++ b/dev-python/pyproj/Manifest
@@ -1,3 +1,4 @@
 DIST pyproj-3.0.1.tar.gz 168962 BLAKE2B 3271d604148c122f4dfdd68c4237e1911f30da7cc858128d644b6b6807c3e49450e0b42c385d37bbe1cfa5ab80d635e7f620d41bf5089af6b49a542eb9b3fcd0 SHA512 f5ae0ede1deaa93757cb98cc680d6e47a19b9f5c0ce5e357c2ecfe96f764ff59ec7285c606162da38573123d21f12f1df82354f1d2205149970af2d7d63c2689
 DIST pyproj-3.1.0.tar.gz 182603 BLAKE2B d4e95f62b10b282e7bbfcb7a2059a11a489e53402cbb1760b7da73248dfc05de6be8ca820e55d34c9270eea38178f1fb934bd5ffc389833b3734b87b79991187 SHA512 21a5d08207676d8d9722cb5e3b13ed68f03b1a2aa034c20c61bb8dab5d204dd968ba9a3df1b0c43ed174e082725c7624efb75a0c9c3df920808cbcb44f4d170a
 DIST pyproj-3.2.0.tar.gz 212708 BLAKE2B f880b8aade716e6137bcd4cc4c2d96946e2c7c735077f8707e37b3f174b2613f0281a48140a0154a21615423cd2e1ed70cea79916a04f4b9d84e958b6fe31795 SHA512 67eedd839d625f57accbabadee719030184a79f74185765da2b5610d73b8341435edc56d70d42d5a5d0ece0e22421742a327fe746761ec4f782a72d977306a74
+DIST pyproj-3.2.1.tar.gz 213342 BLAKE2B 141f64f33f399e1089009f8047b2541516dc84f2b2133f5e0de5cbaf5d5bef30197f556f630076725a4d78c4244011bf1a7c9a54114d6e166cbb9c10c468da05 SHA512 4ba5bd2d2356c06b711e53581665bdcad3faeb420258c7d4bbb5639784948842a3a6ee0f1f0f50363878c183c38a27063071f25594576eccca146ceb33107761

diff --git a/dev-python/pyproj/pyproj-3.2.1.ebuild b/dev-python/pyproj/pyproj-3.2.1.ebuild
new file mode 100644
index 00000000000..264aa18088e
--- /dev/null
+++ b/dev-python/pyproj/pyproj-3.2.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+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 --install 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
+}


             reply	other threads:[~2021-09-18  7:00 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-18  7:00 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-19  9:52 [gentoo-commits] repo/gentoo:master commit in: dev-python/pyproj/ Michał Górny
2024-10-19  9:19 Arthur Zamarin
2024-10-19  9:08 Sam James
2024-10-02 11:22 Michał Górny
2024-07-10 19:05 Michał Górny
2023-12-25  7:30 Sam James
2023-11-30 16:05 Michał Górny
2023-10-30 19:01 Michał Górny
2023-09-21  9:54 Michał Górny
2023-08-20 17:37 Arthur Zamarin
2023-08-06 12:30 Michał Górny
2023-07-24 10:59 Michał Górny
2023-07-24  8:54 Jakov Smolić
2023-06-13  5:51 Michał Górny
2023-05-04 16:30 Michał Górny
2023-04-29  7:09 Michał Górny
2023-04-29  6:58 Arthur Zamarin
2023-04-28 15:24 Arthur Zamarin
2023-04-05 14:27 Arthur Zamarin
2023-03-28  5:19 Michał Górny
2023-01-13 17:13 Michał Górny
2023-01-13 14:50 Sam James
2022-12-14  8:45 Michał Górny
2022-12-13 19:53 Arthur Zamarin
2022-11-29 12:43 Michał Górny
2022-11-29 11:26 Jakov Smolić
2022-10-30 12:32 Sam James
2022-10-30 12:32 Sam James
2022-09-10  5:38 Arthur Zamarin
2022-05-27 19:48 Michał Górny
2022-05-27  9:12 Jakov Smolić
2022-04-22  8:19 Michał Górny
2021-12-19 21:23 Michał Górny
2021-12-19 21:18 Jakov Smolić
2021-11-18  9:16 Michał Górny
2021-10-10 16:18 Michał Górny
2021-10-10 15:33 Agostino Sarubbo
2021-10-09  7:08 Michał Górny
2021-09-20  8:00 Arthur Zamarin
2021-09-04  7:47 Michał Górny
2021-07-03  6:17 Agostino Sarubbo
2021-05-25  5:13 Michał Górny
2021-04-26 19:22 Sam James
2021-04-07  6:22 Sam James
2021-03-05 12:08 Michał Górny
2021-03-05 10:14 Michał Górny
2020-11-18  6:53 Agostino Sarubbo
2020-11-17 22:01 Thomas Deutschmann
2020-07-04  9:07 Michał Górny
2020-05-01 13:36 Michał Górny
2020-03-12 15:42 Andreas Sturmlechner
2019-12-08 18:54 Andreas Sturmlechner
2019-12-08 18:47 Andreas Sturmlechner
2019-12-07 14:37 Andreas Sturmlechner
2019-12-06 20:21 Andreas Sturmlechner
2019-12-03  4:18 Aaron Bauman
2019-12-01 20:19 Andreas Sturmlechner
2019-12-01 20:19 Andreas Sturmlechner
2019-10-20 14:21 Andreas Sturmlechner
2018-06-24 13:18 Andreas Sturmlechner
2018-04-12 19:07 Thomas Deutschmann
2018-04-06  0:50 Aaron Bauman
2018-04-03 17:43 Andreas Sturmlechner
2017-12-02 15:23 Mike Gilbert
2017-05-02  8:47 Michał Górny
2017-01-04 13:39 Bernard Cafarelli
2015-09-02 16:53 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1631948023.96396a35cd33e0f07147af13ff4f47e490e80340.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox