From owner-svn-ports-all@freebsd.org Sun Mar 25 18:05:46 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EEC9F5F1F6; Sun, 25 Mar 2018 18:05:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5002371784; Sun, 25 Mar 2018 18:05:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4AFB921800; Sun, 25 Mar 2018 18:05:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2PI5k24098089; Sun, 25 Mar 2018 18:05:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2PI5jJx098085; Sun, 25 Mar 2018 18:05:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803251805.w2PI5jJx098085@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 25 Mar 2018 18:05:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465537 - in head/devel: . py-whistle X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-whistle X-SVN-Commit-Revision: 465537 X-SVN-Commit-Repository: ports 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.25 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: Sun, 25 Mar 2018 18:05:46 -0000 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 +# $FreeBSD$ + +PORTNAME= whistle +PORTVERSION= 1.0.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Event dispatcher + +LICENSE= APACHE20 + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python:3.5+ + +.include 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