From owner-svn-ports-all@FreeBSD.ORG Tue Apr 1 12:58:41 2014 Return-Path: Delivered-To: svn-ports-all@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 92079916; Tue, 1 Apr 2014 12:58:41 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 71E43E6C; Tue, 1 Apr 2014 12:58:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s31Cwf6C078091; Tue, 1 Apr 2014 12:58:41 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s31Cwexa078087; Tue, 1 Apr 2014 12:58:40 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201404011258.s31Cwexa078087@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 1 Apr 2014 12:58:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349850 - in head/devel: . py-simplegeneric 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.17 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, 01 Apr 2014 12:58:41 -0000 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 +# $FreeBSD$ + +PORTNAME= simplegeneric +PORTVERSION= 0.8.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Simple generic functions + +LICENSE= ZPL21 + +PYDISTUTILS_AUTOPLIST= yes +USE_PYDISTUTILS=yes +USE_PYTHON= yes +USES= zip + +.include 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