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-pkg/
Date: Mon, 30 May 2022 00:11:33
Message-Id: 1653869476.8a578c9388af58d32ca825edb229015d111679d1.dolsen@gentoo
1 commit: 8a578c9388af58d32ca825edb229015d111679d1
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 29 23:32:44 2022 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 00:11:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a578c93
7
8 dev-util/buildbot-pkg: Bump to 3.5.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>
12
13 dev-util/buildbot-pkg/Manifest | 1 +
14 dev-util/buildbot-pkg/buildbot-pkg-3.5.0.ebuild | 33 +++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/dev-util/buildbot-pkg/Manifest b/dev-util/buildbot-pkg/Manifest
18 index 8f2cc075560c..b24d38f62009 100644
19 --- a/dev-util/buildbot-pkg/Manifest
20 +++ b/dev-util/buildbot-pkg/Manifest
21 @@ -1 +1,2 @@
22 DIST buildbot-pkg-3.4.0.tar.gz 4809 BLAKE2B 6d3e549e7b44b5ad95bb7520ef8765828da587e3940a9f352ede63346b3303127313fe4b71338ff65ef9ab2c0ac6258793bd9ef664153a0b45b0b6d7d2d92943 SHA512 ca1ef22fb6113bfe0106360ba1eacb167a8335ba15f94a0635bc4d00f999818704f8cfebd7889b6b3df5e1ca7ab79b96f4656e481d6b1f25f5fb7404af0d7ff6
23 +DIST buildbot-pkg-3.5.0.tar.gz 4806 BLAKE2B 41e217bc029bb8dbdb0f95218640d57d9f9ecabfbc0310118898042bbb543d9d4e5ba88075e934a9be9b1653e2a3d3d1e159547b832f9cde08c262713a817968 SHA512 08b3ec93dfbef87d90cfd4b7b1402003df785ceff8c43bf0320de79ff0efcb74f4cb4f0ec736e0d7231b54a82761d40df66e21540f1756fe74f68bb550850b1c
24
25 diff --git a/dev-util/buildbot-pkg/buildbot-pkg-3.5.0.ebuild b/dev-util/buildbot-pkg/buildbot-pkg-3.5.0.ebuild
26 new file mode 100644
27 index 000000000000..edf7eaf4cf37
28 --- /dev/null
29 +++ b/dev-util/buildbot-pkg/buildbot-pkg-3.5.0.ebuild
30 @@ -0,0 +1,33 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_REQ_USE="sqlite"
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +inherit distutils-r1
39 +
40 +MY_PV="${PV/_p/.post}"
41 +MY_P="${PN}-${MY_PV}"
42 +
43 +DESCRIPTION="BuildBot common www build tools for packaging releases"
44 +HOMEPAGE="https://buildbot.net/
45 + https://github.com/buildbot/buildbot
46 + https://pypi.org/project/buildbot-pkg/"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
48 +S="${WORKDIR}/${MY_P}"
49 +
50 +LICENSE="GPL-2"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm64 ~riscv ~amd64-linux ~x86-linux"
53 +
54 +# No real integration tests for this pkg.
55 +# all tests are related to making releases and final checks for distribution
56 +RESTRICT="test"
57 +
58 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
59 +
60 +src_prepare() {
61 + sed -e "/version/s/=.*$/=\"${MY_PV}\",/" -i setup.py || die
62 + distutils-r1_src_prepare
63 +}