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: Mon, 30 Nov 2020 22:16:52
Message-Id: 1606772623.6f6e3b13ea9c6ece69ce19bccb621b8c4a4b3a09.mgorny@gentoo
1 commit: 6f6e3b13ea9c6ece69ce19bccb621b8c4a4b3a09
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 30 21:43:43 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 30 21:43:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f6e3b13
7
8 dev-python/xarray: Bump to 0.16.2
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.16.2.ebuild | 37 ++++++++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/dev-python/xarray/Manifest b/dev-python/xarray/Manifest
17 index 9a06351aeb1..9d4b9a60cde 100644
18 --- a/dev-python/xarray/Manifest
19 +++ b/dev-python/xarray/Manifest
20 @@ -1,3 +1,4 @@
21 DIST xarray-0.12.1.tar.gz 1745116 BLAKE2B f38380503347a17cfe11e930b5e275912fb4fb3f02de057e61b21ad1515c8f5e2d5c28007ebb20cecda0f4398b7c71ce239fb3d6f25a79600f5da509f0976359 SHA512 f9e8033b9387ec4175c9d65199aff9cdfc442abb9d2736fb47ab6170ab1e1860b4eb693317a64dad560ab6974f08f7c13f24ecf24c087154ae2d71203e584426
22 DIST xarray-0.16.0.tar.gz 1987841 BLAKE2B 9e191d0c8416b3cbeac484b4bdb12a702314bd6bb982c958f346152ce31832f901c257c59adeca6d32f513de62245648610fd21f4d2ba0e9d6360239c2c4134a SHA512 25a4c967d316eac97389ac4f7e43483655ba93bec0af0f338416f8cd9493dc22b6709c7c66640dc5021f70438d2e26c8f419bda178bb6f27f951b8515b2610fc
23 DIST xarray-0.16.1.tar.gz 2007111 BLAKE2B 426485a921669e2a5c92eec143d5470c5fabcbe9c0ec440c39b27b3b95aa2e87d494397c3b3ad69b0856a2c467b025beccd188aee40a5b96a5d411bb2d66ada6 SHA512 b02dc0a0993c1a41b839d693fb1b3639cfe2a449ae53da39adac01a19749e7945217716a8a07bedd9ef4d63f333a0ac4ce3fed6a8da9042468fdce2290656321
24 +DIST xarray-0.16.2.tar.gz 2018053 BLAKE2B 3b95c688a3979323b93ec46c9f218795fbf9df56a7ba1459a507ac36379b3240c351cbb3f1907a204199c6c0c4c0c1c516552548d1e03fb987ad718561aa9772 SHA512 f6cd3eee2012e3b544874388c4824e911ce5d213cd393bf01b10deb9742a1168f41629e4f1e49220228771cac920980eaa98a599a6d62c383dd3da7b3bfe0dd8
25
26 diff --git a/dev-python/xarray/xarray-0.16.2.ebuild b/dev-python/xarray/xarray-0.16.2.ebuild
27 new file mode 100644
28 index 00000000000..e4da2b36730
29 --- /dev/null
30 +++ b/dev-python/xarray/xarray-0.16.2.ebuild
31 @@ -0,0 +1,37 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +# pkg_resources use in code
38 +DISTUTILS_USE_SETUPTOOLS=rdepend
39 +PYTHON_COMPAT=( python3_{6..9} )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="N-D labeled arrays and datasets in Python"
44 +HOMEPAGE="https://xarray.pydata.org/"
45 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
50 +
51 +RDEPEND="
52 + >=dev-python/numpy-1.15[${PYTHON_USEDEP}]
53 + >=dev-python/pandas-0.25[${PYTHON_USEDEP}]"
54 +# note: most of test dependencies are optional
55 +BDEPEND="
56 + test? (
57 + dev-python/bottleneck[${PYTHON_USEDEP}]
58 + dev-python/hypothesis[${PYTHON_USEDEP}]
59 + dev-python/matplotlib[${PYTHON_USEDEP}]
60 + dev-python/toolz[${PYTHON_USEDEP}]
61 + >=dev-python/scipy-1.1[${PYTHON_USEDEP}]
62 + )"
63 +
64 +distutils_enable_tests pytest
65 +
66 +PATCHES=(
67 +# "${FILESDIR}/${PN}-0.10.8-skip-broken-test.patch"
68 +)