From 7dca325d18b52929f088d6010f8a42e565b7a489 Mon Sep 17 00:00:00 2001 From: Anton Schubert Date: Thu, 14 Jun 2018 11:04:21 +0200 Subject: [PATCH] dev-python/seaborn: bump to 0.8.1 Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- dev-python/seaborn/Manifest | 3 ++ dev-python/seaborn/metadata.xml | 36 +++++++++++++++++++++++ dev-python/seaborn/seaborn-0.8.1.ebuild | 38 +++++++++++++++++++++++++ 3 files changed, 77 insertions(+) create mode 100644 dev-python/seaborn/Manifest create mode 100644 dev-python/seaborn/metadata.xml create mode 100644 dev-python/seaborn/seaborn-0.8.1.ebuild diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest new file mode 100644 index 0000000..220008c --- /dev/null +++ b/dev-python/seaborn/Manifest @@ -0,0 +1,3 @@ +DIST seaborn-0.8.1.tar.gz 178865 BLAKE2B 7f81e0737331edac805e88183f387ccde38d4b27d601e43462342855cdfe245cf1c721ef03ae7cd1b23cc6641e20d51f38bba6c8ffc4a9621b069c6528d0249a SHA512 05ed621c2624b4b981118f9e6100f593ab23620e8f86c82b55a298944135f3286798d5cdc6c215c134f2fdecf9b3a7631be8c5136c0dafaf1f97f05f7c6739d7 +EBUILD seaborn-0.8.1.ebuild 861 BLAKE2B 877d9f1245db09269e2421c7d467c93cf80d5eb4afca016e943edf806e8daca4b71bde2871ec99f54bf847e402fd2d2f9b1337de726b6dd06b7460811423fd3a SHA512 80ee544c6334384276a2f66fe0e4c141cf735cc279ad476558daf321d189aafd25743c317a7e9f338f557209e135dea5829af8d7e305d1d25a7aecf7cba4af5d +MISC metadata.xml 1741 BLAKE2B c1c19f61b7964ce77784415d3d964425a53e7a15d5e3148b7ee8474603f771eb07fe7e44fd0fc0a155687831fcf11425e963ed884c982541da707bf46e393658 SHA512 ddea613b7d13e3fce33bca903896fcbc0cf8f383f423cf6362190c9159675925cb297f57307ee223b43d2b15d41634e39d8ad2535071db0771a4ac9e891265d1 diff --git a/dev-python/seaborn/metadata.xml b/dev-python/seaborn/metadata.xml new file mode 100644 index 0000000..fefd180 --- /dev/null +++ b/dev-python/seaborn/metadata.xml @@ -0,0 +1,36 @@ + + + + + horea.christ@gmail.com + 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.8.1.ebuild b/dev-python/seaborn/seaborn-0.8.1.ebuild new file mode 100644 index 0000000..f7f3603 --- /dev/null +++ b/dev-python/seaborn/seaborn-0.8.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) + +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" + +RDEPEND=" + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + dev-python/patsy[${PYTHON_USEDEP}] + dev-python/statsmodels[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + ) +" + +python_test() { + cat > matplotlibrc <<- EOF || die + backend : Agg + EOF + virtx nosetests --verbosity=3 || die +}