diff --git a/devel/py-isodate/Makefile b/devel/py-isodate/Makefile index f86000d68431..94da424410bc 100644 --- a/devel/py-isodate/Makefile +++ b/devel/py-isodate/Makefile @@ -1,20 +1,21 @@ # Created by: Sunpoet Po-Chuan Hsieh PORTNAME= isodate -PORTVERSION= 0.6.0 +PORTVERSION= 0.6.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= ISO 8601 date/time/duration parser and formater LICENSE= BSD3CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} -NO_ARCH= yes -USE_PYTHON= autoplist concurrent distutils USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes .include diff --git a/devel/py-isodate/distinfo b/devel/py-isodate/distinfo index 939fd0c9b296..3867588b88c6 100644 --- a/devel/py-isodate/distinfo +++ b/devel/py-isodate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1507976827 -SHA256 (isodate-0.6.0.tar.gz) = 2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8 -SIZE (isodate-0.6.0.tar.gz) = 28480 +TIMESTAMP = 1641045928 +SHA256 (isodate-0.6.1.tar.gz) = 48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9 +SIZE (isodate-0.6.1.tar.gz) = 28443 diff --git a/devel/py-isodate/pkg-descr b/devel/py-isodate/pkg-descr index 2a4e6e5ea862..abc4770c90b5 100644 --- a/devel/py-isodate/pkg-descr +++ b/devel/py-isodate/pkg-descr @@ -1,19 +1,19 @@ This module implements ISO 8601 date, time and duration parsing. The implementation follows ISO8601:2004 standard, and implements only date/time representations mentioned in the standard. If something is not mentioned there, then it is treated as non existent, and not as an allowed option. For instance, ISO8601:2004 never mentions 2 digit years. So, it is not intended by this module to support 2 digit years. (while it may still be valid as ISO date, because it is not explicitly forbidden.) Another example is, when no time zone information is given for a time, then it should be interpreted as local time, and not UTC. As this module maps ISO 8601 dates/times to standard Python data types, like date, time, datetime and timedelta, it is not possible to convert all possible ISO 8601 dates/times. For instance, dates before 0001-01-01 are not allowed by the Python date and datetime classes. Additionally fractional seconds are limited to microseconds. That means if the parser finds for instance nanoseconds it will round it to microseconds. -WWW: https://pypi.org/project/isodate/ +WWW: https://github.com/gweis/isodate