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-pkg/
Date: Fri, 28 Jan 2022 11:16:41
Message-Id: 1643368581.c2163efef74e0fdb2200074661422c174b63d729.arthurzam@gentoo
1 commit: c2163efef74e0fdb2200074661422c174b63d729
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 27 19:56:49 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=c2163efe
7
8 dev-util/buildbot-pkg: add 3.4.0, enable py3.10, cleanup
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-util/buildbot-pkg/Manifest | 1 +
13 dev-util/buildbot-pkg/buildbot-pkg-3.4.0.ebuild | 33 +++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-util/buildbot-pkg/Manifest b/dev-util/buildbot-pkg/Manifest
17 index 83c9132ed765..ebb8d05af99c 100644
18 --- a/dev-util/buildbot-pkg/Manifest
19 +++ b/dev-util/buildbot-pkg/Manifest
20 @@ -7,3 +7,4 @@ DIST buildbot-pkg-3.1.0.tar.gz 4782 BLAKE2B 9107134a56eb27c3714ef5c66a610c44b21a
21 DIST buildbot-pkg-3.1.1.tar.gz 4784 BLAKE2B 47f19dc7872d5dbf45e53fd259e864d138a8a990801a4c87b3dc0b378477b4e424fbf2cdd6963dd92e3e33446770e72f23f9ea738796bbe1b0588b2a40c34974 SHA512 6f8309f62cd1fe2c7f61be58a79590eb28a53265819dbb28b229d122ecb3fc6513d9f47edd420add6e72aabf03784f7c9837f80ff9ae74f2474f72ce60aa876a
22 DIST buildbot-pkg-3.2.0.tar.gz 4777 BLAKE2B 0a20f1b16c5354a9f5f0ac6e2f91443af3c5754161324ca9b8c941ab3920e16e7bd31c8a4b7a655bb466f02718a22924e8a21e75efb505375daa01740cf0c2eb SHA512 e795e3198f61abbf6f7ec8eae3c98dc7bb054af2a0885a5529467e73c97d82d30ecb9a8c0b9daa2bac8b5fac72de63dc4dcd2a5e77df6006e50eef21c6f5f9fb
23 DIST buildbot-pkg-3.3.0.tar.gz 4778 BLAKE2B 14bd3d7bd985e63a587313c26f35ada0fcb1fb25d0d1ff89f12714e8a6d29781e53c83b42bf4a0614d4543a7c24dbf4375cfa1600d95f050497523a84d42c177 SHA512 73b6d61c27336450e8a9df1094c8afbb7653b33517f6a55e35a1ef62125b969f8ddf0a94ad11c7da15489fca2e6a7ad853093a946945c511140e61f3341ad2c0
24 +DIST buildbot-pkg-3.4.0.tar.gz 4809 BLAKE2B 6d3e549e7b44b5ad95bb7520ef8765828da587e3940a9f352ede63346b3303127313fe4b71338ff65ef9ab2c0ac6258793bd9ef664153a0b45b0b6d7d2d92943 SHA512 ca1ef22fb6113bfe0106360ba1eacb167a8335ba15f94a0635bc4d00f999818704f8cfebd7889b6b3df5e1ca7ab79b96f4656e481d6b1f25f5fb7404af0d7ff6
25
26 diff --git a/dev-util/buildbot-pkg/buildbot-pkg-3.4.0.ebuild b/dev-util/buildbot-pkg/buildbot-pkg-3.4.0.ebuild
27 new file mode 100644
28 index 000000000000..e7729822e3ed
29 --- /dev/null
30 +++ b/dev-util/buildbot-pkg/buildbot-pkg-3.4.0.ebuild
31 @@ -0,0 +1,33 @@
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 common www build tools for packaging releases"
45 +HOMEPAGE="https://buildbot.net/
46 + https://github.com/buildbot/buildbot
47 + https://pypi.org/project/buildbot-pkg/"
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 +# No real integration tests for this pkg.
56 +# all tests are related to making releases and final checks for distribution
57 +RESTRICT="test"
58 +
59 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
60 +
61 +src_prepare() {
62 + sed -e "/version/s/=.*$/=\"${MY_PV}\",/" -i setup.py || die
63 + distutils-r1_src_prepare
64 +}