Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Jan 2019 22:45:26 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r489396 - in head/devel: . py-orderedmultidict
Message-ID:  <201901052245.x05MjQmg067355@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Jan  5 22:45:26 2019
New Revision: 489396
URL: https://svnweb.freebsd.org/changeset/ports/489396

Log:
  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

Added:
  head/devel/py-orderedmultidict/
  head/devel/py-orderedmultidict/Makefile   (contents, props changed)
  head/devel/py-orderedmultidict/distinfo   (contents, props changed)
  head/devel/py-orderedmultidict/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jan  5 22:45:20 2019	(r489395)
+++ head/devel/Makefile	Sat Jan  5 22:45:26 2019	(r489396)
@@ -4751,6 +4751,7 @@
     SUBDIR += py-orbit
     SUBDIR += py-ordered-set
     SUBDIR += py-ordereddict
+    SUBDIR += py-orderedmultidict
     SUBDIR += py-os-brick
     SUBDIR += py-os-client-config
     SUBDIR += py-os-service-types

Added: head/devel/py-orderedmultidict/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-orderedmultidict/Makefile	Sat Jan  5 22:45:26 2019	(r489396)
@@ -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>

Added: head/devel/py-orderedmultidict/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-orderedmultidict/distinfo	Sat Jan  5 22:45:26 2019	(r489396)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1546702506
+SHA256 (orderedmultidict-1.0.tar.gz) = b89895ba6438038d0bdf88020ceff876cf3eae0d5c66a69b526fab31125db2c5
+SIZE (orderedmultidict-1.0.tar.gz) = 19740

Added: head/devel/py-orderedmultidict/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-orderedmultidict/pkg-descr	Sat Jan  5 22:45:26 2019	(r489396)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901052245.x05MjQmg067355>