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: Wed, 29 Jun 2022 21:14:05
Message-Id: 1656537237.d9c39bb1f89d89a0be62678cad45d868899e6f4d.prometheanfire@gentoo
1 commit: d9c39bb1f89d89a0be62678cad45d868899e6f4d
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 21:13:16 2022 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 21:13:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c39bb1
7
8 app-emulation/diskimage-builder: 3.22.0 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.22.0.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 e1a631f508dd..7fc035015fd7 100644
19 --- a/app-emulation/diskimage-builder/Manifest
20 +++ b/app-emulation/diskimage-builder/Manifest
21 @@ -1 +1,2 @@
22 DIST diskimage-builder-3.21.1.tar.gz 506309 BLAKE2B 5a5a08c90449742e9ba1664043cdeaed3c38f9efeb722f99fdb1fa98ea48a2a18bddd4bee189e983d8dcc4b43151c61d92320e703fead8f52eb81c49c2f225d3 SHA512 fb63dfcfb93ddbaa98b1231684892ecc1b28802e805902d613a41692f0b91a68b583efb45e6bb608c6333ac90e5de95e75b18f711cdca683014623287037a952
23 +DIST diskimage-builder-3.22.0.tar.gz 507997 BLAKE2B 559203fb5e92ff6b32e3cda6e977c46ea247f47f0d41d72db5f4e6fa6957c599814fa65f24b3d0783fbf95fa72efb52db2bfa30f608b08955bc64bc8c4943d59 SHA512 1a2c4f6301eb90268cc4cc47e600e2de404336f871606beaebadb367ab8976cf6618da3a9ed594682f53b84e70c2b658d519732031c9b3423a906876ba3b03a4
24
25 diff --git a/app-emulation/diskimage-builder/diskimage-builder-3.22.0.ebuild b/app-emulation/diskimage-builder/diskimage-builder-3.22.0.ebuild
26 new file mode 100644
27 index 000000000000..bbd75fbe73fb
28 --- /dev/null
29 +++ b/app-emulation/diskimage-builder/diskimage-builder-3.22.0.ebuild
30 @@ -0,0 +1,39 @@
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_COMPAT=( python3_{7,8,9,10} )
37 +DISTUTILS_USE_SETUPTOOLS=rdepend
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Golden Disk Image builder"
41 +HOMEPAGE="http://docs.openstack.org/developer/diskimage-builder/"
42 +if [[ ${PV} == 9999* ]]; then
43 + inherit git-r3
44 + EGIT_REPO_URI="https://opendev.org/openstack/diskimage-builder.git"
45 +else
46 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 + KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
48 +fi
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +IUSE=""
53 +
54 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
55 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
56 +DEPEND="${CDEPEND}"
57 +RDEPEND="${CDEPEND}
58 + >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
59 + !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
60 + >=dev-python/networkx-1.10[${PYTHON_USEDEP}]
61 + >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
62 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
63 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
64 + app-emulation/qemu
65 + sys-block/parted
66 + sys-fs/multipath-tools
67 + sys-fs/dosfstools
68 + sys-apps/gptfdisk
69 + !dev-python/dib-utils[${PYTHON_USEDEP}]"