Title: [243060] trunk
Revision
243060
Author
[email protected]
Date
2019-03-18 04:02:38 -0700 (Mon, 18 Mar 2019)

Log Message

[WPE] Bump dependencies to wpe-1.0 and wpebackend-fdo-1.0
https://bugs.webkit.org/show_bug.cgi?id=195786

Reviewed by Philippe Normand.

.:

* Source/cmake/FindWPE.cmake: Check for the wpe-1.0 pkg-config package.

Source/WebKit:

* wpe/wpe-web-extension.pc.in: Change dependency to wpe-1.0
* wpe/wpe-webkit.pc.in: Ditto.

Tools:

* flatpak/org.webkit.WPEModules.yaml: Use libwpe 1.1.90 and wpebackend-fdo 1.1.91.
* wpe/jhbuild.modules: Ditto.

Modified Paths

Diff

Modified: trunk/ChangeLog (243059 => 243060)


--- trunk/ChangeLog	2019-03-18 10:42:36 UTC (rev 243059)
+++ trunk/ChangeLog	2019-03-18 11:02:38 UTC (rev 243060)
@@ -1,3 +1,12 @@
+2019-03-18  Adrian Perez de Castro  <[email protected]>
+
+        [WPE] Bump dependencies to wpe-1.0 and wpebackend-fdo-1.0
+        https://bugs.webkit.org/show_bug.cgi?id=195786
+
+        Reviewed by Philippe Normand.
+
+        * Source/cmake/FindWPE.cmake: Check for the wpe-1.0 pkg-config package.
+
 2019-03-11  Xan Lopez  <[email protected]>
 
         [CMake] Build 32bit binaries on Linux/64bit when the --32-bit is passed to build-jsc

Modified: trunk/Source/WebKit/ChangeLog (243059 => 243060)


--- trunk/Source/WebKit/ChangeLog	2019-03-18 10:42:36 UTC (rev 243059)
+++ trunk/Source/WebKit/ChangeLog	2019-03-18 11:02:38 UTC (rev 243060)
@@ -1,3 +1,13 @@
+2019-03-18  Adrian Perez de Castro  <[email protected]>
+
+        [WPE] Bump dependencies to wpe-1.0 and wpebackend-fdo-1.0
+        https://bugs.webkit.org/show_bug.cgi?id=195786
+
+        Reviewed by Philippe Normand.
+
+        * wpe/wpe-web-extension.pc.in: Change dependency to wpe-1.0
+        * wpe/wpe-webkit.pc.in: Ditto.
+
 2019-03-17  Fujii Hironori  <[email protected]>
 
         [iOS] Block the accessibility server when accessibility is not enabled.

Modified: trunk/Source/WebKit/wpe/wpe-web-extension.pc.in (243059 => 243060)


--- trunk/Source/WebKit/wpe/wpe-web-extension.pc.in	2019-03-18 10:42:36 UTC (rev 243059)
+++ trunk/Source/WebKit/wpe/wpe-web-extension.pc.in	2019-03-18 11:02:38 UTC (rev 243060)
@@ -7,6 +7,6 @@
 Description: Embeddable Web content engine - Web process extensions
 URL: https://wpewebkit.org
 Version: @PROJECT_VERSION@
-Requires: glib-2.0 libsoup-2.4 wpe-0.2
+Requires: glib-2.0 libsoup-2.4 wpe-1.0
 Libs: -L${libdir} -lWPEWebKit-@WPE_API_VERSION@
 Cflags: -I${includedir}/wpe-webkit-@WPE_API_VERSION@

Modified: trunk/Source/WebKit/wpe/wpe-webkit.pc.in (243059 => 243060)


--- trunk/Source/WebKit/wpe/wpe-webkit.pc.in	2019-03-18 10:42:36 UTC (rev 243059)
+++ trunk/Source/WebKit/wpe/wpe-webkit.pc.in	2019-03-18 11:02:38 UTC (rev 243060)
@@ -7,6 +7,6 @@
 Description: Embeddable Web content engine
 URL: https://wpewebkit.org
 Version: @PROJECT_VERSION@
-Requires: glib-2.0 libsoup-2.4 wpe-0.2
+Requires: glib-2.0 libsoup-2.4 wpe-1.0
 Libs: -L${libdir} -lWPEWebKit-@WPE_API_VERSION@
 Cflags: -I${includedir}/wpe-webkit-@WPE_API_VERSION@

Modified: trunk/Source/cmake/FindWPE.cmake (243059 => 243060)


--- trunk/Source/cmake/FindWPE.cmake	2019-03-18 10:42:36 UTC (rev 243059)
+++ trunk/Source/cmake/FindWPE.cmake	2019-03-18 11:02:38 UTC (rev 243060)
@@ -29,7 +29,7 @@
 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 find_package(PkgConfig)
-pkg_check_modules(PC_WPE QUIET wpe-0.2)
+pkg_check_modules(PC_WPE QUIET wpe-1.0)
 
 find_path(WPE_INCLUDE_DIRS
     NAMES wpe/wpe.h
@@ -37,7 +37,7 @@
 )
 
 find_library(WPE_LIBRARIES
-    NAMES wpe-0.2 wpe
+    NAMES wpe-1.0
     HINTS ${PC_WPE_LIBDIR} ${PC_WPE_LIBRARY_DIRS}
 )
 

Modified: trunk/Tools/ChangeLog (243059 => 243060)


--- trunk/Tools/ChangeLog	2019-03-18 10:42:36 UTC (rev 243059)
+++ trunk/Tools/ChangeLog	2019-03-18 11:02:38 UTC (rev 243060)
@@ -1,3 +1,13 @@
+2019-03-18  Adrian Perez de Castro  <[email protected]>
+
+        [WPE] Bump dependencies to wpe-1.0 and wpebackend-fdo-1.0
+        https://bugs.webkit.org/show_bug.cgi?id=195786
+
+        Reviewed by Philippe Normand.
+
+        * flatpak/org.webkit.WPEModules.yaml: Use libwpe 1.1.90 and wpebackend-fdo 1.1.91.
+        * wpe/jhbuild.modules: Ditto.
+
 2019-03-16  Aakash Jain  <[email protected]>
 
         [ews-build] Don't run clean builds on EWS builders

Modified: trunk/Tools/flatpak/org.webkit.WPEModules.yaml (243059 => 243060)


--- trunk/Tools/flatpak/org.webkit.WPEModules.yaml	2019-03-18 10:42:36 UTC (rev 243059)
+++ trunk/Tools/flatpak/org.webkit.WPEModules.yaml	2019-03-18 11:02:38 UTC (rev 243060)
@@ -2,11 +2,11 @@
   buildsystem: cmake-ninja
   sources:
     - type: archive
-      url: https://wpewebkit.org/releases/libwpe-1.1.0.tar.xz
-      sha256: 72e34ad754be11abd1a438cfe195d8d644c52105ab2b1c3b39dec6228bc776ce
+      url: https://wpewebkit.org/releases/libwpe-1.1.90.tar.xz
+      sha256: d21dcf83f7e7405e8296c1732d240637d2facdb40e1c9879a1c0f9f222517592
 - name: wpebackend-fdo
   buildsystem: cmake-ninja
   sources:
-    - type: git
-      url: https://github.com/Igalia/wpebackend-fdo.git
-      commit: fa227dac7c6a133d62b35d7a6af0332582b64d4d
+    - type: archive
+      url: https://wpewebkit.org/releases/wpebackend-fdo-1.1.91.tar.xz
+      sha256: d20e5688e3e6d9fdf1c3ee083ea14720bf59354aa17f275a003b030e8131315d

Modified: trunk/Tools/wpe/jhbuild.modules (243059 => 243060)


--- trunk/Tools/wpe/jhbuild.modules	2019-03-18 10:42:36 UTC (rev 243059)
+++ trunk/Tools/wpe/jhbuild.modules	2019-03-18 11:02:38 UTC (rev 243060)
@@ -193,8 +193,8 @@
   </autotools>
 
   <cmake id="libwpe">
-      <branch repo="wpewebkit" module="libwpe-1.1.0.tar.xz" version="1.1.0"
-              hash="sha256:72e34ad754be11abd1a438cfe195d8d644c52105ab2b1c3b39dec6228bc776ce"/>
+      <branch repo="wpewebkit" module="libwpe-1.1.90.tar.xz" version="1.1.90"
+              hash="sha256:d21dcf83f7e7405e8296c1732d240637d2facdb40e1c9879a1c0f9f222517592"/>
   </cmake>
 
   <cmake id="wpebackend-fdo">
@@ -202,8 +202,8 @@
       <dep package="libwpe"/>
       <dep package="glib"/>
     </dependencies>
-    <branch repo="github.com" module="Igalia/wpebackend-fdo.git" checkoutdir="wpebackend-fdo"
-            tag="fa227dac7c6a133d62b35d7a6af0332582b64d4d"/>
+    <branch repo="wpewebkit" module="wpebackend-fdo-1.1.91.tar.xz" version="1.1.91"
+            hash="sha256:d20e5688e3e6d9fdf1c3ee083ea14720bf59354aa17f275a003b030e8131315d"/>
   </cmake>
 
   <autotools id="libgpg-error" autogen-sh="configure">
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to