pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/webkit-gtk



Module Name:    pkgsrc
Committed By:   mef
Date:           Sun Jun 23 13:59:41 UTC 2024

Modified Files:
        pkgsrc/www/webkit-gtk: distinfo
Added Files:
        pkgsrc/www/webkit-gtk/patches:
            patch-Source_WebCore_platform_audio_gstreamer_AudioFileReaderGStreamer.cpp
            patch-Source_WebCore_platform_audio_gstreamer_AudioSourceProviderGStreamer.cpp
            patch-Source_WebCore_platform_graphics_gstreamer_ImageDecoderGStreamer.cpp

Log Message:
(www/webkit-gtk) Trying to fix on NetBSD/9.3, broken since 2024/03/09 (?)


To generate a diff of this commit:
cvs rdiff -u -r1.175 -r1.176 pkgsrc/www/webkit-gtk/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_audio_gstreamer_AudioFileReaderGStreamer.cpp \
    pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_audio_gstreamer_AudioSourceProviderGStreamer.cpp \
    pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_graphics_gstreamer_ImageDecoderGStreamer.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/webkit-gtk/distinfo
diff -u pkgsrc/www/webkit-gtk/distinfo:1.175 pkgsrc/www/webkit-gtk/distinfo:1.176
--- pkgsrc/www/webkit-gtk/distinfo:1.175        Sun Apr 14 12:44:52 2024
+++ pkgsrc/www/webkit-gtk/distinfo      Sun Jun 23 13:59:41 2024
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.175 2024/04/14 12:44:52 tsutsui Exp $
+$NetBSD: distinfo,v 1.176 2024/06/23 13:59:41 mef Exp $
 
 BLAKE2s (webkitgtk-2.36.8.tar.xz) = 277ba5935bda3e3867083b4c736499d974b9c733dbd05bf574510857dde481a1
 SHA512 (webkitgtk-2.36.8.tar.xz) = 50576f13ea84c0634d174ccf0b70d0eb28752589b2b9ce7a82ffeee1b4b6c849a802f7ae83a3c5a74d0da2b7e3321876ead33e819d8006b8153376074cb57036
@@ -28,7 +28,10 @@ SHA1 (patch-Source_WebCore_Scripts_check
 SHA1 (patch-Source_WebCore_Scripts_generate-unified-sources.sh) = 9b323aa1fa8e6e5599ac0a7ae08fbbed4348c70e
 SHA1 (patch-Source_WebCore_crypto_algorithms_CryptoAlgorithmAES__GCM.cpp) = 03337c5eec54d6974dfea1766b14cb2c1b9f7750
 SHA1 (patch-Source_WebCore_inspector_InspectorFrontendHost.cpp) = daf6351a1a0b5a49592a2bb6db0d54620c7b09e3
+SHA1 (patch-Source_WebCore_platform_audio_gstreamer_AudioFileReaderGStreamer.cpp) = 8ad3610d02671c08637926aa5c75eaf059ae5862
+SHA1 (patch-Source_WebCore_platform_audio_gstreamer_AudioSourceProviderGStreamer.cpp) = d398e26a13b3c28088396f1390581ce6d27f2c70
 SHA1 (patch-Source_WebCore_platform_graphics_filters_FEMorphology.cpp) = 43f423af652533a64d0793ec6d15150b908da0f8
+SHA1 (patch-Source_WebCore_platform_graphics_gstreamer_ImageDecoderGStreamer.cpp) = 11ee606b7975c8d2e1318c19b49abc83cf6dc76e
 SHA1 (patch-Source_WebCore_platform_network_DNS.h) = dd9fb67aae0029c6a452e7d8f09eeed1235d5700
 SHA1 (patch-Source_WebCore_rendering_RenderLayerBacking.h) = ecf722df1d1cca13573786b34fe1e3d85edf1e1e
 SHA1 (patch-Source_WebCore_rendering_shapes_RasterShape.cpp) = 551e47698dee50d097b11e3218f13bb3447edfea

Added files:

Index: pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_audio_gstreamer_AudioFileReaderGStreamer.cpp
diff -u /dev/null pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_audio_gstreamer_AudioFileReaderGStreamer.cpp:1.1
--- /dev/null   Sun Jun 23 13:59:41 2024
+++ pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_audio_gstreamer_AudioFileReaderGStreamer.cpp    Sun Jun 23 13:59:41 2024
@@ -0,0 +1,16 @@
+$NetBSD: patch-Source_WebCore_platform_audio_gstreamer_AudioFileReaderGStreamer.cpp,v 1.1 2024/06/23 13:59:41 mef Exp $
+
+ error: braces around scalar initializer for type  gboolean (*)(GstAppSink*, GstQuery*, gpointer)' {aka 'int (*)(_GstAppSink*, _GstQuery*, void*)'}
+     };
+     ^
+--- Source/WebCore/platform/audio/gstreamer/AudioFileReaderGStreamer.cpp.orig  2023-02-14 18:01:07.357508400 +0900
++++ Source/WebCore/platform/audio/gstreamer/AudioFileReaderGStreamer.cpp       2024-06-23 21:17:02.539869040 +0900
+@@ -287,7 +287,7 @@ void AudioFileReader::handleNewDeinterle
+         // new_event
+         nullptr,
+ #endif
+-        { nullptr }
++        nullptr
+     };
+     gst_app_sink_set_callbacks(GST_APP_SINK(sink), &callbacks, this, nullptr);
+ 
Index: pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_audio_gstreamer_AudioSourceProviderGStreamer.cpp
diff -u /dev/null pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_audio_gstreamer_AudioSourceProviderGStreamer.cpp:1.1
--- /dev/null   Sun Jun 23 13:59:41 2024
+++ pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_audio_gstreamer_AudioSourceProviderGStreamer.cpp        Sun Jun 23 13:59:41 2024
@@ -0,0 +1,16 @@
+$NetBSD: patch-Source_WebCore_platform_audio_gstreamer_AudioSourceProviderGStreamer.cpp,v 1.1 2024/06/23 13:59:41 mef Exp $
+
+ error: braces around scalar initializer for type 'gboolean (*)(GstAppSink*, GstQuery*, gpointer)' {aka 'int (*)(_GstAppSink*, _GstQuery*, void*)'}
+     };
+
+--- Source/WebCore/platform/audio/gstreamer/AudioSourceProviderGStreamer.cpp.orig      2024-06-23 20:38:51.854577969 +0900
++++ Source/WebCore/platform/audio/gstreamer/AudioSourceProviderGStreamer.cpp   2024-06-23 20:39:25.862340965 +0900
+@@ -363,7 +363,7 @@ void AudioSourceProviderGStreamer::handl
+         // new_event
+         nullptr,
+ #endif
+-        { nullptr }
++        nullptr
+     };
+     gst_app_sink_set_callbacks(GST_APP_SINK(sink), &callbacks, this, nullptr);
+     // The provider client might request samples faster than the current clock speed, so this sink
Index: pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_graphics_gstreamer_ImageDecoderGStreamer.cpp
diff -u /dev/null pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_graphics_gstreamer_ImageDecoderGStreamer.cpp:1.1
--- /dev/null   Sun Jun 23 13:59:41 2024
+++ pkgsrc/www/webkit-gtk/patches/patch-Source_WebCore_platform_graphics_gstreamer_ImageDecoderGStreamer.cpp    Sun Jun 23 13:59:41 2024
@@ -0,0 +1,17 @@
+$NetBSD: patch-Source_WebCore_platform_graphics_gstreamer_ImageDecoderGStreamer.cpp,v 1.1 2024/06/23 13:59:41 mef Exp $
+
+error: braces around scalar initializer for type 'gboolean (*)(GstAppSink*, GstQuery*, gpointer)' {aka 'int (*)(_GstAppSink*, _GstQuery*, void*)'}
+     };
+     ^
+
+--- Source/WebCore/platform/graphics/gstreamer/ImageDecoderGStreamer.cpp.orig  2023-02-14 18:01:07.365508600 +0900
++++ Source/WebCore/platform/graphics/gstreamer/ImageDecoderGStreamer.cpp       2024-06-23 21:02:18.568537756 +0900
+@@ -274,7 +274,7 @@ void ImageDecoderGStreamer::InnerDecoder
+         // new_event
+         nullptr,
+ #endif
+-        { nullptr }
++        nullptr
+     };
+     gst_app_sink_set_callbacks(GST_APP_SINK(sink), &callbacks, &m_decoder, nullptr);
+ 



Home | Main Index | Thread Index | Old Index