Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-www/
Date: Fri, 28 Jan 2022 11:16:39
Message-Id: 1643368581.015164abb49a7c7957b225d9a80e4e428b14ddd7.arthurzam@gentoo
1 commit: 015164abb49a7c7957b225d9a80e4e428b14ddd7
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 27 20:01:00 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 28 11:16:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=015164ab
7
8 dev-util/buildbot-www: add 3.4.0, enable py3.10, cleanup
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-util/buildbot-www/Manifest | 1 +
13 dev-util/buildbot-www/buildbot-www-3.4.0.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/dev-util/buildbot-www/Manifest b/dev-util/buildbot-www/Manifest
17 index f48d98a0d9bd..5bd827fe84b5 100644
18 --- a/dev-util/buildbot-www/Manifest
19 +++ b/dev-util/buildbot-www/Manifest
20 @@ -7,3 +7,4 @@ DIST buildbot-www-3.1.0.tar.gz 3180991 BLAKE2B d2ebe82e97cb92c97c43059555c276602
21 DIST buildbot-www-3.1.1.tar.gz 3180995 BLAKE2B 16c6e0966d64cc6631df8b4980bb20617707ebd3fca279cc6aa614e83bf0c3537e992f120670c00992dce854304ddf421143e96565e05482bd3d231f15fbe2c6 SHA512 89a1f88958fc509e33d6d5f2e8f0690ff87069eff60296926b3cf7021a060fc3918a990e54e5750922d6152b9d1e9257a973df16630332be9fd10a3643520354
22 DIST buildbot-www-3.2.0.tar.gz 3182436 BLAKE2B b9ba9f0982527e5ed20e0657526292f5f9eb2ca875b6aa1944cfff6eacda2c49de6f311437d5752ab00b2391515b6d9b0caa8165cb1755b89d96489f9a0d9df0 SHA512 9cc6566cb8dd13a1031bcebcc3797cc3ced2d9fe18303a9a436854db6382ffac850ed01ad44d6bd462ed1b59264c72b06b7bb790e75f25e8e6b384ae694793b3
23 DIST buildbot-www-3.3.0.tar.gz 3182454 BLAKE2B 107e5563c74a647592966c22c1d3502fd72c6907efefa91de8875d4821a44f8b29a4b9c5c551a9c82980cc038fa98ce7026fd209b229ea2697515d808dcb76dc SHA512 9d332a0f70815cf7e9d3a6897f2733bd33b6938fe49cb1a879023235d159d7cd4e3faa0fca74e16a64cebe1248929a43aff0000e805011f506c4febf10b03f90
24 +DIST buildbot-www-3.4.0.tar.gz 3182445 BLAKE2B 350606158ae68aba1b82c43d202e6140f433905e9913c7f4fcd3f4ebd328f7b70940f0a4e76a4a1f89731f6364dd285f08052bd1d96badac4e69cd1e16643d4e SHA512 7be83f35b6042accae77db1133d54282d0d27ce15a9b34220cc015255935d7463c1a327ee289740325bbb73d6a6a162f384da2b3cc731719e7f99a911faf86cd
25
26 diff --git a/dev-util/buildbot-www/buildbot-www-3.4.0.ebuild b/dev-util/buildbot-www/buildbot-www-3.4.0.ebuild
27 new file mode 100644
28 index 000000000000..ea0de6d3f79a
29 --- /dev/null
30 +++ b/dev-util/buildbot-www/buildbot-www-3.4.0.ebuild
31 @@ -0,0 +1,25 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_REQ_USE="sqlite"
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +inherit distutils-r1
40 +
41 +MY_PV="${PV/_p/.post}"
42 +MY_P="${PN}-${MY_PV}"
43 +
44 +DESCRIPTION="BuildBot base web interface, use with buildbot-{console-view,waterfall-view}..."
45 +HOMEPAGE="https://buildbot.net/
46 + https://github.com/buildbot/buildbot
47 + https://pypi.org/project/buildbot-www/"
48 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
49 +S="${WORKDIR}/${MY_P}"
50 +
51 +LICENSE="GPL-2"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~arm64 ~amd64-linux ~x86-linux"
54 +
55 +RDEPEND="~dev-util/buildbot-pkg-${PV}[${PYTHON_USEDEP}]"
56 +BDEPEND="${RDEPEND}"