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:
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
|
@ -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
|
||||
|
|
19
devel/py-ordered-set/Makefile
Normal file
19
devel/py-ordered-set/Makefile
Normal 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>
|
3
devel/py-ordered-set/distinfo
Normal file
3
devel/py-ordered-set/distinfo
Normal 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
|
4
devel/py-ordered-set/pkg-descr
Normal file
4
devel/py-ordered-set/pkg-descr
Normal 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
|
Loading…
Reference in a new issue