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: Fri, 03 May 2019 17:14:15
Message-Id: 1556903638.9b43e8b22f4a663a7eac05bb7b3bcb7d306a7d02.prometheanfire@gentoo
1 commit: 9b43e8b22f4a663a7eac05bb7b3bcb7d306a7d02
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 3 17:11:15 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri May 3 17:13:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b43e8b2
7
8 app-emulation/diskimage-builder: add 9999 git version
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 .../diskimage-builder-9999.ebuild | 42 ++++++++++++++++++++++
14 1 file changed, 42 insertions(+)
15
16 diff --git a/app-emulation/diskimage-builder/diskimage-builder-9999.ebuild b/app-emulation/diskimage-builder/diskimage-builder-9999.ebuild
17 new file mode 100644
18 index 00000000000..bda4c2798bb
19 --- /dev/null
20 +++ b/app-emulation/diskimage-builder/diskimage-builder-9999.ebuild
21 @@ -0,0 +1,42 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +PYTHON_COMPAT=( python2_7 )
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Golden Disk Image builder."
31 +HOMEPAGE="http://docs.openstack.org/developer/diskimage-builder/"
32 +if [[ ${PV} == 9999* ]]; then
33 + inherit git-r3
34 + EGIT_REPO_URI="https://opendev.org/openstack/diskimage-builder.git"
35 +else
36 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37 + KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
38 +fi
39 +
40 +LICENSE="Apache-2.0"
41 +SLOT="0"
42 +IUSE=""
43 +
44 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
45 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
46 +DEPEND="${CDEPEND}
47 + dev-python/setuptools[${PYTHON_USEDEP}]"
48 +RDEPEND="${CDEPEND}
49 + >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
50 + !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
51 + >=dev-python/networkx-1.10[${PYTHON_USEDEP}]
52 + <dev-python/networkx-2.3[${PYTHON_USEDEP}]
53 + >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
54 + >=dev-python/flake8-2.5.4[${PYTHON_USEDEP}]
55 + <dev-python/flake8-2.6.0[${PYTHON_USEDEP}]
56 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
57 + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
58 + app-emulation/qemu
59 + sys-block/parted
60 + sys-fs/multipath-tools
61 + sys-fs/dosfstools
62 + sys-apps/gptfdisk
63 + !dev-python/dib-utils[${PYTHON_USEDEP}]"