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: Thu, 20 Aug 2020 15:36:15
Message-Id: 1597937548.273a0cddc01668369b85b68375ee021bb9179ff8.prometheanfire@gentoo
1 commit: 273a0cddc01668369b85b68375ee021bb9179ff8
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 20 15:32:28 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 20 15:32:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=273a0cdd
7
8 app-emulation/diskimage-builder: 3.2.0 bump
9
10 Package-Manager: Portage-3.0.4, Repoman-2.3.23
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-emulation/diskimage-builder/Manifest | 1 +
14 .../diskimage-builder-3.2.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 ce27588ce8d..d95ddc119f7 100644
19 --- a/app-emulation/diskimage-builder/Manifest
20 +++ b/app-emulation/diskimage-builder/Manifest
21 @@ -1 +1,2 @@
22 DIST diskimage-builder-3.1.0.tar.gz 434813 BLAKE2B 7a9fa54353f9b7edc2f1f1dab965b8241cb8b046ef56f12ed3562c04a8c6e236a7be41fbe75c385b48c4f2b8b30e961d8b86499e79999c391dde9c2f294f1193 SHA512 0b8a0b6cee9c7fcee08d8e5d706add2e54dfe1b7726b169f357022a48a37e351b159a7426771a001b703ca4360905f318ff91d0e72cb2d92e3486607186d03c4
23 +DIST diskimage-builder-3.2.0.tar.gz 448407 BLAKE2B 505aec0375b1adab03362025e5f391b771e128bf3fd21fe312bdf0a60be7e5ef5768f61778425f24471d6943788ade98929949623142923548e37a8fef65dd53 SHA512 675f1d733c82a15862db2db1c7362fe50058b89b834bffa46ef936af450e41796c06f32f2677ac787100fc2b285f6f7befdd7344a4463841b0ca581499018849
24
25 diff --git a/app-emulation/diskimage-builder/diskimage-builder-3.2.0.ebuild b/app-emulation/diskimage-builder/diskimage-builder-3.2.0.ebuild
26 new file mode 100644
27 index 00000000000..720474e33c4
28 --- /dev/null
29 +++ b/app-emulation/diskimage-builder/diskimage-builder-3.2.0.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Golden Disk Image builder."
40 +HOMEPAGE="http://docs.openstack.org/developer/diskimage-builder/"
41 +if [[ ${PV} == 9999* ]]; then
42 + inherit git-r3
43 + EGIT_REPO_URI="https://opendev.org/openstack/diskimage-builder.git"
44 +else
45 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 + KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
47 +fi
48 +
49 +LICENSE="Apache-2.0"
50 +SLOT="0"
51 +IUSE=""
52 +
53 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
54 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
55 +DEPEND="${CDEPEND}
56 + dev-python/setuptools[${PYTHON_USEDEP}]"
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}]"