diff --git a/devel/py-robotframework-pabot/Makefile b/devel/py-robotframework-pabot/Makefile index f4adab4ffc9b..5e0ebd671f09 100644 --- a/devel/py-robotframework-pabot/Makefile +++ b/devel/py-robotframework-pabot/Makefile @@ -1,23 +1,23 @@ # Created by: Vladimir Chukharev # $FreeBSD$ PORTNAME= robotframework-pabot -PORTVERSION= 0.59 +PORTVERSION= 0.65 CATEGORIES= devel www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= Vladimir.Chukharev@gmail.com COMMENT= Parallel executor for Robot Framework test cases LICENSE= APACHE20 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}robotframework>=2.7.5:devel/py-robotframework@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}robotremoteserver>=1.0.1:devel/py-robotremoteserver@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include diff --git a/devel/py-robotframework-pabot/distinfo b/devel/py-robotframework-pabot/distinfo index bdc1cd136b0e..97ce176840f6 100644 --- a/devel/py-robotframework-pabot/distinfo +++ b/devel/py-robotframework-pabot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1557483324 -SHA256 (robotframework-pabot-0.59.tar.gz) = 79eb66b20cacd41c41a7e36aa92fa4cba526bcd378dea1ead9eccc46a84459e9 -SIZE (robotframework-pabot-0.59.tar.gz) = 19822 +TIMESTAMP = 1559818643 +SHA256 (robotframework-pabot-0.65.tar.gz) = 5a831ca744eadc6468828685dc7d13ab8ace062d55eb61b94178b2815ba6dc39 +SIZE (robotframework-pabot-0.65.tar.gz) = 22294 diff --git a/devel/py-robotframework-pabot/files/patch-setup.py b/devel/py-robotframework-pabot/files/patch-setup.py new file mode 100644 index 000000000000..a61304adbddc --- /dev/null +++ b/devel/py-robotframework-pabot/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2019-06-06 10:50:07 UTC ++++ setup.py +@@ -28,7 +28,6 @@ setup(name='robotframework-pabot', + 'Development Status :: 5 - Production/Stable', + 'Framework :: Robot Framework' + ], +- scripts=[os.path.join('scripts', 'pabot'), +- os.path.join('scripts', 'pabot.bat')], ++ scripts=[os.path.join('scripts', 'pabot')], + license='Apache License, Version 2.0', + install_requires=['robotframework', 'robotremoteserver>=1.1'])