[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2024-03-13 Thread Sam James
commit: a6badccd3049ba1a477e6272f3ac82d0af6a477f
Author: Magnus Granberg  gentoo  org>
AuthorDate: Sun Mar 10 21:35:37 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 14 05:37:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6badccd

dev-util/buildbot: add 3.11.1

Signed-off-by: Magnus Granberg  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 dev-util/buildbot/Manifest |   1 +
 dev-util/buildbot/buildbot-3.11.1.ebuild   | 187 +
 .../files/buildbot-importlib.resources.patch   |  13 ++
 3 files changed, 201 insertions(+)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index c1b132c5f02d..eed318c38487 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,3 +1,4 @@
 DIST buildbot-3.11.0.tar.gz 2523691 BLAKE2B 
e64a84fa1678d313ef922cb43e3a2df974e1c8e7b8c53a1ec20b6ef177eee5ca66bbe012bdf4754cc135e91fba883237b370f99fbbf780ef1fcab07305f941a7
 SHA512 
86f6545573473aa48890a9b6e5165c55c5223ab365a1f7bf019e468396f52c4cb3dc93458aae15cef40ff0eb576bd55002a8ae78144cd86271d9a230f1bd40b8
+DIST buildbot-3.11.1.tar.gz 2524103 BLAKE2B 
aa95e6f6963e0504e1e61147a4ceb09448f804ece33251c45914b731572923de68f6cda88f9a3c37eab2b695dfcb379c1745ce3b280e04232075819d41c5030b
 SHA512 
ea9155c48fb44d6cf967e3b821bcca368f2a50bcc49e2b889e237ff17d0e6a53a2fa2cd7876ade2edef05d50cead05090c3e73ecda0530e7d6c617376b8b
 DIST buildbot-3.6.1.tar.gz 2458176 BLAKE2B 
4587ed222e2fae424f3c4f275e67e72bf25b0ce88231a29f931582d82fbe93a846f85b14bdc64740939466ccdc3f15dab3774244aa5c0a293250b52b542014ea
 SHA512 
62a993d1acd8bc5cc916f009909b4b099d9f64007fe790dc219104f248bb21e0ab8f1771c354ef61e6d8ba497451cdef5e7a7de17a87cfd1e941b3b49fbf2206
 DIST buildbot-3.9.0.tar.gz 2505725 BLAKE2B 
144a16655a8ec23d74ba190a7867a2dce9c65ea6009aa53ea11494be6f03f8d45bc6568a36511812e7664bcc7de9540728b91264251a46301cbd7ebec04c2069
 SHA512 
9103c5e08f9d5335c0281403d81fc939cc91b81e8051d4590f29e00779392ac706934d209312e51aafc44a35ab768ad54cbd251afe50e326c52e2f1b0d72196b

diff --git a/dev-util/buildbot/buildbot-3.11.1.ebuild 
b/dev-util/buildbot/buildbot-3.11.1.ebuild
new file mode 100644
index ..cbcbf3a1fd00
--- /dev/null
+++ b/dev-util/buildbot/buildbot-3.11.1.ebuild
@@ -0,0 +1,187 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python3_{10..12} )
+inherit readme.gentoo-r1 systemd distutils-r1 pypi
+
+DESCRIPTION="BuildBot build automation system"
+HOMEPAGE="https://buildbot.net/
+   https://github.com/buildbot/buildbot
+   https://pypi.org/project/buildbot/";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~amd64-linux ~x86-linux"
+
+IUSE="crypt docker examples irc test"
+RESTRICT="!test? ( test )"
+
+# use python's importlib
+PATCHES=(
+   "${FILESDIR}/buildbot-importlib.resources.patch"
+)
+
+RDEPEND="
+   acct-user/buildbot
+   >=dev-python/alembic-1.6.0[${PYTHON_USEDEP}]
+   >=dev-python/autobahn-0.16.0[${PYTHON_USEDEP}]
+   >=dev-python/croniter-1.3.0[${PYTHON_USEDEP}]
+   >=dev-python/msgpack-0.6.0[${PYTHON_USEDEP}]
+   >=dev-python/jinja-2.1[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/pyjwt[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-1.3.0[${PYTHON_USEDEP}]
+   =dev-python/twisted-18.7.0[${PYTHON_USEDEP}]
+   >=dev-python/txaio-2.2.2[${PYTHON_USEDEP}]
+   >=dev-python/unidiff-0.7.5[${PYTHON_USEDEP}]
+   >=dev-python/zope-interface-4.1.1[${PYTHON_USEDEP}]
+   crypt? (
+   >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
+   dev-python/service-identity[${PYTHON_USEDEP}]
+   || (
+   >=dev-python/twisted-18.7.0[${PYTHON_USEDEP},ssl(-)]
+   >=dev-python/twisted-18.7.0[${PYTHON_USEDEP},crypt(-)]
+   )
+   dev-python/idna[${PYTHON_USEDEP}]
+   )
+   irc? (
+   dev-python/txrequests[${PYTHON_USEDEP}]
+   )
+   docker? (
+   >=dev-python/docker-7.0.0[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   )
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   ~dev-util/buildbot-pkg-${PV}[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-worker-${PV}[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
+   >=dev-python/boto3-1.12.48[${PYTHON_USEDEP}]
+   dev-python/lz4[${PYTHON_USEDEP}]
+   dev-python/ldap3[${PYTHON_USEDEP}]
+   >=dev-python/markdown-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/moto-4.2.13[${PYTHON_USEDEP}]
+   dev-python/parameterized[${PYTHON_USEDEP}]
+   d

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/

2024-02-17 Thread David Seifert
commit: a209cd6431bf38f2a93ed92fdb159e7b5a628b97
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat Feb 17 14:35:16 2024 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Feb 17 14:35:16 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a209cd64

dev-util/buildbot: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: David Seifert  gentoo.org>

 .../files/buildbot-3.11.0-importlib.resources.patch | 13 -
 1 file changed, 13 deletions(-)

diff --git a/dev-util/buildbot/files/buildbot-3.11.0-importlib.resources.patch 
b/dev-util/buildbot/files/buildbot-3.11.0-importlib.resources.patch
deleted file mode 100644
index 3854b93fe4b8..
--- a/dev-util/buildbot/files/buildbot-3.11.0-importlib.resources.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-https://github.com/buildbot/buildbot/pull/7270
-We don't use older python then 3.10 so use importlib.resources
 a/buildbot/www/plugin.py   2023-12-27 11:18:13.107479017 +0100
-+++ b/buildbot/www/plugin.py   2023-12-27 11:20:55.710106750 +0100
-@@ -14,7 +14,7 @@
- # Copyright Buildbot Team Members
- 
- 
--import importlib_resources
-+import importlib.resources as importlib_resources
- 
- from twisted.web import static
- 



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2022-09-22 Thread Brian Dolbec
commit: d99f955327514ef544f5deecb4f0ef8dc0bac656
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Sep 23 02:20:35 2022 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Sep 23 03:00:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d99f9553

dev-util/buildbot: Version bump to 3.6.1

Update , confd file

Signed-off-by: Brian Dolbec  gentoo.org>

 dev-util/buildbot/Manifest  |  1 +
 .../{buildbot-.ebuild => buildbot-3.6.1.ebuild} | 17 +++--
 dev-util/buildbot/buildbot-.ebuild  |  2 +-
 dev-util/buildbot/files/buildmaster.confd   |  2 +-
 4 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index 2a4093a0408e..ad7526384cac 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,3 +1,4 @@
 DIST buildbot-3.4.0.tar.gz 2446868 BLAKE2B 
a58b268fd4569105f1c0ba48c9ed86210a3fee4725f167d6b6847960bbb56a092d0c0db427ecf5932a91d44065da8843fbb4046d289800a019b0b1d8b1f53fea
 SHA512 
92e5085862ac37a6c3c059870a3998fbaac2019c48384295f3e209788ea14bddff6704f1b987a8f3b1550c1b0255d228f8a0b2a20b5cb760b22a513db465863b
 DIST buildbot-3.5.0.tar.gz 2450653 BLAKE2B 
0e923f2a3a334241b25c6a151b397356d7ba81ab2ff19c17c50a5996494d0f99fa198b63aa18a27ab60c5ad53c0154494bf4dea4e2bd306f4b709858a64dc3c4
 SHA512 
9730305540db3cdf166fdfc071142061926bbb895aa941046ad25e8350d3c161d4175f3518cd8a3ab51f320b0a5980517e5e53d9f5ddc342492ee56a0f6f266f
 DIST buildbot-3.6.0.tar.gz 2458029 BLAKE2B 
5f41702d4d61fbcbfa878c6febbb89a38da2648403c4fdcab24bde246adc225e9ac3f72eb7dc893e03763f00c2d3548c31b2d6597904032e4b75e660bb1faf72
 SHA512 
c0bec931d08adb1eec51114619d2a085fbef224944a4c0acf3ab396f84d846fd620b84379affee238d02dd90ca1294fdb2b7fb8ea6e82d95c4cfeae93a0b5e73
+DIST buildbot-3.6.1.tar.gz 2458176 BLAKE2B 
4587ed222e2fae424f3c4f275e67e72bf25b0ce88231a29f931582d82fbe93a846f85b14bdc64740939466ccdc3f15dab3774244aa5c0a293250b52b542014ea
 SHA512 
62a993d1acd8bc5cc916f009909b4b099d9f64007fe790dc219104f248bb21e0ab8f1771c354ef61e6d8ba497451cdef5e7a7de17a87cfd1e941b3b49fbf2206

diff --git a/dev-util/buildbot/buildbot-.ebuild 
b/dev-util/buildbot/buildbot-3.6.1.ebuild
similarity index 94%
copy from dev-util/buildbot/buildbot-.ebuild
copy to dev-util/buildbot/buildbot-3.6.1.ebuild
index b0ebb30b9273..9ca1baf06d21 100644
--- a/dev-util/buildbot/buildbot-.ebuild
+++ b/dev-util/buildbot/buildbot-3.6.1.ebuild
@@ -6,17 +6,22 @@ EAPI=8
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_REQ_USE="sqlite"
 PYTHON_COMPAT=( python3_{8..10} )
-EGIT_REPO_URI="https://github.com/buildbot/${PN}.git";
-inherit readme.gentoo-r1 git-r3 systemd distutils-r1
+inherit readme.gentoo-r1 systemd distutils-r1
+
+MY_PV="${PV/_p/.post}"
+MY_P="${PN}-${MY_PV}"
 
 DESCRIPTION="BuildBot build automation system"
 HOMEPAGE="https://buildbot.net/
https://github.com/buildbot/buildbot
https://pypi.org/project/buildbot/";
-S="${S}/master"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~amd64-linux ~x86-linux"
+
 IUSE="crypt docker examples irc test"
 RESTRICT="!test? ( test )"
 
@@ -60,12 +65,12 @@ BDEPEND="
>=dev-python/boto3-1.12.48[${PYTHON_USEDEP}]
dev-python/moto[${PYTHON_USEDEP}]
>=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/msgpack-0.6.0[${PYTHON_USEDEP}]
+   dev-python/parameterized[${PYTHON_USEDEP}]
dev-python/lz4[${PYTHON_USEDEP}]
dev-python/ldap3[${PYTHON_USEDEP}]
-   dev-util/buildbot-pkg[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-pkg-${PV}[${PYTHON_USEDEP}]
dev-util/buildbot-worker[${PYTHON_USEDEP}]
-   dev-util/buildbot-www[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
)"
 
 DOC_CONTENTS="The \"buildbot\" user and the \"buildmaster\" init script has 
been added

diff --git a/dev-util/buildbot/buildbot-.ebuild 
b/dev-util/buildbot/buildbot-.ebuild
index b0ebb30b9273..17faf70a4028 100644
--- a/dev-util/buildbot/buildbot-.ebuild
+++ b/dev-util/buildbot/buildbot-.ebuild
@@ -33,7 +33,7 @@ RDEPEND="
>=dev-python/autobahn-0.16.0[${PYTHON_USEDEP}]
dev-python/pyjwt[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
-   ~dev-util/buildbot-worker-${PV}[${PYTHON_USEDEP}]
+   dev-util/buildbot-worker[${PYTHON_USEDEP}]
crypt? (
>=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
dev-python/service_identity[${PYTHON_USEDEP}]

diff --git a/dev-util/buildbot/files/buildmaster.confd 
b/dev-util/buildbot/files/buildmaster.confd
index eb3185aef358..9bb2eb0328d9 100644
--- a/dev-util/buildbot/files/buildmaster.confd
+++ b/dev-util/buildbot/files/buildmaster.confd
@@ -11,5 +11,5 @@ TWISTD_OPTS=""
 
 #

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/

2022-02-07 Thread Arthur Zamarin
commit: 7d3cf9b344c8ec7a4eb30d3c61ac777c04e6706f
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat Feb  5 18:04:43 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Feb  7 20:47:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d3cf9b3

dev-util/buildbot: remove unused patch

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/24089
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-util/buildbot/files/pypugjs-2.8.0.patch | 83 -
 1 file changed, 83 deletions(-)

diff --git a/dev-util/buildbot/files/pypugjs-2.8.0.patch 
b/dev-util/buildbot/files/pypugjs-2.8.0.patch
deleted file mode 100644
index d34c6fac1af8..
--- a/dev-util/buildbot/files/pypugjs-2.8.0.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-From 26fefa8f8fa7b347e1c86723194de3a4094dc012 Mon Sep 17 00:00:00 2001
-From: Brian Dolbec 
-Date: Sat, 25 Apr 2020 11:53:06 -0700
-Subject: [PATCH] Initial pyjade port to pypugjs
-

- common/code_spelling_ignore_words.txt|  1 +
- master/buildbot/test/unit/test_www_config.py |  8 
- master/buildbot/www/config.py| 10 +-
- master/docs/manual/configuration/www.rst | 10 ++
- master/docs/spelling_wordlist.txt|  2 +-
- master/setup.py  |  4 ++--
- requirements-ci.txt  |  2 +-
- 7 files changed, 20 insertions(+), 17 deletions(-)
-
-diff --git a/buildbot/test/unit/test_www_config.py 
b/buildbot/test/unit/test_www_config.py
-index 23a108e..a8c24ec 100644
 a/buildbot/test/unit/test_www_config.py
-+++ b/buildbot/test/unit/test_www_config.py
-@@ -107,10 +107,10 @@ class IndexResource(TestReactorMixin, www.WwwTestMixin, 
unittest.TestCase):
- def test_parseCustomTemplateDir(self):
- exp = {'views/builds.html': '\n'}
- try:
--# we make the test work if pyjade is present or note
--# It is better than just skip if pyjade is not there
--import pyjade  # pylint: disable=import-outside-toplevel
--[pyjade]
-+# we make the test work if pypugjs is present or note
-+# It is better than just skip if pypugjs is not there
-+import pypugjs  # pylint: disable=import-outside-toplevel
-+[pypugjs]
- exp.update({'plugin/views/plugin.html':
- 'this is 
customized'})
- except ImportError:
-diff --git a/buildbot/www/config.py b/buildbot/www/config.py
-index a021299..50bae4d 100644
 config.py  2020-02-27 13:34:10.0 -0800
-+++ config2.py 2020-05-11 17:26:44.587026761 -0700
-@@ -61,11 +61,11 @@
- res = {}
- allowed_ext = [".html"]
- try:
--import pyjade   # pylint: disable=import-outside-toplevel
-+import pypugjs   # pylint: disable=import-outside-toplevel
- allowed_ext.append(".jade")
- except ImportError:  # pragma: no cover
--log.msg("pyjade not installed. Ignoring .jade files from 
{}".format(template_dir))
-+log.msg("pypugjs not installed. Ignoring .jade files from 
{}".format(template_dir))
--pyjade = None
-+pypugjs = None
- for root, dirs, files in os.walk(template_dir):
- if root == template_dir:
- template_name = posixpath.join("views", "%s.html")
-@@ -86,9 +86,9 @@
- elif ext == ".jade":
- with open(fn) as f:
- jade = f.read()
--parser = pyjade.parser.Parser(jade)
-+parser = pypugjs.parser.Parser(jade)
- block = parser.parse()
--compiler = pyjade.ext.html.Compiler(
-+compiler = pypugjs.ext.html.Compiler(
- block, pretty=False)
- html = compiler.compile()
- res[template_name % (basename,)] = html
-diff --git a/setup.py b/master/setup.py
-index 8fca506..1f32a74 100755
 a/setup.py
-+++ b/setup.py
-@@ -490,8 +490,8 @@ test_deps = [
- # http client libraries
- 'treq',
- 'txrequests',
--# pyjade required for custom templates tests
--'pyjade',
-+# pypugjs required for custom templates tests
-+'pypugjs',
- # boto3 and moto required for running EC2 tests
- 'boto3',
- 'moto',
---
-libgit2 0.99.0
-



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/

2020-09-20 Thread Conrad Kostecki
commit: 3beb3999ac0c353b11e6a33b2cd7856e37fc92e6
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Sep 19 16:22:12 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 20 14:38:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3beb3999

dev-util/buildbot: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/17603
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...-gentoo-to-the-VERSION_ID-check-exclusion.patch | 26 ---
 .../buildbot/files/buildbot-2.8.0.fakedb.patch | 10 ---
 dev-util/buildbot/files/pypugjs.patch  | 84 --
 3 files changed, 120 deletions(-)

diff --git 
a/dev-util/buildbot/files/Add-gentoo-to-the-VERSION_ID-check-exclusion.patch 
b/dev-util/buildbot/files/Add-gentoo-to-the-VERSION_ID-check-exclusion.patch
deleted file mode 100644
index 16fc0a133e1..000
--- a/dev-util/buildbot/files/Add-gentoo-to-the-VERSION_ID-check-exclusion.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From f8d6fe39570a698d80d821a440219f5cd79d8314 Mon Sep 17 00:00:00 2001
-From: Brian Dolbec 
-Date: Tue, 5 Mar 2019 11:21:14 -0800
-Subject: [PATCH] test_buildbot_net_usage.py: Add "gentoo" to the VERSION_ID 
check exclusion
-
-Make the exclusions test into a list (slight speed improvement, easier to 
extend) and add "gentoo".
-
-Signed-off-by: Brian Dolbec 

- buildbot/test/unit/test_buildbot_net_usage_data.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/buildbot/test/unit/test_buildbot_net_usage_data.py 
b/buildbot/test/unit/test_buildbot_net_usage_data.py
-index c347956..e422c55 100644
 a/buildbot/test/unit/test_buildbot_net_usage_data.py
-+++ b/buildbot/test/unit/test_buildbot_net_usage_data.py
-@@ -150,5 +150,5 @@ class Tests(unittest.TestCase):
- self.assertEqual(len(distro), 2)
- self.assertNotIn("unknown", distro[0])
- # Rolling distributions like Arch Linux (arch) does not have 
VERSION_ID
--if distro[0] != "arch":
-+if distro[0] not in ["arch", "gentoo"]:
- self.assertNotIn("unknown", distro[1])
---
-libgit2 0.99.0
-

diff --git a/dev-util/buildbot/files/buildbot-2.8.0.fakedb.patch 
b/dev-util/buildbot/files/buildbot-2.8.0.fakedb.patch
deleted file mode 100644
index 2ce217b0d2e..000
--- a/dev-util/buildbot/files/buildbot-2.8.0.fakedb.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 a/setup.py 2020-06-01 15:14:03.169026527 -0700
-+++ b/setup.py 2020-06-01 15:17:38.619177059 -0700
-@@ -194,6 +194,7 @@
- "buildbot.test",
- "buildbot.test.util",
- "buildbot.test.fake",
-+"buildbot.test.fakedb",
- "buildbot.test.fuzz",
- "buildbot.test.integration",
- "buildbot.test.integration.interop",

diff --git a/dev-util/buildbot/files/pypugjs.patch 
b/dev-util/buildbot/files/pypugjs.patch
deleted file mode 100644
index 3ac99502b5d..000
--- a/dev-util/buildbot/files/pypugjs.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From 26fefa8f8fa7b347e1c86723194de3a4094dc012 Mon Sep 17 00:00:00 2001
-From: Brian Dolbec 
-Date: Sat, 25 Apr 2020 11:53:06 -0700
-Subject: [PATCH] Initial pyjade port to pypugjs
-

- common/code_spelling_ignore_words.txt|  1 +
- master/buildbot/test/unit/test_www_config.py |  8 
- master/buildbot/www/config.py| 10 +-
- master/docs/manual/configuration/www.rst | 10 ++
- master/docs/spelling_wordlist.txt|  2 +-
- master/setup.py  |  4 ++--
- requirements-ci.txt  |  2 +-
- 7 files changed, 20 insertions(+), 17 deletions(-)
-
-diff --git a/buildbot/test/unit/test_www_config.py 
b/buildbot/test/unit/test_www_config.py
-index 23a108e..a8c24ec 100644
 a/buildbot/test/unit/test_www_config.py
-+++ b/buildbot/test/unit/test_www_config.py
-@@ -107,10 +107,10 @@ class IndexResource(TestReactorMixin, www.WwwTestMixin, 
unittest.TestCase):
- def test_parseCustomTemplateDir(self):
- exp = {'views/builds.html': '\n'}
- try:
--# we make the test work if pyjade is present or note
--# It is better than just skip if pyjade is not there
--import pyjade  # pylint: disable=import-outside-toplevel
--[pyjade]
-+# we make the test work if pypugjs is present or note
-+# It is better than just skip if pypugjs is not there
-+import pypugjs  # pylint: disable=import-outside-toplevel
-+[pypugjs]
- exp.update({'plugin/views/plugin.html':
- 'this is 
customized'})
- except ImportError:
-diff --git a/buildbot/www/config.py b/buildbot/www/config.py
-index a021299..50bae4d 100644
 config.py  2020-02-27 13:34:10.0 -0800
-+++ config2.py 2020-05-11 17:26:44.587026761 -0700
-@@ -61,12 +61,12 @@
- res

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/

2020-06-15 Thread Aaron Bauman
commit: a08bdbf3456e2f708b81bc258fe06400a8508c1e
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Jun 15 12:57:58 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Jun 15 16:39:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a08bdbf3

dev-util/buildbot: remove unused patch

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16251
Signed-off-by: Aaron Bauman  gentoo.org>

 .../buildbot/files/Remove-distro-version-test.patch | 21 -
 1 file changed, 21 deletions(-)

diff --git a/dev-util/buildbot/files/Remove-distro-version-test.patch 
b/dev-util/buildbot/files/Remove-distro-version-test.patch
deleted file mode 100644
index c489be25c1c..000
--- a/dev-util/buildbot/files/Remove-distro-version-test.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From b7201f706f9238d642dfe96da89006b437e3760d Mon Sep 17 00:00:00 2001
-From: Brian Dolbec 
-Date: Thu, 26 Oct 2017 12:00:37 -0700
-Subject: [PATCH] Remove distro version test
-

- buildbot/test/unit/test_buildbot_net_usage_data.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/buildbot/test/unit/test_buildbot_net_usage_data.py 
b/master/buildbot/test/unit/test_buildbot_net_usage_data.py
-index 709c804..7885d1b 100644
 a/buildbot/test/unit/test_buildbot_net_usage_data.py
-+++ b/buildbot/test/unit/test_buildbot_net_usage_data.py
-@@ -153,4 +153,3 @@ class Tests(unittest.TestCase):
- distro = linux_distribution()
- self.assertEqual(len(distro), 2)
- self.assertNotIn("unknown", distro[0])
--self.assertNotIn("unknown", distro[1])
---
-libgit2 0.26.0
-



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2020-06-01 Thread Brian Dolbec
commit: bbf522036c56491af480f90d18d3a2fab5463ea0
Author: Brian Dolbec  gentoo  org>
AuthorDate: Mon Jun  1 18:29:26 2020 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon Jun  1 22:57:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbf52203

dev-util/buildbot: Version bump, clean old, update 

Add 2.8.0 release.  Optimize the release and  ebuilds to fix
a dependency issue in the live ebuild.
Clean out the old vulnerable versions.

gentoo-bug: https://bugs.gentoo.org/show_bug.cgi?id=711702
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Brian Dolbec  gentoo.org>

 dev-util/buildbot/Manifest |   5 +-
 dev-util/buildbot/buildbot-0.9.12-r1.ebuild| 180 
 dev-util/buildbot/buildbot-1.1.2.ebuild| 185 -
 ...buildbot-1.3.0.ebuild => buildbot-2.8.0.ebuild} |  72 
 dev-util/buildbot/buildbot-.ebuild |  25 +--
 .../buildbot/files/buildbot-2.8.0.fakedb.patch |  10 ++
 dev-util/buildbot/files/pypugjs-2.8.0.patch|  83 +
 7 files changed, 137 insertions(+), 423 deletions(-)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index 9bdfbaf4fd3..0b13398de21 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,4 +1,3 @@
-DIST buildbot-0.9.12.tar.gz 3057832 BLAKE2B 
8e1748739bacc3c884f353b2a1c798575e3ce5f451a1711ecf88a7c7e517da86d2e791748d31468a2bb07369022e96cb568518b7a8ce1d9e1cece0b6ab77eec8
 SHA512 
62459918267297b31b2a6416f72794c7a4ebdcb60de04ece1681f6b8be9debf161716cc70ad843fd468b23e02c521c0a0783a5a1e119d75648e107691d6b908d
-DIST buildbot-1.1.2.tar.gz 3101168 BLAKE2B 
35ec56440014015850a69324d475c4ca9555ad90da85b26a7a43eca74f08361137021aec72ddca37cbb24f21519ebf45948e66214291f356b4a1fbada7c0b3b8
 SHA512 
14c28d6fae18a10d89d41509635188d881ac76e7b61758481a9afbb22eb384d7ab5080383242e5850af13bfe46877985a91036270c3c4fbf01eafee5b7699815
-DIST buildbot-1.3.0.tar.gz 3119185 BLAKE2B 
d366b83baad7e865481535a2462ceb222aadce6c90a6229e82a72bf86518b8ebb0624d8ac8b64867783d58b6e9033b942a1ccd31fd6664a2b527eac9f11ab852
 SHA512 
e5ecf3eafe428a188c2410d270ee9bd5afc39122e62d35747288cf85347368ab4a94190b4ff6fe687269dc19cc7b91d33be8d3e3b637741e421a2cbd83572830
 DIST buildbot-2.7.0.tar.gz 3175050 BLAKE2B 
0a41eccaa4ca8df6396455049e8c09a1b2fe6cde3072da7fd3715f2769015944e8880f41dbe6750dd7b26bd863fb82f8e8d8c6540f9e1bf3ea4378f11adc973d
 SHA512 
9946fe0b1591d51e5136d9458526918e872174afee79b5f1c333823ef1d2ddae66f017e9b57e26a2451da7ca7672720f32544c606ce5652d0825fae563779669
+DIST buildbot-2.8.0-fakedb.tar.xz 16204 BLAKE2B 
741676e2c9117b1ab174ce49747bdfcd07766ad3e471e308398dff476f167fd231b7772c2f02002cbafb27e2ef535242d84d5aa84f4bc8942d4d216b2d5bf1f6
 SHA512 
c2b00d8621b3a1e521f6c17e902ae331b606dda3d319187895f26629dbdaf50caefc5d49fb150fb780e682ae431515c7ded4950d62448e8a73b8efba821c0fa1
+DIST buildbot-2.8.0.tar.gz 3162882 BLAKE2B 
19789f1fe9f572c978a1843a98cd01d752a614d89eb29f2de9db750808d1f96d7893b39d703f37cc0e81e022267c08603c86d59a5902d65194e236f7170d6b30
 SHA512 
18af8fe1bda6f7014f514bfd112ccf9837194c0e42cbdabaaa6c6202660670964421feff3e92e9dca4cf960f69a4bde9b3666287b54ef7e912284a0471dcc2b6

diff --git a/dev-util/buildbot/buildbot-0.9.12-r1.ebuild 
b/dev-util/buildbot/buildbot-0.9.12-r1.ebuild
deleted file mode 100644
index c56a3675fcf..000
--- a/dev-util/buildbot/buildbot-0.9.12-r1.ebuild
+++ /dev/null
@@ -1,180 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python3_6 )
-
-EGIT_REPO_URI="https://github.com/buildbot/${PN}.git";
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit readme.gentoo-r1 user systemd distutils-r1
-
-MY_PV="${PV/_p/p}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="BuildBot build automation system"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot/";
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-
-IUSE="crypt examples irc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/jinja-2.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP}]
-   >=dev-python/autobahn-0.16.0[${PYTHON_USEDEP}]
-   >=dev-python/sqlalchemy-0.8[${PYTHON_USEDEP}]
-   >=dev-python/sqlalchemy-migrate-0.9[${PYTHON_USEDEP}]
-   dev-python/future[${PYTHON_USEDEP}]
-   >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
-   >=dev-python/txaio-2.2.2[${PYTHON_USEDEP}]
-   dev-python/pyjwt[${PYTHON_USEDEP}]
-   >=dev-python/zope-interface-4.1.1[${PYTHON_USEDEP}]
-   ~dev-util/buildbot-worker-${PV}[${PYTHON_USEDEP}]
-   crypt? (
-   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP},crypt]
-   >=dev-python/pyopenssl-16.

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/

2019-02-26 Thread Aaron Bauman
commit: 06a5475f28a79c335d45c2afc8f89779161c83ac
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Feb 18 17:33:50 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Feb 27 05:35:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06a5475f

dev-util/buildbot: remove unused patches

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11098
Signed-off-by: Aaron Bauman  gentoo.org>

 ...uildbot-0.9.15_p1-buildbotworkerdocker.py.patch | 32 --
 .../files/disable-test_userpass_wait.patch | 24 
 2 files changed, 56 deletions(-)

diff --git 
a/dev-util/buildbot/files/buildbot-0.9.15_p1-buildbotworkerdocker.py.patch 
b/dev-util/buildbot/files/buildbot-0.9.15_p1-buildbotworkerdocker.py.patch
deleted file mode 100644
index db08d7a45dd..000
--- a/dev-util/buildbot/files/buildbot-0.9.15_p1-buildbotworkerdocker.py.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 7051ebdac8c8a9054e8a37ab7dd8fb6f0ac1affb Mon Sep 17 00:00:00 2001
-From: Brian Dolbec 
-Date: Mon, 15 Jan 2018 13:50:36 -0800
-Subject: [PATCH] master/buildbot/worker/docker.py: Fix test fail when docker
- is not installed
-
-This fixes numerous tracebacks (note, only partial traceback):
-
-  File "/usr/lib64/python3.6/site-packages/buildbot/worker/docker.py", line 
259, in _thd_start_instance
-if docker_py_version >= 2.2:
-builtins.NameError: name 'docker_py_version' is not defined
-
-With this patch, the tests pass.

- master/buildbot/worker/docker.py | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/buildbot/worker/docker.py b/master/buildbot/worker/docker.py
-index 62e30785f..e558d69ff 100644
 a/buildbot/worker/docker.py
-+++ b/buildbot/worker/docker.py
-@@ -41,6 +41,7 @@ try:
- except ImportError:
- docker = None
- client = None
-+docker_py_version = 0.0
- 
- 
- def _handle_stream_line(line):
--- 
-2.15.1
-

diff --git a/dev-util/buildbot/files/disable-test_userpass_wait.patch 
b/dev-util/buildbot/files/disable-test_userpass_wait.patch
deleted file mode 100644
index e7b9d0a59e3..000
--- a/dev-util/buildbot/files/disable-test_userpass_wait.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From e24640e1043fe8914a2b86842645604a3d9e9698 Mon Sep 17 00:00:00 2001
-From: Brian Dolbec 
-Date: Tue, 13 Mar 2018 19:59:13 +
-Subject: [PATCH] disable test-userpass-wait
-

- master/buildbot/test/integration/test_try_client.py | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/buildbot/test/integration/test_try_client.py 
b/buildbot/test/integration/test_try_client.py
-index 9bdc7a63a..48fcb1573 100644
 a/buildbot/test/integration/test_try_client.py
-+++ b/buildbot/test/integration/test_try_client.py
-@@ -142,6 +142,8 @@ class Schedulers(RunMasterBase, www.RequiresWwwMixin):
- 
- @defer.inlineCallbacks
- def test_userpass_wait(self):
-+if os.environ.get("DISABLE_TEST", False):
-+return
- yield self.startMaster(
- trysched.Try_Userpass('try', ['a'], 0, [('u', b'p')]))
- yield self.runClient({
--- 
-2.13.6



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/

2018-07-26 Thread Brian Dolbec
commit: d32fc9a088a1abd9c6f9462822c3f5aac80f061f
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 18:14:24 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 18:14:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d32fc9a0

dev-util/buildbot: Fix missed checkconfig section bug 661618

Adds RUNTIME_PYTHON default setting to the init.d script

Gentoo-bug: https://bugs.gentoo.org/661618
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot/files/buildmaster.initd | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-util/buildbot/files/buildmaster.initd 
b/dev-util/buildbot/files/buildmaster.initd
index 933c6e2b4e5..b75ae34830d 100644
--- a/dev-util/buildbot/files/buildmaster.initd
+++ b/dev-util/buildbot/files/buildmaster.initd
@@ -32,6 +32,9 @@ checkconfig() {
eerror "${BUILDMASTER_PATH} does not contain buildbot.tac"
return 1
fi
+   if [ ! -e "${RUNTIME_PYTHON}" ]; then
+   RUNTIME_PYTHON="/usr/bin/python"
+   fi
 }
 
 start() {



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2018-06-27 Thread Brian Dolbec
commit: 2e402f7f0de545cd4277d95650d48d832fa2ca67
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sun Jun 17 10:33:03 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Wed Jun 27 15:24:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e402f7f

dev-util/buildbot: Version bump, removed doc use flag

Docs generation has been broken last several versions,
blockdiag dep is failing tests.
Bump EAPI.
Add RUNTIME_PYTHON setting in /etc/conf.d/buildbot to
control the desired python version used.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot/Manifest|   1 +
 dev-util/buildbot/buildbot-1.1.2.ebuild   | 185 ++
 dev-util/buildbot/files/buildmaster.confd |   5 +
 dev-util/buildbot/files/buildmaster.initd |   4 +-
 4 files changed, 193 insertions(+), 2 deletions(-)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index d2dbae0ef33..fc86e187eef 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -4,3 +4,4 @@ DIST buildbot-0.9.13.tar.gz 3061713 BLAKE2B 
fac74d610bf0ff1cfeea1c59c46e95339d6b
 DIST buildbot-0.9.15.post1.tar.gz 3088947 BLAKE2B 
c9a0265d3df2a9ac01872fc7106b5b787334bd899a43fcdb6ad06aab5e0e8f1ddb4374bf5211f251f26985c3b11a0b981bdd23fb668ac1717af36443831648e6
 SHA512 
c5c72132fd8446fbb14467851063d192dbb817506163eacc3022d563698453c66706a895613ca1c17502dd25957b31f6409996497d2e7646ab2fdbb3fb55c31d
 DIST buildbot-1.1.0.docs.tar.xz 23932 BLAKE2B 
81da8b86bb269efd2cd3f9146f3d9b41d64b28fdd0c878708c323d040a7e773cd277a18c82b1ef3cb07759ba8aedbc604e1de84f6477205b1708c28b6e86831e
 SHA512 
511d244ffd205989047b4514b164e194b30fe4e0513d3bda776fb4d7a1a5bf42d8b7f00540b88e427838ab43f45686a83e556687ab75ce55eae6b834426a8ef7
 DIST buildbot-1.1.0.tar.gz 3098781 BLAKE2B 
5a4ba8b641765fd58c3b5e788fc20aa1fb6195655ce2d82929f0f62ff48d20672f21efe0c413387e583d095c3ffcee1055a287016fe87ec1f3eb6b0ccdefdccb
 SHA512 
f850ba2cd93d54a8abc97503719f93f69dfdc3d03b519e2d05c02bdc11893529eb51d74b6584555689281aedb71c3aa6c23141cf5fbc68ae97e09f1c89b2c94c
+DIST buildbot-1.1.2.tar.gz 3101168 BLAKE2B 
35ec56440014015850a69324d475c4ca9555ad90da85b26a7a43eca74f08361137021aec72ddca37cbb24f21519ebf45948e66214291f356b4a1fbada7c0b3b8
 SHA512 
14c28d6fae18a10d89d41509635188d881ac76e7b61758481a9afbb22eb384d7ab5080383242e5850af13bfe46877985a91036270c3c4fbf01eafee5b7699815

diff --git a/dev-util/buildbot/buildbot-1.1.2.ebuild 
b/dev-util/buildbot/buildbot-1.1.2.ebuild
new file mode 100644
index 000..b8140223d81
--- /dev/null
+++ b/dev-util/buildbot/buildbot-1.1.2.ebuild
@@ -0,0 +1,185 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+EGIT_REPO_URI="https://github.com/buildbot/${PN}.git";
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit readme.gentoo-r1 user systemd distutils-r1
+
+MY_PV="${PV/_p/.post}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="BuildBot build automation system"
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot/";
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="crypt docker examples irc test"
+
+RDEPEND="
+   >=dev-python/jinja-2.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP}]
+   >=dev-python/autobahn-0.16.0[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-0.8[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-migrate-0.9[${PYTHON_USEDEP}]
+   dev-python/future[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
+   >=dev-python/txaio-2.2.2[${PYTHON_USEDEP}]
+   dev-python/pyjwt[${PYTHON_USEDEP}]
+   >=dev-python/zope-interface-4.1.1[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-worker-${PV}[${PYTHON_USEDEP}]
+   crypt? (
+   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP},crypt]
+   >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
+   dev-python/idna[${PYTHON_USEDEP}]
+   dev-python/service_identity[${PYTHON_USEDEP}]
+   )
+   irc? (
+   dev-python/txrequests[${PYTHON_USEDEP}]
+   )
+   docker? (
+   >=dev-python/docker-py-2.2.0[${PYTHON_USEDEP}]
+   )
+"
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
+   >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
+   dev-python/moto[${PYTHON_USEDEP}]
+   dev-python/boto3[${PYTHON_USEDEP}]
+   dev-python/pyjade[${PYTHON_USEDEP}]
+   dev-python/txgithub[${PYTHON_USEDEP}]
+   dev-python/txrequests[${PYTHON_USEDEP}]
+   dev-python/lz4[${PYTHON_USEDEP}]
+ 

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2018-03-13 Thread Brian Dolbec
commit: 52fe9d5cc59af1769e8db064d343a26a5fa862f5
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Mar 13 20:31:14 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Mar 13 23:56:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52fe9d5c

dev-util/buildbot: Version bump, update  ebuild

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-util/buildbot/Manifest |  2 ++
 ...{buildbot-.ebuild => buildbot-1.1.0.ebuild} | 20 ++
 dev-util/buildbot/buildbot-.ebuild |  8 ++--
 .../files/disable-test_userpass_wait.patch | 24 ++
 4 files changed, 48 insertions(+), 6 deletions(-)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index d2609b51e79..c02fff4cbb2 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -4,3 +4,5 @@ DIST buildbot-0.9.11.tar.gz 3096455 BLAKE2B 
2582fd27e89fc684911926c272630bfdb3fb
 DIST buildbot-0.9.12.tar.gz 3057832 BLAKE2B 
8e1748739bacc3c884f353b2a1c798575e3ce5f451a1711ecf88a7c7e517da86d2e791748d31468a2bb07369022e96cb568518b7a8ce1d9e1cece0b6ab77eec8
 SHA512 
62459918267297b31b2a6416f72794c7a4ebdcb60de04ece1681f6b8be9debf161716cc70ad843fd468b23e02c521c0a0783a5a1e119d75648e107691d6b908d
 DIST buildbot-0.9.13.tar.gz 3061713 BLAKE2B 
fac74d610bf0ff1cfeea1c59c46e95339d6b080725f6b01258921175b8036daeef23dfd3bf2a71fe838d43b9de3a3141ff9cec0e1c7e609f21c53f51b91d
 SHA512 
b1cf176d01e04bc219be8ffa787a857aec7bcfb930c3e9cabe0410fca60d826c35e74d277cd5764fcd3c6183ea5f19bae195c09ad401cdd948bda500789f2ade
 DIST buildbot-0.9.15.post1.tar.gz 3088947 BLAKE2B 
c9a0265d3df2a9ac01872fc7106b5b787334bd899a43fcdb6ad06aab5e0e8f1ddb4374bf5211f251f26985c3b11a0b981bdd23fb668ac1717af36443831648e6
 SHA512 
c5c72132fd8446fbb14467851063d192dbb817506163eacc3022d563698453c66706a895613ca1c17502dd25957b31f6409996497d2e7646ab2fdbb3fb55c31d
+DIST buildbot-1.1.0.docs.tar.xz 23932 BLAKE2B 
81da8b86bb269efd2cd3f9146f3d9b41d64b28fdd0c878708c323d040a7e773cd277a18c82b1ef3cb07759ba8aedbc604e1de84f6477205b1708c28b6e86831e
 SHA512 
511d244ffd205989047b4514b164e194b30fe4e0513d3bda776fb4d7a1a5bf42d8b7f00540b88e427838ab43f45686a83e556687ab75ce55eae6b834426a8ef7
+DIST buildbot-1.1.0.tar.gz 3098781 BLAKE2B 
5a4ba8b641765fd58c3b5e788fc20aa1fb6195655ce2d82929f0f62ff48d20672f21efe0c413387e583d095c3ffcee1055a287016fe87ec1f3eb6b0ccdefdccb
 SHA512 
f850ba2cd93d54a8abc97503719f93f69dfdc3d03b519e2d05c02bdc11893529eb51d74b6584555689281aedb71c3aa6c23141cf5fbc68ae97e09f1c89b2c94c

diff --git a/dev-util/buildbot/buildbot-.ebuild 
b/dev-util/buildbot/buildbot-1.1.0.ebuild
similarity index 95%
copy from dev-util/buildbot/buildbot-.ebuild
copy to dev-util/buildbot/buildbot-1.1.0.ebuild
index 4d20f12a6a2..8c8f64302bd 100644
--- a/dev-util/buildbot/buildbot-.ebuild
+++ b/dev-util/buildbot/buildbot-1.1.0.ebuild
@@ -15,7 +15,10 @@ MY_P="${PN}-${MY_PV}"
 
 DESCRIPTION="BuildBot build automation system"
 HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.python.org/pypi/buildbot";
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+SRC_URI="
+   mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz
+   https://dev.gentoo.org/~dolsen/distfiles/buildbot-1.1.0.docs.tar.xz
+"
 
 LICENSE="GPL-2"
 SLOT="0"
@@ -62,14 +65,12 @@ DEPEND="${RDEPEND}
>=dev-python/docutils-0.8[${PYTHON_USEDEP}]
=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
>=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
dev-python/moto[${PYTHON_USEDEP}]
dev-python/boto3[${PYTHON_USEDEP}]
-   dev-python/ramlfications[${PYTHON_USEDEP}]
dev-python/pyjade[${PYTHON_USEDEP}]
dev-python/txgithub[${PYTHON_USEDEP}]
dev-python/txrequests[${PYTHON_USEDEP}]
@@ -83,6 +84,17 @@ DEPEND="${RDEPEND}
 S=${WORKDIR}/${MY_P}
 [[ ${PV} == * ]] && S=${S}/master
 
+PATCHES=(
+   "${FILESDIR}/Remove-distro-version-test.patch"
+   "${FILESDIR}/disable-test_userpass_wait.patch"
+)
+
+src_unpack() {
+   unpack ${MY_P}.tar.gz
+   cd ${MY_P}
+   unpack buildbot-1.1.0.docs.tar.xz
+}
+
 pkg_setup() {
enewuser buildbot
 
@@ -130,7 +142,7 @@ src_install() {
 
 python_test() {
distutils_install_for_testing
-
+   export DISABLE_TEST=true
esetup.py test || die "Tests failed under ${EPYTHON}"
 }
 

diff --git a/dev-util/buildbot/buildbot-.ebuild 
b/dev-util/buildbot/buildbot-.ebuild
index 4d20f12a6a2..41609b45360 100644
--- a/dev-util/buildbot/buildbot-.ebuild
+++ b/dev-util/buildbot/buildbot-.ebuild
@@ -62,14 +62,12 @@ DEPEND="${RDEPEND}
>=dev-python/docutils-0.8[${PYTHON_USEDEP}]
=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
>=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
dev-python/moto[${PYTHON_USEDEP}]
  

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/

2017-11-04 Thread Michael Palimaka
commit: 1ba78e912b9035f74dc56d024f24b743db5b0ce4
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Oct 30 18:58:08 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov  4 07:25:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba78e91

dev-util/buildbot: remove unused patch/file

 dev-util/buildbot/files/buildbot-0.9.4.docs.patch | 130 --
 dev-util/buildbot/files/buildbot.service  |  16 ---
 2 files changed, 146 deletions(-)

diff --git a/dev-util/buildbot/files/buildbot-0.9.4.docs.patch 
b/dev-util/buildbot/files/buildbot-0.9.4.docs.patch
deleted file mode 100644
index 1a27713cb93..000
--- a/dev-util/buildbot/files/buildbot-0.9.4.docs.patch
+++ /dev/null
@@ -1,130 +0,0 @@
-diff --git a/docs/Makefile b/docs/Makefile
-index 55637302d..c4fde481e 100644
 a/docs/Makefile
-+++ b/docs/Makefile
-@@ -24,7 +24,7 @@ PAPEROPT_a4 = -D latex_paper_size=a4
- PAPEROPT_letter = -D latex_paper_size=letter
- ALLSPHINXOPTS   = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
- 
--.PHONY: help clean towncrier html dirhtml singlehtml pickle json htmlhelp 
qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
-+.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp 
devhelp epub latex latexpdf text man changes linkcheck doctest
- 
- help:
-   @echo "Please use \`make ' where  is one of"
-@@ -51,38 +51,38 @@ clean:
- towncrier:
-   cd ../../; towncrier --draft |grep  'No significant changes.' || yes n 
| towncrier
- 
--html: conf.py towncrier
-+html: conf.py
-   $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
-   @echo
-   @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
- 
--dirhtml: conf.py towncrier
-+dirhtml: conf.py
-   $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
-   @echo
-   @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
- 
--singlehtml: conf.py towncrier
-+singlehtml: conf.py
-   $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
-   @echo
-   @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
- 
--pickle: conf.py towncrier
-+pickle: conf.py
-   $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
-   @echo
-   @echo "Build finished; now you can process the pickle files."
- 
--json: conf.py towncrier
-+json: conf.py
-   $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
-   @echo
-   @echo "Build finished; now you can process the JSON files."
- 
--htmlhelp: conf.py towncrier
-+htmlhelp: conf.py
-   $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
-   @echo
-   @echo "Build finished; now you can run HTML Help Workshop with the" \
- ".hhp project file in $(BUILDDIR)/htmlhelp."
- 
--qthelp: conf.py towncrier
-+qthelp: conf.py
-   $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
-   @echo
-   @echo "Build finished; now you can run "qcollectiongenerator" with the" 
\
-@@ -91,7 +91,7 @@ qthelp: conf.py towncrier
-   @echo "To view the help file:"
-   @echo "# assistant -collectionFile 
$(BUILDDIR)/qthelp/BuildbotTutorial.qhc"
- 
--devhelp: conf.py towncrier
-+devhelp: conf.py
-   $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
-   @echo
-   @echo "Build finished."
-@@ -100,52 +100,52 @@ devhelp: conf.py towncrier
-   @echo "# ln -s $(BUILDDIR)/devhelp 
$$HOME/.local/share/devhelp/BuildbotTutorial"
-   @echo "# devhelp"
- 
--epub: conf.py towncrier
-+epub: conf.py
-   $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
-   @echo
-   @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
- 
--latex: conf.py towncrier
-+latex: conf.py
-   $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
-   @echo
-   @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
-   @echo "Run \`make' in that directory to run these through (pdf)latex" \
- "(use \`make latexpdf' here to do that automatically)."
- 
--latexpdf: conf.py towncrier
-+latexpdf: conf.py
-   $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
-   @echo "Running LaTeX files through pdflatex..."
-   make -C $(BUILDDIR)/latex all-pdf
-   @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
- 
--text: conf.py towncrier
-+text: conf.py
-   $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
-   @echo
-   @echo "Build finished. The text files are in $(BUILDDIR)/text."
- 
--man: conf.py towncrier
-+man: conf.py
-   $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
-   @echo
-   @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
- 
--changes: conf.py towncrier
-+changes: conf.py
-   $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
-   @echo
-   @echo "The overview file i

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2017-10-26 Thread Brian Dolbec
commit: 6728c73b7a88f1cc229ae0715a72671178d17e8d
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Oct 27 01:50:33 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Oct 27 02:28:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6728c73b

dev-util/buildbot: Version bump, remove old versions, fix bug 634716

Remove no longer shipped docker example.
Remove old versions.
Update  deps
Bump eapi.

Package-Manager: Portage-2.3.12, Repoman-2.3.4

 dev-util/buildbot/Manifest |   5 +-
 dev-util/buildbot/buildbot-0.9.10.ebuild   |   2 +-
 dev-util/buildbot/buildbot-0.9.11.ebuild   |   2 +-
 ...uildbot-0.9.8.ebuild => buildbot-0.9.12.ebuild} |  36 ++--
 dev-util/buildbot/buildbot-0.9.4.ebuild| 216 -
 dev-util/buildbot/buildbot-0.9.7.ebuild| 193 --
 dev-util/buildbot/buildbot-.ebuild |   8 +-
 .../files/Remove-distro-version-test.patch |  21 ++
 8 files changed, 52 insertions(+), 431 deletions(-)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index 22d255baed0..1891ffcf257 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,7 +1,4 @@
 DIST buildbot-0.8.12.tar.gz 4834352 SHA256 
c6b66976dff712268566574d57131ec15e5682f6d4390cd5c8559bab0980c4d6 SHA512 
18c5144132fb033f3581d3c494d5e8ff35d3e8b1548764452ce9ae543d710e58a2c6e3e8e46a0ef237804f9a6a45485890ae4616ab655fb00d4ccf328d6f6645
 WHIRLPOOL 
5754b7c0278fb5e7da8a7dd66253f6f4d12f54c125f6a78aa9018a2b6b22fd88a27e79e6821ab05e4cd9e87bf0dd08c3c73c7914d4c499ac13c48ca232ed21c8
 DIST buildbot-0.9.10.tar.gz 3112750 SHA256 
8c5ed75f3f16f4ff0f2c9e3f9b091acb5e6e1c0ef68ffa8f687a55413a833143 SHA512 
95b489d5f7d0bc00ae5f71cd056b36fe689c4dc9408a7a0e4b1b45e036c9074832c8e3755981520a8c85a791b50f7f40765962c12a71887198dc0bbd0140d0e0
 WHIRLPOOL 
8d62d0aecdea4122709693ce48c72d5dbac2e946a6923a7ea41842dc759369a678e21a8abb0b4ff825e1ba559a9d490bcc4ff56fc5568a4f7f2d94b4f6c5f027
 DIST buildbot-0.9.11.tar.gz 3096455 SHA256 
9be352c0aab5d1520fedac8d6b19aadda4f48763ac7f72bb00e5f8cc51107ee8 SHA512 
c68a657213b0f878d8c2b4e6ebe18cfc9b3e19a4eecaf085fd3e5631bbb78dc9bd14e6b3d4b576e78eb1631329c86331371200a350d33696204fb76e7beae81c
 WHIRLPOOL 
3b1804d7920e110ca1ae1d04e7a7c38fef0db4a2c7b448a21175a0f2693ba8725d228d27720ffdad976071d143e4158b41dc527d120e2c4928df3fdbd765285f
-DIST buildbot-0.9.4.docs.tar.xz 69224 SHA256 
69fc33762a885568b02c42954a64d62d28bcb750b3aed011c3da8a9f84c13371 SHA512 
906e551e0db32c8a0b4010b3b8b00c4776e3d1b7d7381e4dc0ccf01d361184e4605c3ab0ecaf4e42207bd73c3e72f8a570a4d4c29db72f4d68241abf48741d7e
 WHIRLPOOL 
95f263e0b9ab22a649118f362d866b08cbdf62511f2a1f9bd6a7265103f174e35d0c8d86ad6a3b7dd5fd0b4277d60dbd25801c5e6f7e414e7fa634c241dae987
-DIST buildbot-0.9.4.tar.gz 3020851 SHA256 
068161cd9ada10b87f40117c768a37ce796ebf5e7bf08f224f4c7ded88cd7472 SHA512 
938a94192560b989a277d9650c50781d7e7c116bc5e2010ccb2e655df757de0ee254369531b2f432c835c0285c724e52d999a393d0ce1b104d4b9dcc5c6687da
 WHIRLPOOL 
0ffe61b82ee93b78cdb3cb74ef96d5a3547e0fcab9ec8093b59a7212c5e2a1ad16eff046306bffcc0ea63b2e0bf2df1e54b5a0874dc78e27744db2088ccac804
-DIST buildbot-0.9.7.tar.gz 3092434 SHA256 
8fcbf0e6536e5d60407f59d14f96d5f8386cd91846a4fa47b4336d71551a9e33 SHA512 
3fd2b488cabac37e297bb1a475cdb115f261324a22ec4d6fbcf8dc5bfb6ee135fab3763998433be8795581d476f69e2adb6f42d248bf2131a42eecfc1667202a
 WHIRLPOOL 
427d4c1c452f767550a3d2731b2e34480c399dcf50e57d4fb69f0a350f381e3e7ecc47d712fc8fbb99afcf8b230c7bd3afe8437ec3b24bf9ddbf7d35b4d1caad
-DIST buildbot-0.9.8.tar.gz 3101418 SHA256 
39a2f7df458ec9be1009cf90a02d732d142a2ec3fbc0404e4f3fce4b8a4c3af7 SHA512 
88800bad542d26aee6df348021faf5f76f36c250e9fb85c9abe3af7f13ec87fcae5727c8633772205f5c024709fd39b05d1d9c3aa1374b4ca72a528b5ec3ba83
 WHIRLPOOL 
fafb46f6d6bc10f6073567cd6a6894cd67d61c4ff537b342060319874eb22ea45d816f6b764f0b9f841f9b7a5e127481a85dbb4abbacd228a8168a5e3e948b2b
+DIST buildbot-0.9.12.tar.gz 3057832 SHA256 
0e8a75059dd8d04112ae77391b979432a3b5efb6e80ec60bbe110d8d9d983835 SHA512 
62459918267297b31b2a6416f72794c7a4ebdcb60de04ece1681f6b8be9debf161716cc70ad843fd468b23e02c521c0a0783a5a1e119d75648e107691d6b908d
 WHIRLPOOL 
0e29078f6d67c1996c6fa389790d3c89dbdd13f6926882df16286a33b95e275b6436865815d225d1b243a1cfefe4948ebcaa2700ee7a003b449ccac4a32b62e7

diff --git a/dev-util/buildbot/buildbot-0.9.10.ebuild 
b/dev-util/buildbot/buildbot-0.9.10.ebuild
index 0f493ccb8ff..ec293dba893 100644
--- a/dev-util/buildbot/buildbot-0.9.10.ebuild
+++ b/dev-util/buildbot/buildbot-0.9.10.ebuild
@@ -121,7 +121,7 @@ src_install() {
 
if use examples; then
insinto /usr/share/doc/${PF}
-   doins -r docker docs/examples
+   doins -r docs/examples
fi
 
newconfd "${FILESDIR}/buildmaster.confd" buildmaster

diff --git a/dev-util/buildbot/buildbot-0.9.11.ebuild 
b/dev-util/buildbot/buildbot-0.9.11.ebuild
index 694b31c8f11..e0acf3

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2017-05-15 Thread Brian Dolbec
commit: 30e15e5008438c36161855ff0a51ad1c637a50e6
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue May 16 01:57:21 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue May 16 02:07:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30e15e50

dev-util/buildbot: Version bump, adds py3.5 capability

Clean older versions.

Package-Manager: Portage-2.3.5, Repoman-2.3.2_p30

 dev-util/buildbot/Manifest |6 +-
 dev-util/buildbot/buildbot-0.9.0_p1.ebuild |  199 
 dev-util/buildbot/buildbot-0.9.1.ebuild|  199 
 dev-util/buildbot/buildbot-0.9.2.ebuild|  222 -
 dev-util/buildbot/buildbot-0.9.4.ebuild|4 +-
 ...buildbot-0.9.3.ebuild => buildbot-0.9.7.ebuild} |   70 +-
 dev-util/buildbot/buildbot-.ebuild |   44 +-
 .../files/buildbot-0.9.3-json-import.patch | 1000 
 .../buildbot-0.9.Addmissedtestingtemplates.patch   |   25 -
 9 files changed, 43 insertions(+), 1726 deletions(-)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index d8f979ee5da..6dc7554013d 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,9 +1,5 @@
 DIST buildbot-0.8.10.tar.gz 4822307 SHA256 
c4964d2ebd81cb80a14cb058fb2aab0572a1d8d86672d514e775b42deb08a5f4 SHA512 
e148a1670a56837587d858d1697fe117661cbbfedab42bf7be905f9e8e4266e4ff0170b0cd81aed61234d30497a05427061c3084033f09811d0bc306b200661b
 WHIRLPOOL 
26397b6f914266201aba4feb4df7353facad4fd0f51bdf7e35cf25205c45eadcf83f24c265e540b13d327750ce9561362be6a5aa237152cf1298d970c504f76c
 DIST buildbot-0.8.12.tar.gz 4834352 SHA256 
c6b66976dff712268566574d57131ec15e5682f6d4390cd5c8559bab0980c4d6 SHA512 
18c5144132fb033f3581d3c494d5e8ff35d3e8b1548764452ce9ae543d710e58a2c6e3e8e46a0ef237804f9a6a45485890ae4616ab655fb00d4ccf328d6f6645
 WHIRLPOOL 
5754b7c0278fb5e7da8a7dd66253f6f4d12f54c125f6a78aa9018a2b6b22fd88a27e79e6821ab05e4cd9e87bf0dd08c3c73c7914d4c499ac13c48ca232ed21c8
-DIST buildbot-0.9.0.post1.tar.gz 3013406 SHA256 
afd8229c9fd33daa6d8227cd665c75b1b25c47ffcc4046ab5fd5b290ccd536a3 SHA512 
0b171ca6ed15b15b4df23d0618cb7d98f6ae922efaa1e35a9458efaaf676b80a6ff3be36231b8ca31cadf89c3968425c560a0bff3630e8792d179462eba0da67
 WHIRLPOOL 
e440826e4a027b42d28c0f3a0afca3c46ec5dc0b4d629fcef75de4b3350cffa2208e0024983f0ffebd1df38a5d860c6bd541fc1c3e28f8b6669ee93a4d4be8b4
-DIST buildbot-0.9.1.tar.gz 3051975 SHA256 
a9f385f66f5cc3021f4cbfce92496673ebf9171578fa9e5ae4f66732276d64ce SHA512 
c3b845a3607c5eaa0a5076755bc0e285ba7c6809f9d7934fab7c6cf8299610e921034656cf3792113961176a821138c6d069122d4d1f1698f16badf3ef9a0dea
 WHIRLPOOL 
6767878665f09ff7b6219ddcda73487b441f3e33ce580fc2df2f16d430217d4ac38b93e22a3f3abd9c8380ac6e6c93de6767faec1aa5615f82fbe8d8e20759e1
-DIST buildbot-0.9.2.tar.gz 3026977 SHA256 
d33ec059941cf830c8f7b7f336a76e32e7122e2690a27b784efeddc6dbf4564a SHA512 
a1c6345bcceb5c8f4ed600542625eee81e59af00a1b12054fe77e3b4ed5536b7004fcbd07cfc96baa3061193eb79e4290e056cf7157b71831370654c057a2c57
 WHIRLPOOL 
075a00d85df5321180345348a02ac12cc8a1bea36d6e60617ebe54de71ce5a989fcf009822834dad1994a6f83ebb5c6132f350902fd31d5b279c5c13014bb4b9
-DIST buildbot-0.9.3.tar.gz 3031033 SHA256 
c2bc6a8139b0f97d304bfa047a4c414e42ea12ba94e34d82ae7cb356a69d87fb SHA512 
a6f18e88c33fe1eafe0b9b154fb77f0d93db71145faab527ecd5ce53fcbbff48b915de4a02461da87eefbd58a649a56d3a9b16ba759d978e70a70898a15681b7
 WHIRLPOOL 
b62fd5bea0b647b703674024e50731e7713e9488dec570d8e42beabaa2135a81349b955164cf01898b12ab0123d9a8f3b76e3364f65003b8af85a54755b6ad22
 DIST buildbot-0.9.4.docs.tar.xz 69224 SHA256 
69fc33762a885568b02c42954a64d62d28bcb750b3aed011c3da8a9f84c13371 SHA512 
906e551e0db32c8a0b4010b3b8b00c4776e3d1b7d7381e4dc0ccf01d361184e4605c3ab0ecaf4e42207bd73c3e72f8a570a4d4c29db72f4d68241abf48741d7e
 WHIRLPOOL 
95f263e0b9ab22a649118f362d866b08cbdf62511f2a1f9bd6a7265103f174e35d0c8d86ad6a3b7dd5fd0b4277d60dbd25801c5e6f7e414e7fa634c241dae987
 DIST buildbot-0.9.4.tar.gz 3020851 SHA256 
068161cd9ada10b87f40117c768a37ce796ebf5e7bf08f224f4c7ded88cd7472 SHA512 
938a94192560b989a277d9650c50781d7e7c116bc5e2010ccb2e655df757de0ee254369531b2f432c835c0285c724e52d999a393d0ce1b104d4b9dcc5c6687da
 WHIRLPOOL 
0ffe61b82ee93b78cdb3cb74ef96d5a3547e0fcab9ec8093b59a7212c5e2a1ad16eff046306bffcc0ea63b2e0bf2df1e54b5a0874dc78e27744db2088ccac804
-DIST buildbot-test_templates.tar.xz 304 SHA256 
3d581b74c21f88119f7e5f93f381f2004662ca7219aae9a05f0bd3f8cae48317 SHA512 
87ba914896d86f70e2e4b24a51248c475bf24fad4c02e3a99d6d7fa41b5a57f369865b20a7c30dafa3162ba50ccb04de1809b0cf9d53e45537738e4821229866
 WHIRLPOOL 
151dc42ceed8e90c96cdd0b6e937f13019c0d6cd5e2e878ee971cbc69ce4ea56b240b58fa743766bd0d71cafa38279e37be077324eb5ece7b99df46eaf566dfe
+DIST buildbot-0.9.7.tar.gz 3092434 SHA256 
8fcbf0e6536e5d60407f59d14f96d5f8386cd91846a4fa47b4336d71551a9e33 SHA512 
3fd2b488cabac37e297bb1a475cdb115f261324a22ec4d6fbcf8dc5bfb6ee135fab3763998433be8795581d476f69e2adb6f42d248bf2131a42eecfc1667202a
 WHIRL

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2017-01-12 Thread Brian Dolbec
commit: 3fdb5fb3659bcd5f8cc440413706aabfb5febf80
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Jan 12 23:38:59 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jan 12 23:59:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fdb5fb3

dev-util/buildbot: Version bump, update , clean old release

Package-Manager: Portage-2.3.3_p23, Repoman-2.3.1_p16

 dev-util/buildbot/Manifest |2 +-
 ...ldbot-0.9.0_p1.ebuild => buildbot-0.9.3.ebuild} |   18 +-
 dev-util/buildbot/buildbot-.ebuild |   10 +-
 .../files/buildbot-0.9.3-json-import.patch | 1000 
 4 files changed, 1023 insertions(+), 7 deletions(-)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index 623b6d0..8a67937 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,6 +1,6 @@
 DIST buildbot-0.8.10.tar.gz 4822307 SHA256 
c4964d2ebd81cb80a14cb058fb2aab0572a1d8d86672d514e775b42deb08a5f4 SHA512 
e148a1670a56837587d858d1697fe117661cbbfedab42bf7be905f9e8e4266e4ff0170b0cd81aed61234d30497a05427061c3084033f09811d0bc306b200661b
 WHIRLPOOL 
26397b6f914266201aba4feb4df7353facad4fd0f51bdf7e35cf25205c45eadcf83f24c265e540b13d327750ce9561362be6a5aa237152cf1298d970c504f76c
 DIST buildbot-0.8.12.tar.gz 4834352 SHA256 
c6b66976dff712268566574d57131ec15e5682f6d4390cd5c8559bab0980c4d6 SHA512 
18c5144132fb033f3581d3c494d5e8ff35d3e8b1548764452ce9ae543d710e58a2c6e3e8e46a0ef237804f9a6a45485890ae4616ab655fb00d4ccf328d6f6645
 WHIRLPOOL 
5754b7c0278fb5e7da8a7dd66253f6f4d12f54c125f6a78aa9018a2b6b22fd88a27e79e6821ab05e4cd9e87bf0dd08c3c73c7914d4c499ac13c48ca232ed21c8
-DIST buildbot-0.9.0.post1.tar.gz 3013406 SHA256 
afd8229c9fd33daa6d8227cd665c75b1b25c47ffcc4046ab5fd5b290ccd536a3 SHA512 
0b171ca6ed15b15b4df23d0618cb7d98f6ae922efaa1e35a9458efaaf676b80a6ff3be36231b8ca31cadf89c3968425c560a0bff3630e8792d179462eba0da67
 WHIRLPOOL 
e440826e4a027b42d28c0f3a0afca3c46ec5dc0b4d629fcef75de4b3350cffa2208e0024983f0ffebd1df38a5d860c6bd541fc1c3e28f8b6669ee93a4d4be8b4
 DIST buildbot-0.9.1.tar.gz 3051975 SHA256 
a9f385f66f5cc3021f4cbfce92496673ebf9171578fa9e5ae4f66732276d64ce SHA512 
c3b845a3607c5eaa0a5076755bc0e285ba7c6809f9d7934fab7c6cf8299610e921034656cf3792113961176a821138c6d069122d4d1f1698f16badf3ef9a0dea
 WHIRLPOOL 
6767878665f09ff7b6219ddcda73487b441f3e33ce580fc2df2f16d430217d4ac38b93e22a3f3abd9c8380ac6e6c93de6767faec1aa5615f82fbe8d8e20759e1
 DIST buildbot-0.9.2.tar.gz 3026977 SHA256 
d33ec059941cf830c8f7b7f336a76e32e7122e2690a27b784efeddc6dbf4564a SHA512 
a1c6345bcceb5c8f4ed600542625eee81e59af00a1b12054fe77e3b4ed5536b7004fcbd07cfc96baa3061193eb79e4290e056cf7157b71831370654c057a2c57
 WHIRLPOOL 
075a00d85df5321180345348a02ac12cc8a1bea36d6e60617ebe54de71ce5a989fcf009822834dad1994a6f83ebb5c6132f350902fd31d5b279c5c13014bb4b9
+DIST buildbot-0.9.3.tar.gz 3031033 SHA256 
c2bc6a8139b0f97d304bfa047a4c414e42ea12ba94e34d82ae7cb356a69d87fb SHA512 
a6f18e88c33fe1eafe0b9b154fb77f0d93db71145faab527ecd5ce53fcbbff48b915de4a02461da87eefbd58a649a56d3a9b16ba759d978e70a70898a15681b7
 WHIRLPOOL 
b62fd5bea0b647b703674024e50731e7713e9488dec570d8e42beabaa2135a81349b955164cf01898b12ab0123d9a8f3b76e3364f65003b8af85a54755b6ad22
 DIST buildbot-test_templates.tar.xz 304 SHA256 
3d581b74c21f88119f7e5f93f381f2004662ca7219aae9a05f0bd3f8cae48317 SHA512 
87ba914896d86f70e2e4b24a51248c475bf24fad4c02e3a99d6d7fa41b5a57f369865b20a7c30dafa3162ba50ccb04de1809b0cf9d53e45537738e4821229866
 WHIRLPOOL 
151dc42ceed8e90c96cdd0b6e937f13019c0d6cd5e2e878ee971cbc69ce4ea56b240b58fa743766bd0d71cafa38279e37be077324eb5ece7b99df46eaf566dfe

diff --git a/dev-util/buildbot/buildbot-0.9.0_p1.ebuild 
b/dev-util/buildbot/buildbot-0.9.3.ebuild
similarity index 95%
rename from dev-util/buildbot/buildbot-0.9.0_p1.ebuild
rename to dev-util/buildbot/buildbot-0.9.3.ebuild
index c6c4f43..915e721 100644
--- a/dev-util/buildbot/buildbot-0.9.0_p1.ebuild
+++ b/dev-util/buildbot/buildbot-0.9.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,8 +11,8 @@ EGIT_REPO_URI="https://github.com/buildbot/${PN}.git";
 [[ ${PV} == * ]] && inherit git-r3
 inherit readme.gentoo-r1 user systemd distutils-r1
 
-MY_V="0.9.0.post1"
-MY_P="${PN}-${MY_V}"
+MY_PV="${PV/_p/p}"
+MY_P="${PN}-${MY_PV}"
 
 DESCRIPTION="BuildBot build automation system"
 HOMEPAGE="http://trac.buildbot.net/ https://github.com/buildbot/buildbot 
http://pypi.python.org/pypi/buildbot";
@@ -66,7 +66,7 @@ DEPEND="${RDEPEND}
doc? ( >=dev-python/sphinx-1.4.3[${PYTHON_USEDEP}] )
test? (
>=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
+   >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
|| (
>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
(
@@ -102,6 +102,

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2016-08-17 Thread Brian Dolbec
commit: 287bcb661fdc07ef7405d7f664bb55e9e2005d8c
Author: Brian Dolbec  gentoo  org>
AuthorDate: Wed Aug 17 16:54:34 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Wed Aug 17 16:59:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=287bcb66

dev-util/buildbot: Use python2 in the buildmaster.initd startup (bug 591150)

This allows a proper startup if a python3 version is the system default.

Package-Manager: portage-2.3.0
Signed-off-by: Brian Dolbec  gentoo.org>

 .../buildbot/{buildbot-0.8.12-r2.ebuild => buildbot-0.8.12-r3.ebuild}   | 0
 .../{buildbot-0.9.0_rc1-r1.ebuild => buildbot-0.9.0_rc1-r2.ebuild}  | 0
 dev-util/buildbot/files/buildmaster.initd   | 2 +-
 3 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/buildbot/buildbot-0.8.12-r2.ebuild 
b/dev-util/buildbot/buildbot-0.8.12-r3.ebuild
similarity index 100%
rename from dev-util/buildbot/buildbot-0.8.12-r2.ebuild
rename to dev-util/buildbot/buildbot-0.8.12-r3.ebuild

diff --git a/dev-util/buildbot/buildbot-0.9.0_rc1-r1.ebuild 
b/dev-util/buildbot/buildbot-0.9.0_rc1-r2.ebuild
similarity index 100%
rename from dev-util/buildbot/buildbot-0.9.0_rc1-r1.ebuild
rename to dev-util/buildbot/buildbot-0.9.0_rc1-r2.ebuild

diff --git a/dev-util/buildbot/files/buildmaster.initd 
b/dev-util/buildbot/files/buildmaster.initd
index 7997d0b..29fd444 100644
--- a/dev-util/buildbot/files/buildmaster.initd
+++ b/dev-util/buildbot/files/buildmaster.initd
@@ -39,7 +39,7 @@ start() {
ebegin "Starting buildmaster in ${BUILDMASTER_PATH}"
start-stop-daemon --start -u "${USERNAME}" \
--pidfile "${BUILDMASTER_PATH}/buildmaster.pid" \
-   --exec /usr/bin/python -- /usr/bin/twistd \
+   --exec /usr/bin/python2 -- /usr/bin/twistd \
--no_save \
--logfile="${BUILDMASTER_PATH}/twistd.log" \
--pidfile="${BUILDMASTER_PATH}/buildmaster.pid" \



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/

2016-08-10 Thread Brian Dolbec
commit: 21bbdcbf32a5856ec678a544044b43b3a6e449f0
Author: Brian Dolbec  gentoo  org>
AuthorDate: Wed Aug 10 16:50:07 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Wed Aug 10 17:17:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21bbdcbf

dev-util/buildbot: Fix typo in files/buildbot9.service filename bug 590958

Package-Manager: portage-2.3.0

 dev-util/buildbot/files/{buildbot9..service => buildbot9.service} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-util/buildbot/files/buildbot9..service 
b/dev-util/buildbot/files/buildbot9.service
similarity index 100%
rename from dev-util/buildbot/files/buildbot9..service
rename to dev-util/buildbot/files/buildbot9.service



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/, dev-util/buildbot/

2016-08-09 Thread Brian Dolbec
commit: 6876c4d431ee294c53d563d6542f582da9722900
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Aug  9 22:46:55 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Aug  9 23:47:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6876c4d4

dev-util/buildbot: Version bump, update live ebuild

This version is a major change from previous version.

 dev-util/buildbot/Manifest  |   1 +
 dev-util/buildbot/buildbot-0.9.0_rc1.ebuild | 161 
 dev-util/buildbot/buildbot-.ebuild  | 145 +
 dev-util/buildbot/files/buildbot9..service  |  14 +++
 dev-util/buildbot/files/buildmaster.confd.9 |  10 ++
 dev-util/buildbot/files/buildmaster.initd.9 |  54 ++
 dev-util/buildbot/metadata.xml  |   8 +-
 7 files changed, 345 insertions(+), 48 deletions(-)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index eae5a72..3f4671f 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,2 +1,3 @@
 DIST buildbot-0.8.10.tar.gz 4822307 SHA256 
c4964d2ebd81cb80a14cb058fb2aab0572a1d8d86672d514e775b42deb08a5f4 SHA512 
e148a1670a56837587d858d1697fe117661cbbfedab42bf7be905f9e8e4266e4ff0170b0cd81aed61234d30497a05427061c3084033f09811d0bc306b200661b
 WHIRLPOOL 
26397b6f914266201aba4feb4df7353facad4fd0f51bdf7e35cf25205c45eadcf83f24c265e540b13d327750ce9561362be6a5aa237152cf1298d970c504f76c
 DIST buildbot-0.8.12.tar.gz 4834352 SHA256 
c6b66976dff712268566574d57131ec15e5682f6d4390cd5c8559bab0980c4d6 SHA512 
18c5144132fb033f3581d3c494d5e8ff35d3e8b1548764452ce9ae543d710e58a2c6e3e8e46a0ef237804f9a6a45485890ae4616ab655fb00d4ccf328d6f6645
 WHIRLPOOL 
5754b7c0278fb5e7da8a7dd66253f6f4d12f54c125f6a78aa9018a2b6b22fd88a27e79e6821ab05e4cd9e87bf0dd08c3c73c7914d4c499ac13c48ca232ed21c8
+DIST buildbot-0.9.0rc1.tar.gz 3004783 SHA256 
f089c4c6494c82ad8d42bf80a356eef62580054d864a9c8b2217adeeec53ba27 SHA512 
4ec664f24f001c172d378d378ced95ad4507893a0f989178b078f4364fc9e52b2fb79196fc6f440f94f36cb14fd7b9e53530b4f5ee21fb81a0698789676be778
 WHIRLPOOL 
049f9c4efa37658bb2d5c9b04017f260c3d04e5b2df4a66eb3b3d99d6119343dcb5f78f50c8b00959932c323acf512729dbc5acd76d46eb418c6f120a8cba4b6

diff --git a/dev-util/buildbot/buildbot-0.9.0_rc1.ebuild 
b/dev-util/buildbot/buildbot-0.9.0_rc1.ebuild
new file mode 100644
index 000..fcaba40
--- /dev/null
+++ b/dev-util/buildbot/buildbot-0.9.0_rc1.ebuild
@@ -0,0 +1,161 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 )
+
+EGIT_REPO_URI="https://github.com/buildbot/${PN}.git";
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit readme.gentoo-r1 user systemd distutils-r1
+
+MY_PV="${PV/_p/p}"
+MY_V="0.9.0rc1"
+MY_P="${PN}-${MY_V}"
+
+DESCRIPTION="BuildBot build automation system"
+HOMEPAGE="http://trac.buildbot.net/ https://github.com/buildbot/buildbot 
http://pypi.python.org/pypi/buildbot";
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="crypt doc examples irc mail manhole test"
+
+RDEPEND=">=dev-python/jinja-2.1[${PYTHON_USEDEP}]
+   || (
+   >=dev-python/twisted-web-14.0.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+   )
+   >=dev-python/sqlalchemy-0.8[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-migrate-0.9[${PYTHON_USEDEP}]
+   crypt? (
+   >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
+   dev-python/idna[${PYTHON_USEDEP}]
+   dev-python/service_identity[${PYTHON_USEDEP}]
+   )
+   irc? (
+   || ( >=dev-python/twisted-words-14.0.1[${PYTHON_USEDEP}]
+   =dev-python/twisted-mail-14.0.1[${PYTHON_USEDEP}]
+   =dev-python/twisted-conch-14.0.1[${PYTHON_USEDEP}]
+   =dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
+   >=dev-python/autobahn-0.10.2[${PYTHON_USEDEP}]
+   =dev-python/txaio-2.2.2[${PYTHON_USEDEP}]
+   "
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   doc? ( >=dev-python/sphinx-1.4.3[${PYTHON_USEDEP}] )
+   test? (
+   >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   || (
+   (
+   
>=dev-python/twisted-mail-14.0.1[${PYTHON_USEDEP}]
+   
>=dev-python/twisted-web-14.0.1[${PYTHON_USEDEP}]
+   
>=dev-python/twisted-words-14.0.1[${PYTHON_USEDEP}]
+   )
+   =0.8',
+#'sphinx-jinja',)
+
+S=${WORKDIR}/${MY_P}
+[[ ${PV} == * ]] && S=${S}/master
+
+pkg_setup() {
+   enewuser buildbot
+
+   DOC_