Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/qemu/
Date: Thu, 29 Apr 2021 01:52:46
Message-Id: 1619661119.da2fe0988b894188b2dbb039999b69d9c9f89071.sam@gentoo
1 commit: da2fe0988b894188b2dbb039999b69d9c9f89071
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 29 01:44:26 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 29 01:51:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da2fe098
7
8 app-emulation/qemu: fix variable reference style
9
10 Package-Manager: Portage-3.0.18-prefix, Repoman-3.0.3
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-emulation/qemu/qemu-5.2.0-r2.ebuild | 2 +-
14 app-emulation/qemu/qemu-5.2.0-r3.ebuild | 2 +-
15 app-emulation/qemu/qemu-5.2.0-r50.ebuild | 2 +-
16 app-emulation/qemu/qemu-9999.ebuild | 2 +-
17 4 files changed, 4 insertions(+), 4 deletions(-)
18
19 diff --git a/app-emulation/qemu/qemu-5.2.0-r2.ebuild b/app-emulation/qemu/qemu-5.2.0-r2.ebuild
20 index f8958f1829c..6b38e035765 100644
21 --- a/app-emulation/qemu/qemu-5.2.0-r2.ebuild
22 +++ b/app-emulation/qemu/qemu-5.2.0-r2.ebuild
23 @@ -804,7 +804,7 @@ src_install() {
24 firmware_abi_change() {
25 local pv
26 for pv in ${REPLACING_VERSIONS}; do
27 - if ver_test $pv -lt ${FIRMWARE_ABI_VERSION}; then
28 + if ver_test ${pv} -lt ${FIRMWARE_ABI_VERSION}; then
29 return 0
30 fi
31 done
32
33 diff --git a/app-emulation/qemu/qemu-5.2.0-r3.ebuild b/app-emulation/qemu/qemu-5.2.0-r3.ebuild
34 index c9253831158..7512af2e944 100644
35 --- a/app-emulation/qemu/qemu-5.2.0-r3.ebuild
36 +++ b/app-emulation/qemu/qemu-5.2.0-r3.ebuild
37 @@ -809,7 +809,7 @@ src_install() {
38 firmware_abi_change() {
39 local pv
40 for pv in ${REPLACING_VERSIONS}; do
41 - if ver_test $pv -lt ${FIRMWARE_ABI_VERSION}; then
42 + if ver_test ${pv} -lt ${FIRMWARE_ABI_VERSION}; then
43 return 0
44 fi
45 done
46
47 diff --git a/app-emulation/qemu/qemu-5.2.0-r50.ebuild b/app-emulation/qemu/qemu-5.2.0-r50.ebuild
48 index 7a9f08f8539..6d459a989b6 100644
49 --- a/app-emulation/qemu/qemu-5.2.0-r50.ebuild
50 +++ b/app-emulation/qemu/qemu-5.2.0-r50.ebuild
51 @@ -812,7 +812,7 @@ src_install() {
52 firmware_abi_change() {
53 local pv
54 for pv in ${REPLACING_VERSIONS}; do
55 - if ver_test $pv -lt ${FIRMWARE_ABI_VERSION}; then
56 + if ver_test ${pv} -lt ${FIRMWARE_ABI_VERSION}; then
57 return 0
58 fi
59 done
60
61 diff --git a/app-emulation/qemu/qemu-9999.ebuild b/app-emulation/qemu/qemu-9999.ebuild
62 index 9970b1a031f..bdf454fd8ec 100644
63 --- a/app-emulation/qemu/qemu-9999.ebuild
64 +++ b/app-emulation/qemu/qemu-9999.ebuild
65 @@ -846,7 +846,7 @@ src_install() {
66 firmware_abi_change() {
67 local pv
68 for pv in ${REPLACING_VERSIONS}; do
69 - if ver_test $pv -lt ${FIRMWARE_ABI_VERSION}; then
70 + if ver_test ${pv} -lt ${FIRMWARE_ABI_VERSION}; then
71 return 0
72 fi
73 done