[arch-commits] Commit in python-warlock/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 13:20:06
  Author: foutrelis
Revision: 751770

upgpkg: python-warlock 1.3.3-5: Python 3.9 rebuild

Modified:
  python-warlock/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 13:20:05 UTC (rev 751769)
+++ PKGBUILD2020-11-12 13:20:06 UTC (rev 751770)
@@ -2,7 +2,7 @@
 
 pkgname=python-warlock
 pkgver=1.3.3
-pkgrel=4
+pkgrel=5
 pkgdesc="Python object model built on JSON schema and JSON patch."
 arch=('any')
 license=('Apache')


[arch-commits] Commit in python-warlock/trunk (PKGBUILD)

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Monday, November 9, 2020 @ 18:28:04
  Author: foutrelis
Revision: 747990

upgpkg: python-warlock 1.3.3-4: Python 3.9 rebuild

Modified:
  python-warlock/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 18:28:02 UTC (rev 747989)
+++ PKGBUILD2020-11-09 18:28:04 UTC (rev 747990)
@@ -2,7 +2,7 @@
 
 pkgname=python-warlock
 pkgver=1.3.3
-pkgrel=3
+pkgrel=4
 pkgdesc="Python object model built on JSON schema and JSON patch."
 arch=('any')
 license=('Apache')


[arch-commits] Commit in python-warlock/trunk (PKGBUILD)

2019-11-02 Thread Evangelos Foutras via arch-commits
Date: Saturday, November 2, 2019 @ 21:42:39
  Author: foutrelis
Revision: 522218

Python 3.8 rebuild

Modified:
  python-warlock/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-02 21:42:17 UTC (rev 522217)
+++ PKGBUILD2019-11-02 21:42:39 UTC (rev 522218)
@@ -2,7 +2,7 @@
 
 pkgname=python-warlock
 pkgver=1.3.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Python object model built on JSON schema and JSON patch."
 arch=('any')
 license=('Apache')


[arch-commits] Commit in python-warlock/trunk (PKGBUILD)

2019-10-25 Thread Felix Yan via arch-commits
Date: Saturday, October 26, 2019 @ 04:18:53
  Author: felixonmars
Revision: 519977

Python 3.8 rebuild

Modified:
  python-warlock/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-26 04:18:48 UTC (rev 519976)
+++ PKGBUILD2019-10-26 04:18:53 UTC (rev 519977)
@@ -2,7 +2,7 @@
 
 pkgname=python-warlock
 pkgver=1.3.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Python object model built on JSON schema and JSON patch."
 arch=('any')
 license=('Apache')


[arch-commits] Commit in python-warlock/trunk (PKGBUILD)

2019-06-22 Thread Felix Yan via arch-commits
Date: Sunday, June 23, 2019 @ 03:00:15
  Author: felixonmars
Revision: 482847

upgpkg: python-warlock 1.3.3-1

Modified:
  python-warlock/trunk/PKGBUILD

--+
 PKGBUILD |   44 
 1 file changed, 12 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-23 02:59:52 UTC (rev 482846)
+++ PKGBUILD2019-06-23 03:00:15 UTC (rev 482847)
@@ -1,49 +1,29 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-warlock
-pkgname=('python-warlock' 'python2-warlock')
-pkgver=1.3.0
-pkgrel=3
+pkgname=python-warlock
+pkgver=1.3.3
+pkgrel=1
 pkgdesc="Python object model built on JSON schema and JSON patch."
 arch=('any')
 license=('Apache')
 url="https://github.com/bcwaldon/warlock;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-jsonschema' 
'python2-jsonschema'
- 'python-jsonpatch' 'python2-jsonpatch' 'python-six' 'python2-six' 
'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("git+https://github.com/bcwaldon/warlock.git#tag=v$pkgver;)
-sha512sums=('SKIP')
+depends=('python-jsonschema' 'python-jsonpatch' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-pytest-cov')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bcwaldon/warlock/archive/$pkgver.tar.gz;)
+sha512sums=('8a9135a17ccc0d0939ad98eee16100ec68b911d672b3af549f7629edcd6e08129f9e4ab707082593274fc896bc405ab6d6ba9e4bf6fc40b8522ec99327c983ec')
 
-prepare() {
-  cp -a warlock{,-py2}
-}
-
 build() {
-  cd "$srcdir"/warlock
+  cd warlock-$pkgver
   python setup.py build
-
-  cd "$srcdir"/warlock-py2
-  python2 setup.py build
 }
 
 check() {
-  cd "$srcdir"/warlock
+  cd warlock-$pkgver
   python setup.py pytest
-
-  cd "$srcdir"/warlock-py2
-  python2 setup.py pytest
 }
 
-package_python-warlock() {
-  depends=('python-jsonschema' 'python-jsonpatch' 'python-six')
-
-  cd warlock
+package() {
+  cd warlock-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 }
-
-package_python2-warlock() {
-  depends=('python2-jsonschema' 'python2-jsonpatch' 'python2-six')
-
-  cd warlock-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}


[arch-commits] Commit in python-warlock/trunk (PKGBUILD)

2018-07-16 Thread Eli Schwartz via arch-commits
Date: Monday, July 16, 2018 @ 15:31:43
  Author: eschwartz
Revision: 359869

upgpkg: python-warlock 1.3.0-3

python 3.7 rebuild

Modified:
  python-warlock/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-16 15:27:06 UTC (rev 359868)
+++ PKGBUILD2018-07-16 15:31:43 UTC (rev 359869)
@@ -4,7 +4,7 @@
 pkgbase=python-warlock
 pkgname=('python-warlock' 'python2-warlock')
 pkgver=1.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Python object model built on JSON schema and JSON patch."
 arch=('any')
 license=('Apache')


[arch-commits] Commit in python-warlock/trunk (PKGBUILD)

2017-10-04 Thread Felix Yan
Date: Wednesday, October 4, 2017 @ 15:46:25
  Author: felixonmars
Revision: 261504

use prefered subcommand for pytest-runner

Modified:
  python-warlock/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-04 15:44:45 UTC (rev 261503)
+++ PKGBUILD2017-10-04 15:46:25 UTC (rev 261504)
@@ -29,10 +29,10 @@
 
 check() {
   cd "$srcdir"/warlock
-  python setup.py ptr
+  python setup.py pytest
 
   cd "$srcdir"/warlock-py2
-  python2 setup.py ptr
+  python2 setup.py pytest
 }
 
 package_python-warlock() {


[arch-commits] Commit in python-warlock/trunk (PKGBUILD)

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 05:45:17
  Author: bpiotrowski
Revision: 201833

Python 3.6 rebuild

Modified:
  python-warlock/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 05:43:52 UTC (rev 201832)
+++ PKGBUILD2016-12-25 05:45:17 UTC (rev 201833)
@@ -4,7 +4,7 @@
 pkgbase=python-warlock
 pkgname=('python-warlock' 'python2-warlock')
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Python object model built on JSON schema and JSON patch."
 arch=('any')
 license=('Apache')


[arch-commits] Commit in python-warlock/trunk (PKGBUILD)

2016-06-25 Thread Felix Yan
Date: Sunday, June 26, 2016 @ 04:28:52
  Author: felixonmars
Revision: 181189

upgpkg: python-warlock 1.3.0-1

Modified:
  python-warlock/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-26 04:28:44 UTC (rev 181188)
+++ PKGBUILD2016-06-26 04:28:52 UTC (rev 181189)
@@ -3,7 +3,7 @@
 
 pkgbase=python-warlock
 pkgname=('python-warlock' 'python2-warlock')
-pkgver=1.2.0
+pkgver=1.3.0
 pkgrel=1
 pkgdesc="Python object model built on JSON schema and JSON patch."
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-jsonschema' 
'python2-jsonschema'
  'python-jsonpatch' 'python2-jsonpatch' 'python-six' 'python2-six' 
'git')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("git+https://github.com/bcwaldon/warlock.git#tag=$pkgver;)
+source=("git+https://github.com/bcwaldon/warlock.git#tag=v$pkgver;)
 sha512sums=('SKIP')
 
 prepare() {