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-wsgi-dashboards/
Date: Thu, 26 Jul 2018 17:17:41
Message-Id: 1532625431.fb680418b4464ce33c6e2afc48ce4b42db685bce.dolsen@gentoo
1 commit: fb680418b4464ce33c6e2afc48ce4b42db685bce
2 Author: Brian Dolbec dolsen <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 26 17:02:46 2018 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 26 17:17:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb680418
7
8 dev-util/buildbot-wsgi-dashboards: Version bump to 1.3.0
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-util/buildbot-wsgi-dashboards/Manifest | 1 +
13 .../buildbot-wsgi-dashboards-1.3.0.ebuild | 50 ++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/dev-util/buildbot-wsgi-dashboards/Manifest b/dev-util/buildbot-wsgi-dashboards/Manifest
17 index 68dc69aed33..44fc45f4420 100644
18 --- a/dev-util/buildbot-wsgi-dashboards/Manifest
19 +++ b/dev-util/buildbot-wsgi-dashboards/Manifest
20 @@ -1,2 +1,3 @@
21 DIST buildbot-wsgi-dashboards-0.9.12.tar.gz 627274 BLAKE2B 26632ddd1577e9c419d13c07958c203440ef875bc4a79be6b894d0cf4dc457423528b7ea34c830511a5ef5d7f645fde2f71ac08578e1de32687c8b1ae2864491 SHA512 113c1616b08feb64fd3d94c1186e3d7dd7ea93e563a96ddb802e6ff8135e194014464ef09a23004518451626584bc531fc17419188ebbdd388e9363541b80c3d
22 DIST buildbot-wsgi-dashboards-1.1.2.tar.gz 626825 BLAKE2B 396fa858cafd6dc3958c37ea2e9e685357de2185ce0b73d946d3eb2e99472339e176de1b49d821337535904c521e8dbaa662217c568306e7b2d889d11fdeb5ed SHA512 1eee2a38b525145e50812dff421613291f6b0b6a80a531b54383d771393d2a12c1c7840e2dabf7949918ac3f31ce5f6bd9514c08dee8fe5900c99438e63d4ee2
23 +DIST buildbot-wsgi-dashboards-1.3.0.tar.gz 626828 BLAKE2B 9c44bca995a1849246c71cdf8ecca1a72ffdca9fb8e99db4e05dc529e0b188b85f45078c0f961c03eeb688fae08975dc438ba7c85bfcd3bebcc14a0d56a69f67 SHA512 97885bb26eb03c40b8424063333a9bbc80b5111ce82c79e0ca466f2f820622df43c6913b6b6f4f9ead2a47e09496ff9442df4a6a9a34041f6b9a127544413330
24
25 diff --git a/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-1.3.0.ebuild b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-1.3.0.ebuild
26 new file mode 100644
27 index 00000000000..d40978a5739
28 --- /dev/null
29 +++ b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-1.3.0.ebuild
30 @@ -0,0 +1,50 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="6"
35 +PYTHON_REQ_USE="sqlite"
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 +
38 +EGIT_REPO_URI="https://github.com/buildbot/buildbot.git"
39 +
40 +[[ ${PV} == *9999 ]] && inherit git-r3
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Buildbot plugin to integrate flask or bottle dashboards to buildbot UI"
44 +HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot https://pypi.org/project/buildbot-wsgi-dashboards/"
45 +
46 +MY_PV="${PV/_p/.post}"
47 +MY_P="${PN}-${MY_PV}"
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 +
63 +DEPEND="${RDEPEND}
64 + >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
65 + ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
66 + ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
67 +"
68 +
69 +S="${WORKDIR}/${MY_P}"
70 +#[[ ${PV} == *9999 ]] && S=${S}/www/base
71 +
72 +python_test() {
73 + distutils_install_for_testing
74 +
75 + esetup.py test || die "Tests failed under ${EPYTHON}"
76 +}
77 +
78 +python_install_all() {
79 + distutils-r1_python_install_all
80 +}