Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/qemu/files/
Date: Fri, 30 Mar 2018 02:54:32
Message-Id: 1522377464.1e4aab7cf6539ac16335dfde1d83cd17ae2d1072.bman@gentoo
1 commit: 1e4aab7cf6539ac16335dfde1d83cd17ae2d1072
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Mar 28 20:30:24 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 30 02:37:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e4aab7c
7
8 app-emulation/qemu: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/7686
11
12 .../qemu/files/qemu-2.11.9999-cflags.patch | 24 ----------------------
13 1 file changed, 24 deletions(-)
14
15 diff --git a/app-emulation/qemu/files/qemu-2.11.9999-cflags.patch b/app-emulation/qemu/files/qemu-2.11.9999-cflags.patch
16 deleted file mode 100644
17 index 8d7c387851a..00000000000
18 --- a/app-emulation/qemu/files/qemu-2.11.9999-cflags.patch
19 +++ /dev/null
20 @@ -1,24 +0,0 @@
21 ---- a/configure 2018-02-01 22:51:53.068467555 +0000
22 -+++ b/configure 2018-02-01 22:52:23.965041387 +0000
23 -@@ -5212,21 +5212,12 @@ fi
24 - if test "$gcov" = "yes" ; then
25 - CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS"
26 - LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
27 --elif test "$fortify_source" = "yes" ; then
28 -- CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
29 - elif test "$debug" = "yes"; then
30 -- if compile_prog "-Og" ""; then
31 -- CFLAGS="-Og $CFLAGS"
32 -- elif compile_prog "-O1" ""; then
33 -- CFLAGS="-O1 $CFLAGS"
34 -- fi
35 - # Workaround GCC false-positive Wuninitialized bugs with Og or O1:
36 - # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24639
37 - if cc_has_warning_flag "-Wno-maybe-uninitialized"; then
38 - CFLAGS="-Wno-maybe-uninitialized $CFLAGS"
39 - fi
40 --else
41 -- CFLAGS="-O2 $CFLAGS"
42 - fi
43 -
44 - ##########################################