svn commit: r465537 - in head/devel: . py-whistle
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sun Mar 25 18:05:46 UTC 2018
Author: sunpoet
Date: Sun Mar 25 18:05:45 2018
New Revision: 465537
URL: https://svnweb.freebsd.org/changeset/ports/465537
Log:
Add py-whistle 1.0.1
Whistle is a simple tool that allow your application components to communicate
with each other by dispatching events and listening to them.
Whistle is an Event Dispatcher library for the Python 3.5+ language. It's
largely inspired from Symfony's EventDispatcher component.
Using an event dispatcher is a great way to write loosely coupled extensible
code, having each part only communicate using light events.
WWW: https://python-whistle.github.io/
WWW: https://github.com/python-whistle/whistle
Added:
head/devel/py-whistle/
head/devel/py-whistle/Makefile (contents, props changed)
head/devel/py-whistle/distinfo (contents, props changed)
head/devel/py-whistle/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sun Mar 25 18:05:18 2018 (r465536)
+++ head/devel/Makefile Sun Mar 25 18:05:45 2018 (r465537)
@@ -5027,6 +5027,7 @@
SUBDIR += py-weblib
SUBDIR += py-websockify
SUBDIR += py-wheel
+ SUBDIR += py-whistle
SUBDIR += py-widgetsnbextension
SUBDIR += py-wrapt
SUBDIR += py-wsgi_intercept
Added: head/devel/py-whistle/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-whistle/Makefile Sun Mar 25 18:05:45 2018 (r465537)
@@ -0,0 +1,19 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= whistle
+PORTVERSION= 1.0.1
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= Event dispatcher
+
+LICENSE= APACHE20
+
+NO_ARCH= yes
+USE_PYTHON= autoplist distutils
+USES= python:3.5+
+
+.include <bsd.port.mk>
Added: head/devel/py-whistle/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-whistle/distinfo Sun Mar 25 18:05:45 2018 (r465537)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1521957066
+SHA256 (whistle-1.0.1.tar.gz) = 960775d90bd26cab4b135df901593cee7ae9e99c489d4e2c8d6224355c5f2b90
+SIZE (whistle-1.0.1.tar.gz) = 4475
Added: head/devel/py-whistle/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-whistle/pkg-descr Sun Mar 25 18:05:45 2018 (r465537)
@@ -0,0 +1,11 @@
+Whistle is a simple tool that allow your application components to communicate
+with each other by dispatching events and listening to them.
+
+Whistle is an Event Dispatcher library for the Python 3.5+ language. It's
+largely inspired from Symfony's EventDispatcher component.
+
+Using an event dispatcher is a great way to write loosely coupled extensible
+code, having each part only communicate using light events.
+
+WWW: https://python-whistle.github.io/
+WWW: https://github.com/python-whistle/whistle
More information about the svn-ports-all
mailing list