Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/qemu/
Date: Sun, 22 Sep 2019 02:12:41
Message-Id: 1569118312.83b059bc085316a4684b6bead29ea09b35b8b29e.tamiko@gentoo
1 commit: 83b059bc085316a4684b6bead29ea09b35b8b29e
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 21 22:45:59 2019 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 22 02:11:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83b059bc
7
8 app-emulation/qemu: Only clone a subset of git submodules
9
10 This saves cloning over 860MB of unnecessary repositories for
11 dependencies that we build externally, including OpenSSL.
12
13 Package-Manager: Portage-2.3.76, Repoman-2.3.17
14 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
15 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
16
17 app-emulation/qemu/qemu-9999.ebuild | 5 +++++
18 1 file changed, 5 insertions(+)
19
20 diff --git a/app-emulation/qemu/qemu-9999.ebuild b/app-emulation/qemu/qemu-9999.ebuild
21 index c58b83277ec..cf337ca8567 100644
22 --- a/app-emulation/qemu/qemu-9999.ebuild
23 +++ b/app-emulation/qemu/qemu-9999.ebuild
24 @@ -15,6 +15,11 @@ inherit eutils linux-info toolchain-funcs multilib python-r1 \
25
26 if [[ ${PV} = *9999* ]]; then
27 EGIT_REPO_URI="git://git.qemu.org/qemu.git"
28 + EGIT_SUBMODULES=(
29 + slirp
30 + tests/fp/berkeley-{test,soft}float-3
31 + ui/keycodemapdb
32 + )
33 inherit git-r3
34 SRC_URI=""
35 else