Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 May 2019 04:25:00 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r500578 - in head/devel: py-buildbot-console-view py-buildbot-grid-view py-buildbot-pkg py-buildbot-waterfall-view
Message-ID:  <201905010425.x414P0Vl025904@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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