Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
Date: Wed, 25 Jul 2018 17:29:32
Message-Id: 1532539676.e55090410cf3c5857fbd12b2c4937d3a4caa6baf.monsieurp@gentoo
1 commit: e55090410cf3c5857fbd12b2c4937d3a4caa6baf
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Sat Jul 21 23:29:19 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 25 17:27:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5509041
7
8 dev-python/seaborn: version bump.
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11 Closes: https://github.com/gentoo/gentoo/pull/9308
12
13 dev-python/seaborn/Manifest | 1 +
14 dev-python/seaborn/seaborn-0.9.0.ebuild | 38 +++++++++++++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
18 index 11c027d3523..27348e942a4 100644
19 --- a/dev-python/seaborn/Manifest
20 +++ b/dev-python/seaborn/Manifest
21 @@ -1,2 +1,3 @@
22 DIST seaborn-0.7.1.tar.gz 158146 BLAKE2B f547e41306634f41091ca5641319abcdb1d22359d67591f115009cd95cdf50463e3683fb1ac911ff9dee3d7628320a76fbcbaa9c91510937907a40a0daa259c4 SHA512 6c730d87a97f0df3b38b78ee9255d47b900aece1308127e2772dc982b19691efe6afe192752c89cba9e9532b567dc1c3c103675e580e6f1151355ea89d1019b3
23 DIST seaborn-0.8.1.tar.gz 178865 BLAKE2B 7f81e0737331edac805e88183f387ccde38d4b27d601e43462342855cdfe245cf1c721ef03ae7cd1b23cc6641e20d51f38bba6c8ffc4a9621b069c6528d0249a SHA512 05ed621c2624b4b981118f9e6100f593ab23620e8f86c82b55a298944135f3286798d5cdc6c215c134f2fdecf9b3a7631be8c5136c0dafaf1f97f05f7c6739d7
24 +DIST seaborn-0.9.0.tar.gz 198184 BLAKE2B 4f4072a186986f9eb649c6fdb6edbc7a28b6f4ab6cc132652b8c4c595c96500b4853b5593f39b46f6f0073d916f9cd51f3ecbb2d23f4d69991e46e702f10ca44 SHA512 01cc9a8e80102eed6a35be8ef2c3357d1f5eee53004887a5e0eb1f4dcf696987e19b9e371e95fad01fff60042ad5a2873a6d265a43cb506172a50ecd5ba55b3b
25
26 diff --git a/dev-python/seaborn/seaborn-0.9.0.ebuild b/dev-python/seaborn/seaborn-0.9.0.ebuild
27 new file mode 100644
28 index 00000000000..f7f36034b4f
29 --- /dev/null
30 +++ b/dev-python/seaborn/seaborn-0.9.0.ebuild
31 @@ -0,0 +1,38 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
38 +
39 +inherit distutils-r1 virtualx
40 +
41 +DESCRIPTION="Statistical data visualization"
42 +HOMEPAGE="https://seaborn.pydata.org https://github.com/mwaskom/seaborn"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +SLOT="0"
46 +LICENSE="BSD"
47 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 +IUSE="test"
49 +
50 +RDEPEND="
51 + dev-python/matplotlib[${PYTHON_USEDEP}]
52 + dev-python/numpy[${PYTHON_USEDEP}]
53 + dev-python/pandas[${PYTHON_USEDEP}]
54 + dev-python/patsy[${PYTHON_USEDEP}]
55 + dev-python/statsmodels[${PYTHON_USEDEP}]
56 + sci-libs/scipy[${PYTHON_USEDEP}]
57 +"
58 +DEPEND="${RDEPEND}
59 + test? (
60 + dev-python/nose[${PYTHON_USEDEP}]
61 + )
62 +"
63 +
64 +python_test() {
65 + cat > matplotlibrc <<- EOF || die
66 + backend : Agg
67 + EOF
68 + virtx nosetests --verbosity=3 || die
69 +}