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, 27 Nov 2019 22:26:48
Message-Id: 1574893600.245c1e260651c01d11352d1d833edf1c2a047783.prometheanfire@gentoo
1 commit: 245c1e260651c01d11352d1d833edf1c2a047783
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 27 22:26:28 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 27 22:26:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=245c1e26
7
8 app-emulation/diskimage-builder: 2.30.0 bump
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.18
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-emulation/diskimage-builder/Manifest | 1 +
14 .../diskimage-builder-2.30.0.ebuild | 42 ++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/app-emulation/diskimage-builder/Manifest b/app-emulation/diskimage-builder/Manifest
18 index 321fcf456db..eb1efa0ae35 100644
19 --- a/app-emulation/diskimage-builder/Manifest
20 +++ b/app-emulation/diskimage-builder/Manifest
21 @@ -1,2 +1,3 @@
22 DIST diskimage-builder-2.28.2.tar.gz 424565 BLAKE2B 77bad24f857de7fb17cb727f7f5168f86434e4cfeecef286da5b3351e9fdfeb0d1dc2472f800024a35adb40aa04155bb7cfa3a0772ed8186a21b31b582809312 SHA512 0bdce552a896834c97f2a982865a93f39f62d0ee68d001c60d320e831c25456a392b4510ed94d7123851dad262e5ccb38a541d0dda5d620f91cf9ab54776efaa
23 DIST diskimage-builder-2.29.1.tar.gz 426780 BLAKE2B cd5b9c2cce5c289ef7f76ad41bf4b51ba6319c782be91b97a82d828c177912696ce6f94774d7294aca0d4af401d4d4e0ddd5fdd6d799e4e560ab03f971498b03 SHA512 cb083024739486c7651ce97ab36a30461754aae226af23b2ce757eca7c71e0fec42af07b8973f9c8344012238c4ae9d6252189ce6288d6451e020302f2dc35bf
24 +DIST diskimage-builder-2.30.0.tar.gz 428448 BLAKE2B 4cb4c47c07885713f160a958aa2d80d57b9ae496961bce976beddab59f0760abadaaccc1db8c4f29458dd8f247d7d5c21164a34ef91a4d4b48212f1fa612dadd SHA512 4ed6e745b1184c0462ce0500fa5e5dc8754a7185b76a6b5963c5ca9e20ca0bce7f2a5166b4472ca69498cc5f00e8a6e7ae17fd3794e830679e4f3a22e74956c7
25
26 diff --git a/app-emulation/diskimage-builder/diskimage-builder-2.30.0.ebuild b/app-emulation/diskimage-builder/diskimage-builder-2.30.0.ebuild
27 new file mode 100644
28 index 00000000000..86d3bb124b3
29 --- /dev/null
30 +++ b/app-emulation/diskimage-builder/diskimage-builder-2.30.0.ebuild
31 @@ -0,0 +1,42 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python2_7 python3_6 python3_7 )
37 +
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 + dev-python/setuptools[${PYTHON_USEDEP}]"
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/networkx-2.3[${PYTHON_USEDEP}]
63 + >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
64 + >=dev-python/flake8-2.5.4[${PYTHON_USEDEP}]
65 + <dev-python/flake8-2.6.0[${PYTHON_USEDEP}]
66 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
67 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
68 + app-emulation/qemu
69 + sys-block/parted
70 + sys-fs/multipath-tools
71 + sys-fs/dosfstools
72 + sys-apps/gptfdisk
73 + !dev-python/dib-utils[${PYTHON_USEDEP}]"