From 9c3560e52f186899ab5a4f5db845033a27787a4a Mon Sep 17 00:00:00 2001 From: Horea Christian Date: Sun, 23 Aug 2020 01:08:39 -0400 Subject: [PATCH] dev-python/seaborn: version bump 0.10.1 fix ahead of Gentoo main Bug: https://bugs.gentoo.org/738374 Package-Manager: Portage-3.0.2, Repoman-2.3.23 Signed-off-by: Horea Christian --- dev-python/seaborn/ChangeLog | 5 +++ dev-python/seaborn/Manifest | 1 + dev-python/seaborn/metadata.xml | 36 +++++++++++++++++++++ dev-python/seaborn/seaborn-0.10.1.ebuild | 40 ++++++++++++++++++++++++ 4 files changed, 82 insertions(+) create mode 100644 dev-python/seaborn/ChangeLog create mode 100644 dev-python/seaborn/Manifest create mode 100644 dev-python/seaborn/metadata.xml create mode 100644 dev-python/seaborn/seaborn-0.10.1.ebuild diff --git a/dev-python/seaborn/ChangeLog b/dev-python/seaborn/ChangeLog new file mode 100644 index 0000000..1f86d54 --- /dev/null +++ b/dev-python/seaborn/ChangeLog @@ -0,0 +1,5 @@ +*seaborn-0.10.1 (23 Aug 2020) + + 23 Aug 2020; +metadata.xml, +seaborn-0.10.1.ebuild: + dev-python/seaborn: version bump 0.10.1 fix ahead of Gentoo main Bug: + https://bugs.gentoo.org/738374 diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest new file mode 100644 index 0000000..d54f624 --- /dev/null +++ b/dev-python/seaborn/Manifest @@ -0,0 +1 @@ +DIST seaborn-0.10.1.tar.gz 193770 SHA256 2d1a0c9d6bd1bc3cadb0364b8f06540f51322a670cf8438d0fde1c1c7317adc0 SHA512 167d44d7d64936e15e6c9061cc6bd53a40c0a3e4d619f936ae58de745d5f5273ee8acbd470d3ac155639aac072356a2c2655dff511c4be7d041c3528ab35386f WHIRLPOOL 91c685a63bdc9bc03d518cf03d35c2121c63f8e9712ae21cf26971e0d6b4c9221221d3ed0cc75ff95af1c3bf3d203e7516f272a32d7f9239d21ffd33a1ee00f1 diff --git a/dev-python/seaborn/metadata.xml b/dev-python/seaborn/metadata.xml new file mode 100644 index 0000000..3f6feb3 --- /dev/null +++ b/dev-python/seaborn/metadata.xml @@ -0,0 +1,36 @@ + + + + + chr@chymera.eu + Horea Christian + + + proxy-maint@gentoo.org + Proxy Maintainers + + + python@gentoo.org + Python + + + Seaborn is a library for making attractive and informative statistical graphics + in Python. It is built on top of matplotlib and tightly integrated with the + PyData stack, including support for numpy and pandas data structures and + statistical routines from scipy and statsmodels. + + Some of the features that seaborn offers are + + * Several built-in themes that improve on the default matplotlib aesthetics + * Tools for choosing color palettes to make beautiful plots that reveal patterns in your data + * Functions for visualizing univariate and bivariate distributions or for comparing them between subsets of data + * Tools that fit and visualize linear regression models for different kinds of independent and dependent variables + * Functions that visualize matrices of data and use clustering algorithms to discover structure in those matrices + * A function to plot statistical timeseries data with flexible estimation and representation of uncertainty around the estimate + * High-level abstractions for structuring grids of plots that let you easily build complex visualizations + + + seaborne + mwaskom/seaborn + + diff --git a/dev-python/seaborn/seaborn-0.10.1.ebuild b/dev-python/seaborn/seaborn-0.10.1.ebuild new file mode 100644 index 0000000..5ff07ef --- /dev/null +++ b/dev-python/seaborn/seaborn-0.10.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 virtualx + +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" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + <=dev-python/matplotlib-3.3.0[${PYTHON_USEDEP}] + >=dev-python/numpy-1.13.3[${PYTHON_USEDEP}] + >=dev-python/pandas-0.22.0[${PYTHON_USEDEP}] + dev-python/patsy[${PYTHON_USEDEP}] + dev-python/statsmodels[${PYTHON_USEDEP}] + >=sci-libs/scipy-1.0.1[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + ) +" + +python_test() { + cat > matplotlibrc <<- EOF || die + backend : Agg + EOF + pytest -vv || die +}