Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Jul 2016 14:43:03 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r418667 - in head/devel: . py-louie
Message-ID:  <201607171443.u6HEh3HZ048735@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <yuri@rawbw.com>

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 <yuri@rawbw.com>
+# $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 <bsd.port.mk>

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/



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