Date: Fri, 29 Nov 2013 20:15:48 +0000 (UTC) From: Juergen Lock <nox@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335219 - in head/devel: . py-singledispatch Message-ID: <201311292015.rATKFm5n093959@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <nox@FreeBSD.org> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311292015.rATKFm5n093959>