Received: by mail.netbsd.org (Postfix, from userid 605) id 3CD7684FD1; Thu, 8 Jul 2021 08:36:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 730D484FCE for ; Thu, 8 Jul 2021 08:36:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 8cW0vJqcoxNe for ; Thu, 8 Jul 2021 08:36:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CF61584FCC for ; Thu, 8 Jul 2021 08:36:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C6FBFFA95; Thu, 8 Jul 2021 08:36:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1625733386241620" MIME-Version: 1.0 Date: Thu, 8 Jul 2021 08:36:26 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-httpcore To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210708083626.C6FBFFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1625733386241620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Jul 8 08:36:26 UTC 2021 Modified Files: pkgsrc/www/py-httpcore: Makefile distinfo Log Message: py-httpcore: updated to 0.13.6 0.13.6 Fixed - Close sockets when read or write timeouts occur. 0.13.5 Fixed - Resolved niggles with AnyIO EOF behaviours. 0.13.4 Added - Improved error messaging when URL scheme is missing, or a non HTTP(S) scheme is used. Fixed - Switched to `anyio` as the default backend implementation when running with `asyncio`. Resolves some awkward [TLS timeout issues](https://github.com/encode/httpx/discussions/1511). To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/py-httpcore/Makefile \ pkgsrc/www/py-httpcore/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1625733386241620 Content-Disposition: inline Content-Length: 2197 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-httpcore/Makefile diff -u pkgsrc/www/py-httpcore/Makefile:1.6 pkgsrc/www/py-httpcore/Makefile:1.7 --- pkgsrc/www/py-httpcore/Makefile:1.6 Sat May 8 08:56:56 2021 +++ pkgsrc/www/py-httpcore/Makefile Thu Jul 8 08:36:26 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2021/05/08 08:56:56 adam Exp $ +# $NetBSD: Makefile,v 1.7 2021/07/08 08:36:26 adam Exp $ -DISTNAME= httpcore-0.13.3 +DISTNAME= httpcore-0.13.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=h/httpcore/} @@ -10,13 +10,14 @@ HOMEPAGE= https://github.com/encode/http COMMENT= Minimal low-level HTTP client LICENSE= modified-bsd +DEPENDS+= ${PYPKGPREFIX}-anyio>=3.0.0:../../devel/py-anyio DEPENDS+= ${PYPKGPREFIX}-h11>=0.8.0:../../www/py-h11 DEPENDS+= ${PYPKGPREFIX}-h2>=3.0:../../www/py-h2 DEPENDS+= ${PYPKGPREFIX}-sniffio>=1.0.0:../../misc/py-sniffio USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 +PYTHON_VERSIONS_INCOMPATIBLE= 27 36 # py-anyio, py-uvloop .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-httpcore/distinfo diff -u pkgsrc/www/py-httpcore/distinfo:1.6 pkgsrc/www/py-httpcore/distinfo:1.7 --- pkgsrc/www/py-httpcore/distinfo:1.6 Sat May 8 08:56:56 2021 +++ pkgsrc/www/py-httpcore/distinfo Thu Jul 8 08:36:26 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.6 2021/05/08 08:56:56 adam Exp $ +$NetBSD: distinfo,v 1.7 2021/07/08 08:36:26 adam Exp $ -SHA1 (httpcore-0.13.3.tar.gz) = 0510e32659e912e185f715661c9afc4e490f213e -RMD160 (httpcore-0.13.3.tar.gz) = 82bf6bb7e4cda1b71534b301c25ad49975ed1c42 -SHA512 (httpcore-0.13.3.tar.gz) = b7177ef4e49f911ee225898235af94ea955263edf50b63778303a5a8f80448b4480899acf198c208b8bee07a7d236f06fd90f8f720b1a97651a3d706b4b4c073 -Size (httpcore-0.13.3.tar.gz) = 45292 bytes +SHA1 (httpcore-0.13.6.tar.gz) = ed0679b5ac825efa4537fb8c5d6f0febbe957514 +RMD160 (httpcore-0.13.6.tar.gz) = 092669215f3610e0739643b9e2d5b34caad144e1 +SHA512 (httpcore-0.13.6.tar.gz) = aa5841a7f414be11365eb7851781460ed213104b0cadd916649610e36c9cf8d86297588dfa8d529a12e8abfaaaad901af63557bfa2e8f031cf85fed58d80cb87 +Size (httpcore-0.13.6.tar.gz) = 45278 bytes --_----------=_1625733386241620--