Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-waterfall-view/
Date: Mon, 19 Jun 2017 18:33:17
Message-Id: 1497896978.0daf7030c56a055c0b9c7809ed945fdecd4b605c.dolsen@gentoo
1 commit: 0daf7030c56a055c0b9c7809ed945fdecd4b605c
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 19 17:51:59 2017 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 19 18:29:38 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0daf7030
7
8 dev-util/buildbot-waterfall-view: Version bump
9
10 Package-Manager: Portage-2.3.6_p2, Repoman-2.3.2_p70
11
12 dev-util/buildbot-waterfall-view/Manifest | 1 +
13 .../buildbot-waterfall-view-0.9.8.ebuild | 52 ++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/dev-util/buildbot-waterfall-view/Manifest b/dev-util/buildbot-waterfall-view/Manifest
17 index 0b0dbcf956b..322fe133abc 100644
18 --- a/dev-util/buildbot-waterfall-view/Manifest
19 +++ b/dev-util/buildbot-waterfall-view/Manifest
20 @@ -1,2 +1,3 @@
21 DIST buildbot-waterfall-view-0.9.4.tar.gz 705483 SHA256 4e8e8d85a77a95fb6ec6e9b0eaa4a774f80cbc6f3a6568f8525d4c90f336b69f SHA512 b619e366b2d276ec956c7f2b814fbea5ad8d626f21d365f586fb93d9ddd8d90c6e3f290a6404b401051e780b228b84f78642f876783c0da6e96549f0e2c9929c WHIRLPOOL f6622afe37931b1525f4234b138d7cd6c296ab92ea00a476eab2b8cd00192972e2b3ca936d54d01b5ed4d93441824d79734b179153614f568a3023ecb308fcfd
22 DIST buildbot-waterfall-view-0.9.7.tar.gz 705818 SHA256 d6455df447720e367988f043ae381130add96daf80ae45cdf5a0fbcc8aa082e0 SHA512 4f5a068ff03d2ea24eca2344676eecd5558b02127f805b0c88ab0b1bcf353640a6b0bc8756c12d0565a5fdfc8dedff8394b5dc014378200880d469fa26b7263b WHIRLPOOL 2d63af137626018440975cb55e587a94dd9227e0dbc2b62b6726b9bb86e78b183ad656dcb52ec0afecca6b66a0320bc3ac42bb208c4f835343e6e062d00abfdd
23 +DIST buildbot-waterfall-view-0.9.8.tar.gz 705815 SHA256 a8ffe67b5bb8bd5ac15e6cf853cc693c3328fc508ecfa337613fc8f6081c3603 SHA512 82f75f706c97bdedb744f34229c5efefe6f7bb713874f0d99a322233663764b37572b9c9b7a2004c64d7693f6e58625e0c17bacbf743c16ed5fce16d6ad87b2d WHIRLPOOL 87922d9637a8f9b028c1e7495d552b7b2c63a78c5efb313066e6cc212211b6728de105076ad399ea04086948707b7f5f0182fa6c5e471b5cc83cd9b135ab6677
24
25 diff --git a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.8.ebuild b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.8.ebuild
26 new file mode 100644
27 index 00000000000..f800e5da171
28 --- /dev/null
29 +++ b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.8.ebuild
30 @@ -0,0 +1,52 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="5"
35 +PYTHON_REQ_USE="sqlite"
36 +PYTHON_COMPAT=( python2_7 python3_5 )
37 +
38 +EGIT_REPO_URI="git://github.com/buildbot/buildbot.git"
39 +
40 +[[ ${PV} == *9999 ]] && inherit git-r3
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Buildbot waterfall-view plugin"
44 +HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot https://pypi.python.org/pypi/buildbot-waterfall-view"
45 +
46 +MY_V="${PV/_p/p}"
47 +MY_P="${PN}-${MY_V}"
48 +[[ ${PV} == *9999 ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
49 +
50 +LICENSE="GPL-2"
51 +SLOT="0"
52 +
53 +if [[ ${PV} == *9999 ]]; then
54 + KEYWORDS=""
55 +else
56 + KEYWORDS="~amd64"
57 +fi
58 +
59 +IUSE="test"
60 +
61 +RDEPEND="
62 + ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
63 + dev-python/mock[${PYTHON_USEDEP}]
64 + ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
65 +"
66 +
67 +DEPEND="${RDEPEND}
68 + >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
69 +"
70 +
71 +S="${WORKDIR}/${MY_P}"
72 +#[[ ${PV} == *9999 ]] && S=${S}/www/base
73 +
74 +python_test() {
75 + distutils_install_for_testing
76 +
77 + esetup.py test || die "Tests failed under ${EPYTHON}"
78 +}
79 +
80 +python_install_all() {
81 + distutils-r1_python_install_all
82 +}