From owner-svn-ports-head@FreeBSD.ORG Fri Nov 29 20:15:49 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A00F9E57; Fri, 29 Nov 2013 20:15:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F9271D44; Fri, 29 Nov 2013 20:15:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rATKFn43093963; Fri, 29 Nov 2013 20:15:49 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rATKFm5n093959; Fri, 29 Nov 2013 20:15:48 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201311292015.rATKFm5n093959@svn.freebsd.org> From: Juergen Lock Date: Fri, 29 Nov 2013 20:15:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335219 - in head/devel: . py-singledispatch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Nov 2013 20:15:49 -0000 Author: nox Date: Fri Nov 29 20:15:48 2013 New Revision: 335219 URL: http://svnweb.freebsd.org/changeset/ports/335219 Log: Add devel/py-singledispatch: This library brings functools.singledispatch from Python 3.4 to Python 2.6-3.3. PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4 that provides a simple form of generic programming known as single-dispatch generic functions. This library is a backport of this functionality to Python 2.6 - 3.3. WWW: https://pypi.python.org/pypi/singledispatch Added: head/devel/py-singledispatch/ head/devel/py-singledispatch/Makefile (contents, props changed) head/devel/py-singledispatch/distinfo (contents, props changed) head/devel/py-singledispatch/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Nov 29 20:02:05 2013 (r335218) +++ head/devel/Makefile Fri Nov 29 20:15:48 2013 (r335219) @@ -3766,6 +3766,7 @@ SUBDIR += py-simpleparse SUBDIR += py-simpletal SUBDIR += py-simpy + SUBDIR += py-singledispatch SUBDIR += py-sip SUBDIR += py-six SUBDIR += py-smmap Added: head/devel/py-singledispatch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-singledispatch/Makefile Fri Nov 29 20:15:48 2013 (r335219) @@ -0,0 +1,19 @@ +# Created by: Juergen Lock +# $FreeBSD$ + +PORTNAME= singledispatch +PORTVERSION= 3.4.0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= provides single-dispatch generic functions + +LICENSE= MIT + +USE_PYTHON= yes +USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/devel/py-singledispatch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-singledispatch/distinfo Fri Nov 29 20:15:48 2013 (r335219) @@ -0,0 +1,2 @@ +SHA256 (singledispatch-3.4.0.2.tar.gz) = 4bdd0307cae0d13abb0546df1ab85201b9067090d191e33387e27e1463a7bfd5 +SIZE (singledispatch-3.4.0.2.tar.gz) = 9499 Added: head/devel/py-singledispatch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-singledispatch/pkg-descr Fri Nov 29 20:15:48 2013 (r335219) @@ -0,0 +1,10 @@ +This library brings functools.singledispatch from Python 3.4 to +Python 2.6-3.3. + +PEP 443 proposed to expose a mechanism in the functools standard +library module in Python 3.4 that provides a simple form of generic +programming known as single-dispatch generic functions. + +This library is a backport of this functionality to Python 2.6 - 3.3. + +WWW: https://pypi.python.org/pypi/singledispatch