public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2015-08-21  9:35 Justin Lecher
  0 siblings, 0 replies; 71+ messages in thread
From: Justin Lecher @ 2015-08-21  9:35 UTC (permalink / raw
  To: gentoo-commits

commit:     160101da2af34dea11ce42d6f9c9bf8fd5faecf3
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 21 09:29:02 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Aug 21 09:35:04 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160101da

dev-python/patsy: Version Bump

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

 dev-python/patsy/Manifest           |  1 +
 dev-python/patsy/patsy-0.4.0.ebuild | 47 +++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 31c617b..f95f1a8 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1,3 +1,4 @@
 DIST patsy-0.2.0.tar.gz 315486 SHA256 1d399e504dc7c9e5f35460698dd4ebf098aa215e861ea4f5ded29e98e73740c3 SHA512 4e1028dcab58e2fc938c4f8dec0aeb148fbf7d2430855d8caa844bc19088b66a8ab9b83edc3f3066df41e751f1e0ff6d24478109be562e420da6c84e3f76763f WHIRLPOOL 2da9956373cc9bd2f13d277bcca37467ab8f5b37223f9c6bf6d59b6c69e7c54bdcc70433c990ea4a02aa424c497be08031966963721194af308cda1bb36edb13
 DIST patsy-0.2.1.tar.gz 316115 SHA256 31374ce25275813d8f1c48bdda40bba06f7a16cce7dcdfad73f43a555393d065 SHA512 b7cbd9b224081b2496292b23c134abfdd9decedfda433bc7c289b899003c527184e0ba0f729eca1f3bceceac0c43090d9b611b8b1f593df5ce2a01129fabf9f6 WHIRLPOOL 91b8bc896146e48c272429482d3294a35cbc0a46662e66b913811491b2d89005371dc6eb09f38a4a043e507fba3b359dcf3a1fc61e9bf88c462c8b9ebeb995d9
 DIST patsy-0.3.0.zip 414947 SHA256 a55dd4ca09af4b9608b81f30322beb450510964c022708ab50e83a065ccf15f0 SHA512 e716588372ca5c2cb8923b5a04c11be4911cb44e7af2c82ebf92aba478bd9ec6707bea5abfa11439038a6be7522c80fb5d67d452725669f38bc81bc9a0c1e2e8 WHIRLPOOL c0e82d8f15961d4954245c7abe03973b8f660c58e57962dbb3d0523a6a544d4a922c578f3394d72e00ca5656ed5a552aeab5633317bf52d33fd856e135094c30
+DIST patsy-0.4.0.zip 424027 SHA256 e4f3034f5593f0e2e66701b9bed623ca15c843ce293458a9ea0a0ad64d4a7acd SHA512 a8cbdfcb43cf97116abd00c272f51b1c561c8c01baa81e108d51ff05d29f75f465a92b04c875762324500f4fc2f2018856cc17e313658f0b502769ec9555cfc6 WHIRLPOOL 6e7c0b80c84e71911dcf7ba18601376cd97082937d1ab812e9a484285c27ef54d212875c0a2a0d0361f7cf19de4e263bb72049793a111d0a953777e7f9886f7d

diff --git a/dev-python/patsy/patsy-0.4.0.ebuild b/dev-python/patsy/patsy-0.4.0.ebuild
new file mode 100644
index 0000000..0bb5f9c
--- /dev/null
+++ b/dev-python/patsy/patsy-0.4.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	doc? (
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/matplotlib[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+		dev-python/pandas[${PYTHON_USEDEP}]
+		)
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_compile_all() {
+	use doc && emake -C doc html
+}
+
+python_test() {
+	cd "${BUILD_DIR}" || die
+	nosetests -v || die "Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && HTML_DOCS=( doc/_build/html/. )
+	distutils-r1_python_install_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2015-11-09 11:49 Justin Lecher
  0 siblings, 0 replies; 71+ messages in thread
From: Justin Lecher @ 2015-11-09 11:49 UTC (permalink / raw
  To: gentoo-commits

commit:     3f1086a97d0debb9251000f1337d2c5973fa5819
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  9 07:52:23 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Nov  9 11:49:41 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f1086a9

dev-python/patsy: Version Bump

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

 dev-python/patsy/Manifest           |  1 +
 dev-python/patsy/patsy-0.4.1.ebuild | 47 +++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index f95f1a8..1c29513 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -2,3 +2,4 @@ DIST patsy-0.2.0.tar.gz 315486 SHA256 1d399e504dc7c9e5f35460698dd4ebf098aa215e86
 DIST patsy-0.2.1.tar.gz 316115 SHA256 31374ce25275813d8f1c48bdda40bba06f7a16cce7dcdfad73f43a555393d065 SHA512 b7cbd9b224081b2496292b23c134abfdd9decedfda433bc7c289b899003c527184e0ba0f729eca1f3bceceac0c43090d9b611b8b1f593df5ce2a01129fabf9f6 WHIRLPOOL 91b8bc896146e48c272429482d3294a35cbc0a46662e66b913811491b2d89005371dc6eb09f38a4a043e507fba3b359dcf3a1fc61e9bf88c462c8b9ebeb995d9
 DIST patsy-0.3.0.zip 414947 SHA256 a55dd4ca09af4b9608b81f30322beb450510964c022708ab50e83a065ccf15f0 SHA512 e716588372ca5c2cb8923b5a04c11be4911cb44e7af2c82ebf92aba478bd9ec6707bea5abfa11439038a6be7522c80fb5d67d452725669f38bc81bc9a0c1e2e8 WHIRLPOOL c0e82d8f15961d4954245c7abe03973b8f660c58e57962dbb3d0523a6a544d4a922c578f3394d72e00ca5656ed5a552aeab5633317bf52d33fd856e135094c30
 DIST patsy-0.4.0.zip 424027 SHA256 e4f3034f5593f0e2e66701b9bed623ca15c843ce293458a9ea0a0ad64d4a7acd SHA512 a8cbdfcb43cf97116abd00c272f51b1c561c8c01baa81e108d51ff05d29f75f465a92b04c875762324500f4fc2f2018856cc17e313658f0b502769ec9555cfc6 WHIRLPOOL 6e7c0b80c84e71911dcf7ba18601376cd97082937d1ab812e9a484285c27ef54d212875c0a2a0d0361f7cf19de4e263bb72049793a111d0a953777e7f9886f7d
+DIST patsy-0.4.1.zip 425390 SHA256 dc1cc280045b0e6e50c04706fd1e26d2a00ea400aa112f88e8142f88b0b7d3d4 SHA512 24cf2e6f9a33e6dd795a839eb2b2ac9e0d45cd9c3d5250de17722914ac29436d0518388d0696b75d73236eda3c7819dc4fa24d6d9bc37d5ae035dde2af4510c3 WHIRLPOOL 55506dcd5744e769fe1387e8fcaad52743096e0df7d23f02faff20c2c8687fac3cea337bf22c7d9c7984e44c3d107c961ee248d156fafc0dc820574b78903eb6

diff --git a/dev-python/patsy/patsy-0.4.1.ebuild b/dev-python/patsy/patsy-0.4.1.ebuild
new file mode 100644
index 0000000..a669cf1
--- /dev/null
+++ b/dev-python/patsy/patsy-0.4.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	doc? (
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/matplotlib[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+		dev-python/pandas[${PYTHON_USEDEP}]
+		)
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_compile_all() {
+	use doc && emake -C doc html
+}
+
+python_test() {
+	cd "${BUILD_DIR}" || die
+	nosetests -v || die "Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && HTML_DOCS=( doc/_build/html/. )
+	distutils-r1_python_install_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2015-11-10 13:23 Agostino Sarubbo
  0 siblings, 0 replies; 71+ messages in thread
From: Agostino Sarubbo @ 2015-11-10 13:23 UTC (permalink / raw
  To: gentoo-commits

commit:     ad0e72a6a84bd95011e1aa73400c5a7591f863bf
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 10 13:23:34 2015 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Nov 10 13:23:34 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad0e72a6

dev-python/patsy: amd64 stable wrt bug #565186

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

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

diff --git a/dev-python/patsy/patsy-0.4.1.ebuild b/dev-python/patsy/patsy-0.4.1.ebuild
index a669cf1..fde54c7 100644
--- a/dev-python/patsy/patsy-0.4.1.ebuild
+++ b/dev-python/patsy/patsy-0.4.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2015-11-11  9:27 Justin Lecher
  0 siblings, 0 replies; 71+ messages in thread
From: Justin Lecher @ 2015-11-11  9:27 UTC (permalink / raw
  To: gentoo-commits

commit:     326464432c4855743a99716bc288e8014f6a7b07
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 11 09:25:26 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Nov 11 09:25:26 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32646443

dev-python/patsy: Clean old

obsoletes:
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=546532
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=550696

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

 dev-python/patsy/Manifest              |  4 ---
 dev-python/patsy/patsy-0.2.0.ebuild    | 42 ------------------------------
 dev-python/patsy/patsy-0.2.1.ebuild    | 42 ------------------------------
 dev-python/patsy/patsy-0.3.0-r1.ebuild | 44 -------------------------------
 dev-python/patsy/patsy-0.3.0.ebuild    | 42 ------------------------------
 dev-python/patsy/patsy-0.4.0.ebuild    | 47 ----------------------------------
 6 files changed, 221 deletions(-)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 1c29513..de88edd 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1,5 +1 @@
-DIST patsy-0.2.0.tar.gz 315486 SHA256 1d399e504dc7c9e5f35460698dd4ebf098aa215e861ea4f5ded29e98e73740c3 SHA512 4e1028dcab58e2fc938c4f8dec0aeb148fbf7d2430855d8caa844bc19088b66a8ab9b83edc3f3066df41e751f1e0ff6d24478109be562e420da6c84e3f76763f WHIRLPOOL 2da9956373cc9bd2f13d277bcca37467ab8f5b37223f9c6bf6d59b6c69e7c54bdcc70433c990ea4a02aa424c497be08031966963721194af308cda1bb36edb13
-DIST patsy-0.2.1.tar.gz 316115 SHA256 31374ce25275813d8f1c48bdda40bba06f7a16cce7dcdfad73f43a555393d065 SHA512 b7cbd9b224081b2496292b23c134abfdd9decedfda433bc7c289b899003c527184e0ba0f729eca1f3bceceac0c43090d9b611b8b1f593df5ce2a01129fabf9f6 WHIRLPOOL 91b8bc896146e48c272429482d3294a35cbc0a46662e66b913811491b2d89005371dc6eb09f38a4a043e507fba3b359dcf3a1fc61e9bf88c462c8b9ebeb995d9
-DIST patsy-0.3.0.zip 414947 SHA256 a55dd4ca09af4b9608b81f30322beb450510964c022708ab50e83a065ccf15f0 SHA512 e716588372ca5c2cb8923b5a04c11be4911cb44e7af2c82ebf92aba478bd9ec6707bea5abfa11439038a6be7522c80fb5d67d452725669f38bc81bc9a0c1e2e8 WHIRLPOOL c0e82d8f15961d4954245c7abe03973b8f660c58e57962dbb3d0523a6a544d4a922c578f3394d72e00ca5656ed5a552aeab5633317bf52d33fd856e135094c30
-DIST patsy-0.4.0.zip 424027 SHA256 e4f3034f5593f0e2e66701b9bed623ca15c843ce293458a9ea0a0ad64d4a7acd SHA512 a8cbdfcb43cf97116abd00c272f51b1c561c8c01baa81e108d51ff05d29f75f465a92b04c875762324500f4fc2f2018856cc17e313658f0b502769ec9555cfc6 WHIRLPOOL 6e7c0b80c84e71911dcf7ba18601376cd97082937d1ab812e9a484285c27ef54d212875c0a2a0d0361f7cf19de4e263bb72049793a111d0a953777e7f9886f7d
 DIST patsy-0.4.1.zip 425390 SHA256 dc1cc280045b0e6e50c04706fd1e26d2a00ea400aa112f88e8142f88b0b7d3d4 SHA512 24cf2e6f9a33e6dd795a839eb2b2ac9e0d45cd9c3d5250de17722914ac29436d0518388d0696b75d73236eda3c7819dc4fa24d6d9bc37d5ae035dde2af4510c3 WHIRLPOOL 55506dcd5744e769fe1387e8fcaad52743096e0df7d23f02faff20c2c8687fac3cea337bf22c7d9c7984e44c3d107c961ee248d156fafc0dc820574b78903eb6

diff --git a/dev-python/patsy/patsy-0.2.0.ebuild b/dev-python/patsy/patsy-0.2.0.ebuild
deleted file mode 100644
index e7fa8e2..0000000
--- a/dev-python/patsy/patsy-0.2.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? (
-		dev-python/ipython
-		dev-python/matplotlib
-		dev-python/sphinx )
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
-	use doc && emake -C doc html
-}
-
-python_test() {
-	cd "${BUILD_DIR}" || die
-	nosetests -v || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-	distutils-r1_python_install_all
-	use doc && dohtml -r doc/_build/html/*
-}

diff --git a/dev-python/patsy/patsy-0.2.1.ebuild b/dev-python/patsy/patsy-0.2.1.ebuild
deleted file mode 100644
index e7fa8e2..0000000
--- a/dev-python/patsy/patsy-0.2.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? (
-		dev-python/ipython
-		dev-python/matplotlib
-		dev-python/sphinx )
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
-	use doc && emake -C doc html
-}
-
-python_test() {
-	cd "${BUILD_DIR}" || die
-	nosetests -v || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-	distutils-r1_python_install_all
-	use doc && dohtml -r doc/_build/html/*
-}

diff --git a/dev-python/patsy/patsy-0.3.0-r1.ebuild b/dev-python/patsy/patsy-0.3.0-r1.ebuild
deleted file mode 100644
index fec3066..0000000
--- a/dev-python/patsy/patsy-0.3.0-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	sci-libs/scipy[${PYTHON_USEDEP}]
-	doc? (
-		dev-python/ipython[${PYTHON_USEDEP}]
-		dev-python/matplotlib[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
-		dev-python/pandas[${PYTHON_USEDEP}]
-		)
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
-	use doc && emake -C doc html
-}
-
-python_test() {
-	cd "${BUILD_DIR}" || die
-	nosetests -v || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-	distutils-r1_python_install_all
-	use doc && dohtml -r doc/_build/html/*
-}

diff --git a/dev-python/patsy/patsy-0.3.0.ebuild b/dev-python/patsy/patsy-0.3.0.ebuild
deleted file mode 100644
index ebc5e84..0000000
--- a/dev-python/patsy/patsy-0.3.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? (
-		dev-python/ipython[${PYTHON_USEDEP}]
-		dev-python/matplotlib[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
-		)
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
-	use doc && emake -C doc html
-}
-
-python_test() {
-	cd "${BUILD_DIR}" || die
-	nosetests -v || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-	distutils-r1_python_install_all
-	use doc && dohtml -r doc/_build/html/*
-}

diff --git a/dev-python/patsy/patsy-0.4.0.ebuild b/dev-python/patsy/patsy-0.4.0.ebuild
deleted file mode 100644
index a669cf1..0000000
--- a/dev-python/patsy/patsy-0.4.0.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	sci-libs/scipy[${PYTHON_USEDEP}]
-	doc? (
-		dev-python/ipython[${PYTHON_USEDEP}]
-		dev-python/matplotlib[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
-		dev-python/pandas[${PYTHON_USEDEP}]
-		)
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
-	use doc && emake -C doc html
-}
-
-python_test() {
-	cd "${BUILD_DIR}" || die
-	nosetests -v || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-	use doc && HTML_DOCS=( doc/_build/html/. )
-	distutils-r1_python_install_all
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2017-03-12 12:31 Zac Medico
  0 siblings, 0 replies; 71+ messages in thread
From: Zac Medico @ 2017-03-12 12:31 UTC (permalink / raw
  To: gentoo-commits

commit:     ec52561c90728a98846cfd18601d7c238e59487a
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 12 08:59:46 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun Mar 12 12:31:07 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec52561c

dev-python/patsy: Add python3_6 to PYTHON_COMPAT

Package-Manager: Portage-2.3.4, Repoman-2.3.2

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

diff --git a/dev-python/patsy/patsy-0.4.1.ebuild b/dev-python/patsy/patsy-0.4.1.ebuild
index 7bf657a7bbd..b10300a2593 100644
--- a/dev-python/patsy/patsy-0.4.1.ebuild
+++ b/dev-python/patsy/patsy-0.4.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2019-03-15 22:42 Patrice Clement
  0 siblings, 0 replies; 71+ messages in thread
From: Patrice Clement @ 2019-03-15 22:42 UTC (permalink / raw
  To: gentoo-commits

commit:     6020c496faa3d23842a201b610af58377cbfc1fb
Author:     Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Wed Mar 13 23:00:13 2019 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 22:42:19 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6020c496

dev-python/patsy: version bump to 0.5.1.

plus EAPI bump to 7

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Horea Christian <horea.christ <AT> yandex.com>
Closes: https://github.com/gentoo/gentoo/pull/11359
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 dev-python/patsy/Manifest           |  1 +
 dev-python/patsy/patsy-0.5.1.ebuild | 46 +++++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 9fe99193ebc..a19308dff17 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1 +1,2 @@
 DIST patsy-0.4.1.zip 425390 BLAKE2B b8d5696abcf35fcd5e49a7d3efdfb201976efdbe7e845f136dd0cdbfb0972d8372e54b8f4141139cff9ad4df3525c67a10a3c71bc1471991a810e834e0dd0ad9 SHA512 24cf2e6f9a33e6dd795a839eb2b2ac9e0d45cd9c3d5250de17722914ac29436d0518388d0696b75d73236eda3c7819dc4fa24d6d9bc37d5ae035dde2af4510c3
+DIST patsy-0.5.1.tar.gz 397623 BLAKE2B b8861e8c8e223db5df616c378d5b1ce475a1b337d049723c1a4b01432d9e1569c4b6537dc467fbc1ba83dfc7cd999ad188008e387c446f2133f872393c9eb960 SHA512 aeb56411e68713ec75c0b5344890939f721c460d3c7643b9fd57d7c928421d21408b0f2963348edf27a025842989dbae6fd5cfccd3f9d9497d60a1dffe8d7bdc

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
new file mode 100644
index 00000000000..dc375b85bbf
--- /dev/null
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
+SRC_URI="https://files.pythonhosted.org/packages/49/c7/b971d8685c52512dbaa45bf8d076695432245a9f59509fb20a6c8e4ff69a/patsy-0.5.1.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	doc? (
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/matplotlib[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+		dev-python/pandas[${PYTHON_USEDEP}]
+		)
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_compile_all() {
+	use doc && emake -C doc html
+}
+
+python_test() {
+	cd "${BUILD_DIR}" || die
+	nosetests -v || die "Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && HTML_DOCS=( doc/_build/html/. )
+	distutils-r1_python_install_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2020-01-17  7:47 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2020-01-17  7:47 UTC (permalink / raw
  To: gentoo-commits

commit:     6049b7d125ab3de8d28204115ddd417376c04925
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 20:41:11 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 07:47:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6049b7d1

dev-python/patsy: Remove Python 2

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

 dev-python/patsy/patsy-0.4.1.ebuild | 2 +-
 dev-python/patsy/patsy-0.5.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/patsy/patsy-0.4.1.ebuild b/dev-python/patsy/patsy-0.4.1.ebuild
index ddc0a1cc41d..613596d543e 100644
--- a/dev-python/patsy/patsy-0.4.1.ebuild
+++ b/dev-python/patsy/patsy-0.4.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
 
 inherit distutils-r1
 

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 7d2a0db0b34..5bc58064444 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2020-01-17  7:47 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2020-01-17  7:47 UTC (permalink / raw
  To: gentoo-commits

commit:     498f167a0a20b1f9eacfacb3d3f40bae27526d57
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 17 06:16:58 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 07:47:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=498f167a

dev-python/patsy: Return to reusable SRC_URI

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

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 005ace41e31..af9d564db12 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -8,7 +8,7 @@ inherit distutils-r1
 
 DESCRIPTION="Python module to describe statistical models and design matrices"
 HOMEPAGE="https://patsy.readthedocs.org/en/latest/index.html"
-SRC_URI="https://files.pythonhosted.org/packages/49/c7/b971d8685c52512dbaa45bf8d076695432245a9f59509fb20a6c8e4ff69a/patsy-0.5.1.tar.gz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2020-01-17  7:47 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2020-01-17  7:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f2690dae243e84caf2210b0af855c4c59439c18a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 17 06:16:12 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 07:47:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2690dae

dev-python/patsy: Use HTTPS

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

 dev-python/patsy/patsy-0.4.1.ebuild | 2 +-
 dev-python/patsy/patsy-0.5.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/patsy/patsy-0.4.1.ebuild b/dev-python/patsy/patsy-0.4.1.ebuild
index 613596d543e..922367425e1 100644
--- a/dev-python/patsy/patsy-0.4.1.ebuild
+++ b/dev-python/patsy/patsy-0.4.1.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_6 )
 inherit distutils-r1
 
 DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
+HOMEPAGE="https://patsy.readthedocs.org/en/latest/index.html"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
 
 LICENSE="BSD"

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 5bc58064444..005ace41e31 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7} )
 inherit distutils-r1
 
 DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
+HOMEPAGE="https://patsy.readthedocs.org/en/latest/index.html"
 SRC_URI="https://files.pythonhosted.org/packages/49/c7/b971d8685c52512dbaa45bf8d076695432245a9f59509fb20a6c8e4ff69a/patsy-0.5.1.tar.gz"
 
 LICENSE="BSD"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2020-03-28 11:36 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2020-03-28 11:36 UTC (permalink / raw
  To: gentoo-commits

commit:     f3caab2cb55f79cd50b6bb47ba2411299ba8e2ff
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 28 11:32:47 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 28 11:36:39 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3caab2c

dev-python/patsy: Remove redundant versions

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

 dev-python/patsy/Manifest           |  1 -
 dev-python/patsy/patsy-0.4.1.ebuild | 47 -------------------------------------
 2 files changed, 48 deletions(-)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index a19308dff17..f7b04d950b1 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1,2 +1 @@
-DIST patsy-0.4.1.zip 425390 BLAKE2B b8d5696abcf35fcd5e49a7d3efdfb201976efdbe7e845f136dd0cdbfb0972d8372e54b8f4141139cff9ad4df3525c67a10a3c71bc1471991a810e834e0dd0ad9 SHA512 24cf2e6f9a33e6dd795a839eb2b2ac9e0d45cd9c3d5250de17722914ac29436d0518388d0696b75d73236eda3c7819dc4fa24d6d9bc37d5ae035dde2af4510c3
 DIST patsy-0.5.1.tar.gz 397623 BLAKE2B b8861e8c8e223db5df616c378d5b1ce475a1b337d049723c1a4b01432d9e1569c4b6537dc467fbc1ba83dfc7cd999ad188008e387c446f2133f872393c9eb960 SHA512 aeb56411e68713ec75c0b5344890939f721c460d3c7643b9fd57d7c928421d21408b0f2963348edf27a025842989dbae6fd5cfccd3f9d9497d60a1dffe8d7bdc

diff --git a/dev-python/patsy/patsy-0.4.1.ebuild b/dev-python/patsy/patsy-0.4.1.ebuild
deleted file mode 100644
index 922367425e1..00000000000
--- a/dev-python/patsy/patsy-0.4.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="https://patsy.readthedocs.org/en/latest/index.html"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	sci-libs/scipy[${PYTHON_USEDEP}]
-	doc? (
-		dev-python/ipython[${PYTHON_USEDEP}]
-		dev-python/matplotlib[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
-		dev-python/pandas[${PYTHON_USEDEP}]
-		)
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
-	use doc && emake -C doc html
-}
-
-python_test() {
-	cd "${BUILD_DIR}" || die
-	nosetests -v || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-	use doc && HTML_DOCS=( doc/_build/html/. )
-	distutils-r1_python_install_all
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2020-04-29  4:12 Patrick McLean
  0 siblings, 0 replies; 71+ messages in thread
From: Patrick McLean @ 2020-04-29  4:12 UTC (permalink / raw
  To: gentoo-commits

commit:     44deb1b6f6c971e3983763466ba10de8d8ba46cd
Author:     Patrick McLean <patrick.mclean <AT> sony <DOT> com>
AuthorDate: Wed Apr 29 02:41:54 2020 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Wed Apr 29 04:11:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44deb1b6

dev-python/patsy-0.5.1: add py38

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index af9d564db12..7ae07545ef4 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2020-06-12 13:20 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2020-06-12 13:20 UTC (permalink / raw
  To: gentoo-commits

commit:     88cb1fdfbfdc14408b5c0e847f5323e6be313d76
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 12 12:31:19 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jun 12 13:20:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88cb1fdf

dev-python/patsy: Port to py3.9

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

 dev-python/patsy/patsy-0.5.1.ebuild | 20 +++++++-------------
 1 file changed, 7 insertions(+), 13 deletions(-)

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 7ae07545ef4..55fef3e0521 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit distutils-r1
 
@@ -13,33 +13,27 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
+IUSE="doc"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]
 	dev-python/six[${PYTHON_USEDEP}]
-	"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
 	sci-libs/scipy[${PYTHON_USEDEP}]
+	"
+BDEPEND="
 	doc? (
 		dev-python/ipython[${PYTHON_USEDEP}]
 		dev-python/matplotlib[${PYTHON_USEDEP}]
 		dev-python/sphinx[${PYTHON_USEDEP}]
 		dev-python/pandas[${PYTHON_USEDEP}]
-		)
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+		)"
+
+distutils_enable_tests nose
 
 python_compile_all() {
 	use doc && emake -C doc html
 }
 
-python_test() {
-	cd "${BUILD_DIR}" || die
-	nosetests -v || die "Testing failed with ${EPYTHON}"
-}
-
 python_install_all() {
 	use doc && HTML_DOCS=( doc/_build/html/. )
 	distutils-r1_python_install_all


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2020-08-18  5:28 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2020-08-18  5:28 UTC (permalink / raw
  To: gentoo-commits

commit:     47317060032633013e640ada629f67f45ca3d953
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 18 05:26:17 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 18 05:26:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47317060

dev-python/patsy: arm64 keyworded (bug #723912)

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 55fef3e0521..2deb3f15619 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.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 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2020-08-18  5:52 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2020-08-18  5:52 UTC (permalink / raw
  To: gentoo-commits

commit:     c88f954f3945d827788f215dc9c5d2b5c1b466f0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 18 05:36:20 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 18 05:36:20 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c88f954f

dev-python/patsy: Keyword 0.5.1 arm, #723912

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

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 2deb3f15619..e6498661a78 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-08-16 11:46 Marek Szuba
  0 siblings, 0 replies; 71+ messages in thread
From: Marek Szuba @ 2021-08-16 11:46 UTC (permalink / raw
  To: gentoo-commits

commit:     335dd09c512ca4cdfbe13bd94d0262e8250f6db0
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 15 22:51:05 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Aug 16 11:45:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=335dd09c

dev-python/patsy: keyword 0.5.1 for ~riscv

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 3b4305a3305..d95c6f19a03 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-09-06  0:13 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-09-06  0:13 UTC (permalink / raw
  To: gentoo-commits

commit:     ca434b84d88c5e5ac2e3cd664a4b8ccf3f02af5c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  6 00:12:40 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep  6 00:12:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca434b84

dev-python/patsy: Keyword 0.5.1 ppc, #804136

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

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index d95c6f19a03..95123f6f243 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

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

commit:     3b55efd8d513d4f2264ad85acf8b5165eda69f66
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  6 23:37:37 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep  6 23:37:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b55efd8

dev-python/patsy: Keyword 0.5.1 ppc64, #804136

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

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 95123f6f243..2b8d1ba6d4a 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-09-06 23:42 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-09-06 23:42 UTC (permalink / raw
  To: gentoo-commits

commit:     32150ecd75e8cf41b7c701e4e8fb45e957afb146
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  6 23:42:25 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep  6 23:42:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32150ecd

dev-python/patsy: Keyword 0.5.1 s390, #804136

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

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 2b8d1ba6d4a..7fdac08852e 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-09-26  6:52 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2021-09-26  6:52 UTC (permalink / raw
  To: gentoo-commits

commit:     21f72c2fae4daf8fe109549a269b286e0267dbbd
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 26 06:14:02 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 26 06:52:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f72c2f

dev-python/patsy: Bump to 0.5.2

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

 dev-python/patsy/Manifest           |  1 +
 dev-python/patsy/patsy-0.5.2.ebuild | 23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index f7b04d950b1..b66b50f379e 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1 +1,2 @@
 DIST patsy-0.5.1.tar.gz 397623 BLAKE2B b8861e8c8e223db5df616c378d5b1ce475a1b337d049723c1a4b01432d9e1569c4b6537dc467fbc1ba83dfc7cd999ad188008e387c446f2133f872393c9eb960 SHA512 aeb56411e68713ec75c0b5344890939f721c460d3c7643b9fd57d7c928421d21408b0f2963348edf27a025842989dbae6fd5cfccd3f9d9497d60a1dffe8d7bdc
+DIST patsy-0.5.2.tar.gz 397275 BLAKE2B 3aa5dc310729bd979c78004d5f1badb83b75b08d290cf8258191c87d61401f0b6ecd9490f1c4b932269e545c50a16694e44de9c076ca80648717c5f1af62fb69 SHA512 898df5536b0ff3a4d299e69c5f73a3d754cfbe78fe463fb4c4726cfd67d4e30c77cd3d7093131737207cb9f29c1374ab20a68ec5978007ea51878ec7c395f48d

diff --git a/dev-python/patsy/patsy-0.5.2.ebuild b/dev-python/patsy/patsy-0.5.2.ebuild
new file mode 100644
index 00000000000..79ca7593449
--- /dev/null
+++ b/dev-python/patsy/patsy-0.5.2.ebuild
@@ -0,0 +1,23 @@
+# 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="Python module to describe statistical models and design matrices"
+HOMEPAGE="https://patsy.readthedocs.io/en/latest/index.html"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/scipy[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-10-02 23:17 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-10-02 23:17 UTC (permalink / raw
  To: gentoo-commits

commit:     8bbd4e0645529915eb9a5971bca875adc821c6c9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  2 23:16:56 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  2 23:16:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bbd4e06

dev-python/patsy: Stabilize 0.5.1 arm, #813567

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

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 7fdac08852e..46086874471 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-10-24 21:14 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-10-24 21:14 UTC (permalink / raw
  To: gentoo-commits

commit:     a58e5c6055134e427541ba34051c9834f017be17
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 24 21:14:20 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 24 21:14:20 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a58e5c60

dev-python/patsy: Stabilize 0.5.1 arm64, #813567

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

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

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild b/dev-python/patsy/patsy-0.5.1.ebuild
index 46086874471..b728b8b52fb 100644
--- a/dev-python/patsy/patsy-0.5.1.ebuild
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-10-31 17:58 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-10-31 17:58 UTC (permalink / raw
  To: gentoo-commits

commit:     3b6e0d3edfe2479a6444f9299432d6c2d5d76b4b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 31 17:56:36 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 31 17:56:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b6e0d3e

dev-python/patsy: Stabilize 0.5.2 x86, #821001

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

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

diff --git a/dev-python/patsy/patsy-0.5.2.ebuild b/dev-python/patsy/patsy-0.5.2.ebuild
index a2fd9941dee..7a3cc8df96f 100644
--- a/dev-python/patsy/patsy-0.5.2.ebuild
+++ b/dev-python/patsy/patsy-0.5.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-10-31 18:02 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-10-31 18:02 UTC (permalink / raw
  To: gentoo-commits

commit:     1536f754ec8842b083ae88508ee9c958b024b015
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 31 18:01:24 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 31 18:01:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1536f754

dev-python/patsy: Stabilize 0.5.2 arm64, #821001

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

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

diff --git a/dev-python/patsy/patsy-0.5.2.ebuild b/dev-python/patsy/patsy-0.5.2.ebuild
index 7a3cc8df96f..19860f28f60 100644
--- a/dev-python/patsy/patsy-0.5.2.ebuild
+++ b/dev-python/patsy/patsy-0.5.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-11-08  6:22 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-11-08  6:22 UTC (permalink / raw
  To: gentoo-commits

commit:     10590b8aaaa2a961366d9a4ee0f6f78fb3ab2ebc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  8 06:21:21 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov  8 06:21:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10590b8a

dev-python/patsy: Stabilize 0.5.2 arm, #821001

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

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

diff --git a/dev-python/patsy/patsy-0.5.2.ebuild b/dev-python/patsy/patsy-0.5.2.ebuild
index 19860f28f60..eec307023cb 100644
--- a/dev-python/patsy/patsy-0.5.2.ebuild
+++ b/dev-python/patsy/patsy-0.5.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-11-14 23:51 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-11-14 23:51 UTC (permalink / raw
  To: gentoo-commits

commit:     db0d4d52ef14fa2c4e6b03dc74a3d248ab627c02
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 14 23:50:55 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 23:50:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db0d4d52

dev-python/patsy: Stabilize 0.5.2 ppc64, #813567

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

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

diff --git a/dev-python/patsy/patsy-0.5.2.ebuild b/dev-python/patsy/patsy-0.5.2.ebuild
index 8c51e583e09a..b643ff1d8e6a 100644
--- a/dev-python/patsy/patsy-0.5.2.ebuild
+++ b/dev-python/patsy/patsy-0.5.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-11-18 11:03 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-11-18 11:03 UTC (permalink / raw
  To: gentoo-commits

commit:     6543f2ff1f916ef7e6755fe6464d0e2b28a984b4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 18 11:03:03 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 18 11:03:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6543f2ff

dev-python/patsy: avoid scipy dependency on HPPA

scipy doesn't build on HPPA and the dep is somewhat optional here
(and we only need this package for tests anyway).

Bug: https://bugs.gentoo.org/804115
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-python/patsy/patsy-0.5.2.ebuild b/dev-python/patsy/patsy-0.5.2.ebuild
index b643ff1d8e6a..ee149ea18d25 100644
--- a/dev-python/patsy/patsy-0.5.2.ebuild
+++ b/dev-python/patsy/patsy-0.5.2.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="amd64 arm arm64 ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]
 	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/scipy[${PYTHON_USEDEP}]
+	!hppa? ( dev-python/scipy[${PYTHON_USEDEP}] )
 "
 
 distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2021-11-20  6:35 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2021-11-20  6:35 UTC (permalink / raw
  To: gentoo-commits

commit:     44f5645d5badb7cd72da63de5c885bcbb2de59db
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 20 06:35:38 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 20 06:35:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f5645d

dev-python/patsy: Keyword 0.5.2 hppa, #804136

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

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

diff --git a/dev-python/patsy/patsy-0.5.2.ebuild b/dev-python/patsy/patsy-0.5.2.ebuild
index ee149ea18d25..636a031ecab5 100644
--- a/dev-python/patsy/patsy-0.5.2.ebuild
+++ b/dev-python/patsy/patsy-0.5.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-06-05  5:36 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2022-06-05  5:36 UTC (permalink / raw
  To: gentoo-commits

commit:     34e12a059220d96a329fbb890469719f7a5d078d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  5 05:31:41 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun  5 05:31:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e12a05

dev-python/patsy: Add python@ as co-maint.

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

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

diff --git a/dev-python/patsy/metadata.xml b/dev-python/patsy/metadata.xml
index c35cd2c23489..f9b91ca76c88 100644
--- a/dev-python/patsy/metadata.xml
+++ b/dev-python/patsy/metadata.xml
@@ -5,6 +5,10 @@
     <email>sci-mathematics@gentoo.org</email>
     <name>Gentoo Mathematics Project</name>
   </maintainer>
+  <maintainer type="project">
+    <email>python@gentoo.org</email>
+    <name>Python</name>
+  </maintainer>
   <longdescription>
   A Python package for describing statistical models and for building
   design matrices. It is closely inspired by and compatible with the


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-10-10  7:43 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2022-10-10  7:43 UTC (permalink / raw
  To: gentoo-commits

commit:     740725659c15a534468ba67c356429a9dccd6838
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 10 06:46:33 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 10 07:43:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74072565

dev-python/patsy: add 0.5.3

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

 dev-python/patsy/Manifest           |  1 +
 dev-python/patsy/patsy-0.5.3.ebuild | 23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 67873491e698..1a4b898c0d39 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1 +1,2 @@
 DIST patsy-0.5.2.tar.gz 397275 BLAKE2B 3aa5dc310729bd979c78004d5f1badb83b75b08d290cf8258191c87d61401f0b6ecd9490f1c4b932269e545c50a16694e44de9c076ca80648717c5f1af62fb69 SHA512 898df5536b0ff3a4d299e69c5f73a3d754cfbe78fe463fb4c4726cfd67d4e30c77cd3d7093131737207cb9f29c1374ab20a68ec5978007ea51878ec7c395f48d
+DIST patsy-0.5.3.tar.gz 397680 BLAKE2B 43696f9e95c124cab5bf907723596d8b2b15f0539fbd2b9c2a2fcc76591e935020929ba31fd5378114fe58d22a9931508d89edf21f24b00c916a6e78dc4ee58f SHA512 9a6ea2382287208013e02bab7cba9378311a8e18fe059593aa99090bb6191efa74badff011424a7f6b3c8ec72c1b8650637322b71617f23357bb4b38ac6a79a0

diff --git a/dev-python/patsy/patsy-0.5.3.ebuild b/dev-python/patsy/patsy-0.5.3.ebuild
new file mode 100644
index 000000000000..14d0d4386090
--- /dev/null
+++ b/dev-python/patsy/patsy-0.5.3.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="https://patsy.readthedocs.io/en/latest/index.html"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	!hppa? ( dev-python/scipy[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-10-10  7:43 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2022-10-10  7:43 UTC (permalink / raw
  To: gentoo-commits

commit:     027d27ebaaf48e1b459a90b459ae5688b1c2dc5a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 10 06:46:58 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 10 07:43:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=027d27eb

dev-python/patsy: add github upstream metadata

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

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

diff --git a/dev-python/patsy/metadata.xml b/dev-python/patsy/metadata.xml
index f9b91ca76c88..9daa9a67231b 100644
--- a/dev-python/patsy/metadata.xml
+++ b/dev-python/patsy/metadata.xml
@@ -16,5 +16,6 @@
 </longdescription>
   <upstream>
     <remote-id type="pypi">patsy</remote-id>
+    <remote-id type="github">pydata/patsy</remote-id>
   </upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-10-14 15:09 Andrew Ammerlaan
  0 siblings, 0 replies; 71+ messages in thread
From: Andrew Ammerlaan @ 2022-10-14 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     23a1637ec50e61ddebc6ad4468d9d7cec034e51c
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 13:40:58 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 15:09:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23a1637e

dev-python/patsy: pep517, enable py3_11

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
new file mode 100644
index 000000000000..5bc24b1a5b23
--- /dev/null
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="https://patsy.readthedocs.io/en/latest/index.html"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	!hppa? ( dev-python/scipy[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-11-10 19:03 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2022-11-10 19:03 UTC (permalink / raw
  To: gentoo-commits

commit:     e4606209d936745d9f80b1029630b6d6c1ef26b7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 10 19:03:22 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 19:03:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4606209

dev-python/patsy: Stabilize 0.5.3-r1 arm, #880777

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 5bc24b1a5b23..e21aa37fcf96 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-11-10 19:23 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2022-11-10 19:23 UTC (permalink / raw
  To: gentoo-commits

commit:     fd449957a639e9946254bdb496a2808e6ee97bc0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 10 19:23:03 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 19:23:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd449957

dev-python/patsy: Stabilize 0.5.3-r1 ppc, #880777

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index e21aa37fcf96..514d31aea7e9 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-11-10 19:41 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2022-11-10 19:41 UTC (permalink / raw
  To: gentoo-commits

commit:     9b0f8eee1f361044ed08305991d9424027329892
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 10 19:41:49 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 19:41:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b0f8eee

dev-python/patsy: Stabilize 0.5.3-r1 ppc64, #880777

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 514d31aea7e9..3e611de39162 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-11-11  4:25 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2022-11-11  4:25 UTC (permalink / raw
  To: gentoo-commits

commit:     5699521944711d858283cd7dc5d9dafbb0304024
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 11 04:24:59 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 11 04:24:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56995219

dev-python/patsy: Stabilize 0.5.3-r1 x86, #880777

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 3e611de39162..1851a5d057c8 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-11-11  4:27 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2022-11-11  4:27 UTC (permalink / raw
  To: gentoo-commits

commit:     edd7349dbdc0e6cbfe6e54d5587c5cec8cd3f89a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 11 04:26:52 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 11 04:26:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edd7349d

dev-python/patsy: Stabilize 0.5.3-r1 arm64, #880777

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 1851a5d057c8..5b4cab0a68ce 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-11-11  7:04 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2022-11-11  7:04 UTC (permalink / raw
  To: gentoo-commits

commit:     f503a940bc23c70e6a59ca340e854c834f015261
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 11 07:03:48 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 11 07:03:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f503a940

dev-python/patsy: Stabilize 0.5.3-r1 amd64, #880777

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 5b4cab0a68ce..0987fc447fa1 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-11-11 12:01 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2022-11-11 12:01 UTC (permalink / raw
  To: gentoo-commits

commit:     c69b57e6135bd23f276ff7c020c110cb9780b161
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 11 11:57:13 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 11 12:01:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c69b57e6

dev-python/patsy: Remove old

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

 dev-python/patsy/Manifest           |  1 -
 dev-python/patsy/patsy-0.5.2.ebuild | 23 -----------------------
 dev-python/patsy/patsy-0.5.3.ebuild | 23 -----------------------
 3 files changed, 47 deletions(-)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 1a4b898c0d39..4b6452e86436 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1,2 +1 @@
-DIST patsy-0.5.2.tar.gz 397275 BLAKE2B 3aa5dc310729bd979c78004d5f1badb83b75b08d290cf8258191c87d61401f0b6ecd9490f1c4b932269e545c50a16694e44de9c076ca80648717c5f1af62fb69 SHA512 898df5536b0ff3a4d299e69c5f73a3d754cfbe78fe463fb4c4726cfd67d4e30c77cd3d7093131737207cb9f29c1374ab20a68ec5978007ea51878ec7c395f48d
 DIST patsy-0.5.3.tar.gz 397680 BLAKE2B 43696f9e95c124cab5bf907723596d8b2b15f0539fbd2b9c2a2fcc76591e935020929ba31fd5378114fe58d22a9931508d89edf21f24b00c916a6e78dc4ee58f SHA512 9a6ea2382287208013e02bab7cba9378311a8e18fe059593aa99090bb6191efa74badff011424a7f6b3c8ec72c1b8650637322b71617f23357bb4b38ac6a79a0

diff --git a/dev-python/patsy/patsy-0.5.2.ebuild b/dev-python/patsy/patsy-0.5.2.ebuild
deleted file mode 100644
index 636a031ecab5..000000000000
--- a/dev-python/patsy/patsy-0.5.2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# 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="Python module to describe statistical models and design matrices"
-HOMEPAGE="https://patsy.readthedocs.io/en/latest/index.html"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	!hppa? ( dev-python/scipy[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest

diff --git a/dev-python/patsy/patsy-0.5.3.ebuild b/dev-python/patsy/patsy-0.5.3.ebuild
deleted file mode 100644
index 14d0d4386090..000000000000
--- a/dev-python/patsy/patsy-0.5.3.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="https://patsy.readthedocs.io/en/latest/index.html"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	!hppa? ( dev-python/scipy[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-11-14 15:03 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2022-11-14 15:03 UTC (permalink / raw
  To: gentoo-commits

commit:     3545e8355a7d71413f2c169bd30a1e70832b80ba
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 14 15:03:23 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 14 15:03:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3545e835

dev-python/patsy: Keyword 0.5.3-r1 ia64, #877143

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 0987fc447fa1..0b31ac5504ad 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2022-11-14 15:03 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2022-11-14 15:03 UTC (permalink / raw
  To: gentoo-commits

commit:     53359e4d1bfd91c5f28bf0219cf3230dc0f05d89
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 14 15:03:28 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 14 15:03:28 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53359e4d

dev-python/patsy: Keyword 0.5.3-r1 sparc, #877143

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 0b31ac5504ad..eca8150123f5 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

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

commit:     251e77d61dce50a3e752734fec4327bd7b102d67
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 15 17:47:13 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 03:59:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=251e77d6

dev-python/patsy: Use pypi.eclass

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index f1a4ba4de248..2f33fc56b8bf 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -5,11 +5,10 @@ EAPI=8
 
 PYTHON_COMPAT=( python3_{9..11} )
 DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
+inherit distutils-r1 pypi
 
 DESCRIPTION="Python module to describe statistical models and design matrices"
 HOMEPAGE="https://patsy.readthedocs.io/en/latest/index.html"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2023-11-01 17:09 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2023-11-01 17:09 UTC (permalink / raw
  To: gentoo-commits

commit:     83c49f6e287c769e4679bfa4236a0f5f69078671
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  1 16:57:18 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Nov  1 17:09:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c49f6e

dev-python/patsy: Add py3.12 note

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 26cd660d866f..7f8a8658c1bb 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -3,12 +3,18 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
 DISTUTILS_USE_PEP517=setuptools
+# py3.12: https://github.com/pydata/patsy/issues/196
+PYTHON_COMPAT=( python3_{10..11} )
+
 inherit distutils-r1 pypi
 
 DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="https://patsy.readthedocs.io/en/latest/index.html"
+HOMEPAGE="
+	https://patsy.readthedocs.io/en/latest/index.html
+	https://github.com/pydata/patsy/
+	https://pypi.org/project/patsy/
+"
 
 LICENSE="BSD"
 SLOT="0"
@@ -17,7 +23,9 @@ KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]
 	dev-python/six[${PYTHON_USEDEP}]
-	!hppa? ( dev-python/scipy[${PYTHON_USEDEP}] )
+	!hppa? (
+		dev-python/scipy[${PYTHON_USEDEP}]
+	)
 "
 
 distutils_enable_tests pytest


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

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

commit:     56716338e704c01e9f9d3cf98863461a3f8ecdf8
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 30 14:13:49 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Nov 30 14:14:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56716338

dev-python/patsy: Enable pypy3

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 7f8a8658c1bb..53e026ea588d 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 # py3.12: https://github.com/pydata/patsy/issues/196
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( pypy3 python3_{10..11} )
 
 inherit distutils-r1 pypi
 


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

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

commit:     99d9e77bb674dade04cc18715cceba33b09dc562
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  1 05:21:09 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec  1 05:38:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99d9e77b

dev-python/patsy: Bump to 0.5.4

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

 dev-python/patsy/Manifest           |  1 +
 dev-python/patsy/patsy-0.5.4.ebuild | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 4b6452e86436..0701b1d0065d 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1 +1,2 @@
 DIST patsy-0.5.3.tar.gz 397680 BLAKE2B 43696f9e95c124cab5bf907723596d8b2b15f0539fbd2b9c2a2fcc76591e935020929ba31fd5378114fe58d22a9931508d89edf21f24b00c916a6e78dc4ee58f SHA512 9a6ea2382287208013e02bab7cba9378311a8e18fe059593aa99090bb6191efa74badff011424a7f6b3c8ec72c1b8650637322b71617f23357bb4b38ac6a79a0
+DIST patsy-0.5.4.tar.gz 397809 BLAKE2B d10a4a155d3346b7a5968af914e68f1c2508208eda5658091b40c4df421c6b5566278bfe7db856793a477cb9c78ed7bc8aae4209dde7b476d0d8a19164602797 SHA512 4fa6b099a12464b1ad1685e0d9ca0e9640c059d5021631e6c52f4025ff100899824e722d9b12107c49dc987e8f3e377aeeb007889d8b35b3f1e4cdf5ca491d2f

diff --git a/dev-python/patsy/patsy-0.5.4.ebuild b/dev-python/patsy/patsy-0.5.4.ebuild
new file mode 100644
index 000000000000..c36201d8ef27
--- /dev/null
+++ b/dev-python/patsy/patsy-0.5.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="
+	https://patsy.readthedocs.io/en/latest/index.html
+	https://github.com/pydata/patsy/
+	https://pypi.org/project/patsy/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	!hppa? (
+		dev-python/scipy[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2023-12-08 19:39 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2023-12-08 19:39 UTC (permalink / raw
  To: gentoo-commits

commit:     34db97653002a33140803c45b81f50ff3dc601c2
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  8 19:39:35 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec  8 19:39:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34db9765

dev-python/patsy: Keyword 0.5.4 s390, #916250

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

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

diff --git a/dev-python/patsy/patsy-0.5.4.ebuild b/dev-python/patsy/patsy-0.5.4.ebuild
index c36201d8ef27..d2134e279146 100644
--- a/dev-python/patsy/patsy-0.5.4.ebuild
+++ b/dev-python/patsy/patsy-0.5.4.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2023-12-09 16:45 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2023-12-09 16:45 UTC (permalink / raw
  To: gentoo-commits

commit:     c93102ff1361bf2f38afec6f5601e7f318544b90
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  9 16:42:59 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec  9 16:42:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c93102ff

dev-python/patsy: unkeyword 0.5.3-r1 for ~ia64

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

 dev-python/patsy/patsy-0.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
index 53e026ea588d..610faf6f5a84 100644
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ b/dev-python/patsy/patsy-0.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2023-12-24 17:21 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2023-12-24 17:21 UTC (permalink / raw
  To: gentoo-commits

commit:     9d5915789a6828e5a50c8e8e6ef5256864234f5d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 24 17:21:05 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 24 17:21:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d591578

dev-python/patsy: Stabilize 0.5.4 x86, #920605

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

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

diff --git a/dev-python/patsy/patsy-0.5.4.ebuild b/dev-python/patsy/patsy-0.5.4.ebuild
index 53a3a97cfd06..91000974df54 100644
--- a/dev-python/patsy/patsy-0.5.4.ebuild
+++ b/dev-python/patsy/patsy-0.5.4.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2023-12-24 17:24 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2023-12-24 17:24 UTC (permalink / raw
  To: gentoo-commits

commit:     9c019c12fb5fca5727dfbf370500f3287fb25135
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 24 17:22:26 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec 24 17:22:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c019c12

dev-python/patsy: Remove old

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

 dev-python/patsy/Manifest              |  1 -
 dev-python/patsy/patsy-0.5.3-r1.ebuild | 31 -------------------------------
 2 files changed, 32 deletions(-)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 0701b1d0065d..c36a3d727277 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1,2 +1 @@
-DIST patsy-0.5.3.tar.gz 397680 BLAKE2B 43696f9e95c124cab5bf907723596d8b2b15f0539fbd2b9c2a2fcc76591e935020929ba31fd5378114fe58d22a9931508d89edf21f24b00c916a6e78dc4ee58f SHA512 9a6ea2382287208013e02bab7cba9378311a8e18fe059593aa99090bb6191efa74badff011424a7f6b3c8ec72c1b8650637322b71617f23357bb4b38ac6a79a0
 DIST patsy-0.5.4.tar.gz 397809 BLAKE2B d10a4a155d3346b7a5968af914e68f1c2508208eda5658091b40c4df421c6b5566278bfe7db856793a477cb9c78ed7bc8aae4209dde7b476d0d8a19164602797 SHA512 4fa6b099a12464b1ad1685e0d9ca0e9640c059d5021631e6c52f4025ff100899824e722d9b12107c49dc987e8f3e377aeeb007889d8b35b3f1e4cdf5ca491d2f

diff --git a/dev-python/patsy/patsy-0.5.3-r1.ebuild b/dev-python/patsy/patsy-0.5.3-r1.ebuild
deleted file mode 100644
index 610faf6f5a84..000000000000
--- a/dev-python/patsy/patsy-0.5.3-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-# py3.12: https://github.com/pydata/patsy/issues/196
-PYTHON_COMPAT=( pypy3 python3_{10..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="
-	https://patsy.readthedocs.io/en/latest/index.html
-	https://github.com/pydata/patsy/
-	https://pypi.org/project/patsy/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	!hppa? (
-		dev-python/scipy[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2023-12-25  7:06 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2023-12-25  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     cc8fb5c1da51a123f6973486dd5b9893b8c24f66
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 25 06:40:48 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec 25 07:06:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc8fb5c1

dev-python/patsy: Bump to 0.5.5

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

 dev-python/patsy/Manifest           |  1 +
 dev-python/patsy/patsy-0.5.5.ebuild | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index c36a3d727277..6df5ec871904 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1 +1,2 @@
 DIST patsy-0.5.4.tar.gz 397809 BLAKE2B d10a4a155d3346b7a5968af914e68f1c2508208eda5658091b40c4df421c6b5566278bfe7db856793a477cb9c78ed7bc8aae4209dde7b476d0d8a19164602797 SHA512 4fa6b099a12464b1ad1685e0d9ca0e9640c059d5021631e6c52f4025ff100899824e722d9b12107c49dc987e8f3e377aeeb007889d8b35b3f1e4cdf5ca491d2f
+DIST patsy-0.5.5.tar.gz 398073 BLAKE2B 39f2f0d7d855fc3a4ae4a8930847c859aeacd74232fbc46c5455d10fe9cf0940ce5dea5322927df7b6aed61799e9ecbb6156cd2d142e0e965dc3b208896b1f7d SHA512 9df823094223e4929ece2d35696288cfb1ce0395cc3a322b88b582439dbe85ae69d81c876deef2cedebcd4763a57cc7289bdc74f77cb6a514d1f2c3a9332a7f4

diff --git a/dev-python/patsy/patsy-0.5.5.ebuild b/dev-python/patsy/patsy-0.5.5.ebuild
new file mode 100644
index 000000000000..d2134e279146
--- /dev/null
+++ b/dev-python/patsy/patsy-0.5.5.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="
+	https://patsy.readthedocs.io/en/latest/index.html
+	https://github.com/pydata/patsy/
+	https://pypi.org/project/patsy/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	!hppa? (
+		dev-python/scipy[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-01-04 11:29 WANG Xuerui
  0 siblings, 0 replies; 71+ messages in thread
From: WANG Xuerui @ 2024-01-04 11:29 UTC (permalink / raw
  To: gentoo-commits

commit:     55a18a8d9157cb383db591b2e06e114673f91256
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  4 05:24:45 2024 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Thu Jan  4 11:29:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a18a8d

dev-python/patsy: keyword 0.5.5 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

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

diff --git a/dev-python/patsy/patsy-0.5.5.ebuild b/dev-python/patsy/patsy-0.5.5.ebuild
index d2134e279146..bbe8e7904364 100644
--- a/dev-python/patsy/patsy-0.5.5.ebuild
+++ b/dev-python/patsy/patsy-0.5.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

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

commit:     10afdf294b0ec9530320f222261af9652380ff6f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  5 11:07:46 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan  5 11:25:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10afdf29

dev-python/patsy: Bump to 0.5.6

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

 dev-python/patsy/Manifest           |  1 +
 dev-python/patsy/patsy-0.5.6.ebuild | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 6df5ec871904..4abe7feb87c2 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1,2 +1,3 @@
 DIST patsy-0.5.4.tar.gz 397809 BLAKE2B d10a4a155d3346b7a5968af914e68f1c2508208eda5658091b40c4df421c6b5566278bfe7db856793a477cb9c78ed7bc8aae4209dde7b476d0d8a19164602797 SHA512 4fa6b099a12464b1ad1685e0d9ca0e9640c059d5021631e6c52f4025ff100899824e722d9b12107c49dc987e8f3e377aeeb007889d8b35b3f1e4cdf5ca491d2f
 DIST patsy-0.5.5.tar.gz 398073 BLAKE2B 39f2f0d7d855fc3a4ae4a8930847c859aeacd74232fbc46c5455d10fe9cf0940ce5dea5322927df7b6aed61799e9ecbb6156cd2d142e0e965dc3b208896b1f7d SHA512 9df823094223e4929ece2d35696288cfb1ce0395cc3a322b88b582439dbe85ae69d81c876deef2cedebcd4763a57cc7289bdc74f77cb6a514d1f2c3a9332a7f4
+DIST patsy-0.5.6.tar.gz 398011 BLAKE2B c5fb15c57e270e3545cfdc8c13f8e745c94822be6684aa6703bdbc1da15ea63eb7a21d1e0bd1aaed2a4d919f4848fd9089dbcd3c304676e0a9512d13f94302bb SHA512 df73ddfa0e66088cb50133240e2d67e2a833d8f691e17b443cdc0661adf580eb8908b1e1082e8debd91439bbe7b990a9a455f16bd6773173c7e86273f2c1051b

diff --git a/dev-python/patsy/patsy-0.5.6.ebuild b/dev-python/patsy/patsy-0.5.6.ebuild
new file mode 100644
index 000000000000..bbe8e7904364
--- /dev/null
+++ b/dev-python/patsy/patsy-0.5.6.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="
+	https://patsy.readthedocs.io/en/latest/index.html
+	https://github.com/pydata/patsy/
+	https://pypi.org/project/patsy/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	!hppa? (
+		dev-python/scipy[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-01-18 18:03 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-01-18 18:03 UTC (permalink / raw
  To: gentoo-commits

commit:     e91581c83c001233dbca3e0ab8d7e98858cb36cd
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 18:02:57 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 18:02:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e91581c8

dev-python/patsy: Stabilize 0.5.5 ppc64, #922409

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

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

diff --git a/dev-python/patsy/patsy-0.5.5.ebuild b/dev-python/patsy/patsy-0.5.5.ebuild
index bbe8e7904364..bb1e5715ab17 100644
--- a/dev-python/patsy/patsy-0.5.5.ebuild
+++ b/dev-python/patsy/patsy-0.5.5.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-01-18 18:37 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-01-18 18:37 UTC (permalink / raw
  To: gentoo-commits

commit:     447c612a591cbe6eed4033853f2bd44eec422678
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 18:36:56 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 18:36:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=447c612a

dev-python/patsy: Stabilize 0.5.5 arm, #922409

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

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

diff --git a/dev-python/patsy/patsy-0.5.5.ebuild b/dev-python/patsy/patsy-0.5.5.ebuild
index bb1e5715ab17..085532ee8691 100644
--- a/dev-python/patsy/patsy-0.5.5.ebuild
+++ b/dev-python/patsy/patsy-0.5.5.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-01-18 18:37 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-01-18 18:37 UTC (permalink / raw
  To: gentoo-commits

commit:     725d0e79f0a775482144d06c3977bf11978aed35
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 18:36:57 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 18:36:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=725d0e79

dev-python/patsy: Stabilize 0.5.5 arm64, #922409

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

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

diff --git a/dev-python/patsy/patsy-0.5.5.ebuild b/dev-python/patsy/patsy-0.5.5.ebuild
index 085532ee8691..f3ab2732b4c5 100644
--- a/dev-python/patsy/patsy-0.5.5.ebuild
+++ b/dev-python/patsy/patsy-0.5.5.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

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

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

dev-python/patsy: Stabilize 0.5.5 x86, #922409

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

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

diff --git a/dev-python/patsy/patsy-0.5.5.ebuild b/dev-python/patsy/patsy-0.5.5.ebuild
index f3ab2732b4c5..8453fd39689c 100644
--- a/dev-python/patsy/patsy-0.5.5.ebuild
+++ b/dev-python/patsy/patsy-0.5.5.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

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

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

dev-python/patsy: Stabilize 0.5.5 amd64, #922409

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

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

diff --git a/dev-python/patsy/patsy-0.5.5.ebuild b/dev-python/patsy/patsy-0.5.5.ebuild
index 8453fd39689c..6643571e86f2 100644
--- a/dev-python/patsy/patsy-0.5.5.ebuild
+++ b/dev-python/patsy/patsy-0.5.5.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

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

commit:     1dae386f250504d29b41389d480709107abc4f86
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 19 04:23:57 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 04:23:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dae386f

dev-python/patsy: Remove old

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

 dev-python/patsy/Manifest           |  1 -
 dev-python/patsy/patsy-0.5.4.ebuild | 30 ------------------------------
 2 files changed, 31 deletions(-)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 4abe7feb87c2..86641a7c6e53 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1,3 +1,2 @@
-DIST patsy-0.5.4.tar.gz 397809 BLAKE2B d10a4a155d3346b7a5968af914e68f1c2508208eda5658091b40c4df421c6b5566278bfe7db856793a477cb9c78ed7bc8aae4209dde7b476d0d8a19164602797 SHA512 4fa6b099a12464b1ad1685e0d9ca0e9640c059d5021631e6c52f4025ff100899824e722d9b12107c49dc987e8f3e377aeeb007889d8b35b3f1e4cdf5ca491d2f
 DIST patsy-0.5.5.tar.gz 398073 BLAKE2B 39f2f0d7d855fc3a4ae4a8930847c859aeacd74232fbc46c5455d10fe9cf0940ce5dea5322927df7b6aed61799e9ecbb6156cd2d142e0e965dc3b208896b1f7d SHA512 9df823094223e4929ece2d35696288cfb1ce0395cc3a322b88b582439dbe85ae69d81c876deef2cedebcd4763a57cc7289bdc74f77cb6a514d1f2c3a9332a7f4
 DIST patsy-0.5.6.tar.gz 398011 BLAKE2B c5fb15c57e270e3545cfdc8c13f8e745c94822be6684aa6703bdbc1da15ea63eb7a21d1e0bd1aaed2a4d919f4848fd9089dbcd3c304676e0a9512d13f94302bb SHA512 df73ddfa0e66088cb50133240e2d67e2a833d8f691e17b443cdc0661adf580eb8908b1e1082e8debd91439bbe7b990a9a455f16bd6773173c7e86273f2c1051b

diff --git a/dev-python/patsy/patsy-0.5.4.ebuild b/dev-python/patsy/patsy-0.5.4.ebuild
deleted file mode 100644
index 91000974df54..000000000000
--- a/dev-python/patsy/patsy-0.5.4.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="
-	https://patsy.readthedocs.io/en/latest/index.html
-	https://github.com/pydata/patsy/
-	https://pypi.org/project/patsy/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	!hppa? (
-		dev-python/scipy[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-01-20 18:35 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-01-20 18:35 UTC (permalink / raw
  To: gentoo-commits

commit:     bda2e4639174377ef61bb9a47b99e7527ff92d2d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 20 18:34:53 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 20 18:34:53 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bda2e463

dev-python/patsy: Stabilize 0.5.6 arm, #922565

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

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

diff --git a/dev-python/patsy/patsy-0.5.6.ebuild b/dev-python/patsy/patsy-0.5.6.ebuild
index bbe8e7904364..3692e988cb80 100644
--- a/dev-python/patsy/patsy-0.5.6.ebuild
+++ b/dev-python/patsy/patsy-0.5.6.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-01-20 18:47 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-01-20 18:47 UTC (permalink / raw
  To: gentoo-commits

commit:     d0bc4167ee7df587cf8074cc566484e185906def
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 20 18:46:59 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 20 18:46:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0bc4167

dev-python/patsy: Stabilize 0.5.6 arm64, #922565

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

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

diff --git a/dev-python/patsy/patsy-0.5.6.ebuild b/dev-python/patsy/patsy-0.5.6.ebuild
index 3692e988cb80..99059543e2ea 100644
--- a/dev-python/patsy/patsy-0.5.6.ebuild
+++ b/dev-python/patsy/patsy-0.5.6.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-01-21  2:44 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2024-01-21  2:44 UTC (permalink / raw
  To: gentoo-commits

commit:     3358ba18778be795ab2214bf1a240d06d01277eb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 21 02:43:38 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 21 02:43:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3358ba18

dev-python/patsy: Stabilize 0.5.6 amd64, #922565

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

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

diff --git a/dev-python/patsy/patsy-0.5.6.ebuild b/dev-python/patsy/patsy-0.5.6.ebuild
index 99059543e2ea..3dea9cfeb9b7 100644
--- a/dev-python/patsy/patsy-0.5.6.ebuild
+++ b/dev-python/patsy/patsy-0.5.6.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-01-21  2:44 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2024-01-21  2:44 UTC (permalink / raw
  To: gentoo-commits

commit:     de38698d426eca8e896a8cfd5d11579d2c428441
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 21 02:43:40 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 21 02:43:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de38698d

dev-python/patsy: Stabilize 0.5.6 ppc64, #922565

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

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

diff --git a/dev-python/patsy/patsy-0.5.6.ebuild b/dev-python/patsy/patsy-0.5.6.ebuild
index 2f61aa0631cd..6643571e86f2 100644
--- a/dev-python/patsy/patsy-0.5.6.ebuild
+++ b/dev-python/patsy/patsy-0.5.6.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-01-21  2:44 Sam James
  0 siblings, 0 replies; 71+ messages in thread
From: Sam James @ 2024-01-21  2:44 UTC (permalink / raw
  To: gentoo-commits

commit:     3722a580d051711d9bbe269cb8468f3562754783
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 21 02:43:39 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 21 02:43:39 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3722a580

dev-python/patsy: Stabilize 0.5.6 x86, #922565

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

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

diff --git a/dev-python/patsy/patsy-0.5.6.ebuild b/dev-python/patsy/patsy-0.5.6.ebuild
index 3dea9cfeb9b7..2f61aa0631cd 100644
--- a/dev-python/patsy/patsy-0.5.6.ebuild
+++ b/dev-python/patsy/patsy-0.5.6.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

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

commit:     3c73d15847b23a7cd354be563bef5bc981370cd1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 21 05:12:04 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jan 21 06:21:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c73d158

dev-python/patsy: Remove old

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

 dev-python/patsy/Manifest           |  1 -
 dev-python/patsy/patsy-0.5.5.ebuild | 30 ------------------------------
 2 files changed, 31 deletions(-)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 86641a7c6e53..a53e0f32064c 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1,2 +1 @@
-DIST patsy-0.5.5.tar.gz 398073 BLAKE2B 39f2f0d7d855fc3a4ae4a8930847c859aeacd74232fbc46c5455d10fe9cf0940ce5dea5322927df7b6aed61799e9ecbb6156cd2d142e0e965dc3b208896b1f7d SHA512 9df823094223e4929ece2d35696288cfb1ce0395cc3a322b88b582439dbe85ae69d81c876deef2cedebcd4763a57cc7289bdc74f77cb6a514d1f2c3a9332a7f4
 DIST patsy-0.5.6.tar.gz 398011 BLAKE2B c5fb15c57e270e3545cfdc8c13f8e745c94822be6684aa6703bdbc1da15ea63eb7a21d1e0bd1aaed2a4d919f4848fd9089dbcd3c304676e0a9512d13f94302bb SHA512 df73ddfa0e66088cb50133240e2d67e2a833d8f691e17b443cdc0661adf580eb8908b1e1082e8debd91439bbe7b990a9a455f16bd6773173c7e86273f2c1051b

diff --git a/dev-python/patsy/patsy-0.5.5.ebuild b/dev-python/patsy/patsy-0.5.5.ebuild
deleted file mode 100644
index 6643571e86f2..000000000000
--- a/dev-python/patsy/patsy-0.5.5.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="
-	https://patsy.readthedocs.io/en/latest/index.html
-	https://github.com/pydata/patsy/
-	https://pypi.org/project/patsy/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	!hppa? (
-		dev-python/scipy[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-06-30  2:52 Michał Górny
  0 siblings, 0 replies; 71+ messages in thread
From: Michał Górny @ 2024-06-30  2:52 UTC (permalink / raw
  To: gentoo-commits

commit:     dc1d6783a8580929079c7ef61bd8a898a2e109ea
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 30 01:39:03 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun 30 01:39:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc1d6783

dev-python/patsy: Require <dev-python/numpy-2

Closes: https://bugs.gentoo.org/932480
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/patsy/{patsy-0.5.6.ebuild => patsy-0.5.6-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.6.ebuild b/dev-python/patsy/patsy-0.5.6-r1.ebuild
similarity index 94%
rename from dev-python/patsy/patsy-0.5.6.ebuild
rename to dev-python/patsy/patsy-0.5.6-r1.ebuild
index 6643571e86f2..8140e3bb1ab6 100644
--- a/dev-python/patsy/patsy-0.5.6.ebuild
+++ b/dev-python/patsy/patsy-0.5.6-r1.ebuild
@@ -20,7 +20,7 @@ SLOT="0"
 KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
+	<dev-python/numpy-2[${PYTHON_USEDEP}]
 	dev-python/six[${PYTHON_USEDEP}]
 	!hppa? (
 		dev-python/scipy[${PYTHON_USEDEP}]


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

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

commit:     4981636707ef7abf07b0cea5a5cc355b788bf899
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 10 14:56:14 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jul 10 15:33:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49816367

dev-python/patsy: Enable py3.13

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

 dev-python/patsy/patsy-0.5.6-r2.ebuild | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.6-r2.ebuild b/dev-python/patsy/patsy-0.5.6-r2.ebuild
index 4362947695b4..4c8b9b9f9f05 100644
--- a/dev-python/patsy/patsy-0.5.6-r2.ebuild
+++ b/dev-python/patsy/patsy-0.5.6-r2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
+PYTHON_COMPAT=( pypy3 python3_{10..13} )
 
 inherit distutils-r1 pypi
 
@@ -34,3 +34,18 @@ PATCHES=(
 	# ([probably] non-upstreamable hack)
 	"${FILESDIR}/${P}-np2.patch"
 )
+
+python_test() {
+	local EPYTEST_DESELECT=()
+
+	case ${EPYTHON} in
+		python3.13)
+			EPYTEST_DESELECT+=(
+				patsy/eval.py::test_EvalEnvironment_eq
+			)
+			;;
+	esac
+
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	epytest
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-07-27  7:13 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-07-27  7:13 UTC (permalink / raw
  To: gentoo-commits

commit:     24a64b42c00ed13b15984f189bcd33c77d654c87
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 07:13:51 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 07:13:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24a64b42

dev-python/patsy: Stabilize 0.5.6-r2 ppc64, #936693

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

 dev-python/patsy/patsy-0.5.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.6-r2.ebuild b/dev-python/patsy/patsy-0.5.6-r2.ebuild
index 4c8b9b9f9f05..dd4df4bdc9ed 100644
--- a/dev-python/patsy/patsy-0.5.6-r2.ebuild
+++ b/dev-python/patsy/patsy-0.5.6-r2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-07-27  7:35 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-07-27  7:35 UTC (permalink / raw
  To: gentoo-commits

commit:     61ebe27986a015d0ce1761a886498030acd16081
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 07:35:10 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 07:35:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61ebe279

dev-python/patsy: Stabilize 0.5.6-r2 arm, #936693

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

 dev-python/patsy/patsy-0.5.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.6-r2.ebuild b/dev-python/patsy/patsy-0.5.6-r2.ebuild
index dd4df4bdc9ed..39a070949e96 100644
--- a/dev-python/patsy/patsy-0.5.6-r2.ebuild
+++ b/dev-python/patsy/patsy-0.5.6-r2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-07-27  8:34 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-07-27  8:34 UTC (permalink / raw
  To: gentoo-commits

commit:     7c49eeb12caf893dafab91cd503826bab5792a55
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 08:34:50 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 08:34:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c49eeb1

dev-python/patsy: Stabilize 0.5.6-r2 amd64, #936693

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

 dev-python/patsy/patsy-0.5.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.6-r2.ebuild b/dev-python/patsy/patsy-0.5.6-r2.ebuild
index 39a070949e96..7f957a88f590 100644
--- a/dev-python/patsy/patsy-0.5.6-r2.ebuild
+++ b/dev-python/patsy/patsy-0.5.6-r2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-07-27  9:08 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-07-27  9:08 UTC (permalink / raw
  To: gentoo-commits

commit:     4bd3794af210bd34d0045c91b94fc8f6818b6b28
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 09:08:03 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 09:08:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bd3794a

dev-python/patsy: Stabilize 0.5.6-r2 x86, #936693

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

 dev-python/patsy/patsy-0.5.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.6-r2.ebuild b/dev-python/patsy/patsy-0.5.6-r2.ebuild
index 9dacafbae224..8b0fb2dc597d 100644
--- a/dev-python/patsy/patsy-0.5.6-r2.ebuild
+++ b/dev-python/patsy/patsy-0.5.6-r2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
@ 2024-07-27  9:08 Arthur Zamarin
  0 siblings, 0 replies; 71+ messages in thread
From: Arthur Zamarin @ 2024-07-27  9:08 UTC (permalink / raw
  To: gentoo-commits

commit:     8f737eb15f2fe438105f53318088410e17c65309
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 09:08:02 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 09:08:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f737eb1

dev-python/patsy: Stabilize 0.5.6-r2 arm64, #936693

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

 dev-python/patsy/patsy-0.5.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/patsy/patsy-0.5.6-r2.ebuild b/dev-python/patsy/patsy-0.5.6-r2.ebuild
index 7f957a88f590..9dacafbae224 100644
--- a/dev-python/patsy/patsy-0.5.6-r2.ebuild
+++ b/dev-python/patsy/patsy-0.5.6-r2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]


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

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

commit:     925ea35d94d7c6f53f9124c8d83d5c94c0c89662
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 09:58:20 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 09:58:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=925ea35d

dev-python/patsy: Remove old

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

 dev-python/patsy/patsy-0.5.6-r1.ebuild | 30 ------------------------------
 1 file changed, 30 deletions(-)

diff --git a/dev-python/patsy/patsy-0.5.6-r1.ebuild b/dev-python/patsy/patsy-0.5.6-r1.ebuild
deleted file mode 100644
index 8140e3bb1ab6..000000000000
--- a/dev-python/patsy/patsy-0.5.6-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python module to describe statistical models and design matrices"
-HOMEPAGE="
-	https://patsy.readthedocs.io/en/latest/index.html
-	https://github.com/pydata/patsy/
-	https://pypi.org/project/patsy/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-	<dev-python/numpy-2[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-	!hppa? (
-		dev-python/scipy[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest


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

end of thread, other threads:[~2024-07-27 10:06 UTC | newest]

Thread overview: 71+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-24 21:14 [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-07-27 10:06 Michał Górny
2024-07-27  9:08 Arthur Zamarin
2024-07-27  9:08 Arthur Zamarin
2024-07-27  8:34 Arthur Zamarin
2024-07-27  7:35 Arthur Zamarin
2024-07-27  7:13 Arthur Zamarin
2024-07-10 15:33 Michał Górny
2024-06-30  2:52 Michał Górny
2024-01-21  6:21 Michał Górny
2024-01-21  2:44 Sam James
2024-01-21  2:44 Sam James
2024-01-21  2:44 Sam James
2024-01-20 18:47 Arthur Zamarin
2024-01-20 18:35 Arthur Zamarin
2024-01-19  5:10 Michał Górny
2024-01-18 19:48 Sam James
2024-01-18 19:48 Sam James
2024-01-18 18:37 Arthur Zamarin
2024-01-18 18:37 Arthur Zamarin
2024-01-18 18:03 Arthur Zamarin
2024-01-05 11:25 Michał Górny
2024-01-04 11:29 WANG Xuerui
2023-12-25  7:06 Michał Górny
2023-12-24 17:24 Michał Górny
2023-12-24 17:21 Arthur Zamarin
2023-12-09 16:45 Arthur Zamarin
2023-12-08 19:39 Arthur Zamarin
2023-12-01  5:39 Michał Górny
2023-11-30 14:14 Michał Górny
2023-11-01 17:09 Michał Górny
2023-03-16  4:03 Michał Górny
2022-11-14 15:03 Arthur Zamarin
2022-11-14 15:03 Arthur Zamarin
2022-11-11 12:01 Michał Górny
2022-11-11  7:04 Sam James
2022-11-11  4:27 Sam James
2022-11-11  4:25 Sam James
2022-11-10 19:41 Arthur Zamarin
2022-11-10 19:23 Arthur Zamarin
2022-11-10 19:03 Arthur Zamarin
2022-10-14 15:09 Andrew Ammerlaan
2022-10-10  7:43 Arthur Zamarin
2022-10-10  7:43 Arthur Zamarin
2022-06-05  5:36 Michał Górny
2021-11-20  6:35 Sam James
2021-11-18 11:03 Sam James
2021-11-14 23:51 Sam James
2021-11-08  6:22 Sam James
2021-10-31 18:02 Sam James
2021-10-31 17:58 Sam James
2021-10-02 23:17 Sam James
2021-09-26  6:52 Michał Górny
2021-09-06 23:42 Sam James
2021-09-06 23:37 Sam James
2021-09-06  0:13 Sam James
2021-08-16 11:46 Marek Szuba
2020-08-18  5:52 Sam James
2020-08-18  5:28 Sam James
2020-06-12 13:20 Michał Górny
2020-04-29  4:12 Patrick McLean
2020-03-28 11:36 Michał Górny
2020-01-17  7:47 Michał Górny
2020-01-17  7:47 Michał Górny
2020-01-17  7:47 Michał Górny
2019-03-15 22:42 Patrice Clement
2017-03-12 12:31 Zac Medico
2015-11-11  9:27 Justin Lecher
2015-11-10 13:23 Agostino Sarubbo
2015-11-09 11:49 Justin Lecher
2015-08-21  9:35 Justin Lecher

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