From owner-svn-ports-head@freebsd.org Fri Aug 2 19:29:09 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9F95AB9659; Fri, 2 Aug 2019 19:29:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 460cfY3qSFz4NWn; Fri, 2 Aug 2019 19:29:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 651D57580; Fri, 2 Aug 2019 19:29:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x72JT91T073666; Fri, 2 Aug 2019 19:29:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x72JT8Gp073663; Fri, 2 Aug 2019 19:29:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201908021929.x72JT8Gp073663@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 2 Aug 2019 19:29:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r507888 - head/devel/py-ruamel.ordereddict X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-ruamel.ordereddict X-SVN-Commit-Revision: 507888 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Aug 2019 19:29:09 -0000 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/