svn commit: r372153 - in head/devel: . py-robotremoteserver
John Marino
marino at FreeBSD.org
Tue Nov 4 16:46:25 UTC 2014
Author: marino
Date: Tue Nov 4 16:46:23 2014
New Revision: 372153
URL: https://svnweb.freebsd.org/changeset/ports/372153
QAT: https://qat.redports.org/buildarchive/r372153/
Log:
Add new port devel/py-robotremoteserver
PR: 194085
Submitted by: Vladimir Chukharev
Robot Framework remote servers allow hosting test libraries on different
processes or machines than Robot Framework itself is running on. This
version is implemented in Python and supports also Jython (JVM) and
IronPython (.NET). See remote library interface documentation for more
information about the remote interface in general as well as for a list
of remote server implementations in other programming languages.
Added:
head/devel/py-robotremoteserver/
head/devel/py-robotremoteserver/Makefile (contents, props changed)
head/devel/py-robotremoteserver/distinfo (contents, props changed)
head/devel/py-robotremoteserver/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Nov 4 16:45:45 2014 (r372152)
+++ head/devel/Makefile Tue Nov 4 16:46:23 2014 (r372153)
@@ -3917,6 +3917,7 @@
SUBDIR += py-robotframework-pabot
SUBDIR += py-robotframework-ride
SUBDIR += py-robotframework-selenium2library
+ SUBDIR += py-robotremoteserver
SUBDIR += py-rope
SUBDIR += py-rose
SUBDIR += py-roxlib
Added: head/devel/py-robotremoteserver/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-robotremoteserver/Makefile Tue Nov 4 16:46:23 2014 (r372153)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME= robotremoteserver
+PORTVERSION= 1.0.1
+CATEGORIES= devel www python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= Vladimir.Chukharev at gmail.com
+COMMENT= Python Remote Server for Robot Framework
+
+LICENSE= APACHE20
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}robotframework>=2.7.5:${PORTSDIR}/devel/py-robotframework
+
+USES= python:2
+USE_PYTHON= distutils autoplist
+
+.include <bsd.port.mk>
Added: head/devel/py-robotremoteserver/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-robotremoteserver/distinfo Tue Nov 4 16:46:23 2014 (r372153)
@@ -0,0 +1,2 @@
+SHA256 (robotremoteserver-1.0.1.tar.gz) = b696542f2c53bd303d0af8c0940dc89c200160ae156e8aa01669709e3b0b90b8
+SIZE (robotremoteserver-1.0.1.tar.gz) = 12456
Added: head/devel/py-robotremoteserver/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-robotremoteserver/pkg-descr Tue Nov 4 16:46:23 2014 (r372153)
@@ -0,0 +1,8 @@
+Robot Framework remote servers allow hosting test libraries on different
+processes or machines than Robot Framework itself is running on. This
+version is implemented in Python and supports also Jython (JVM) and
+IronPython (.NET). See remote library interface documentation for more
+information about the remote interface in general as well as for a list
+of remote server implementations in other programming languages.
+
+WWW: http://github.com/robotframework/PythonRemoteServer
More information about the svn-ports-head
mailing list