package/libglib2: bump to version 2.62.0

Other changes:
 - Refactor 0002-add-option-to-build-tests.patch to work with the new version.
 - Add the new option oss_fuzz=disabled to HOST_LIBGLIB2_CONF_OPTS and
   LIBGLIB2_CONF_OPTS.
 - Change -Diconv=gnu to -Diconv=external as the option has changed.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Adam Duskett 2019-09-16 12:16:04 -07:00 committed by Thomas Petazzoni
parent dfd4190122
commit bb912cb36d
6 changed files with 60 additions and 82 deletions

View File

@ -18,7 +18,7 @@ diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c
index 71a6b7b..d09d029 100644 index 71a6b7b..d09d029 100644
--- a/glib/gthread-posix.c --- a/glib/gthread-posix.c
+++ b/glib/gthread-posix.c +++ b/glib/gthread-posix.c
@@ -65,7 +65,7 @@ @@ -68,7 +68,7 @@
#endif #endif
/* clang defines __ATOMIC_SEQ_CST but doesn't support the GCC extension */ /* clang defines __ATOMIC_SEQ_CST but doesn't support the GCC extension */

View File

@ -1,6 +1,6 @@
From 8de64376005b8630ce5e29f45d5502a56b121173 Mon Sep 17 00:00:00 2001 From 3a137f52869fdbc7050d606bfba0e5b1e41bd8e6 Mon Sep 17 00:00:00 2001
From: Adam Duskett <Aduskett@gmail.com> From: Adam Duskett <Aduskett@gmail.com>
Date: Wed, 8 May 2019 13:08:43 -0400 Date: Mon, 16 Sep 2019 10:08:52 -0700
Subject: [PATCH] add option to build tests. Subject: [PATCH] add option to build tests.
Upstream won't build tests when cross-compiling. However; this means still Upstream won't build tests when cross-compiling. However; this means still
@ -15,89 +15,65 @@ building any tests, even when building the host variant.
Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Adam Duskett <Aduskett@gmail.com>
--- ---
gio/meson.build | 4 +++- gio/meson.build | 1 -
glib/meson.build | 5 +++-- gobject/meson.build | 1 -
gobject/meson.build | 5 +++-- meson.build | 2 +-
meson.build | 6 +++++-
meson_options.txt | 5 +++++ meson_options.txt | 5 +++++
5 files changed, 19 insertions(+), 6 deletions(-) 4 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/gio/meson.build b/gio/meson.build diff --git a/gio/meson.build b/gio/meson.build
index 4e5e021..925563c 100644 index 9a9e621..6adc014 100644
--- a/gio/meson.build --- a/gio/meson.build
+++ b/gio/meson.build +++ b/gio/meson.build
@@ -994,4 +994,6 @@ if enable_systemtap @@ -1010,7 +1010,6 @@ endif
endif
subdir('fam') subdir('fam')
-subdir('tests') # Dont build the tests unless we can run them (either natively or in an exe wrapper)
+if build_tests -build_tests = not meson.is_cross_build() or (meson.is_cross_build() and meson.has_exe_wrapper())
+ subdir('tests') if build_tests
+endif subdir('tests')
diff --git a/glib/meson.build b/glib/meson.build
index 8350ea2..bc1a7c5 100644
--- a/glib/meson.build
+++ b/glib/meson.build
@@ -370,5 +370,6 @@ if enable_systemtap
install_dir : tapset_install_dir,
install : true)
endif endif
-
-subdir('tests')
+if build_tests
+ subdir('tests')
+endif
diff --git a/gobject/meson.build b/gobject/meson.build diff --git a/gobject/meson.build b/gobject/meson.build
index db8d3c4..094cb58 100644 index c7805c5..fb5874d 100644
--- a/gobject/meson.build --- a/gobject/meson.build
+++ b/gobject/meson.build +++ b/gobject/meson.build
@@ -165,5 +165,6 @@ if enable_systemtap @@ -166,7 +166,6 @@ if enable_systemtap
install_dir : tapset_install_dir, endif
install : true)
# Dont build the tests unless we can run them (either natively or in an exe wrapper)
-build_tests = not meson.is_cross_build() or (meson.is_cross_build() and meson.has_exe_wrapper())
if build_tests
subdir('tests')
endif endif
-
-subdir('tests')
+if build_tests
+ subdir('tests')
+endif
diff --git a/meson.build b/meson.build diff --git a/meson.build b/meson.build
index b57b2d6..d625a50 100644 index 717d1bc..3124f28 100644
--- a/meson.build --- a/meson.build
+++ b/meson.build +++ b/meson.build
@@ -75,6 +75,8 @@ installed_tests_enabled = get_option('installed_tests') @@ -2098,7 +2098,7 @@ subdir('gmodule')
installed_tests_template = files('template.test.in')
installed_tests_template_tap = files('template-tap.test.in')
+build_tests = get_option('tests')
+
add_project_arguments('-D_GNU_SOURCE', language: 'c')
# Disable strict aliasing;
@@ -1994,8 +1996,10 @@ subdir('gthread')
subdir('gmodule')
subdir('gio') subdir('gio')
subdir('fuzzing') subdir('fuzzing')
-subdir('tests') # Dont build the tests unless we can run them (either natively or in an exe wrapper)
-build_tests = not meson.is_cross_build() or (meson.is_cross_build() and meson.has_exe_wrapper())
+if build_tests +build_tests = get_option('tests')
+ subdir('tests') if build_tests
+endif subdir('tests')
# xgettext is optional (on Windows for instance) endif
if find_program('xgettext', required : get_option('nls')).found()
subdir('po')
diff --git a/meson_options.txt b/meson_options.txt diff --git a/meson_options.txt b/meson_options.txt
index 5c5b4df..7ffde0a 100644 index 2c831e3..90468a7 100644
--- a/meson_options.txt --- a/meson_options.txt
+++ b/meson_options.txt +++ b/meson_options.txt
@@ -89,3 +89,8 @@ option('nls', @@ -90,6 +90,11 @@ option('nls',
value : 'auto',
yield: true, yield: true,
description : 'Enable native language support (translations)') description : 'Enable native language support (translations)')
+
+option('tests', +option('tests',
+ type : 'boolean', + type : 'boolean',
+ value : false, + value : false,
+ description : 'Build tests') + description : 'Build tests')
+
option('oss_fuzz',
type : 'feature',
value : 'disabled',
-- --
2.21.0 2.21.0

View File

@ -1,6 +1,6 @@
From ee5ed1385bd6c36123ff970a8fff89a811798421 Mon Sep 17 00:00:00 2001 From 2f168951df1feebeac549ada1ea44ea092484c54 Mon Sep 17 00:00:00 2001
From: Adam Duskett <Aduskett@gmail.com> From: Adam Duskett <Aduskett@gmail.com>
Date: Tue, 9 Apr 2019 12:59:36 -0400 Date: Mon, 16 Sep 2019 10:12:38 -0700
Subject: [PATCH] remove cpp requirement Subject: [PATCH] remove cpp requirement
The c++ test is necessary to ensure libglib doesn't accidentally use C++ The c++ test is necessary to ensure libglib doesn't accidentally use C++
@ -17,10 +17,10 @@ https://gitlab.gnome.org/GNOME/glib/issues/1748
3 files changed, 1 insertion(+), 23 deletions(-) 3 files changed, 1 insertion(+), 23 deletions(-)
diff --git a/glib/glibconfig.h.in b/glib/glibconfig.h.in diff --git a/glib/glibconfig.h.in b/glib/glibconfig.h.in
index 2bf6c43..358867f 100644 index 7ef8c48..128e65d 100644
--- a/glib/glibconfig.h.in --- a/glib/glibconfig.h.in
+++ b/glib/glibconfig.h.in +++ b/glib/glibconfig.h.in
@@ -122,7 +122,6 @@ typedef unsigned @glib_intptr_type_define@ guintptr; @@ -117,7 +117,6 @@ typedef unsigned @glib_intptr_type_define@ guintptr;
@glib_vacopy@ @glib_vacopy@
@g_have_iso_c_varargs@ @g_have_iso_c_varargs@
@ -29,16 +29,16 @@ index 2bf6c43..358867f 100644
/* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
* is passed ISO vararg support is turned off, and there is no work * is passed ISO vararg support is turned off, and there is no work
diff --git a/meson.build b/meson.build diff --git a/meson.build b/meson.build
index c96289a..b694bb7 100644 index 3124f28..642afb8 100644
--- a/meson.build --- a/meson.build
+++ b/meson.build +++ b/meson.build
@@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
-project('glib', 'c', 'cpp', -project('glib', 'c', 'cpp',
+project('glib', 'c', +project('glib', 'c',
version : '2.60.7', version : '2.62.0',
meson_version : '>= 0.48.0', # NOTE: We keep this pinned at 0.49 because that's what Debian 10 ships
default_options : [ meson_version : '>= 0.49.2',
@@ -9,7 +9,6 @@ project('glib', 'c', 'cpp', @@ -10,7 +10,6 @@ project('glib', 'c', 'cpp',
) )
cc = meson.get_compiler('c') cc = meson.get_compiler('c')
@ -46,7 +46,7 @@ index c96289a..b694bb7 100644
cc_can_run = not meson.is_cross_build() or meson.has_exe_wrapper() cc_can_run = not meson.is_cross_build() or meson.has_exe_wrapper()
@@ -1440,20 +1439,6 @@ if g_have_iso_c_varargs @@ -1487,20 +1486,6 @@ if g_have_iso_c_varargs
#endif''') #endif''')
endif endif
@ -67,16 +67,16 @@ index c96289a..b694bb7 100644
g_have_gnuc_varargs = cc.compiles(''' g_have_gnuc_varargs = cc.compiles('''
void some_func (void) { void some_func (void) {
int a(int p1, int p2, int p3); int a(int p1, int p2, int p3);
@@ -1995,7 +1980,6 @@ subdir('gobject') @@ -2096,7 +2081,6 @@ subdir('gobject')
subdir('gthread') subdir('gthread')
subdir('gmodule') subdir('gmodule')
subdir('gio') subdir('gio')
-subdir('fuzzing') -subdir('fuzzing')
# Dont build the tests unless we can run them (either natively or in an exe wrapper)
build_tests = get_option('tests')
if build_tests if build_tests
subdir('tests')
diff --git a/tests/meson.build b/tests/meson.build diff --git a/tests/meson.build b/tests/meson.build
index 11075dd..e052892 100644 index ce30442..2b31427 100644
--- a/tests/meson.build --- a/tests/meson.build
+++ b/tests/meson.build +++ b/tests/meson.build
@@ -48,11 +48,6 @@ tests = { @@ -48,11 +48,6 @@ tests = {
@ -92,5 +92,5 @@ index 11075dd..e052892 100644
test_extra_programs = { test_extra_programs = {
-- --
2.20.1 2.21.0

View File

@ -15,7 +15,7 @@ diff --git a/meson.build b/meson.build
index 3c615b7..7cae4e8 100644 index 3c615b7..7cae4e8 100644
--- a/meson.build --- a/meson.build
+++ b/meson.build +++ b/meson.build
@@ -359,6 +359,7 @@ if cc.get_id() == 'gcc' or cc.get_id() == 'clang' @@ -369,6 +369,7 @@ if cc.get_id() == 'gcc' or cc.get_id() == 'clang'
'-Wno-cast-function-type', '-Wno-cast-function-type',
+ '-Wno-format-nonliteral', + '-Wno-format-nonliteral',
# Due to function casts through (void*) we cannot support -Wpedantic: # Due to function casts through (void*) we cannot support -Wpedantic:

View File

@ -1,4 +1,4 @@
# https://download.gnome.org/sources/glib/2.60/glib-2.60.6.sha256sum # https://download.gnome.org/sources/glib/2.60/glib-2.60.6.sha256sum
sha256 8b12c0af569afd3b71200556ad751bad4cf4bf7bc4b5f880638459a42ca86310 glib-2.60.7.tar.xz sha256 6c257205a0a343b662c9961a58bb4ba1f1e31c82f5c6b909ec741194abc3da10 glib-2.62.0.tar.xz
# License files, locally calculated # License files, locally calculated
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING

View File

@ -4,8 +4,8 @@
# #
################################################################################ ################################################################################
LIBGLIB2_VERSION_MAJOR = 2.60 LIBGLIB2_VERSION_MAJOR = 2.62
LIBGLIB2_VERSION = $(LIBGLIB2_VERSION_MAJOR).7 LIBGLIB2_VERSION = $(LIBGLIB2_VERSION_MAJOR).0
LIBGLIB2_SOURCE = glib-$(LIBGLIB2_VERSION).tar.xz LIBGLIB2_SOURCE = glib-$(LIBGLIB2_VERSION).tar.xz
LIBGLIB2_SITE = http://ftp.gnome.org/pub/gnome/sources/glib/$(LIBGLIB2_VERSION_MAJOR) LIBGLIB2_SITE = http://ftp.gnome.org/pub/gnome/sources/glib/$(LIBGLIB2_VERSION_MAJOR)
LIBGLIB2_LICENSE = LGPL-2.1+ LIBGLIB2_LICENSE = LGPL-2.1+
@ -28,7 +28,8 @@ HOST_LIBGLIB2_CONF_OPTS = \
-Dxattr=false \ -Dxattr=false \
-Dinternal_pcre=false \ -Dinternal_pcre=false \
-Dinstalled_tests=false \ -Dinstalled_tests=false \
-Dtests=false -Dtests=false \
-Doss_fuzz=disabled
LIBGLIB2_DEPENDENCIES = \ LIBGLIB2_DEPENDENCIES = \
host-pkgconf host-libglib2 \ host-pkgconf host-libglib2 \
@ -49,7 +50,8 @@ HOST_LIBGLIB2_DEPENDENCIES = \
LIBGLIB2_CONF_OPTS = \ LIBGLIB2_CONF_OPTS = \
-Dinternal_pcre=false \ -Dinternal_pcre=false \
-Dgio_module_dir=/usr/lib/gio/modules \ -Dgio_module_dir=/usr/lib/gio/modules \
-Dtests=false -Dtests=false \
-Doss_fuzz=disabled
ifneq ($(BR2_ENABLE_LOCALE),y) ifneq ($(BR2_ENABLE_LOCALE),y)
LIBGLIB2_DEPENDENCIES += libiconv LIBGLIB2_DEPENDENCIES += libiconv
@ -60,7 +62,7 @@ LIBGLIB2_DEPENDENCIES += elfutils
endif endif
ifeq ($(BR2_PACKAGE_LIBICONV),y) ifeq ($(BR2_PACKAGE_LIBICONV),y)
LIBGLIB2_CONF_OPTS += -Diconv=gnu LIBGLIB2_CONF_OPTS += -Diconv=external
LIBGLIB2_DEPENDENCIES += libiconv LIBGLIB2_DEPENDENCIES += libiconv
endif endif