diff --git a/devel/py-frozendict/Makefile b/devel/py-frozendict/Makefile index 4b16af5d260f..d74eef74beed 100644 --- a/devel/py-frozendict/Makefile +++ b/devel/py-frozendict/Makefile @@ -1,20 +1,24 @@ # Created by: Brendan Molloy PORTNAME= frozendict -PORTVERSION= 1.2 +PORTVERSION= 2.0.2 +DISTVERSIONPREFIX= v CATEGORIES= devel python -MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Immutable dictionary implementation for Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= python:3.6+ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes +GH_ACCOUNT= Marco-Sulla +GH_PROJECT= python-frozendict +USE_GITHUB= yes + .include diff --git a/devel/py-frozendict/distinfo b/devel/py-frozendict/distinfo index f15cab80e84e..7769ee65f291 100644 --- a/devel/py-frozendict/distinfo +++ b/devel/py-frozendict/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1524259656 -SHA256 (frozendict-1.2.tar.gz) = 774179f22db2ef8a106e9c38d4d1f8503864603db08de2e33be5b778230f6e45 -SIZE (frozendict-1.2.tar.gz) = 2650 +TIMESTAMP = 1620405401 +SHA256 (Marco-Sulla-python-frozendict-v2.0.2_GH0.tar.gz) = f0d8dbbdd44f5a1ceb6254d90cdb13b0035a71186ccd205cc25437898d5bc0ae +SIZE (Marco-Sulla-python-frozendict-v2.0.2_GH0.tar.gz) = 1005681 diff --git a/devel/py-frozendict/pkg-descr b/devel/py-frozendict/pkg-descr index d62c68ee07c5..f9306744e6b5 100644 --- a/devel/py-frozendict/pkg-descr +++ b/devel/py-frozendict/pkg-descr @@ -1,17 +1,17 @@ frozendict is an immutable wrapper around dictionaries that implements the complete mapping interface. It can be used as a drop-in replacement for dictionaries where immutability is desired. Of course, this is python, and you can still poke around the object's internals if you want. The frozendict constructor mimics dict, and all of the expected interfaces (iter, len, repr, hash, getitem) are provided. Note that a frozendict does not guarantee the immutability of its values, so the utility of hash method is restricted by usage. The only difference is that the copy() method of frozendict takes variable keyword arguments, which will be present as key/value pairs in the new, immutable copy. -WWW: https://github.com/slezica/python-frozendict +WWW: https://github.com/Marco-Sulla/python-frozendict