Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
Date: Wed, 23 Dec 2020 23:08:09
Message-Id: 1608764877.1a978449be7f0474f708ab58310df72dd042256f.sam@gentoo
1 commit: 1a978449be7f0474f708ab58310df72dd042256f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 23 23:07:57 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 23 23:07:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a978449
7
8 dev-python/seaborn: drop old
9
10 Bug: https://bugs.gentoo.org/734792
11 Package-Manager: Portage-3.0.9, Repoman-3.0.2
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 dev-python/seaborn/Manifest | 1 -
15 dev-python/seaborn/seaborn-0.10.1.ebuild | 40 --------------------------------
16 2 files changed, 41 deletions(-)
17
18 diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
19 index 2a315862f6a..0878fd4b2ba 100644
20 --- a/dev-python/seaborn/Manifest
21 +++ b/dev-python/seaborn/Manifest
22 @@ -1,2 +1 @@
23 -DIST seaborn-0.10.1.tar.gz 193770 BLAKE2B f23271b222d409464853ab8f853e17e462890d6f00ca222bcc40d681ff815ef9f1e545e8693f2d33ceeaed51bd6e21ff7edb72835813d4813fffebfa80c84e00 SHA512 167d44d7d64936e15e6c9061cc6bd53a40c0a3e4d619f936ae58de745d5f5273ee8acbd470d3ac155639aac072356a2c2655dff511c4be7d041c3528ab35386f
24 DIST seaborn-0.11.1.tar.gz 261397 BLAKE2B b281da14eea5e9038af0d79ed07531d0006294d63ff4cabc308a460f1107a7d045793383d200dd2dd63e18b43cea838dfe245b675dbc5c308960c105348e5e26 SHA512 ea33cfdad8c01986291e07b906011f4104995f26a88b2775e155fe4abc28f6f5e224b15d4150a246ef1e134d72bd3dc6f534f7c0d370ca99d5f15cd84e10ccde
25
26 diff --git a/dev-python/seaborn/seaborn-0.10.1.ebuild b/dev-python/seaborn/seaborn-0.10.1.ebuild
27 deleted file mode 100644
28 index 7b4da3c7d23..00000000000
29 --- a/dev-python/seaborn/seaborn-0.10.1.ebuild
30 +++ /dev/null
31 @@ -1,40 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python3_{6,7,8} )
38 -
39 -inherit distutils-r1
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 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="
52 - <dev-python/matplotlib-3.3.0[${PYTHON_USEDEP}]
53 - >=dev-python/numpy-1.13.3[${PYTHON_USEDEP}]
54 - >=dev-python/pandas-0.22.0[${PYTHON_USEDEP}]
55 - dev-python/patsy[${PYTHON_USEDEP}]
56 - dev-python/statsmodels[${PYTHON_USEDEP}]
57 - >=dev-python/scipy-1.0.1[${PYTHON_USEDEP}]
58 -"
59 -DEPEND="${RDEPEND}
60 - test? (
61 - dev-python/nose[${PYTHON_USEDEP}]
62 - dev-python/pytest[${PYTHON_USEDEP}]
63 - )
64 -"
65 -
66 -python_test() {
67 - cat > matplotlibrc <<- EOF || die
68 - backend : Agg
69 - EOF
70 - pytest -vv || die
71 -}