mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-28 12:51:44 +01:00
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=py-simplejson
|
|
_pkgname=simplejson
|
|
pkgver=3.8.2
|
|
pkgrel=1
|
|
pkgdesc="Simple, fast, extensible JSON encoder/decoder for Python"
|
|
url="http://pypi.python.org/pypi/simplejson/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=""
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
|
|
python2 setup.py build || return 1
|
|
python2 setup.py test || return 1
|
|
|
|
python3 setup.py build || return 1
|
|
python3 setup.py test || return 1
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir" || return 1
|
|
rm -Rf "$subpkgdir"/usr/lib/python*/site-packages/simplejson/tests/
|
|
}
|
|
|
|
md5sums="53b1371bbf883b129a12d594a97e9a18 simplejson-3.8.2.tar.gz"
|
|
sha256sums="d58439c548433adcda98e695be53e526ba940a4b9c44fb9a05d92cd495cdd47f simplejson-3.8.2.tar.gz"
|
|
sha512sums="041445bcee97e37361ed6270937fb4e74b6fc05988678da213ddc4f57f83134bfc933b0fb22101c387898bffac1b29d6eb78f03ec0853cf1086b155cee6ca309 simplejson-3.8.2.tar.gz"
|