From owner-svn-ports-all@freebsd.org Tue Oct 18 21:19:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6834CC1795F; Tue, 18 Oct 2016 21:19:04 +0000 (UTC) (envelope-from feld@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 mx1.freebsd.org (Postfix) with ESMTPS id 3FCB5CF2; Tue, 18 Oct 2016 21:19:04 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9ILJ3PH087207; Tue, 18 Oct 2016 21:19:03 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9ILJ2bW087203; Tue, 18 Oct 2016 21:19:02 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201610182119.u9ILJ2bW087203@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 18 Oct 2016 21:19:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424219 - in head/devel: . py-chainmap X-SVN-Group: ports-head 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.23 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: Tue, 18 Oct 2016 21:19:04 -0000 Author: feld Date: Tue Oct 18 21:19:02 2016 New Revision: 424219 URL: https://svnweb.freebsd.org/changeset/ports/424219 Log: This module is a polyfill, implementing ChainMap for reasonably-recent versions of Python that do not have collections.ChainMap--namely, Python 2.6, Python 3.2, and PyPy3 releases based on Python 3.2. (It will also work as expected on Python 2.7, PyPy, and Python 3.3 and higher, but it is not needed there since those verions' collections modules contains a ChainMap implementation.) The code for this package is closely derived from the Python 3.5 source code at hg.python.org, (especially the collections and reprlib modules). Several changes have been made to ensure Python 2.6 compatibility, and tests and packaging have been added. WWW: https://bitbucket.org/jeunice/chainmap PR: 213322 Submitted by: Kyle Evans Added: head/devel/py-chainmap/ head/devel/py-chainmap/Makefile (contents, props changed) head/devel/py-chainmap/distinfo (contents, props changed) head/devel/py-chainmap/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 18 21:16:08 2016 (r424218) +++ head/devel/Makefile Tue Oct 18 21:19:02 2016 (r424219) @@ -4046,6 +4046,7 @@ SUBDIR += py-celery SUBDIR += py-cffi SUBDIR += py-cfgparse + SUBDIR += py-chainmap SUBDIR += py-characteristic SUBDIR += py-check-manifest SUBDIR += py-cheetah Added: head/devel/py-chainmap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-chainmap/Makefile Tue Oct 18 21:19:02 2016 (r424219) @@ -0,0 +1,20 @@ +# Created by: Kyle Evans +# $FreeBSD$ + +PORTNAME= chainmap +PORTVERSION= 1.0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bsdports@kyle-evans.net +COMMENT= Backport/clone of chainmap for py26, py32, and pypy3 + +LICENSE= PSFL + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/devel/py-chainmap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-chainmap/distinfo Tue Oct 18 21:19:02 2016 (r424219) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475906299 +SHA256 (chainmap-1.0.2.tar.gz) = 405da3bce9913bfb33e6e497803b447b60d12ab44031ca357626143e087e0526 +SIZE (chainmap-1.0.2.tar.gz) = 6383 Added: head/devel/py-chainmap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-chainmap/pkg-descr Tue Oct 18 21:19:02 2016 (r424219) @@ -0,0 +1,12 @@ +This module is a polyfill, implementing ChainMap for reasonably-recent versions +of Python that do not have collections.ChainMap--namely, Python 2.6, Python 3.2, +and PyPy3 releases based on Python 3.2. (It will also work as expected on Python +2.7, PyPy, and Python 3.3 and higher, but it is not needed there since those +verions' collections modules contains a ChainMap implementation.) + +The code for this package is closely derived from the Python 3.5 source code at +hg.python.org, (especially the collections and reprlib modules). Several changes +have been made to ensure Python 2.6 compatibility, and tests and packaging have +been added. + +WWW: https://bitbucket.org/jeunice/chainmap