Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Nov 2018 19:05:31 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r485017 - in head/devel: . py-visitor
Message-ID:  <201811151905.wAFJ5V5J033621@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu Nov 15 19:05:31 2018
New Revision: 485017
URL: https://svnweb.freebsd.org/changeset/ports/485017

Log:
  Add py-visitor 0.1.3
  
  visitor is a tiny library to facilitate visitor implementation in Python (which
  are slightly peculiar due to dynamic typing). In fact, it is so small, you may
  just be better off copy & pasting the source straight into your project.
  
  WWW: https://github.com/mbr/visitor

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Nov 15 17:01:42 2018	(r485016)
+++ head/devel/Makefile	Thu Nov 15 19:05:31 2018	(r485017)
@@ -5211,6 +5211,7 @@
     SUBDIR += py-virtualenv
     SUBDIR += py-virtualenv-clone
     SUBDIR += py-virtualenvwrapper
+    SUBDIR += py-visitor
     SUBDIR += py-voluptuous
     SUBDIR += py-warlock
     SUBDIR += py-watchdog

Added: head/devel/py-visitor/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-visitor/Makefile	Thu Nov 15 19:05:31 2018	(r485017)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	visitor
+PORTVERSION=	0.1.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Tiny Pythonic visitor implementation
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-visitor/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-visitor/distinfo	Thu Nov 15 19:05:31 2018	(r485017)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1542290955
+SHA256 (visitor-0.1.3.tar.gz) = 2c737903b2b6864ebc6167eef7cf3b997126f1aa94bdf590f90f1436d23e480a
+SIZE (visitor-0.1.3.tar.gz) = 3260

Added: head/devel/py-visitor/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-visitor/pkg-descr	Thu Nov 15 19:05:31 2018	(r485017)
@@ -0,0 +1,5 @@
+visitor is a tiny library to facilitate visitor implementation in Python (which
+are slightly peculiar due to dynamic typing). In fact, it is so small, you may
+just be better off copy & pasting the source straight into your project.
+
+WWW: https://github.com/mbr/visitor



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