From 1ed0c36eb416f637342714a5be363093c88b8220 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Fri, 9 Oct 2015 15:18:26 +0200 Subject: [PATCH 01/11] first package version --- .SRCINFO | 16 ++++++++++++++++ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..3226a68 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +# Generated by mksrcinfo v8 +# Fri Oct 9 13:18:17 UTC 2015 +pkgbase = python2-flask-restplus + pkgdesc = custom actions for flask to help manage your application + pkgver = 0.8.0 + pkgrel = 1 + url = http://pypi.python.org/pypi/Flask-Restplus/ + arch = any + license = BSD + makedepends = setuptools + depends = python2-flask + source = http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-0.8.0.tar.gz + sha1sums = 504f73ef0840478069d6188d582333f1722df45c + +pkgname = python2-flask-restplus + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..2ea0c36 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: Cedric Girard +pkgname='python2-flask-restplus' +pkgver='0.8.0' +pkgrel='1' +pkgdesc='custom actions for flask to help manage your application' +arch=('any') +url='http://pypi.python.org/pypi/Flask-Restplus/' +license=('BSD') +depends=('python2-flask') +makedepends=('setuptools') + +source=("http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") +sha1sums=('504f73ef0840478069d6188d582333f1722df45c') + +build() { + cd "flask-restplus-${pkgver}" + python2 ./setup.py build +} + +check() { + cd "flask-restplus-${pkgver}" + python2 ./setup.py test +} + +package() { + cd "flask-restplus-${pkgver}" + python2 ./setup.py install --root="${pkgdir}" --prefix="/usr" + + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}" +} + +# vim:set ts=2 sw=2 et: From 5bbd403b7bf3eb24df6dd13c7427468125369c46 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Mon, 14 Dec 2015 14:43:17 +0100 Subject: [PATCH 02/11] new package version 0.8.5 with new deps --- .SRCINFO | 16 ++++++++++++---- PKGBUILD | 7 ++++--- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3226a68..6d0e6b1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,24 @@ # Generated by mksrcinfo v8 -# Fri Oct 9 13:18:17 UTC 2015 +# Mon Dec 14 13:43:12 UTC 2015 pkgbase = python2-flask-restplus pkgdesc = custom actions for flask to help manage your application - pkgver = 0.8.0 + pkgver = 0.8.5 pkgrel = 1 url = http://pypi.python.org/pypi/Flask-Restplus/ arch = any license = BSD + checkdepends = python2-blinker + checkdepends = python2-rednose + checkdepends = python2-nose + checkdepends = python2-mock makedepends = setuptools depends = python2-flask - source = http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-0.8.0.tar.gz - sha1sums = 504f73ef0840478069d6188d582333f1722df45c + depends = python2-flask-restful + depends = python2-jsonschema + depends = python2-pytz + depends = python2-aniso8601 + source = http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-0.8.5.tar.gz + sha1sums = dd3ac5c280c12a62a248fa3a28bb3c8283466908 pkgname = python2-flask-restplus diff --git a/PKGBUILD b/PKGBUILD index 2ea0c36..de1018c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,17 @@ # Maintainer: Cedric Girard pkgname='python2-flask-restplus' -pkgver='0.8.0' +pkgver='0.8.5' pkgrel='1' pkgdesc='custom actions for flask to help manage your application' arch=('any') url='http://pypi.python.org/pypi/Flask-Restplus/' license=('BSD') -depends=('python2-flask') +depends=('python2-flask' 'python2-flask-restful' 'python2-jsonschema' 'python2-pytz' 'python2-aniso8601') +checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock') makedepends=('setuptools') source=("http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") -sha1sums=('504f73ef0840478069d6188d582333f1722df45c') +sha1sums=('dd3ac5c280c12a62a248fa3a28bb3c8283466908') build() { cd "flask-restplus-${pkgver}" From 4c2dc56ee104e1585925a740fa065e95d1c5eac2 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Tue, 5 Jan 2016 11:45:30 +0100 Subject: [PATCH 03/11] new upstream version 0.8.6 --- .SRCINFO | 9 +++++---- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6d0e6b1..1abcff4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Mon Dec 14 13:43:12 UTC 2015 +# Tue Jan 5 10:45:23 UTC 2016 pkgbase = python2-flask-restplus pkgdesc = custom actions for flask to help manage your application - pkgver = 0.8.5 + pkgver = 0.8.6 pkgrel = 1 url = http://pypi.python.org/pypi/Flask-Restplus/ arch = any @@ -11,14 +11,15 @@ pkgbase = python2-flask-restplus checkdepends = python2-rednose checkdepends = python2-nose checkdepends = python2-mock + checkdepends = python2-tzlocal makedepends = setuptools depends = python2-flask depends = python2-flask-restful depends = python2-jsonschema depends = python2-pytz depends = python2-aniso8601 - source = http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-0.8.5.tar.gz - sha1sums = dd3ac5c280c12a62a248fa3a28bb3c8283466908 + source = http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-0.8.6.tar.gz + sha1sums = 455788a4fa4cc9605760041974dbd7e4f46d9899 pkgname = python2-flask-restplus diff --git a/PKGBUILD b/PKGBUILD index de1018c..d9cefe3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,17 +1,17 @@ # Maintainer: Cedric Girard pkgname='python2-flask-restplus' -pkgver='0.8.5' +pkgver='0.8.6' pkgrel='1' pkgdesc='custom actions for flask to help manage your application' arch=('any') url='http://pypi.python.org/pypi/Flask-Restplus/' license=('BSD') depends=('python2-flask' 'python2-flask-restful' 'python2-jsonschema' 'python2-pytz' 'python2-aniso8601') -checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock') +checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock' 'python2-tzlocal') makedepends=('setuptools') source=("http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") -sha1sums=('dd3ac5c280c12a62a248fa3a28bb3c8283466908') +sha1sums=('455788a4fa4cc9605760041974dbd7e4f46d9899') build() { cd "flask-restplus-${pkgver}" From f57e1030000264d132894384d7778a0c41170550 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Mon, 29 Feb 2016 15:31:06 +0100 Subject: [PATCH 04/11] new upstream version 0.9.0 --- PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index d9cefe3..4727089 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,17 +1,17 @@ # Maintainer: Cedric Girard pkgname='python2-flask-restplus' -pkgver='0.8.6' +pkgver='0.9.0' pkgrel='1' pkgdesc='custom actions for flask to help manage your application' arch=('any') url='http://pypi.python.org/pypi/Flask-Restplus/' license=('BSD') -depends=('python2-flask' 'python2-flask-restful' 'python2-jsonschema' 'python2-pytz' 'python2-aniso8601') +depends=('python2-flask>=0.8' 'python2-six>=1.3.0' 'python2-jsonschema' 'python2-pytz' 'python2-aniso8601>=0.82') checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock' 'python2-tzlocal') makedepends=('setuptools') source=("http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") -sha1sums=('455788a4fa4cc9605760041974dbd7e4f46d9899') +sha1sums=('4d319bf6bd15177041555d1fb7a1466451186dc2') build() { cd "flask-restplus-${pkgver}" From d478f1a95fd6e8102d9dc3baff5d9b21d79e1d15 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Fri, 18 Mar 2016 10:42:22 +0100 Subject: [PATCH 05/11] forgot to update SRCINFO --- .SRCINFO | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1abcff4..09d521e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Tue Jan 5 10:45:23 UTC 2016 +# Fri Mar 18 09:42:11 UTC 2016 pkgbase = python2-flask-restplus pkgdesc = custom actions for flask to help manage your application - pkgver = 0.8.6 + pkgver = 0.9.0 pkgrel = 1 url = http://pypi.python.org/pypi/Flask-Restplus/ arch = any @@ -13,13 +13,13 @@ pkgbase = python2-flask-restplus checkdepends = python2-mock checkdepends = python2-tzlocal makedepends = setuptools - depends = python2-flask - depends = python2-flask-restful + depends = python2-flask>=0.8 + depends = python2-six>=1.3.0 depends = python2-jsonschema depends = python2-pytz - depends = python2-aniso8601 - source = http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-0.8.6.tar.gz - sha1sums = 455788a4fa4cc9605760041974dbd7e4f46d9899 + depends = python2-aniso8601>=0.82 + source = http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-0.9.0.tar.gz + sha1sums = 4d319bf6bd15177041555d1fb7a1466451186dc2 pkgname = python2-flask-restplus From 4eb20e0b54e1833446fee7538e9fb858c7ac392c Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Thu, 28 Apr 2016 17:42:47 +0200 Subject: [PATCH 06/11] new upstream version and new source path --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 09d521e..a3ba72c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Fri Mar 18 09:42:11 UTC 2016 +# Thu Apr 28 15:42:44 UTC 2016 pkgbase = python2-flask-restplus pkgdesc = custom actions for flask to help manage your application - pkgver = 0.9.0 + pkgver = 0.9.2 pkgrel = 1 url = http://pypi.python.org/pypi/Flask-Restplus/ arch = any @@ -18,8 +18,8 @@ pkgbase = python2-flask-restplus depends = python2-jsonschema depends = python2-pytz depends = python2-aniso8601>=0.82 - source = http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-0.9.0.tar.gz - sha1sums = 4d319bf6bd15177041555d1fb7a1466451186dc2 + source = https://pypi.io/packages/source/f/flask-restplus/flask-restplus-0.9.2.tar.gz + sha1sums = 0b386cfffe8fbf07092bd0b02e887cae4a1c7360 pkgname = python2-flask-restplus diff --git a/PKGBUILD b/PKGBUILD index 4727089..084c6f7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Cedric Girard pkgname='python2-flask-restplus' -pkgver='0.9.0' +pkgver='0.9.2' pkgrel='1' pkgdesc='custom actions for flask to help manage your application' arch=('any') @@ -10,8 +10,8 @@ depends=('python2-flask>=0.8' 'python2-six>=1.3.0' 'python2-jsonschema' 'python2 checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock' 'python2-tzlocal') makedepends=('setuptools') -source=("http://pypi.python.org/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") -sha1sums=('4d319bf6bd15177041555d1fb7a1466451186dc2') +source=("https://pypi.io/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") +sha1sums=('0b386cfffe8fbf07092bd0b02e887cae4a1c7360') build() { cd "flask-restplus-${pkgver}" From 371b33fd177a86ff4b6fdb8e412009b456066cb5 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Thu, 1 Sep 2016 12:35:52 +0200 Subject: [PATCH 07/11] setuptools is now nammed python2-setuptools --- .SRCINFO | 4 +--- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a3ba72c..889a46c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,3 @@ -# Generated by mksrcinfo v8 -# Thu Apr 28 15:42:44 UTC 2016 pkgbase = python2-flask-restplus pkgdesc = custom actions for flask to help manage your application pkgver = 0.9.2 @@ -12,7 +10,7 @@ pkgbase = python2-flask-restplus checkdepends = python2-nose checkdepends = python2-mock checkdepends = python2-tzlocal - makedepends = setuptools + makedepends = python2-setuptools depends = python2-flask>=0.8 depends = python2-six>=1.3.0 depends = python2-jsonschema diff --git a/PKGBUILD b/PKGBUILD index 084c6f7..3775eca 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,7 +8,7 @@ url='http://pypi.python.org/pypi/Flask-Restplus/' license=('BSD') depends=('python2-flask>=0.8' 'python2-six>=1.3.0' 'python2-jsonschema' 'python2-pytz' 'python2-aniso8601>=0.82') checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock' 'python2-tzlocal') -makedepends=('setuptools') +makedepends=('python2-setuptools') source=("https://pypi.io/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") sha1sums=('0b386cfffe8fbf07092bd0b02e887cae4a1c7360') From 788d47a83931fe3c2f78c6590633fdaac05f5eed Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Sun, 12 Feb 2017 17:43:11 +0100 Subject: [PATCH 08/11] new upstream version 0.10.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 889a46c..2f27f29 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python2-flask-restplus pkgdesc = custom actions for flask to help manage your application - pkgver = 0.9.2 + pkgver = 0.10.0 pkgrel = 1 url = http://pypi.python.org/pypi/Flask-Restplus/ arch = any @@ -16,8 +16,8 @@ pkgbase = python2-flask-restplus depends = python2-jsonschema depends = python2-pytz depends = python2-aniso8601>=0.82 - source = https://pypi.io/packages/source/f/flask-restplus/flask-restplus-0.9.2.tar.gz - sha1sums = 0b386cfffe8fbf07092bd0b02e887cae4a1c7360 + source = https://pypi.io/packages/source/f/flask-restplus/flask-restplus-0.10.0.tar.gz + sha1sums = d354c16789d9a04bf26f5c68072131c2e61e95f9 pkgname = python2-flask-restplus diff --git a/PKGBUILD b/PKGBUILD index 3775eca..816ab96 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Cedric Girard pkgname='python2-flask-restplus' -pkgver='0.9.2' +pkgver='0.10.0' pkgrel='1' pkgdesc='custom actions for flask to help manage your application' arch=('any') @@ -11,7 +11,7 @@ checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock' makedepends=('python2-setuptools') source=("https://pypi.io/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") -sha1sums=('0b386cfffe8fbf07092bd0b02e887cae4a1c7360') +sha1sums=('d354c16789d9a04bf26f5c68072131c2e61e95f9') build() { cd "flask-restplus-${pkgver}" From ea45b4483b317eeb3b1cc3cedeb4d6d3cc59050d Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Mon, 6 Mar 2017 23:43:47 +0100 Subject: [PATCH 09/11] new upstream version 0.10.1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2f27f29..24266e6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python2-flask-restplus pkgdesc = custom actions for flask to help manage your application - pkgver = 0.10.0 + pkgver = 0.10.1 pkgrel = 1 url = http://pypi.python.org/pypi/Flask-Restplus/ arch = any @@ -16,8 +16,8 @@ pkgbase = python2-flask-restplus depends = python2-jsonschema depends = python2-pytz depends = python2-aniso8601>=0.82 - source = https://pypi.io/packages/source/f/flask-restplus/flask-restplus-0.10.0.tar.gz - sha1sums = d354c16789d9a04bf26f5c68072131c2e61e95f9 + source = https://pypi.io/packages/source/f/flask-restplus/flask-restplus-0.10.1.tar.gz + sha1sums = d6162efccd7e7c794f435252adcf78a262cfa969 pkgname = python2-flask-restplus diff --git a/PKGBUILD b/PKGBUILD index 816ab96..3670e6d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Cedric Girard pkgname='python2-flask-restplus' -pkgver='0.10.0' +pkgver='0.10.1' pkgrel='1' pkgdesc='custom actions for flask to help manage your application' arch=('any') @@ -11,7 +11,7 @@ checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock' makedepends=('python2-setuptools') source=("https://pypi.io/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") -sha1sums=('d354c16789d9a04bf26f5c68072131c2e61e95f9') +sha1sums=('d6162efccd7e7c794f435252adcf78a262cfa969') build() { cd "flask-restplus-${pkgver}" From 16c6075e4f53d36764c85fbc48ca85695d099359 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Mon, 11 Dec 2017 17:05:35 +0100 Subject: [PATCH 10/11] split package python{2,3} --- .SRCINFO | 19 ++++++++++--------- PKGBUILD | 40 +++++++++++++++++++++++++--------------- 2 files changed, 35 insertions(+), 24 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 24266e6..2f59242 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -5,19 +5,20 @@ pkgbase = python2-flask-restplus url = http://pypi.python.org/pypi/Flask-Restplus/ arch = any license = BSD - checkdepends = python2-blinker - checkdepends = python2-rednose - checkdepends = python2-nose - checkdepends = python2-mock - checkdepends = python2-tzlocal - makedepends = python2-setuptools + source = https://pypi.io/packages/source/f/flask-restplus/flask-restplus-0.10.1.tar.gz + sha1sums = d6162efccd7e7c794f435252adcf78a262cfa969 + +pkgname = python2-flask-restplus depends = python2-flask>=0.8 depends = python2-six>=1.3.0 depends = python2-jsonschema depends = python2-pytz depends = python2-aniso8601>=0.82 - source = https://pypi.io/packages/source/f/flask-restplus/flask-restplus-0.10.1.tar.gz - sha1sums = d6162efccd7e7c794f435252adcf78a262cfa969 -pkgname = python2-flask-restplus +pkgname = python-flask-restplus + depends = python-flask>=0.8 + depends = python-six>=1.3.0 + depends = python-jsonschema + depends = python-pytz + depends = python-aniso8601>=0.82 diff --git a/PKGBUILD b/PKGBUILD index 3670e6d..f9dcf21 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,33 +1,43 @@ # Maintainer: Cedric Girard -pkgname='python2-flask-restplus' -pkgver='0.10.1' -pkgrel='1' +_pythonmod=flask-restplus +pkgname=('python2-flask-restplus' 'python-flask-restplus') +pkgbase='python2-flask-restplus' +pkgver=0.10.1 +pkgrel=1 pkgdesc='custom actions for flask to help manage your application' arch=('any') url='http://pypi.python.org/pypi/Flask-Restplus/' license=('BSD') -depends=('python2-flask>=0.8' 'python2-six>=1.3.0' 'python2-jsonschema' 'python2-pytz' 'python2-aniso8601>=0.82') -checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock' 'python2-tzlocal') -makedepends=('python2-setuptools') source=("https://pypi.io/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") sha1sums=('d6162efccd7e7c794f435252adcf78a262cfa969') -build() { - cd "flask-restplus-${pkgver}" - python2 ./setup.py build -} - -check() { - cd "flask-restplus-${pkgver}" +check_python2-flask-restplus() { + checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock' 'python2-tzlocal') + cd ${srcdir}/${_pythonmod}-$pkgver python2 ./setup.py test } -package() { - cd "flask-restplus-${pkgver}" +package_python2-flask-restplus() { + depends=('python2-flask>=0.8' 'python2-six>=1.3.0' 'python2-jsonschema' 'python2-pytz' 'python2-aniso8601>=0.82') + cd ${srcdir}/${_pythonmod}-$pkgver python2 ./setup.py install --root="${pkgdir}" --prefix="/usr" install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}" } +check_python-flask-restplus() { + checkdepends=('python-blinker' 'python-rednose' 'python-nose' 'python-mock' 'python-tzlocal') + cd ${srcdir}/${_pythonmod}-$pkgver + python ./setup.py test +} + +package_python-flask-restplus() { + depends=('python-flask>=0.8' 'python-six>=1.3.0' 'python-jsonschema' 'python-pytz' 'python-aniso8601>=0.82') + cd ${srcdir}/${_pythonmod}-$pkgver + python ./setup.py install --root="${pkgdir}" --prefix="/usr" + + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}" +} + # vim:set ts=2 sw=2 et: From 6f283a27d3d7d91c0103a369747121422e977f46 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Wed, 30 May 2018 15:55:47 +0200 Subject: [PATCH 11/11] new upstream version 0.11.0 --- .SRCINFO | 6 +++--- PKGBUILD | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2f59242..63cb291 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,12 +1,12 @@ pkgbase = python2-flask-restplus pkgdesc = custom actions for flask to help manage your application - pkgver = 0.10.1 + pkgver = 0.11.0 pkgrel = 1 url = http://pypi.python.org/pypi/Flask-Restplus/ arch = any license = BSD - source = https://pypi.io/packages/source/f/flask-restplus/flask-restplus-0.10.1.tar.gz - sha1sums = d6162efccd7e7c794f435252adcf78a262cfa969 + source = https://github.com/noirbizarre/flask-restplus/archive/0.11.0.tar.gz + sha1sums = 0851f0516c4208d24fcd98561525a7b6d0054d2d pkgname = python2-flask-restplus depends = python2-flask>=0.8 diff --git a/PKGBUILD b/PKGBUILD index f9dcf21..1b90421 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,15 +2,16 @@ _pythonmod=flask-restplus pkgname=('python2-flask-restplus' 'python-flask-restplus') pkgbase='python2-flask-restplus' -pkgver=0.10.1 +pkgver=0.11.0 pkgrel=1 pkgdesc='custom actions for flask to help manage your application' arch=('any') url='http://pypi.python.org/pypi/Flask-Restplus/' license=('BSD') -source=("https://pypi.io/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") -sha1sums=('d6162efccd7e7c794f435252adcf78a262cfa969') +#source=("https://pypi.io/packages/source/f/flask-restplus/flask-restplus-${pkgver}.tar.gz") +source=("https://github.com/noirbizarre/flask-restplus/archive/${pkgver}.tar.gz") +sha1sums=('0851f0516c4208d24fcd98561525a7b6d0054d2d') check_python2-flask-restplus() { checkdepends=('python2-blinker' 'python2-rednose' 'python2-nose' 'python2-mock' 'python2-tzlocal')