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

2020-11-11 Thread Evangelos Foutras via arch-commits
Date: Wednesday, November 11, 2020 @ 10:29:22
  Author: foutrelis
Revision: 750007

upgpkg: python-websocket-client 0.57.0-3: Python 3.9 rebuild

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-11 10:02:41 UTC (rev 750006)
+++ PKGBUILD2020-11-11 10:29:22 UTC (rev 750007)
@@ -9,7 +9,7 @@
 __pkgbase="${_pkgbase//-/_}"
 pkgname=python-${_pkgbase}
 pkgver=0.57.0
-pkgrel=2
+pkgrel=3
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/${_pkgbase}/${_pkgbase}";


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Monday, November 9, 2020 @ 15:37:17
  Author: felixonmars
Revision: 747027

upgpkg: python-websocket-client 0.57.0-2: Python 3.9 rebuild

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 15:37:15 UTC (rev 747026)
+++ PKGBUILD2020-11-09 15:37:17 UTC (rev 747027)
@@ -9,7 +9,7 @@
 __pkgbase="${_pkgbase//-/_}"
 pkgname=python-${_pkgbase}
 pkgver=0.57.0
-pkgrel=1
+pkgrel=2
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/${_pkgbase}/${_pkgbase}";


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

2019-12-25 Thread Felix Yan via arch-commits
Date: Thursday, December 26, 2019 @ 01:24:50
  Author: felixonmars
Revision: 541764

upgpkg: python-websocket-client 0.57.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-26 01:24:46 UTC (rev 541763)
+++ PKGBUILD2019-12-26 01:24:50 UTC (rev 541764)
@@ -8,8 +8,8 @@
 _pkgbase='websocket-client'
 __pkgbase="${_pkgbase//-/_}"
 pkgname=python-${_pkgbase}
-pkgver=0.56.0
-pkgrel=3
+pkgver=0.57.0
+pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/${_pkgbase}/${_pkgbase}";
@@ -17,7 +17,7 @@
 depends=('python-six')
 makedepends=('python-setuptools')
 
source=("https://pypi.io/packages/source/w/${_pkgbase}/${__pkgbase}-${pkgver}.tar.gz";)
-sha512sums=('f61497b5fa6deea11d0e81c1c0d3092d1efba9bcdb3427a45f51b81059444a486a9aa6a4d046fc2aa805e855d2c8e68a4ba46669c05a45eb928251c50e2e3a50')
+sha512sums=('8677b00abbdd995ef1c2254f73a01713eb0707ee2549031f410205af7bbbf57b4730b38a78d683a90605c1412863f57a3829d8be1c058f3e9bfb177bd49c4525')
 
 prepare() {
   # Not sure why the conditions are not working :/


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

2019-11-01 Thread Antonio Rojas via arch-commits
Date: Friday, November 1, 2019 @ 23:48:21
  Author: arojas
Revision: 522110

Drop python2

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-01 23:45:09 UTC (rev 522109)
+++ PKGBUILD2019-11-01 23:48:21 UTC (rev 522110)
@@ -7,7 +7,7 @@
 
 _pkgbase='websocket-client'
 __pkgbase="${_pkgbase//-/_}"
-pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
+pkgname=python-${_pkgbase}
 pkgver=0.56.0
 pkgrel=3
 pkgdesc="WebSocket client library for Python"
@@ -14,7 +14,8 @@
 arch=(any)
 url="https://github.com/${_pkgbase}/${_pkgbase}";
 license=('LGPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
+depends=('python-six')
+makedepends=('python-setuptools')
 
source=("https://pypi.io/packages/source/w/${_pkgbase}/${__pkgbase}-${pkgver}.tar.gz";)
 
sha512sums=('f61497b5fa6deea11d0e81c1c0d3092d1efba9bcdb3427a45f51b81059444a486a9aa6a4d046fc2aa805e855d2c8e68a4ba46669c05a45eb928251c50e2e3a50')
 
@@ -21,42 +22,22 @@
 prepare() {
   # Not sure why the conditions are not working :/
   sed -i "s/'backports.ssl_match_hostname'//" 
"${srcdir}/${__pkgbase}-${pkgver}/setup.py"
-
-  cp -a "${srcdir}/${__pkgbase}-${pkgver}"{,-py2}
 }
 
 build() {
   cd "${srcdir}/${__pkgbase}-${pkgver}"
   python setup.py build
-
-  cd "${srcdir}/${__pkgbase}-${pkgver}-py2"
-  python2 setup.py build
 }
 
 check() {
   cd "${srcdir}/${__pkgbase}-${pkgver}"
   python setup.py test
-
-  cd "${srcdir}/${__pkgbase}-${pkgver}-py2"
-  python2 setup.py test
 }
 
-package_python-websocket-client() {
-  depends=('python-six')
-
+package() {
   cd "${srcdir}/${__pkgbase}-${pkgver}"
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
 
-package_python2-websocket-client() {
-  depends=('python2-six')
-
-  cd "${srcdir}/${__pkgbase}-${pkgver}-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  mv "$pkgdir"/usr/bin/wsdump{,2}.py
-}
-
 # vim:set ts=2 sw=2 ft=sh et:


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

2019-10-31 Thread Evangelos Foutras via arch-commits
Date: Thursday, October 31, 2019 @ 17:08:37
  Author: foutrelis
Revision: 521274

Python 3.8 rebuild

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-31 17:08:23 UTC (rev 521273)
+++ PKGBUILD2019-10-31 17:08:37 UTC (rev 521274)
@@ -9,7 +9,7 @@
 __pkgbase="${_pkgbase//-/_}"
 pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
 pkgver=0.56.0
-pkgrel=2
+pkgrel=3
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/${_pkgbase}/${_pkgbase}";


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

2019-10-25 Thread Evangelos Foutras via arch-commits
Date: Friday, October 25, 2019 @ 15:16:57
  Author: foutrelis
Revision: 518956

Python 3.8 rebuild

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-25 15:16:49 UTC (rev 518955)
+++ PKGBUILD2019-10-25 15:16:57 UTC (rev 518956)
@@ -9,7 +9,7 @@
 __pkgbase="${_pkgbase//-/_}"
 pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
 pkgver=0.56.0
-pkgrel=1
+pkgrel=2
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/${_pkgbase}/${_pkgbase}";


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

2019-03-21 Thread Felix Yan via arch-commits
Date: Thursday, March 21, 2019 @ 09:30:51
  Author: felixonmars
Revision: 443003

upgpkg: python-websocket-client 0.56.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-03-21 09:30:38 UTC (rev 443002)
+++ PKGBUILD2019-03-21 09:30:51 UTC (rev 443003)
@@ -8,7 +8,7 @@
 _pkgbase='websocket-client'
 __pkgbase="${_pkgbase//-/_}"
 pkgname=("python-${_pkgbase}" "python2-${_pkgbase}")
-pkgver=0.55.0
+pkgver=0.56.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -16,7 +16,7 @@
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=("https://pypi.io/packages/source/w/${_pkgbase}/${__pkgbase}-${pkgver}.tar.gz";)
-sha512sums=('d8f47f9872df04da5dcef71f392cbe41e5744a4a3b2b9a92ccc457a0761aa5bbeab23a8199d5e57ac617402c5f28465b7990dd11dd56a5ce2afff191856715d0')
+sha512sums=('f61497b5fa6deea11d0e81c1c0d3092d1efba9bcdb3427a45f51b81059444a486a9aa6a4d046fc2aa805e855d2c8e68a4ba46669c05a45eb928251c50e2e3a50')
 
 prepare() {
   # Not sure why the conditions are not working :/


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

2018-10-31 Thread Felix Yan via arch-commits
Date: Thursday, November 1, 2018 @ 06:19:35
  Author: felixonmars
Revision: 400939

upgpkg: python-websocket-client 0.54.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-01 06:19:21 UTC (rev 400938)
+++ PKGBUILD2018-11-01 06:19:35 UTC (rev 400939)
@@ -5,7 +5,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.53.0
+pkgver=0.54.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -13,7 +13,7 @@
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
-sha512sums=('a20aad73545eb9cff493a9583e1ba5c895096b8de28f4360925f4ed2906d74cf96023ccea9097a23e71402430a623ce9a1456b14add26587b320de903503cb34')
+sha512sums=('ba4dfb6b879ec88ca446f44a77b91bbace55faa1a276f493174f3dc5b96b4d400d43c886798666da98e331610f71b4629f894d97f4614acf8d64affe8370bfec')
 
 prepare() {
   # Not sure why the conditions are not working :/


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

2018-09-10 Thread Felix Yan via arch-commits
Date: Monday, September 10, 2018 @ 10:20:22
  Author: felixonmars
Revision: 379040

upgpkg: python-websocket-client 0.53.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-10 10:20:14 UTC (rev 379039)
+++ PKGBUILD2018-09-10 10:20:22 UTC (rev 379040)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.52.0
+pkgver=0.53.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -14,7 +14,7 @@
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
-sha512sums=('14e4348ba0199f6eba5b42bf8b654debebef71088271ad8af578f64f51d9897d6a05c0a4ceeff4abb936b5b6ff63561071ab5b442bbe00342d672b84d7587701')
+sha512sums=('a20aad73545eb9cff493a9583e1ba5c895096b8de28f4360925f4ed2906d74cf96023ccea9097a23e71402430a623ce9a1456b14add26587b320de903503cb34')
 
 prepare() {
   # Not sure why the conditions are not working :/


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

2018-09-03 Thread Felix Yan via arch-commits
Date: Monday, September 3, 2018 @ 15:33:06
  Author: felixonmars
Revision: 376400

upgpkg: python-websocket-client 0.52.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-03 15:25:38 UTC (rev 376399)
+++ PKGBUILD2018-09-03 15:33:06 UTC (rev 376400)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.51.0
+pkgver=0.52.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -14,7 +14,7 @@
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
-sha512sums=('9d30278b90d167eb246eb7678a75a039c811da36a745721f1a9582608c739b454547345643f7b11df2d620b2bc5fa5e7968773314c3761c4d0240acfd60221d5')
+sha512sums=('14e4348ba0199f6eba5b42bf8b654debebef71088271ad8af578f64f51d9897d6a05c0a4ceeff4abb936b5b6ff63561071ab5b442bbe00342d672b84d7587701')
 
 prepare() {
   # Not sure why the conditions are not working :/


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

2018-08-19 Thread Felix Yan via arch-commits
Date: Monday, August 20, 2018 @ 06:24:34
  Author: felixonmars
Revision: 372816

upgpkg: python-websocket-client 0.51.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-19 23:22:15 UTC (rev 372815)
+++ PKGBUILD2018-08-20 06:24:34 UTC (rev 372816)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.50.0
+pkgver=0.51.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -14,7 +14,7 @@
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
-sha512sums=('def8f9c0695c4c9f20b533aeff99425e3affee894f3cb9d683e60bd87a3fa27d754c6129949df8283d782da6a5025e010207dc1cbc0177f0fa458639b5d0ab81')
+sha512sums=('9d30278b90d167eb246eb7678a75a039c811da36a745721f1a9582608c739b454547345643f7b11df2d620b2bc5fa5e7968773314c3761c4d0240acfd60221d5')
 
 prepare() {
   # Not sure why the conditions are not working :/


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

2018-08-18 Thread Felix Yan via arch-commits
Date: Saturday, August 18, 2018 @ 15:19:30
  Author: felixonmars
Revision: 372660

upgpkg: python-websocket-client 0.50.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-18 15:10:18 UTC (rev 372659)
+++ PKGBUILD2018-08-18 15:19:30 UTC (rev 372660)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.49.0
+pkgver=0.50.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -14,7 +14,7 @@
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
-sha512sums=('87d428b2a4572b2ace65652e1448c5c42d1c69fd279b6dce0160cb28dd9f0c00783c2b0c059b1d3558f42fe7067821cc2b85e41e4ebc2826a346defbabf15dad')
+sha512sums=('def8f9c0695c4c9f20b533aeff99425e3affee894f3cb9d683e60bd87a3fa27d754c6129949df8283d782da6a5025e010207dc1cbc0177f0fa458639b5d0ab81')
 
 prepare() {
   # Not sure why the conditions are not working :/


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

2018-08-14 Thread Felix Yan via arch-commits
Date: Tuesday, August 14, 2018 @ 18:03:38
  Author: felixonmars
Revision: 371631

upgpkg: python-websocket-client 0.49.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 18:02:48 UTC (rev 371630)
+++ PKGBUILD2018-08-14 18:03:38 UTC (rev 371631)
@@ -6,8 +6,8 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.48.0
-pkgrel=2
+pkgver=0.49.0
+pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/liris/websocket-client";
@@ -14,7 +14,7 @@
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
-sha512sums=('6c678a2671ce6cfb86a61effa836bbe4bb1702f22827934b1fcd7f0f8439be76037d9b6d4d6b416249361a9a74a92701d7b90bc6276b2433388644ed66f56333')
+sha512sums=('87d428b2a4572b2ace65652e1448c5c42d1c69fd279b6dce0160cb28dd9f0c00783c2b0c059b1d3558f42fe7067821cc2b85e41e4ebc2826a346defbabf15dad')
 
 prepare() {
   # Not sure why the conditions are not working :/


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

2018-06-30 Thread Felix Yan via arch-commits
Date: Saturday, June 30, 2018 @ 18:06:18
  Author: felixonmars
Revision: 348849

Python 3.7 rebuild

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-30 18:05:55 UTC (rev 348848)
+++ PKGBUILD2018-06-30 18:06:18 UTC (rev 348849)
@@ -7,7 +7,7 @@
 
 pkgname=(python-websocket-client python2-websocket-client)
 pkgver=0.48.0
-pkgrel=1
+pkgrel=2
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/liris/websocket-client";


[arch-commits] Commit in python-websocket-client/trunk (PKGBUILD use-system-ca.patch)

2018-05-26 Thread Felix Yan via arch-commits
Date: Sunday, May 27, 2018 @ 06:39:31
  Author: felixonmars
Revision: 331334

upgpkg: python-websocket-client 0.48.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD
Deleted:
  python-websocket-client/trunk/use-system-ca.patch

-+
 PKGBUILD|   11 ---
 use-system-ca.patch |   10 --
 2 files changed, 4 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-27 06:39:19 UTC (rev 331333)
+++ PKGBUILD2018-05-27 06:39:31 UTC (rev 331334)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.47.0
+pkgver=0.48.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -13,14 +13,11 @@
 url="https://github.com/liris/websocket-client";
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
-source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
-use-system-ca.patch)
-sha512sums=('0d384e96be66877ba0c24e7194e2f3d554f818c2e2f107b054e07034fa7678946738c2b08c68cd71ebe0237fa507fade319273c492871fbd0ad7085b87cf0a54'
-
'0c477ff2cb1c0201b47e5462500326ebc0d60d1010bc9e6c29eb201204f74c1932df1ff0c1c4e59fa64d946ff7e253c1cce350793a8a102e9e7e10074e0aa1db')
+source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz)
+sha512sums=('6c678a2671ce6cfb86a61effa836bbe4bb1702f22827934b1fcd7f0f8439be76037d9b6d4d6b416249361a9a74a92701d7b90bc6276b2433388644ed66f56333')
 
 prepare() {
-  (cd websocket_client-$pkgver; patch -p1 -i ../use-system-ca.patch)
-  rm websocket_client-$pkgver/websocket/cacert.pem
+  # Not sure why the conditions are not working :/
   sed -i "s/'backports.ssl_match_hostname'//" websocket_client-$pkgver/setup.py
 
   cp -a websocket_client-$pkgver{,-py2}

Deleted: use-system-ca.patch
===
--- use-system-ca.patch 2018-05-27 06:39:19 UTC (rev 331333)
+++ use-system-ca.patch 2018-05-27 06:39:31 UTC (rev 331334)
@@ -1,10 +0,0 @@
 a/setup.py 2015-06-03 08:44:39.0 +0800
-+++ b/setup.py 2015-10-26 11:52:15.798195748 +0800
-@@ -41,7 +41,6 @@
- packages=["websocket", "websocket.tests"],
- package_data={
- 'websocket.tests': ['data/*.txt'],
--'websocket': ["cacert.pem"]
- },
- tests_require=tests_require,
- test_suite="websocket.tests.test_websocket",


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

2018-02-22 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 09:43:00
  Author: felixonmars
Revision: 297032

upgpkg: python-websocket-client 0.47.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 09:42:59 UTC (rev 297031)
+++ PKGBUILD2018-02-22 09:43:00 UTC (rev 297032)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.46.0
+pkgver=0.47.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-sha512sums=('8ec13770c56475d8cd0559a84a827cf13c73f79c2b3b14b7f7eec71a938896c691393fe86df5b227aa046fecf34cbdf88974ee870d89c2e66018b1ac91761ccf'
+sha512sums=('0d384e96be66877ba0c24e7194e2f3d554f818c2e2f107b054e07034fa7678946738c2b08c68cd71ebe0237fa507fade319273c492871fbd0ad7085b87cf0a54'
 
'0c477ff2cb1c0201b47e5462500326ebc0d60d1010bc9e6c29eb201204f74c1932df1ff0c1c4e59fa64d946ff7e253c1cce350793a8a102e9e7e10074e0aa1db')
 
 prepare() {


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

2018-01-03 Thread Felix Yan via arch-commits
Date: Wednesday, January 3, 2018 @ 17:39:07
  Author: felixonmars
Revision: 278327

upgpkg: python-websocket-client 0.46.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-03 17:38:15 UTC (rev 278326)
+++ PKGBUILD2018-01-03 17:39:07 UTC (rev 278327)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.45.0
+pkgver=0.46.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-sha512sums=('a6d582174538ee66b8f04721faad5f287040ec64c7b75ac16f1168a08014bfc0cbb54c0730413eeecc0e25a980823d8e49a54f64e8913d0cf9dbf273f99f3af3'
+sha512sums=('8ec13770c56475d8cd0559a84a827cf13c73f79c2b3b14b7f7eec71a938896c691393fe86df5b227aa046fecf34cbdf88974ee870d89c2e66018b1ac91761ccf'
 
'0c477ff2cb1c0201b47e5462500326ebc0d60d1010bc9e6c29eb201204f74c1932df1ff0c1c4e59fa64d946ff7e253c1cce350793a8a102e9e7e10074e0aa1db')
 
 prepare() {


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

2017-12-24 Thread Felix Yan via arch-commits
Date: Monday, December 25, 2017 @ 04:28:27
  Author: felixonmars
Revision: 275910

upgpkg: python-websocket-client 0.45.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-25 04:26:41 UTC (rev 275909)
+++ PKGBUILD2017-12-25 04:28:27 UTC (rev 275910)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.44.0
+pkgver=0.45.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-sha512sums=('845e29c3ee7233f77d630c21a7cd8bc0ac1f619cafbd77cf2cb493e2d6b1900611bf7e9a6b927f10685a267ca2dbe6434f8b2a1e796534649253b3f1dd446738'
+sha512sums=('a6d582174538ee66b8f04721faad5f287040ec64c7b75ac16f1168a08014bfc0cbb54c0730413eeecc0e25a980823d8e49a54f64e8913d0cf9dbf273f99f3af3'
 
'0c477ff2cb1c0201b47e5462500326ebc0d60d1010bc9e6c29eb201204f74c1932df1ff0c1c4e59fa64d946ff7e253c1cce350793a8a102e9e7e10074e0aa1db')
 
 prepare() {


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

2017-06-24 Thread Felix Yan
Date: Saturday, June 24, 2017 @ 14:12:36
  Author: felixonmars
Revision: 240765

upgpkg: python-websocket-client 0.44.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-24 14:12:23 UTC (rev 240764)
+++ PKGBUILD2017-06-24 14:12:36 UTC (rev 240765)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.43.0
+pkgver=0.44.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-sha512sums=('9801b815b9906304a80fef21605165830d17001ece992566c64d95451b6446bd966021c44d4bb41dbb4c999590f0126dc1feb116eac8f4ad1c580ac671d7ba18'
+sha512sums=('845e29c3ee7233f77d630c21a7cd8bc0ac1f619cafbd77cf2cb493e2d6b1900611bf7e9a6b927f10685a267ca2dbe6434f8b2a1e796534649253b3f1dd446738'
 
'0c477ff2cb1c0201b47e5462500326ebc0d60d1010bc9e6c29eb201204f74c1932df1ff0c1c4e59fa64d946ff7e253c1cce350793a8a102e9e7e10074e0aa1db')
 
 prepare() {


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

2017-06-21 Thread Felix Yan
Date: Wednesday, June 21, 2017 @ 17:27:52
  Author: felixonmars
Revision: 239310

upgpkg: python-websocket-client 0.43.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-21 17:26:41 UTC (rev 239309)
+++ PKGBUILD2017-06-21 17:27:52 UTC (rev 239310)
@@ -6,8 +6,8 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.40.0
-pkgrel=2
+pkgver=0.43.0
+pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/liris/websocket-client";
@@ -15,12 +15,13 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-md5sums=('f1cf4cc7869ef97a98e5f4be25c30986'
- 'c34c7f6fddbe5758d84b9d3cfdd92108')
+sha512sums=('9801b815b9906304a80fef21605165830d17001ece992566c64d95451b6446bd966021c44d4bb41dbb4c999590f0126dc1feb116eac8f4ad1c580ac671d7ba18'
+
'0c477ff2cb1c0201b47e5462500326ebc0d60d1010bc9e6c29eb201204f74c1932df1ff0c1c4e59fa64d946ff7e253c1cce350793a8a102e9e7e10074e0aa1db')
 
 prepare() {
   (cd websocket_client-$pkgver; patch -p1 -i ../use-system-ca.patch)
   rm websocket_client-$pkgver/websocket/cacert.pem
+  sed -i "s/'backports.ssl_match_hostname'//" websocket_client-$pkgver/setup.py
 
   cp -a websocket_client-$pkgver{,-py2}
 }


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

2016-12-25 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 19:24:04
  Author: bpiotrowski
Revision: 202335

Python 3.6 rebuild

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 19:23:39 UTC (rev 202334)
+++ PKGBUILD2016-12-25 19:24:04 UTC (rev 202335)
@@ -7,7 +7,7 @@
 
 pkgname=(python-websocket-client python2-websocket-client)
 pkgver=0.40.0
-pkgrel=1
+pkgrel=2
 pkgdesc="WebSocket client library for Python"
 arch=(any)
 url="https://github.com/liris/websocket-client";


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

2016-12-09 Thread Felix Yan
Date: Saturday, December 10, 2016 @ 07:10:26
  Author: felixonmars
Revision: 198692

upgpkg: python-websocket-client 0.40.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-10 07:08:44 UTC (rev 198691)
+++ PKGBUILD2016-12-10 07:10:26 UTC (rev 198692)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.39.0
+pkgver=0.40.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-md5sums=('361ad4123a24f93bab9882e1d067de74'
+md5sums=('f1cf4cc7869ef97a98e5f4be25c30986'
  'c34c7f6fddbe5758d84b9d3cfdd92108')
 
 prepare() {


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

2016-12-01 Thread Felix Yan
Date: Friday, December 2, 2016 @ 02:30:03
  Author: felixonmars
Revision: 197664

upgpkg: python-websocket-client 0.39.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-02 02:29:19 UTC (rev 197663)
+++ PKGBUILD2016-12-02 02:30:03 UTC (rev 197664)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.37.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -13,9 +13,9 @@
 url="https://github.com/liris/websocket-client";
 license=('LGPL')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
-source=(http://pypi.python.org/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
+source=(https://pypi.io/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-md5sums=('5c2f16904dcb167bd2b85289c6e6fa6a'
+md5sums=('361ad4123a24f93bab9882e1d067de74'
  'c34c7f6fddbe5758d84b9d3cfdd92108')
 
 prepare() {


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

2016-04-13 Thread Felix Yan
Date: Thursday, April 14, 2016 @ 07:26:07
  Author: fyan
Revision: 170861

upgpkg: python-websocket-client 0.37.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-14 05:07:28 UTC (rev 170860)
+++ PKGBUILD2016-04-14 05:26:07 UTC (rev 170861)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.36.0
+pkgver=0.37.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(http://pypi.python.org/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-md5sums=('6ac2504c6e6cf8a28e0ca7f42e67e69e'
+md5sums=('5c2f16904dcb167bd2b85289c6e6fa6a'
  'c34c7f6fddbe5758d84b9d3cfdd92108')
 
 prepare() {


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

2016-04-11 Thread Felix Yan
Date: Tuesday, April 12, 2016 @ 04:55:29
  Author: fyan
Revision: 170558

upgpkg: python-websocket-client 0.36.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 02:53:21 UTC (rev 170557)
+++ PKGBUILD2016-04-12 02:55:29 UTC (rev 170558)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.35.0
+pkgver=0.36.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(http://pypi.python.org/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-md5sums=('37015cccff457f841c6f21bae86fa2d0'
+md5sums=('6ac2504c6e6cf8a28e0ca7f42e67e69e'
  'c34c7f6fddbe5758d84b9d3cfdd92108')
 
 prepare() {
@@ -26,18 +26,18 @@
 }
 
 build() {
-  cd "$srcdir/websocket_client-$pkgver"
+  cd "$srcdir"/websocket_client-$pkgver
   python setup.py build
 
-  cd "$srcdir/websocket_client-$pkgver-py2"
+  cd "$srcdir"/websocket_client-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/websocket_client-$pkgver"
+  cd "$srcdir"/websocket_client-$pkgver
   python setup.py test
 
-  cd "$srcdir/websocket_client-$pkgver-py2"
+  cd "$srcdir"/websocket_client-$pkgver-py2
   python2 setup.py test
 }
 
@@ -44,17 +44,17 @@
 package_python-websocket-client() {
   depends=('python-six')
 
-  cd "$srcdir/websocket_client-$pkgver"
+  cd websocket_client-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-websocket-client() {
   depends=('python2-six')
 
-  cd "$srcdir/websocket_client-$pkgver-py2"
+  cd websocket_client-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 
   mv "$pkgdir"/usr/bin/wsdump{,2}.py
 }


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

2016-01-04 Thread Felix Yan
Date: Monday, January 4, 2016 @ 11:35:15
  Author: fyan
Revision: 155388

upgpkg: python-websocket-client 0.35.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-04 10:13:02 UTC (rev 155387)
+++ PKGBUILD2016-01-04 10:35:15 UTC (rev 155388)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.34.0
+pkgver=0.35.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(http://pypi.python.org/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-md5sums=('80079d5f068e7c77516c1730822eba71'
+md5sums=('37015cccff457f841c6f21bae86fa2d0'
  'c34c7f6fddbe5758d84b9d3cfdd92108')
 
 prepare() {


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

2015-10-29 Thread Felix Yan
Date: Thursday, October 29, 2015 @ 10:06:51
  Author: fyan
Revision: 145232

upgpkg: python-websocket-client 0.34.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-29 08:18:55 UTC (rev 145231)
+++ PKGBUILD2015-10-29 09:06:51 UTC (rev 145232)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.33.0
+pkgver=0.34.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(http://pypi.python.org/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-md5sums=('7221d9ef4ee2bc4828d59b376a0cc682'
+md5sums=('80079d5f068e7c77516c1730822eba71'
  'c34c7f6fddbe5758d84b9d3cfdd92108')
 
 prepare() {


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

2015-10-27 Thread Felix Yan
Date: Tuesday, October 27, 2015 @ 15:44:51
  Author: fyan
Revision: 145126

upgpkg: python-websocket-client 0.33.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-27 14:39:54 UTC (rev 145125)
+++ PKGBUILD2015-10-27 14:44:51 UTC (rev 145126)
@@ -6,7 +6,7 @@
 # Contributor: Florian Bruhin 
 
 pkgname=(python-websocket-client python2-websocket-client)
-pkgver=0.32.0
+pkgver=0.33.0
 pkgrel=1
 pkgdesc="WebSocket client library for Python"
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(http://pypi.python.org/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
-md5sums=('b07a897511a3c585251fe2ea85a9d9d9'
+md5sums=('7221d9ef4ee2bc4828d59b376a0cc682'
  'c34c7f6fddbe5758d84b9d3cfdd92108')
 
 prepare() {


[arch-commits] Commit in python-websocket-client/trunk (PKGBUILD use-system-ca.patch)

2015-10-25 Thread Felix Yan
Date: Monday, October 26, 2015 @ 05:02:50
  Author: fyan
Revision: 144990

upgpkg: python-websocket-client 0.32.0-1

Modified:
  python-websocket-client/trunk/PKGBUILD
  python-websocket-client/trunk/use-system-ca.patch

-+
 PKGBUILD|3 ++-
 use-system-ca.patch |   12 
 2 files changed, 2 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-26 04:00:08 UTC (rev 144989)
+++ PKGBUILD2015-10-26 04:02:50 UTC (rev 144990)
@@ -16,10 +16,11 @@
 
source=(http://pypi.python.org/packages/source/w/websocket-client/websocket_client-$pkgver.tar.gz
 use-system-ca.patch)
 md5sums=('b07a897511a3c585251fe2ea85a9d9d9'
- 'c17d7f735c91ecf5a6b9ff16729400f2')
+ 'c34c7f6fddbe5758d84b9d3cfdd92108')
 
 prepare() {
   (cd websocket_client-$pkgver; patch -p1 -i ../use-system-ca.patch)
+  rm websocket_client-$pkgver/websocket/cacert.pem
 
   cp -a websocket_client-$pkgver{,-py2}
 }

Modified: use-system-ca.patch
===
--- use-system-ca.patch 2015-10-26 04:00:08 UTC (rev 144989)
+++ use-system-ca.patch 2015-10-26 04:02:50 UTC (rev 144990)
@@ -8,15 +8,3 @@
  },
  tests_require=tests_require,
  test_suite="websocket.tests.test_websocket",
 a/websocket/_http.py   2015-06-03 08:44:39.0 +0800
-+++ b/websocket/_http.py   2015-10-26 11:52:50.398576537 +0800
-@@ -143,8 +143,7 @@
- 
- def _ssl_socket(sock, user_sslopt, hostname):
- sslopt = dict(cert_reqs=ssl.CERT_REQUIRED)
--certPath = os.path.join(
--os.path.dirname(__file__), "cacert.pem")
-+certPath = "/etc/ssl/certs/ca-certificates.crt"
- if os.path.isfile(certPath):
- sslopt['ca_certs'] = certPath
- sslopt.update(user_sslopt)