diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2012-05-18 15:04:40 +0000 |
---|---|---|
committer | Francesco Colista <francesco.colista@gmail.com> | 2012-05-25 12:21:01 +0000 |
commit | aaf9ca7f34c5dd7903b88af0e407f1722765c74f (patch) | |
tree | 22b05affc27270271fb59a7e604afa4cd354dc0d | |
parent | fa9d85ca475706eb2978bf3057ea652de0cbb0a8 (diff) | |
download | aports-aaf9ca7f34c5dd7903b88af0e407f1722765c74f.tar.bz2 aports-aaf9ca7f34c5dd7903b88af0e407f1722765c74f.tar.xz |
testing/py-zmq: new aport
The 0MQ lightweight messaging kernel is a library which extends the
standard socket interfaces with features traditionally provided by
specialized messaging middle-ware products. 0MQ sockets provide an
abstraction of asynchronous message queues, multiple messaging
patterns, message filtering (subscriptions), seamless access to
multiple transport protocols and more.
http://www.zeromq.org/bindings:python
-rw-r--r-- | testing/py-zmq/APKBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/py-zmq/APKBUILD b/testing/py-zmq/APKBUILD new file mode 100644 index 0000000000..c5426615ae --- /dev/null +++ b/testing/py-zmq/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-zmq +_pkgname=pyzmq +pkgver=2.2.0 +pkgrel=0 +pkgdesc="Python bindings for ZeroMQ" +url="http://pypi.python.org/pypi/pyzmq" +arch="all" +license="LGPL BSD" +depends="" +depends_dev="" +makedepends="python-dev py-setuptools zeromq-dev" +install="" +subpackages="" +source="http://pypi.python.org/packages/source/p/$_pkgname/$_pkgname-$pkgver.tar.gz" +_builddir="$srcdir"/$_pkgname-$pkgver + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="100b73973d6fb235b8da6adea403566e pyzmq-2.2.0.tar.gz" |