* [Buildroot] [PATCH 1/1] package/qt5/qt5webkit: fix patch fuzz
@ 2024-07-07 19:44 Dario Binacchi
2024-07-12 13:44 ` Thomas Petazzoni via buildroot
2024-07-31 16:36 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Dario Binacchi @ 2024-07-07 19:44 UTC (permalink / raw)
To: buildroot; +Cc: Giulio Benetti, Dario Binacchi, linux-amarula, Julien Corjon
Commit 8f88a644ed7d6 ("support/scripts/apply-patches.sh: set the maximum
fuzz factor to 0") reduced the fuzz factor.
Due to this change, qt5webkit fails to build with output:
Applying 0004-Remove-invalid-g_object-declarations-to-fix-build-wi.patch using patch:
patching file Source/WTF/wtf/glib/GRefPtr.h
Hunk #1 FAILED at 29.
1 out of 1 hunk FAILED -- saving rejects to file Source/WTF/wtf/glib/GRefPtr.h.rej
This commit refreshes the package patch on the current package version.
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---
...Remove-invalid-g_object-declarations-to-fix-build-wi.patch | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/package/qt5/qt5webkit/0004-Remove-invalid-g_object-declarations-to-fix-build-wi.patch b/package/qt5/qt5webkit/0004-Remove-invalid-g_object-declarations-to-fix-build-wi.patch
index 48605e4fe4fb..e3a1faec9c90 100644
--- a/package/qt5/qt5webkit/0004-Remove-invalid-g_object-declarations-to-fix-build-wi.patch
+++ b/package/qt5/qt5webkit/0004-Remove-invalid-g_object-declarations-to-fix-build-wi.patch
@@ -8,6 +8,8 @@ g_object_ref_sink is defined as a macro meanwhile and so the build fails.
Just remove the declarations, glib.h is included anyway.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
[Retrieved from: https://github.com/qtwebkit/qtwebkit/pull/1058]
+[Dario: make the patch to be applied with fuzz factor 0]
+Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---
Source/WTF/wtf/glib/GRefPtr.h | 3 ---
1 file changed, 3 deletions(-)
@@ -17,8 +19,8 @@ index 06133d82cb35..d9a1d2f145f5 100644
--- a/Source/WTF/wtf/glib/GRefPtr.h
+++ b/Source/WTF/wtf/glib/GRefPtr.h
@@ -29,9 +29,6 @@
+ #include <wtf/RefPtr.h>
#include <algorithm>
- #include <glib.h>
-extern "C" void g_object_unref(gpointer);
-extern "C" gpointer g_object_ref_sink(gpointer);
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [Buildroot] [PATCH 1/1] package/qt5/qt5webkit: fix patch fuzz
2024-07-07 19:44 [Buildroot] [PATCH 1/1] package/qt5/qt5webkit: fix patch fuzz Dario Binacchi
@ 2024-07-12 13:44 ` Thomas Petazzoni via buildroot
2024-07-31 16:36 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-12 13:44 UTC (permalink / raw)
To: Dario Binacchi; +Cc: Giulio Benetti, linux-amarula, Julien Corjon, buildroot
On Sun, 7 Jul 2024 21:44:39 +0200
Dario Binacchi <dario.binacchi@amarulasolutions.com> wrote:
> Commit 8f88a644ed7d6 ("support/scripts/apply-patches.sh: set the maximum
> fuzz factor to 0") reduced the fuzz factor.
>
> Due to this change, qt5webkit fails to build with output:
>
> Applying 0004-Remove-invalid-g_object-declarations-to-fix-build-wi.patch using patch:
> patching file Source/WTF/wtf/glib/GRefPtr.h
> Hunk #1 FAILED at 29.
> 1 out of 1 hunk FAILED -- saving rejects to file Source/WTF/wtf/glib/GRefPtr.h.rej
>
> This commit refreshes the package patch on the current package version.
>
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> ---
> ...Remove-invalid-g_object-declarations-to-fix-build-wi.patch | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [Buildroot] [PATCH 1/1] package/qt5/qt5webkit: fix patch fuzz
2024-07-07 19:44 [Buildroot] [PATCH 1/1] package/qt5/qt5webkit: fix patch fuzz Dario Binacchi
2024-07-12 13:44 ` Thomas Petazzoni via buildroot
@ 2024-07-31 16:36 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-07-31 16:36 UTC (permalink / raw)
To: Dario Binacchi; +Cc: Giulio Benetti, linux-amarula, Julien Corjon, buildroot
>>>>> "Dario" == Dario Binacchi <dario.binacchi@amarulasolutions.com> writes:
> Commit 8f88a644ed7d6 ("support/scripts/apply-patches.sh: set the maximum
> fuzz factor to 0") reduced the fuzz factor.
> Due to this change, qt5webkit fails to build with output:
> Applying 0004-Remove-invalid-g_object-declarations-to-fix-build-wi.patch using patch:
> patching file Source/WTF/wtf/glib/GRefPtr.h
> Hunk #1 FAILED at 29.
> 1 out of 1 hunk FAILED -- saving rejects to file Source/WTF/wtf/glib/GRefPtr.h.rej
> This commit refreshes the package patch on the current package version.
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Committed to 2024.02.x and 2024.05.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-31 16:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-07 19:44 [Buildroot] [PATCH 1/1] package/qt5/qt5webkit: fix patch fuzz Dario Binacchi
2024-07-12 13:44 ` Thomas Petazzoni via buildroot
2024-07-31 16:36 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox