svn commit: r482716 - in head/misc: . py-molequeue py-molequeue/files

Yuri Victorovich yuri at FreeBSD.org
Sun Oct 21 17:49:55 UTC 2018


Author: yuri
Date: Sun Oct 21 17:49:53 2018
New Revision: 482716
URL: https://svnweb.freebsd.org/changeset/ports/482716

Log:
  New port: misc/py-molequeue: Python binding for MolEqueue, task management framework

Added:
  head/misc/py-molequeue/
  head/misc/py-molequeue/Makefile   (contents, props changed)
  head/misc/py-molequeue/distinfo   (contents, props changed)
  head/misc/py-molequeue/files/
  head/misc/py-molequeue/files/patch-molequeue_client.py   (contents, props changed)
  head/misc/py-molequeue/pkg-descr   (contents, props changed)
  head/misc/py-molequeue/pkg-plist   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Sun Oct 21 17:49:22 2018	(r482715)
+++ head/misc/Makefile	Sun Oct 21 17:49:53 2018	(r482716)
@@ -418,6 +418,7 @@
     SUBDIR += py-fuzzy
     SUBDIR += py-glance
     SUBDIR += py-kartograph
+    SUBDIR += py-molequeue
     SUBDIR += py-orange3-associate
     SUBDIR += py-orange3-datafusion
     SUBDIR += py-orange3-educational

Added: head/misc/py-molequeue/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-molequeue/Makefile	Sun Oct 21 17:49:53 2018	(r482716)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	molequeue
+DISTVERSION=	0.9.0
+CATEGORIES=	misc
+MASTER_SITES=	https://github.com/openchemistry/molequeue/releases/download/${DISTVERSION}/
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Python binding for MolEqueue, task management framework
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/../LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pyzmq>0:net/py-pyzmq@${PY_FLAVOR}
+
+USES=		cmake:outsource compiler:c++11-lang python
+USE_PYTHON=	flavors
+
+WRKSRC_SUBDIR=	python
+
+.include <bsd.port.mk>

Added: head/misc/py-molequeue/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-molequeue/distinfo	Sun Oct 21 17:49:53 2018	(r482716)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1539726091
+SHA256 (molequeue-0.9.0.tar.gz) = df036dbca090db4348443cf3d09be35fdf877a37075b4cb427b1130f005ef6e5
+SIZE (molequeue-0.9.0.tar.gz) = 620286

Added: head/misc/py-molequeue/files/patch-molequeue_client.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-molequeue/files/patch-molequeue_client.py	Sun Oct 21 17:49:53 2018	(r482716)
@@ -0,0 +1,11 @@
+--- molequeue/client.py.orig	2018-10-21 03:22:34 UTC
++++ molequeue/client.py
+@@ -122,7 +122,7 @@ class Client:
+     self.socket = self.context.socket(zmq.DEALER)
+ 
+     tmpdir = tempfile.gettempdir()
+-    connection_string  = 'ipc://%s/%s_%s' %  (tmpdir, 'zmq', server)
++    connection_string  = 'ipc://%s/%s' %  (tmpdir, server)
+     self.socket.connect(connection_string)
+ 
+     io_loop = ioloop.IOLoop.instance()

Added: head/misc/py-molequeue/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-molequeue/pkg-descr	Sun Oct 21 17:49:53 2018	(r482716)
@@ -0,0 +1,5 @@
+Pythin bindings for MoleQueue, an open-source, cross-platform, system-tray
+resident desktop application for abstracting, managing, and coordinating the
+execution of tasks both locally and on remote computational resources.
+
+WWW: https://www.openchemistry.org/projects/molequeue

Added: head/misc/py-molequeue/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/py-molequeue/pkg-plist	Sun Oct 21 17:49:53 2018	(r482716)
@@ -0,0 +1,3 @@
+%%PYTHON_SITELIBDIR%%/molequeue/__init__.py
+%%PYTHON_SITELIBDIR%%/molequeue/client.py
+%%PYTHON_SITELIBDIR%%/molequeue/utils.py


More information about the svn-ports-all mailing list