svn commit: r349850 - in head/devel: . py-simplegeneric
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Tue Apr 1 12:58:41 UTC 2014
Author: sunpoet
Date: Tue Apr 1 12:58:40 2014
New Revision: 349850
URL: http://svnweb.freebsd.org/changeset/ports/349850
QAT: https://qat.redports.org/buildarchive/r349850/
Log:
- Add py-simplegeneric 0.8.1
The simplegeneric module lets you define simple single-dispatch generic
functions, akin to Python's built-in generic functions like len(), iter() and so
on. However, instead of using specially-named methods, these generic functions
use simple lookup tables, akin to those used by e.g. pickle.dump() and other
generic functions found in the Python standard library.
WWW: https://pypi.python.org/pypi/simplegeneric
Added:
head/devel/py-simplegeneric/
head/devel/py-simplegeneric/Makefile (contents, props changed)
head/devel/py-simplegeneric/distinfo (contents, props changed)
head/devel/py-simplegeneric/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Apr 1 12:56:29 2014 (r349849)
+++ head/devel/Makefile Tue Apr 1 12:58:40 2014 (r349850)
@@ -3816,6 +3816,7 @@
SUBDIR += py-setuptools_darcs
SUBDIR += py-setuptools_hg
SUBDIR += py-shapely
+ SUBDIR += py-simplegeneric
SUBDIR += py-simplejson
SUBDIR += py-simpleparse
SUBDIR += py-simpletal
Added: head/devel/py-simplegeneric/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-simplegeneric/Makefile Tue Apr 1 12:58:40 2014 (r349850)
@@ -0,0 +1,20 @@
+# Created by: Sunpoet Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= simplegeneric
+PORTVERSION= 0.8.1
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= Simple generic functions
+
+LICENSE= ZPL21
+
+PYDISTUTILS_AUTOPLIST= yes
+USE_PYDISTUTILS=yes
+USE_PYTHON= yes
+USES= zip
+
+.include <bsd.port.mk>
Added: head/devel/py-simplegeneric/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-simplegeneric/distinfo Tue Apr 1 12:58:40 2014 (r349850)
@@ -0,0 +1,2 @@
+SHA256 (simplegeneric-0.8.1.zip) = dc972e06094b9af5b855b3df4a646395e43d1c9d0d39ed345b7393560d0b9173
+SIZE (simplegeneric-0.8.1.zip) = 12663
Added: head/devel/py-simplegeneric/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-simplegeneric/pkg-descr Tue Apr 1 12:58:40 2014 (r349850)
@@ -0,0 +1,7 @@
+The simplegeneric module lets you define simple single-dispatch generic
+functions, akin to Python's built-in generic functions like len(), iter() and so
+on. However, instead of using specially-named methods, these generic functions
+use simple lookup tables, akin to those used by e.g. pickle.dump() and other
+generic functions found in the Python standard library.
+
+WWW: https://pypi.python.org/pypi/simplegeneric
More information about the svn-ports-all
mailing list