Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Nov 2016 00:56:02 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r425183 - in head/devel: . py-ruamel.ordereddict
Message-ID:  <201611030056.uA30u2Yb088806@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Thu Nov  3 00:56:02 2016
New Revision: 425183
URL: https://svnweb.freebsd.org/changeset/ports/425183

Log:
  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.
  
  WWW: https://bitbucket.org/ruamel/ordereddict

Added:
  head/devel/py-ruamel.ordereddict/
  head/devel/py-ruamel.ordereddict/Makefile   (contents, props changed)
  head/devel/py-ruamel.ordereddict/distinfo   (contents, props changed)
  head/devel/py-ruamel.ordereddict/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Nov  3 00:51:37 2016	(r425182)
+++ head/devel/Makefile	Thu Nov  3 00:56:02 2016	(r425183)
@@ -4507,6 +4507,7 @@
     SUBDIR += py-roxlib
     SUBDIR += py-rq
     SUBDIR += py-rtree
+    SUBDIR += py-ruamel.ordereddict
     SUBDIR += py-ruamel.yaml
     SUBDIR += py-ruledispatch
     SUBDIR += py-sanetime

Added: head/devel/py-ruamel.ordereddict/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-ruamel.ordereddict/Makefile	Thu Nov  3 00:56:02 2016	(r425183)
@@ -0,0 +1,19 @@
+# Created by: Mark Felder <feld@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	ruamel.ordereddict
+PORTVERSION=	0.4.9
+PORTREVISION=	0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	feld@FreeBSD.org
+COMMENT=	Python dict that keeps keys in insertion sorted order
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-ruamel.ordereddict/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-ruamel.ordereddict/distinfo	Thu Nov  3 00:56:02 2016	(r425183)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1478134420
+SHA256 (ruamel.ordereddict-0.4.9.tar.gz) = 7058c470f131487a3039fb9536dda9dd17004a7581bdeeafa836269a36a2b3f6
+SIZE (ruamel.ordereddict-0.4.9.tar.gz) = 53707

Added: head/devel/py-ruamel.ordereddict/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-ruamel.ordereddict/pkg-descr	Thu Nov  3 00:56:02 2016	(r425183)
@@ -0,0 +1,7 @@
+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.
+
+WWW: https://bitbucket.org/ruamel/ordereddict



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611030056.uA30u2Yb088806>