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-wsgi-dashboards/
Date: Fri, 28 Jan 2022 11:16:46
Message-Id: 1643368584.a43ca85314a7748fb608e71b0e5b9b09f5818610.arthurzam@gentoo
1 commit: a43ca85314a7748fb608e71b0e5b9b09f5818610
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 28 11:02:58 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 28 11:16:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a43ca853
7
8 dev-util/buildbot-wsgi-dashboards: add 3.4.0, enable py3.10, cleanup
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-util/buildbot-wsgi-dashboards/Manifest | 1 +
13 .../buildbot-wsgi-dashboards-3.4.0.ebuild | 27 ++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-util/buildbot-wsgi-dashboards/Manifest b/dev-util/buildbot-wsgi-dashboards/Manifest
17 index fd0cd1794836..994105b01040 100644
18 --- a/dev-util/buildbot-wsgi-dashboards/Manifest
19 +++ b/dev-util/buildbot-wsgi-dashboards/Manifest
20 @@ -7,3 +7,4 @@ DIST buildbot-wsgi-dashboards-3.1.0.tar.gz 5581 BLAKE2B 0ab769016aac877dbd2a802d
21 DIST buildbot-wsgi-dashboards-3.1.1.tar.gz 5583 BLAKE2B ba0462e70e29cc1e6cfcc6a461373bdc56c03dc0510e7498310e722e0a5c494311f6da081f1ccccd2641657a7025885211802ce38b13326bde2f0b2f403ee198 SHA512 3a4a4621ae2ecca9313d2c6c4c33566b3e2e58c0259caaf135935362139eb4c1536669251138408c76c136ffe4a93ba9cbca7fa08b7b07e46472b2606b24ab06
22 DIST buildbot-wsgi-dashboards-3.2.0.tar.gz 5582 BLAKE2B ad52295e4c334377372e0db03fdd0d6b929fe0c19184b02feb6ba6e296a11477e8334a1e23d3a8c720462064916fefc45f78e729e59bd3a789779711365df038 SHA512 9deba0ba64f5c57da5e4688538757ae287b9505d2e98dce0ba2e7a16fac80bceff666eadf9116739c3af5481749e1568c2b07c367ca33f7ac548cdc719535c75
23 DIST buildbot-wsgi-dashboards-3.3.0.tar.gz 5591 BLAKE2B 90ef8554d41a4a58f0ac320d688a95145a53bf7c56bed9a164940912d3d944f8e04668ef96aeeb862c6627d97b7a90e648a878710d8bf68a5c2dd4bc24436100 SHA512 bd791710f5788ff44be784549535c3043babea3c672c8e26f4563d1e5c5f217eff87b142ffbea3d94a6764cd2e5b422f48158cd70dfd8c1225ae299304903861
24 +DIST buildbot-wsgi-dashboards-3.4.0.tar.gz 5583 BLAKE2B 0eed4a375330d58bd6caf95f8cdc2ebfaebc9c123450461d4e0f938745bb1b6afe0e9786bd886c6e6cb6a522da2b645bf1ad3237b2049f86bc1bca83829b15a1 SHA512 56411bb34a1f40d02a814e8d33dcd3c6de65627728c3bb9cad776c43c48707e648ccdbb4a58cbfb8ed080c219fc37252304c88ab363eb6deb6057b2debde1071
25
26 diff --git a/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-3.4.0.ebuild b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-3.4.0.ebuild
27 new file mode 100644
28 index 000000000000..89d8f635b8a7
29 --- /dev/null
30 +++ b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-3.4.0.ebuild
31 @@ -0,0 +1,27 @@
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 plugin to integrate flask or bottle dashboards to buildbot UI"
45 +HOMEPAGE="https://buildbot.net/
46 + https://github.com/buildbot/buildbot
47 + https://pypi.org/project/buildbot-wsgi-dashboards/"
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 +BDEPEND="
56 + ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
57 + ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
58 +"