Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 May 2017 14:51:00 +0000 (UTC)
From:      Steven Kreuzer <skreuzer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r441601 - in head/devel: . py-PyDispatcher
Message-ID:  <201705241451.v4OEp0kw062013@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: skreuzer
Date: Wed May 24 14:51:00 2017
New Revision: 441601
URL: https://svnweb.freebsd.org/changeset/ports/441601

Log:
  PyDispatcher is an enhanced version of Patrick K. O’Brien’s original
  dispatcher.py module. It provides the Python programmer with a robust mechanism
  for event routing within various application contexts.
  
  Included in the package are the robustapply and saferef modules, which provide
  the ability to selectively apply arguments to callable objects and to reference
  instance methods using weak-references.
  
  PR:		219310
  Submitted by:	Eric Camachat <eric@camachat.org>

Added:
  head/devel/py-PyDispatcher/
  head/devel/py-PyDispatcher/Makefile   (contents, props changed)
  head/devel/py-PyDispatcher/distinfo   (contents, props changed)
  head/devel/py-PyDispatcher/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed May 24 14:34:19 2017	(r441600)
+++ head/devel/Makefile	Wed May 24 14:51:00 2017	(r441601)
@@ -4085,6 +4085,7 @@
     SUBDIR += py-Products.contentmigration
     SUBDIR += py-Products.statusmessages
     SUBDIR += py-Products.validation
+    SUBDIR += py-PyDispatcher
     SUBDIR += py-PyExecJS
     SUBDIR += py-PyLD
     SUBDIR += py-RPyC

Added: head/devel/py-PyDispatcher/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-PyDispatcher/Makefile	Wed May 24 14:51:00 2017	(r441601)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	PyDispatcher
+PORTVERSION=	2.0.5
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	eric@camachat.org
+COMMENT=	Multi-producer-multi-consumer signal dispatching mechanism
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/license.txt
+
+NO_ARCH=	yes
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-PyDispatcher/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-PyDispatcher/distinfo	Wed May 24 14:51:00 2017	(r441601)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1494864695
+SHA256 (PyDispatcher-2.0.5.tar.gz) = 5570069e1b1769af1fe481de6dd1d3a388492acddd2cdad7a3bde145615d5caf
+SIZE (PyDispatcher-2.0.5.tar.gz) = 34437

Added: head/devel/py-PyDispatcher/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-PyDispatcher/pkg-descr	Wed May 24 14:51:00 2017	(r441601)
@@ -0,0 +1,11 @@
+Dispatcher mechanism for creating event models
+
+PyDispatcher is an enhanced version of Patrick K. O’Brien’s original
+dispatcher.py module. It provides the Python programmer with a robust mechanism
+for event routing within various application contexts.
+
+Included in the package are the robustapply and saferef modules, which provide
+the ability to selectively apply arguments to callable objects and to reference
+instance methods using weak-references.
+
+WWW: http://pydispatcher.sourceforge.net/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705241451.v4OEp0kw062013>