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/xarray/
Date: Fri, 26 Feb 2021 08:30:27
Message-Id: 1614327748.5d60d799152d3a4af2adb20759408cd0a1f67cc0.mgorny@gentoo
1 commit: 5d60d799152d3a4af2adb20759408cd0a1f67cc0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 26 08:04:18 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 26 08:22:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d60d799
7
8 dev-python/xarray: Bump to 0.17.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/xarray/Manifest | 1 +
13 dev-python/xarray/xarray-0.17.0.ebuild | 33 +++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/xarray/Manifest b/dev-python/xarray/Manifest
17 index a997479fcd7..dfdc8fc92b5 100644
18 --- a/dev-python/xarray/Manifest
19 +++ b/dev-python/xarray/Manifest
20 @@ -1 +1,2 @@
21 DIST xarray-0.16.2.tar.gz 2018053 BLAKE2B 3b95c688a3979323b93ec46c9f218795fbf9df56a7ba1459a507ac36379b3240c351cbb3f1907a204199c6c0c4c0c1c516552548d1e03fb987ad718561aa9772 SHA512 f6cd3eee2012e3b544874388c4824e911ce5d213cd393bf01b10deb9742a1168f41629e4f1e49220228771cac920980eaa98a599a6d62c383dd3da7b3bfe0dd8
22 +DIST xarray-0.17.0.tar.gz 2055584 BLAKE2B afbd28032069e4b498c87abd34661dc96525cb581a08fcf68eeaca08468afb9b452650bce4d21cada0eb1cb75ad11b0565a6b965b11120d4bef4d4cd612fa91d SHA512 726d548519614936f4b6c6ded0375a35362b195a2c6b55a282d198cbb8a70fa7439377a88f253cf4f16c86582fc22c8a4700b9645516decf7edd3e980d9dda34
23
24 diff --git a/dev-python/xarray/xarray-0.17.0.ebuild b/dev-python/xarray/xarray-0.17.0.ebuild
25 new file mode 100644
26 index 00000000000..894b1d80800
27 --- /dev/null
28 +++ b/dev-python/xarray/xarray-0.17.0.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +# pkg_resources use in code
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +PYTHON_COMPAT=( python3_{7..9} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="N-D labeled arrays and datasets in Python"
42 +HOMEPAGE="https://xarray.pydata.org/"
43 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
48 +
49 +RDEPEND="
50 + >=dev-python/numpy-1.17[${PYTHON_USEDEP}]
51 + >=dev-python/pandas-1.0[${PYTHON_USEDEP}]"
52 +# note: most of test dependencies are optional
53 +BDEPEND="
54 + test? (
55 + dev-python/bottleneck[${PYTHON_USEDEP}]
56 + dev-python/hypothesis[${PYTHON_USEDEP}]
57 + dev-python/matplotlib[${PYTHON_USEDEP}]
58 + dev-python/toolz[${PYTHON_USEDEP}]
59 + >=dev-python/scipy-1.4[${PYTHON_USEDEP}]
60 + )"
61 +
62 +distutils_enable_tests pytest