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-www/
Date: Sun, 28 Mar 2021 22:16:22
Message-Id: 1616969764.62eb7426497f882da2063d49fdf7c7d954582330.dolsen@gentoo
1 commit: 62eb7426497f882da2063d49fdf7c7d954582330
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 28 22:04:23 2021 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 28 22:16:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62eb7426
7
8 dev-util/buildbot-www: Version bump to 3.0.2, adds py3.9
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>
12
13 dev-util/buildbot-www/Manifest | 1 +
14 dev-util/buildbot-www/buildbot-www-3.0.2.ebuild | 29 +++++++++++++++++++++++++
15 2 files changed, 30 insertions(+)
16
17 diff --git a/dev-util/buildbot-www/Manifest b/dev-util/buildbot-www/Manifest
18 index bf4af9d97e7..e345c02a64e 100644
19 --- a/dev-util/buildbot-www/Manifest
20 +++ b/dev-util/buildbot-www/Manifest
21 @@ -2,3 +2,4 @@ DIST buildbot-www-2.10.0.tar.gz 3179700 BLAKE2B e9a8324c483896ee6f27468ce4658495
22 DIST buildbot-www-2.10.1.tar.gz 3180266 BLAKE2B ccc5beb12a8bd3684cbd90767794f70848023600ec0851df06c1e4dd356e5774a10fabe31721eeac9c67514ecbb44d22a8983d552975e654f332ab0deb8b3bdc SHA512 c1bc1f3c9154c7d96d7d3f25f6ce89fffd1f98b4fccf8f9499d230cd81d3f67f25e4a01dca04723a838065368d1256933fce26fa252f136285f6d617f68e6f7b
23 DIST buildbot-www-2.8.2.tar.gz 3172352 BLAKE2B 8ead9e9eb046bf773bd70d312ae612dced839b263b02d300f600d066fcf21ef98a7884fef36c494bdc8eb26129d5bf7897c319256f0fe6ef8e1515dc8507a26e SHA512 22d0ccb3e5b3badeb5a59db18dd7b0b925fe84936c1be1773437e899122df95bc9b0a4205a0c87182cf6be4ca4275ab20cb86a4da6098c9d9c73927cb9b3c784
24 DIST buildbot-www-2.8.4.tar.gz 3170166 BLAKE2B d3d5c8a6b4b963cffaa75035e2f4a076af27c9f816a8e80b346bdeade55f01c7c8403612b8e6d12036261dabe6ab4f05ddb7ffce4e7369565d361fe7b062f691 SHA512 8b698b8b99b3f9b51df0ce230c3d6e5dea8d1c1278cb7372edd170844ec46f7fe213be20db628da244cd38daaa53b1e2fcbffd3ab3980eee35ccc6a9824c7ae5
25 +DIST buildbot-www-3.0.2.tar.gz 3180864 BLAKE2B 772f23daf19ea964e4e65bb890e25bd90623e1eef8cb2845352e4e65884668d913aec98e292fb28121f1d87571430224eb5c70aca326f4c106d7125fbdc10570 SHA512 9be7271dbae3b62ee6fcb10441faaa9cab952b9db989275a62b7ca9d4c5dc342ec1decf33c267c0d2d8e095ab32f4493055cda1880f73818d26a98fab674a108
26
27 diff --git a/dev-util/buildbot-www/buildbot-www-3.0.2.ebuild b/dev-util/buildbot-www/buildbot-www-3.0.2.ebuild
28 new file mode 100644
29 index 00000000000..70027ef7887
30 --- /dev/null
31 +++ b/dev-util/buildbot-www/buildbot-www-3.0.2.ebuild
32 @@ -0,0 +1,29 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="7"
37 +PYTHON_REQ_USE="sqlite"
38 +PYTHON_COMPAT=( python3_{7,8,9} )
39 +
40 +DISTUTILS_USE_SETUPTOOLS="bdepend"
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="BuildBot base web interface, use with buildbot-{console-view,waterfall-view}..."
45 +HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot https://pypi.org/project/buildbot-www/"
46 +
47 +MY_PV="${PV/_p/.post}"
48 +MY_P="${PN}-${MY_PV}"
49 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
50 +
51 +LICENSE="GPL-2"
52 +SLOT="0"
53 +
54 +KEYWORDS="~amd64"
55 +
56 +DEPEND="
57 + ~dev-util/buildbot-pkg-${PV}[${PYTHON_USEDEP}]
58 +"
59 +RDEPEND="${DEPEND}"
60 +
61 +S="${WORKDIR}/${MY_P}"