1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00

Add py-orderedmultidict 1.0

A multivalue dictionary is a dictionary that can store multiple values per key.
An ordered multivalue dictionary is a multivalue dictionary that retains the
order of insertions and deletions.

WWW: https://github.com/gruns/orderedmultidict
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-01-05 22:45:26 +00:00
parent 47eafd6719
commit bcf69b043c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=489396
4 changed files with 32 additions and 0 deletions

View File

@ -4751,6 +4751,7 @@
SUBDIR += py-orbit SUBDIR += py-orbit
SUBDIR += py-ordered-set SUBDIR += py-ordered-set
SUBDIR += py-ordereddict SUBDIR += py-ordereddict
SUBDIR += py-orderedmultidict
SUBDIR += py-os-brick SUBDIR += py-os-brick
SUBDIR += py-os-client-config SUBDIR += py-os-client-config
SUBDIR += py-os-service-types SUBDIR += py-os-service-types

View File

@ -0,0 +1,23 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= orderedmultidict
PORTVERSION= 1.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Ordered multivalue dictionary
LICENSE= UNLICENSE
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8.0:devel/py-six@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1546702506
SHA256 (orderedmultidict-1.0.tar.gz) = b89895ba6438038d0bdf88020ceff876cf3eae0d5c66a69b526fab31125db2c5
SIZE (orderedmultidict-1.0.tar.gz) = 19740

View File

@ -0,0 +1,5 @@
A multivalue dictionary is a dictionary that can store multiple values per key.
An ordered multivalue dictionary is a multivalue dictionary that retains the
order of insertions and deletions.
WWW: https://github.com/gruns/orderedmultidict