public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2015-12-07 21:25 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2015-12-07 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     4f82f530d4407aadac8e9d7ff37683fe4ea283cd
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  7 21:25:18 2015 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Dec  7 21:25:32 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f82f530

dev-python/python-socketio: Add python-socketio, python implementation of the Socket.IO realtime server

Package-Manager: portage-2.2.26

 dev-python/python-socketio/Manifest                |  1 +
 dev-python/python-socketio/metadata.xml            | 12 +++++++
 .../python-socketio/python-socketio-0.7.0.ebuild   | 39 ++++++++++++++++++++++
 3 files changed, 52 insertions(+)

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
new file mode 100644
index 0000000..a4ac07e
--- /dev/null
+++ b/dev-python/python-socketio/Manifest
@@ -0,0 +1 @@
+DIST python-socketio-0.7.0.tar.gz 10932 SHA256 831095fff02dfed6b53fed858fde06ae00a616b6d73f4830808c8bce330fa19a SHA512 7591c82a43b7beed907d5eb4269b2ed3bc2d0423b9392d092190e64aef0631835ccbaa494762a7acc914ed082884b4e4fdf78f84e1bdcdcc41433fee0746b176 WHIRLPOOL 5bc05e84c9a194516bcbb434978c27b0a71f44e04d4d8a46b23d997b489a28bd7ae89f75a8db46cc4ea92ddaf4a42e43901c0d283a1b198ad43340f645933509

diff --git a/dev-python/python-socketio/metadata.xml b/dev-python/python-socketio/metadata.xml
new file mode 100644
index 0000000..fadd864
--- /dev/null
+++ b/dev-python/python-socketio/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>python</herd>
+	<upstream>
+		<remote-id type="pypi">python-socketio</remote-id>
+		<remote-id type="github">miguelgrinberg/python-socketio</remote-id>
+	</upstream>
+	<maintainer>
+		<email>zmedico@gentoo.org</email>
+	</maintainer>
+</pkgmetadata>

diff --git a/dev-python/python-socketio/python-socketio-0.7.0.ebuild b/dev-python/python-socketio/python-socketio-0.7.0.ebuild
new file mode 100644
index 0000000..1750148
--- /dev/null
+++ b/dev-python/python-socketio/python-socketio-0.7.0.ebuild
@@ -0,0 +1,39 @@
+# 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_4} )
+
+inherit distutils-r1
+
+MY_PN=""
+DESCRIPTION="Python implementation of the Socket.IO realtime server."
+HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+	>=dev-python/python-engineio-0.7.0[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pbr[${PYTHON_USEDEP}]
+	)"
+
+# pypi tarball does not contain tests
+RESTRICT="test"
+
+src_prepare() {
+	sed -e 's:pbr<1.7.0:pbr:' -i setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	esetup.py test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2015-12-07 21:37 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2015-12-07 21:37 UTC (permalink / raw
  To: gentoo-commits

commit:     80f78f371113ee011037bba81fad6a0692214b7a
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  7 21:36:24 2015 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Dec  7 21:36:24 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80f78f37

dev-python/python-socketio: block dev-python/gevent-socketio due to file collision

Package-Manager: portage-2.2.26

 dev-python/python-socketio/python-socketio-0.7.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/python-socketio/python-socketio-0.7.0.ebuild b/dev-python/python-socketio/python-socketio-0.7.0.ebuild
index 1750148..50e33f2 100644
--- a/dev-python/python-socketio/python-socketio-0.7.0.ebuild
+++ b/dev-python/python-socketio/python-socketio-0.7.0.ebuild
@@ -18,7 +18,8 @@ KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
 RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-	>=dev-python/python-engineio-0.7.0[${PYTHON_USEDEP}]"
+	>=dev-python/python-engineio-0.7.0[${PYTHON_USEDEP}]
+	!dev-python/gevent-socketio"
 DEPEND="${RDEPEND}
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	test? (


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2015-12-22 21:53 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2015-12-22 21:53 UTC (permalink / raw
  To: gentoo-commits

commit:     6dbab07be74ee74454b3e3509d67aea932e03d3c
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 22 21:53:01 2015 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Dec 22 21:53:33 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dbab07b

dev-python/python-socketio: add pypy and pypy3 to PYTHON_COMPAT

Package-Manager: portage-2.2.26

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

diff --git a/dev-python/python-socketio/python-socketio-0.7.0.ebuild b/dev-python/python-socketio/python-socketio-0.7.0.ebuild
index 50e33f2..91eda43 100644
--- a/dev-python/python-socketio/python-socketio-0.7.0.ebuild
+++ b/dev-python/python-socketio/python-socketio-0.7.0.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2016-01-12  0:43 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2016-01-12  0:43 UTC (permalink / raw
  To: gentoo-commits

commit:     4870e9d40db40cbc01da5f873850b7a98d956ad3
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 12 00:41:39 2016 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Jan 12 00:41:39 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4870e9d4

dev-python/python-socketio: version bump to 0.9.1

Package-Manager: portage-2.2.26

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

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
index a4ac07e..886896f 100644
--- a/dev-python/python-socketio/Manifest
+++ b/dev-python/python-socketio/Manifest
@@ -1 +1,2 @@
 DIST python-socketio-0.7.0.tar.gz 10932 SHA256 831095fff02dfed6b53fed858fde06ae00a616b6d73f4830808c8bce330fa19a SHA512 7591c82a43b7beed907d5eb4269b2ed3bc2d0423b9392d092190e64aef0631835ccbaa494762a7acc914ed082884b4e4fdf78f84e1bdcdcc41433fee0746b176 WHIRLPOOL 5bc05e84c9a194516bcbb434978c27b0a71f44e04d4d8a46b23d997b489a28bd7ae89f75a8db46cc4ea92ddaf4a42e43901c0d283a1b198ad43340f645933509
+DIST python-socketio-0.9.1.tar.gz 13443 SHA256 03c396b04729acd24a83882038cba689cf7f8300c19808689d837b9a69c40dec SHA512 eeef074537c1f04b4cab4e842338c330cacdfbf3facf8fb090c40deb9d118ab49478e3cbb32594b68bd74186a31c34fdb32710f5f302cc1e57047b04e2e4eb6b WHIRLPOOL 4580cdf6d4f9433978a6158999b9915eb5abafdf537a5ff9fbe9538cf8b04d7da3a1c9f87a68b18c1a7773ff47e396dd240cd7cc30b3730697a23a13f41dbcb8

diff --git a/dev-python/python-socketio/python-socketio-0.9.1.ebuild b/dev-python/python-socketio/python-socketio-0.9.1.ebuild
new file mode 100644
index 0000000..91eda43
--- /dev/null
+++ b/dev-python/python-socketio/python-socketio-0.9.1.ebuild
@@ -0,0 +1,40 @@
+# 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_4} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN=""
+DESCRIPTION="Python implementation of the Socket.IO realtime server."
+HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+	>=dev-python/python-engineio-0.7.0[${PYTHON_USEDEP}]
+	!dev-python/gevent-socketio"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pbr[${PYTHON_USEDEP}]
+	)"
+
+# pypi tarball does not contain tests
+RESTRICT="test"
+
+src_prepare() {
+	sed -e 's:pbr<1.7.0:pbr:' -i setup.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	esetup.py test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2016-03-12 11:40 Patrick Lauer
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick Lauer @ 2016-03-12 11:40 UTC (permalink / raw
  To: gentoo-commits

commit:     5b9fe677b35e4c35c46a93528020d99e40435928
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 11:38:03 2016 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 11:39:11 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b9fe677

dev-python/python-socketio: Add py35

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/python-socketio/python-socketio-0.9.1.ebuild b/dev-python/python-socketio/python-socketio-0.9.1.ebuild
index 91eda43..ed52aba 100644
--- a/dev-python/python-socketio/python-socketio-0.9.1.ebuild
+++ b/dev-python/python-socketio/python-socketio-0.9.1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 )
+PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy pypy3 )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2016-10-12  7:05 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2016-10-12  7:05 UTC (permalink / raw
  To: gentoo-commits

commit:     f01a3b955e96032903641a97d792c598474c0552
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 07:02:44 2016 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 07:02:44 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f01a3b95

dev-python/python-socketio: version bump to 1.6.0

Package-Manager: portage-2.3.2

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

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
index 886896f..e4214d1 100644
--- a/dev-python/python-socketio/Manifest
+++ b/dev-python/python-socketio/Manifest
@@ -1,2 +1,3 @@
 DIST python-socketio-0.7.0.tar.gz 10932 SHA256 831095fff02dfed6b53fed858fde06ae00a616b6d73f4830808c8bce330fa19a SHA512 7591c82a43b7beed907d5eb4269b2ed3bc2d0423b9392d092190e64aef0631835ccbaa494762a7acc914ed082884b4e4fdf78f84e1bdcdcc41433fee0746b176 WHIRLPOOL 5bc05e84c9a194516bcbb434978c27b0a71f44e04d4d8a46b23d997b489a28bd7ae89f75a8db46cc4ea92ddaf4a42e43901c0d283a1b198ad43340f645933509
 DIST python-socketio-0.9.1.tar.gz 13443 SHA256 03c396b04729acd24a83882038cba689cf7f8300c19808689d837b9a69c40dec SHA512 eeef074537c1f04b4cab4e842338c330cacdfbf3facf8fb090c40deb9d118ab49478e3cbb32594b68bd74186a31c34fdb32710f5f302cc1e57047b04e2e4eb6b WHIRLPOOL 4580cdf6d4f9433978a6158999b9915eb5abafdf537a5ff9fbe9538cf8b04d7da3a1c9f87a68b18c1a7773ff47e396dd240cd7cc30b3730697a23a13f41dbcb8
+DIST python-socketio-1.6.0.tar.gz 15012 SHA256 8b325e095b64675b00c05ca7072f4cd1a05054058feacbb8f7003ba72c60f076 SHA512 ea93359ce02cd5ee3e2120ba68f98f1e05225137dc99fa3903df50da328cbcd17a8cbc13a43d55b0e74664ff174fcbeb8a59274463257c802c22445a8b1e0fe3 WHIRLPOOL fba6b06ed645400123199c7549a50c66d1b4f1611642add207e051f132346880e6391e19555b728737f7c3e6da857294c62ced6e84c07fc4577029b0bd1cd4ce

diff --git a/dev-python/python-socketio/python-socketio-1.6.0.ebuild b/dev-python/python-socketio/python-socketio-1.6.0.ebuild
new file mode 100644
index 00000000..ed0bdc5
--- /dev/null
+++ b/dev-python/python-socketio/python-socketio-1.6.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of the Socket.IO realtime server."
+HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+	>=dev-python/python-engineio-0.7.0[${PYTHON_USEDEP}]
+	!dev-python/gevent-socketio"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+	)"
+
+# pypi tarball does not contain tests
+RESTRICT="test"
+
+src_prepare() {
+	eapply_user
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	esetup.py test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2016-10-12  7:05 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2016-10-12  7:05 UTC (permalink / raw
  To: gentoo-commits

commit:     ea4ca71703fb708d799cca578e53e16fb19ad830
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 07:04:54 2016 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 07:04:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea4ca717

dev-python/python-socketio: remove old version

Package-Manager: portage-2.3.2

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

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
index e4214d1..9a83c73 100644
--- a/dev-python/python-socketio/Manifest
+++ b/dev-python/python-socketio/Manifest
@@ -1,3 +1,2 @@
-DIST python-socketio-0.7.0.tar.gz 10932 SHA256 831095fff02dfed6b53fed858fde06ae00a616b6d73f4830808c8bce330fa19a SHA512 7591c82a43b7beed907d5eb4269b2ed3bc2d0423b9392d092190e64aef0631835ccbaa494762a7acc914ed082884b4e4fdf78f84e1bdcdcc41433fee0746b176 WHIRLPOOL 5bc05e84c9a194516bcbb434978c27b0a71f44e04d4d8a46b23d997b489a28bd7ae89f75a8db46cc4ea92ddaf4a42e43901c0d283a1b198ad43340f645933509
 DIST python-socketio-0.9.1.tar.gz 13443 SHA256 03c396b04729acd24a83882038cba689cf7f8300c19808689d837b9a69c40dec SHA512 eeef074537c1f04b4cab4e842338c330cacdfbf3facf8fb090c40deb9d118ab49478e3cbb32594b68bd74186a31c34fdb32710f5f302cc1e57047b04e2e4eb6b WHIRLPOOL 4580cdf6d4f9433978a6158999b9915eb5abafdf537a5ff9fbe9538cf8b04d7da3a1c9f87a68b18c1a7773ff47e396dd240cd7cc30b3730697a23a13f41dbcb8
 DIST python-socketio-1.6.0.tar.gz 15012 SHA256 8b325e095b64675b00c05ca7072f4cd1a05054058feacbb8f7003ba72c60f076 SHA512 ea93359ce02cd5ee3e2120ba68f98f1e05225137dc99fa3903df50da328cbcd17a8cbc13a43d55b0e74664ff174fcbeb8a59274463257c802c22445a8b1e0fe3 WHIRLPOOL fba6b06ed645400123199c7549a50c66d1b4f1611642add207e051f132346880e6391e19555b728737f7c3e6da857294c62ced6e84c07fc4577029b0bd1cd4ce

diff --git a/dev-python/python-socketio/python-socketio-0.7.0.ebuild b/dev-python/python-socketio/python-socketio-0.7.0.ebuild
deleted file mode 100644
index 91eda43..00000000
--- a/dev-python/python-socketio/python-socketio-0.7.0.ebuild
+++ /dev/null
@@ -1,40 +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_4} pypy pypy3 )
-
-inherit distutils-r1
-
-MY_PN=""
-DESCRIPTION="Python implementation of the Socket.IO realtime server."
-HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-	>=dev-python/python-engineio-0.7.0[${PYTHON_USEDEP}]
-	!dev-python/gevent-socketio"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pbr[${PYTHON_USEDEP}]
-	)"
-
-# pypi tarball does not contain tests
-RESTRICT="test"
-
-src_prepare() {
-	sed -e 's:pbr<1.7.0:pbr:' -i setup.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	esetup.py test || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2017-01-26  4:17 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2017-01-26  4:17 UTC (permalink / raw
  To: gentoo-commits

commit:     c9bb300083e7c6180f647f783a89bc39f5bf47e6
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 26 04:13:01 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu Jan 26 04:13:01 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9bb3000

dev-python/python-socketio: version bump to 1.6.3

Package-Manager: Portage-2.3.3, Repoman-2.3.1

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

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
index 9a83c73..b6228a6 100644
--- a/dev-python/python-socketio/Manifest
+++ b/dev-python/python-socketio/Manifest
@@ -1,2 +1,3 @@
 DIST python-socketio-0.9.1.tar.gz 13443 SHA256 03c396b04729acd24a83882038cba689cf7f8300c19808689d837b9a69c40dec SHA512 eeef074537c1f04b4cab4e842338c330cacdfbf3facf8fb090c40deb9d118ab49478e3cbb32594b68bd74186a31c34fdb32710f5f302cc1e57047b04e2e4eb6b WHIRLPOOL 4580cdf6d4f9433978a6158999b9915eb5abafdf537a5ff9fbe9538cf8b04d7da3a1c9f87a68b18c1a7773ff47e396dd240cd7cc30b3730697a23a13f41dbcb8
 DIST python-socketio-1.6.0.tar.gz 15012 SHA256 8b325e095b64675b00c05ca7072f4cd1a05054058feacbb8f7003ba72c60f076 SHA512 ea93359ce02cd5ee3e2120ba68f98f1e05225137dc99fa3903df50da328cbcd17a8cbc13a43d55b0e74664ff174fcbeb8a59274463257c802c22445a8b1e0fe3 WHIRLPOOL fba6b06ed645400123199c7549a50c66d1b4f1611642add207e051f132346880e6391e19555b728737f7c3e6da857294c62ced6e84c07fc4577029b0bd1cd4ce
+DIST python-socketio-1.6.3.tar.gz 15517 SHA256 5193a73a6ad26d14d236a5d58dd16a489f416210686210aacf00a5e4c1fa9ef0 SHA512 193926547c0bbd155a05dc494998ca8214abf22eb89b16368f16f1875ca9e0f9962ba56d09356405e19c84823af73bc6a1ae5b5de9aedc904108fc12de6b69fe WHIRLPOOL 7d442bf93516ff3ddef58c853a197b5dbe4308b04ce30ee19b40c928086c0faf02c5756162949d087459f76854e04d5c28c45126a5ddf960e03b81d899245c8d

diff --git a/dev-python/python-socketio/python-socketio-1.6.3.ebuild b/dev-python/python-socketio/python-socketio-1.6.3.ebuild
new file mode 100644
index 00000000..c9d9000
--- /dev/null
+++ b/dev-python/python-socketio/python-socketio-1.6.3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of the Socket.IO realtime server."
+HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+	>=dev-python/python-engineio-1.0.0[${PYTHON_USEDEP}]
+	!dev-python/gevent-socketio"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+	)"
+
+# pypi tarball does not contain tests
+RESTRICT="test"
+
+src_prepare() {
+	eapply_user
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	esetup.py test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2017-03-15  8:36 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2017-03-15  8:36 UTC (permalink / raw
  To: gentoo-commits

commit:     85289e76ac6aef0ddf969b0d7e48dd0fc12ba511
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 15 08:21:11 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed Mar 15 08:36:01 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85289e76

dev-python/python-socketio: Add python3_6 to PYTHON_COMPAT

Package-Manager: Portage-2.3.4, Repoman-2.3.2

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

diff --git a/dev-python/python-socketio/python-socketio-1.6.3.ebuild b/dev-python/python-socketio/python-socketio-1.6.3.ebuild
index a8958f25118..3501fec9b0c 100644
--- a/dev-python/python-socketio/python-socketio-1.6.3.ebuild
+++ b/dev-python/python-socketio/python-socketio-1.6.3.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy pypy3 )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2017-04-28  4:15 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2017-04-28  4:15 UTC (permalink / raw
  To: gentoo-commits

commit:     cf84d8871a11752b6e731bb7f832c10d388caac9
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 28 04:04:42 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Apr 28 04:15:16 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf84d887

dev-python/python-socketio: version bump to 1.7.4

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/python-socketio/Manifest                |  1 +
 .../python-socketio/python-socketio-1.7.4.ebuild   | 37 ++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
index b6228a6971b..8cba4e1db01 100644
--- a/dev-python/python-socketio/Manifest
+++ b/dev-python/python-socketio/Manifest
@@ -1,3 +1,4 @@
 DIST python-socketio-0.9.1.tar.gz 13443 SHA256 03c396b04729acd24a83882038cba689cf7f8300c19808689d837b9a69c40dec SHA512 eeef074537c1f04b4cab4e842338c330cacdfbf3facf8fb090c40deb9d118ab49478e3cbb32594b68bd74186a31c34fdb32710f5f302cc1e57047b04e2e4eb6b WHIRLPOOL 4580cdf6d4f9433978a6158999b9915eb5abafdf537a5ff9fbe9538cf8b04d7da3a1c9f87a68b18c1a7773ff47e396dd240cd7cc30b3730697a23a13f41dbcb8
 DIST python-socketio-1.6.0.tar.gz 15012 SHA256 8b325e095b64675b00c05ca7072f4cd1a05054058feacbb8f7003ba72c60f076 SHA512 ea93359ce02cd5ee3e2120ba68f98f1e05225137dc99fa3903df50da328cbcd17a8cbc13a43d55b0e74664ff174fcbeb8a59274463257c802c22445a8b1e0fe3 WHIRLPOOL fba6b06ed645400123199c7549a50c66d1b4f1611642add207e051f132346880e6391e19555b728737f7c3e6da857294c62ced6e84c07fc4577029b0bd1cd4ce
 DIST python-socketio-1.6.3.tar.gz 15517 SHA256 5193a73a6ad26d14d236a5d58dd16a489f416210686210aacf00a5e4c1fa9ef0 SHA512 193926547c0bbd155a05dc494998ca8214abf22eb89b16368f16f1875ca9e0f9962ba56d09356405e19c84823af73bc6a1ae5b5de9aedc904108fc12de6b69fe WHIRLPOOL 7d442bf93516ff3ddef58c853a197b5dbe4308b04ce30ee19b40c928086c0faf02c5756162949d087459f76854e04d5c28c45126a5ddf960e03b81d899245c8d
+DIST python-socketio-1.7.4.tar.gz 23298 SHA256 9200ee48aec8673027fdc40b0391aa2d681ff994d93b738ebd9f0d29916f24c4 SHA512 fb31072420eca42fa0349f0a9350fe9ab6bbbac7dc32cd7ae76cffa026fdeeb4197b8c441d76bfc46af55a550c5b7e81e387b67d538c500075bc5b4e8f68d5ab WHIRLPOOL 038a0f43a93076cd6a9ccf8c081e54d421a7fcf1256dee350964ca16a5a5b10de9a20e919f761bf2704631562b0965a6825e3b28d8620b096eadc24504a1ea7b

diff --git a/dev-python/python-socketio/python-socketio-1.7.4.ebuild b/dev-python/python-socketio/python-socketio-1.7.4.ebuild
new file mode 100644
index 00000000000..0dc7a26ee56
--- /dev/null
+++ b/dev-python/python-socketio/python-socketio-1.7.4.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of the Socket.IO realtime server."
+HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+	>=dev-python/python-engineio-1.2.1[${PYTHON_USEDEP}]
+	!dev-python/gevent-socketio"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+	)"
+
+# pypi tarball does not contain tests
+RESTRICT="test"
+
+src_prepare() {
+	eapply_user
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	esetup.py test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2017-09-24 23:08 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2017-09-24 23:08 UTC (permalink / raw
  To: gentoo-commits

commit:     068c86ff7e365336d4a0dfbaf7ec4b7d76e3a346
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 23:02:03 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 23:08:08 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=068c86ff

dev-python/python-socketio: version bump to 1.8.0

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-python/python-socketio/Manifest                |  1 +
 .../python-socketio/python-socketio-1.8.0.ebuild   | 37 ++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
index 6f29a61a1f3..ca2e3c6df1f 100644
--- a/dev-python/python-socketio/Manifest
+++ b/dev-python/python-socketio/Manifest
@@ -1 +1,2 @@
 DIST python-socketio-1.7.4.tar.gz 23298 SHA256 9200ee48aec8673027fdc40b0391aa2d681ff994d93b738ebd9f0d29916f24c4 SHA512 fb31072420eca42fa0349f0a9350fe9ab6bbbac7dc32cd7ae76cffa026fdeeb4197b8c441d76bfc46af55a550c5b7e81e387b67d538c500075bc5b4e8f68d5ab WHIRLPOOL 038a0f43a93076cd6a9ccf8c081e54d421a7fcf1256dee350964ca16a5a5b10de9a20e919f761bf2704631562b0965a6825e3b28d8620b096eadc24504a1ea7b
+DIST python-socketio-1.8.0.tar.gz 23557 SHA256 4d662601c2fec639b5bb8fdfdb1c53cac73c44efb0b39ee428184bddf2f49479 SHA512 2514cbad3e429c101f5e247bdf2e4a2b5a0957c19fa97e56ebe8cd78b36e81cfb9dc4500bee367e57460be3a08bbd1e70967a5c87109034ade847ff7f559711d WHIRLPOOL 494438728043f9f2492a9ecae9f5ef26dc4c403b5dff4b99ad079aaa9cb3ce2c10e705213b8937071a187512f7efe6ed92b29c3be493c21028bbca8fcaccf942

diff --git a/dev-python/python-socketio/python-socketio-1.8.0.ebuild b/dev-python/python-socketio/python-socketio-1.8.0.ebuild
new file mode 100644
index 00000000000..0dc7a26ee56
--- /dev/null
+++ b/dev-python/python-socketio/python-socketio-1.8.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of the Socket.IO realtime server."
+HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+	>=dev-python/python-engineio-1.2.1[${PYTHON_USEDEP}]
+	!dev-python/gevent-socketio"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+	)"
+
+# pypi tarball does not contain tests
+RESTRICT="test"
+
+src_prepare() {
+	eapply_user
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	esetup.py test || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2018-04-13  9:53 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2018-04-13  9:53 UTC (permalink / raw
  To: gentoo-commits

commit:     7b408f9a38aafd1eb13dc30da0c366efd019eef6
Author:     Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Fri Apr 13 08:23:11 2018 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Apr 13 09:52:11 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b408f9a

dev-python/python-socketio: remove variables from HOMEPAGE

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/python-socketio/python-socketio-1.7.4.ebuild b/dev-python/python-socketio/python-socketio-1.7.4.ebuild
index 0dc7a26ee56..9b05e5b1f5c 100644
--- a/dev-python/python-socketio/python-socketio-1.7.4.ebuild
+++ b/dev-python/python-socketio/python-socketio-1.7.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
 inherit distutils-r1
 
 DESCRIPTION="Python implementation of the Socket.IO realtime server."
-HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
+HOMEPAGE="https://python-socketio.readthedocs.org/ https://github.com/miguelgrinberg/python-socketio/ https://pypi.python.org/pypi/python-socketio"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2018-07-03 21:54 Zac Medico
  0 siblings, 0 replies; 16+ messages in thread
From: Zac Medico @ 2018-07-03 21:54 UTC (permalink / raw
  To: gentoo-commits

commit:     ce3470dea8ad2dda51344e1d3d0b934f13378d83
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  3 20:09:07 2018 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Jul  3 21:54:36 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce3470de

dev-python/python-socketio: version bump to 2.0.0

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 dev-python/python-socketio/Manifest                |  1 +
 .../python-socketio/python-socketio-2.0.0.ebuild   | 37 ++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
index 1af3a290734..ba202b4bc76 100644
--- a/dev-python/python-socketio/Manifest
+++ b/dev-python/python-socketio/Manifest
@@ -1,2 +1,3 @@
 DIST python-socketio-1.7.4.tar.gz 23298 BLAKE2B a5337e6f124018172902fbc51935e193267a8e209e9d677fa52e72ff6b71ea27e2aa5284369082fe38013c5b4b21c8561952b9046acbfd3f02c824c0837b367c SHA512 fb31072420eca42fa0349f0a9350fe9ab6bbbac7dc32cd7ae76cffa026fdeeb4197b8c441d76bfc46af55a550c5b7e81e387b67d538c500075bc5b4e8f68d5ab
 DIST python-socketio-1.8.0.tar.gz 23557 BLAKE2B 085035d6621f2ec351b28095086c6cc5787c4466f904568d5ece0cf37261a75fb6793be1fedd9f54f7cbeccbb668eaee8463850698aa6f2a901b3454cf63f128 SHA512 2514cbad3e429c101f5e247bdf2e4a2b5a0957c19fa97e56ebe8cd78b36e81cfb9dc4500bee367e57460be3a08bbd1e70967a5c87109034ade847ff7f559711d
+DIST python-socketio-2.0.0.tar.gz 24180 BLAKE2B 33d0c2007acfe067264c670c98e2f8f6764a979b7c67d8d03217a3b2dc45dbccb699beeff151381f8ccd787610ad39bff3396d4737594ed467f29994b4b8f0a7 SHA512 285d6235aaa5914f21a883976ecf31e15947d28e396c859080cf418094e21b5f3a9c4de01361a2c3219edf43c3c587bca24c9f10ebb97be23bc12c59af79ee2b

diff --git a/dev-python/python-socketio/python-socketio-2.0.0.ebuild b/dev-python/python-socketio/python-socketio-2.0.0.ebuild
new file mode 100644
index 00000000000..282de64e4d5
--- /dev/null
+++ b/dev-python/python-socketio/python-socketio-2.0.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of the Socket.IO realtime server."
+HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.org/project/${PN}"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+	>=dev-python/python-engineio-2.2.0[${PYTHON_USEDEP}]
+	!dev-python/gevent-socketio"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+	)"
+
+# pypi tarball does not contain tests
+RESTRICT="test"
+
+src_prepare() {
+	eapply_user
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	esetup.py test || die
+}


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

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

commit:     05838a20983083d1346160a7b74961585047fcc9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  5 20:15:43 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb  5 20:46:51 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05838a20

dev-python/python-socketio: Remove py2

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

 dev-python/python-socketio/python-socketio-1.7.4.ebuild | 2 +-
 dev-python/python-socketio/python-socketio-1.8.0.ebuild | 2 +-
 dev-python/python-socketio/python-socketio-2.0.0.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/python-socketio/python-socketio-1.7.4.ebuild b/dev-python/python-socketio/python-socketio-1.7.4.ebuild
index 82ac6111006..1f0d0165b58 100644
--- a/dev-python/python-socketio/python-socketio-1.7.4.ebuild
+++ b/dev-python/python-socketio/python-socketio-1.7.4.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
+PYTHON_COMPAT=( python3_6 pypy3 )
 
 inherit distutils-r1
 

diff --git a/dev-python/python-socketio/python-socketio-1.8.0.ebuild b/dev-python/python-socketio/python-socketio-1.8.0.ebuild
index f07efcf9fa5..34da195701d 100644
--- a/dev-python/python-socketio/python-socketio-1.8.0.ebuild
+++ b/dev-python/python-socketio/python-socketio-1.8.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
+PYTHON_COMPAT=( python3_6 pypy3 )
 
 inherit distutils-r1
 

diff --git a/dev-python/python-socketio/python-socketio-2.0.0.ebuild b/dev-python/python-socketio/python-socketio-2.0.0.ebuild
index a9c1c3e9d3e..49f7279a786 100644
--- a/dev-python/python-socketio/python-socketio-2.0.0.ebuild
+++ b/dev-python/python-socketio/python-socketio-2.0.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
+PYTHON_COMPAT=( python3_6 pypy3 )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/
@ 2020-02-08 18:55 David Seifert
  0 siblings, 0 replies; 16+ messages in thread
From: David Seifert @ 2020-02-08 18:55 UTC (permalink / raw
  To: gentoo-commits

commit:     84f8a34334545bac8a7b11482147d1afd67ce194
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  8 18:54:44 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb  8 18:54:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84f8a343

dev-python/python-socketio: [QA] Fix VariableInHomepage

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-python/python-socketio/python-socketio-1.7.4.ebuild | 5 ++++-
 dev-python/python-socketio/python-socketio-1.8.0.ebuild | 5 ++++-
 dev-python/python-socketio/python-socketio-2.0.0.ebuild | 5 ++++-
 3 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/dev-python/python-socketio/python-socketio-1.7.4.ebuild b/dev-python/python-socketio/python-socketio-1.7.4.ebuild
index 1f0d0165b58..acff4ee8370 100644
--- a/dev-python/python-socketio/python-socketio-1.7.4.ebuild
+++ b/dev-python/python-socketio/python-socketio-1.7.4.ebuild
@@ -7,7 +7,10 @@ PYTHON_COMPAT=( python3_6 pypy3 )
 inherit distutils-r1
 
 DESCRIPTION="Python implementation of the Socket.IO realtime server."
-HOMEPAGE="https://python-socketio.readthedocs.org/ https://github.com/miguelgrinberg/python-socketio/ https://pypi.org/project/python-socketio/"
+HOMEPAGE="
+	https://python-socketio.readthedocs.org/
+	https://github.com/miguelgrinberg/python-socketio/
+	https://pypi.org/project/python-socketio/"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"

diff --git a/dev-python/python-socketio/python-socketio-1.8.0.ebuild b/dev-python/python-socketio/python-socketio-1.8.0.ebuild
index 34da195701d..23df095e3ea 100644
--- a/dev-python/python-socketio/python-socketio-1.8.0.ebuild
+++ b/dev-python/python-socketio/python-socketio-1.8.0.ebuild
@@ -7,7 +7,10 @@ PYTHON_COMPAT=( python3_6 pypy3 )
 inherit distutils-r1
 
 DESCRIPTION="Python implementation of the Socket.IO realtime server."
-HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.org/project/${PN}"
+HOMEPAGE="
+	https://python-socketio.readthedocs.org/
+	https://github.com/miguelgrinberg/python-socketio/
+	https://pypi.org/project/python-socketio"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"

diff --git a/dev-python/python-socketio/python-socketio-2.0.0.ebuild b/dev-python/python-socketio/python-socketio-2.0.0.ebuild
index 49f7279a786..9f66dde45a0 100644
--- a/dev-python/python-socketio/python-socketio-2.0.0.ebuild
+++ b/dev-python/python-socketio/python-socketio-2.0.0.ebuild
@@ -7,7 +7,10 @@ PYTHON_COMPAT=( python3_6 pypy3 )
 inherit distutils-r1
 
 DESCRIPTION="Python implementation of the Socket.IO realtime server."
-HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.org/project/${PN}"
+HOMEPAGE="
+	https://python-socketio.readthedocs.org/
+	https://github.com/miguelgrinberg/python-socketio/
+	https://pypi.org/project/python-socketio"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"


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

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

commit:     679db3d453457be8b71a608eeed11c298b3ffc57
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 28 21:04:02 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 28 21:11:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=679db3d4

dev-python/python-socketio: Remove redundant versions

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

 dev-python/python-socketio/Manifest                |  2 --
 .../python-socketio/python-socketio-1.7.4.ebuild   | 40 ----------------------
 .../python-socketio/python-socketio-1.8.0.ebuild   | 40 ----------------------
 3 files changed, 82 deletions(-)

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
index ba202b4bc76..60fe47f533c 100644
--- a/dev-python/python-socketio/Manifest
+++ b/dev-python/python-socketio/Manifest
@@ -1,3 +1 @@
-DIST python-socketio-1.7.4.tar.gz 23298 BLAKE2B a5337e6f124018172902fbc51935e193267a8e209e9d677fa52e72ff6b71ea27e2aa5284369082fe38013c5b4b21c8561952b9046acbfd3f02c824c0837b367c SHA512 fb31072420eca42fa0349f0a9350fe9ab6bbbac7dc32cd7ae76cffa026fdeeb4197b8c441d76bfc46af55a550c5b7e81e387b67d538c500075bc5b4e8f68d5ab
-DIST python-socketio-1.8.0.tar.gz 23557 BLAKE2B 085035d6621f2ec351b28095086c6cc5787c4466f904568d5ece0cf37261a75fb6793be1fedd9f54f7cbeccbb668eaee8463850698aa6f2a901b3454cf63f128 SHA512 2514cbad3e429c101f5e247bdf2e4a2b5a0957c19fa97e56ebe8cd78b36e81cfb9dc4500bee367e57460be3a08bbd1e70967a5c87109034ade847ff7f559711d
 DIST python-socketio-2.0.0.tar.gz 24180 BLAKE2B 33d0c2007acfe067264c670c98e2f8f6764a979b7c67d8d03217a3b2dc45dbccb699beeff151381f8ccd787610ad39bff3396d4737594ed467f29994b4b8f0a7 SHA512 285d6235aaa5914f21a883976ecf31e15947d28e396c859080cf418094e21b5f3a9c4de01361a2c3219edf43c3c587bca24c9f10ebb97be23bc12c59af79ee2b

diff --git a/dev-python/python-socketio/python-socketio-1.7.4.ebuild b/dev-python/python-socketio/python-socketio-1.7.4.ebuild
deleted file mode 100644
index acff4ee8370..00000000000
--- a/dev-python/python-socketio/python-socketio-1.7.4.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of the Socket.IO realtime server."
-HOMEPAGE="
-	https://python-socketio.readthedocs.org/
-	https://github.com/miguelgrinberg/python-socketio/
-	https://pypi.org/project/python-socketio/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-	>=dev-python/python-engineio-1.2.1[${PYTHON_USEDEP}]
-	!dev-python/gevent-socketio"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-	)"
-
-# pypi tarball does not contain tests
-RESTRICT="test"
-
-src_prepare() {
-	eapply_user
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	esetup.py test || die
-}

diff --git a/dev-python/python-socketio/python-socketio-1.8.0.ebuild b/dev-python/python-socketio/python-socketio-1.8.0.ebuild
deleted file mode 100644
index 23df095e3ea..00000000000
--- a/dev-python/python-socketio/python-socketio-1.8.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of the Socket.IO realtime server."
-HOMEPAGE="
-	https://python-socketio.readthedocs.org/
-	https://github.com/miguelgrinberg/python-socketio/
-	https://pypi.org/project/python-socketio"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-	>=dev-python/python-engineio-1.2.1[${PYTHON_USEDEP}]
-	!dev-python/gevent-socketio"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-	)"
-
-# pypi tarball does not contain tests
-RESTRICT="test"
-
-src_prepare() {
-	eapply_user
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	esetup.py test || die
-}


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

end of thread, other threads:[~2020-03-28 21:11 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-28 21:11 [gentoo-commits] repo/gentoo:master commit in: dev-python/python-socketio/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2020-02-08 18:55 David Seifert
2020-02-05 20:47 Michał Górny
2018-07-03 21:54 Zac Medico
2018-04-13  9:53 Zac Medico
2017-09-24 23:08 Zac Medico
2017-04-28  4:15 Zac Medico
2017-03-15  8:36 Zac Medico
2017-01-26  4:17 Zac Medico
2016-10-12  7:05 Zac Medico
2016-10-12  7:05 Zac Medico
2016-03-12 11:40 Patrick Lauer
2016-01-12  0:43 Zac Medico
2015-12-22 21:53 Zac Medico
2015-12-07 21:37 Zac Medico
2015-12-07 21:25 Zac Medico

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