Skip to content

Commit

Permalink
py-sanic: updated to 20.9.1
Browse files Browse the repository at this point in the history
Version 20.9.1

Bugfixes
Fix static route registration on blueprints
Removes duplicate headers in ASGI streaming body
  • Loading branch information
adam committed Oct 27, 2020
1 parent 823dd8b commit 7b21597
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
6 changes: 3 additions & 3 deletions www/py-sanic/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.15 2020/10/01 06:53:12 adam Exp $
# $NetBSD: Makefile,v 1.16 2020/10/27 23:07:42 adam Exp $

DISTNAME= sanic-20.9.0
DISTNAME= sanic-20.9.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/sanic/}
Expand All @@ -13,7 +13,7 @@ LICENSE= mit AND apache-2.0
DEPENDS+= ${PYPKGPREFIX}-aiofiles>=0.3.0:../../devel/py-aiofiles
DEPENDS+= ${PYPKGPREFIX}-httptools>=0.0.10:../../www/py-httptools
DEPENDS+= ${PYPKGPREFIX}-httpx>=0.15.4:../../www/py-httpx
DEPENDS+= ${PYPKGPREFIX}-multidict>=4.0:../../databases/py-multidict
DEPENDS+= ${PYPKGPREFIX}-multidict>=5.0.0:../../databases/py-multidict
DEPENDS+= ${PYPKGPREFIX}-ujson>=1.35:../../textproc/py-ujson
DEPENDS+= ${PYPKGPREFIX}-uvloop>=0.5.3:../../devel/py-uvloop
DEPENDS+= ${PYPKGPREFIX}-websockets>=8.1:../../www/py-websockets
Expand Down
12 changes: 6 additions & 6 deletions www/py-sanic/distinfo
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$NetBSD: distinfo,v 1.12 2020/10/01 06:53:12 adam Exp $
$NetBSD: distinfo,v 1.13 2020/10/27 23:07:42 adam Exp $

SHA1 (sanic-20.9.0.tar.gz) = 34065045f83e4a451b2606cf82a3e23ad4306d8f
RMD160 (sanic-20.9.0.tar.gz) = 63ffe38b0b2006bdfba6e46ecf42eecd06822ffb
SHA512 (sanic-20.9.0.tar.gz) = 4f5ea058f65fa6c5f4ffa00af9f48108801dcfa19d750a0fafd688517eaeca9264d0aa82d6ceb7668abcaf9ba2b1dbeb7ce7339837619597ede322b1d600a588
Size (sanic-20.9.0.tar.gz) = 146608 bytes
SHA1 (patch-setup.py) = 8c749c3f50c63a37fd588ea1107b55eeaef34851
SHA1 (sanic-20.9.1.tar.gz) = 5ef6504b4ceebedbe6fd86b82eb498765420476d
RMD160 (sanic-20.9.1.tar.gz) = 9e300d42d4d7806e331d5ab43ae17b0ab9e0fbcb
SHA512 (sanic-20.9.1.tar.gz) = 3e4ee0fbce0f5369038bfdd83abd9d3d485a915ae3ef91364e03c8e6a46dce2b7e5eba48c0680490bb175873f77454ed6ce584836b60192480cfd29e03ab4a48
Size (sanic-20.9.1.tar.gz) = 147581 bytes
SHA1 (patch-setup.py) = 18d343962a7b0d3a312518fd10181f5dd5653524
10 changes: 6 additions & 4 deletions www/py-sanic/patches/patch-setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
$NetBSD: patch-setup.py,v 1.7 2020/10/01 06:53:12 adam Exp $
$NetBSD: patch-setup.py,v 1.8 2020/10/27 23:07:42 adam Exp $

Allow newer versions.

--- setup.py.orig 2020-09-30 14:40:18.000000000 +0000
--- setup.py.orig 2020-10-25 13:09:05.000000000 +0000
+++ setup.py
@@ -81,7 +81,7 @@ requirements = [
@@ -80,8 +80,8 @@ requirements = [
ujson,
"aiofiles>=0.3.0",
"websockets>=8.1,<9.0",
"multidict>=4.0,<5.0",
- "multidict==5.0.0",
- "httpx==0.15.4",
+ "multidict>=5.0.0",
+ "httpx>=0.15.4",
]

Expand Down

0 comments on commit 7b21597

Please sign in to comment.