[arch-commits] Commit in python-jsonpatch/repos (2 files)
Eli Schwartz
eschwartz at archlinux.org
Sun Jul 15 16:32:13 UTC 2018
Date: Sunday, July 15, 2018 @ 16:32:13
Author: eschwartz
Revision: 359555
archrelease: copy trunk to community-staging-any
Added:
python-jsonpatch/repos/community-staging-any/
python-jsonpatch/repos/community-staging-any/PKGBUILD
(from rev 359554, python-jsonpatch/trunk/PKGBUILD)
----------+
PKGBUILD | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
Copied: python-jsonpatch/repos/community-staging-any/PKGBUILD (from rev 359554, python-jsonpatch/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2018-07-15 16:32:13 UTC (rev 359555)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: Limao Luo <luolimao+AUR at gmail.com>
+
+pkgbase=python-jsonpatch
+pkgname=(python-jsonpatch python2-jsonpatch)
+pkgver=1.23
+pkgrel=2
+pkgdesc="An implementation of the JSON Patch format"
+arch=("any")
+url="https://github.com/stefankoegl/python-json-patch"
+license=("BSD")
+makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" "python2-jsonpointer"
+ "python-pypandoc" "python2-pypandoc")
+checkdepends=('python-coverage' 'python2-coverage')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/stefankoegl/python-json-patch/archive/v$pkgver.tar.gz")
+sha512sums=('87b12037174af6ebff81b2e544985460bd33d417845c146436bc49bd7b964b2f4cc5f9f810d817e048e69846c8f97a38fce7512168902602c94469b0bcd4fa3c')
+
+prepare(){
+ cp -a python-json-patch-$pkgver{,-py2}
+ find python-json-patch-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
+}
+
+build() {
+ cd "$srcdir"/python-json-patch-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/python-json-patch-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ cd "$srcdir"/python-json-patch-$pkgver
+ coverage run --source=jsonpatch tests.py
+
+ cd "$srcdir"/python-json-patch-$pkgver-py2
+ coverage2 run --source=jsonpatch tests.py
+}
+
+package_python-jsonpatch() {
+ depends=("python-jsonpointer")
+
+ cd "$srcdir"/python-json-patch-$pkgver
+
+ install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+ python setup.py install --prefix=/usr --root="$pkgdir"
+}
+package_python2-jsonpatch() {
+ depends=("python2-jsonpointer")
+
+ cd "$srcdir"/python-json-patch-$pkgver-py2
+
+ install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+ python2 setup.py install --prefix=/usr --root="$pkgdir"
+ for _bin in "$pkgdir"/usr/bin/*; do
+ mv "$_bin"{,2}
+ done
+}
More information about the arch-commits
mailing list