1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/devel/py-ordereddict/Makefile
TAKATSU Tomonari 03a8b45cb1 - 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
2011-11-23 04:32:53 +00:00

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>