1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

- Add a new port: devel/py-ordereddict

Drop-in substitute for Py2.7's new collections.OrderedDict. The
  recipe has big-oh performance that matches regular dictionaries
  (amortized O(1) insertion/deletion/lookup and O(n)
  iteration/repr/copy/equality_testing).

  WWW:	http://pypi.python.org/pypi/ordereddict

Feature safe:	yes
This commit is contained in:
TAKATSU Tomonari 2011-11-23 04:32:53 +00:00
parent 5bfb1a1402
commit 03a8b45cb1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=286283
4 changed files with 36 additions and 0 deletions

View File

@ -3105,6 +3105,7 @@
SUBDIR += py-omniorb
SUBDIR += py-optik
SUBDIR += py-orbit
SUBDIR += py-ordereddict
SUBDIR += py-parsedatetime
SUBDIR += py-parsing
SUBDIR += py-pefile

View File

@ -0,0 +1,27 @@
# New ports collection makefile for: py-ordereddict
# Date created: 2011-11-20
# Whom: TAKATSU Tomonari <tota@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= ordereddict
PORTVERSION= 1.1
CATEGORIES= devel
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= tota@FreeBSD.org
COMMENT= A drop-in substitute for Py2.7's new collections
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_PYTHON= 2.4-2.7 # for graphics/py-blockdiag
USE_PYDISTUTILS= yes
PLIST_FILES= %%PYTHON_SITELIBDIR%%/ordereddict.py \
%%PYTHON_SITELIBDIR%%/ordereddict.pyc \
%%PYTHON_SITELIBDIR%%/ordereddict.pyo
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (ordereddict-1.1.tar.gz) = 1c35b4ac206cef2d24816c89f89cf289dd3d38cf7c449bb3fab7bf6d43f01b1f
SIZE (ordereddict-1.1.tar.gz) = 2114

View File

@ -0,0 +1,6 @@
Drop-in substitute for Py2.7's new collections.OrderedDict. The
recipe has big-oh performance that matches regular dictionaries
(amortized O(1) insertion/deletion/lookup and O(n)
iteration/repr/copy/equality_testing).
WWW: http://pypi.python.org/pypi/ordereddict