Update to 0.4.14

- Add LICENSE_FILE
- Update pkg-descr
- Take maintainership

Changes:	https://bitbucket.org/ruamel/ordereddict/commits/branch/default
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-08-02 19:29:08 +00:00
parent 557f95f355
commit e0518a3604
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=507888
3 changed files with 20 additions and 11 deletions

View file

@ -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

View file

@ -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

View file

@ -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 keys 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/