Received: by mail.netbsd.org (Postfix, from userid 605) id 66F4484D4D; Tue, 28 Aug 2018 07:26:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5B6EC84D4B for ; Tue, 28 Aug 2018 07:26:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 7fqbPE7xCiu7 for ; Tue, 28 Aug 2018 07:26:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3226B84CD8 for ; Tue, 28 Aug 2018 07:26:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2333DFBF8; Tue, 28 Aug 2018 07:26:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1535441180258520" MIME-Version: 1.0 Date: Tue, 28 Aug 2018 07:26:20 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180828072620.2333DFBF8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1535441180258520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Tue Aug 28 07:26:19 UTC 2018 Modified Files: pkgsrc/devel/py-buildbot: Makefile PLIST distinfo pkgsrc/devel/py-buildbot-console-view: Makefile distinfo pkgsrc/devel/py-buildbot-grid-view: Makefile distinfo pkgsrc/devel/py-buildbot-pkg: Makefile distinfo pkgsrc/devel/py-buildbot-waterfall-view: Makefile distinfo pkgsrc/devel/py-buildbot-worker: Makefile distinfo pkgsrc/devel/py-buildbot-www: Makefile distinfo Log Message: py-buildbot: updated to 1.3.0 Buildbot 1.3.0 Bug fixes buildbot-worker docker image no longer use pidfile. This allows to auto-restart a docker worker upon crash. GitLab v3 API is deprecated and has been removed from http://gitlab.com, so we now use v4. Features -Git now supports sshHostKey parameter to specify ssh public host key for fetch operations. -Git now supports sshPrivateKey parameter to specify private ssh key for fetch operations. -GitPoller now supports sshHostKey parameter to specify ssh public host key for fetch operations. This feature is supported on git 2.3 and newer. -GitPoller now supports sshPrivateKey parameter to specify private ssh key for fetch operations. This feature is supported on git 2.3 and newer. Github hook token validation now uses hmac.compare_digest() for better security Deprecations and Removals Removed support for GitLab v3 API ( GitLab < 9 ). Buildbot 1.2.0 Bug fixes Don’t schedule a build when a GitLab merge request is deleted or edited Add GitLab source step; using it, we now handle GitLab merge requests from forks properly Fixed a bug in MailNotifier’s createEmail method when called with the default builds value which resulted in mail not being sent. Fixed a Github crash that happened on Pull Requests, triggered by Github Web-hooks. The json sent by the API does not contain a commit message. In github.py this causes a crash, resulting into response 500 sent back to Github and building failure. Speed up generation of api/v2/builders by an order of magnitude. Improved Documentation Added examples/gitlab.cfg to demonstrate integrating Buildbot with GitLab. Features ForceScheduler Parameters now support an autopopulate parameter. ForceScheduler Parameters ChoiceParameter now correctly supports the strict parameter, by allowing free text entry if strict is False. Allow the remote ref to be specified in the GitHub hook configuration Added callable to p4 source that allows client code to resolve the p4 user and workspace into a more complete author. Default behaviour is a lambda that simply returns the original supplied who. This callable happens after the existing regex is performed. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/py-buildbot/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-buildbot/PLIST cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-buildbot/distinfo cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-buildbot-console-view/Makefile \ pkgsrc/devel/py-buildbot-console-view/distinfo cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-buildbot-grid-view/Makefile \ pkgsrc/devel/py-buildbot-grid-view/distinfo cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-buildbot-pkg/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-buildbot-pkg/distinfo cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-buildbot-waterfall-view/Makefile \ pkgsrc/devel/py-buildbot-waterfall-view/distinfo cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-buildbot-worker/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-buildbot-worker/distinfo cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-buildbot-www/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-buildbot-www/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1535441180258520 Content-Disposition: inline Content-Length: 16292 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-buildbot/Makefile diff -u pkgsrc/devel/py-buildbot/Makefile:1.18 pkgsrc/devel/py-buildbot/Makefile:1.19 --- pkgsrc/devel/py-buildbot/Makefile:1.18 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot/Makefile Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2018/05/01 18:20:08 adam Exp $ +# $NetBSD: Makefile,v 1.19 2018/08/28 07:26:19 adam Exp $ -DISTNAME= buildbot-1.1.1 +DISTNAME= buildbot-1.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel net python MASTER_SITES= ${MASTER_SITE_PYPI:=b/buildbot/} Index: pkgsrc/devel/py-buildbot/PLIST diff -u pkgsrc/devel/py-buildbot/PLIST:1.5 pkgsrc/devel/py-buildbot/PLIST:1.6 --- pkgsrc/devel/py-buildbot/PLIST:1.5 Tue Apr 3 20:58:18 2018 +++ pkgsrc/devel/py-buildbot/PLIST Tue Aug 28 07:26:19 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2018/04/03 20:58:18 adam Exp $ +@comment $NetBSD: PLIST,v 1.6 2018/08/28 07:26:19 adam Exp $ bin/buildbot${PYVERSSUFFIX} bin/buildbot_windows_service${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO @@ -762,6 +762,9 @@ ${PYSITELIB}/buildbot/steps/source/git.p ${PYSITELIB}/buildbot/steps/source/github.py ${PYSITELIB}/buildbot/steps/source/github.pyc ${PYSITELIB}/buildbot/steps/source/github.pyo +${PYSITELIB}/buildbot/steps/source/gitlab.py +${PYSITELIB}/buildbot/steps/source/gitlab.pyc +${PYSITELIB}/buildbot/steps/source/gitlab.pyo ${PYSITELIB}/buildbot/steps/source/mercurial.py ${PYSITELIB}/buildbot/steps/source/mercurial.pyc ${PYSITELIB}/buildbot/steps/source/mercurial.pyo @@ -1548,6 +1551,9 @@ ${PYSITELIB}/buildbot/test/unit/test_ste ${PYSITELIB}/buildbot/test/unit/test_steps_source_github.py ${PYSITELIB}/buildbot/test/unit/test_steps_source_github.pyc ${PYSITELIB}/buildbot/test/unit/test_steps_source_github.pyo +${PYSITELIB}/buildbot/test/unit/test_steps_source_gitlab.py +${PYSITELIB}/buildbot/test/unit/test_steps_source_gitlab.pyc +${PYSITELIB}/buildbot/test/unit/test_steps_source_gitlab.pyo ${PYSITELIB}/buildbot/test/unit/test_steps_source_mercurial.py ${PYSITELIB}/buildbot/test/unit/test_steps_source_mercurial.pyc ${PYSITELIB}/buildbot/test/unit/test_steps_source_mercurial.pyo @@ -1607,6 +1613,9 @@ ${PYSITELIB}/buildbot/test/unit/test_uti ${PYSITELIB}/buildbot/test/unit/test_util_eventual.py ${PYSITELIB}/buildbot/test/unit/test_util_eventual.pyc ${PYSITELIB}/buildbot/test/unit/test_util_eventual.pyo +${PYSITELIB}/buildbot/test/unit/test_util_git.py +${PYSITELIB}/buildbot/test/unit/test_util_git.pyc +${PYSITELIB}/buildbot/test/unit/test_util_git.pyo ${PYSITELIB}/buildbot/test/unit/test_util_giturlparse.py ${PYSITELIB}/buildbot/test/unit/test_util_giturlparse.pyc ${PYSITELIB}/buildbot/test/unit/test_util_giturlparse.pyo @@ -1643,6 +1652,9 @@ ${PYSITELIB}/buildbot/test/unit/test_uti ${PYSITELIB}/buildbot/test/unit/test_util_poll.py ${PYSITELIB}/buildbot/test/unit/test_util_poll.pyc ${PYSITELIB}/buildbot/test/unit/test_util_poll.pyo +${PYSITELIB}/buildbot/test/unit/test_util_private_tempdir.py +${PYSITELIB}/buildbot/test/unit/test_util_private_tempdir.pyc +${PYSITELIB}/buildbot/test/unit/test_util_private_tempdir.pyo ${PYSITELIB}/buildbot/test/unit/test_util_raml.py ${PYSITELIB}/buildbot/test/unit/test_util_raml.pyc ${PYSITELIB}/buildbot/test/unit/test_util_raml.pyo @@ -1883,6 +1895,9 @@ ${PYSITELIB}/buildbot/util/debounce.pyo ${PYSITELIB}/buildbot/util/eventual.py ${PYSITELIB}/buildbot/util/eventual.pyc ${PYSITELIB}/buildbot/util/eventual.pyo +${PYSITELIB}/buildbot/util/git.py +${PYSITELIB}/buildbot/util/git.pyc +${PYSITELIB}/buildbot/util/git.pyo ${PYSITELIB}/buildbot/util/giturlparse.py ${PYSITELIB}/buildbot/util/giturlparse.pyc ${PYSITELIB}/buildbot/util/giturlparse.pyo @@ -1916,6 +1931,9 @@ ${PYSITELIB}/buildbot/util/pathmatch.pyo ${PYSITELIB}/buildbot/util/poll.py ${PYSITELIB}/buildbot/util/poll.pyc ${PYSITELIB}/buildbot/util/poll.pyo +${PYSITELIB}/buildbot/util/private_tempdir.py +${PYSITELIB}/buildbot/util/private_tempdir.pyc +${PYSITELIB}/buildbot/util/private_tempdir.pyo ${PYSITELIB}/buildbot/util/raml.py ${PYSITELIB}/buildbot/util/raml.pyc ${PYSITELIB}/buildbot/util/raml.pyo Index: pkgsrc/devel/py-buildbot/distinfo diff -u pkgsrc/devel/py-buildbot/distinfo:1.8 pkgsrc/devel/py-buildbot/distinfo:1.9 --- pkgsrc/devel/py-buildbot/distinfo:1.8 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot/distinfo Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2018/05/01 18:20:08 adam Exp $ +$NetBSD: distinfo,v 1.9 2018/08/28 07:26:19 adam Exp $ -SHA1 (buildbot-1.1.1.tar.gz) = cc3e426a8c98b54645d83985bd787403360d0be2 -RMD160 (buildbot-1.1.1.tar.gz) = cae1a027899df6d28479c85db7223a8731055458 -SHA512 (buildbot-1.1.1.tar.gz) = 2a53456784af5765e3f989c331b549ce4cbd71a9537ff42cd6ad885f299986897375d2d0c6a24759787fcf3c25086a4b714138357b89890f0706f9ea89c13626 -Size (buildbot-1.1.1.tar.gz) = 3099423 bytes +SHA1 (buildbot-1.3.0.tar.gz) = 9ffaf9dea5586164f0bda7df93b17b8b0cb119fd +RMD160 (buildbot-1.3.0.tar.gz) = 0585ba272e9c0b86ddcae8d8654c4014cfbae64f +SHA512 (buildbot-1.3.0.tar.gz) = e5ecf3eafe428a188c2410d270ee9bd5afc39122e62d35747288cf85347368ab4a94190b4ff6fe687269dc19cc7b91d33be8d3e3b637741e421a2cbd83572830 +Size (buildbot-1.3.0.tar.gz) = 3119185 bytes Index: pkgsrc/devel/py-buildbot-console-view/Makefile diff -u pkgsrc/devel/py-buildbot-console-view/Makefile:1.4 pkgsrc/devel/py-buildbot-console-view/Makefile:1.5 --- pkgsrc/devel/py-buildbot-console-view/Makefile:1.4 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot-console-view/Makefile Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2018/05/01 18:20:08 adam Exp $ +# $NetBSD: Makefile,v 1.5 2018/08/28 07:26:19 adam Exp $ -DISTNAME= buildbot-console-view-1.1.1 +DISTNAME= buildbot-console-view-1.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel net python MASTER_SITES= ${MASTER_SITE_PYPI:=b/buildbot-console-view/} Index: pkgsrc/devel/py-buildbot-console-view/distinfo diff -u pkgsrc/devel/py-buildbot-console-view/distinfo:1.4 pkgsrc/devel/py-buildbot-console-view/distinfo:1.5 --- pkgsrc/devel/py-buildbot-console-view/distinfo:1.4 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot-console-view/distinfo Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2018/05/01 18:20:08 adam Exp $ +$NetBSD: distinfo,v 1.5 2018/08/28 07:26:19 adam Exp $ -SHA1 (buildbot-console-view-1.1.1.tar.gz) = f09b79268b8cfd22b6cee6d377bd71a5cdf9d031 -RMD160 (buildbot-console-view-1.1.1.tar.gz) = 1938a43854ca7dc1bb466e70e66f4137916c9bec -SHA512 (buildbot-console-view-1.1.1.tar.gz) = 80ba39c28d884f638bab0ee3ea72d578b53406fe2efe9af338b7266e869f6e24b8f452d4851b04944e84e9212594b6a3bae505b624323897cf57739a1e43d3c7 -Size (buildbot-console-view-1.1.1.tar.gz) = 640507 bytes +SHA1 (buildbot-console-view-1.3.0.tar.gz) = e63bb133d10bffc7f5e7fdab1efa4475369a71d1 +RMD160 (buildbot-console-view-1.3.0.tar.gz) = 12b44217672b3e5e004043bd0d3316680868532b +SHA512 (buildbot-console-view-1.3.0.tar.gz) = 5b4fa27c8cca57df083c3044729bc6086086dabe819e215b02fe4fda0863b62658925433bbc90d9b38f4309af50b2312b3c9aaefff96a1f62b18d160ca66f205 +Size (buildbot-console-view-1.3.0.tar.gz) = 640506 bytes Index: pkgsrc/devel/py-buildbot-grid-view/Makefile diff -u pkgsrc/devel/py-buildbot-grid-view/Makefile:1.4 pkgsrc/devel/py-buildbot-grid-view/Makefile:1.5 --- pkgsrc/devel/py-buildbot-grid-view/Makefile:1.4 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot-grid-view/Makefile Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2018/05/01 18:20:08 adam Exp $ +# $NetBSD: Makefile,v 1.5 2018/08/28 07:26:19 adam Exp $ -DISTNAME= buildbot-grid-view-1.1.1 +DISTNAME= buildbot-grid-view-1.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel net python MASTER_SITES= ${MASTER_SITE_PYPI:=b/buildbot-grid-view/} Index: pkgsrc/devel/py-buildbot-grid-view/distinfo diff -u pkgsrc/devel/py-buildbot-grid-view/distinfo:1.4 pkgsrc/devel/py-buildbot-grid-view/distinfo:1.5 --- pkgsrc/devel/py-buildbot-grid-view/distinfo:1.4 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot-grid-view/distinfo Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2018/05/01 18:20:08 adam Exp $ +$NetBSD: distinfo,v 1.5 2018/08/28 07:26:19 adam Exp $ -SHA1 (buildbot-grid-view-1.1.1.tar.gz) = 48362534e284a8db0b724759fcc4be5b5dd17301 -RMD160 (buildbot-grid-view-1.1.1.tar.gz) = 5524a2c49ce82f90840b5d9fe21b61c3d0ae268e -SHA512 (buildbot-grid-view-1.1.1.tar.gz) = 0990e22358678b9d40f97a07dd1dcf69e9b5e7836bd24f0c21dcfc8867e4fc45dd7344d250357d8b97a48e8e561cb9d401ce1dc87b559496db264a5ed737d0ba -Size (buildbot-grid-view-1.1.1.tar.gz) = 638843 bytes +SHA1 (buildbot-grid-view-1.3.0.tar.gz) = cc34b7704471c319e11d0ac9ce94ab17238ebbdc +RMD160 (buildbot-grid-view-1.3.0.tar.gz) = ee2405c2d673aa43a7079f641d866d0a19931c9c +SHA512 (buildbot-grid-view-1.3.0.tar.gz) = f82316743c10c4fd2a509a754808535606bdfd114b86e5796887d47845b4ef83677c7af830b9e4c531a9857249a8b2de8411b30f2f5b2a617a54244658e4a528 +Size (buildbot-grid-view-1.3.0.tar.gz) = 638845 bytes Index: pkgsrc/devel/py-buildbot-pkg/Makefile diff -u pkgsrc/devel/py-buildbot-pkg/Makefile:1.5 pkgsrc/devel/py-buildbot-pkg/Makefile:1.6 --- pkgsrc/devel/py-buildbot-pkg/Makefile:1.5 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot-pkg/Makefile Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2018/05/01 18:20:08 adam Exp $ +# $NetBSD: Makefile,v 1.6 2018/08/28 07:26:19 adam Exp $ -DISTNAME= buildbot-pkg-1.1.1 +DISTNAME= buildbot-pkg-1.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel net python MASTER_SITES= ${MASTER_SITE_PYPI:=b/buildbot-pkg/} Index: pkgsrc/devel/py-buildbot-pkg/distinfo diff -u pkgsrc/devel/py-buildbot-pkg/distinfo:1.4 pkgsrc/devel/py-buildbot-pkg/distinfo:1.5 --- pkgsrc/devel/py-buildbot-pkg/distinfo:1.4 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot-pkg/distinfo Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2018/05/01 18:20:08 adam Exp $ +$NetBSD: distinfo,v 1.5 2018/08/28 07:26:19 adam Exp $ -SHA1 (buildbot-pkg-1.1.1.tar.gz) = 5db16deb431362ea98735fb6425bdb7be3ef198a -RMD160 (buildbot-pkg-1.1.1.tar.gz) = b1f769eff9f6c0d936b725bf6af2e1c6b2af9370 -SHA512 (buildbot-pkg-1.1.1.tar.gz) = 05abe05b884fe6e27b874a437344ed7c272d91f02b768592c83559869ae78a8f22c2e42965046aed4fb99a04c02829b55416541436929d33bc9662fc9ecc9423 -Size (buildbot-pkg-1.1.1.tar.gz) = 4836 bytes +SHA1 (buildbot-pkg-1.3.0.tar.gz) = 43f50057e6cbd5bff05134f9ca5c63ddffa62553 +RMD160 (buildbot-pkg-1.3.0.tar.gz) = 4cae28b63453f3334dc2ee1bd7b5ecb4837c763e +SHA512 (buildbot-pkg-1.3.0.tar.gz) = b8e53de24cd41e31417a4259396fa080c7dad48b5ad2b15d5c9de9eb3fb35196a84f48ba589e8a077382e8a14d760f6148056bbe30972f0542512404e8efbefb +Size (buildbot-pkg-1.3.0.tar.gz) = 4835 bytes Index: pkgsrc/devel/py-buildbot-waterfall-view/Makefile diff -u pkgsrc/devel/py-buildbot-waterfall-view/Makefile:1.4 pkgsrc/devel/py-buildbot-waterfall-view/Makefile:1.5 --- pkgsrc/devel/py-buildbot-waterfall-view/Makefile:1.4 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot-waterfall-view/Makefile Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2018/05/01 18:20:08 adam Exp $ +# $NetBSD: Makefile,v 1.5 2018/08/28 07:26:19 adam Exp $ -DISTNAME= buildbot-waterfall-view-1.1.1 +DISTNAME= buildbot-waterfall-view-1.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel net python MASTER_SITES= ${MASTER_SITE_PYPI:=b/buildbot-waterfall-view/} Index: pkgsrc/devel/py-buildbot-waterfall-view/distinfo diff -u pkgsrc/devel/py-buildbot-waterfall-view/distinfo:1.4 pkgsrc/devel/py-buildbot-waterfall-view/distinfo:1.5 --- pkgsrc/devel/py-buildbot-waterfall-view/distinfo:1.4 Tue May 1 18:20:08 2018 +++ pkgsrc/devel/py-buildbot-waterfall-view/distinfo Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2018/05/01 18:20:08 adam Exp $ +$NetBSD: distinfo,v 1.5 2018/08/28 07:26:19 adam Exp $ -SHA1 (buildbot-waterfall-view-1.1.1.tar.gz) = 29b6a2974d1921350072baf540610e62aba95ec6 -RMD160 (buildbot-waterfall-view-1.1.1.tar.gz) = ffdd481bb882a8b65f5e882ecc798bcc03926f02 -SHA512 (buildbot-waterfall-view-1.1.1.tar.gz) = 33607c1d7b3d896a97e9a52c4e1d5649ceb679ef8a3c2f38dce47504199935cc80bed0986b4b8abe33f3646fec483a38bbabfd5a05b9e63922c2d3b27fd1b674 -Size (buildbot-waterfall-view-1.1.1.tar.gz) = 713901 bytes +SHA1 (buildbot-waterfall-view-1.3.0.tar.gz) = ead1c46e657f9901ee4f3b763cec31c0500b3b3b +RMD160 (buildbot-waterfall-view-1.3.0.tar.gz) = 40f29856e41dce1ca231f88345ed4da7daf23df7 +SHA512 (buildbot-waterfall-view-1.3.0.tar.gz) = 4b8403f9f68ddc6fc980649cf26625834c6a271705e0b8396ab7c2fd739929c2878557df945a1d9c5411985b79f8b43d3fca2c7f74769e9e832b1a7c166f8a3f +Size (buildbot-waterfall-view-1.3.0.tar.gz) = 713879 bytes Index: pkgsrc/devel/py-buildbot-worker/Makefile diff -u pkgsrc/devel/py-buildbot-worker/Makefile:1.6 pkgsrc/devel/py-buildbot-worker/Makefile:1.7 --- pkgsrc/devel/py-buildbot-worker/Makefile:1.6 Tue May 1 18:20:09 2018 +++ pkgsrc/devel/py-buildbot-worker/Makefile Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2018/05/01 18:20:09 adam Exp $ +# $NetBSD: Makefile,v 1.7 2018/08/28 07:26:19 adam Exp $ -DISTNAME= buildbot-worker-1.1.1 +DISTNAME= buildbot-worker-1.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel net python MASTER_SITES= ${MASTER_SITE_PYPI:=b/buildbot-worker/} Index: pkgsrc/devel/py-buildbot-worker/distinfo diff -u pkgsrc/devel/py-buildbot-worker/distinfo:1.5 pkgsrc/devel/py-buildbot-worker/distinfo:1.6 --- pkgsrc/devel/py-buildbot-worker/distinfo:1.5 Tue May 1 18:20:09 2018 +++ pkgsrc/devel/py-buildbot-worker/distinfo Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2018/05/01 18:20:09 adam Exp $ +$NetBSD: distinfo,v 1.6 2018/08/28 07:26:19 adam Exp $ -SHA1 (buildbot-worker-1.1.1.tar.gz) = 3ccb67c1780d162a19dcca5ae2c0aade2f536850 -RMD160 (buildbot-worker-1.1.1.tar.gz) = 81110bb5c28964a28798803392358e8bc40eb05f -SHA512 (buildbot-worker-1.1.1.tar.gz) = 71eea43e375bc402e8e4bea61e2f52b4bf7a6e8de7371cd4a3094c090c9e33c8e3a23093dd55f0f35946688366fa94097f6e270e60b76dc393c2616a669c0c2b -Size (buildbot-worker-1.1.1.tar.gz) = 102398 bytes +SHA1 (buildbot-worker-1.3.0.tar.gz) = 73494cd7e4932b8c249c56245731582cfaf29d55 +RMD160 (buildbot-worker-1.3.0.tar.gz) = 1d38a8f1a219acd2cf22e8b49dd0244ff9b2569f +SHA512 (buildbot-worker-1.3.0.tar.gz) = 5e59aab6cecf8dd932df0e8063c69fda5613b76a46df63479ff554085275d4a19fb1b5142034bd4245423e99f3e46d45e765b10c3c74a9f28b92b70119fab9e2 +Size (buildbot-worker-1.3.0.tar.gz) = 103765 bytes Index: pkgsrc/devel/py-buildbot-www/Makefile diff -u pkgsrc/devel/py-buildbot-www/Makefile:1.6 pkgsrc/devel/py-buildbot-www/Makefile:1.7 --- pkgsrc/devel/py-buildbot-www/Makefile:1.6 Tue May 1 18:20:09 2018 +++ pkgsrc/devel/py-buildbot-www/Makefile Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2018/05/01 18:20:09 adam Exp $ +# $NetBSD: Makefile,v 1.7 2018/08/28 07:26:19 adam Exp $ -DISTNAME= buildbot-www-1.1.1 +DISTNAME= buildbot-www-1.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel net python MASTER_SITES= ${MASTER_SITE_PYPI:=b/buildbot-www/} Index: pkgsrc/devel/py-buildbot-www/distinfo diff -u pkgsrc/devel/py-buildbot-www/distinfo:1.4 pkgsrc/devel/py-buildbot-www/distinfo:1.5 --- pkgsrc/devel/py-buildbot-www/distinfo:1.4 Tue May 1 18:20:09 2018 +++ pkgsrc/devel/py-buildbot-www/distinfo Tue Aug 28 07:26:19 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2018/05/01 18:20:09 adam Exp $ +$NetBSD: distinfo,v 1.5 2018/08/28 07:26:19 adam Exp $ -SHA1 (buildbot-www-1.1.1.tar.gz) = ea6e3291ef1fc4b7fb137174d669cbd0d2603dc1 -RMD160 (buildbot-www-1.1.1.tar.gz) = 87d892b9e7a4d5ce2e449fd97b4460b65677dece -SHA512 (buildbot-www-1.1.1.tar.gz) = 004be60aaff23590347a745553b2ca26742bf6a718945a70c270c360e2ed2c9e064eb34624f54497b2988c4f026ea864343b2c8411a87f97894c54851cac2bb4 -Size (buildbot-www-1.1.1.tar.gz) = 718637 bytes +SHA1 (buildbot-www-1.3.0.tar.gz) = 8c8c40bcba6322d568db10f756e3f7a4e107a124 +RMD160 (buildbot-www-1.3.0.tar.gz) = 42c547ef805fae04d5f5a63f9851dab631ce071c +SHA512 (buildbot-www-1.3.0.tar.gz) = e01d1d3528ab1f29ff136321b25f45b01733a4f23cd9d637c9e3290b5301a8ac3dc545decb178c1332e58dc3e11065ef73df49fbb46fca6068acabdd40a8bff1 +Size (buildbot-www-1.3.0.tar.gz) = 717517 bytes --_----------=_1535441180258520--