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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 10:06:19
  Author: foutrelis
Revision: 751403

upgpkg: python-flask 1.1.2-4: Python 3.9 rebuild

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 10:06:17 UTC (rev 751402)
+++ PKGBUILD2020-11-12 10:06:19 UTC (rev 751403)
@@ -5,7 +5,7 @@
 
 pkgname=python-flask
 pkgver=1.1.2
-pkgrel=3
+pkgrel=4
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')


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

2020-06-28 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 29, 2020 @ 00:28:07
  Author: svenstaro
Revision: 655787

Fix typo

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-29 00:27:39 UTC (rev 655786)
+++ PKGBUILD2020-06-29 00:28:07 UTC (rev 655787)
@@ -16,7 +16,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
 
sha512sums=('390baaea8e3500724a4a7755d930e078cfc072357af15f2180f35983cc86d224827afd9180a466e3ad546405a8b8a94d752c19eda716f2f06c1716e4f19c4fbc')
 
-buildk() {
+build() {
   cd "flask-$pkgver"
   python setup.py build
 }


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

2020-05-08 Thread Jelle van der Waa via arch-commits
Date: Friday, May 8, 2020 @ 12:31:13
  Author: jelle
Revision: 625623

upgpkg: python-flask 1.1.2-2

Remove python2-flask as it's not required.

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |   42 ++
 1 file changed, 10 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-08 12:22:12 UTC (rev 625622)
+++ PKGBUILD2020-05-08 12:31:13 UTC (rev 625623)
@@ -3,56 +3,34 @@
 # Contributor: Thomas Dziedzic < gostrc at gmail >
 # Contributor: Tarmo Heiskanen 
 
-pkgbase=python-flask
-pkgname=('python-flask' 'python2-flask')
+pkgname=python-flask
 pkgver=1.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
 license=('custom:BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-werkzeug' 
'python2-werkzeug'
- 'python-jinja' 'python2-jinja' 'python-itsdangerous' 
'python2-itsdangerous'
- 'python-click' 'python2-click')
-source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
+depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous' 'python-click')
+makedepends=('python-setuptools'  'python-werkzeug' 
+ 'python-jinja' 'python-itsdangerous' 'python-click')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
 
sha512sums=('390baaea8e3500724a4a7755d930e078cfc072357af15f2180f35983cc86d224827afd9180a466e3ad546405a8b8a94d752c19eda716f2f06c1716e4f19c4fbc')
 
-prepare() {
-  cp -r "flask-$pkgver" "python-flask-$pkgver"
-  cp -r "flask-$pkgver" "python2-flask-$pkgver"
-}
-
 buildk() {
-  cd "$srcdir/python-flask-$pkgver"
+  cd "flask-$pkgver"
   python setup.py build
-
-  cd "$srcdir/python2-flask-$pkgver"
-  python setup.py build
 }
 
 check() {
-  cd "$srcdir/python-flask-$pkgver"
+  cd "flask-$pkgver"
   python setup.py test
-
-  cd "$srcdir/python2-flask-$pkgver"
-  python2 setup.py test
 }
 
-package_python-flask() {
-  depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous' 
'python-click')
-  cd "$srcdir/python-flask-$pkgver"
+package() {
+  cd "flask-$pkgver"
 
   python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
 }
 
-package_python2-flask() {
-  depends=('python2-werkzeug' 'python2-jinja' 'python2-itsdangerous' 
'python2-click')
-  cd "$srcdir/python2-flask-$pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/flask "$pkgdir"/usr/bin/flask2
-  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
-}
-
 # vim:set ts=2 sw=2 et:


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

2020-04-04 Thread Felix Yan via arch-commits
Date: Saturday, April 4, 2020 @ 21:45:46
  Author: felixonmars
Revision: 611746

upgpkg: python-flask 1.1.2-1

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-04 21:44:02 UTC (rev 611745)
+++ PKGBUILD2020-04-04 21:45:46 UTC (rev 611746)
@@ -5,8 +5,8 @@
 
 pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
-pkgver=1.1.1
-pkgrel=3
+pkgver=1.1.2
+pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
@@ -15,7 +15,7 @@
  'python-jinja' 'python2-jinja' 'python-itsdangerous' 
'python2-itsdangerous'
  'python-click' 'python2-click')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha512sums=('1d417e571695615262a52a4627e722090aedf06d7966b9cb3a8e6c80ffe36958c2d22ce4bbcba67a7b04fc29f8906aa0aeb3940e0c9b872f967765470f38eae3')
+sha512sums=('390baaea8e3500724a4a7755d930e078cfc072357af15f2180f35983cc86d224827afd9180a466e3ad546405a8b8a94d752c19eda716f2f06c1716e4f19c4fbc')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2019-11-03 Thread Felix Yan via arch-commits
Date: Sunday, November 3, 2019 @ 21:29:41
  Author: felixonmars
Revision: 522701

Python 3.8 rebuild

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-03 21:29:33 UTC (rev 522700)
+++ PKGBUILD2019-11-03 21:29:41 UTC (rev 522701)
@@ -6,7 +6,7 @@
 pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
 pkgver=1.1.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')


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

2019-10-25 Thread Evangelos Foutras via arch-commits
Date: Saturday, October 26, 2019 @ 06:38:39
  Author: foutrelis
Revision: 520287

Python 3.8 rebuild

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-26 06:38:24 UTC (rev 520286)
+++ PKGBUILD2019-10-26 06:38:39 UTC (rev 520287)
@@ -6,7 +6,7 @@
 pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
 pkgver=1.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')


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

2019-08-05 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, August 5, 2019 @ 07:28:20
  Author: svenstaro
Revision: 497442

upgpkg: python-flask 1.1.1-1

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-05 07:26:40 UTC (rev 497441)
+++ PKGBUILD2019-08-05 07:28:20 UTC (rev 497442)
@@ -5,7 +5,7 @@
 
 pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
-pkgver=1.0.3
+pkgver=1.1.1
 pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
@@ -15,7 +15,7 @@
  'python-jinja' 'python2-jinja' 'python-itsdangerous' 
'python2-itsdangerous'
  'python-click' 'python2-click')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha512sums=('67aaed68f7a918909ec310f53a97d921259824996fd3dc5fb46d03c9b8e918f25a7f02cd845139d6ed21baf3c4b721956a383fc82d4cc5fdd9367207')
+sha512sums=('1d417e571695615262a52a4627e722090aedf06d7966b9cb3a8e6c80ffe36958c2d22ce4bbcba67a7b04fc29f8906aa0aeb3940e0c9b872f967765470f38eae3')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"
@@ -43,7 +43,7 @@
   cd "$srcdir/python-flask-$pkgver"
 
   python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
 }
 
 package_python2-flask() {
@@ -52,7 +52,7 @@
 
   python2 setup.py install --root="$pkgdir" --optimize=1
   mv "$pkgdir"/usr/bin/flask "$pkgdir"/usr/bin/flask2
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
 }
 
 # vim:set ts=2 sw=2 et:


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

2019-05-24 Thread Felix Yan via arch-commits
Date: Saturday, May 25, 2019 @ 05:01:24
  Author: felixonmars
Revision: 469712

upgpkg: python-flask 1.0.3-1

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-25 04:51:05 UTC (rev 469711)
+++ PKGBUILD2019-05-25 05:01:24 UTC (rev 469712)
@@ -5,8 +5,8 @@
 
 pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
-pkgver=1.0.2
-pkgrel=2
+pkgver=1.0.3
+pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
@@ -15,7 +15,7 @@
  'python-jinja' 'python2-jinja' 'python-itsdangerous' 
'python2-itsdangerous'
  'python-click' 'python2-click')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha512sums=('80a65b62293560982eaf043cf923eaf91f57ba7ce71329046227fcbd7cc0ead841449083b7fc23d283b2515322c4ea732a36b445ff9f1697febc0207392a9792')
+sha512sums=('67aaed68f7a918909ec310f53a97d921259824996fd3dc5fb46d03c9b8e918f25a7f02cd845139d6ed21baf3c4b721956a383fc82d4cc5fdd9367207')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2018-06-30 Thread Felix Yan via arch-commits
Date: Saturday, June 30, 2018 @ 09:14:59
  Author: felixonmars
Revision: 348007

fix makedepends

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-30 09:14:54 UTC (rev 348006)
+++ PKGBUILD2018-06-30 09:14:59 UTC (rev 348007)
@@ -12,7 +12,9 @@
 url='http://flask.pocoo.org/'
 arch=('any')
 license=('custom:BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-werkzeug' 
'python2-werkzeug'
+ 'python-jinja' 'python2-jinja' 'python-itsdangerous' 
'python2-itsdangerous'
+ 'python-click' 'python2-click')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
 
sha512sums=('80a65b62293560982eaf043cf923eaf91f57ba7ce71329046227fcbd7cc0ead841449083b7fc23d283b2515322c4ea732a36b445ff9f1697febc0207392a9792')
 


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

2018-06-30 Thread Felix Yan via arch-commits
Date: Saturday, June 30, 2018 @ 09:11:38
  Author: felixonmars
Revision: 348003

upgpkg: python-flask 1.0.2-2

Python 3.7 rebuild

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-30 09:09:58 UTC (rev 348002)
+++ PKGBUILD2018-06-30 09:11:38 UTC (rev 348003)
@@ -7,7 +7,7 @@
 pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
 pkgver=1.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')


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

2018-05-03 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, May 3, 2018 @ 22:17:32
  Author: svenstaro
Revision: 318901

upgpkg: python-flask 1.0.2-1

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-03 22:15:48 UTC (rev 318900)
+++ PKGBUILD2018-05-03 22:17:32 UTC (rev 318901)
@@ -6,7 +6,7 @@
 
 pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
-pkgver=1.0.1
+pkgver=1.0.2
 pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
@@ -14,7 +14,7 @@
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha512sums=('f5be813d4eb5440194d8f953d901fa471d3a60d69deb031150f4d92e1918850c136257a39884f69cb53a3f92a07b4eac52641afaf7695b597c3dc002b79c9c5b')
+sha512sums=('80a65b62293560982eaf043cf923eaf91f57ba7ce71329046227fcbd7cc0ead841449083b7fc23d283b2515322c4ea732a36b445ff9f1697febc0207392a9792')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2018-05-01 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, May 1, 2018 @ 09:52:41
  Author: svenstaro
Revision: 318575

upgpkg: python-flask 1.0.1-1

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-01 09:51:59 UTC (rev 318574)
+++ PKGBUILD2018-05-01 09:52:41 UTC (rev 318575)
@@ -6,7 +6,7 @@
 
 pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
-pkgver=1.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
@@ -14,7 +14,7 @@
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha512sums=('6841aecf973e6601efb616f05979728d50566c8351df78b5961b95a771dc498211604a51c8d36dbd2b9b27a07ef0abf7cd6203e93d95632262a916c4c8d68acf')
+sha512sums=('f5be813d4eb5440194d8f953d901fa471d3a60d69deb031150f4d92e1918850c136257a39884f69cb53a3f92a07b4eac52641afaf7695b597c3dc002b79c9c5b')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2018-04-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, April 27, 2018 @ 08:03:30
  Author: svenstaro
Revision: 318269

upgpkg: python-flask 1.0-1

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-27 07:36:42 UTC (rev 318268)
+++ PKGBUILD2018-04-27 08:03:30 UTC (rev 318269)
@@ -6,15 +6,15 @@
 
 pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
-pkgver=0.12.2
-pkgrel=4
+pkgver=1.0
+pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://github.com/pallets/flask/archive/0.12.2.tar.gz";)
-sha512sums=('5007129eed63902a39c6652f0868348629f3f6e09d38a764a6ed0e77f6e87f0a28068cfeee6ecb2dee92ccee771d57f42ba816f856e49f08b8c1dfe6bde9873c')
+source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
+sha512sums=('6841aecf973e6601efb616f05979728d50566c8351df78b5961b95a771dc498211604a51c8d36dbd2b9b27a07ef0abf7cd6203e93d95632262a916c4c8d68acf')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2018-03-15 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 16, 2018 @ 05:57:13
  Author: svenstaro
Revision: 308762

Fix formatting

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-16 05:47:54 UTC (rev 308761)
+++ PKGBUILD2018-03-16 05:57:13 UTC (rev 308762)
@@ -23,7 +23,6 @@
 
 buildk() {
   cd "$srcdir/python-flask-$pkgver"
-
   python setup.py build
 
   cd "$srcdir/python2-flask-$pkgver"


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

2018-03-15 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 16, 2018 @ 05:47:54
  Author: svenstaro
Revision: 308761

Add pkgbase

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-16 05:44:17 UTC (rev 308760)
+++ PKGBUILD2018-03-16 05:47:54 UTC (rev 308761)
@@ -4,6 +4,7 @@
 # Contributor: Thomas Dziedzic < gostrc at gmail >
 # Contributor: Tarmo Heiskanen 
 
+pkgbase=python-flask
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.12.2
 pkgrel=4


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

2018-03-15 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 16, 2018 @ 05:44:13
  Author: svenstaro
Revision: 308759

upgpkg: python-flask 0.12.2-4

Fix split package

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |   21 +
 1 file changed, 9 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-16 05:41:30 UTC (rev 308758)
+++ PKGBUILD2018-03-16 05:44:13 UTC (rev 308759)
@@ -6,7 +6,7 @@
 
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.12.2
-pkgrel=3
+pkgrel=4
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
@@ -20,29 +20,26 @@
   cp -r "flask-$pkgver" "python2-flask-$pkgver"
 }
 
-build_python-flask() {
-  cd "$pkgname-$pkgver"
+buildk() {
+  cd "$srcdir/python-flask-$pkgver"
 
   python setup.py build
-}
 
-build_python2-flask() {
-  cd "$pkgname-$pkgver"
-
+  cd "$srcdir/python2-flask-$pkgver"
   python setup.py build
 }
 
-check_python-flask() {
-  cd "$pkgname-$pkgver"
+check() {
+  cd "$srcdir/python-flask-$pkgver"
   python setup.py test
 
-  cd "$pkgname-$pkgver"
+  cd "$srcdir/python2-flask-$pkgver"
   python2 setup.py test
 }
 
 package_python-flask() {
   depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous' 
'python-click')
-  cd "$pkgname-$pkgver"
+  cd "$srcdir/python-flask-$pkgver"
 
   python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
@@ -50,7 +47,7 @@
 
 package_python2-flask() {
   depends=('python2-werkzeug' 'python2-jinja' 'python2-itsdangerous' 
'python2-click')
-  cd "$pkgname-$pkgver"
+  cd "$srcdir/python2-flask-$pkgver"
 
   python2 setup.py install --root="$pkgdir" --optimize=1
   mv "$pkgdir"/usr/bin/flask "$pkgdir"/usr/bin/flask2


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

2017-09-20 Thread Sven-Hendrik Haase
Date: Wednesday, September 20, 2017 @ 15:12:48
  Author: svenstaro
Revision: 258906

upgpkg: python-flask 0.12.2-3

rebuild

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-20 14:45:57 UTC (rev 258905)
+++ PKGBUILD2017-09-20 15:12:48 UTC (rev 258906)
@@ -6,13 +6,13 @@
 
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.12.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
+source=("https://github.com/pallets/flask/archive/0.12.2.tar.gz";)
 
sha512sums=('5007129eed63902a39c6652f0868348629f3f6e09d38a764a6ed0e77f6e87f0a28068cfeee6ecb2dee92ccee771d57f42ba816f856e49f08b8c1dfe6bde9873c')
 
 prepare() {


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

2017-07-13 Thread Sven-Hendrik Haase
Date: Thursday, July 13, 2017 @ 15:39:06
  Author: svenstaro
Revision: 244979

Use sha512sums

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-13 15:37:51 UTC (rev 244978)
+++ PKGBUILD2017-07-13 15:39:06 UTC (rev 244979)
@@ -13,7 +13,7 @@
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha256sums=('ef3f047ab2af83fc1b9658d8953857f63a84a2fcebcf4e77f8252f0f3e7684f2')
+sha512sums=('5007129eed63902a39c6652f0868348629f3f6e09d38a764a6ed0e77f6e87f0a28068cfeee6ecb2dee92ccee771d57f42ba816f856e49f08b8c1dfe6bde9873c')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2017-06-14 Thread Sven-Hendrik Haase
Date: Wednesday, June 14, 2017 @ 17:09:58
  Author: svenstaro
Revision: 236783

upgpkg: python-flask 0.12.2-2

rebuild

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-14 17:05:43 UTC (rev 236782)
+++ PKGBUILD2017-06-14 17:09:58 UTC (rev 236783)
@@ -6,7 +6,7 @@
 
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.12.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')


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

2017-05-22 Thread Sven-Hendrik Haase
Date: Monday, May 22, 2017 @ 23:40:18
  Author: svenstaro
Revision: 229414

upgpkg: python-flask 0.12.2-1

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-22 23:39:03 UTC (rev 229413)
+++ PKGBUILD2017-05-22 23:40:18 UTC (rev 229414)
@@ -5,7 +5,7 @@
 # Contributor: Tarmo Heiskanen 
 
 pkgname=('python-flask' 'python2-flask')
-pkgver=0.12.1
+pkgver=0.12.2
 pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
@@ -13,7 +13,7 @@
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha256sums=('a574437c342439814233bffa47cac4062ff19af2fa7c54b5f686ce89b08bceff')
+sha256sums=('ef3f047ab2af83fc1b9658d8953857f63a84a2fcebcf4e77f8252f0f3e7684f2')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2017-04-03 Thread Sven-Hendrik Haase
Date: Monday, April 3, 2017 @ 12:51:18
  Author: svenstaro
Revision: 220359

upgpkg: python-flask 0.12.1-1

upstream release 0.12.1

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-03 12:27:59 UTC (rev 220358)
+++ PKGBUILD2017-04-03 12:51:18 UTC (rev 220359)
@@ -5,8 +5,8 @@
 # Contributor: Tarmo Heiskanen 
 
 pkgname=('python-flask' 'python2-flask')
-pkgver=0.12
-pkgrel=2
+pkgver=0.12.1
+pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
@@ -13,7 +13,7 @@
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha256sums=('dd4be177eee187c0e459ffc20a223d6ca0accc19fd4a237aeca50d4166d92d54')
+sha256sums=('a574437c342439814233bffa47cac4062ff19af2fa7c54b5f686ce89b08bceff')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 17:33:32
  Author: bpiotrowski
Revision: 201640

Python 3.6 rebuild

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 17:33:06 UTC (rev 201639)
+++ PKGBUILD2016-12-24 17:33:32 UTC (rev 201640)
@@ -6,7 +6,7 @@
 
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.12
-pkgrel=1
+pkgrel=2
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')


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

2016-12-23 Thread Sven-Hendrik Haase
Date: Friday, December 23, 2016 @ 20:19:27
  Author: svenstaro
Revision: 201284

upgpkg: python-flask 0.12-1

upstream release 0.12

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-23 20:17:53 UTC (rev 201283)
+++ PKGBUILD2016-12-23 20:19:27 UTC (rev 201284)
@@ -5,7 +5,7 @@
 # Contributor: Tarmo Heiskanen 
 
 pkgname=('python-flask' 'python2-flask')
-pkgver=0.11.1
+pkgver=0.12
 pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
@@ -13,7 +13,7 @@
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha256sums=('745ac6197a40537df2a24856d957497d577d50f3eab272aff94e9802807c4a82')
+sha256sums=('dd4be177eee187c0e459ffc20a223d6ca0accc19fd4a237aeca50d4166d92d54')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2016-07-26 Thread Sven-Hendrik Haase
Date: Tuesday, July 26, 2016 @ 11:47:48
  Author: svenstaro
Revision: 184288

upgpkg: python-flask 0.11.1-1

upstream release 0.11.1

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-26 10:48:31 UTC (rev 184287)
+++ PKGBUILD2016-07-26 11:47:48 UTC (rev 184288)
@@ -5,8 +5,8 @@
 # Contributor: Tarmo Heiskanen 
 
 pkgname=('python-flask' 'python2-flask')
-pkgver=0.11
-pkgrel=2
+pkgver=0.11.1
+pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
@@ -13,7 +13,7 @@
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
-sha256sums=('c222c4507f8120201767c30189f99092d9f81c10013b7b1888fc838e5d0d3c16')
+sha256sums=('745ac6197a40537df2a24856d957497d577d50f3eab272aff94e9802807c4a82')
 
 prepare() {
   cp -r "flask-$pkgver" "python-flask-$pkgver"


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

2016-05-31 Thread Sven-Hendrik Haase
Date: Tuesday, May 31, 2016 @ 10:43:44
  Author: svenstaro
Revision: 177508

upgpkg: python-flask 0.11-2

Add python-click to deps

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-31 08:41:45 UTC (rev 177507)
+++ PKGBUILD2016-05-31 08:43:44 UTC (rev 177508)
@@ -6,7 +6,7 @@
 
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.11
-pkgrel=1
+pkgrel=2
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
@@ -41,7 +41,7 @@
 }
 
 package_python-flask() {
-  depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous')
+  depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous' 
'python-click')
   cd "$pkgname-$pkgver"
 
   python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
@@ -49,7 +49,7 @@
 }
 
 package_python2-flask() {
-  depends=('python2-werkzeug' 'python2-jinja' 'python2-itsdangerous')
+  depends=('python2-werkzeug' 'python2-jinja' 'python2-itsdangerous' 
'python2-click')
   cd "$pkgname-$pkgver"
 
   python2 setup.py install --root="$pkgdir" --optimize=1


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

2016-05-29 Thread Sven-Hendrik Haase
Date: Monday, May 30, 2016 @ 08:00:02
  Author: svenstaro
Revision: 177453

upgpkg: python-flask 0.11-1

upstream release 0.11

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-30 05:59:57 UTC (rev 177452)
+++ PKGBUILD2016-05-30 06:00:02 UTC (rev 177453)
@@ -5,19 +5,19 @@
 # Contributor: Tarmo Heiskanen 
 
 pkgname=('python-flask' 'python2-flask')
-pkgver=0.10.1
-pkgrel=6
+pkgver=0.11
+pkgrel=1
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
-source=("http://pypi.python.org/packages/source/F/Flask/Flask-$pkgver.tar.gz";)
-sha256sums=('4c83829ff83d408b5e1d4995472265411d2c414112298f2eb4b359d9e4563373')
+source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz";)
+sha256sums=('c222c4507f8120201767c30189f99092d9f81c10013b7b1888fc838e5d0d3c16')
 
 prepare() {
-  cp -r "Flask-$pkgver" "python-flask-$pkgver"
-  cp -r "Flask-$pkgver" "python2-flask-$pkgver"
+  cp -r "flask-$pkgver" "python-flask-$pkgver"
+  cp -r "flask-$pkgver" "python2-flask-$pkgver"
 }
 
 build_python-flask() {
@@ -53,6 +53,7 @@
   cd "$pkgname-$pkgver"
 
   python2 setup.py install --root="$pkgdir" --optimize=1
+  mv "$pkgdir"/usr/bin/flask "$pkgdir"/usr/bin/flask2
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 


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

2015-09-19 Thread Felix Yan
Date: Saturday, September 19, 2015 @ 15:40:08
  Author: fyan
Revision: 140832

upgpkg: python-flask 0.10.1-6

rebuild for python 3.5

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-19 13:40:01 UTC (rev 140831)
+++ PKGBUILD2015-09-19 13:40:08 UTC (rev 140832)
@@ -6,7 +6,7 @@
 
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.10.1
-pkgrel=5
+pkgrel=6
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')


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

2014-03-17 Thread Sven-Hendrik Haase
Date: Tuesday, March 18, 2014 @ 06:45:10
  Author: svenstaro
Revision: 107583

upgpkg: python-flask 0.10.1-5

Python 3.4 rebuild

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-18 05:43:54 UTC (rev 107582)
+++ PKGBUILD2014-03-18 05:45:10 UTC (rev 107583)
@@ -6,7 +6,7 @@
 
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.10.1
-pkgrel=4
+pkgrel=5
 pkgdesc='Micro webdevelopment framework for Python'
 url='http://flask.pocoo.org/'
 arch=('any')



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

2013-08-27 Thread Alexander Rødseth
Date: Tuesday, August 27, 2013 @ 14:07:59
  Author: arodseth
Revision: 96396

Fixed the check() function

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-27 12:07:24 UTC (rev 96395)
+++ PKGBUILD2013-08-27 12:07:59 UTC (rev 96396)
@@ -34,13 +34,9 @@
 
 check_python-flask() {
   cd "$pkgname-$pkgver"
-
   python setup.py test
-}
 
-check_python2-flask() {
   cd "$pkgname-$pkgver"
-
   python2 setup.py test
 }
 



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

2013-08-27 Thread Alexander Rødseth
Date: Tuesday, August 27, 2013 @ 13:35:17
  Author: arodseth
Revision: 96392

Minor changes

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-27 11:33:39 UTC (rev 96391)
+++ PKGBUILD2013-08-27 11:35:17 UTC (rev 96392)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Sven-Hendrik Haase 
+# Contributor: Alexander Rødseth 
 # Contributor: Thomas Dziedzic < gostrc at gmail >
 # Contributor: Tarmo Heiskanen 
-# Contributor: Alexander Rødseth 
 
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.10.1



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

2013-08-27 Thread Alexander Rødseth
Date: Tuesday, August 27, 2013 @ 13:28:08
  Author: arodseth
Revision: 96387

Minor changes

Modified:
  python-flask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-27 11:27:31 UTC (rev 96386)
+++ PKGBUILD2013-08-27 11:28:08 UTC (rev 96387)
@@ -2,6 +2,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Thomas Dziedzic < gostrc at gmail >
 # Contributor: Tarmo Heiskanen 
+# Contributor: Alexander Rødseth 
 
 pkgname=('python-flask' 'python2-flask')
 pkgver=0.10.1



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

2013-08-27 Thread Alexander Rødseth
Date: Tuesday, August 27, 2013 @ 13:27:31
  Author: arodseth
Revision: 96386

Minor changes

Modified:
  python-flask/trunk/PKGBUILD

--+
 PKGBUILD |   17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-27 11:24:51 UTC (rev 96385)
+++ PKGBUILD2013-08-27 11:27:31 UTC (rev 96386)
@@ -14,26 +14,31 @@
 source=("http://pypi.python.org/packages/source/F/Flask/Flask-$pkgver.tar.gz";)
 sha256sums=('4c83829ff83d408b5e1d4995472265411d2c414112298f2eb4b359d9e4563373')
 
+prepare() {
+  cp -r "Flask-$pkgver" "python-flask-$pkgver"
+  cp -r "Flask-$pkgver" "python2-flask-$pkgver"
+}
+
 build_python-flask() {
-  cd "Flask-$pkgver"
+  cd "$pkgname-$pkgver"
 
   python setup.py build
 }
 
 build_python2-flask() {
-  cd "Flask-$pkgver"
+  cd "$pkgname-$pkgver"
 
   python setup.py build
 }
 
 check_python-flask() {
-  cd "Flask-$pkgver"
+  cd "$pkgname-$pkgver"
 
   python setup.py test
 }
 
 check_python2-flask() {
-  cd "Flask-$pkgver"
+  cd "$pkgname-$pkgver"
 
   python2 setup.py test
 }
@@ -40,7 +45,7 @@
 
 package_python-flask() {
   depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous')
-  cd "Flask-$pkgver"
+  cd "$pkgname-$pkgver"
 
   python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
@@ -48,7 +53,7 @@
 
 package_python2-flask() {
   depends=('python2-werkzeug' 'python2-jinja' 'python2-itsdangerous')
-  cd "Flask-$pkgver"
+  cd "$pkgname-$pkgver"
 
   python2 setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"



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

2013-08-27 Thread Alexander Rødseth
Date: Tuesday, August 27, 2013 @ 12:59:19
  Author: arodseth
Revision: 96379

set id

Modified:
  python-flask/trunk/PKGBUILD   (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-27 10:58:25 UTC (rev 96378)
+++ PKGBUILD2013-08-27 10:59:19 UTC (rev 96379)
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 96374 2013-08-27 08:11:47Z svenstaro $
+# $Id$
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Thomas Dziedzic < gostrc at gmail >
 # Contributor: Tarmo Heiskanen 


Property changes on: python-flask/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property