From owner-svn-ports-all@freebsd.org Sat Jun 2 23:56:33 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9AC0FD2247; Sat, 2 Jun 2018 23:56:33 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5EC4481998; Sat, 2 Jun 2018 23:56:33 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 23AF616CFA; Sat, 2 Jun 2018 23:56:33 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w52NuWbg078901; Sat, 2 Jun 2018 23:56:32 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w52NuW83078897; Sat, 2 Jun 2018 23:56:32 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806022356.w52NuW83078897@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sat, 2 Jun 2018 23:56:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471434 - in head/devel: . py-munch X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/devel: . py-munch X-SVN-Commit-Revision: 471434 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Jun 2018 23:56:34 -0000 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 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