diff options
author | Olivier Mauras <olivier@mauras.ch> | 2016-08-18 22:49:57 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-22 22:47:06 +0200 |
commit | ffea920168e4bbf800150e4cd9d5a6205d978625 (patch) | |
tree | 3af67ef573287d6b1b72562e29b8068dff442303 /community/py3-msgpack | |
parent | e0e276e6cfc607b5315e04b78eed6888290910d6 (diff) | |
download | aports-ffea920168e4bbf800150e4cd9d5a6205d978625.tar.bz2 aports-ffea920168e4bbf800150e4cd9d5a6205d978625.tar.xz |
testing/[various]: move to community
Diffstat (limited to 'community/py3-msgpack')
-rw-r--r-- | community/py3-msgpack/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/py3-msgpack/APKBUILD b/community/py3-msgpack/APKBUILD new file mode 100644 index 0000000000..32d895ac14 --- /dev/null +++ b/community/py3-msgpack/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py3-msgpack +_pkgname=msgpack-python +pkgver=0.4.7 +pkgrel=1 +pkgdesc="A Python module for MessagePack serialization/deserialization" +url="http://pypi.python.org/pypi/msgpack-python/" +arch="all" +license="ASL 2.0" +depends="python3" +depends_dev="" +makedepends="python3-dev" +subpackages="" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" + +builddir="$srcdir"/$_pkgname-$pkgver +build () { + cd "$builddir" + python3 setup.py build || return 1 +} + +package() { + cd "$builddir" + python3 setup.py install --root="$pkgdir" || return 1 +} + +md5sums="eb2aad1081534ef3a9f32a0ecd350b9b msgpack-python-0.4.7.tar.gz" +sha256sums="5e001229a54180a02dcdd59db23c9978351af55b1290c27bc549e381f43acd6b msgpack-python-0.4.7.tar.gz" +sha512sums="10cc51c5f46a908953298071a46a790b9b78a577e37abd546c76f72386c3847885e36523680c86b9a13fb099fc2a17c3c7a0119c750ac5e7081c72df3ebd7a7e msgpack-python-0.4.7.tar.gz" |