New port: devel/py-ordered-set

An OrderedSet is a custom MutableSet that remembers its order, so that every
entry has an index that can be looked up.

WWW: https://github.com/LuminosoInsight/ordered-set
This commit is contained in:
Antoine Brodin 2016-10-25 20:44:49 +00:00
parent a5b7b04b50
commit 9e1d1976fc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=424654
4 changed files with 27 additions and 0 deletions

View file

@ -4312,6 +4312,7 @@
SUBDIR += py-optik
SUBDIR += py-option_merge
SUBDIR += py-orbit
SUBDIR += py-ordered-set
SUBDIR += py-ordereddict
SUBDIR += py-os-client-config
SUBDIR += py-osc-lib

View file

@ -0,0 +1,19 @@
# Created by: antoine@FreeBSD.org
# $FreeBSD$
PORTNAME= ordered-set
PORTVERSION= 2.0.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= antoine@FreeBSD.org
COMMENT= MutableSet that remembers its order, so that every entry has an index
LICENSE= MIT
NO_ARCH= yes
USES= python
USE_PYTHON= distutils autoplist
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1477213204
SHA256 (ordered-set-2.0.1.tar.gz) = 55567f094481ba204ffede0117ab563e19af050c7cbf33a9a23292b8cb2b0a0e
SIZE (ordered-set-2.0.1.tar.gz) = 3407

View file

@ -0,0 +1,4 @@
An OrderedSet is a custom MutableSet that remembers its order, so that every
entry has an index that can be looked up.
WWW: https://github.com/LuminosoInsight/ordered-set