Date: Fri, 2 Aug 2019 19:29:08 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r507888 - head/devel/py-ruamel.ordereddict Message-ID: <201908021929.x72JT8Gp073663@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Fri Aug 2 19:29:08 2019 New Revision: 507888 URL: https://svnweb.freebsd.org/changeset/ports/507888 Log: Update to 0.4.14 - Add LICENSE_FILE - Update pkg-descr - Take maintainership Changes: https://bitbucket.org/ruamel/ordereddict/commits/branch/default Modified: head/devel/py-ruamel.ordereddict/Makefile head/devel/py-ruamel.ordereddict/distinfo head/devel/py-ruamel.ordereddict/pkg-descr (contents, props changed) Modified: head/devel/py-ruamel.ordereddict/Makefile ============================================================================== --- head/devel/py-ruamel.ordereddict/Makefile Fri Aug 2 19:29:02 2019 (r507887) +++ head/devel/py-ruamel.ordereddict/Makefile Fri Aug 2 19:29:08 2019 (r507888) @@ -2,15 +2,16 @@ # $FreeBSD$ PORTNAME= ruamel.ordereddict -PORTVERSION= 0.4.13 +PORTVERSION= 0.4.14 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Python dict that keeps keys in insertion sorted order LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE USES= python:2.7 USE_PYTHON= autoplist distutils Modified: head/devel/py-ruamel.ordereddict/distinfo ============================================================================== --- head/devel/py-ruamel.ordereddict/distinfo Fri Aug 2 19:29:02 2019 (r507887) +++ head/devel/py-ruamel.ordereddict/distinfo Fri Aug 2 19:29:08 2019 (r507888) @@ -1,3 +1,3 @@ -TIMESTAMP = 1540844706 -SHA256 (ruamel.ordereddict-0.4.13.tar.gz) = bf0a198c8ce5d973c24e5dba12d3abc254996788ca6ad8448eabc6aa710db149 -SIZE (ruamel.ordereddict-0.4.13.tar.gz) = 57711 +TIMESTAMP = 1564757544 +SHA256 (ruamel.ordereddict-0.4.14.tar.gz) = 281051d26eb2b18ef3d920e1e260716a52bd058a6b1a2f324102fc6a15cb8d4a +SIZE (ruamel.ordereddict-0.4.14.tar.gz) = 60892 Modified: head/devel/py-ruamel.ordereddict/pkg-descr ============================================================================== --- head/devel/py-ruamel.ordereddict/pkg-descr Fri Aug 2 19:29:02 2019 (r507887) +++ head/devel/py-ruamel.ordereddict/pkg-descr Fri Aug 2 19:29:08 2019 (r507888) @@ -1,7 +1,15 @@ -This is an implementation of an ordered dictionary with Key Insertion -Order (KIO: updates of values do not affect the position of the key), -Key Value Insertion Order (KVIO, an existing key’s position is removed -and put at the back). The standard library module OrderedDict, -implemented later, implements a subset of ordereddict functionality. +This is an implementation of an ordered dictionary for Python, in C, with Key +Insertion Order (KIO: updates of values do not affect the position of the key), +Key Value Insertion Order (KVIO, an existing key's position is removed and put +at the back). -WWW: https://bitbucket.org/ruamel/ordereddict +Sorted dictionaries are also provided. Currently only with Key Sorted Order +(KSO, no sorting function can be specified, but you can specify a transform to +apply on the key before comparison (e.g. string.lower)). + +The functionality is equivalent to the excellent pure-Python Larosa/Foord +implementation of ordereddict. It is a superset of the collections.OrderedDict +in the standard library (which was added a few years after this ordereddict was +orginally implemented). + +WWW: https://bitbucket.org/ruamel/ordereddict/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908021929.x72JT8Gp073663>