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: Tue, 02 Jun 2020 17:55:50
Message-Id: 1591120543.1cff54398d13ce884ca2d49e2a355b5aea4be604.prometheanfire@gentoo
1 commit: 1cff54398d13ce884ca2d49e2a355b5aea4be604
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 2 17:55:20 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 2 17:55:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cff5439
7
8 app-emulation/diskimage-builder: 3.0.0 droppying py2 support
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-emulation/diskimage-builder/Manifest | 1 +
14 .../diskimage-builder-3.0.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 170e92ebed2..76b03b95339 100644
19 --- a/app-emulation/diskimage-builder/Manifest
20 +++ b/app-emulation/diskimage-builder/Manifest
21 @@ -1 +1,2 @@
22 DIST diskimage-builder-2.37.3.tar.gz 444207 BLAKE2B 602a5063d54d3d4bce1a2b5a3e941ef5ad69709733c9aa9543c6b3f7e7ef1bd45399d0fd7e5b2f6dc3dc8f38fba1bf108473f89252c4b9b181f97c4dc02af18e SHA512 fff684c348f5b2ba0d3ae5ce955be4b1d47cead934c96eddcd137b1568961661c949cb53d3134359d0fa8ab753c559b7f83d5555cb6dc8fbd121cb9d05a4a66a
23 +DIST diskimage-builder-3.0.0.tar.gz 434880 BLAKE2B 1b51540c023852ef363788821844c34dacc33021412cf94aad5078adc526ff66693a1d7109610b4aeb0aecf3fbfa0725f7caecc471e7c6df56d266723d1411fe SHA512 dd45f8dbfd8d3af3b5862564af1a5585adeb3536fc701cd186453eba82ef85d5b2f6a95abb820f658e0332b466fec097c52f041dfe61127d58da80a0c4d9e84c
24
25 diff --git a/app-emulation/diskimage-builder/diskimage-builder-3.0.0.ebuild b/app-emulation/diskimage-builder/diskimage-builder-3.0.0.ebuild
26 new file mode 100644
27 index 00000000000..720474e33c4
28 --- /dev/null
29 +++ b/app-emulation/diskimage-builder/diskimage-builder-3.0.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}]"