diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-08-27 02:40:52 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-08-27 02:40:52 -0300 |
commit | 147a70148ba3f0d384c32d694635c9a6b0899691 (patch) | |
tree | 915bb5d299bf4a5ffe0edf8fe5a3cd2f1a8e8279 /testing/py3-jsonpickle | |
parent | 7e78e3cb8e72d3aeecf9d8c15089266c32303f64 (diff) | |
download | aports-147a70148ba3f0d384c32d694635c9a6b0899691.tar.bz2 aports-147a70148ba3f0d384c32d694635c9a6b0899691.tar.xz |
testing/py3-jsonpickle: rename from py-jsonpickle
Diffstat (limited to 'testing/py3-jsonpickle')
-rw-r--r-- | testing/py3-jsonpickle/APKBUILD | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/py3-jsonpickle/APKBUILD b/testing/py3-jsonpickle/APKBUILD new file mode 100644 index 0000000000..bd17da3f71 --- /dev/null +++ b/testing/py3-jsonpickle/APKBUILD @@ -0,0 +1,46 @@ +# Maintainer: +pkgname=py-jsonpickle +pkgver=0.9.5 +pkgrel=1 +pkgdesc="an jsonpickle implementation" +url="https://pypi.python.org/pypi/jsonpickle/" +arch="noarch" +license="BSD" +depends="" +makedepends="python2-dev python3-dev py-setuptools" +install="" +subpackages="py2-jsonpickle:py2 py3-jsonpickle:py3" +source="https://files.pythonhosted.org/packages/source/j/jsonpickle/jsonpickle-$pkgver.tar.gz" +builddir="$srcdir/jsonpickle-$pkgver" + +build() { + cd "$_builddir" + python2 setup.py build + python3 setup.py build +} + +package() { + mkdir -p "$pkgdir" +} + +_py() { + local python="$1" + pkgdesc="$pkgdesc ${python#python}" + depends="$depends $python" + install_if="$pkgname=$pkgver-r$pkgrel $python" + + cd "$builddir" + $python setup.py install --prefix=/usr --root="$subpkgdir" +} + +py2() { + cd "$builddir" + _py python2 +} + +py3() { + cd "$builddir" + _py python3 +} + +sha512sums="4fd3a61a08c149ccce578c78c4f3117546f58819a1015f9d8fc794c84af9b882e77905ca42a12b1f9716e2652fc4e959a85d3aee3b937be687bd5a9abe8859e2 jsonpickle-0.9.5.tar.gz" |