diff options
author | Justin Berthault <justin.berthault@zaclys.net> | 2020-04-26 11:59:15 +0200 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2020-04-26 17:08:07 +0000 |
commit | 173bf56df05ab81030ed6103c4ab0ce66541924d (patch) | |
tree | 65ef0515dd9207f4df9313d9ba4e1a891769d50f /community/py3-flask | |
parent | 4c2bb15413c0b37bd88e285164706147092bd570 (diff) | |
download | aports-173bf56df05ab81030ed6103c4ab0ce66541924d.tar.bz2 aports-173bf56df05ab81030ed6103c4ab0ce66541924d.tar.xz |
community/py3-flask: upgrade to 1.1.2
Diffstat (limited to 'community/py3-flask')
-rw-r--r-- | community/py3-flask/APKBUILD | 9 | ||||
-rw-r--r-- | community/py3-flask/skip-bad-request-test.patch | 15 |
2 files changed, 3 insertions, 21 deletions
diff --git a/community/py3-flask/APKBUILD b/community/py3-flask/APKBUILD index 9bf6ee1bef..d03d770a11 100644 --- a/community/py3-flask/APKBUILD +++ b/community/py3-flask/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Drew DeVault <sir@cmpwn.com> pkgname=py3-flask _pkgname=Flask -pkgver=1.0.4 +pkgver=1.1.2 pkgrel=0 pkgdesc="A web development microframework" url="http://flask.pocoo.org/" @@ -11,9 +11,7 @@ license="MIT" depends="python3 py3-click py3-itsdangerous py3-jinja2 py3-werkzeug" makedepends="py3-setuptools" checkdepends="py3-pytest" -source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz - skip-bad-request-test.patch - " +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" replaces="py-flask" # Backwards compatibility @@ -31,5 +29,4 @@ package() { python3 setup.py install --prefix=/usr --root="$pkgdir" } -sha512sums="2ed45ebdef80fe354a0a221f991560e17c442550f667fb76dd9c9631428fe8b6686127504f4ee81fcc6748f99cd376bed7a1ff4e0a9ae913cd70c9f5f4ac1c61 Flask-1.0.4.tar.gz -d188d053168d3680f7be0fce58bb72b58baf0f21dad58bf58ae4bfad293d8fd6a18858e7e7f5d019cc36148c6dbf941c1c4adf85daa2674ca40b6fa0daa2e0da skip-bad-request-test.patch" +sha512sums="9feb6a9a8f34fadbea508d465f73c24b1d81b3f66243804dc3904d198c2fd78e2e1bef94df6a4940a7eec6b9b54abea06557a87de8b27b0a9497d18b3e071384 Flask-1.1.2.tar.gz" diff --git a/community/py3-flask/skip-bad-request-test.patch b/community/py3-flask/skip-bad-request-test.patch deleted file mode 100644 index ecca4dcfcf..0000000000 --- a/community/py3-flask/skip-bad-request-test.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/tests/test_helpers.py b/tests/test_helpers.py -index 75c8105..af79f4e 100644 ---- a/tests/test_helpers.py -+++ b/tests/test_helpers.py -@@ -714,8 +714,8 @@ class TestSendfile(object): - app.root_path = os.path.join(os.path.dirname(__file__), - 'test_apps', 'subdomaintestmodule') - -- with pytest.raises(BadRequest): -- flask.send_from_directory('static', 'bad\x00') -+# with pytest.raises(BadRequest): -+# flask.send_from_directory('static', 'bad\x00') - - - class TestUrlFor(object): |