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-console-view/
Date: Mon, 19 Jun 2017 18:33:18
Message-Id: 1497896978.58ceb9b9d1e9e3ceb09b86922742c81721bdfc32.dolsen@gentoo
1 commit: 58ceb9b9d1e9e3ceb09b86922742c81721bdfc32
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 19 17:42:33 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=58ceb9b9
7
8 dev-util/buildbot-console-view: Version bump
9
10 Package-Manager: Portage-2.3.6_p2, Repoman-2.3.2_p70
11
12 dev-util/buildbot-console-view/Manifest | 1 +
13 .../buildbot-console-view-0.9.8.ebuild | 52 ++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/dev-util/buildbot-console-view/Manifest b/dev-util/buildbot-console-view/Manifest
17 index 1405e219c01..ffdef94d3d0 100644
18 --- a/dev-util/buildbot-console-view/Manifest
19 +++ b/dev-util/buildbot-console-view/Manifest
20 @@ -1,2 +1,3 @@
21 DIST buildbot-console-view-0.9.4.tar.gz 631510 SHA256 16d1ab8801439d50d712883ab155530840588d4d77ab600299ead0ef23da5bf0 SHA512 f2e99e58acea3eebec7600a23597c6235fe93532653352c8e427d4b55a14066534dbc046de02856d738a5943ccdaed0ac14643a830d9d11acf76f6d1760def03 WHIRLPOOL 1d3ec1476d69e68f9bd752f5ff88796b504b997373e82f3428e5ead44f7c19c66278448e61aa1a36bd1d3e2bc7e55e21877537b8d02f9add0d12c5dd7c0e24b7
22 DIST buildbot-console-view-0.9.7.tar.gz 632458 SHA256 757ee80e5c4b698e6bac7b409c63af7ebd8c00c31117fa290776ad6c103a67c7 SHA512 e07c032e17ce9faa9d71b71c5c48fde9ebde4995dec408781b6bb2ed77edcbe320b8d825a9a4bd76d9f3c48dd445560ec55867639c454591c5b7095e4142c4f2 WHIRLPOOL 58a534d641d3f28272f074998231b4873086cc1c8cc081463545e0d6b49145299e2496974ba6d51150cab505b67c5bd81d56fa9747271b64ed8b487d1409a5ae
23 +DIST buildbot-console-view-0.9.8.tar.gz 632459 SHA256 573b03db8c102114b12bcc29c3224653bbc4a08cce25b91725b4bcee2abd7020 SHA512 f6419fd47b70369866440437521a10a2e4062466878979b0c65594c7d74095c89c01c65cc0641f8faf7dee163347426e50a272f93dfe45ee91d072360e249674 WHIRLPOOL 5bfe80b6f148603f98ff684b1b317e059587d37baf88c04e2f4f6f1eb4f4026d92df57463365f4bf460743c2bc4ce5407cce2df74ff2623f95d09d5b6230d7fa
24
25 diff --git a/dev-util/buildbot-console-view/buildbot-console-view-0.9.8.ebuild b/dev-util/buildbot-console-view/buildbot-console-view-0.9.8.ebuild
26 new file mode 100644
27 index 00000000000..96e611167eb
28 --- /dev/null
29 +++ b/dev-util/buildbot-console-view/buildbot-console-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 console-view plugin"
44 +HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot https://pypi.python.org/pypi/buildbot-console-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 +}