Received: by mail.netbsd.org (Postfix, from userid 605) id 5644C84CF7; Sun, 20 Nov 2022 23:19:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8638984CEE for ; Sun, 20 Nov 2022 23:19:21 +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 Icb2fDhYqigN for ; Sun, 20 Nov 2022 23:19:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D5C8684CE3 for ; Sun, 20 Nov 2022 23:19:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CECCEFA90; Sun, 20 Nov 2022 23:19:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1668986360162180" MIME-Version: 1.0 Date: Sun, 20 Nov 2022 23:19:20 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-requests To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221120231920.CECCEFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1668986360162180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Nov 20 23:19:20 UTC 2022 Modified Files: pkgsrc/devel/py-requests: Makefile Log Message: py-requests: add py-chardet as a dependency to fix a problem with charset-normalizer>=3 not being supported To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56 pkgsrc/devel/py-requests/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1668986360162180 Content-Disposition: inline Content-Length: 1000 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-requests/Makefile diff -u pkgsrc/devel/py-requests/Makefile:1.55 pkgsrc/devel/py-requests/Makefile:1.56 --- pkgsrc/devel/py-requests/Makefile:1.55 Sun Jul 10 20:09:56 2022 +++ pkgsrc/devel/py-requests/Makefile Sun Nov 20 23:19:20 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2022/07/10 20:09:56 wiz Exp $ +# $NetBSD: Makefile,v 1.56 2022/11/20 23:19:20 adam Exp $ DISTNAME= requests-2.28.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -12,6 +12,8 @@ LICENSE= apache-2.0 DEPENDS+= ${PYPKGPREFIX}-cryptography-[0-9]*:../../security/py-cryptography DEPENDS+= ${PYPKGPREFIX}-certifi>=2017.4.17:../../security/py-certifi +# TODO: remove chardet once charset-normalizer>=3 is supported +DEPENDS+= ${PYPKGPREFIX}-chardet>=3.0.2:../../converters/py-chardet DEPENDS+= ${PYPKGPREFIX}-charset-normalizer>=2:../../converters/py-charset-normalizer DEPENDS+= ${PYPKGPREFIX}-idna>=2.5:../../www/py-idna DEPENDS+= ${PYPKGPREFIX}-urllib3>=1.21.1:../../www/py-urllib3 --_----------=_1668986360162180--