mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
03a8b45cb1
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
28 lines
627 B
Makefile
28 lines
627 B
Makefile
# 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>
|