svn commit: r500578 - in head/devel: py-buildbot-console-view py-buildbot-grid-view py-buildbot-pkg py-buildbot-waterfall-view
Kubilay Kocak
koobs at FreeBSD.org
Wed May 1 04:25:02 UTC 2019
Author: koobs
Date: Wed May 1 04:25:00 2019
New Revision: 500578
URL: https://svnweb.freebsd.org/changeset/ports/500578
Log:
devel/py-buildbot-*: Limit to Python 3.5+
These packages only support Python 3.x [1], currently failing to build:
File "/usr/local/lib/python2.7/site-packages/buildbot_pkg.py", line 254, in run
super().run()
TypeError: super() takes at least 1 argument (0 given)
antoine@ fixed fallout in py-buildbot-www in ports r500102
[1] https://github.com/buildbot/buildbot/commit/403722c20e7f96707be3d15db54b25f472b8a525
Reported by: pkg-fallout
MFH: 2019Q2 (MFH with 500101, 500102)
Modified:
head/devel/py-buildbot-console-view/Makefile
head/devel/py-buildbot-grid-view/Makefile
head/devel/py-buildbot-pkg/Makefile
head/devel/py-buildbot-waterfall-view/Makefile
Modified: head/devel/py-buildbot-console-view/Makefile
==============================================================================
--- head/devel/py-buildbot-console-view/Makefile Wed May 1 01:34:12 2019 (r500577)
+++ head/devel/py-buildbot-console-view/Makefile Wed May 1 04:25:00 2019 (r500578)
@@ -16,7 +16,7 @@ LICENSE= GPLv2
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}buildbot-pkg>=${PORTVERSION}:devel/py-buildbot-pkg@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}buildbot-pkg>=${PORTVERSION}:devel/py-buildbot-pkg@${PY_FLAVOR}
-USES= python
+USES= python:3.5+
USE_PYTHON= autoplist distutils
NO_ARCH= yes
Modified: head/devel/py-buildbot-grid-view/Makefile
==============================================================================
--- head/devel/py-buildbot-grid-view/Makefile Wed May 1 01:34:12 2019 (r500577)
+++ head/devel/py-buildbot-grid-view/Makefile Wed May 1 04:25:00 2019 (r500578)
@@ -15,7 +15,7 @@ LICENSE= GPLv2
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}buildbot-pkg>=${PORTVERSION}:devel/py-buildbot-pkg@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}buildbot-pkg>=${PORTVERSION}:devel/py-buildbot-pkg@${PY_FLAVOR}
-USES= python
+USES= python:3.5+
USE_PYTHON= autoplist distutils
NO_ARCH= yes
Modified: head/devel/py-buildbot-pkg/Makefile
==============================================================================
--- head/devel/py-buildbot-pkg/Makefile Wed May 1 01:34:12 2019 (r500577)
+++ head/devel/py-buildbot-pkg/Makefile Wed May 1 04:25:00 2019 (r500578)
@@ -13,7 +13,7 @@ COMMENT= Buildbot packaging tools
LICENSE= GPLv2
#LICENSE_FILE= Not packaged in sdist
-USES= python
+USES= python:3.5+
USE_PYTHON= autoplist distutils
NO_ARCH= yes
Modified: head/devel/py-buildbot-waterfall-view/Makefile
==============================================================================
--- head/devel/py-buildbot-waterfall-view/Makefile Wed May 1 01:34:12 2019 (r500577)
+++ head/devel/py-buildbot-waterfall-view/Makefile Wed May 1 04:25:00 2019 (r500578)
@@ -16,7 +16,7 @@ LICENSE= GPLv2
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}buildbot-pkg>=${PORTVERSION}:devel/py-buildbot-pkg@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}buildbot-pkg>=${PORTVERSION}:devel/py-buildbot-pkg@${PY_FLAVOR}
-USES= python
+USES= python:3.5+
USE_PYTHON= autoplist distutils
NO_ARCH= yes
More information about the svn-ports-head
mailing list