Received: by mail.netbsd.org (Postfix, from userid 605) id 48F4584E90; Sat, 17 Sep 2022 21:26:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7744384E86 for ; Sat, 17 Sep 2022 21:26:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 2TsOuuC307PH for ; Sat, 17 Sep 2022 21:26:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D9E7F84CF8 for ; Sat, 17 Sep 2022 21:26:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CDD93FA90; Sat, 17 Sep 2022 21:26:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166344999120850" MIME-Version: 1.0 Date: Sat, 17 Sep 2022 21:26:31 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/time/py-dateparser To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220917212631.CDD93FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166344999120850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Sep 17 21:26:31 UTC 2022 Modified Files: pkgsrc/time/py-dateparser: Makefile distinfo Added Files: pkgsrc/time/py-dateparser/patches: patch-setup.py Log Message: py-dateparser: unrestrict py-regex dependency Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/time/py-dateparser/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/time/py-dateparser/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/time/py-dateparser/patches/patch-setup.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166344999120850 Content-Disposition: inline Content-Length: 2094 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/time/py-dateparser/Makefile diff -u pkgsrc/time/py-dateparser/Makefile:1.8 pkgsrc/time/py-dateparser/Makefile:1.9 --- pkgsrc/time/py-dateparser/Makefile:1.8 Mon Jul 11 13:31:46 2022 +++ pkgsrc/time/py-dateparser/Makefile Sat Sep 17 21:26:31 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2022/07/11 13:31:46 adam Exp $ +# $NetBSD: Makefile,v 1.9 2022/09/17 21:26:31 wiz Exp $ DISTNAME= dateparser-1.1.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= time python MASTER_SITES= ${MASTER_SITE_PYPI:=d/dateparser/} Index: pkgsrc/time/py-dateparser/distinfo diff -u pkgsrc/time/py-dateparser/distinfo:1.9 pkgsrc/time/py-dateparser/distinfo:1.10 --- pkgsrc/time/py-dateparser/distinfo:1.9 Mon Jul 11 13:31:46 2022 +++ pkgsrc/time/py-dateparser/distinfo Sat Sep 17 21:26:31 2022 @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.9 2022/07/11 13:31:46 adam Exp $ +$NetBSD: distinfo,v 1.10 2022/09/17 21:26:31 wiz Exp $ BLAKE2s (dateparser-1.1.1.tar.gz) = cce4fe48e04f54771b5650092462f6452f1cec6b84d5a09485737a71f4c2127d SHA512 (dateparser-1.1.1.tar.gz) = 2ef25877616ce6e0aaa4ede53b4c27e848a63e5237b6e4095071b1a4eb5e0162e25f0be6a96697a11628753b798c9dfeff5d098889bf409678f51a3f4446d944 Size (dateparser-1.1.1.tar.gz) = 284013 bytes +SHA1 (patch-setup.py) = e23760741deedb40a5647b093132296a5bc9384c Added files: Index: pkgsrc/time/py-dateparser/patches/patch-setup.py diff -u /dev/null pkgsrc/time/py-dateparser/patches/patch-setup.py:1.1 --- /dev/null Sat Sep 17 21:26:31 2022 +++ pkgsrc/time/py-dateparser/patches/patch-setup.py Sat Sep 17 21:26:31 2022 @@ -0,0 +1,15 @@ +$NetBSD: patch-setup.py,v 1.1 2022/09/17 21:26:31 wiz Exp $ + +Unrestrict dependency. + +--- setup.py.orig 2022-03-17 15:42:48.000000000 +0000 ++++ setup.py +@@ -27,7 +27,7 @@ setup( + 'python-dateutil', + 'pytz', + # https://bitbucket.org/mrabarnett/mrab-regex/issues/314/import-error-no-module-named +- 'regex !=2019.02.19,!=2021.8.27,<2022.3.15', ++ 'regex !=2019.02.19,!=2021.8.27', + 'tzlocal', + ], + entry_points={ --_----------=_166344999120850--