ソースを参照

package/cog: bump to verion 0.12.0

This new release includes a number of improvements. Release notes:

  https://wpewebkit.org/release/cog-0.12.0.html

Small tweaks were needed due to the "fdo" platform backend being renamed
as "wl"; the symbol is kept as BR2_PACKAGE_COG_PLATFORM_FDO to avoid
breaking existing configurations. Also the new version supports building
with libsoup3, which is not yet packaged in Buildroot, so -DUSE_SOUP2=ON
is always passed to CMake.

Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
Tested-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Adrian Perez de Castro 3 年 前
コミット
7377feafaf
3 ファイル変更11 行追加10 行削除
  1. 2 2
      package/cog/Config.in
  2. 4 4
      package/cog/cog.hash
  3. 5 4
      package/cog/cog.mk

+ 2 - 2
package/cog/Config.in

@@ -28,12 +28,12 @@ config BR2_PACKAGE_COG_PROGRAMS_HOME_URI
 	  must be always specified in the command line.
 
 config BR2_PACKAGE_COG_PLATFORM_FDO
-	bool "FreeDesktop.org backend"
+	bool "Wayland backend"
 	default y
 	select BR2_PACKAGE_LIBXKBCOMMON
 	select BR2_PACKAGE_WAYLAND_PROTOCOLS
 	help
-	  Enable the FreeDesktop.org backend. Cog will interface with
+	  Enable the Wayland backend. Cog will interface with
 	  a compositor over the Wayland protocol.
 
 config BR2_PACKAGE_COG_PLATFORM_DRM

+ 4 - 4
package/cog/cog.hash

@@ -1,7 +1,7 @@
-# From https://wpewebkit.org/releases/cog-0.10.1.tar.xz.sums
-md5  b997da3c143bc34ec5e953eb7e7ccefc  cog-0.10.1.tar.xz
-sha1  f25312141de918f41add3e3c9984faa985cda0a9  cog-0.10.1.tar.xz
-sha256  aecf546d7b0645119d79559c5574cb5eb68364fc8409dfbd47a4920bd1f221bc  cog-0.10.1.tar.xz
+# From https://wpewebkit.org/releases/cog-0.12.0.tar.xz.sums
+md5  30d6f68914af0ba5c32ac14df504215a  cog-0.12.0.tar.xz
+sha1  de367b33fb45a1bca9e443ca5c1d6cae3833d759  cog-0.12.0.tar.xz
+sha256  aad413a8aaf15d400d70f9c909a28b92b138f7b0c0d825978de8788d0d75208a  cog-0.12.0.tar.xz
 
 # Hashes for license files:
 sha256  e6c42d93c68b292bcccf6d2ec3e13da85df90b718ba27c2c2a01053a9d009252  COPYING

+ 5 - 4
package/cog/cog.mk

@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-COG_VERSION = 0.10.1
+COG_VERSION = 0.12.0
 COG_SITE = https://wpewebkit.org/releases
 COG_SOURCE = cog-$(COG_VERSION).tar.xz
 COG_INSTALL_STAGING = YES
@@ -16,13 +16,14 @@ COG_CONF_OPTS = \
 	-DCOG_PLATFORM_HEADLESS=ON \
 	-DCOG_WESTON_DIRECT_DISPLAY=OFF \
 	-DINSTALL_MAN_PAGES=OFF \
-	-DCOG_HOME_URI='$(call qstrip,$(BR2_PACKAGE_COG_PROGRAMS_HOME_URI))'
+	-DCOG_HOME_URI='$(call qstrip,$(BR2_PACKAGE_COG_PROGRAMS_HOME_URI))' \
+	-DUSE_SOUP2=ON
 
 ifeq ($(BR2_PACKAGE_COG_PLATFORM_FDO),y)
-COG_CONF_OPTS += -DCOG_PLATFORM_FDO=ON
+COG_CONF_OPTS += -DCOG_PLATFORM_WL=ON
 COG_DEPENDENCIES += libxkbcommon wayland-protocols
 else
-COG_CONF_OPTS += -DCOG_PLATFORM_FDO=OFF
+COG_CONF_OPTS += -DCOG_PLATFORM_WL=OFF
 endif
 
 ifeq ($(BR2_PACKAGE_COG_PLATFORM_DRM),y)