mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 10:15:12 +03:00
30 lines
927 B
Text
30 lines
927 B
Text
# Contributor: Matt Dainty <matt+alpine@bodgit-n-scarper.com>
|
|
# Maintainer: TBK <alpine@jjtc.eu>
|
|
pkgname=py3-jsonpointer
|
|
_pkgname=jsonpointer
|
|
pkgver=2.0
|
|
pkgrel=3
|
|
pkgdesc="Identify specific nodes in a JSON document (RFC 6901)"
|
|
url="https://github.com/stefankoegl/python-json-pointer"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-jsonpointer" # Backwards compatibility
|
|
provides="py-jsonpointer=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="e8e2b03c12c3fc5f65816fc71d1c07135ef74a0c912286f5b8bef2d9e21b8ae6e766d1aa2104b3eeb0e53928034321f25b203386ac3f5641b54b0641f6a08137 jsonpointer-2.0.tar.gz"
|