Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump
@ 2016-09-24 17:28 Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 1/9] wayland-protocols: bump to version 1.7 Gustavo Zacarias
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

This series bumps wayland/weston to the latest 1.12 release and gtk3+
to it's latest 3.22.0 release.
The series can't be split since these wayland/weston/gtk+ versions are
protocol-version tied, i.e. gtk+ 3.22 won't work with any older
wayland release.

Gustavo Zacarias (9):
  wayland-protocols: bump to version 1.7
  wayland: bump to version 1.12.0
  weston: bump to version 1.12.0
  legacy: add weston rpi support
  adwaita-icon-theme: bump to version 3.22.0
  libgtk3: bump to version 3.22.0
  glibmm: bump to version 2.50.0
  libsigc: bump to version 2.10.0
  gtkmm3: bump to version 3.22.0

 Config.in.legacy                                   |  8 +++++
 package/adwaita-icon-theme/adwaita-icon-theme.hash |  4 +--
 package/adwaita-icon-theme/adwaita-icon-theme.mk   |  5 ++--
 package/glibmm/glibmm.hash                         |  4 +--
 package/glibmm/glibmm.mk                           |  4 +--
 package/gtkmm3/gtkmm3.hash                         |  4 +--
 package/gtkmm3/gtkmm3.mk                           |  4 +--
 package/libgtk3/libgtk3.hash                       |  4 +--
 package/libgtk3/libgtk3.mk                         |  4 +--
 package/libsigc/libsigc.hash                       |  4 +--
 package/libsigc/libsigc.mk                         |  2 +-
 package/wayland-protocols/wayland-protocols.hash   |  4 +--
 package/wayland-protocols/wayland-protocols.mk     |  2 +-
 ...0002-scanner-Use-uint32_t-instead-of-uint.patch | 31 --------------------
 package/wayland/wayland.hash                       |  4 +--
 package/wayland/wayland.mk                         |  2 +-
 ...ompositor-rdp-fix-no-break-space-U-A0-U8-.patch | 34 ----------------------
 package/weston/Config.in                           |  6 ----
 package/weston/weston.hash                         |  4 +--
 package/weston/weston.mk                           | 11 +------
 20 files changed, 37 insertions(+), 108 deletions(-)
 delete mode 100644 package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch
 delete mode 100644 package/weston/0002-libweston-compositor-rdp-fix-no-break-space-U-A0-U8-.patch

-- 
2.7.3

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 1/9] wayland-protocols: bump to version 1.7
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
@ 2016-09-24 17:28 ` Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 2/9] wayland: bump to version 1.12.0 Gustavo Zacarias
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/wayland-protocols/wayland-protocols.hash | 4 ++--
 package/wayland-protocols/wayland-protocols.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/wayland-protocols/wayland-protocols.hash b/package/wayland-protocols/wayland-protocols.hash
index 380581b..a316698 100644
--- a/package/wayland-protocols/wayland-protocols.hash
+++ b/package/wayland-protocols/wayland-protocols.hash
@@ -1,2 +1,2 @@
-# From https://lists.freedesktop.org/archives/wayland-devel/2016-May/029014.html
-sha256	014a9a23c21ed14f49b1005b3e8efa66d6337d4ceafc97f7b0d6707e7e3df572	wayland-protocols-1.4.tar.xz
+# From https://lists.freedesktop.org/archives/wayland-devel/2016-August/030606.html
+sha256	635f2a937d318f1fecb97b54074ca211486e38af943868dd0fa82ea38d091c1f	wayland-protocols-1.7.tar.xz
diff --git a/package/wayland-protocols/wayland-protocols.mk b/package/wayland-protocols/wayland-protocols.mk
index 51ee9ee..54c2ec1 100644
--- a/package/wayland-protocols/wayland-protocols.mk
+++ b/package/wayland-protocols/wayland-protocols.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-WAYLAND_PROTOCOLS_VERSION = 1.4
+WAYLAND_PROTOCOLS_VERSION = 1.7
 WAYLAND_PROTOCOLS_SITE = http://wayland.freedesktop.org/releases
 WAYLAND_PROTOCOLS_SOURCE = wayland-protocols-$(WAYLAND_PROTOCOLS_VERSION).tar.xz
 WAYLAND_PROTOCOLS_LICENSE = MIT
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/9] wayland: bump to version 1.12.0
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 1/9] wayland-protocols: bump to version 1.7 Gustavo Zacarias
@ 2016-09-24 17:28 ` Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 3/9] weston: " Gustavo Zacarias
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

And drop upstream patch.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 ...0002-scanner-Use-uint32_t-instead-of-uint.patch | 31 ----------------------
 package/wayland/wayland.hash                       |  4 +--
 package/wayland/wayland.mk                         |  2 +-
 3 files changed, 3 insertions(+), 34 deletions(-)
 delete mode 100644 package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch

diff --git a/package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch b/package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch
deleted file mode 100644
index 1d05f25..0000000
--- a/package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 6750b47d9e0d3074d2e56aa36c476493f533d696 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 15 Jul 2016 16:23:48 -0700
-Subject: [PATCH 1/1] scanner: Use uint32_t instead of uint
-
-uint32_t is C99 defined stdint type
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-Reviewed-by: Daniel Stone <daniels@collabora.com>
-[Rahul Bedarkar: Backported from: 6750b47d9e0d3074d2e56aa36c476493f533d696]
-Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
----
- src/scanner.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/scanner.c b/src/scanner.c
-index 6e2c3a3..ebae4cc 100644
---- a/src/scanner.c
-+++ b/src/scanner.c
-@@ -819,7 +819,7 @@ find_enumeration(struct protocol *protocol,
- 	struct interface *i;
- 	struct enumeration *e;
- 	char *enum_name;
--	uint idx = 0, j;
-+	uint32_t idx = 0, j;
- 
- 	for (j = 0; j + 1 < strlen(enum_attribute); j++) {
- 		if (enum_attribute[j] == '.') {
--- 
-2.6.2
-
diff --git a/package/wayland/wayland.hash b/package/wayland/wayland.hash
index be1b6b5..9a58c56 100644
--- a/package/wayland/wayland.hash
+++ b/package/wayland/wayland.hash
@@ -1,2 +1,2 @@
-# From https://lists.freedesktop.org/archives/wayland-devel/2016-June/029163.html
-sha256  9540925f7928becfdf5e3b84c70757f6589bf1ceef09bea78784d8e4772c0db0	wayland-1.11.0.tar.xz
+# From https://lists.freedesktop.org/archives/wayland-devel/2016-September/031121.html
+sha256  d6b4135cba0188abcb7275513c72dede751d6194f6edc5b82183a3ba8b821ab1	wayland-1.12.0.tar.xz
diff --git a/package/wayland/wayland.mk b/package/wayland/wayland.mk
index d4b4664..a862394 100644
--- a/package/wayland/wayland.mk
+++ b/package/wayland/wayland.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-WAYLAND_VERSION = 1.11.0
+WAYLAND_VERSION = 1.12.0
 WAYLAND_SITE = http://wayland.freedesktop.org/releases
 WAYLAND_SOURCE = wayland-$(WAYLAND_VERSION).tar.xz
 WAYLAND_LICENSE = MIT
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 3/9] weston: bump to version 1.12.0
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 1/9] wayland-protocols: bump to version 1.7 Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 2/9] wayland: bump to version 1.12.0 Gustavo Zacarias
@ 2016-09-24 17:28 ` Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 4/9] legacy: add weston rpi support Gustavo Zacarias
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

Also drop upstream patch.
Drop propietary RPI support since it's gone upstream.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 ...ompositor-rdp-fix-no-break-space-U-A0-U8-.patch | 34 ----------------------
 package/weston/Config.in                           |  6 ----
 package/weston/weston.hash                         |  4 +--
 package/weston/weston.mk                           | 11 +------
 4 files changed, 3 insertions(+), 52 deletions(-)
 delete mode 100644 package/weston/0002-libweston-compositor-rdp-fix-no-break-space-U-A0-U8-.patch

diff --git a/package/weston/0002-libweston-compositor-rdp-fix-no-break-space-U-A0-U8-.patch b/package/weston/0002-libweston-compositor-rdp-fix-no-break-space-U-A0-U8-.patch
deleted file mode 100644
index b391147..0000000
--- a/package/weston/0002-libweston-compositor-rdp-fix-no-break-space-U-A0-U8-.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 7ee8589dd83e52ae6af3ec5247c3403e8ded69a5 Mon Sep 17 00:00:00 2001
-From: "Yann E. MORIN" <yann.morin.1998@free.fr>
-Date: Tue, 9 Aug 2016 20:00:29 +0200
-Subject: [PATCH] libweston/compositor-rdp: fix no-break space U+A0 (U8+C2A0)
-
-There is a UTF-8 no-break space (U+A0, U8+C2A0) in the definition of
-macro NSC_RESET in the case of  1.2.2 <= FreeRDP < 2.0.
-
-This is causing build issues (\302 is 0xC2, \240 is 0xA0):
-    http://autobuild.buildroot.net/results/f49/f49a9cbb7bdc5d9e05dcf0a20bd83f059e234e74/build-end.log
-
-Fix that by using a plain, boring space U+20.
-
-Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
----
- libweston/compositor-rdp.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/compositor-rdp.c b/src/compositor-rdp.c
-index 11f5f05..ee81300 100644
---- a/src/compositor-rdp.c
-+++ b/src/compositor-rdp.c
-@@ -58,7 +58,7 @@
- #	define NSC_RESET(C, W, H) nsc_context_reset(C, W, H)
- #	define RFX_RESET(C, W, H) rfx_context_reset(C, W, H)
- #else
--#	define NSC_RESET(C, W, H) do {?nsc_context_reset(C); C->width = W; C->height = H; } while(0)
-+#	define NSC_RESET(C, W, H) do { nsc_context_reset(C); C->width = W; C->height = H; } while(0)
- #	define RFX_RESET(C, W, H) do { rfx_context_reset(C); C->width = W; C->height = H; } while(0)
- #endif
- #define FREERDP_CB_RET_TYPE BOOL
--- 
-2.7.4
-
diff --git a/package/weston/Config.in b/package/weston/Config.in
index 6baa24b..b4e198d 100644
--- a/package/weston/Config.in
+++ b/package/weston/Config.in
@@ -77,12 +77,6 @@ comment "RDP compositor needs a toolchain w/ wchar, C++"
 	depends on BR2_TOOLCHAIN_HAS_SYNC_4
 	depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP
 
-# rpi-userland is an EGL/GLES provider, so we can't select it
-config BR2_PACKAGE_WESTON_RPI
-	bool "RPi compositor"
-	depends on BR2_PACKAGE_RPI_USERLAND
-	select BR2_PACKAGE_WESTON_HAS_COMPOSITOR
-
 config BR2_PACKAGE_WESTON_X11
 	bool "X11 compositor"
 	depends on BR2_PACKAGE_XORG7
diff --git a/package/weston/weston.hash b/package/weston/weston.hash
index 4f23511..c966864 100644
--- a/package/weston/weston.hash
+++ b/package/weston/weston.hash
@@ -1,2 +1,2 @@
-# From https://lists.freedesktop.org/archives/wayland-devel/2016-June/029164.html
-sha256  05e086e9f186a06843b9f7a5e1abf19347b1a6e4be26d7e74927abc17b6b7125  weston-1.11.0.tar.xz
+# From https://lists.freedesktop.org/archives/wayland-devel/2016-September/031123.html
+sha256  ac7ac2a32e3b9f50131fccded5d2326bd36b2226712d90b61999118a09af5033  weston-1.12.0.tar.xz
diff --git a/package/weston/weston.mk b/package/weston/weston.mk
index 31c9281..7d348dc 100644
--- a/package/weston/weston.mk
+++ b/package/weston/weston.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-WESTON_VERSION = 1.11.0
+WESTON_VERSION = 1.12.0
 WESTON_SITE = http://wayland.freedesktop.org/releases
 WESTON_SOURCE = weston-$(WESTON_VERSION).tar.xz
 WESTON_LICENSE = MIT
@@ -89,15 +89,6 @@ else
 WESTON_CONF_OPTS += --disable-drm-compositor
 endif
 
-ifeq ($(BR2_PACKAGE_WESTON_RPI),y)
-WESTON_DEPENDENCIES += rpi-userland
-WESTON_CONF_OPTS += --enable-rpi-compositor \
-	--disable-resize-optimization \
-	WESTON_NATIVE_BACKEND=rpi-backend.so
-else
-WESTON_CONF_OPTS += --disable-rpi-compositor
-endif # BR2_PACKAGE_WESTON_RPI
-
 ifeq ($(BR2_PACKAGE_WESTON_X11),y)
 WESTON_CONF_OPTS += \
 	--enable-x11-compositor \
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 4/9] legacy: add weston rpi support
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2016-09-24 17:28 ` [Buildroot] [PATCH 3/9] weston: " Gustavo Zacarias
@ 2016-09-24 17:28 ` Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 5/9] adwaita-icon-theme: bump to version 3.22.0 Gustavo Zacarias
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

It's gone for good, people should just use the open vc4 support instead.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 Config.in.legacy | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/Config.in.legacy b/Config.in.legacy
index d105601..2fae812 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -145,6 +145,14 @@ endif
 ###############################################################################
 comment "Legacy options removed in 2016.11"
 
+config BR2_PACKAGE_WESTON_RPI
+	bool "Weston propietary RPI support is gone"
+	select BR2_LEGACY
+	help
+	  Upstream decided the propietary (rpi-userland) weston composer
+	  support wasn't worth the effort so it was removed. Switch to
+	  the open VC4 support.
+
 config BR2_LINUX_KERNEL_TOOL_CPUPOWER
 	bool "linux-tool cpupower"
 	depends on BR2_LINUX_KERNEL
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 5/9] adwaita-icon-theme: bump to version 3.22.0
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
                   ` (3 preceding siblings ...)
  2016-09-24 17:28 ` [Buildroot] [PATCH 4/9] legacy: add weston rpi support Gustavo Zacarias
@ 2016-09-24 17:28 ` Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 6/9] libgtk3: " Gustavo Zacarias
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/adwaita-icon-theme/adwaita-icon-theme.hash | 4 ++--
 package/adwaita-icon-theme/adwaita-icon-theme.mk   | 5 +++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/package/adwaita-icon-theme/adwaita-icon-theme.hash b/package/adwaita-icon-theme/adwaita-icon-theme.hash
index a416e23..61b5f14 100644
--- a/package/adwaita-icon-theme/adwaita-icon-theme.hash
+++ b/package/adwaita-icon-theme/adwaita-icon-theme.hash
@@ -1,2 +1,2 @@
-# From http://ftp.gnome.org/pub/gnome/sources/adwaita-icon-theme/3.20/adwaita-icon-theme-3.20.sha256sum
-sha256	7a0a887349f340dd644032f89d81264b694c4b006bd51af1c2c368d431e7ae35	adwaita-icon-theme-3.20.tar.xz
+# From http://ftp.gnome.org/pub/gnome/sources/adwaita-icon-theme/3.22/adwaita-icon-theme-3.22.0.sha256sum
+sha256	c18bf6e26087d9819a962c77288b291efab25d0419b73d909dd771716a45dcb7	adwaita-icon-theme-3.22.0.tar.xz
diff --git a/package/adwaita-icon-theme/adwaita-icon-theme.mk b/package/adwaita-icon-theme/adwaita-icon-theme.mk
index 24ce350..b9ec0c0 100644
--- a/package/adwaita-icon-theme/adwaita-icon-theme.mk
+++ b/package/adwaita-icon-theme/adwaita-icon-theme.mk
@@ -4,8 +4,9 @@
 #
 ################################################################################
 
-ADWAITA_ICON_THEME_VERSION = 3.20
-ADWAITA_ICON_THEME_SITE = http://ftp.gnome.org/pub/gnome/sources/adwaita-icon-theme/$(ADWAITA_ICON_THEME_VERSION)
+ADWAITA_ICON_THEME_VERSION_MAJOR = 3.22
+ADWAITA_ICON_THEME_VERSION = $(ADWAITA_ICON_THEME_VERSION_MAJOR).0
+ADWAITA_ICON_THEME_SITE = http://ftp.gnome.org/pub/gnome/sources/adwaita-icon-theme/$(ADWAITA_ICON_THEME_VERSION_MAJOR)
 ADWAITA_ICON_THEME_SOURCE = adwaita-icon-theme-$(ADWAITA_ICON_THEME_VERSION).tar.xz
 ADWAITA_ICON_THEME_LICENSE = LGPLv3 or CC-BY-SA-3.0
 ADWAITA_ICON_THEME_LICENSE_FILES = COPYING COPYING_LGPL COPYING_CCBYSA3
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 6/9] libgtk3: bump to version 3.22.0
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
                   ` (4 preceding siblings ...)
  2016-09-24 17:28 ` [Buildroot] [PATCH 5/9] adwaita-icon-theme: bump to version 3.22.0 Gustavo Zacarias
@ 2016-09-24 17:28 ` Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 7/9] glibmm: bump to version 2.50.0 Gustavo Zacarias
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libgtk3/libgtk3.hash | 4 ++--
 package/libgtk3/libgtk3.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/libgtk3/libgtk3.hash b/package/libgtk3/libgtk3.hash
index d839a01..3854faa 100644
--- a/package/libgtk3/libgtk3.hash
+++ b/package/libgtk3/libgtk3.hash
@@ -1,2 +1,2 @@
-# From http://ftp.gnome.org/pub/gnome/sources/gtk+/3.20/gtk+-3.20.9.sha256sum
-sha256	83a609ba2f3424b5509e73967c49c67833af466d6f91081b24ee5c64fce6ac17	gtk+-3.20.9.tar.xz
+# From http://ftp.gnome.org/pub/gnome/sources/gtk+/3.22/gtk+-3.22.0.sha256sum
+sha256	88d0bb584be7ecec965b82ba88a9cf0aafd6f03eff7447653295ab2341c74134	gtk+-3.22.0.tar.xz
diff --git a/package/libgtk3/libgtk3.mk b/package/libgtk3/libgtk3.mk
index 67a0f02..ed4860d 100644
--- a/package/libgtk3/libgtk3.mk
+++ b/package/libgtk3/libgtk3.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-LIBGTK3_VERSION_MAJOR = 3.20
-LIBGTK3_VERSION = $(LIBGTK3_VERSION_MAJOR).9
+LIBGTK3_VERSION_MAJOR = 3.22
+LIBGTK3_VERSION = $(LIBGTK3_VERSION_MAJOR).0
 LIBGTK3_SOURCE = gtk+-$(LIBGTK3_VERSION).tar.xz
 LIBGTK3_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk+/$(LIBGTK3_VERSION_MAJOR)
 LIBGTK3_LICENSE = LGPLv2+
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 7/9] glibmm: bump to version 2.50.0
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
                   ` (5 preceding siblings ...)
  2016-09-24 17:28 ` [Buildroot] [PATCH 6/9] libgtk3: " Gustavo Zacarias
@ 2016-09-24 17:28 ` Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 8/9] libsigc: bump to version 2.10.0 Gustavo Zacarias
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/glibmm/glibmm.hash | 4 ++--
 package/glibmm/glibmm.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/glibmm/glibmm.hash b/package/glibmm/glibmm.hash
index 82775e3..fbcf855 100644
--- a/package/glibmm/glibmm.hash
+++ b/package/glibmm/glibmm.hash
@@ -1,2 +1,2 @@
-# From http://ftp.gnome.org/pub/gnome/sources/glibmm/2.48/glibmm-2.48.1.sha256sum
-sha256	dc225f7d2f466479766332483ea78f82dc349d59399d30c00de50e5073157cdf	glibmm-2.48.1.tar.xz
+# From http://ftp.gnome.org/pub/gnome/sources/glibmm/2.50/glibmm-2.50.0.sha256sum
+sha256	df726e3c6ef42b7621474b03b644a2e40ec4eef94a1c5a932c1e740a78f95e94	glibmm-2.50.0.tar.xz
diff --git a/package/glibmm/glibmm.mk b/package/glibmm/glibmm.mk
index 741b45e..0daca58 100644
--- a/package/glibmm/glibmm.mk
+++ b/package/glibmm/glibmm.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-GLIBMM_VERSION_MAJOR = 2.48
-GLIBMM_VERSION = $(GLIBMM_VERSION_MAJOR).1
+GLIBMM_VERSION_MAJOR = 2.50
+GLIBMM_VERSION = $(GLIBMM_VERSION_MAJOR).0
 GLIBMM_LICENSE = LGPLv2.1+ (library), GPLv2+ (tools)
 GLIBMM_LICENSE_FILES = COPYING COPYING.tools
 GLIBMM_SOURCE = glibmm-$(GLIBMM_VERSION).tar.xz
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 8/9] libsigc: bump to version 2.10.0
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
                   ` (6 preceding siblings ...)
  2016-09-24 17:28 ` [Buildroot] [PATCH 7/9] glibmm: bump to version 2.50.0 Gustavo Zacarias
@ 2016-09-24 17:28 ` Gustavo Zacarias
  2016-09-24 17:28 ` [Buildroot] [PATCH 9/9] gtkmm3: bump to version 3.22.0 Gustavo Zacarias
  2016-09-25 21:19 ` [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Thomas Petazzoni
  9 siblings, 0 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libsigc/libsigc.hash | 4 ++--
 package/libsigc/libsigc.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/libsigc/libsigc.hash b/package/libsigc/libsigc.hash
index c452414..a630534 100644
--- a/package/libsigc/libsigc.hash
+++ b/package/libsigc/libsigc.hash
@@ -1,2 +1,2 @@
-# From http://ftp.gnome.org/pub/gnome/sources/libsigc++/2.8/libsigc++-2.8.0.sha256sum
-sha256	774980d027c52947cb9ee4fac6ffe2ca60cc2f753068a89dfd281c83dbff9651	libsigc++-2.8.0.tar.xz
+# From http://ftp.gnome.org/pub/gnome/sources/libsigc++/2.10/libsigc++-2.10.0.sha256sum
+sha256	f843d6346260bfcb4426259e314512b99e296e8ca241d771d21ac64f28298d81	libsigc++-2.10.0.tar.xz
diff --git a/package/libsigc/libsigc.mk b/package/libsigc/libsigc.mk
index f3ca970..590cbaa 100644
--- a/package/libsigc/libsigc.mk
+++ b/package/libsigc/libsigc.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBSIGC_VERSION_MAJOR = 2.8
+LIBSIGC_VERSION_MAJOR = 2.10
 LIBSIGC_VERSION = $(LIBSIGC_VERSION_MAJOR).0
 LIBSIGC_SOURCE = libsigc++-$(LIBSIGC_VERSION).tar.xz
 LIBSIGC_SITE = http://ftp.gnome.org/pub/GNOME/sources/libsigc++/$(LIBSIGC_VERSION_MAJOR)
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 9/9] gtkmm3: bump to version 3.22.0
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
                   ` (7 preceding siblings ...)
  2016-09-24 17:28 ` [Buildroot] [PATCH 8/9] libsigc: bump to version 2.10.0 Gustavo Zacarias
@ 2016-09-24 17:28 ` Gustavo Zacarias
  2016-09-25 21:19 ` [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Thomas Petazzoni
  9 siblings, 0 replies; 11+ messages in thread
From: Gustavo Zacarias @ 2016-09-24 17:28 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/gtkmm3/gtkmm3.hash | 4 ++--
 package/gtkmm3/gtkmm3.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/gtkmm3/gtkmm3.hash b/package/gtkmm3/gtkmm3.hash
index f2fc960..951b481 100644
--- a/package/gtkmm3/gtkmm3.hash
+++ b/package/gtkmm3/gtkmm3.hash
@@ -1,2 +1,2 @@
-# From http://ftp.gnome.org/pub/GNOME/sources/gtkmm/3.20/gtkmm-3.20.1.sha256sum
-sha256	051de1b8756ca6ec61f26264338cfc3060af936fd70bf4558bfe1e115418c612	gtkmm-3.20.1.tar.xz
+# From http://ftp.gnome.org/pub/GNOME/sources/gtkmm/3.22/gtkmm-3.22.0.sha256sum
+sha256	05da4d4b628fb20c8384630ddf478a3b5562952b2d6181fe28d58f6cbc0514f5	gtkmm-3.22.0.tar.xz
diff --git a/package/gtkmm3/gtkmm3.mk b/package/gtkmm3/gtkmm3.mk
index 8c3e079..57b9b1f 100644
--- a/package/gtkmm3/gtkmm3.mk
+++ b/package/gtkmm3/gtkmm3.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-GTKMM3_VERSION_MAJOR = 3.20
-GTKMM3_VERSION = $(GTKMM3_VERSION_MAJOR).1
+GTKMM3_VERSION_MAJOR = 3.22
+GTKMM3_VERSION = $(GTKMM3_VERSION_MAJOR).0
 GTKMM3_SOURCE = gtkmm-$(GTKMM3_VERSION).tar.xz
 GTKMM3_SITE = http://ftp.gnome.org/pub/gnome/sources/gtkmm/$(GTKMM3_VERSION_MAJOR)
 GTKMM3_LICENSE = LGPLv2.1+ (library), GPLv2+ (tools)
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump
  2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
                   ` (8 preceding siblings ...)
  2016-09-24 17:28 ` [Buildroot] [PATCH 9/9] gtkmm3: bump to version 3.22.0 Gustavo Zacarias
@ 2016-09-25 21:19 ` Thomas Petazzoni
  9 siblings, 0 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2016-09-25 21:19 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat, 24 Sep 2016 14:28:33 -0300, Gustavo Zacarias wrote:
> This series bumps wayland/weston to the latest 1.12 release and gtk3+
> to it's latest 3.22.0 release.
> The series can't be split since these wayland/weston/gtk+ versions are
> protocol-version tied, i.e. gtk+ 3.22 won't work with any older
> wayland release.
> 
> Gustavo Zacarias (9):
>   wayland-protocols: bump to version 1.7
>   wayland: bump to version 1.12.0
>   weston: bump to version 1.12.0
>   legacy: add weston rpi support

I've merged this patch into the previous one. Indeed, we normally add
the Config.in.legacy entry in the same commit as the one removing the
option.

>   adwaita-icon-theme: bump to version 3.22.0
>   libgtk3: bump to version 3.22.0
>   glibmm: bump to version 2.50.0
>   libsigc: bump to version 2.10.0
>   gtkmm3: bump to version 3.22.0

All other patches applied as-is.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2016-09-25 21:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-24 17:28 [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Gustavo Zacarias
2016-09-24 17:28 ` [Buildroot] [PATCH 1/9] wayland-protocols: bump to version 1.7 Gustavo Zacarias
2016-09-24 17:28 ` [Buildroot] [PATCH 2/9] wayland: bump to version 1.12.0 Gustavo Zacarias
2016-09-24 17:28 ` [Buildroot] [PATCH 3/9] weston: " Gustavo Zacarias
2016-09-24 17:28 ` [Buildroot] [PATCH 4/9] legacy: add weston rpi support Gustavo Zacarias
2016-09-24 17:28 ` [Buildroot] [PATCH 5/9] adwaita-icon-theme: bump to version 3.22.0 Gustavo Zacarias
2016-09-24 17:28 ` [Buildroot] [PATCH 6/9] libgtk3: " Gustavo Zacarias
2016-09-24 17:28 ` [Buildroot] [PATCH 7/9] glibmm: bump to version 2.50.0 Gustavo Zacarias
2016-09-24 17:28 ` [Buildroot] [PATCH 8/9] libsigc: bump to version 2.10.0 Gustavo Zacarias
2016-09-24 17:28 ` [Buildroot] [PATCH 9/9] gtkmm3: bump to version 3.22.0 Gustavo Zacarias
2016-09-25 21:19 ` [Buildroot] [PATCH 0/9] The wayland/weston/libgtk3 bump Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox