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: Sat, 10 Oct 2020 18:56:30
Message-Id: 1602356171.c38efd79c8a527b2ab8e9d361c90b9e6af1a614a.dolsen@gentoo
1 commit: c38efd79c8a527b2ab8e9d361c90b9e6af1a614a
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 10 17:26:59 2020 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 18:56:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38efd79
7
8 dev-util/buildbot-console-view: Version bump to 2.8.4
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>
12
13 dev-util/buildbot-console-view/Manifest | 1 +
14 .../buildbot-console-view-2.8.4.ebuild | 37 ++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/dev-util/buildbot-console-view/Manifest b/dev-util/buildbot-console-view/Manifest
18 index 21640b7987f..ed1412ff484 100644
19 --- a/dev-util/buildbot-console-view/Manifest
20 +++ b/dev-util/buildbot-console-view/Manifest
21 @@ -1 +1,2 @@
22 DIST buildbot-console-view-2.8.2.tar.gz 17575 BLAKE2B e036429dd40fdfdadd65a10d4f6fc025b00d9a61153aecd4f31e0c6c133ba1e546b1c810254ec1fb83913cd4434db223c3cd782481ef5785ec48162a2f111682 SHA512 dbec358933865aa79ad86754ef454d89fa369fc64f3df54eb079c0f1ebadb027131d4bd7ac14dd29a16d34aa416e21f90cbecc873944a7ab8ef7da637e20c999
23 +DIST buildbot-console-view-2.8.4.tar.gz 18531 BLAKE2B 8d997e34eefea4be6bbbb33902b992a4864b601ef689cedbd7051667e5cab1ee45b13e2d5ad888af4a805ab1a60f0bc79439580583b3c3e233d321b52b28e0d9 SHA512 ccaa8b9ab18bd6e6609ab017ce4f2d447f99310b3448584decb8a572c573426bf84e6b86837f68b715863c66de013a8cad546e35dbbfb051c1c8d32a3825fe7f
24
25 diff --git a/dev-util/buildbot-console-view/buildbot-console-view-2.8.4.ebuild b/dev-util/buildbot-console-view/buildbot-console-view-2.8.4.ebuild
26 new file mode 100644
27 index 00000000000..461db8d8fd2
28 --- /dev/null
29 +++ b/dev-util/buildbot-console-view/buildbot-console-view-2.8.4.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +PYTHON_REQ_USE="sqlite"
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +
38 +DISTUTILS_USE_SETUPTOOLS="rdepend"
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Buildbot console-view plugin"
43 +HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot https://pypi.org/project/buildbot-console-view/"
44 +
45 +MY_PV="${PV/_p/.post}"
46 +MY_P="${PN}-${MY_PV}"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
48 +
49 +LICENSE="GPL-2"
50 +SLOT="0"
51 +
52 +KEYWORDS="~amd64"
53 +
54 +IUSE=""
55 +
56 +RDEPEND="
57 + ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
58 + ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
59 +"
60 +
61 +DEPEND="${RDEPEND}"
62 +
63 +S="${WORKDIR}/${MY_P}"
64 +
65 +python_install_all() {
66 + distutils-r1_python_install_all
67 +}