Diff qemu-guest-agent-6.0.0 with a qemu-guest-agent-7.1.0
/usr/portage/app-emulation/qemu-guest-agent/qemu-guest-agent-7.1.0.ebuild 2023-10-09 14:52:28.728368331 +0300 | ||
---|---|---|
1 | 1 |
# Copyright 1999-2023 Gentoo Authors |
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI="7" |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 | 6 |
PYTHON_COMPAT=( python3_{9..11} ) |
7 | 7 | |
8 |
inherit systemd toolchain-funcs udev python-any-r1 |
|
8 |
inherit edo systemd toolchain-funcs python-any-r1 udev |
|
9 | 9 | |
10 | 10 |
MY_PN="qemu" |
11 | 11 |
MY_P="${MY_PN}-${PV}" |
12 | 12 | |
13 |
SRC_URI="http://wiki.qemu.org/download/${MY_P}.tar.xz" |
|
14 |
KEYWORDS="amd64 ~ppc ~ppc64 x86" |
|
15 | ||
16 | 13 |
DESCRIPTION="QEMU Guest Agent (qemu-ga) for use when running inside a VM" |
17 | 14 |
HOMEPAGE="https://wiki.qemu.org/Features/GuestAgent" |
15 |
SRC_URI="http://wiki.qemu.org/download/${MY_P}.tar.xz" |
|
18 | 16 | |
19 | 17 |
LICENSE="GPL-2 BSD-2" |
20 | 18 |
SLOT="0" |
21 |
IUSE="" |
|
19 |
KEYWORDS="amd64 ~ppc ~ppc64 x86" |
|
22 | 20 | |
23 | 21 |
RDEPEND="dev-libs/glib" |
24 | ||
25 |
DEPEND="${RDEPEND} |
|
26 |
${PYTHON_DEPS}" |
|
22 |
DEPEND="${RDEPEND}" |
|
23 |
BDEPEND="${PYTHON_DEPS} |
|
24 |
dev-lang/perl |
|
25 |
dev-util/ninja" |
|
27 | 26 | |
28 | 27 |
S="${WORKDIR}/${MY_P}" |
29 | 28 | |
29 |
PATCHES=( |
|
30 |
"${FILESDIR}"/${PN}-7.1.0-configure-Avoid-using-strings-binary.patch |
|
31 |
) |
|
32 | ||
30 | 33 |
src_configure() { |
31 | 34 |
tc-export AR LD OBJCOPY RANLIB |
32 | 35 | |
... | ... | |
47 | 50 |
--cxx="$(tc-getCXX)" |
48 | 51 |
--host-cc="$(tc-getBUILD_CC)" |
49 | 52 |
) |
50 |
echo "./configure ${myconf[*]}" |
|
51 |
./configure "${myconf[@]}" || die |
|
53 | ||
54 |
edo ./configure "${myconf[@]}" |
|
52 | 55 |
} |
53 | 56 | |
54 | 57 |
src_install() { |