public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2016-01-25 15:11 Justin Lecher
  0 siblings, 0 replies; 37+ messages in thread
From: Justin Lecher @ 2016-01-25 15:11 UTC (permalink / raw
  To: gentoo-commits

commit:     3f0d79b8bbe71a84b1d08620911625216baffbb5
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 25 12:59:24 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan 25 15:11:41 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f0d79b8

dev-python/seaborn: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/seaborn/Manifest             |  1 +
 dev-python/seaborn/seaborn-0.7.0.ebuild | 39 +++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 24006cd..1b35895 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,2 +1,3 @@
 DIST seaborn-0.5.1.tar.gz 104426 SHA256 8c8f7f1036cf6155be3d987ee23d2eeeed8c272b0803b32b7d524614f8526688 SHA512 bbcdf0625e096b8f41d56521f3e319a64d82632131d80ed1e81144362fe881d9b5df4d3b5a5fa09363b1782897d9ac68d3fc647d82da4e0017c5dba21c897b8d WHIRLPOOL 682a32f2d40a742e87659f27a675c437875a4b4dfcfd8195b774c49ae38f5ad73ee4b73aa00dabab33ccb6015e5eb5326605c897c8b1cac341cc9db0d6143f73
 DIST seaborn-0.6.0.tar.gz 145188 SHA256 e078399b56ed0d53a4aa8bd4d6bd4a9a9deebc0b4acad259d0ef81830affdb68 SHA512 3b7e7c1b72bd55aba012f312b43920044ea011648b4d855f4acd813ae644a75b4c60aa56c35ea759dcd7683bb6d9ea3b4f1209215950a5014ad46ebe04088fb1 WHIRLPOOL 66c9834f982f4a27c1a884bd4c8f73bb718fe0948bc7b3bde86f7d9bd354bbf783e36c576b8e2b0ded50cdf63244f463b9419e808ab70f6d5c2a24e89c570e99
+DIST seaborn-0.7.0.tar.gz 154263 SHA256 15a8b2747becfdb86cfa60b5fcfa9bb934e42ef0ced660e0d57e8aea741f7145 SHA512 475785b074c154e3f2442450c15926dddbbad6a76a808247aeab42eb5f6a0b92b7e2daf032f4adea62d7c9ef3ac3d6eb1bb9aaf35b152ca75faeaedb748e38be WHIRLPOOL bb15397b33487d3ece614ee35a7c7239d3ad616ea4c074f57672637f9193539a7bd923cb23a8c51cc5543bdb80e0e70a8e0bb4c30c69601b58a4f0ed1fc43809

diff --git a/dev-python/seaborn/seaborn-0.7.0.ebuild b/dev-python/seaborn/seaborn-0.7.0.ebuild
new file mode 100644
index 0000000..dc414e3
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.7.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Statistical data visualization"
+HOMEPAGE="http://stanford.edu/~mwaskom/software/seaborn/ 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}]
+	)
+"
+
+# https://github.com/mwaskom/seaborn/issues/836
+RESTRICT=test
+
+python_test() {
+	virtx nosetests --verbosity=3
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2016-01-25 19:45 Justin Lecher
  0 siblings, 0 replies; 37+ messages in thread
From: Justin Lecher @ 2016-01-25 19:45 UTC (permalink / raw
  To: gentoo-commits

commit:     af0c5b6d140c1c175f2e87dc27d8cd047ddc8d29
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 25 16:34:37 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan 25 19:45:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af0c5b6d

dev-python/seaborn: Set mpl backend to Agg for tests

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.7.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/seaborn/seaborn-0.7.0.ebuild b/dev-python/seaborn/seaborn-0.7.0.ebuild
index dc414e3..88c448f 100644
--- a/dev-python/seaborn/seaborn-0.7.0.ebuild
+++ b/dev-python/seaborn/seaborn-0.7.0.ebuild
@@ -31,9 +31,9 @@ DEPEND="${RDEPEND}
 	)
 "
 
-# https://github.com/mwaskom/seaborn/issues/836
-RESTRICT=test
-
 python_test() {
+	cat > matplotlibrc <<- EOF
+	backend : Agg
+	EOF
 	virtx nosetests --verbosity=3
 }


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2016-12-10 21:56 Patrice Clement
  0 siblings, 0 replies; 37+ messages in thread
From: Patrice Clement @ 2016-12-10 21:56 UTC (permalink / raw
  To: gentoo-commits

commit:     e83af315c69252fc0f4614c300003ab776b2dd1a
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Mon Dec  5 11:36:13 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 21:55:42 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e83af315

dev-python/seaborn: version bump.

Package-Manager: portage-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/3020

 dev-python/seaborn/Manifest             |  1 +
 dev-python/seaborn/seaborn-0.7.1.ebuild | 39 +++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 1b35895..6f49450 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,3 +1,4 @@
 DIST seaborn-0.5.1.tar.gz 104426 SHA256 8c8f7f1036cf6155be3d987ee23d2eeeed8c272b0803b32b7d524614f8526688 SHA512 bbcdf0625e096b8f41d56521f3e319a64d82632131d80ed1e81144362fe881d9b5df4d3b5a5fa09363b1782897d9ac68d3fc647d82da4e0017c5dba21c897b8d WHIRLPOOL 682a32f2d40a742e87659f27a675c437875a4b4dfcfd8195b774c49ae38f5ad73ee4b73aa00dabab33ccb6015e5eb5326605c897c8b1cac341cc9db0d6143f73
 DIST seaborn-0.6.0.tar.gz 145188 SHA256 e078399b56ed0d53a4aa8bd4d6bd4a9a9deebc0b4acad259d0ef81830affdb68 SHA512 3b7e7c1b72bd55aba012f312b43920044ea011648b4d855f4acd813ae644a75b4c60aa56c35ea759dcd7683bb6d9ea3b4f1209215950a5014ad46ebe04088fb1 WHIRLPOOL 66c9834f982f4a27c1a884bd4c8f73bb718fe0948bc7b3bde86f7d9bd354bbf783e36c576b8e2b0ded50cdf63244f463b9419e808ab70f6d5c2a24e89c570e99
 DIST seaborn-0.7.0.tar.gz 154263 SHA256 15a8b2747becfdb86cfa60b5fcfa9bb934e42ef0ced660e0d57e8aea741f7145 SHA512 475785b074c154e3f2442450c15926dddbbad6a76a808247aeab42eb5f6a0b92b7e2daf032f4adea62d7c9ef3ac3d6eb1bb9aaf35b152ca75faeaedb748e38be WHIRLPOOL bb15397b33487d3ece614ee35a7c7239d3ad616ea4c074f57672637f9193539a7bd923cb23a8c51cc5543bdb80e0e70a8e0bb4c30c69601b58a4f0ed1fc43809
+DIST seaborn-0.7.1.tar.gz 158146 SHA256 fa274344b1ee72f723bab751c40a5c671801d47a29ee9b5e69fcf63a18ce5c5d SHA512 6c730d87a97f0df3b38b78ee9255d47b900aece1308127e2772dc982b19691efe6afe192752c89cba9e9532b567dc1c3c103675e580e6f1151355ea89d1019b3 WHIRLPOOL 072ac50dfd554160b1225f0b901258915feddca91d47fd1c54e6469d9767478cd01b8585e2e236f2c5658dcbee9f6ea6c0b7f3ea0e3e0e41cdfd21343489b077

diff --git a/dev-python/seaborn/seaborn-0.7.1.ebuild b/dev-python/seaborn/seaborn-0.7.1.ebuild
new file mode 100644
index 00000000..a3ae6e5
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.7.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5}} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Statistical data visualization"
+HOMEPAGE="http://stanford.edu/~mwaskom/software/seaborn/ 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
+	backend : Agg
+	EOF
+	virtx nosetests --verbosity=3
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2016-12-10 21:56 Patrice Clement
  0 siblings, 0 replies; 37+ messages in thread
From: Patrice Clement @ 2016-12-10 21:56 UTC (permalink / raw
  To: gentoo-commits

commit:     6e4b0354a640bab841bf812950eba78804be8cbd
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Fri Dec  9 20:30:16 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 21:56:17 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e4b0354

dev-python/seaborn: added die calls where appropriate.

Package-Manager: portage-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/3020

 dev-python/seaborn/seaborn-0.7.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/seaborn/seaborn-0.7.1.ebuild b/dev-python/seaborn/seaborn-0.7.1.ebuild
index a3ae6e5..333571e 100644
--- a/dev-python/seaborn/seaborn-0.7.1.ebuild
+++ b/dev-python/seaborn/seaborn-0.7.1.ebuild
@@ -32,8 +32,8 @@ DEPEND="${RDEPEND}
 "
 
 python_test() {
-	cat > matplotlibrc <<- EOF
+	cat > matplotlibrc <<- EOF || die
 	backend : Agg
 	EOF
-	virtx nosetests --verbosity=3
+	virtx nosetests --verbosity=3 || die
 }


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2016-12-10 21:56 Patrice Clement
  0 siblings, 0 replies; 37+ messages in thread
From: Patrice Clement @ 2016-12-10 21:56 UTC (permalink / raw
  To: gentoo-commits

commit:     db16d58c33bed67694443113c778ad737c55c29f
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Mon Dec  5 14:08:37 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 21:56:06 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db16d58c

dev-python/seaborn: add additional maintainer.

Package-Manager: portage-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/3020

 dev-python/seaborn/metadata.xml | 60 ++++++++++++++++++++++-------------------
 1 file changed, 32 insertions(+), 28 deletions(-)

diff --git a/dev-python/seaborn/metadata.xml b/dev-python/seaborn/metadata.xml
index 771591a..33fde69 100644
--- a/dev-python/seaborn/metadata.xml
+++ b/dev-python/seaborn/metadata.xml
@@ -1,34 +1,38 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="project">
-    <email>python@gentoo.org</email>
-    <name>Python</name>
-  </maintainer>
-  <longdescription lang="en">
-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.
+	<maintainer type="person">
+		<email>horea.christ@gmail.com</email>
+		<name>Horea Christian</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+		<name>Python</name>
+	</maintainer>
+	<longdescription lang="en">
+		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
+		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
-</longdescription>
-  <upstream>
-    <remote-id type="pypi">seaborne</remote-id>
-    <remote-id type="github">mwaskom/seaborn</remote-id>
-  </upstream>
+		* 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
+	</longdescription>
+	<upstream>
+		<remote-id type="pypi">seaborne</remote-id>
+		<remote-id type="github">mwaskom/seaborn</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2016-12-10 21:59 Patrice Clement
  0 siblings, 0 replies; 37+ messages in thread
From: Patrice Clement @ 2016-12-10 21:59 UTC (permalink / raw
  To: gentoo-commits

commit:     38cd476083c27f23836e81107fa0c1f3f024d913
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 21:58:57 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 21:58:57 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38cd4760

dev-python/seaborn: add proxy-maint to metadata.xml.

Package-Manager: portage-2.3.0

 dev-python/seaborn/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dev-python/seaborn/metadata.xml b/dev-python/seaborn/metadata.xml
index 33fde69..86ec3a3 100644
--- a/dev-python/seaborn/metadata.xml
+++ b/dev-python/seaborn/metadata.xml
@@ -6,6 +6,10 @@
 		<name>Horea Christian</name>
 	</maintainer>
 	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<maintainer type="project">
 		<email>python@gentoo.org</email>
 		<name>Python</name>
 	</maintainer>


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2017-05-02  8:47 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2017-05-02  8:47 UTC (permalink / raw
  To: gentoo-commits

commit:     558a92d68169593711ae355a5e165e292ca0b3ea
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May  2 08:17:02 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May  2 08:47:35 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=558a92d6

dev-python/seaborn: Clean old versions up

 dev-python/seaborn/Manifest             |  3 ---
 dev-python/seaborn/seaborn-0.5.1.ebuild | 36 -------------------------------
 dev-python/seaborn/seaborn-0.6.0.ebuild | 36 -------------------------------
 dev-python/seaborn/seaborn-0.7.0.ebuild | 38 ---------------------------------
 4 files changed, 113 deletions(-)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 6f494502ac7..821a8ae5eb4 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,4 +1 @@
-DIST seaborn-0.5.1.tar.gz 104426 SHA256 8c8f7f1036cf6155be3d987ee23d2eeeed8c272b0803b32b7d524614f8526688 SHA512 bbcdf0625e096b8f41d56521f3e319a64d82632131d80ed1e81144362fe881d9b5df4d3b5a5fa09363b1782897d9ac68d3fc647d82da4e0017c5dba21c897b8d WHIRLPOOL 682a32f2d40a742e87659f27a675c437875a4b4dfcfd8195b774c49ae38f5ad73ee4b73aa00dabab33ccb6015e5eb5326605c897c8b1cac341cc9db0d6143f73
-DIST seaborn-0.6.0.tar.gz 145188 SHA256 e078399b56ed0d53a4aa8bd4d6bd4a9a9deebc0b4acad259d0ef81830affdb68 SHA512 3b7e7c1b72bd55aba012f312b43920044ea011648b4d855f4acd813ae644a75b4c60aa56c35ea759dcd7683bb6d9ea3b4f1209215950a5014ad46ebe04088fb1 WHIRLPOOL 66c9834f982f4a27c1a884bd4c8f73bb718fe0948bc7b3bde86f7d9bd354bbf783e36c576b8e2b0ded50cdf63244f463b9419e808ab70f6d5c2a24e89c570e99
-DIST seaborn-0.7.0.tar.gz 154263 SHA256 15a8b2747becfdb86cfa60b5fcfa9bb934e42ef0ced660e0d57e8aea741f7145 SHA512 475785b074c154e3f2442450c15926dddbbad6a76a808247aeab42eb5f6a0b92b7e2daf032f4adea62d7c9ef3ac3d6eb1bb9aaf35b152ca75faeaedb748e38be WHIRLPOOL bb15397b33487d3ece614ee35a7c7239d3ad616ea4c074f57672637f9193539a7bd923cb23a8c51cc5543bdb80e0e70a8e0bb4c30c69601b58a4f0ed1fc43809
 DIST seaborn-0.7.1.tar.gz 158146 SHA256 fa274344b1ee72f723bab751c40a5c671801d47a29ee9b5e69fcf63a18ce5c5d SHA512 6c730d87a97f0df3b38b78ee9255d47b900aece1308127e2772dc982b19691efe6afe192752c89cba9e9532b567dc1c3c103675e580e6f1151355ea89d1019b3 WHIRLPOOL 072ac50dfd554160b1225f0b901258915feddca91d47fd1c54e6469d9767478cd01b8585e2e236f2c5658dcbee9f6ea6c0b7f3ea0e3e0e41cdfd21343489b077

diff --git a/dev-python/seaborn/seaborn-0.5.1.ebuild b/dev-python/seaborn/seaborn-0.5.1.ebuild
deleted file mode 100644
index 4899a79baf4..00000000000
--- a/dev-python/seaborn/seaborn-0.5.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_4 )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Statistical data visualization"
-HOMEPAGE="http://stanford.edu/~mwaskom/software/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() {
-	VIRTUALX_COMMAND="nosetests"
-	virtualmake --verbosity=3
-}

diff --git a/dev-python/seaborn/seaborn-0.6.0.ebuild b/dev-python/seaborn/seaborn-0.6.0.ebuild
deleted file mode 100644
index 07a00695cb6..00000000000
--- a/dev-python/seaborn/seaborn-0.6.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_4 )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Statistical data visualization"
-HOMEPAGE="http://stanford.edu/~mwaskom/software/seaborn/ 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() {
-	VIRTUALX_COMMAND="nosetests"
-	virtualmake --verbosity=3
-}

diff --git a/dev-python/seaborn/seaborn-0.7.0.ebuild b/dev-python/seaborn/seaborn-0.7.0.ebuild
deleted file mode 100644
index df4ac5bd6d8..00000000000
--- a/dev-python/seaborn/seaborn-0.7.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Statistical data visualization"
-HOMEPAGE="http://stanford.edu/~mwaskom/software/seaborn/ 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
-	backend : Agg
-	EOF
-	virtx nosetests --verbosity=3
-}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2017-11-25 21:44 David Seifert
  0 siblings, 0 replies; 37+ messages in thread
From: David Seifert @ 2017-11-25 21:44 UTC (permalink / raw
  To: gentoo-commits

commit:     6293c288a57adbd3bc830efabad556a78d424ad4
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 20:09:11 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 21:43:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6293c288

dev-python/seaborn: [QA] Consistent whitespace in metadata.xml

 dev-python/seaborn/metadata.xml | 26 ++++++++++----------------
 1 file changed, 10 insertions(+), 16 deletions(-)

diff --git a/dev-python/seaborn/metadata.xml b/dev-python/seaborn/metadata.xml
index 86ec3a36c73..fefd180716d 100644
--- a/dev-python/seaborn/metadata.xml
+++ b/dev-python/seaborn/metadata.xml
@@ -15,25 +15,19 @@
 	</maintainer>
 	<longdescription lang="en">
 		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 
+		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
+		* 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
 	</longdescription>
 	<upstream>
 		<remote-id type="pypi">seaborne</remote-id>


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2018-04-20  6:53 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2018-04-20  6:53 UTC (permalink / raw
  To: gentoo-commits

commit:     96c1d8947d9d036bfd1509ce2aab5bb27dc8a224
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Sun Apr  8 20:08:48 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 20 06:53:17 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96c1d894

dev-python/seaborn: bumped Python support

Closes: https://github.com/gentoo/gentoo/pull/7891
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/seaborn/seaborn-0.7.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/seaborn/seaborn-0.7.1.ebuild b/dev-python/seaborn/seaborn-0.7.1.ebuild
index 1145719eec4..a68f486d95e 100644
--- a/dev-python/seaborn/seaborn-0.7.1.ebuild
+++ b/dev-python/seaborn/seaborn-0.7.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# 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}} )
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
 
 inherit distutils-r1 virtualx
 


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2018-04-29  6:33 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2018-04-29  6:33 UTC (permalink / raw
  To: gentoo-commits

commit:     94d5dee447e4ec50f5220aa153f4e65b492f3aa3
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat Apr 28 20:11:20 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr 29 06:33:24 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94d5dee4

dev-python/seaborn: use HTTPS

 dev-python/seaborn/seaborn-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.7.1.ebuild b/dev-python/seaborn/seaborn-0.7.1.ebuild
index a68f486d95e..f7f36034b4f 100644
--- a/dev-python/seaborn/seaborn-0.7.1.ebuild
+++ b/dev-python/seaborn/seaborn-0.7.1.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
 inherit distutils-r1 virtualx
 
 DESCRIPTION="Statistical data visualization"
-HOMEPAGE="http://stanford.edu/~mwaskom/software/seaborn/ https://github.com/mwaskom/seaborn"
+HOMEPAGE="https://seaborn.pydata.org https://github.com/mwaskom/seaborn"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2018-07-21 21:56 Patrice Clement
  0 siblings, 0 replies; 37+ messages in thread
From: Patrice Clement @ 2018-07-21 21:56 UTC (permalink / raw
  To: gentoo-commits

commit:     37d43e599814fa0b985d39f297c6921e6fbea517
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Thu Jul 19 20:39:07 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Jul 21 21:56:03 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37d43e59

dev-python/seaborn: version bump.

Package-Manager: Portage-2.3.43, Repoman-2.3.10
Closes: https://bugs.gentoo.org/659868
Closes: https://github.com/gentoo/gentoo/pull/9290

 dev-python/seaborn/Manifest             |  1 +
 dev-python/seaborn/seaborn-0.8.1.ebuild | 38 +++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index c6bd8a93687..11c027d3523 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1 +1,2 @@
 DIST seaborn-0.7.1.tar.gz 158146 BLAKE2B f547e41306634f41091ca5641319abcdb1d22359d67591f115009cd95cdf50463e3683fb1ac911ff9dee3d7628320a76fbcbaa9c91510937907a40a0daa259c4 SHA512 6c730d87a97f0df3b38b78ee9255d47b900aece1308127e2772dc982b19691efe6afe192752c89cba9e9532b567dc1c3c103675e580e6f1151355ea89d1019b3
+DIST seaborn-0.8.1.tar.gz 178865 BLAKE2B 7f81e0737331edac805e88183f387ccde38d4b27d601e43462342855cdfe245cf1c721ef03ae7cd1b23cc6641e20d51f38bba6c8ffc4a9621b069c6528d0249a SHA512 05ed621c2624b4b981118f9e6100f593ab23620e8f86c82b55a298944135f3286798d5cdc6c215c134f2fdecf9b3a7631be8c5136c0dafaf1f97f05f7c6739d7

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 00000000000..f7f36034b4f
--- /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
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2018-07-25 17:29 Patrice Clement
  0 siblings, 0 replies; 37+ messages in thread
From: Patrice Clement @ 2018-07-25 17:29 UTC (permalink / raw
  To: gentoo-commits

commit:     e55090410cf3c5857fbd12b2c4937d3a4caa6baf
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Sat Jul 21 23:29:19 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Jul 25 17:27:56 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5509041

dev-python/seaborn: version bump.

Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9308

 dev-python/seaborn/Manifest             |  1 +
 dev-python/seaborn/seaborn-0.9.0.ebuild | 38 +++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 11c027d3523..27348e942a4 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,2 +1,3 @@
 DIST seaborn-0.7.1.tar.gz 158146 BLAKE2B f547e41306634f41091ca5641319abcdb1d22359d67591f115009cd95cdf50463e3683fb1ac911ff9dee3d7628320a76fbcbaa9c91510937907a40a0daa259c4 SHA512 6c730d87a97f0df3b38b78ee9255d47b900aece1308127e2772dc982b19691efe6afe192752c89cba9e9532b567dc1c3c103675e580e6f1151355ea89d1019b3
 DIST seaborn-0.8.1.tar.gz 178865 BLAKE2B 7f81e0737331edac805e88183f387ccde38d4b27d601e43462342855cdfe245cf1c721ef03ae7cd1b23cc6641e20d51f38bba6c8ffc4a9621b069c6528d0249a SHA512 05ed621c2624b4b981118f9e6100f593ab23620e8f86c82b55a298944135f3286798d5cdc6c215c134f2fdecf9b3a7631be8c5136c0dafaf1f97f05f7c6739d7
+DIST seaborn-0.9.0.tar.gz 198184 BLAKE2B 4f4072a186986f9eb649c6fdb6edbc7a28b6f4ab6cc132652b8c4c595c96500b4853b5593f39b46f6f0073d916f9cd51f3ecbb2d23f4d69991e46e702f10ca44 SHA512 01cc9a8e80102eed6a35be8ef2c3357d1f5eee53004887a5e0eb1f4dcf696987e19b9e371e95fad01fff60042ad5a2873a6d265a43cb506172a50ecd5ba55b3b

diff --git a/dev-python/seaborn/seaborn-0.9.0.ebuild b/dev-python/seaborn/seaborn-0.9.0.ebuild
new file mode 100644
index 00000000000..f7f36034b4f
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.9.0.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
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2020-09-13 15:09 David Seifert
  0 siblings, 0 replies; 37+ messages in thread
From: David Seifert @ 2020-09-13 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     3a729a812f822bcfffca043f88f559b550b8d0be
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Sun Sep 13 15:09:16 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Sep 13 15:09:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a729a81

dev-python/seaborn: version bump 0.10.1

Bug: https://bugs.gentoo.org/738374
Closes: https://github.com/gentoo/gentoo/pull/17222
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 +
 dev-python/seaborn/seaborn-0.10.1.ebuild | 40 ++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index d2e6845d202..484b7e818d7 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1 +1,2 @@
 DIST seaborn-0.10.0.tar.gz 194113 BLAKE2B 7e5d6efd7a8446172a3f102c2c7815483f5e24cd2698f52e70186395468a782e45e1cc8fa7eacf7e2956b66e2a6cda76525973b2fecdc43a784af85319c9f5fa SHA512 1f6288931cb63d3109663b5aedc7c11b6b97a6afd8cf9b9e94a9a1f4e18c45456ae7bb055c5be0fb0c34dbb3fdf992d7a88bc1cb88506bebf9ddf9bf685aa3ea
+DIST seaborn-0.10.1.tar.gz 193770 BLAKE2B f23271b222d409464853ab8f853e17e462890d6f00ca222bcc40d681ff815ef9f1e545e8693f2d33ceeaed51bd6e21ff7edb72835813d4813fffebfa80c84e00 SHA512 167d44d7d64936e15e6c9061cc6bd53a40c0a3e4d619f936ae58de745d5f5273ee8acbd470d3ac155639aac072356a2c2655dff511c4be7d041c3528ab35386f

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 00000000000..3075fc84222
--- /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,8} )
+
+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"
+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
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2020-09-18 15:43 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2020-09-18 15:43 UTC (permalink / raw
  To: gentoo-commits

commit:     f788a2a56958e4e9191ada394bcf773582253ab4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 18 15:39:01 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep 18 15:40:04 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f788a2a5

dev-python/seaborn: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 -
 dev-python/seaborn/seaborn-0.10.0.ebuild | 39 --------------------------------
 2 files changed, 40 deletions(-)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 484b7e818d7..d46d1a6f131 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,2 +1 @@
-DIST seaborn-0.10.0.tar.gz 194113 BLAKE2B 7e5d6efd7a8446172a3f102c2c7815483f5e24cd2698f52e70186395468a782e45e1cc8fa7eacf7e2956b66e2a6cda76525973b2fecdc43a784af85319c9f5fa SHA512 1f6288931cb63d3109663b5aedc7c11b6b97a6afd8cf9b9e94a9a1f4e18c45456ae7bb055c5be0fb0c34dbb3fdf992d7a88bc1cb88506bebf9ddf9bf685aa3ea
 DIST seaborn-0.10.1.tar.gz 193770 BLAKE2B f23271b222d409464853ab8f853e17e462890d6f00ca222bcc40d681ff815ef9f1e545e8693f2d33ceeaed51bd6e21ff7edb72835813d4813fffebfa80c84e00 SHA512 167d44d7d64936e15e6c9061cc6bd53a40c0a3e4d619f936ae58de745d5f5273ee8acbd470d3ac155639aac072356a2c2655dff511c4be7d041c3528ab35386f

diff --git a/dev-python/seaborn/seaborn-0.10.0.ebuild b/dev-python/seaborn/seaborn-0.10.0.ebuild
deleted file mode 100644
index 73f07500f39..00000000000
--- a/dev-python/seaborn/seaborn-0.10.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# 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-2.1.2[${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}]
-	>=dev-python/scipy-1.0.1[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-	test? (
-		dev-python/nose[${PYTHON_USEDEP}]
-	)
-"
-
-python_test() {
-	cat > matplotlibrc <<- EOF || die
-	backend : Agg
-	EOF
-	virtx nosetests --verbosity=3
-}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2020-12-23 23:06 Sam James
  0 siblings, 0 replies; 37+ messages in thread
From: Sam James @ 2020-12-23 23:06 UTC (permalink / raw
  To: gentoo-commits

commit:     9f210bb876bcb1ffa7d10674512f2c3e4c6eadf9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 23 23:06:45 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec 23 23:06:50 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f210bb8

dev-python/seaborn: bump to 0.11.1

Closes: https://bugs.gentoo.org/734792
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/seaborn/Manifest                                         | 2 +-
 dev-python/seaborn/{seaborn-0.11.0.ebuild => seaborn-0.11.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 2da32c6db4b..2a315862f6a 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,2 +1,2 @@
 DIST seaborn-0.10.1.tar.gz 193770 BLAKE2B f23271b222d409464853ab8f853e17e462890d6f00ca222bcc40d681ff815ef9f1e545e8693f2d33ceeaed51bd6e21ff7edb72835813d4813fffebfa80c84e00 SHA512 167d44d7d64936e15e6c9061cc6bd53a40c0a3e4d619f936ae58de745d5f5273ee8acbd470d3ac155639aac072356a2c2655dff511c4be7d041c3528ab35386f
-DIST seaborn-0.11.0.tar.gz 259518 BLAKE2B 646673c8c68f10b09c7b87ca4c2580ac0a30a0123523dc1ef8b8f48755fd4079248f518439b15376803384c7f4c14e0b7beaf36b7038c53018a54e18d6e18815 SHA512 f62a6daa085451d3498fe45353bd79a4104778359f2a38f900b8a5ff4984da8f627507d1aa3c12abab050034c79bd2c58a8bc4b2f5e1cb5244a2490b69748e9a
+DIST seaborn-0.11.1.tar.gz 261397 BLAKE2B b281da14eea5e9038af0d79ed07531d0006294d63ff4cabc308a460f1107a7d045793383d200dd2dd63e18b43cea838dfe245b675dbc5c308960c105348e5e26 SHA512 ea33cfdad8c01986291e07b906011f4104995f26a88b2775e155fe4abc28f6f5e224b15d4150a246ef1e134d72bd3dc6f534f7c0d370ca99d5f15cd84e10ccde

diff --git a/dev-python/seaborn/seaborn-0.11.0.ebuild b/dev-python/seaborn/seaborn-0.11.1.ebuild
similarity index 100%
rename from dev-python/seaborn/seaborn-0.11.0.ebuild
rename to dev-python/seaborn/seaborn-0.11.1.ebuild


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2020-12-23 23:06 Sam James
  0 siblings, 0 replies; 37+ messages in thread
From: Sam James @ 2020-12-23 23:06 UTC (permalink / raw
  To: gentoo-commits

commit:     f84590accd24359bd992b9aed26a369d4a77afbd
Author:     Petr Voitsik <voitsik <AT> gmail <DOT> com>
AuthorDate: Tue Dec 15 22:36:26 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec 23 23:06:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f84590ac

dev-python/seaborn: version bump to 0.11.0

Closes: https://bugs.gentoo.org/734792
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Petr Voitsik <voitsik <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18672
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 +
 dev-python/seaborn/seaborn-0.11.0.ebuild | 36 ++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index d46d1a6f131..2da32c6db4b 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1 +1,2 @@
 DIST seaborn-0.10.1.tar.gz 193770 BLAKE2B f23271b222d409464853ab8f853e17e462890d6f00ca222bcc40d681ff815ef9f1e545e8693f2d33ceeaed51bd6e21ff7edb72835813d4813fffebfa80c84e00 SHA512 167d44d7d64936e15e6c9061cc6bd53a40c0a3e4d619f936ae58de745d5f5273ee8acbd470d3ac155639aac072356a2c2655dff511c4be7d041c3528ab35386f
+DIST seaborn-0.11.0.tar.gz 259518 BLAKE2B 646673c8c68f10b09c7b87ca4c2580ac0a30a0123523dc1ef8b8f48755fd4079248f518439b15376803384c7f4c14e0b7beaf36b7038c53018a54e18d6e18815 SHA512 f62a6daa085451d3498fe45353bd79a4104778359f2a38f900b8a5ff4984da8f627507d1aa3c12abab050034c79bd2c58a8bc4b2f5e1cb5244a2490b69748e9a

diff --git a/dev-python/seaborn/seaborn-0.11.0.ebuild b/dev-python/seaborn/seaborn-0.11.0.ebuild
new file mode 100644
index 00000000000..0ba19bea5be
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.11.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+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}]
+"
+DEPEND="${RDEPEND}
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+	cat > matplotlibrc <<- EOF || die
+	backend : Agg
+	EOF
+	pytest -vv || die "Tests fail with ${EPYTHON}"
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2020-12-23 23:08 Sam James
  0 siblings, 0 replies; 37+ messages in thread
From: Sam James @ 2020-12-23 23:08 UTC (permalink / raw
  To: gentoo-commits

commit:     1a978449be7f0474f708ab58310df72dd042256f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 23 23:07:57 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec 23 23:07:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a978449

dev-python/seaborn: drop old

Bug: https://bugs.gentoo.org/734792
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 -
 dev-python/seaborn/seaborn-0.10.1.ebuild | 40 --------------------------------
 2 files changed, 41 deletions(-)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 2a315862f6a..0878fd4b2ba 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,2 +1 @@
-DIST seaborn-0.10.1.tar.gz 193770 BLAKE2B f23271b222d409464853ab8f853e17e462890d6f00ca222bcc40d681ff815ef9f1e545e8693f2d33ceeaed51bd6e21ff7edb72835813d4813fffebfa80c84e00 SHA512 167d44d7d64936e15e6c9061cc6bd53a40c0a3e4d619f936ae58de745d5f5273ee8acbd470d3ac155639aac072356a2c2655dff511c4be7d041c3528ab35386f
 DIST seaborn-0.11.1.tar.gz 261397 BLAKE2B b281da14eea5e9038af0d79ed07531d0006294d63ff4cabc308a460f1107a7d045793383d200dd2dd63e18b43cea838dfe245b675dbc5c308960c105348e5e26 SHA512 ea33cfdad8c01986291e07b906011f4104995f26a88b2775e155fe4abc28f6f5e224b15d4150a246ef1e134d72bd3dc6f534f7c0d370ca99d5f15cd84e10ccde

diff --git a/dev-python/seaborn/seaborn-0.10.1.ebuild b/dev-python/seaborn/seaborn-0.10.1.ebuild
deleted file mode 100644
index 7b4da3c7d23..00000000000
--- a/dev-python/seaborn/seaborn-0.10.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-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"
-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}]
-	>=dev-python/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
-}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2021-10-20 19:21 Arthur Zamarin
  0 siblings, 0 replies; 37+ messages in thread
From: Arthur Zamarin @ 2021-10-20 19:21 UTC (permalink / raw
  To: gentoo-commits

commit:     44641cc66e57405252f89266a96cf7a86c9eafd4
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 20 19:19:20 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 20 19:21:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44641cc6

dev-python/seaborn: add 0.11.2, enable py3.10

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 +
 dev-python/seaborn/seaborn-0.11.2.ebuild | 33 ++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 0878fd4b2ba..13cbde5f79e 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1 +1,2 @@
 DIST seaborn-0.11.1.tar.gz 261397 BLAKE2B b281da14eea5e9038af0d79ed07531d0006294d63ff4cabc308a460f1107a7d045793383d200dd2dd63e18b43cea838dfe245b675dbc5c308960c105348e5e26 SHA512 ea33cfdad8c01986291e07b906011f4104995f26a88b2775e155fe4abc28f6f5e224b15d4150a246ef1e134d72bd3dc6f534f7c0d370ca99d5f15cd84e10ccde
+DIST seaborn-0.11.2.tar.gz 268839 BLAKE2B b1ba3a76431843921f01f714e601ebe7ed87a8c4136acb65a7cdb89059d67cb136484cb968efd713a5260caa552673efd5d06898a69624b36311fd3908f00179 SHA512 f08fe82b4ecca2b140a953c89bb7f811255d00ec819225809bb224aadde161ddabdeaf5cab53e3558bb84334cee828baafe0ee5efe465e80875a0513fb1ab9ac

diff --git a/dev-python/seaborn/seaborn-0.11.2.ebuild b/dev-python/seaborn/seaborn-0.11.2.ebuild
new file mode 100644
index 00000000000..16a60458404
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.11.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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}]
+"
+BDEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+python_test() {
+	cat > matplotlibrc <<- EOF || die
+		backend : Agg
+	EOF
+	epytest
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2022-02-05 16:51 Arthur Zamarin
  0 siblings, 0 replies; 37+ messages in thread
From: Arthur Zamarin @ 2022-02-05 16:51 UTC (permalink / raw
  To: gentoo-commits

commit:     1f1b87fd3587fa4d4fd533d8a668f2d2898c0782
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  5 16:18:51 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Feb  5 16:50:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f1b87fd

dev-python/seaborn: update upstream metadata

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/seaborn/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/metadata.xml b/dev-python/seaborn/metadata.xml
index e3e4d6d4a012..b5254f7272a1 100644
--- a/dev-python/seaborn/metadata.xml
+++ b/dev-python/seaborn/metadata.xml
@@ -30,7 +30,7 @@
 		* High-level abstractions for structuring grids of plots that let you easily build complex visualizations
 	</longdescription>
 	<upstream>
-		<remote-id type="pypi">seaborne</remote-id>
+		<remote-id type="pypi">seaborn</remote-id>
 		<remote-id type="github">mwaskom/seaborn</remote-id>
 	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2022-05-16 13:27 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2022-05-16 13:27 UTC (permalink / raw
  To: gentoo-commits

commit:     e95387c3f81ad6b775924ea77792e552f8a638bd
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May 16 13:25:11 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May 16 13:25:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e95387c3

dev-python/seaborn: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 -
 dev-python/seaborn/seaborn-0.11.1.ebuild | 36 --------------------------------
 2 files changed, 37 deletions(-)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 13cbde5f79e7..bd3ce794d459 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,2 +1 @@
-DIST seaborn-0.11.1.tar.gz 261397 BLAKE2B b281da14eea5e9038af0d79ed07531d0006294d63ff4cabc308a460f1107a7d045793383d200dd2dd63e18b43cea838dfe245b675dbc5c308960c105348e5e26 SHA512 ea33cfdad8c01986291e07b906011f4104995f26a88b2775e155fe4abc28f6f5e224b15d4150a246ef1e134d72bd3dc6f534f7c0d370ca99d5f15cd84e10ccde
 DIST seaborn-0.11.2.tar.gz 268839 BLAKE2B b1ba3a76431843921f01f714e601ebe7ed87a8c4136acb65a7cdb89059d67cb136484cb968efd713a5260caa552673efd5d06898a69624b36311fd3908f00179 SHA512 f08fe82b4ecca2b140a953c89bb7f811255d00ec819225809bb224aadde161ddabdeaf5cab53e3558bb84334cee828baafe0ee5efe465e80875a0513fb1ab9ac

diff --git a/dev-python/seaborn/seaborn-0.11.1.ebuild b/dev-python/seaborn/seaborn-0.11.1.ebuild
deleted file mode 100644
index d3f9dfe2719f..000000000000
--- a/dev-python/seaborn/seaborn-0.11.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-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}]
-"
-DEPEND="${RDEPEND}
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-	cat > matplotlibrc <<- EOF || die
-	backend : Agg
-	EOF
-	pytest -vv || die "Tests fail with ${EPYTHON}"
-}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2022-07-24  8:53 Joonas Niilola
  0 siblings, 0 replies; 37+ messages in thread
From: Joonas Niilola @ 2022-07-24  8:53 UTC (permalink / raw
  To: gentoo-commits

commit:     8247bfb1cc193acdf7828feb896c846ad8eb8309
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 24 08:52:50 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jul 24 08:53:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8247bfb1

dev-python/seaborn: Stabilize 0.11.2 amd64, #859274

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.11.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.11.2.ebuild b/dev-python/seaborn/seaborn-0.11.2.ebuild
index 9f8f3dfec034..50b1cabf1626 100644
--- a/dev-python/seaborn/seaborn-0.11.2.ebuild
+++ b/dev-python/seaborn/seaborn-0.11.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/matplotlib[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2022-09-06 17:54 Arthur Zamarin
  0 siblings, 0 replies; 37+ messages in thread
From: Arthur Zamarin @ 2022-09-06 17:54 UTC (permalink / raw
  To: gentoo-commits

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
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2022-10-08 19:28 Sam James
  0 siblings, 0 replies; 37+ messages in thread
From: Sam James @ 2022-10-08 19:28 UTC (permalink / raw
  To: gentoo-commits

commit:     b324aea9be25a5b3609ee7e83b52767256022cb4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  8 19:26:57 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  8 19:28:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b324aea9

dev-python/seaborn: Stabilize 0.12.0 amd64, #876148

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.12.0.ebuild b/dev-python/seaborn/seaborn-0.12.0.ebuild
index 1b7424aa37e5..4f00dce23aca 100644
--- a/dev-python/seaborn/seaborn-0.12.0.ebuild
+++ b/dev-python/seaborn/seaborn-0.12.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/matplotlib[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2023-03-30 15:50 Arthur Zamarin
  0 siblings, 0 replies; 37+ messages in thread
From: Arthur Zamarin @ 2023-03-30 15:50 UTC (permalink / raw
  To: gentoo-commits

commit:     d2bc95804cc4e94e74e90bcbb8fcc528910700ba
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 15:50:12 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 15:50:12 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2bc9580

dev-python/seaborn: Stabilize 0.12.2 amd64, #903595

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.12.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.12.2.ebuild b/dev-python/seaborn/seaborn-0.12.2.ebuild
index 276eda23158c..f6dc1cf23fc6 100644
--- a/dev-python/seaborn/seaborn-0.12.2.ebuild
+++ b/dev-python/seaborn/seaborn-0.12.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://seaborn.pydata.org https://github.com/mwaskom/seaborn"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/matplotlib[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2023-03-30 16:19 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2023-03-30 16:19 UTC (permalink / raw
  To: gentoo-commits

commit:     d3a66f547920cf85b62d3e86f1970fa7f4f6cb6c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 16:09:24 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 16:19:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a66f54

dev-python/seaborn: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 -
 dev-python/seaborn/seaborn-0.12.0.ebuild | 33 --------------------------------
 2 files changed, 34 deletions(-)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 0fa6e8e28578..766f8abaca3c 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,2 +1 @@
-DIST seaborn-0.12.0.tar.gz 1407601 BLAKE2B 3da8db0a0c08a40a3969a2ffce248f5521b4c7c93ecf0f014850093ef48331326454572ceea6ee1133805bf92540b0d2acecdfb7cb789d238f743b30e6a28947 SHA512 b2b06a22d48f19ace2448f465ca5e700f3486971d9fb86e85a1a8c9e2956b904e5f4c2c8075f848299b182cf8f69b2fac22366fedbd8012b9c44adc0bcb7e060
 DIST seaborn-0.12.2.tar.gz 1439798 BLAKE2B cf6903b1a2d27516bcafe46cabc81ea9fac80666394a6a82516630f9ac60afc7e9d31817e029cda9a08da04c0a37ce0244ad23acda16bca3283532ddb0fbdb71 SHA512 988a9922ee301b655911efa38905674b7dd15e7f7b157ad67f5befaeb02db492553f8bd6133b54d2dd7970b8dbbfd92d81d1faea3fa618247ebcaeb98620a060

diff --git a/dev-python/seaborn/seaborn-0.12.0.ebuild b/dev-python/seaborn/seaborn-0.12.0.ebuild
deleted file mode 100644
index 802ff5fdd18c..000000000000
--- a/dev-python/seaborn/seaborn-0.12.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{9..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
-}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2023-09-30  4:56 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2023-09-30  4:56 UTC (permalink / raw
  To: gentoo-commits

commit:     7f690ac129c94d9ba23f234aa6b35a330e28c2ea
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 30 04:44:07 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep 30 04:56:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f690ac1

dev-python/seaborn: Bump to 0.13.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 +
 dev-python/seaborn/seaborn-0.13.0.ebuild | 42 ++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 766f8abaca3c..986bdede51e9 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1 +1,2 @@
 DIST seaborn-0.12.2.tar.gz 1439798 BLAKE2B cf6903b1a2d27516bcafe46cabc81ea9fac80666394a6a82516630f9ac60afc7e9d31817e029cda9a08da04c0a37ce0244ad23acda16bca3283532ddb0fbdb71 SHA512 988a9922ee301b655911efa38905674b7dd15e7f7b157ad67f5befaeb02db492553f8bd6133b54d2dd7970b8dbbfd92d81d1faea3fa618247ebcaeb98620a060
+DIST seaborn-0.13.0.tar.gz 1455480 BLAKE2B 9f7383715366889ffd80788f901c574d9330285da2098e5695e944f1c6b92d4e417163a82378dd75c03233fc6485158401a1aaa461f2fa8e71a4cbc3ebf957cb SHA512 d603e880c29e05ab68f86d285c5c5ee9cf2da1d45265ed609f7bc87650fe20e80c026af487f63f9492a268f51ba5bab0cae4fd8fdeaf28125d16d317f9c937c8

diff --git a/dev-python/seaborn/seaborn-0.13.0.ebuild b/dev-python/seaborn/seaborn-0.13.0.ebuild
new file mode 100644
index 000000000000..c18b4b771b97
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.13.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..11} )
+inherit distutils-r1 multiprocessing pypi
+
+DESCRIPTION="Statistical data visualization"
+HOMEPAGE="https://seaborn.pydata.org https://github.com/mwaskom/seaborn"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	>=dev-python/matplotlib-3.3[${PYTHON_USEDEP}]
+	>=dev-python/numpy-1.20[${PYTHON_USEDEP}]
+	>=dev-python/pandas-1.2[${PYTHON_USEDEP}]
+	>=dev-python/statsmodels-0.12[${PYTHON_USEDEP}]
+	>=dev-python/scipy-1.7[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? (
+		dev-python/pytest-xdist[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+src_test() {
+	cat > matplotlibrc <<- EOF || die
+		backend : Agg
+	EOF
+
+	distutils-r1_src_test
+}
+
+python_test() {
+	epytest -n "$(makeopts_jobs)"
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2023-11-02  4:12 Sam James
  0 siblings, 0 replies; 37+ messages in thread
From: Sam James @ 2023-11-02  4:12 UTC (permalink / raw
  To: gentoo-commits

commit:     6bb47b6c3ca8efc0a672092ab9ccb52053fe6202
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  2 04:06:14 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov  2 04:10:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bb47b6c

dev-python/seaborn: Stabilize 0.13.0 amd64, #916656

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.13.0.ebuild b/dev-python/seaborn/seaborn-0.13.0.ebuild
index c18b4b771b97..7c075c896565 100644
--- a/dev-python/seaborn/seaborn-0.13.0.ebuild
+++ b/dev-python/seaborn/seaborn-0.13.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://seaborn.pydata.org https://github.com/mwaskom/seaborn"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	>=dev-python/matplotlib-3.3[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-01-01  4:13 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2024-01-01  4:13 UTC (permalink / raw
  To: gentoo-commits

commit:     90fddcaa71144b46d617d1537bc171651f420322
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  1 04:01:45 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jan  1 04:13:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90fddcaa

dev-python/seaborn: Bump to 0.13.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 +
 dev-python/seaborn/seaborn-0.13.1.ebuild | 39 ++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 893779dfa24f..5ccda5dd6c2a 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1 +1,2 @@
 DIST seaborn-0.13.0.tar.gz 1455480 BLAKE2B 9f7383715366889ffd80788f901c574d9330285da2098e5695e944f1c6b92d4e417163a82378dd75c03233fc6485158401a1aaa461f2fa8e71a4cbc3ebf957cb SHA512 d603e880c29e05ab68f86d285c5c5ee9cf2da1d45265ed609f7bc87650fe20e80c026af487f63f9492a268f51ba5bab0cae4fd8fdeaf28125d16d317f9c937c8
+DIST seaborn-0.13.1.tar.gz 1457600 BLAKE2B 73296257f1d7525cebb90bf6f97fa6e5f91e3e9df653e0b9ab81eb6d04a1eb957a9c623aa8b4a715162175a501f55dd7e787335175503cab451bb03318e822cf SHA512 b90483bffd3435cc058143dccc854eb175ec7d7a095b8ce8261fbcad3f97f5e9b035a790a04dc2c64c35dda5b0ab8562f0b4a99e09a5e2fc9c4ee8323a153910

diff --git a/dev-python/seaborn/seaborn-0.13.1.ebuild b/dev-python/seaborn/seaborn-0.13.1.ebuild
new file mode 100644
index 000000000000..c377b54e8c4a
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.13.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Statistical data visualization"
+HOMEPAGE="
+	https://seaborn.pydata.org/
+	https://github.com/mwaskom/seaborn/
+	https://pypi.org/project/seaborn/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	>=dev-python/matplotlib-3.4[${PYTHON_USEDEP}]
+	>=dev-python/numpy-1.20[${PYTHON_USEDEP}]
+	>=dev-python/pandas-1.2[${PYTHON_USEDEP}]
+	>=dev-python/statsmodels-0.12[${PYTHON_USEDEP}]
+	>=dev-python/scipy-1.7[${PYTHON_USEDEP}]
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_test() {
+	cat > matplotlibrc <<- EOF || die
+		backend : Agg
+	EOF
+
+	distutils-r1_src_test
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-01-18 19:48 Sam James
  0 siblings, 0 replies; 37+ messages in thread
From: Sam James @ 2024-01-18 19:48 UTC (permalink / raw
  To: gentoo-commits

commit:     a76947e7e4a9afeb3da7fd4d68ecb6e7a4dd69c1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 19:47:44 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 19:47:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a76947e7

dev-python/seaborn: Stabilize 0.13.1 amd64, #922430

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.13.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.13.1.ebuild b/dev-python/seaborn/seaborn-0.13.1.ebuild
index c377b54e8c4a..864e12c40106 100644
--- a/dev-python/seaborn/seaborn-0.13.1.ebuild
+++ b/dev-python/seaborn/seaborn-0.13.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	>=dev-python/matplotlib-3.4[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-01-19  5:10 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2024-01-19  5:10 UTC (permalink / raw
  To: gentoo-commits

commit:     b28544b6a92f581db2bfc68d3fda216d5d30640e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 19 04:29:06 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 04:29:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28544b6

dev-python/seaborn: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 -
 dev-python/seaborn/seaborn-0.13.0.ebuild | 42 --------------------------------
 2 files changed, 43 deletions(-)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 5ccda5dd6c2a..1c63f5dae79f 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,2 +1 @@
-DIST seaborn-0.13.0.tar.gz 1455480 BLAKE2B 9f7383715366889ffd80788f901c574d9330285da2098e5695e944f1c6b92d4e417163a82378dd75c03233fc6485158401a1aaa461f2fa8e71a4cbc3ebf957cb SHA512 d603e880c29e05ab68f86d285c5c5ee9cf2da1d45265ed609f7bc87650fe20e80c026af487f63f9492a268f51ba5bab0cae4fd8fdeaf28125d16d317f9c937c8
 DIST seaborn-0.13.1.tar.gz 1457600 BLAKE2B 73296257f1d7525cebb90bf6f97fa6e5f91e3e9df653e0b9ab81eb6d04a1eb957a9c623aa8b4a715162175a501f55dd7e787335175503cab451bb03318e822cf SHA512 b90483bffd3435cc058143dccc854eb175ec7d7a095b8ce8261fbcad3f97f5e9b035a790a04dc2c64c35dda5b0ab8562f0b4a99e09a5e2fc9c4ee8323a153910

diff --git a/dev-python/seaborn/seaborn-0.13.0.ebuild b/dev-python/seaborn/seaborn-0.13.0.ebuild
deleted file mode 100644
index 7c075c896565..000000000000
--- a/dev-python/seaborn/seaborn-0.13.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..11} )
-inherit distutils-r1 multiprocessing pypi
-
-DESCRIPTION="Statistical data visualization"
-HOMEPAGE="https://seaborn.pydata.org https://github.com/mwaskom/seaborn"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-	>=dev-python/matplotlib-3.3[${PYTHON_USEDEP}]
-	>=dev-python/numpy-1.20[${PYTHON_USEDEP}]
-	>=dev-python/pandas-1.2[${PYTHON_USEDEP}]
-	>=dev-python/statsmodels-0.12[${PYTHON_USEDEP}]
-	>=dev-python/scipy-1.7[${PYTHON_USEDEP}]
-"
-BDEPEND="
-	test? (
-		dev-python/pytest-xdist[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-src_test() {
-	cat > matplotlibrc <<- EOF || die
-		backend : Agg
-	EOF
-
-	distutils-r1_src_test
-}
-
-python_test() {
-	epytest -n "$(makeopts_jobs)"
-}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-01-26  5:39 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2024-01-26  5:39 UTC (permalink / raw
  To: gentoo-commits

commit:     6a4398be8b2a309af5025f201e5fc2fd580e8fd7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 26 05:13:13 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 26 05:39:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a4398be

dev-python/seaborn: Bump to 0.13.2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 +
 dev-python/seaborn/seaborn-0.13.2.ebuild | 39 ++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 1c63f5dae79f..d3263edd9842 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1 +1,2 @@
 DIST seaborn-0.13.1.tar.gz 1457600 BLAKE2B 73296257f1d7525cebb90bf6f97fa6e5f91e3e9df653e0b9ab81eb6d04a1eb957a9c623aa8b4a715162175a501f55dd7e787335175503cab451bb03318e822cf SHA512 b90483bffd3435cc058143dccc854eb175ec7d7a095b8ce8261fbcad3f97f5e9b035a790a04dc2c64c35dda5b0ab8562f0b4a99e09a5e2fc9c4ee8323a153910
+DIST seaborn-0.13.2.tar.gz 1457696 BLAKE2B 82caa82da487cb880318313e2af270ac409ecde8f0b26f7c7ba39b1763f9f247fa9a4f7c90f989467004e84c41b7eeb9561d1a59e0a23d4d6994ae63e71c1894 SHA512 5a2f11865d0f5b8a9281f0dac1eaf4cd205828293b3e0a2f7f1c24e7d20c989582ecc7e40c32a0fab6736de1f7e126293d9ae5c270e9aa4e93704e86b6b51ef6

diff --git a/dev-python/seaborn/seaborn-0.13.2.ebuild b/dev-python/seaborn/seaborn-0.13.2.ebuild
new file mode 100644
index 000000000000..c377b54e8c4a
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.13.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Statistical data visualization"
+HOMEPAGE="
+	https://seaborn.pydata.org/
+	https://github.com/mwaskom/seaborn/
+	https://pypi.org/project/seaborn/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	>=dev-python/matplotlib-3.4[${PYTHON_USEDEP}]
+	>=dev-python/numpy-1.20[${PYTHON_USEDEP}]
+	>=dev-python/pandas-1.2[${PYTHON_USEDEP}]
+	>=dev-python/statsmodels-0.12[${PYTHON_USEDEP}]
+	>=dev-python/scipy-1.7[${PYTHON_USEDEP}]
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_test() {
+	cat > matplotlibrc <<- EOF || die
+		backend : Agg
+	EOF
+
+	distutils-r1_src_test
+}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-01-26 21:03 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2024-01-26 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     cbb641b9cf1789becb46bab923eb1158e2e16c34
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 26 21:01:34 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 26 21:03:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb641b9

dev-python/seaborn: Enable py3.12

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.13.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.13.2.ebuild b/dev-python/seaborn/seaborn-0.13.2.ebuild
index c377b54e8c4a..a4d31f49d279 100644
--- a/dev-python/seaborn/seaborn-0.13.2.ebuild
+++ b/dev-python/seaborn/seaborn-0.13.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-02-11 15:13 Sam James
  0 siblings, 0 replies; 37+ messages in thread
From: Sam James @ 2024-02-11 15:13 UTC (permalink / raw
  To: gentoo-commits

commit:     503a21724630c1f2f3e501d447adb8b8493c2175
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 11 15:12:20 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 11 15:13:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=503a2172

dev-python/seaborn: Stabilize 0.13.2 amd64, #924257

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.13.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.13.2.ebuild b/dev-python/seaborn/seaborn-0.13.2.ebuild
index a4d31f49d279..28627169720d 100644
--- a/dev-python/seaborn/seaborn-0.13.2.ebuild
+++ b/dev-python/seaborn/seaborn-0.13.2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	>=dev-python/matplotlib-3.4[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-02-11 16:02 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2024-02-11 16:02 UTC (permalink / raw
  To: gentoo-commits

commit:     1227f80ac87b710a1514ce026f5d6a32cc22f1d8
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 11 15:56:18 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 11 15:56:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1227f80a

dev-python/seaborn: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/Manifest              |  1 -
 dev-python/seaborn/seaborn-0.13.1.ebuild | 39 --------------------------------
 2 files changed, 40 deletions(-)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index d3263edd9842..9ea5f0535596 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1,2 +1 @@
-DIST seaborn-0.13.1.tar.gz 1457600 BLAKE2B 73296257f1d7525cebb90bf6f97fa6e5f91e3e9df653e0b9ab81eb6d04a1eb957a9c623aa8b4a715162175a501f55dd7e787335175503cab451bb03318e822cf SHA512 b90483bffd3435cc058143dccc854eb175ec7d7a095b8ce8261fbcad3f97f5e9b035a790a04dc2c64c35dda5b0ab8562f0b4a99e09a5e2fc9c4ee8323a153910
 DIST seaborn-0.13.2.tar.gz 1457696 BLAKE2B 82caa82da487cb880318313e2af270ac409ecde8f0b26f7c7ba39b1763f9f247fa9a4f7c90f989467004e84c41b7eeb9561d1a59e0a23d4d6994ae63e71c1894 SHA512 5a2f11865d0f5b8a9281f0dac1eaf4cd205828293b3e0a2f7f1c24e7d20c989582ecc7e40c32a0fab6736de1f7e126293d9ae5c270e9aa4e93704e86b6b51ef6

diff --git a/dev-python/seaborn/seaborn-0.13.1.ebuild b/dev-python/seaborn/seaborn-0.13.1.ebuild
deleted file mode 100644
index 864e12c40106..000000000000
--- a/dev-python/seaborn/seaborn-0.13.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Statistical data visualization"
-HOMEPAGE="
-	https://seaborn.pydata.org/
-	https://github.com/mwaskom/seaborn/
-	https://pypi.org/project/seaborn/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-	>=dev-python/matplotlib-3.4[${PYTHON_USEDEP}]
-	>=dev-python/numpy-1.20[${PYTHON_USEDEP}]
-	>=dev-python/pandas-1.2[${PYTHON_USEDEP}]
-	>=dev-python/statsmodels-0.12[${PYTHON_USEDEP}]
-	>=dev-python/scipy-1.7[${PYTHON_USEDEP}]
-"
-
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-src_test() {
-	cat > matplotlibrc <<- EOF || die
-		backend : Agg
-	EOF
-
-	distutils-r1_src_test
-}


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-02-28 19:49 Arthur Zamarin
  0 siblings, 0 replies; 37+ messages in thread
From: Arthur Zamarin @ 2024-02-28 19:49 UTC (permalink / raw
  To: gentoo-commits

commit:     79de782518ee9a194453022625f11190585aab40
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 28 19:07:31 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 28 19:48:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79de7825

dev-python/seaborn: unkeyword for ~x86

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.13.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.13.2.ebuild b/dev-python/seaborn/seaborn-0.13.2.ebuild
index 28627169720d..b7d3e8825fc5 100644
--- a/dev-python/seaborn/seaborn-0.13.2.ebuild
+++ b/dev-python/seaborn/seaborn-0.13.2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~amd64-linux"
 
 RDEPEND="
 	>=dev-python/matplotlib-3.4[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-07-11 18:37 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2024-07-11 18:37 UTC (permalink / raw
  To: gentoo-commits

commit:     e8031438f7cb1eac6b2384f79638e00c0e28024a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 11 18:29:32 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jul 11 18:29:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8031438

dev-python/seaborn: Enable py3.13

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.13.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/seaborn/seaborn-0.13.2.ebuild b/dev-python/seaborn/seaborn-0.13.2.ebuild
index d873ae99d638..dec22c29c233 100644
--- a/dev-python/seaborn/seaborn-0.13.2.ebuild
+++ b/dev-python/seaborn/seaborn-0.13.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1 pypi
 


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/
@ 2024-07-11 18:37 Michał Górny
  0 siblings, 0 replies; 37+ messages in thread
From: Michał Górny @ 2024-07-11 18:37 UTC (permalink / raw
  To: gentoo-commits

commit:     ebc876a3e3e7dae2b97c87f0a730eb6888eddee9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 11 18:29:25 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jul 11 18:29:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebc876a3

dev-python/seaborn: Fix tests with numpy-2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/seaborn/seaborn-0.13.2.ebuild | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/dev-python/seaborn/seaborn-0.13.2.ebuild b/dev-python/seaborn/seaborn-0.13.2.ebuild
index b7d3e8825fc5..d873ae99d638 100644
--- a/dev-python/seaborn/seaborn-0.13.2.ebuild
+++ b/dev-python/seaborn/seaborn-0.13.2.ebuild
@@ -30,6 +30,13 @@ RDEPEND="
 EPYTEST_XDIST=1
 distutils_enable_tests pytest
 
+src_prepare() {
+	distutils-r1_src_prepare
+
+	# https://github.com/mwaskom/seaborn/pull/3685
+	sed -i -e '/VisibleDeprecationWarning/d' tests/test_distributions.py || die
+}
+
 src_test() {
 	cat > matplotlibrc <<- EOF || die
 		backend : Agg


^ permalink raw reply related	[flat|nested] 37+ messages in thread

end of thread, other threads:[~2024-07-11 18:37 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-21 21:56 [gentoo-commits] repo/gentoo:master commit in: dev-python/seaborn/ Patrice Clement
  -- strict thread matches above, loose matches on Subject: below --
2024-07-11 18:37 Michał Górny
2024-07-11 18:37 Michał Górny
2024-02-28 19:49 Arthur Zamarin
2024-02-11 16:02 Michał Górny
2024-02-11 15:13 Sam James
2024-01-26 21:03 Michał Górny
2024-01-26  5:39 Michał Górny
2024-01-19  5:10 Michał Górny
2024-01-18 19:48 Sam James
2024-01-01  4:13 Michał Górny
2023-11-02  4:12 Sam James
2023-09-30  4:56 Michał Górny
2023-03-30 16:19 Michał Górny
2023-03-30 15:50 Arthur Zamarin
2022-10-08 19:28 Sam James
2022-09-06 17:54 Arthur Zamarin
2022-07-24  8:53 Joonas Niilola
2022-05-16 13:27 Michał Górny
2022-02-05 16:51 Arthur Zamarin
2021-10-20 19:21 Arthur Zamarin
2020-12-23 23:08 Sam James
2020-12-23 23:06 Sam James
2020-12-23 23:06 Sam James
2020-09-18 15:43 Michał Górny
2020-09-13 15:09 David Seifert
2018-07-25 17:29 Patrice Clement
2018-04-29  6:33 Michał Górny
2018-04-20  6:53 Michał Górny
2017-11-25 21:44 David Seifert
2017-05-02  8:47 Michał Górny
2016-12-10 21:59 Patrice Clement
2016-12-10 21:56 Patrice Clement
2016-12-10 21:56 Patrice Clement
2016-12-10 21:56 Patrice Clement
2016-01-25 19:45 Justin Lecher
2016-01-25 15:11 Justin Lecher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox