Index: head/devel/py-pytrie/Makefile =================================================================== --- head/devel/py-pytrie/Makefile (revision 499946) +++ head/devel/py-pytrie/Makefile (revision 499947) @@ -1,20 +1,27 @@ # Created by: Kubilay Kocak # $FreeBSD$ PORTNAME= pytrie -PORTVERSION= 0.2 +PORTVERSION= 0.3.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= PyTrie-${PORTVERSION} MAINTAINER= koobs@FreeBSD.org COMMENT= Pure Python implementation of the trie data structure LICENSE= BSD3CLAUSE -LICENSE_FILE= ${WRKSRC}/LICENSE +#LICENSE_FILE= ${WRKSRC}/LICENSE # Not packaged (yet) in sdist +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sortedcontainers>0:devel/py-sortedcontainers@${PY_FLAVOR} + USES= python USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Index: head/devel/py-pytrie/distinfo =================================================================== --- head/devel/py-pytrie/distinfo (revision 499946) +++ head/devel/py-pytrie/distinfo (revision 499947) @@ -1,2 +1,3 @@ -SHA256 (PyTrie-0.2.tar.gz) = b272021351efadc6757591aac03ed4794bdfd091122204a4673e94bfb66cc500 -SIZE (PyTrie-0.2.tar.gz) = 96378 +TIMESTAMP = 1556169940 +SHA256 (PyTrie-0.3.1.tar.gz) = 3bb7d122a549d8006c9cba2feecac20bceda9f8c0e2a3fa99a5584cfe0dec523 +SIZE (PyTrie-0.3.1.tar.gz) = 94678 Index: head/devel/py-pytrie/pkg-descr =================================================================== --- head/devel/py-pytrie/pkg-descr (revision 499946) +++ head/devel/py-pytrie/pkg-descr (revision 499947) @@ -1,7 +1,7 @@ A trie is an ordered tree data structure that is used to store a mapping where the keys are sequences, usually strings over an alphabet. In addition to implementing the mapping interface, tries allow finding the items for a given prefix, and vice versa, finding the items whose keys are prefixes of a given key. -WWW: https://bitbucket.org/gsakkis/pytrie +WWW: https://github.com/gsakkis/pytrie