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, 10 Oct 2019 17:28:31
Message-Id: 1570728497.8e963392115b74b9aba406434140f2485215138b.prometheanfire@gentoo
1 commit: 8e963392115b74b9aba406434140f2485215138b
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 10 17:15:52 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 10 17:28:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e963392
7
8 app-emulation/diskimage-builder: 2.28.0 bump
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-emulation/diskimage-builder/Manifest | 1 +
14 .../diskimage-builder-2.28.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 5687436efe1..9f79e4bfe91 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.26.1.tar.gz 421821 BLAKE2B 11c0ba668494285f33f3461e1a2c091ce6d622e4be164c4ab56a93cd000c82cec6702a6ed2ae37007120320f053760473f45f58ad8b45ee14b7b3eb47ac82d9a SHA512 e8bb68d15fc0bdd4881e76a7277f3e5e481b77decb4591546a576eda015bf624da3746326735add299551e168b82ab8bb165a18a64e96532c5b846e49815528f
23 DIST diskimage-builder-2.27.2.tar.gz 421433 BLAKE2B 089e68b07c6f79e54b8fb30e7a9328a6c55d1abb5f77b6592cc0b29b30a44a83803bdde93631e95e39d7fc82d9b5ff3fb425a7b94821b96f56421cbde9f8b078 SHA512 e2cc6f24d5bbfdf741d6b6e7e216d0e9631d6394cf3f3f4d34ce8a78ba2ba2ddbcb0b1434121f7ab1bd3600194777a5538651d9039c3bca06bb8cc621f06f037
24 +DIST diskimage-builder-2.28.0.tar.gz 425808 BLAKE2B f3cceec35f019b248df8aaa94f70231dc51a9fed06cf93b16366536cfcf45b4477b7aa09371bb3cffe95f51c74d0abf9065285b7b74c5d805604c2b00df8f38f SHA512 6eddef513e8550fb6f90e917a504bac1166ef4355791bd9b0c10addebb8f84b783bf4e53dd472e6ed9acb5d3dcd951e675f4e9983ec4170c31afdb257b84e24d
25
26 diff --git a/app-emulation/diskimage-builder/diskimage-builder-2.28.0.ebuild b/app-emulation/diskimage-builder/diskimage-builder-2.28.0.ebuild
27 new file mode 100644
28 index 00000000000..86d3bb124b3
29 --- /dev/null
30 +++ b/app-emulation/diskimage-builder/diskimage-builder-2.28.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}]"