From owner-svn-ports-all@freebsd.org Sun Jul 17 14:43:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BDB70B9C976; Sun, 17 Jul 2016 14:43:04 +0000 (UTC) (envelope-from pawel@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 mx1.freebsd.org (Postfix) with ESMTPS id 7EFB213D1; Sun, 17 Jul 2016 14:43:04 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6HEh3ac048739; Sun, 17 Jul 2016 14:43:03 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6HEh3HZ048735; Sun, 17 Jul 2016 14:43:03 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607171443.u6HEh3HZ048735@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sun, 17 Jul 2016 14:43:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418667 - in head/devel: . py-louie 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.22 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, 17 Jul 2016 14:43:04 -0000 Author: pawel Date: Sun Jul 17 14:43:03 2016 New Revision: 418667 URL: https://svnweb.freebsd.org/changeset/ports/418667 Log: Louie provides Python programmers with a straightforward way to dispatch signals between objects in a wide variety of contexts. It is based on PyDispatcher, which in turn was based on a highly-rated recipe in the Python Cookbook. WWW: http://cheeseshop.python.org/pypi/Louie/ WWW: http://11craft.github.com/louie/ PR: 209773 Submitted by: Yuri Victorovich Added: head/devel/py-louie/ head/devel/py-louie/Makefile (contents, props changed) head/devel/py-louie/distinfo (contents, props changed) head/devel/py-louie/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 17 12:26:00 2016 (r418666) +++ head/devel/Makefile Sun Jul 17 14:43:03 2016 (r418667) @@ -4208,6 +4208,7 @@ SUBDIR += py-logbook SUBDIR += py-logan SUBDIR += py-logilab-common + SUBDIR += py-louie SUBDIR += py-lxml SUBDIR += py-magic SUBDIR += py-manuel Added: head/devel/py-louie/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-louie/Makefile Sun Jul 17 14:43:03 2016 (r418667) @@ -0,0 +1,21 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= Louie +PORTVERSION= 1.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Signal dispatching mechanism + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0.8.3:devel/py-nose + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-louie/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-louie/distinfo Sun Jul 17 14:43:03 2016 (r418667) @@ -0,0 +1,3 @@ +TIMESTAMP = 1464287893 +SHA256 (Louie-1.1.tar.gz) = 75f33f2978e9a7ba1f541c594d8e93d0c4a965a706db688fd11a77f4049e5a5b +SIZE (Louie-1.1.tar.gz) = 22306 Added: head/devel/py-louie/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-louie/pkg-descr Sun Jul 17 14:43:03 2016 (r418667) @@ -0,0 +1,7 @@ +Louie provides Python programmers with a straightforward way to dispatch +signals between objects in a wide variety of contexts. It is based on +PyDispatcher, which in turn was based on a highly-rated recipe in the +Python Cookbook. + +WWW: http://cheeseshop.python.org/pypi/Louie/ +WWW: http://11craft.github.com/louie/