Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Jun 2018 23:56:32 +0000 (UTC)
From:      Wen Heping <wen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r471434 - in head/devel: . py-munch
Message-ID:  <201806022356.w52NuW83078897@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wen
Date: Sat Jun  2 23:56:32 2018
New Revision: 471434
URL: https://svnweb.freebsd.org/changeset/ports/471434

Log:
  munch is a fork of David Schoonover's Bunch package, providing similar
  functionality. 99% of the work was done by him, and the fork was made mainly
  for lack of responsiveness for fixes and maintenance on the original code.
  
  Munch is a dictionary that supports attribute-style access, a la JavaScript.
  
  WWW: https://pypi.python.org/pypi/munch
  
  PR:		228665
  Submitted by:	lbartoletti@tuxfamily.org

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jun  2 23:26:05 2018	(r471433)
+++ head/devel/Makefile	Sat Jun  2 23:56:32 2018	(r471434)
@@ -4690,6 +4690,7 @@
     SUBDIR += py-msgpack
     SUBDIR += py-multi_key_dict
     SUBDIR += py-multipledispatch
+    SUBDIR += py-munch
     SUBDIR += py-mwlib
     SUBDIR += py-mwlib.ext
     SUBDIR += py-mwlib.rl

Added: head/devel/py-munch/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-munch/Makefile	Sat Jun  2 23:56:32 2018	(r471434)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	munch
+PORTVERSION=	2.2.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	lbartoletti@tuxfamily.org
+COMMENT=	Python dict that provides attribute-style access (a la JavaScript)
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-munch/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-munch/distinfo	Sat Jun  2 23:56:32 2018	(r471434)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1527877662
+SHA256 (munch-2.2.0.tar.gz) = 62fb4fb318e965a464b088e6af52a63e0905a50500b770596a939d3855e7aa15
+SIZE (munch-2.2.0.tar.gz) = 7108

Added: head/devel/py-munch/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-munch/pkg-descr	Sat Jun  2 23:56:32 2018	(r471434)
@@ -0,0 +1,7 @@
+munch is a fork of David Schoonover's Bunch package, providing similar 
+functionality. 99% of the work was done by him, and the fork was made mainly 
+for lack of responsiveness for fixes and maintenance on the original code.
+
+Munch is a dictionary that supports attribute-style access, a la JavaScript.
+
+WWW: https://pypi.python.org/pypi/munch



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