diff --git a/devel/py-recordclass/Makefile b/devel/py-recordclass/Makefile index b9c5a7a01cc0..7728a6f6245d 100644 --- a/devel/py-recordclass/Makefile +++ b/devel/py-recordclass/Makefile @@ -1,23 +1,23 @@ PORTNAME= recordclass -PORTVERSION= 0.18.0.1 +PORTVERSION= 0.18.1.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= thierry@FreeBSD.org COMMENT= Mutable variants of tuple and collections.namedtuple WWW= https://pypi.org/project/recordclass/ LICENSE= MIT USES= python:3.9+ USE_PYTHON= cython distutils .if ! defined(WITH_DEBUG) LDFLAGS+= -s .endif do-test: install (cd ${WRKSRC} && ${PYTHON_CMD} ./test_all.py) .include diff --git a/devel/py-recordclass/distinfo b/devel/py-recordclass/distinfo index 66aaf2e581c9..4c98d915a50e 100644 --- a/devel/py-recordclass/distinfo +++ b/devel/py-recordclass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667732673 -SHA256 (recordclass-0.18.0.1.tar.gz) = f0767a6dc5b38118074ec5afd7596dd04a6cc992894f40eecdf4b587315ce465 -SIZE (recordclass-0.18.0.1.tar.gz) = 1274061 +TIMESTAMP = 1672865461 +SHA256 (recordclass-0.18.1.1.tar.gz) = b0ad89f013798d71e8e480c69b4b59d07f10626c7f7ca33b77cfcca326d1f19f +SIZE (recordclass-0.18.1.1.tar.gz) = 1275947 diff --git a/devel/py-recordclass/pkg-descr b/devel/py-recordclass/pkg-descr index f495a01e6c02..e0c812fda896 100644 --- a/devel/py-recordclass/pkg-descr +++ b/devel/py-recordclass/pkg-descr @@ -1,8 +1,8 @@ -Recordclass is MIT Licensed python library. It was started as a "proof of +Recordclass is a MIT Licensed python library. It was started as a "proof of concept" for the problem of fast "mutable" alternative of namedtuple. It implements a factory function recordclass (a variant of collection.namedtuple) in order to create record-like classes with the same API as collection.namedtuple. It was evolved further in order to provide more memory saving, fast and flexible types. See also: https://bitbucket.org/intellimath/recordclass/