public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
@ 2020-03-29 13:21 Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2020-03-29 13:21 UTC (permalink / raw
  To: gentoo-commits

commit:     9bb5a5bd7f3cd870b669e8336d8d7fd19369aebf
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Mar 29 09:36:20 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Mar 29 09:36:20 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9bb5a5bd

dev-python/sanic: new package

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/sanic/Manifest             |  1 +
 dev-python/sanic/metadata.xml         | 15 +++++++++++
 dev-python/sanic/sanic-19.12.2.ebuild | 51 +++++++++++++++++++++++++++++++++++
 3 files changed, 67 insertions(+)

diff --git a/dev-python/sanic/Manifest b/dev-python/sanic/Manifest
new file mode 100644
index 0000000..c4f1f4d
--- /dev/null
+++ b/dev-python/sanic/Manifest
@@ -0,0 +1 @@
+DIST sanic-19.12.2.tar.gz 195755 BLAKE2B 0d903b06403f28a901d21bfc685219064d0ec2b11576baf714aa3250cc3474928da03c34f0a5a25bf92191242b0a41f76d41aabe92a805bea1801e569c892e9a SHA512 93e416ceea5577db4c443dd6dd03cc5e990d4f987d49821b70d5602421d38401e155e2aad166c88ec57fc5361350c641f087b461a6d92acde34455db81429c5c

diff --git a/dev-python/sanic/metadata.xml b/dev-python/sanic/metadata.xml
new file mode 100644
index 0000000..2208048
--- /dev/null
+++ b/dev-python/sanic/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <longdescription lang="en">
+Sanic is a Python 3.6+ web server and web framework that’s written to go fast. It allows the usage of the async/await syntax added in Python 3.5, which makes your code non-blocking and speedy.
+
+The goal of the project is to provide a simple way to get up and running a highly performant HTTP server that is easy to build, to expand, and ultimately to scale.  </longdescription>
+  <upstream>
+    <remote-id type="github">huge-success/sanic</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/sanic/sanic-19.12.2.ebuild b/dev-python/sanic/sanic-19.12.2.ebuild
new file mode 100644
index 0000000..a9e22cc
--- /dev/null
+++ b/dev-python/sanic/sanic-19.12.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_6 )
+
+inherit distutils-r1
+
+DESCRIPTION="Async Python 3.6+ web server/framework | Build fast. Run fast."
+HOMEPAGE="
+	https://pypi.python.org/pypi/sanic
+	https://github.com/huge-success/sanic
+"
+SRC_URI="https://github.com/huge-success/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-python/aiofiles[${PYTHON_USEDEP}]
+	~dev-python/httpx-0.9.3[${PYTHON_USEDEP}]
+	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
+	>=dev-python/multidict-4.0[${PYTHON_USEDEP}]
+	<dev-python/multidict-5.0[${PYTHON_USEDEP}]
+	dev-python/uvloop[${PYTHON_USEDEP}]
+	dev-python/ujson[${PYTHON_USEDEP}]
+	>=dev-python/websockets-7.0[${PYTHON_USEDEP}]
+	<dev-python/websockets-9.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+	${RDEPEND}
+	test? (
+		dev-python/beautifulsoup[${PYTHON_USEDEP}]
+		dev-python/httpcore[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
+		dev-python/pytest-sanic[${PYTHON_USEDEP}]
+		dev-python/pytest-sugar[${PYTHON_USEDEP}]
+		www-servers/gunicorn[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+				dev-python/docutils \
+				dev-python/pygments \
+				">=dev-python/sphinx-2.1.2" \
+				dev-python/sphinx_rtd_theme \
+				">=dev-python/recommonmark-0.5.0"


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
@ 2020-03-29 13:21 Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2020-03-29 13:21 UTC (permalink / raw
  To: gentoo-commits

commit:     886519adea3251e7a0f72bfa9862ffadeccaa895
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Mar 29 13:19:12 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Mar 29 13:19:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=886519ad

dev-python/sanic: tests need uvicorn

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

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

diff --git a/dev-python/sanic/sanic-19.12.2.ebuild b/dev-python/sanic/sanic-19.12.2.ebuild
index a9e22cc..4508450 100644
--- a/dev-python/sanic/sanic-19.12.2.ebuild
+++ b/dev-python/sanic/sanic-19.12.2.ebuild
@@ -34,10 +34,10 @@ DEPEND="
 	test? (
 		dev-python/beautifulsoup[${PYTHON_USEDEP}]
 		dev-python/httpcore[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
 		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
 		dev-python/pytest-sanic[${PYTHON_USEDEP}]
 		dev-python/pytest-sugar[${PYTHON_USEDEP}]
+		dev-python/uvicorn[${PYTHON_USEDEP}]
 		www-servers/gunicorn[${PYTHON_USEDEP}]
 	)
 "


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
@ 2020-05-18 16:27 Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2020-05-18 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     6f07b7b3614912ed90c77bc88e1bb5080741e038
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun May 17 08:48:42 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon May 18 15:41:08 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6f07b7b3

dev-python/sanic: new version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/sanic/Manifest            |  1 +
 dev-python/sanic/sanic-20.3.0.ebuild | 53 ++++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/sanic/Manifest b/dev-python/sanic/Manifest
index c4f1f4d..30b9cc7 100644
--- a/dev-python/sanic/Manifest
+++ b/dev-python/sanic/Manifest
@@ -1 +1,2 @@
 DIST sanic-19.12.2.tar.gz 195755 BLAKE2B 0d903b06403f28a901d21bfc685219064d0ec2b11576baf714aa3250cc3474928da03c34f0a5a25bf92191242b0a41f76d41aabe92a805bea1801e569c892e9a SHA512 93e416ceea5577db4c443dd6dd03cc5e990d4f987d49821b70d5602421d38401e155e2aad166c88ec57fc5361350c641f087b461a6d92acde34455db81429c5c
+DIST sanic-20.3.0.tar.gz 200120 BLAKE2B 14c648f6607b924ee8c19a481b027866a1e24b13249129d3e3fd2ebaf48243ec30d800cd0f62f3f361ae265ef4139676b5aaa4d5481e57459360df11d9fb5c8d SHA512 05615b2b0a2f3b03b2cdf6cff9d2df6f95a54c12be98b54674a2060104327e9a98db55b5e9fbc608f4e624abbb68e7b2f169df26c8197669aad05a4e15ac3ee7

diff --git a/dev-python/sanic/sanic-20.3.0.ebuild b/dev-python/sanic/sanic-20.3.0.ebuild
new file mode 100644
index 0000000..acd563f
--- /dev/null
+++ b/dev-python/sanic/sanic-20.3.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_6 )
+
+inherit distutils-r1
+
+DESCRIPTION="Async Python 3.6+ web server/framework | Build fast. Run fast."
+HOMEPAGE="
+	https://pypi.python.org/pypi/sanic
+	https://github.com/huge-success/sanic
+"
+SRC_URI="https://github.com/huge-success/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-python/aiofiles[${PYTHON_USEDEP}]
+	>=dev-python/httpx-0.11.1[${PYTHON_USEDEP}]
+	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
+	>=dev-python/multidict-4.0[${PYTHON_USEDEP}]
+	<dev-python/multidict-5.0[${PYTHON_USEDEP}]
+	>=dev-python/ujson-1.35[${PYTHON_USEDEP}]
+	>=dev-python/uvloop-0.5.3[${PYTHON_USEDEP}]
+	>=dev-python/websockets-7.0[${PYTHON_USEDEP}]
+	<dev-python/websockets-8.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+	${RDEPEND}
+	test? (
+		dev-python/beautifulsoup[${PYTHON_USEDEP}]
+		>=dev-python/httpcore-0.3.0[${PYTHON_USEDEP}]
+		>=dev-python/pytest-5.2.1[${PYTHON_USEDEP}]
+		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
+		dev-python/pytest-sanic[${PYTHON_USEDEP}]
+		dev-python/pytest-sugar[${PYTHON_USEDEP}]
+		dev-python/uvicorn[${PYTHON_USEDEP}]
+		www-servers/gunicorn[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+				dev-python/docutils \
+				dev-python/pygments \
+				">=dev-python/sphinx-2.1.2" \
+				">=dev-python/sphinx_rtd_theme-0.4.3" \
+				">=dev-python/recommonmark-0.5.0" \
+				www-servers/gunicorn


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
@ 2020-06-09 16:37 Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2020-06-09 16:37 UTC (permalink / raw
  To: gentoo-commits

commit:     629359876ca5b2cea34f146e1171d78e39813988
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jun  9 14:37:04 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jun  9 14:37:04 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=62935987

dev-python/sanic: add py3_7

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/sanic/sanic-20.3.0.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-python/sanic/sanic-20.3.0.ebuild b/dev-python/sanic/sanic-20.3.0.ebuild
index acd563f..15a52d7 100644
--- a/dev-python/sanic/sanic-20.3.0.ebuild
+++ b/dev-python/sanic/sanic-20.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 
@@ -21,6 +21,7 @@ KEYWORDS="~amd64 ~x86"
 RDEPEND="
 	dev-python/aiofiles[${PYTHON_USEDEP}]
 	>=dev-python/httpx-0.11.1[${PYTHON_USEDEP}]
+	<dev-python/httpx-0.12[${PYTHON_USEDEP}]
 	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
 	>=dev-python/multidict-4.0[${PYTHON_USEDEP}]
 	<dev-python/multidict-5.0[${PYTHON_USEDEP}]
@@ -37,7 +38,6 @@ DEPEND="
 		>=dev-python/pytest-5.2.1[${PYTHON_USEDEP}]
 		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
 		dev-python/pytest-sanic[${PYTHON_USEDEP}]
-		dev-python/pytest-sugar[${PYTHON_USEDEP}]
 		dev-python/uvicorn[${PYTHON_USEDEP}]
 		www-servers/gunicorn[${PYTHON_USEDEP}]
 	)
@@ -47,7 +47,7 @@ distutils_enable_tests pytest
 distutils_enable_sphinx docs \
 				dev-python/docutils \
 				dev-python/pygments \
-				">=dev-python/sphinx-2.1.2" \
-				">=dev-python/sphinx_rtd_theme-0.4.3" \
-				">=dev-python/recommonmark-0.5.0" \
+				dev-python/sphinx_rtd_theme \
+				dev-python/sphinxcontrib-websupport \
+				dev-python/recommonmark \
 				www-servers/gunicorn


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
  2020-06-30 19:19 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2020-06-30 19:43 ` Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2020-06-30 19:43 UTC (permalink / raw
  To: gentoo-commits

commit:     30b20087a0c43b265b8fa1344bacf0563f1c32f4
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jun 30 19:16:48 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jun 30 19:16:48 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=30b20087

dev-python/sanic: version bump, drop py3_6

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/sanic/Manifest                          |  3 +-
 dev-python/sanic/sanic-19.12.2.ebuild              | 51 ----------------------
 .../{sanic-20.3.0.ebuild => sanic-20.6.3.ebuild}   | 13 +++---
 3 files changed, 7 insertions(+), 60 deletions(-)

diff --git a/dev-python/sanic/Manifest b/dev-python/sanic/Manifest
index 30b9cc7..aa86a6d 100644
--- a/dev-python/sanic/Manifest
+++ b/dev-python/sanic/Manifest
@@ -1,2 +1 @@
-DIST sanic-19.12.2.tar.gz 195755 BLAKE2B 0d903b06403f28a901d21bfc685219064d0ec2b11576baf714aa3250cc3474928da03c34f0a5a25bf92191242b0a41f76d41aabe92a805bea1801e569c892e9a SHA512 93e416ceea5577db4c443dd6dd03cc5e990d4f987d49821b70d5602421d38401e155e2aad166c88ec57fc5361350c641f087b461a6d92acde34455db81429c5c
-DIST sanic-20.3.0.tar.gz 200120 BLAKE2B 14c648f6607b924ee8c19a481b027866a1e24b13249129d3e3fd2ebaf48243ec30d800cd0f62f3f361ae265ef4139676b5aaa4d5481e57459360df11d9fb5c8d SHA512 05615b2b0a2f3b03b2cdf6cff9d2df6f95a54c12be98b54674a2060104327e9a98db55b5e9fbc608f4e624abbb68e7b2f169df26c8197669aad05a4e15ac3ee7
+DIST sanic-20.6.3.tar.gz 207406 BLAKE2B 323f9d0d4965ee8fab4ffb95140f85d059f1bba777f36cc69703b7569c29a852631dd446dd0469207e8ccca3636aa45acfb6b50f290c6ddcc4f56249683a12b7 SHA512 c2b3eafcaee77e75b603e62feeb397382b2017d80191507a43db2595cc64e8b37b569b204474f94f5bdaae909c83baca7d7667ef46a0dd7324991efe15b22ebf

diff --git a/dev-python/sanic/sanic-19.12.2.ebuild b/dev-python/sanic/sanic-19.12.2.ebuild
deleted file mode 100644
index 4508450..0000000
--- a/dev-python/sanic/sanic-19.12.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="Async Python 3.6+ web server/framework | Build fast. Run fast."
-HOMEPAGE="
-	https://pypi.python.org/pypi/sanic
-	https://github.com/huge-success/sanic
-"
-SRC_URI="https://github.com/huge-success/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-python/aiofiles[${PYTHON_USEDEP}]
-	~dev-python/httpx-0.9.3[${PYTHON_USEDEP}]
-	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
-	>=dev-python/multidict-4.0[${PYTHON_USEDEP}]
-	<dev-python/multidict-5.0[${PYTHON_USEDEP}]
-	dev-python/uvloop[${PYTHON_USEDEP}]
-	dev-python/ujson[${PYTHON_USEDEP}]
-	>=dev-python/websockets-7.0[${PYTHON_USEDEP}]
-	<dev-python/websockets-9.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-	${RDEPEND}
-	test? (
-		dev-python/beautifulsoup[${PYTHON_USEDEP}]
-		dev-python/httpcore[${PYTHON_USEDEP}]
-		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
-		dev-python/pytest-sanic[${PYTHON_USEDEP}]
-		dev-python/pytest-sugar[${PYTHON_USEDEP}]
-		dev-python/uvicorn[${PYTHON_USEDEP}]
-		www-servers/gunicorn[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs \
-				dev-python/docutils \
-				dev-python/pygments \
-				">=dev-python/sphinx-2.1.2" \
-				dev-python/sphinx_rtd_theme \
-				">=dev-python/recommonmark-0.5.0"

diff --git a/dev-python/sanic/sanic-20.3.0.ebuild b/dev-python/sanic/sanic-20.6.3.ebuild
similarity index 80%
rename from dev-python/sanic/sanic-20.3.0.ebuild
rename to dev-python/sanic/sanic-20.6.3.ebuild
index 15a52d7..5db11eb 100644
--- a/dev-python/sanic/sanic-20.3.0.ebuild
+++ b/dev-python/sanic/sanic-20.6.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_7 )
 
 inherit distutils-r1
 
@@ -20,15 +20,14 @@ KEYWORDS="~amd64 ~x86"
 
 RDEPEND="
 	dev-python/aiofiles[${PYTHON_USEDEP}]
-	>=dev-python/httpx-0.11.1[${PYTHON_USEDEP}]
-	<dev-python/httpx-0.12[${PYTHON_USEDEP}]
+	~dev-python/httpx-0.11.1[${PYTHON_USEDEP}]
 	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
 	>=dev-python/multidict-4.0[${PYTHON_USEDEP}]
 	<dev-python/multidict-5.0[${PYTHON_USEDEP}]
-	>=dev-python/ujson-1.35[${PYTHON_USEDEP}]
-	>=dev-python/uvloop-0.5.3[${PYTHON_USEDEP}]
-	>=dev-python/websockets-7.0[${PYTHON_USEDEP}]
-	<dev-python/websockets-8.0[${PYTHON_USEDEP}]
+	dev-python/ujson[${PYTHON_USEDEP}]
+	dev-python/uvloop[${PYTHON_USEDEP}]
+	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
+	<dev-python/websockets-9.0[${PYTHON_USEDEP}]
 "
 DEPEND="
 	${RDEPEND}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
  2020-11-26 12:10 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2020-11-26 12:10 ` Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2020-11-26 12:10 UTC (permalink / raw
  To: gentoo-commits

commit:     b06f91ff293b50397c869e53b76b908de2a83f23
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Nov 26 12:10:36 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Nov 26 12:10:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b06f91ff

dev-python/sanic: version bump, add py3.8

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/sanic/Manifest                          |  2 +-
 .../{sanic-20.6.3.ebuild => sanic-20.9.1.ebuild}   | 23 +++++++++++++++++-----
 2 files changed, 19 insertions(+), 6 deletions(-)

diff --git a/dev-python/sanic/Manifest b/dev-python/sanic/Manifest
index aa86a6d2..c240b52d 100644
--- a/dev-python/sanic/Manifest
+++ b/dev-python/sanic/Manifest
@@ -1 +1 @@
-DIST sanic-20.6.3.tar.gz 207406 BLAKE2B 323f9d0d4965ee8fab4ffb95140f85d059f1bba777f36cc69703b7569c29a852631dd446dd0469207e8ccca3636aa45acfb6b50f290c6ddcc4f56249683a12b7 SHA512 c2b3eafcaee77e75b603e62feeb397382b2017d80191507a43db2595cc64e8b37b569b204474f94f5bdaae909c83baca7d7667ef46a0dd7324991efe15b22ebf
+DIST sanic-20.9.1.tar.gz 214560 BLAKE2B 2df6127d9a4b0cc8fc60e2aafe47b4e10f1474b3bee5b3974265be8c5edcfd2f7fdccb4d2b3f977d2f51ff0a2d0dc33c2d120c7d858fae56d845f6b22261eb7e SHA512 4c19fa2731b98eeb843c272856a2e6a4d25817b29d490dfa9c7e4f086ca91b5a8f4c38488673029ca21d125858d6095f40a960284c487b2601bef2c1fdedca28

diff --git a/dev-python/sanic/sanic-20.6.3.ebuild b/dev-python/sanic/sanic-20.9.1.ebuild
similarity index 68%
rename from dev-python/sanic/sanic-20.6.3.ebuild
rename to dev-python/sanic/sanic-20.9.1.ebuild
index 5db11eb0..e699e480 100644
--- a/dev-python/sanic/sanic-20.6.3.ebuild
+++ b/dev-python/sanic/sanic-20.9.1.ebuild
@@ -3,7 +3,8 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{7,8} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1
 
@@ -18,12 +19,15 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
+# lots of these
+# ValueError: Exception during request: [AttributeError("'AsyncConnectionPool' object has no attribute 'arequest'")]
+RESTRICT="test"
+
 RDEPEND="
 	dev-python/aiofiles[${PYTHON_USEDEP}]
-	~dev-python/httpx-0.11.1[${PYTHON_USEDEP}]
+	dev-python/httpx[${PYTHON_USEDEP}]
 	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
-	>=dev-python/multidict-4.0[${PYTHON_USEDEP}]
-	<dev-python/multidict-5.0[${PYTHON_USEDEP}]
+	dev-python/multidict[${PYTHON_USEDEP}]
 	dev-python/ujson[${PYTHON_USEDEP}]
 	dev-python/uvloop[${PYTHON_USEDEP}]
 	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
@@ -47,6 +51,15 @@ distutils_enable_sphinx docs \
 				dev-python/docutils \
 				dev-python/pygments \
 				dev-python/sphinx_rtd_theme \
-				dev-python/sphinxcontrib-websupport \
 				dev-python/recommonmark \
 				www-servers/gunicorn
+
+
+python_prepare_all() {
+	# 'dependency' not found in `markers` configuration option
+	# requires pytest version which is no longer in ::gentoo
+	rm tests/test_load_module_from_file_location.py || die
+	rm tests/test_update_config.py || die
+
+	distutils-r1_python_prepare_all
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
@ 2020-11-28 13:57 Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2020-11-28 13:57 UTC (permalink / raw
  To: gentoo-commits

commit:     701f9369d5918ca261713ba22c2c1bf1972cfee0
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Nov 28 13:43:36 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Nov 28 13:43:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=701f9369

dev-python/sanic: remove blank line

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/sanic/sanic-20.9.1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/sanic/sanic-20.9.1.ebuild b/dev-python/sanic/sanic-20.9.1.ebuild
index e699e480..8f522d97 100644
--- a/dev-python/sanic/sanic-20.9.1.ebuild
+++ b/dev-python/sanic/sanic-20.9.1.ebuild
@@ -54,7 +54,6 @@ distutils_enable_sphinx docs \
 				dev-python/recommonmark \
 				www-servers/gunicorn
 
-
 python_prepare_all() {
 	# 'dependency' not found in `markers` configuration option
 	# requires pytest version which is no longer in ::gentoo


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
@ 2021-05-28 10:28 Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2021-05-28 10:28 UTC (permalink / raw
  To: gentoo-commits

commit:     9fa3f60c38d0f215bf148b9be2d84348cd4b2afb
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu May 27 14:47:31 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu May 27 14:48:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9fa3f60c

dev-python/sanic: add 21.3.4

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/sanic/Manifest            |  1 +
 dev-python/sanic/sanic-21.3.4.ebuild | 57 ++++++++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/dev-python/sanic/Manifest b/dev-python/sanic/Manifest
index c240b52dd..ee74883b9 100644
--- a/dev-python/sanic/Manifest
+++ b/dev-python/sanic/Manifest
@@ -1 +1,2 @@
 DIST sanic-20.9.1.tar.gz 214560 BLAKE2B 2df6127d9a4b0cc8fc60e2aafe47b4e10f1474b3bee5b3974265be8c5edcfd2f7fdccb4d2b3f977d2f51ff0a2d0dc33c2d120c7d858fae56d845f6b22261eb7e SHA512 4c19fa2731b98eeb843c272856a2e6a4d25817b29d490dfa9c7e4f086ca91b5a8f4c38488673029ca21d125858d6095f40a960284c487b2601bef2c1fdedca28
+DIST sanic-21.3.4.tar.gz 234229 BLAKE2B a24941777099d5a09dd020a7f0a9fe39ae0ab89436fe27e2e4bbb418b684583002b9249e46438787d07bae6114ee1a0fd27e24e4e29983e8499f766f238e07d9 SHA512 15596f37b5389073d6a2b5e2d2bf5871d9a31ba29bf4e2eac9fb91df29e76035b02f7d892bb8edd5ffde75f05acdcebdb2c8f5ddf7224f40c5391c8f058f5c97

diff --git a/dev-python/sanic/sanic-21.3.4.ebuild b/dev-python/sanic/sanic-21.3.4.ebuild
new file mode 100644
index 000000000..bc79bf25f
--- /dev/null
+++ b/dev-python/sanic/sanic-21.3.4.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Async Python 3.6+ web server/framework | Build fast. Run fast."
+HOMEPAGE="
+	https://pypi.python.org/pypi/sanic
+	https://github.com/huge-success/sanic
+"
+SRC_URI="https://github.com/huge-success/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=dev-python/aiofiles-0.6.0[${PYTHON_USEDEP}]
+	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
+	>=dev-python/multidict-5.0[${PYTHON_USEDEP}]
+	<dev-python/multidict-6.0[${PYTHON_USEDEP}]
+	>=dev-python/sanic-routing-0.0.10[${PYTHON_USEDEP}]
+	dev-python/ujson[${PYTHON_USEDEP}]
+	dev-python/uvloop[${PYTHON_USEDEP}]
+	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
+	<dev-python/websockets-9.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+	${RDEPEND}
+	test? (
+		dev-python/beautifulsoup[${PYTHON_USEDEP}]
+		>=dev-python/httpcore-0.3.0[${PYTHON_USEDEP}]
+		>=dev-python/pytest-5.2.1[${PYTHON_USEDEP}]
+		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
+		dev-python/pytest-sanic[${PYTHON_USEDEP}]
+		dev-python/sanic-testing[${PYTHON_USEDEP}]
+		dev-python/uvicorn[${PYTHON_USEDEP}]
+		www-servers/gunicorn[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+				dev-python/docutils \
+				dev-python/pygments \
+				dev-python/sphinx_rtd_theme \
+				dev-python/recommonmark \
+				www-servers/gunicorn
+
+python_test() {
+	pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime || die
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sanic/
@ 2021-05-30 15:53 Andrew Ammerlaan
  2021-05-30 15:53 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
  0 siblings, 1 reply; 14+ messages in thread
From: Andrew Ammerlaan @ 2021-05-30 15:53 UTC (permalink / raw
  To: gentoo-commits

commit:     09a0823da05e832c53bac65aaf7f56c0d48ae39f
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sun May 30 15:50:19 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun May 30 15:53:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=09a0823d

dev-python/sanic: drop websockets restriction

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-python/sanic/sanic-21.3.4.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/sanic/sanic-21.3.4.ebuild b/dev-python/sanic/sanic-21.3.4.ebuild
index bc79bf25f..fc0e5353b 100644
--- a/dev-python/sanic/sanic-21.3.4.ebuild
+++ b/dev-python/sanic/sanic-21.3.4.ebuild
@@ -28,7 +28,6 @@ RDEPEND="
 	dev-python/ujson[${PYTHON_USEDEP}]
 	dev-python/uvloop[${PYTHON_USEDEP}]
 	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
-	<dev-python/websockets-9.0[${PYTHON_USEDEP}]
 "
 DEPEND="
 	${RDEPEND}
@@ -53,5 +52,5 @@ distutils_enable_sphinx docs \
 				www-servers/gunicorn
 
 python_test() {
-	pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime || die
+	pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime tests/test_keep_alive_timeout.py::test_keep_alive_client_timeout || die
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
  2021-05-30 15:53 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sanic/ Andrew Ammerlaan
@ 2021-05-30 15:53 ` Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2021-05-30 15:53 UTC (permalink / raw
  To: gentoo-commits

commit:     09a0823da05e832c53bac65aaf7f56c0d48ae39f
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sun May 30 15:50:19 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun May 30 15:53:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=09a0823d

dev-python/sanic: drop websockets restriction

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-python/sanic/sanic-21.3.4.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/sanic/sanic-21.3.4.ebuild b/dev-python/sanic/sanic-21.3.4.ebuild
index bc79bf25f..fc0e5353b 100644
--- a/dev-python/sanic/sanic-21.3.4.ebuild
+++ b/dev-python/sanic/sanic-21.3.4.ebuild
@@ -28,7 +28,6 @@ RDEPEND="
 	dev-python/ujson[${PYTHON_USEDEP}]
 	dev-python/uvloop[${PYTHON_USEDEP}]
 	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
-	<dev-python/websockets-9.0[${PYTHON_USEDEP}]
 "
 DEPEND="
 	${RDEPEND}
@@ -53,5 +52,5 @@ distutils_enable_sphinx docs \
 				www-servers/gunicorn
 
 python_test() {
-	pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime || die
+	pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime tests/test_keep_alive_timeout.py::test_keep_alive_client_timeout || die
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
  2021-05-30 15:53 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2021-05-30 15:53 ` Andrew Ammerlaan
  0 siblings, 0 replies; 14+ messages in thread
From: Andrew Ammerlaan @ 2021-05-30 15:53 UTC (permalink / raw
  To: gentoo-commits

commit:     5e71fb95fafea6a27bc5e715ba211edeee87cf2c
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sun May 30 15:50:41 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun May 30 15:53:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e71fb95

dev-python/sanic: drop old

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-python/sanic/Manifest            |  1 -
 dev-python/sanic/sanic-20.9.1.ebuild | 64 ------------------------------------
 2 files changed, 65 deletions(-)

diff --git a/dev-python/sanic/Manifest b/dev-python/sanic/Manifest
index ee74883b9..a7ceefe58 100644
--- a/dev-python/sanic/Manifest
+++ b/dev-python/sanic/Manifest
@@ -1,2 +1 @@
-DIST sanic-20.9.1.tar.gz 214560 BLAKE2B 2df6127d9a4b0cc8fc60e2aafe47b4e10f1474b3bee5b3974265be8c5edcfd2f7fdccb4d2b3f977d2f51ff0a2d0dc33c2d120c7d858fae56d845f6b22261eb7e SHA512 4c19fa2731b98eeb843c272856a2e6a4d25817b29d490dfa9c7e4f086ca91b5a8f4c38488673029ca21d125858d6095f40a960284c487b2601bef2c1fdedca28
 DIST sanic-21.3.4.tar.gz 234229 BLAKE2B a24941777099d5a09dd020a7f0a9fe39ae0ab89436fe27e2e4bbb418b684583002b9249e46438787d07bae6114ee1a0fd27e24e4e29983e8499f766f238e07d9 SHA512 15596f37b5389073d6a2b5e2d2bf5871d9a31ba29bf4e2eac9fb91df29e76035b02f7d892bb8edd5ffde75f05acdcebdb2c8f5ddf7224f40c5391c8f058f5c97

diff --git a/dev-python/sanic/sanic-20.9.1.ebuild b/dev-python/sanic/sanic-20.9.1.ebuild
deleted file mode 100644
index 8f522d970..000000000
--- a/dev-python/sanic/sanic-20.9.1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{7,8} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Async Python 3.6+ web server/framework | Build fast. Run fast."
-HOMEPAGE="
-	https://pypi.python.org/pypi/sanic
-	https://github.com/huge-success/sanic
-"
-SRC_URI="https://github.com/huge-success/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# lots of these
-# ValueError: Exception during request: [AttributeError("'AsyncConnectionPool' object has no attribute 'arequest'")]
-RESTRICT="test"
-
-RDEPEND="
-	dev-python/aiofiles[${PYTHON_USEDEP}]
-	dev-python/httpx[${PYTHON_USEDEP}]
-	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
-	dev-python/multidict[${PYTHON_USEDEP}]
-	dev-python/ujson[${PYTHON_USEDEP}]
-	dev-python/uvloop[${PYTHON_USEDEP}]
-	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
-	<dev-python/websockets-9.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-	${RDEPEND}
-	test? (
-		dev-python/beautifulsoup[${PYTHON_USEDEP}]
-		>=dev-python/httpcore-0.3.0[${PYTHON_USEDEP}]
-		>=dev-python/pytest-5.2.1[${PYTHON_USEDEP}]
-		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
-		dev-python/pytest-sanic[${PYTHON_USEDEP}]
-		dev-python/uvicorn[${PYTHON_USEDEP}]
-		www-servers/gunicorn[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs \
-				dev-python/docutils \
-				dev-python/pygments \
-				dev-python/sphinx_rtd_theme \
-				dev-python/recommonmark \
-				www-servers/gunicorn
-
-python_prepare_all() {
-	# 'dependency' not found in `markers` configuration option
-	# requires pytest version which is no longer in ::gentoo
-	rm tests/test_load_module_from_file_location.py || die
-	rm tests/test_update_config.py || die
-
-	distutils-r1_python_prepare_all
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
@ 2021-06-28 10:59 Florian Schmaus
  0 siblings, 0 replies; 14+ messages in thread
From: Florian Schmaus @ 2021-06-28 10:59 UTC (permalink / raw
  To: gentoo-commits

commit:     f35e3e5388825acd84b8f5ecdca7685e4942c1ed
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Jun 27 23:02:36 2021 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Jun 27 23:02:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f35e3e53

dev-python/sanic: add 21.6.0

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/sanic/Manifest            |  1 +
 dev-python/sanic/sanic-21.6.0.ebuild | 55 ++++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-python/sanic/Manifest b/dev-python/sanic/Manifest
index a7ceefe58..0a0fb36f3 100644
--- a/dev-python/sanic/Manifest
+++ b/dev-python/sanic/Manifest
@@ -1 +1,2 @@
 DIST sanic-21.3.4.tar.gz 234229 BLAKE2B a24941777099d5a09dd020a7f0a9fe39ae0ab89436fe27e2e4bbb418b684583002b9249e46438787d07bae6114ee1a0fd27e24e4e29983e8499f766f238e07d9 SHA512 15596f37b5389073d6a2b5e2d2bf5871d9a31ba29bf4e2eac9fb91df29e76035b02f7d892bb8edd5ffde75f05acdcebdb2c8f5ddf7224f40c5391c8f058f5c97
+DIST sanic-21.6.0.tar.gz 243159 BLAKE2B 2b0dfe59493a709be0059c06400723f7405ae032853bca25356e4c4296ff1bc512d9f885c77f48161de06917676bcef248952a7dd2751857e2f36a96389b2cf1 SHA512 fa6214e24d85cb2c5b059b7df9c818d58232f13de6e188c222f1ae441ece78167437464714097d1cab0432b2ca68b9f3ffd62f14c98dabfa8127cea29685b85b

diff --git a/dev-python/sanic/sanic-21.6.0.ebuild b/dev-python/sanic/sanic-21.6.0.ebuild
new file mode 100644
index 000000000..aea862df5
--- /dev/null
+++ b/dev-python/sanic/sanic-21.6.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Async Python 3.6+ web server/framework | Build fast. Run fast."
+HOMEPAGE="
+	https://pypi.python.org/pypi/sanic
+	https://github.com/huge-success/sanic
+"
+SRC_URI="https://github.com/huge-success/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=dev-python/aiofiles-0.6.0[${PYTHON_USEDEP}]
+	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
+	>=dev-python/multidict-5.0[${PYTHON_USEDEP}]
+	>=dev-python/sanic-routing-0.0.10[${PYTHON_USEDEP}]
+	dev-python/ujson[${PYTHON_USEDEP}]
+	dev-python/uvloop[${PYTHON_USEDEP}]
+	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
+"
+DEPEND="
+	${RDEPEND}
+	test? (
+		dev-python/beautifulsoup[${PYTHON_USEDEP}]
+		>=dev-python/httpcore-0.3.0[${PYTHON_USEDEP}]
+		>=dev-python/pytest-5.2.1[${PYTHON_USEDEP}]
+		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
+		dev-python/pytest-sanic[${PYTHON_USEDEP}]
+		dev-python/sanic-testing[${PYTHON_USEDEP}]
+		dev-python/uvicorn[${PYTHON_USEDEP}]
+		www-servers/gunicorn[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+				dev-python/docutils \
+				dev-python/pygments \
+				dev-python/sphinx_rtd_theme \
+				dev-python/recommonmark \
+				www-servers/gunicorn
+
+#python_test() {
+#	pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime tests/test_keep_alive_timeout.py::test_keep_alive_client_timeout || die
+#}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
@ 2021-06-28 13:56 Florian Schmaus
  0 siblings, 0 replies; 14+ messages in thread
From: Florian Schmaus @ 2021-06-28 13:56 UTC (permalink / raw
  To: gentoo-commits

commit:     ec7c448b97416dc6971a17dc88042eeda4fb884e
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Jun 28 13:33:55 2021 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Jun 28 13:34:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ec7c448b

dev-python/sanic: deselect failing test

Closes: https://bugs.gentoo.org/799023
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

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

diff --git a/dev-python/sanic/sanic-21.6.0.ebuild b/dev-python/sanic/sanic-21.6.0.ebuild
index aea862df5..d08cf1664 100644
--- a/dev-python/sanic/sanic-21.6.0.ebuild
+++ b/dev-python/sanic/sanic-21.6.0.ebuild
@@ -50,6 +50,6 @@ distutils_enable_sphinx docs \
 				dev-python/recommonmark \
 				www-servers/gunicorn
 
-#python_test() {
-#	pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime tests/test_keep_alive_timeout.py::test_keep_alive_client_timeout || die
-#}
+python_test() {
+	pytest -vv --deselect tests/test_keep_alive_timeout.py::test_keep_alive_client_timeout || die
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic/
@ 2022-03-16 20:48 Arthur Zamarin
  0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2022-03-16 20:48 UTC (permalink / raw
  To: gentoo-commits

commit:     c56ab3d38e8cd8ca873b80d34670776ffce24e54
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Mar 15 02:46:11 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 02:46:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c56ab3d3

dev-python/sanic: treeclean

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/sanic/Manifest            |  2 --
 dev-python/sanic/metadata.xml        | 12 --------
 dev-python/sanic/sanic-21.3.4.ebuild | 56 ------------------------------------
 dev-python/sanic/sanic-21.6.0.ebuild | 55 -----------------------------------
 4 files changed, 125 deletions(-)

diff --git a/dev-python/sanic/Manifest b/dev-python/sanic/Manifest
deleted file mode 100644
index 0a0fb36f3..000000000
--- a/dev-python/sanic/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST sanic-21.3.4.tar.gz 234229 BLAKE2B a24941777099d5a09dd020a7f0a9fe39ae0ab89436fe27e2e4bbb418b684583002b9249e46438787d07bae6114ee1a0fd27e24e4e29983e8499f766f238e07d9 SHA512 15596f37b5389073d6a2b5e2d2bf5871d9a31ba29bf4e2eac9fb91df29e76035b02f7d892bb8edd5ffde75f05acdcebdb2c8f5ddf7224f40c5391c8f058f5c97
-DIST sanic-21.6.0.tar.gz 243159 BLAKE2B 2b0dfe59493a709be0059c06400723f7405ae032853bca25356e4c4296ff1bc512d9f885c77f48161de06917676bcef248952a7dd2751857e2f36a96389b2cf1 SHA512 fa6214e24d85cb2c5b059b7df9c818d58232f13de6e188c222f1ae441ece78167437464714097d1cab0432b2ca68b9f3ffd62f14c98dabfa8127cea29685b85b

diff --git a/dev-python/sanic/metadata.xml b/dev-python/sanic/metadata.xml
deleted file mode 100644
index 49a49a08c..000000000
--- a/dev-python/sanic/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <!-- maintainer-needed -->
-  <longdescription lang="en">
-Sanic is a Python 3.6+ web server and web framework that’s written to go fast. It allows the usage of the async/await syntax added in Python 3.5, which makes your code non-blocking and speedy.
-
-The goal of the project is to provide a simple way to get up and running a highly performant HTTP server that is easy to build, to expand, and ultimately to scale.  </longdescription>
-  <upstream>
-    <remote-id type="github">huge-success/sanic</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/dev-python/sanic/sanic-21.3.4.ebuild b/dev-python/sanic/sanic-21.3.4.ebuild
deleted file mode 100644
index 7710e76da..000000000
--- a/dev-python/sanic/sanic-21.3.4.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{8,9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Async Python 3.6+ web server/framework | Build fast. Run fast."
-HOMEPAGE="
-	https://pypi.python.org/pypi/sanic
-	https://github.com/huge-success/sanic
-"
-SRC_URI="https://github.com/huge-success/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=dev-python/aiofiles-0.6.0[${PYTHON_USEDEP}]
-	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
-	>=dev-python/multidict-5.0[${PYTHON_USEDEP}]
-	<dev-python/multidict-6.0[${PYTHON_USEDEP}]
-	>=dev-python/sanic-routing-0.0.10[${PYTHON_USEDEP}]
-	dev-python/ujson[${PYTHON_USEDEP}]
-	dev-python/uvloop[${PYTHON_USEDEP}]
-	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
-"
-DEPEND="
-	${RDEPEND}
-	test? (
-		dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-		>=dev-python/httpcore-0.3.0[${PYTHON_USEDEP}]
-		>=dev-python/pytest-5.2.1[${PYTHON_USEDEP}]
-		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
-		dev-python/pytest-sanic[${PYTHON_USEDEP}]
-		dev-python/sanic-testing[${PYTHON_USEDEP}]
-		dev-python/uvicorn[${PYTHON_USEDEP}]
-		www-servers/gunicorn[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs \
-				dev-python/docutils \
-				dev-python/pygments \
-				dev-python/sphinx_rtd_theme \
-				dev-python/recommonmark \
-				www-servers/gunicorn
-
-python_test() {
-	pytest -vv --deselect tests/test_unix_socket.py::test_zero_downtime tests/test_keep_alive_timeout.py::test_keep_alive_client_timeout || die
-}

diff --git a/dev-python/sanic/sanic-21.6.0.ebuild b/dev-python/sanic/sanic-21.6.0.ebuild
deleted file mode 100644
index f17e14108..000000000
--- a/dev-python/sanic/sanic-21.6.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{8..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Async Python 3.6+ web server/framework | Build fast. Run fast."
-HOMEPAGE="
-	https://pypi.python.org/pypi/sanic
-	https://github.com/huge-success/sanic
-"
-SRC_URI="https://github.com/huge-success/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=dev-python/aiofiles-0.6.0[${PYTHON_USEDEP}]
-	>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
-	>=dev-python/multidict-5.0[${PYTHON_USEDEP}]
-	>=dev-python/sanic-routing-0.0.10[${PYTHON_USEDEP}]
-	dev-python/ujson[${PYTHON_USEDEP}]
-	dev-python/uvloop[${PYTHON_USEDEP}]
-	>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
-"
-DEPEND="
-	${RDEPEND}
-	test? (
-		dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-		>=dev-python/httpcore-0.3.0[${PYTHON_USEDEP}]
-		>=dev-python/pytest-5.2.1[${PYTHON_USEDEP}]
-		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
-		dev-python/pytest-sanic[${PYTHON_USEDEP}]
-		dev-python/sanic-testing[${PYTHON_USEDEP}]
-		dev-python/uvicorn[${PYTHON_USEDEP}]
-		www-servers/gunicorn[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs \
-				dev-python/docutils \
-				dev-python/pygments \
-				dev-python/sphinx_rtd_theme \
-				dev-python/recommonmark \
-				www-servers/gunicorn
-
-python_test() {
-	pytest -vv --deselect tests/test_keep_alive_timeout.py::test_keep_alive_client_timeout || die
-}


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

end of thread, other threads:[~2022-03-16 20:48 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-30 15:53 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sanic/ Andrew Ammerlaan
2021-05-30 15:53 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2022-03-16 20:48 Arthur Zamarin
2021-06-28 13:56 Florian Schmaus
2021-06-28 10:59 Florian Schmaus
2021-05-30 15:53 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-05-30 15:53 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-05-28 10:28 Andrew Ammerlaan
2020-11-28 13:57 Andrew Ammerlaan
2020-11-26 12:10 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-11-26 12:10 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-06-30 19:19 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-06-30 19:43 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-06-09 16:37 Andrew Ammerlaan
2020-05-18 16:27 Andrew Ammerlaan
2020-03-29 13:21 Andrew Ammerlaan
2020-03-29 13:21 Andrew Ammerlaan

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