Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jan 2016 04:48:19 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r405521 - in head/devel: . py-frozendict
Message-ID:  <201601080448.u084mJBe090033@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Fri Jan  8 04:48:19 2016
New Revision: 405521
URL: https://svnweb.freebsd.org/changeset/ports/405521

Log:
  [NEW] devel/py-frozendict: Immutable dictionary implementation for Python
  
  frozendict is an immutable wrapper around dictionaries that implements the
  complete mapping interface. It can be used as a drop-in replacement for
  dictionaries where immutability is desired.
  
  WWW: https://github.com/slezica/python-frozendict
  
  PR:		205914
  Submitted by:	Brendan Molloy <brendan+freebsd@bbqsrc.net>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Jan  8 04:46:37 2016	(r405520)
+++ head/devel/Makefile	Fri Jan  8 04:48:19 2016	(r405521)
@@ -4040,6 +4040,7 @@
     SUBDIR += py-freenas.dispatcher
     SUBDIR += py-freenas.utils
     SUBDIR += py-freezegun
+    SUBDIR += py-frozendict
     SUBDIR += py-fs
     SUBDIR += py-fsm
     SUBDIR += py-fudge

Added: head/devel/py-frozendict/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-frozendict/Makefile	Fri Jan  8 04:48:19 2016	(r405521)
@@ -0,0 +1,21 @@
+# Created by: Brendan Molloy <brendan+freebsd@bbqsrc.net>
+# $FreeBSD$
+
+PORTNAME=	frozendict
+PORTVERSION=	0.5
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	brendan+freebsd@bbqsrc.net
+COMMENT=	Immutable dictionary implementation for Python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-frozendict/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-frozendict/distinfo	Fri Jan  8 04:48:19 2016	(r405521)
@@ -0,0 +1,2 @@
+SHA256 (frozendict-0.5.tar.gz) = 560c424af4913dad5aa1f6933e78837e597c7000dda2e3624a6e37b5a0799354
+SIZE (frozendict-0.5.tar.gz) = 2167

Added: head/devel/py-frozendict/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-frozendict/pkg-descr	Fri Jan  8 04:48:19 2016	(r405521)
@@ -0,0 +1,5 @@
+frozendict is an immutable wrapper around dictionaries that implements the 
+complete mapping interface. It can be used as a drop-in replacement for 
+dictionaries where immutability is desired.
+
+WWW: https://github.com/slezica/python-frozendict



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