mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/py-jsonpickle: new aport
This commit is contained in:
parent
36a0a499fd
commit
9a9a043ef5
46
testing/py-jsonpickle/APKBUILD
Normal file
46
testing/py-jsonpickle/APKBUILD
Normal file
@ -0,0 +1,46 @@
|
||||
# Maintainer: William Pitcock <nenolod@dereferenced.org>
|
||||
pkgname=py-jsonpickle
|
||||
pkgver=0.9.5
|
||||
pkgrel=0
|
||||
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"
|
||||
Loading…
x
Reference in New Issue
Block a user