Date: Monday, October 26, 2015 @ 05:00:08 Author: fyan Revision: 144989
addpkg: python-websocket-client 0.32.0-1 Added: python-websocket-client/ python-websocket-client/repos/ python-websocket-client/trunk/ python-websocket-client/trunk/PKGBUILD python-websocket-client/trunk/use-system-ca.patch ---------------------+ PKGBUILD | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++ use-system-ca.patch | 22 ++++++++++++++++++ 2 files changed, 83 insertions(+) Added: python-websocket-client/trunk/PKGBUILD =================================================================== --- python-websocket-client/trunk/PKGBUILD (rev 0) +++ python-websocket-client/trunk/PKGBUILD 2015-10-26 04:00:08 UTC (rev 144989) @@ -0,0 +1,61 @@ +# $Id$ +# Maintainer: Felix Yan <[email protected]> +# Contributor: Matmas <[email protected]> +# Contributor: Thomas Gubler <[email protected]> +# Contributor: Daniel YC Lin <dlin.tw at gmail> +# Contributor: Florian Bruhin <[email protected]> + +pkgname=(python-websocket-client python2-websocket-client) +pkgver=0.32.0 +pkgrel=1 +pkgdesc="WebSocket client library for Python" +arch=(any) +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 + use-system-ca.patch) +md5sums=('b07a897511a3c585251fe2ea85a9d9d9' + 'c17d7f735c91ecf5a6b9ff16729400f2') + +prepare() { + (cd websocket_client-$pkgver; patch -p1 -i ../use-system-ca.patch) + + cp -a websocket_client-$pkgver{,-py2} +} + +build() { + cd "$srcdir/websocket_client-$pkgver" + python setup.py build + + cd "$srcdir/websocket_client-$pkgver-py2" + python2 setup.py build +} + +check() { + cd "$srcdir/websocket_client-$pkgver" + python setup.py test + + cd "$srcdir/websocket_client-$pkgver-py2" + python2 setup.py test +} + +package_python-websocket-client() { + depends=('python-six') + + cd "$srcdir/websocket_client-$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/websocket_client-$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: Property changes on: python-websocket-client/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: python-websocket-client/trunk/use-system-ca.patch =================================================================== --- python-websocket-client/trunk/use-system-ca.patch (rev 0) +++ python-websocket-client/trunk/use-system-ca.patch 2015-10-26 04:00:08 UTC (rev 144989) @@ -0,0 +1,22 @@ +--- a/setup.py 2015-06-03 08:44:39.000000000 +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", +--- a/websocket/_http.py 2015-06-03 08:44:39.000000000 +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)
