Received: by mail.netbsd.org (Postfix, from userid 605) id AD97784DA8; Sat, 23 May 2020 08:22:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3773284D69 for ; Sat, 23 May 2020 08:22:41 +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 rwhLifaiQxJ8 for ; Sat, 23 May 2020 08:22:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A0D3F84D4E for ; Sat, 23 May 2020 08:22:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9A560FB27; Sat, 23 May 2020 08:22:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1590222160269810" MIME-Version: 1.0 Date: Sat, 23 May 2020 08:22:40 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/time To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200523082240.9A560FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1590222160269810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat May 23 08:22:40 UTC 2020 Modified Files: pkgsrc/time: Makefile Added Files: pkgsrc/time/py-ciso8601: DESCR Makefile PLIST distinfo Log Message: py-ciso8601: added version 2.1.3 ciso8601 converts ISO 8601 or RFC 3339 date time strings into Python datetime objects. Since it's written as a C module, it is much faster than other Python libraries. To generate a diff of this commit: cvs rdiff -u -r1.204 -r1.205 pkgsrc/time/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/time/py-ciso8601/DESCR \ pkgsrc/time/py-ciso8601/Makefile pkgsrc/time/py-ciso8601/PLIST \ pkgsrc/time/py-ciso8601/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1590222160269810 Content-Disposition: inline Content-Length: 2881 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/time/Makefile diff -u pkgsrc/time/Makefile:1.204 pkgsrc/time/Makefile:1.205 --- pkgsrc/time/Makefile:1.204 Fri May 22 01:58:50 2020 +++ pkgsrc/time/Makefile Sat May 23 08:22:40 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.204 2020/05/22 01:58:50 markd Exp $ +# $NetBSD: Makefile,v 1.205 2020/05/23 08:22:40 adam Exp $ # COMMENT= Clocks, calendars, daily planners and other time related applications @@ -137,6 +137,7 @@ SUBDIR+= projclock SUBDIR+= projectlibre SUBDIR+= py-aniso8601 SUBDIR+= py-arrow +SUBDIR+= py-ciso8601 SUBDIR+= py-dateparser SUBDIR+= py-dateutil SUBDIR+= py-goocalendar Added files: Index: pkgsrc/time/py-ciso8601/DESCR diff -u /dev/null pkgsrc/time/py-ciso8601/DESCR:1.1 --- /dev/null Sat May 23 08:22:40 2020 +++ pkgsrc/time/py-ciso8601/DESCR Sat May 23 08:22:40 2020 @@ -0,0 +1,3 @@ +ciso8601 converts ISO 8601 or RFC 3339 date time strings into Python datetime +objects. Since it's written as a C module, it is much faster than other Python +libraries. Index: pkgsrc/time/py-ciso8601/Makefile diff -u /dev/null pkgsrc/time/py-ciso8601/Makefile:1.1 --- /dev/null Sat May 23 08:22:40 2020 +++ pkgsrc/time/py-ciso8601/Makefile Sat May 23 08:22:40 2020 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2020/05/23 08:22:40 adam Exp $ + +DISTNAME= ciso8601-2.1.3 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= time python +MASTER_SITES= ${MASTER_SITE_PYPI:=c/ciso8601/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/closeio/ciso8601 +COMMENT= Fast ISO8601 date time parser for Python written in C +LICENSE= mit + +DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/time/py-ciso8601/PLIST diff -u /dev/null pkgsrc/time/py-ciso8601/PLIST:1.1 --- /dev/null Sat May 23 08:22:40 2020 +++ pkgsrc/time/py-ciso8601/PLIST Sat May 23 08:22:40 2020 @@ -0,0 +1,8 @@ +@comment $NetBSD: PLIST,v 1.1 2020/05/23 08:22:40 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/ciso8601.so +${PYSITELIB}/ciso8601/__init__.pyi +${PYSITELIB}/ciso8601/py.typed Index: pkgsrc/time/py-ciso8601/distinfo diff -u /dev/null pkgsrc/time/py-ciso8601/distinfo:1.1 --- /dev/null Sat May 23 08:22:40 2020 +++ pkgsrc/time/py-ciso8601/distinfo Sat May 23 08:22:40 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/05/23 08:22:40 adam Exp $ + +SHA1 (ciso8601-2.1.3.tar.gz) = 8c6b2cdcb5c684aa9b40fd3cd26c270745515424 +RMD160 (ciso8601-2.1.3.tar.gz) = e5c1b0e2455063de2577d955e63ce177e70190e0 +SHA512 (ciso8601-2.1.3.tar.gz) = 9342cf9b2ded1077a2c3906527ae4ac05dfc0e8104f1c85e041d636caa1180df390f01b2d87a33a4c197f4467a25bda1cd0136eb48585b127662cde7d0ffda7e +Size (ciso8601-2.1.3.tar.gz) = 15726 bytes --_----------=_1590222160269810--