commit: 9044efbc003da76a768424ec57d573f9c7ffa01d
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 6 17:39:27 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 6 17:54:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9044efbc
dev-python/seaborn: add 0.12.0
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/seaborn/Manifest | 1 +
dev-python/seaborn/seaborn-0.12.0.ebuild | 33 ++++++++++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index bd3ce794d459..a8e8ec89b47a 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1 +1,2 @@
DIST seaborn-0.11.2.tar.gz 268839 BLAKE2B
b1ba3a76431843921f01f714e601ebe7ed87a8c4136acb65a7cdb89059d67cb136484cb968efd713a5260caa552673efd5d06898a69624b36311fd3908f00179
SHA512
f08fe82b4ecca2b140a953c89bb7f811255d00ec819225809bb224aadde161ddabdeaf5cab53e3558bb84334cee828baafe0ee5efe465e80875a0513fb1ab9ac
+DIST seaborn-0.12.0.tar.gz 1407601 BLAKE2B
3da8db0a0c08a40a3969a2ffce248f5521b4c7c93ecf0f014850093ef48331326454572ceea6ee1133805bf92540b0d2acecdfb7cb789d238f743b30e6a28947
SHA512
b2b06a22d48f19ace2448f465ca5e700f3486971d9fb86e85a1a8c9e2956b904e5f4c2c8075f848299b182cf8f69b2fac22366fedbd8012b9c44adc0bcb7e060
diff --git a/dev-python/seaborn/seaborn-0.12.0.ebuild
b/dev-python/seaborn/seaborn-0.12.0.ebuild
new file mode 100644
index 000000000000..1b7424aa37e5
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.12.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Statistical data visualization"
+HOMEPAGE="https://seaborn.pydata.org https://github.com/mwaskom/seaborn"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+ dev-python/matplotlib[${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+ dev-python/pandas[${PYTHON_USEDEP}]
+ dev-python/statsmodels[${PYTHON_USEDEP}]
+ dev-python/scipy[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_test() {
+ cat > matplotlibrc <<- EOF || die
+ backend : Agg
+ EOF
+ distutils-r1_src_test
+}