Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Sep 2020 09:10:06 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r548190 - in head/www/py-httpcore: . files
Message-ID:  <202009100910.08A9A6SB015397@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu Sep 10 09:10:05 2020
New Revision: 548190
URL: https://svnweb.freebsd.org/changeset/ports/548190

Log:
  Update RUN_DEPENDS: allow py-h11 0.10.0
  
  It fixes the breakage after r548107.
  
  Obtained from:	https://github.com/encode/uvicorn/commit/54d729ccc1638180a51e6ab600c4724e6424b048

Added:
  head/www/py-httpcore/files/
  head/www/py-httpcore/files/patch-setup.py   (contents, props changed)
Modified:
  head/www/py-httpcore/Makefile

Modified: head/www/py-httpcore/Makefile
==============================================================================
--- head/www/py-httpcore/Makefile	Thu Sep 10 09:05:07 2020	(r548189)
+++ head/www/py-httpcore/Makefile	Thu Sep 10 09:10:05 2020	(r548190)
@@ -13,7 +13,7 @@ COMMENT=	Minimal low-level HTTP client
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE.md
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}h11>=0.8<0.10:net/py-h11@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}h11>=0.8<0.11:net/py-h11@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}sniffio>=1.0<2:devel/py-sniffio@${PY_FLAVOR}
 
 USES=		python:3.6+

Added: head/www/py-httpcore/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-httpcore/files/patch-setup.py	Thu Sep 10 09:10:05 2020	(r548190)
@@ -0,0 +1,11 @@
+--- setup.py.orig	2020-08-20 09:34:45 UTC
++++ setup.py
+@@ -53,7 +53,7 @@ setup(
+     packages=get_packages("httpcore"),
+     include_package_data=True,
+     zip_safe=False,
+-    install_requires=["h11>=0.8,<0.10", "sniffio==1.*"],
++    install_requires=["h11>=0.8,<0.11", "sniffio==1.*"],
+     extras_require={
+         "http2": ["h2==3.*"],
+     },



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009100910.08A9A6SB015397>