Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/diskimage-builder/
Date: Tue, 10 May 2022 23:14:25
Message-Id: 1652224457.31c2f1282c6e158b474e2169a11c10e8dafd7759.prometheanfire@gentoo
1 commit: 31c2f1282c6e158b474e2169a11c10e8dafd7759
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 10 23:14:05 2022 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue May 10 23:14:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c2f128
7
8 app-emulation/diskimage-builder: 3.21.1 bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-emulation/diskimage-builder/Manifest | 1 +
14 .../diskimage-builder-3.21.1.ebuild | 39 ++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/app-emulation/diskimage-builder/Manifest b/app-emulation/diskimage-builder/Manifest
18 index 985b5e3744b1..6635e395ea27 100644
19 --- a/app-emulation/diskimage-builder/Manifest
20 +++ b/app-emulation/diskimage-builder/Manifest
21 @@ -1,2 +1,3 @@
22 DIST diskimage-builder-3.20.3.tar.gz 505078 BLAKE2B 857745074049d648d50e36f8976f41ae74147feffd86e8aed517e23adce78945e15cae82a586c8e1acf25edb0ce43439c8a7865831d31bd4994f7b7f5f07da4a SHA512 4631f8d4a1a7389d9e3c2f4b3fec9371b2ed01224116e4a359140da136ba3409d0dc3d1ff320f64bced8431da097005a9d49da84668306e3b50bbcee2a94d4ab
23 DIST diskimage-builder-3.21.0.tar.gz 506289 BLAKE2B 842f1f4f97b4527dc78ea1969f86ddf2549e2c5d565ea1656d722f86089b6d663c432e9bfe31596921df9e0ed3face9a760283c47cc613307f778fae5b826537 SHA512 016f74e7eb91a01a60c42765627d57e450c82b66c53eee0570468cac72b2f17ac4fc4be9faccef1591504282b7b6648957dc6a3b6eb3641ef41dc7cdd7fde538
24 +DIST diskimage-builder-3.21.1.tar.gz 506309 BLAKE2B 5a5a08c90449742e9ba1664043cdeaed3c38f9efeb722f99fdb1fa98ea48a2a18bddd4bee189e983d8dcc4b43151c61d92320e703fead8f52eb81c49c2f225d3 SHA512 fb63dfcfb93ddbaa98b1231684892ecc1b28802e805902d613a41692f0b91a68b583efb45e6bb608c6333ac90e5de95e75b18f711cdca683014623287037a952
25
26 diff --git a/app-emulation/diskimage-builder/diskimage-builder-3.21.1.ebuild b/app-emulation/diskimage-builder/diskimage-builder-3.21.1.ebuild
27 new file mode 100644
28 index 000000000000..a2d3ad209af7
29 --- /dev/null
30 +++ b/app-emulation/diskimage-builder/diskimage-builder-3.21.1.ebuild
31 @@ -0,0 +1,39 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{7,8,9} )
38 +DISTUTILS_USE_SETUPTOOLS=rdepend
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Golden Disk Image builder"
42 +HOMEPAGE="http://docs.openstack.org/developer/diskimage-builder/"
43 +if [[ ${PV} == 9999* ]]; then
44 + inherit git-r3
45 + EGIT_REPO_URI="https://opendev.org/openstack/diskimage-builder.git"
46 +else
47 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
48 + KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
49 +fi
50 +
51 +LICENSE="Apache-2.0"
52 +SLOT="0"
53 +IUSE=""
54 +
55 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
56 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
57 +DEPEND="${CDEPEND}"
58 +RDEPEND="${CDEPEND}
59 + >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
60 + !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
61 + >=dev-python/networkx-1.10[${PYTHON_USEDEP}]
62 + >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
63 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
64 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
65 + app-emulation/qemu
66 + sys-block/parted
67 + sys-fs/multipath-tools
68 + sys-fs/dosfstools
69 + sys-apps/gptfdisk
70 + !dev-python/dib-utils[${PYTHON_USEDEP}]"