[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2020-11-18 Thread Felix Yan via arch-commits
Date: Wednesday, November 18, 2020 @ 10:50:54
  Author: felixonmars
Revision: 757115

upgpkg: python-engineio 3.13.2-3: Python 3.9 rebuild

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-18 10:49:38 UTC (rev 757114)
+++ PKGBUILD2020-11-18 10:50:54 UTC (rev 757115)
@@ -2,7 +2,7 @@
 
 pkgname=python-engineio
 pkgver=3.13.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')


[arch-commits] Commit in python-engineio/trunk (PKGBUILD py39.patch)

2020-11-18 Thread Evangelos Foutras via arch-commits
Date: Wednesday, November 18, 2020 @ 10:49:38
  Author: foutrelis
Revision: 757114

Fix tests with Python 3.9

Added:
  python-engineio/trunk/py39.patch
Modified:
  python-engineio/trunk/PKGBUILD

+
 PKGBUILD   |   14 +++---
 py39.patch |   26 ++
 2 files changed, 37 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-18 10:34:08 UTC (rev 757113)
+++ PKGBUILD2020-11-18 10:49:38 UTC (rev 757114)
@@ -17,10 +17,18 @@
  'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-gevent-websocket' 'python-websockets')
 checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner')
 options=('!makeflags')
-source=(https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('712b7f9646d0a8aa470d0f373ccfa4baf4e37eba6583def4325037a33e066819f3dbcb8cc6544ba2878a784e8ca22f67f490a7aa18f6c8f45c660900a1946561')
-b2sums=('5b63d660ba82f94dd784f5aea7e651a05cf914049ab99f9aef36972efbe4978832f7225e7d77098d5319f437ac77216c44d11efa5f353745b8d4c285c24560e8')
+source=(https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+py39.patch)
+sha512sums=('712b7f9646d0a8aa470d0f373ccfa4baf4e37eba6583def4325037a33e066819f3dbcb8cc6544ba2878a784e8ca22f67f490a7aa18f6c8f45c660900a1946561'
+
'bdaf8f8f76c527a56000dac427c062b2be484381b3e1e05ec16a7c8f7b7fad8f07c16552c07dc08c002fb5067defa03de7dd8420e82289ea3ce836c9d88765dc')
+b2sums=('5b63d660ba82f94dd784f5aea7e651a05cf914049ab99f9aef36972efbe4978832f7225e7d77098d5319f437ac77216c44d11efa5f353745b8d4c285c24560e8'
+
'561bd0711b97c872b7f410a05f0bd5f65085eec27ee996b1491c9750d1bdc410ac38629a8717f1c5eb67897dd48da5664562d98e7a664271b1f65c4f6f4faac5')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../py39.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   python setup.py build

Added: py39.patch
===
--- py39.patch  (rev 0)
+++ py39.patch  2020-11-18 10:49:38 UTC (rev 757114)
@@ -0,0 +1,26 @@
+diff --git a/tests/asyncio/test_asyncio_client.py 
b/tests/asyncio/test_asyncio_client.py
+index d34fd05..c47238d 100644
+--- a/tests/asyncio/test_asyncio_client.py
 b/tests/asyncio/test_asyncio_client.py
+@@ -241,7 +241,7 @@ class TestAsyncClient(unittest.TestCase):
+ 
+ c = asyncio_client.AsyncClient()
+ c.start_background_task(foo, 'bar')
+-pending = asyncio.Task.all_tasks()
++pending = asyncio.all_tasks(loop=asyncio.get_event_loop())
+ asyncio.get_event_loop().run_until_complete(asyncio.wait(pending))
+ assert r == ['bar']
+ 
+diff --git a/tests/asyncio/test_asyncio_server.py 
b/tests/asyncio/test_asyncio_server.py
+index 2faecca..5f9272a 100644
+--- a/tests/asyncio/test_asyncio_server.py
 b/tests/asyncio/test_asyncio_server.py
+@@ -1004,7 +1004,7 @@ class TestAsyncServer(unittest.TestCase):
+ 
+ s = asyncio_server.AsyncServer()
+ s.start_background_task(foo, 'bar')
+-pending = asyncio.Task.all_tasks()
++pending = asyncio.all_tasks(loop=asyncio.get_event_loop())
+ asyncio.get_event_loop().run_until_complete(asyncio.wait(pending))
+ assert r == ['bar']
+ 


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Monday, November 9, 2020 @ 20:38:33
  Author: foutrelis
Revision: 748216

upgpkg: python-engineio 3.13.2-2: Python 3.9 rebuild

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 20:37:56 UTC (rev 748215)
+++ PKGBUILD2020-11-09 20:38:33 UTC (rev 748216)
@@ -2,7 +2,7 @@
 
 pkgname=python-engineio
 pkgver=3.13.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2020-08-24 Thread Levente Polyak via arch-commits
Date: Monday, August 24, 2020 @ 22:02:47
  Author: anthraxx
Revision: 687859

upgpkg: python-engineio 3.13.2-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-24 21:57:38 UTC (rev 687858)
+++ PKGBUILD2020-08-24 22:02:47 UTC (rev 687859)
@@ -1,13 +1,13 @@
 # Maintainer: Levente Polyak 
 
 pkgname=python-engineio
-pkgver=3.13.1
+pkgver=3.13.2
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')
 license=('MIT')
-depends=('python-six' 'python-urllib3' 'python-websocket-client' 
'python-websockets')
+depends=('python' 'python-six' 'python-urllib3' 'python-websocket-client' 
'python-websockets')
 optdepends=('python-eventlet: eventlet driver'
 'python-aiohttp: aiohttp driver'
 'python-tornado: tornado driver'
@@ -18,8 +18,8 @@
 checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner')
 options=('!makeflags')
 
source=(https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('261c3db434caaa1972f40ae6877782cb7d7ebb23dc45c39a27efce3e33def3a3016b6b814880f45253ea8b70cc4694585248eec9a87c7bed0460e7dd59b17269')
-b2sums=('233e5a796451826138a74a1ea98258bf558d4225639d95609d36a02b654df7d616f125b74ecde96faaf9af60ccd3e508030feb833f1cd48197a406f9d842ed19')
+sha512sums=('712b7f9646d0a8aa470d0f373ccfa4baf4e37eba6583def4325037a33e066819f3dbcb8cc6544ba2878a784e8ca22f67f490a7aa18f6c8f45c660900a1946561')
+b2sums=('5b63d660ba82f94dd784f5aea7e651a05cf914049ab99f9aef36972efbe4978832f7225e7d77098d5319f437ac77216c44d11efa5f353745b8d4c285c24560e8')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2020-07-22 Thread Levente Polyak via arch-commits
Date: Wednesday, July 22, 2020 @ 19:24:13
  Author: anthraxx
Revision: 664892

upgpkg: python-engineio 3.13.1-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-22 19:11:03 UTC (rev 664891)
+++ PKGBUILD2020-07-22 19:24:13 UTC (rev 664892)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=python-engineio
-pkgver=3.11.2
+pkgver=3.13.1
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -18,8 +18,8 @@
 checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner')
 options=('!makeflags')
 
source=(https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('5e0e7a95c92438899831a7528291440fde0b0069714adae8419967c7bc4a79cc8c423a18226d1894477a43d6b4526226f6df8f96e4ef35238d9cc219d21f936e')
-b2sums=('d4cc07eab9f38396252e6687ff96baa3a5983e1f3f623eb9f29069bbd444935a49d9c6cc461fc937f3424f1fc38d0761672879ffa867588811d6309375e218df')
+sha512sums=('261c3db434caaa1972f40ae6877782cb7d7ebb23dc45c39a27efce3e33def3a3016b6b814880f45253ea8b70cc4694585248eec9a87c7bed0460e7dd59b17269')
+b2sums=('233e5a796451826138a74a1ea98258bf558d4225639d95609d36a02b654df7d616f125b74ecde96faaf9af60ccd3e508030feb833f1cd48197a406f9d842ed19')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2020-01-18 Thread Levente Polyak via arch-commits
Date: Saturday, January 18, 2020 @ 19:01:32
  Author: anthraxx
Revision: 553056

upgpkg: python-engineio 3.11.2-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-18 19:01:03 UTC (rev 553055)
+++ PKGBUILD2020-01-18 19:01:32 UTC (rev 553056)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=python-engineio
-pkgver=3.10.0
+pkgver=3.11.2
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -18,8 +18,8 @@
 checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner')
 options=('!makeflags')
 
source=(https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('5d341c762eda03b68f7b8299add72ada7565747774ab9ec6b7faa03baa1da2f5')
-sha512sums=('e76260db9a52fa655dc536594eb49c74055b246f6af98f989b7de823833058502ec764ae38b55c15917485a60f81a1d16d8bf98ddc58d624d401557d81eebee9')
+sha512sums=('5e0e7a95c92438899831a7528291440fde0b0069714adae8419967c7bc4a79cc8c423a18226d1894477a43d6b4526226f6df8f96e4ef35238d9cc219d21f936e')
+b2sums=('d4cc07eab9f38396252e6687ff96baa3a5983e1f3f623eb9f29069bbd444935a49d9c6cc461fc937f3424f1fc38d0761672879ffa867588811d6309375e218df')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2019-11-16 Thread Levente Polyak via arch-commits
Date: Saturday, November 16, 2019 @ 23:42:14
  Author: anthraxx
Revision: 529842

upgpkg: python-engineio 3.10.0-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-16 22:18:00 UTC (rev 529841)
+++ PKGBUILD2019-11-16 23:42:14 UTC (rev 529842)
@@ -1,8 +1,8 @@
 # Maintainer: Levente Polyak 
 
 pkgname=python-engineio
-pkgver=3.3.1
-pkgrel=2
+pkgver=3.10.0
+pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')
@@ -17,9 +17,9 @@
  'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-gevent-websocket' 'python-websockets')
 checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner')
 options=('!makeflags')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('177371619e0fc4f062135e2caa0e14b52abe1e8767c28c000ed646939eede05c')
-sha512sums=('d8328624034712a08c72f92c13295ecef21a2375504baab3ff0e3d2731cb442ad6b05df4a01fa698a289b1d802e5adc0b2bd657f01bba86a5fdad3e9708899e5')
+source=(https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('5d341c762eda03b68f7b8299add72ada7565747774ab9ec6b7faa03baa1da2f5')
+sha512sums=('e76260db9a52fa655dc536594eb49c74055b246f6af98f989b7de823833058502ec764ae38b55c15917485a60f81a1d16d8bf98ddc58d624d401557d81eebee9')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -39,7 +39,6 @@
   install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-  rm -r "${pkgdir}"/usr/lib/python*/site-packages/tests
 }
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2019-11-01 Thread Antonio Rojas via arch-commits
Date: Friday, November 1, 2019 @ 23:45:09
  Author: arojas
Revision: 522109

Drop python2

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   48 ++--
 1 file changed, 14 insertions(+), 34 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-01 23:40:42 UTC (rev 522108)
+++ PKGBUILD2019-11-01 23:45:09 UTC (rev 522109)
@@ -1,7 +1,6 @@
 # Maintainer: Levente Polyak 
 
-pkgbase=python-engineio
-pkgname=('python-engineio' 'python2-engineio')
+pkgname=python-engineio
 pkgver=3.3.1
 pkgrel=2
 pkgdesc='Python implementation of the Engine.IO realtime server'
@@ -8,37 +7,33 @@
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')
 license=('MIT')
+depends=('python-six' 'python-urllib3' 'python-websocket-client' 
'python-websockets')
+optdepends=('python-eventlet: eventlet driver'
+'python-aiohttp: aiohttp driver'
+'python-tornado: tornado driver'
+'python-gevent: gevent driver'
+'python-gevent-websocket: gevent driver')
 makedepends=('python-setuptools' 'python-sphinx' 'python-six' 
'python-eventlet' 'python-aiohttp' 'python-tornado'
- 'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-gevent-websocket' 'python-websockets'
- 'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-eventlet' 'python2-tornado'
- 'python2-urllib3' 'python2-websocket-client' 'python2-gevent' 
'python2-gevent-websocket' 'python2-enum34')
-checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner'
-  'python2-mock' 'python2-pytest' 'python2-pytest-runner')
+ 'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-gevent-websocket' 'python-websockets')
+checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner')
 options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
 sha256sums=('177371619e0fc4f062135e2caa0e14b52abe1e8767c28c000ed646939eede05c')
 
sha512sums=('d8328624034712a08c72f92c13295ecef21a2375504baab3ff0e3d2731cb442ad6b05df4a01fa698a289b1d802e5adc0b2bd657f01bba86a5fdad3e9708899e5')
 
 build() {
-  cd ${pkgbase}-${pkgver}
+  cd ${pkgname}-${pkgver}
   python setup.py build
-  python2 setup.py build
   make -C docs man text SPHINXBUILD=sphinx-build
 }
 
 check() {
-  cd ${pkgbase}-${pkgver}
+  cd ${pkgname}-${pkgver}
   python setup.py test
 }
 
-package_python-engineio() {
-  depends=('python-six' 'python-urllib3' 'python-websocket-client' 
'python-websockets')
-  optdepends=('python-eventlet: eventlet driver'
-  'python-aiohttp: aiohttp driver'
-  'python-tornado: tornado driver'
-  'python-gevent: gevent driver'
-  'python-gevent-websocket: gevent driver')
-  cd ${pkgbase}-${pkgver}
+package() {
+  cd ${pkgname}-${pkgver}
   python setup.py install -O1 --root="${pkgdir}" --skip-build
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
@@ -47,19 +42,4 @@
   rm -r "${pkgdir}"/usr/lib/python*/site-packages/tests
 }
 
-package_python2-engineio() {
-  depends=('python2-six' 'python2-urllib3' 'python2-enum34' 
'python2-websocket-client')
-  optdepends=('python2-eventlet: eventlet driver'
-  'python2-tornado: tornado driver'
-  'python2-gevent: gevent driver'
-  'python2-gevent-websocket: gevent driver')
-  cd ${pkgbase}-${pkgver}
-  python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-  rm -r "${pkgdir}"/usr/lib/python*/site-packages/tests
-}
-
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2019-10-26 Thread Felix Yan via arch-commits
Date: Saturday, October 26, 2019 @ 06:12:09
  Author: felixonmars
Revision: 520216

Python 3.8 rebuild

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-26 06:12:08 UTC (rev 520215)
+++ PKGBUILD2019-10-26 06:12:09 UTC (rev 520216)
@@ -3,7 +3,7 @@
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
 pkgver=3.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2019-02-10 Thread Levente Polyak via arch-commits
Date: Sunday, February 10, 2019 @ 16:56:52
  Author: anthraxx
Revision: 431622

upgpkg: python-engineio 3.3.1-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 16:35:05 UTC (rev 431621)
+++ PKGBUILD2019-02-10 16:56:52 UTC (rev 431622)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=3.3.0
+pkgver=3.3.1
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -16,8 +16,8 @@
   'python2-mock' 'python2-pytest' 'python2-pytest-runner')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('4c78120d5471eb54c6aaa6848ae4ff0fd1a28bda1a16895f633d5b4698b33f19')
-sha512sums=('b22f689b3c2664fe01cf3a26ad8be5c1a30ce6a3b4f5edbd91dec189ab82f4500f76eca6428d4cc9d771b94ed9e18fd1b94063168eb3fad9752a8d7d1cb1c97d')
+sha256sums=('177371619e0fc4f062135e2caa0e14b52abe1e8767c28c000ed646939eede05c')
+sha512sums=('d8328624034712a08c72f92c13295ecef21a2375504baab3ff0e3d2731cb442ad6b05df4a01fa698a289b1d802e5adc0b2bd657f01bba86a5fdad3e9708899e5')
 
 build() {
   cd ${pkgbase}-${pkgver}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2019-02-07 Thread Levente Polyak via arch-commits
Date: Thursday, February 7, 2019 @ 22:04:38
  Author: anthraxx
Revision: 430396

upgpkg: python-engineio 3.3.0-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-07 22:02:20 UTC (rev 430395)
+++ PKGBUILD2019-02-07 22:04:38 UTC (rev 430396)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=3.2.3
+pkgver=3.3.0
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -16,8 +16,8 @@
   'python2-mock' 'python2-pytest' 'python2-pytest-runner')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('c9f5d485cde70465da0304f42b8f6cc515e1e99f37622451efb226d94f75cfd2')
-sha512sums=('decf64fe640104d96b271d0d7984874c24d625a60fca9ab73a6c0adcabb73289cf5c87018ea89811f057303d27fe804d466002a615b2206a0125bd5789adac7f')
+sha256sums=('4c78120d5471eb54c6aaa6848ae4ff0fd1a28bda1a16895f633d5b4698b33f19')
+sha512sums=('b22f689b3c2664fe01cf3a26ad8be5c1a30ce6a3b4f5edbd91dec189ab82f4500f76eca6428d4cc9d771b94ed9e18fd1b94063168eb3fad9752a8d7d1cb1c97d')
 
 build() {
   cd ${pkgbase}-${pkgver}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2019-01-12 Thread Levente Polyak via arch-commits
Date: Saturday, January 12, 2019 @ 22:13:34
  Author: anthraxx
Revision: 422768

upgpkg: python-engineio 3.2.3-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 4 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-12 21:09:53 UTC (rev 422767)
+++ PKGBUILD2019-01-12 22:13:34 UTC (rev 422768)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=3.2.2
+pkgver=3.2.3
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -15,18 +15,10 @@
 checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner'
   'python2-mock' 'python2-pytest' 'python2-pytest-runner')
 options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz
-
${pkgbase}-3.2.2-test-fixup.patch::https://github.com/miguelgrinberg/python-engineio/commit/61b04ea89cf2cc358a40f7854c31859aea8e30d6.patch)
-sha256sums=('ec18a3499120d70e4a87826ccddd748b43aa479d6fcf43ef3905bd13a8943124'
-'0dd2ada7a6160ac59b6ae66a8f12e1bfe67da57262de96238caa8e2ded0b2ebe')
-sha512sums=('1b12b820a25c0d59c030d2165f5f39928101464d27bc562b1b530ef404ec4513d494d83b3bd122542825ac0cc92009ed6043577bc9ebd6f29fc5c495e0096759'
-
'b29801084e9bd5ff601ae1b8fa2c5233b8b0c024c260bb1a61558eb85f3b445a5ffdb0489867340d6465b62ddacfd1fc72b3d8d210291e524b27125dbc83')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
+sha256sums=('c9f5d485cde70465da0304f42b8f6cc515e1e99f37622451efb226d94f75cfd2')
+sha512sums=('decf64fe640104d96b271d0d7984874c24d625a60fca9ab73a6c0adcabb73289cf5c87018ea89811f057303d27fe804d466002a615b2206a0125bd5789adac7f')
 
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  patch -Np1 < "${srcdir}/${pkgbase}-3.2.2-test-fixup.patch"
-}
-
 build() {
   cd ${pkgbase}-${pkgver}
   python setup.py build


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2019-01-11 Thread Levente Polyak via arch-commits
Date: Saturday, January 12, 2019 @ 00:41:52
  Author: anthraxx
Revision: 422702

upgpkg: python-engineio 3.2.2-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   34 +-
 1 file changed, 21 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-11 23:09:29 UTC (rev 422701)
+++ PKGBUILD2019-01-12 00:41:52 UTC (rev 422702)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=3.1.0
+pkgver=3.2.2
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -9,19 +9,22 @@
 arch=('any')
 license=('MIT')
 makedepends=('python-setuptools' 'python-sphinx' 'python-six' 
'python-eventlet' 'python-aiohttp' 'python-tornado'
- 'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-websockets' 'python-gevent-websocket'
+ 'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-gevent-websocket' 'python-websockets'
  'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-eventlet' 'python2-tornado'
- 'python2-urllib3' 'python-websocket-client' 'python2-gevent' 
'python2-gevent-websocket' 'python2-enum34')
+ 'python2-urllib3' 'python2-websocket-client' 'python2-gevent' 
'python2-gevent-websocket' 'python2-enum34')
 checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner'
   'python2-mock' 'python2-pytest' 'python2-pytest-runner')
 options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('78e203bf72fcbf7fd48a2f8d3bf4c6ef0374c03aaa6da30c194ae4e39ec6d310')
-sha512sums=('87d863cc69593d90a44e09bf85809a794c29d1f47d364e435b9f27d01625c14bf49dbc5de89a964d4988db06397b6eac0c8e3fa0b58ee56bc5bc671af719c1c9')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz
+
${pkgbase}-3.2.2-test-fixup.patch::https://github.com/miguelgrinberg/python-engineio/commit/61b04ea89cf2cc358a40f7854c31859aea8e30d6.patch)
+sha256sums=('ec18a3499120d70e4a87826ccddd748b43aa479d6fcf43ef3905bd13a8943124'
+'0dd2ada7a6160ac59b6ae66a8f12e1bfe67da57262de96238caa8e2ded0b2ebe')
+sha512sums=('1b12b820a25c0d59c030d2165f5f39928101464d27bc562b1b530ef404ec4513d494d83b3bd122542825ac0cc92009ed6043577bc9ebd6f29fc5c495e0096759'
+
'b29801084e9bd5ff601ae1b8fa2c5233b8b0c024c260bb1a61558eb85f3b445a5ffdb0489867340d6465b62ddacfd1fc72b3d8d210291e524b27125dbc83')
 
 prepare() {
   cd ${pkgbase}-${pkgver}
-  sed '/gevent.queue/d' -i tests/test_server.py
+  patch -Np1 < "${srcdir}/${pkgbase}-3.2.2-test-fixup.patch"
 }
 
 build() {
@@ -34,13 +37,15 @@
 check() {
   cd ${pkgbase}-${pkgver}
   python setup.py test
-  # todo: python2 tests are wonky
-  # python2 setup.py test
 }
 
 package_python-engineio() {
-  depends=('python-six' 'python-eventlet' 'python-aiohttp' 'python-tornado' 
'python-gevent'
-   'python-websockets' 'python-gevent-websocket')
+  depends=('python-six' 'python-urllib3' 'python-websocket-client' 
'python-websockets')
+  optdepends=('python-eventlet: eventlet driver'
+  'python-aiohttp: aiohttp driver'
+  'python-tornado: tornado driver'
+  'python-gevent: gevent driver'
+  'python-gevent-websocket: gevent driver')
   cd ${pkgbase}-${pkgver}
   python setup.py install -O1 --root="${pkgdir}" --skip-build
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
@@ -51,8 +56,11 @@
 }
 
 package_python2-engineio() {
-  depends=('python2-six' 'python2-eventlet' 'python2-tornado' 'python2-gevent'
-   'python2-gevent-websocket' 'python2-enum34')
+  depends=('python2-six' 'python2-urllib3' 'python2-enum34' 
'python2-websocket-client')
+  optdepends=('python2-eventlet: eventlet driver'
+  'python2-tornado: tornado driver'
+  'python2-gevent: gevent driver'
+  'python2-gevent-websocket: gevent driver')
   cd ${pkgbase}-${pkgver}
   python2 setup.py install -O1 --root="${pkgdir}" --skip-build
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-12-20 Thread Levente Polyak via arch-commits
Date: Thursday, December 20, 2018 @ 23:35:55
  Author: anthraxx
Revision: 417038

upgpkg: python-engineio 3.1.0-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   66 +
 1 file changed, 28 insertions(+), 38 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-20 23:10:14 UTC (rev 417037)
+++ PKGBUILD2018-12-20 23:35:55 UTC (rev 417038)
@@ -2,74 +2,64 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=3.0.0
+pkgver=3.1.0
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')
 license=('MIT')
-makedepends=('python-setuptools' 'python-sphinx' 'python-six'
- 'python2-setuptools' 'python2-sphinx' 'python2-six')
-checkdepends=('python-mock' 'python-eventlet' 'python-pytest' 
'python-pytest-runner' 'python-aiohttp' 'python-tornado'
-  'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner' 'python2-tornado')
+makedepends=('python-setuptools' 'python-sphinx' 'python-six' 
'python-eventlet' 'python-aiohttp' 'python-tornado'
+ 'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-websockets' 'python-gevent-websocket'
+ 'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-eventlet' 'python2-tornado'
+ 'python2-urllib3' 'python-websocket-client' 'python2-gevent' 
'python2-gevent-websocket' 'python2-enum34')
+checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner'
+  'python2-mock' 'python2-pytest' 'python2-pytest-runner')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('25c483e85a468cbdfe77ff500e50698c3c2cc6f96baa18e1c72fa40fc8593a9b')
-sha512sums=('6c5d30eddb08f67cae6e0ffb17476c6021811a47f0188114caa2747c55c68fd8bf1336556417485f564d771935e6ffcbb31e33419c029a64533915a2ef9d9b3d')
+sha256sums=('78e203bf72fcbf7fd48a2f8d3bf4c6ef0374c03aaa6da30c194ae4e39ec6d310')
+sha512sums=('87d863cc69593d90a44e09bf85809a794c29d1f47d364e435b9f27d01625c14bf49dbc5de89a964d4988db06397b6eac0c8e3fa0b58ee56bc5bc671af719c1c9')
 
 prepare() {
-  cp -ra ${pkgbase}-${pkgver}{,-py2}
+  cd ${pkgbase}-${pkgver}
+  sed '/gevent.queue/d' -i tests/test_server.py
 }
 
 build() {
-  (cd ${pkgbase}-${pkgver}
-python setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-python2 setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build2
-  )
+  cd ${pkgbase}-${pkgver}
+  python setup.py build
+  python2 setup.py build
+  make -C docs man text SPHINXBUILD=sphinx-build
 }
 
 check() {
-  (cd ${pkgbase}-${pkgver}
-python setup.py test
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-python2 setup.py test
-  )
+  cd ${pkgbase}-${pkgver}
+  python setup.py test
+  # todo: python2 tests are wonky
+  # python2 setup.py test
 }
 
 package_python-engineio() {
-  depends=('python-six')
-  optdepends=(
-'python-eventlet: eventlet support'
-'python-aiohttp: aiohttp support'
-'python-tornado: tornado asyncio support'
-  )
-
+  depends=('python-six' 'python-eventlet' 'python-aiohttp' 'python-tornado' 
'python-gevent'
+   'python-websockets' 'python-gevent-websocket')
   cd ${pkgbase}-${pkgver}
   python setup.py install -O1 --root="${pkgdir}" --skip-build
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
+  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  rm -r "${pkgdir}"/usr/lib/python*/site-packages/tests
 }
 
 package_python2-engineio() {
-  depends=('python2-six')
-  optdepends=(
-'python2-eventlet: eventlet support'
-'python-tornado: tornado asyncio support'
-  )
-
-  cd ${pkgbase}-${pkgver}-py2
+  depends=('python2-six' 'python2-eventlet' 'python2-tornado' 'python2-gevent'
+   'python2-gevent-websocket' 'python2-enum34')
+  cd ${pkgbase}-${pkgver}
   python2 setup.py install -O1 --root="${pkgdir}" --skip-build
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
+  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  rm -r "${pkgdir}"/usr/lib/python*/site-packages/tests
 }
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-11-27 Thread Levente Polyak via arch-commits
Date: Tuesday, November 27, 2018 @ 21:26:40
  Author: anthraxx
Revision: 410142

upgpkg: python-engineio 3.0.0-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-27 21:24:19 UTC (rev 410141)
+++ PKGBUILD2018-11-27 21:26:40 UTC (rev 410142)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.3.2
+pkgver=3.0.0
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,8 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner' 'python2-tornado')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('05ffe33151bbd4735d7fd0a6cd2ce350642855e1f6e30d41c71580432ce1535a')
-sha512sums=('598d067ccff24253feb95e91d5e73a7a4f154c32b8c2a4cdde75a0d08f5d64b10f2e92f514f8d89c1d38ee4d8d652dcd197a02e4d7c2fccfc79c61fe1bef61b3')
+sha256sums=('25c483e85a468cbdfe77ff500e50698c3c2cc6f96baa18e1c72fa40fc8593a9b')
+sha512sums=('6c5d30eddb08f67cae6e0ffb17476c6021811a47f0188114caa2747c55c68fd8bf1336556417485f564d771935e6ffcbb31e33419c029a64533915a2ef9d9b3d')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}
@@ -54,7 +54,7 @@
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 }
 
 package_python2-engineio() {
@@ -69,7 +69,7 @@
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 }
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-10-22 Thread Levente Polyak via arch-commits
Date: Monday, October 22, 2018 @ 23:12:38
  Author: anthraxx
Revision: 398585

upgpkg: python-engineio 2.3.2-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-22 23:10:21 UTC (rev 398584)
+++ PKGBUILD2018-10-22 23:12:38 UTC (rev 398585)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.3.1
+pkgver=2.3.2
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,8 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner' 'python2-tornado')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('7ddbf8962d9ac4446db612b68e7a0aed86467070114388d25eea8eb9d10cd2c9')
-sha512sums=('8de99953a3f8125b6f8028e040c6388e865b3b668ea7a0551e271d61d8e3e8405fa5402cfb65af025a0bc4a79375adc1d3ca9c7162280e32f06ff74102b123b7')
+sha256sums=('05ffe33151bbd4735d7fd0a6cd2ce350642855e1f6e30d41c71580432ce1535a')
+sha512sums=('598d067ccff24253feb95e91d5e73a7a4f154c32b8c2a4cdde75a0d08f5d64b10f2e92f514f8d89c1d38ee4d8d652dcd197a02e4d7c2fccfc79c61fe1bef61b3')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-10-12 Thread Levente Polyak via arch-commits
Date: Friday, October 12, 2018 @ 20:53:45
  Author: anthraxx
Revision: 393275

upgpkg: python-engineio 2.3.1-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-12 20:52:05 UTC (rev 393274)
+++ PKGBUILD2018-10-12 20:53:45 UTC (rev 393275)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.3.0
+pkgver=2.3.1
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,8 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner' 'python2-tornado')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('ab2247d895bd45fb66359a8abb8ed763fcf4811b8324591146e5052449e21af9')
-sha512sums=('3acff22c034db7383c110740664e87c61cdeceb8acc5d5655aa82c8dbba0ade7e2422f8c3047e2300597dc141b3a4753dfe0c25f87629f1e459b2c12cc353ae5')
+sha256sums=('7ddbf8962d9ac4446db612b68e7a0aed86467070114388d25eea8eb9d10cd2c9')
+sha512sums=('8de99953a3f8125b6f8028e040c6388e865b3b668ea7a0551e271d61d8e3e8405fa5402cfb65af025a0bc4a79375adc1d3ca9c7162280e32f06ff74102b123b7')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-09-27 Thread Levente Polyak via arch-commits
Date: Thursday, September 27, 2018 @ 21:48:14
  Author: anthraxx
Revision: 386764

upgpkg: python-engineio 2.3.0-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-27 21:46:16 UTC (rev 386763)
+++ PKGBUILD2018-09-27 21:48:14 UTC (rev 386764)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.2.0
+pkgver=2.3.0
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,8 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner' 'python2-tornado')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('965a0d168f5ff42ae0fda4f7cbec4adcc323efffea245d97995e34f45e4dfeaa')
-sha512sums=('408172e522a734fbd921b303832676e9d970c8d121301a13d97c39268c1f20a72e43b610f7e3574895faf4b8c592e4db00def2ba14327d391d821c7136a999ce')
+sha256sums=('ab2247d895bd45fb66359a8abb8ed763fcf4811b8324591146e5052449e21af9')
+sha512sums=('3acff22c034db7383c110740664e87c61cdeceb8acc5d5655aa82c8dbba0ade7e2422f8c3047e2300597dc141b3a4753dfe0c25f87629f1e459b2c12cc353ae5')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-08-09 Thread Levente Polyak via arch-commits
Date: Thursday, August 9, 2018 @ 08:22:21
  Author: anthraxx
Revision: 370497

upgpkg: python-engineio 2.2.0-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-09 08:18:36 UTC (rev 370496)
+++ PKGBUILD2018-08-09 08:22:21 UTC (rev 370497)
@@ -2,8 +2,8 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.1.1
-pkgrel=2
+pkgver=2.2.0
+pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')
@@ -10,12 +10,12 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python-sphinx' 'python-six'
  'python2-setuptools' 'python2-sphinx' 'python2-six')
-checkdepends=('python-mock' 'python-eventlet' 'python-pytest' 
'python-pytest-runner' 'python-aiohttp'
-  'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner')
+checkdepends=('python-mock' 'python-eventlet' 'python-pytest' 
'python-pytest-runner' 'python-aiohttp' 'python-tornado'
+  'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner' 'python2-tornado')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('053e281005f8d649eb31d514dc2fd5b04330c3ee68e84189f32d0f00b290387c')
-sha512sums=('14f081d351424ed1e562b1bb4b350bafe93946dddae6a1a6153292711a1fb93a73929b3b2902c27e5a278d632a34e519937afe6be4ab7512280f5861586abb4a')
+sha256sums=('965a0d168f5ff42ae0fda4f7cbec4adcc323efffea245d97995e34f45e4dfeaa')
+sha512sums=('408172e522a734fbd921b303832676e9d970c8d121301a13d97c39268c1f20a72e43b610f7e3574895faf4b8c592e4db00def2ba14327d391d821c7136a999ce')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}
@@ -46,6 +46,7 @@
   optdepends=(
 'python-eventlet: eventlet support'
 'python-aiohttp: aiohttp support'
+'python-tornado: tornado asyncio support'
   )
 
   cd ${pkgbase}-${pkgver}
@@ -60,6 +61,7 @@
   depends=('python2-six')
   optdepends=(
 'python2-eventlet: eventlet support'
+'python-tornado: tornado asyncio support'
   )
 
   cd ${pkgbase}-${pkgver}-py2


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-07-19 Thread Felix Yan via arch-commits
Date: Thursday, July 19, 2018 @ 07:26:25
  Author: felixonmars
Revision: 362363

Python 3.7 rebuild

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-19 07:25:19 UTC (rev 362362)
+++ PKGBUILD2018-07-19 07:26:25 UTC (rev 362363)
@@ -3,7 +3,7 @@
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
 pkgver=2.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 23, 2018 @ 00:19:44
  Author: anthraxx
Revision: 327819

upgpkg: python-engineio 2.1.1-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-23 00:16:22 UTC (rev 327818)
+++ PKGBUILD2018-05-23 00:19:44 UTC (rev 327819)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,8 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('e8f8c1e3d59208f402916a7887487c7d906330f907f1cfb754753e56bfd82b36')
-sha512sums=('a4ecd8f55ec4278ce6e247f79e5f8c71e92c3af1bc0c9e19827f4b5a1aaf5b046ad2d5e75016e5028ea4165112cffc4ddc1c5311d2df433071acffb17ccd1f98')
+sha256sums=('053e281005f8d649eb31d514dc2fd5b04330c3ee68e84189f32d0f00b290387c')
+sha512sums=('14f081d351424ed1e562b1bb4b350bafe93946dddae6a1a6153292711a1fb93a73929b3b2902c27e5a278d632a34e519937afe6be4ab7512280f5861586abb4a')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-04-28 Thread Levente Polyak via arch-commits
Date: Saturday, April 28, 2018 @ 23:28:18
  Author: anthraxx
Revision: 318421

upgpkg: python-engineio 2.1.0-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-28 23:23:20 UTC (rev 318420)
+++ PKGBUILD2018-04-28 23:28:18 UTC (rev 318421)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.0.4
+pkgver=2.1.0
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,8 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('b3750497a99fd871a65121e7846f41554b8c283172e00152d3a6e865d934c88e')
-sha512sums=('c5c286bfcd111342fce85ec38a4b6b0ec4a44309a24cd7d53f1dd4a3a765c3997b979d2dfc6a8a396ecd19aa915d5e8dc226c05e0f0d053bcca89f928db31d31')
+sha256sums=('e8f8c1e3d59208f402916a7887487c7d906330f907f1cfb754753e56bfd82b36')
+sha512sums=('a4ecd8f55ec4278ce6e247f79e5f8c71e92c3af1bc0c9e19827f4b5a1aaf5b046ad2d5e75016e5028ea4165112cffc4ddc1c5311d2df433071acffb17ccd1f98')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-03-14 Thread Levente Polyak via arch-commits
Date: Thursday, March 15, 2018 @ 02:31:48
  Author: anthraxx
Revision: 307899

upgpkg: python-engineio 2.0.4-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-15 02:29:08 UTC (rev 307898)
+++ PKGBUILD2018-03-15 02:31:48 UTC (rev 307899)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.0.3
+pkgver=2.0.4
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,8 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('175c26b101da445b191aa33c680f44565aef5e6aeaa0ab2a786b39404105b419')
-sha512sums=('77ade0dd76010659e0948f2e89c7eb16909e6d50e46045c2c0dfa351e8fba862009416ae760321453f37bb8e5cff2f61bd950cebc735f7a5754317a1f76e')
+sha256sums=('b3750497a99fd871a65121e7846f41554b8c283172e00152d3a6e865d934c88e')
+sha512sums=('c5c286bfcd111342fce85ec38a4b6b0ec4a44309a24cd7d53f1dd4a3a765c3997b979d2dfc6a8a396ecd19aa915d5e8dc226c05e0f0d053bcca89f928db31d31')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-03-07 Thread Levente Polyak via arch-commits
Date: Wednesday, March 7, 2018 @ 20:36:33
  Author: anthraxx
Revision: 304140

upgpkg: python-engineio 2.0.3-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-07 20:16:07 UTC (rev 304139)
+++ PKGBUILD2018-03-07 20:36:33 UTC (rev 304140)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.0.2
+pkgver=2.0.3
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,8 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('9fbe531108a95bc61518b61c4718e2661fc81d32b54fd6af34799bf10a367a6b')
-sha512sums=('eca3aae5fb0377dd04cb75bb2a42121049cb6fecb3aeb89ed4469f2504e4a741fd2c00abccdb10dc775077ba3ca62435713763969278cd13143b9a9a9d056084')
+sha256sums=('175c26b101da445b191aa33c680f44565aef5e6aeaa0ab2a786b39404105b419')
+sha512sums=('77ade0dd76010659e0948f2e89c7eb16909e6d50e46045c2c0dfa351e8fba862009416ae760321453f37bb8e5cff2f61bd950cebc735f7a5754317a1f76e')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2018-01-25 Thread Levente Polyak via arch-commits
Date: Thursday, January 25, 2018 @ 23:51:13
  Author: anthraxx
Revision: 286984

upgpkg: python-engineio 2.0.2-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-25 23:41:37 UTC (rev 286983)
+++ PKGBUILD2018-01-25 23:51:13 UTC (rev 286984)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=2.0.1
+pkgver=2.0.2
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -10,12 +10,12 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python-sphinx' 'python-six'
  'python2-setuptools' 'python2-sphinx' 'python2-six')
-checkdepends=('python-mock' 'python-eventlet' 'python-pytest' 'python-aiohttp'
-  'python2-mock' 'python2-eventlet' 'python2-pytest')
+checkdepends=('python-mock' 'python-eventlet' 'python-pytest' 
'python-pytest-runner' 'python-aiohttp'
+  'python2-mock' 'python2-eventlet' 'python2-pytest' 
'python2-pytest-runner')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('0402619cacd202ed24da4a3e6958104913abeab12b7c2ac6551cadbf568527a7')
-sha512sums=('799676a6e63e231459013f987bde4af705fb3ad8e807809cff418a46d7301d18681ce4012f8c02ff2da3628a142983e9a165e16e2cdb5839e745ee3eceeb07b0')
+sha256sums=('9fbe531108a95bc61518b61c4718e2661fc81d32b54fd6af34799bf10a367a6b')
+sha512sums=('eca3aae5fb0377dd04cb75bb2a42121049cb6fecb3aeb89ed4469f2504e4a741fd2c00abccdb10dc775077ba3ca62435713763969278cd13143b9a9a9d056084')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}
@@ -34,10 +34,10 @@
 
 check() {
   (cd ${pkgbase}-${pkgver}
-py.test
+python setup.py test
   )
   (cd ${pkgbase}-${pkgver}-py2
-py.test2
+python2 setup.py test
   )
 }
 
@@ -50,8 +50,8 @@
 
   cd ${pkgbase}-${pkgver}
   python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
   install -Dm 644 docs/_build/man/engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 }
@@ -64,8 +64,8 @@
 
   cd ${pkgbase}-${pkgver}-py2
   python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
   install -Dm 644 docs/_build/man/engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 }


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2017-11-26 Thread Levente Polyak via arch-commits
Date: Monday, November 27, 2017 @ 01:27:50
  Author: anthraxx
Revision: 269098

upgpkg: python-engineio 2.0.1-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-27 00:19:17 UTC (rev 269097)
+++ PKGBUILD2017-11-27 01:27:50 UTC (rev 269098)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=1.7.0
+pkgver=2.0.1
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,8 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha256sums=('9b5a58c3c14e56f266f32169ee32b01beddf38115d6bbba3ef86731799c014b7')
-sha512sums=('e470efbc5a384cd05eec247a14a710ca7fae034b1e0edda77a2f2749e82fc29a75e6f9a7cb1cb0d684f7827e2d0660b0bd3a5b02ccbfc1d67e8efcda373dd7b3')
+sha256sums=('0402619cacd202ed24da4a3e6958104913abeab12b7c2ac6551cadbf568527a7')
+sha512sums=('799676a6e63e231459013f987bde4af705fb3ad8e807809cff418a46d7301d18681ce4012f8c02ff2da3628a142983e9a165e16e2cdb5839e745ee3eceeb07b0')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 16:44:42
  Author: anthraxx
Revision: 245505

upgpkg: python-engineio 1.7.0-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 16:36:25 UTC (rev 245504)
+++ PKGBUILD2017-07-17 16:44:42 UTC (rev 245505)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=1.5.4
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,7 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('9a7a075a18349edf9d9f39e5fd956580d81a01ce5daee26cf6a5099665e429115fe922fda9cacf4266ebfc14e403db16aec3b7476ea20ec4bdd395782686340c')
+sha256sums=('9b5a58c3c14e56f266f32169ee32b01beddf38115d6bbba3ef86731799c014b7')
+sha512sums=('e470efbc5a384cd05eec247a14a710ca7fae034b1e0edda77a2f2749e82fc29a75e6f9a7cb1cb0d684f7827e2d0660b0bd3a5b02ccbfc1d67e8efcda373dd7b3')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2017-06-02 Thread Levente Polyak
Date: Friday, June 2, 2017 @ 16:53:31
  Author: anthraxx
Revision: 233455

upgpkg: python-engineio 1.5.4-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-02 16:43:06 UTC (rev 233454)
+++ PKGBUILD2017-06-02 16:53:31 UTC (rev 233455)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=1.1.1
+pkgver=1.5.4
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -10,11 +10,11 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python-sphinx' 'python-six'
  'python2-setuptools' 'python2-sphinx' 'python2-six')
-checkdepends=('python-mock' 'python-eventlet' 'python-pytest'
+checkdepends=('python-mock' 'python-eventlet' 'python-pytest' 'python-aiohttp'
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('5377a70263c13f79e53c61298411ceb63fe28240b4c27774481383ba808183a981a16dcd3908285dd72a946b06c3a2b0d9dae984e9b09c8e18d67fce2b0761f7')
+sha512sums=('9a7a075a18349edf9d9f39e5fd956580d81a01ce5daee26cf6a5099665e429115fe922fda9cacf4266ebfc14e403db16aec3b7476ea20ec4bdd395782686340c')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}
@@ -42,6 +42,10 @@
 
 package_python-engineio() {
   depends=('python-six')
+  optdepends=(
+'python-eventlet: eventlet support'
+'python-aiohttp: aiohttp support'
+  )
 
   cd ${pkgbase}-${pkgver}
   python setup.py install -O1 --root="${pkgdir}" --skip-build
@@ -53,6 +57,9 @@
 
 package_python2-engineio() {
   depends=('python2-six')
+  optdepends=(
+'python2-eventlet: eventlet support'
+  )
 
   cd ${pkgbase}-${pkgver}-py2
   python2 setup.py install -O1 --root="${pkgdir}" --skip-build


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2017-02-03 Thread Levente Polyak
Date: Friday, February 3, 2017 @ 18:24:38
  Author: anthraxx
Revision: 209774

upgpkg: python-engineio 1.1.1-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-02-03 18:24:22 UTC (rev 209773)
+++ PKGBUILD2017-02-03 18:24:38 UTC (rev 209774)
@@ -2,8 +2,8 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=1.1.0
-pkgrel=2
+pkgver=1.1.1
+pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')
@@ -14,7 +14,7 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('38f8785c82695ffcdd81c8c58bf7ab4bcc719e19f2f295e21ea5b8fd438ea7fa94fc73de9211c119797265db722a528bf187a6db5f16523ebb82efc69a37')
+sha512sums=('5377a70263c13f79e53c61298411ceb63fe28240b4c27774481383ba808183a981a16dcd3908285dd72a946b06c3a2b0d9dae984e9b09c8e18d67fce2b0761f7')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2016-12-25 Thread Evangelos Foutras
Date: Sunday, December 25, 2016 @ 17:30:36
  Author: foutrelis
Revision: 202102

Python 3.6 rebuild

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 17:30:27 UTC (rev 202101)
+++ PKGBUILD2016-12-25 17:30:36 UTC (rev 202102)
@@ -3,7 +3,7 @@
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')


[arch-commits] Commit in python-engineio/trunk (PKGBUILD fix-unittest.patch)

2016-11-28 Thread Levente Polyak
Date: Monday, November 28, 2016 @ 14:31:11
  Author: anthraxx
Revision: 197145

upgpkg: python-engineio 1.1.0-1

Modified:
  python-engineio/trunk/PKGBUILD
Deleted:
  python-engineio/trunk/fix-unittest.patch

+
 PKGBUILD   |   11 +++
 fix-unittest.patch |   32 
 2 files changed, 3 insertions(+), 40 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-28 14:22:33 UTC (rev 197144)
+++ PKGBUILD2016-11-28 14:31:11 UTC (rev 197145)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=1.0.3
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -13,15 +13,10 @@
 checkdepends=('python-mock' 'python-eventlet' 'python-pytest'
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz
-fix-unittest.patch)
-sha512sums=('0b1820fae7431c82ee723fc626555bb0696b2d50db9f86b83c20487345b5fdfecc871420e2f39b5171af0369fd4b0f2e84f155764c5b2c35904028b551b5a18a'
-
'1c96638b93a88c325fad9228f3e24ee96625e7624ca15336bff3816f03168e42e102c4f668aaad1f0d82f65d9c948afbaf81803a99b98360df745f78fb456242')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
+sha512sums=('38f8785c82695ffcdd81c8c58bf7ab4bcc719e19f2f295e21ea5b8fd438ea7fa94fc73de9211c119797265db722a528bf187a6db5f16523ebb82efc69a37')
 
 prepare() {
-  (cd ${pkgbase}-${pkgver}
-patch -p1 < "${srcdir}/fix-unittest.patch"
-  )
   cp -ra ${pkgbase}-${pkgver}{,-py2}
 }
 

Deleted: fix-unittest.patch
===
--- fix-unittest.patch  2016-11-28 14:22:33 UTC (rev 197144)
+++ fix-unittest.patch  2016-11-28 14:31:11 UTC (rev 197145)
@@ -1,32 +0,0 @@
-From aab2182cea4f4fd3c64b512b443d6f0f3f35a5a9 Mon Sep 17 00:00:00 2001
-From: Miguel Grinberg 
-Date: Sun, 4 Sep 2016 23:27:40 -0700
-Subject: [PATCH] fix unit test to work on python 2.7
-

- tests/test_payload.py | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/tests/test_payload.py b/tests/test_payload.py
-index 5c34c9f..642feb6 100644
 a/tests/test_payload.py
-+++ b/tests/test_payload.py
-@@ -53,15 +53,15 @@ def test_decode_invalid_payload(self):
- def test_decode_double_encoded_utf8_payload(self):
- p = payload.Payload(encoded_payload=b'3:4\xc3\x83\xc2\xa9')
- self.assertEqual(len(p.packets), 1)
--self.assertEqual(p.packets[0].data, 'é')
-+self.assertEqual(p.packets[0].data.encode('utf-8'), b'\xc3\xa9')
- 
- def test_decode_double_encoded_utf8_multi_payload(self):
- p = payload.Payload(encoded_payload=b'3:4\xc3\x83\xc2\xa94:4abc')
- self.assertEqual(len(p.packets), 2)
--self.assertEqual(p.packets[0].data, 'é')
-+self.assertEqual(p.packets[0].data.encode('utf-8'), b'\xc3\xa9')
- self.assertEqual(p.packets[1].data, 'abc')
- 
- def test_decode_single_encoded_utf8_payload(self):
- p = payload.Payload(encoded_payload=b'3:4\xc3\xa9')
- self.assertEqual(len(p.packets), 1)
--self.assertEqual(p.packets[0].data, 'é')
-+self.assertEqual(p.packets[0].data.encode('utf-8'), b'\xc3\xa9')


[arch-commits] Commit in python-engineio/trunk (PKGBUILD fix-unittest.patch)

2016-09-28 Thread Levente Polyak
Date: Wednesday, September 28, 2016 @ 19:36:24
  Author: anthraxx
Revision: 190740

updpkg: python-engineio 1.0.3-1

Added:
  python-engineio/trunk/fix-unittest.patch
Modified:
  python-engineio/trunk/PKGBUILD

+
 PKGBUILD   |   11 ---
 fix-unittest.patch |   32 
 2 files changed, 40 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-28 19:23:17 UTC (rev 190739)
+++ PKGBUILD2016-09-28 19:36:24 UTC (rev 190740)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=0.9.2
+pkgver=1.0.3
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -13,10 +13,15 @@
 checkdepends=('python-mock' 'python-eventlet' 'python-pytest'
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('b60571af0a443b9fe0429857f814180d7ce3aebef9be58fadebab1ff0913dd36d605a8395f6e1d2f90f9c11e3238f7b6b06ec7197aa769160cf9e66f0850e361')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz
+fix-unittest.patch)
+sha512sums=('0b1820fae7431c82ee723fc626555bb0696b2d50db9f86b83c20487345b5fdfecc871420e2f39b5171af0369fd4b0f2e84f155764c5b2c35904028b551b5a18a'
+
'1c96638b93a88c325fad9228f3e24ee96625e7624ca15336bff3816f03168e42e102c4f668aaad1f0d82f65d9c948afbaf81803a99b98360df745f78fb456242')
 
 prepare() {
+  (cd ${pkgbase}-${pkgver}
+patch -p1 < "${srcdir}/fix-unittest.patch"
+  )
   cp -ra ${pkgbase}-${pkgver}{,-py2}
 }
 

Added: fix-unittest.patch
===
--- fix-unittest.patch  (rev 0)
+++ fix-unittest.patch  2016-09-28 19:36:24 UTC (rev 190740)
@@ -0,0 +1,32 @@
+From aab2182cea4f4fd3c64b512b443d6f0f3f35a5a9 Mon Sep 17 00:00:00 2001
+From: Miguel Grinberg 
+Date: Sun, 4 Sep 2016 23:27:40 -0700
+Subject: [PATCH] fix unit test to work on python 2.7
+
+---
+ tests/test_payload.py | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/tests/test_payload.py b/tests/test_payload.py
+index 5c34c9f..642feb6 100644
+--- a/tests/test_payload.py
 b/tests/test_payload.py
+@@ -53,15 +53,15 @@ def test_decode_invalid_payload(self):
+ def test_decode_double_encoded_utf8_payload(self):
+ p = payload.Payload(encoded_payload=b'3:4\xc3\x83\xc2\xa9')
+ self.assertEqual(len(p.packets), 1)
+-self.assertEqual(p.packets[0].data, 'é')
++self.assertEqual(p.packets[0].data.encode('utf-8'), b'\xc3\xa9')
+ 
+ def test_decode_double_encoded_utf8_multi_payload(self):
+ p = payload.Payload(encoded_payload=b'3:4\xc3\x83\xc2\xa94:4abc')
+ self.assertEqual(len(p.packets), 2)
+-self.assertEqual(p.packets[0].data, 'é')
++self.assertEqual(p.packets[0].data.encode('utf-8'), b'\xc3\xa9')
+ self.assertEqual(p.packets[1].data, 'abc')
+ 
+ def test_decode_single_encoded_utf8_payload(self):
+ p = payload.Payload(encoded_payload=b'3:4\xc3\xa9')
+ self.assertEqual(len(p.packets), 1)
+-self.assertEqual(p.packets[0].data, 'é')
++self.assertEqual(p.packets[0].data.encode('utf-8'), b'\xc3\xa9')


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2016-07-01 Thread Levente Polyak
Date: Friday, July 1, 2016 @ 16:03:09
  Author: anthraxx
Revision: 181729

upgpkg: python-engineio 0.9.2-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-01 16:02:01 UTC (rev 181728)
+++ PKGBUILD2016-07-01 16:03:09 UTC (rev 181729)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=0.9.1
+pkgver=0.9.2
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,7 +14,7 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('1141c4f998a407058391796480867eef64ab7c8f4ed3f6e2de0d1972c11666e00fc871fed16194421b0c6ff238150c8b9b8b94d30fa6fb8b20eb6e1174908d8f')
+sha512sums=('b60571af0a443b9fe0429857f814180d7ce3aebef9be58fadebab1ff0913dd36d605a8395f6e1d2f90f9c11e3238f7b6b06ec7197aa769160cf9e66f0850e361')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2016-05-17 Thread Levente Polyak
Date: Tuesday, May 17, 2016 @ 20:21:17
  Author: anthraxx
Revision: 175554

upgpkg: python-engineio 0.9.1-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-17 17:56:19 UTC (rev 175553)
+++ PKGBUILD2016-05-17 18:21:17 UTC (rev 175554)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=0.9.0
+pkgver=0.9.1
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,7 +14,7 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('4c7cea490901c9eea4606dd7998b91e056dd6286b32038e8a59244bb0f3b4a2de5f3e67d2de2aefd2e6cc54b962ee2cefc5e496d5b879d81ffd0430984f28b18')
+sha512sums=('1141c4f998a407058391796480867eef64ab7c8f4ed3f6e2de0d1972c11666e00fc871fed16194421b0c6ff238150c8b9b8b94d30fa6fb8b20eb6e1174908d8f')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2016-03-06 Thread Levente Polyak
Date: Sunday, March 6, 2016 @ 14:46:23
  Author: anthraxx
Revision: 165365

upgpkg: python-engineio 0.9.0-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-06 13:43:59 UTC (rev 165364)
+++ PKGBUILD2016-03-06 13:46:23 UTC (rev 165365)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=0.8.8
+pkgver=0.9.0
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,7 +14,7 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('d1522e88f1cd79adcf833de60c9974f103756e290ffa9671baa27e6854f1bbfc8098da4388f63b3adb37f97a89eedf1be4ff24689f6af15a4f9e5c7a58911b3b')
+sha512sums=('4c7cea490901c9eea4606dd7998b91e056dd6286b32038e8a59244bb0f3b4a2de5f3e67d2de2aefd2e6cc54b962ee2cefc5e496d5b879d81ffd0430984f28b18')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2016-02-21 Thread Levente Polyak
Date: Monday, February 22, 2016 @ 02:03:54
  Author: anthraxx
Revision: 163110

upgpkg: python-engineio 0.8.8-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-21 21:59:13 UTC (rev 163109)
+++ PKGBUILD2016-02-22 01:03:54 UTC (rev 163110)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=0.8.7
+pkgver=0.8.8
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,7 +14,7 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('96a6dc1be5a0856aedf09d5ecfede58e1a6435a33f8ec5cb44d806e68c9cd786c9af63fa8bfbedc19c3238fb20de01b4932d3f759c4bb5e1c3806719779486f3')
+sha512sums=('d1522e88f1cd79adcf833de60c9974f103756e290ffa9671baa27e6854f1bbfc8098da4388f63b3adb37f97a89eedf1be4ff24689f6af15a4f9e5c7a58911b3b')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2016-02-01 Thread Levente Polyak
Date: Tuesday, February 2, 2016 @ 01:44:49
  Author: anthraxx
Revision: 159841

upgpkg: python-engineio 0.8.7-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-02 00:44:26 UTC (rev 159840)
+++ PKGBUILD2016-02-02 00:44:49 UTC (rev 159841)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=0.8.6
+pkgver=0.8.7
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,7 +14,7 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('b65d76345f1f517a821308f1c6ab7bfe7bb35a9ebb3f6cb35f628343c827fcb8b47f04fd54b591d9f0c8374d0f3aa1cb7bacaf197d32703f05fb34cec4463c2f')
+sha512sums=('96a6dc1be5a0856aedf09d5ecfede58e1a6435a33f8ec5cb44d806e68c9cd786c9af63fa8bfbedc19c3238fb20de01b4932d3f759c4bb5e1c3806719779486f3')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2016-01-10 Thread Levente Polyak
Date: Monday, January 11, 2016 @ 01:36:26
  Author: anthraxx
Revision: 155881

upgpkg: python-engineio 0.8.6-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-10 22:17:25 UTC (rev 155880)
+++ PKGBUILD2016-01-11 00:36:26 UTC (rev 155881)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=0.8.5
+pkgver=0.8.6
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,7 +14,7 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('9db94f842af46c7e2457840f4da3348a263c241c21a81da83cc0bd7af7dd5fa6991615f9d77e5d3a225115f2645d124a92081e79e1871cbcb49b7abb11c696ef')
+sha512sums=('b65d76345f1f517a821308f1c6ab7bfe7bb35a9ebb3f6cb35f628343c827fcb8b47f04fd54b591d9f0c8374d0f3aa1cb7bacaf197d32703f05fb34cec4463c2f')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2016-01-04 Thread Levente Polyak
Date: Monday, January 4, 2016 @ 19:30:41
  Author: anthraxx
Revision: 155472

upgpkg: python-engineio 0.8.5-1

upgpkg: python-engineio 0.8.5-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-04 18:30:26 UTC (rev 155471)
+++ PKGBUILD2016-01-04 18:30:41 UTC (rev 155472)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=0.8.4
+pkgver=0.8.5
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,7 +14,7 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('6ec614b27b1a1cba83cbd6277376c0d7187e7869b85a6cfe77b5a9e30459e71ea6e857bd961ac35f162af82a36cf256020f76270f75f27ebc7b06673e48ada0e')
+sha512sums=('9db94f842af46c7e2457840f4da3348a263c241c21a81da83cc0bd7af7dd5fa6991615f9d77e5d3a225115f2645d124a92081e79e1871cbcb49b7abb11c696ef')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2015-12-27 Thread Levente Polyak
Date: Monday, December 28, 2015 @ 03:00:03
  Author: anthraxx
Revision: 154628

upgpkg: python-engineio 0.8.4-1

upgpkg: python-engineio 0.8.4-1

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-28 01:54:37 UTC (rev 154627)
+++ PKGBUILD2015-12-28 02:00:03 UTC (rev 154628)
@@ -2,8 +2,8 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=0.8.3
-pkgrel=2
+pkgver=0.8.4
+pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')
@@ -14,7 +14,7 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('d9d136d9cad76c7c31b72482b772f501c7d06c6e7099634f3e1ae31e22a9523e9e77e1e5407f759e720934aeb52edd3b8579f7ae3b3695da81903f1f4462285b')
+sha512sums=('6ec614b27b1a1cba83cbd6277376c0d7187e7869b85a6cfe77b5a9e30459e71ea6e857bd961ac35f162af82a36cf256020f76270f75f27ebc7b06673e48ada0e')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


[arch-commits] Commit in python-engineio/trunk (PKGBUILD)

2015-12-14 Thread Levente Polyak
Date: Monday, December 14, 2015 @ 18:31:55
  Author: anthraxx
Revision: 153310

upgpkg: python-engineio 0.8.3-2

upgpkg: python-engineio 0.8.3-2

Modified:
  python-engineio/trunk/PKGBUILD

--+
 PKGBUILD |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-14 16:57:09 UTC (rev 153309)
+++ PKGBUILD2015-12-14 17:31:55 UTC (rev 153310)
@@ -3,16 +3,15 @@
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
 pkgver=0.8.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
 arch=('any')
 license=('MIT')
-makedepends=(
-  'python-setuptools' 'python-sphinx' 'python-six' 'python-pytest'
-  'python2-setuptools' 'python2-sphinx' 'python2-six' 'python2-pytest'
-)
-checkdepends=('python-mock' 'python-eventlet' 'python2-mock' 
'python2-eventlet')
+makedepends=('python-setuptools' 'python-sphinx' 'python-six'
+ 'python2-setuptools' 'python2-sphinx' 'python2-six')
+checkdepends=('python-mock' 'python-eventlet' 'python-pytest'
+  'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
 
sha512sums=('d9d136d9cad76c7c31b72482b772f501c7d06c6e7099634f3e1ae31e22a9523e9e77e1e5407f759e720934aeb52edd3b8579f7ae3b3695da81903f1f4462285b')