Accepting request 1205430 from GNOME:Factory
SCripted push of GNOME 47 OBS-URL: https://build.opensuse.org/request/show/1205430 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/glib2?expand=0&rev=284
This commit is contained in:
2
_service
2
_service
@@ -3,7 +3,7 @@
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://gitlab.gnome.org/GNOME/glib.git</param>
|
||||
<param name="revision">2.80.5</param>
|
||||
<param name="revision">2.82.1</param>
|
||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||
<param name="versionrewrite-pattern">(.*)\+0</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0c0e033c6cd12a14e72bd0fbe3b241679079f65ca1bad5b4b0d955e98683cb24
|
||||
size 51542542
|
3
glib-2.82.1.obscpio
Normal file
3
glib-2.82.1.obscpio
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c0fbf78cab1b46505f91117c13cf18f0ae61decea621dc9d89d7a02f64901378
|
||||
size 51873294
|
@@ -1,4 +1,4 @@
|
||||
name: glib
|
||||
version: 2.80.5
|
||||
mtime: 1724667322
|
||||
commit: 6e92ab8445af4a950003be92ad6044f5a5930a22
|
||||
version: 2.82.1
|
||||
mtime: 1726779386
|
||||
commit: bd40fbba132fb3d6e5d785ae9d2b05a9e0da8409
|
||||
|
@@ -1,9 +1,58 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 20 05:59:19 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 2.82.1:
|
||||
+ Fix a potential buffer overflow in `GSocks4aProxy`
|
||||
+ Bugs fixed:
|
||||
- Test /unix-mounts/get-mount-entries fails unless libmount is
|
||||
enabled
|
||||
- Buffer overflow in set_connect_msg()
|
||||
- tests: Test against a sample mtab file in unix-mounts for
|
||||
getmntent()
|
||||
- tests: Run lint tests with detected bash
|
||||
- docs(glib): Fix link in string-utils ref
|
||||
- Move to Apple Silicon based runner
|
||||
- gsocks4aproxy: Fix a single byte buffer overflow in connect
|
||||
messages
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 27 12:00:06 UTC 2024 - pgajdos@suse.com
|
||||
|
||||
- remove dependency on /usr/bin/python3 using
|
||||
%python3_fix_shebang{,_path} macros, [bsc#1212476]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 26 10:49:32 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 2.82.0:
|
||||
+ Change the default value of -Dglib_debug from `auto` to
|
||||
`enabled` for developers — distributions will almost certainly
|
||||
want to override it to `-Dglib_debug=disabled` for package
|
||||
release builds though.
|
||||
+ Revert per-instance locking changes in `GCancellable` as they
|
||||
introduced new races.
|
||||
+ Bugs fixed:
|
||||
- Investigate trampoline performance implications in
|
||||
g_mutex_lock_impl() changes
|
||||
- Default value for glib_debug meson option
|
||||
- wrong comment in gmessage.c:escape_string
|
||||
- Should check for epoll_create1 rather than epoll_create
|
||||
- Gio.MenuModel docs have an outdated UI example
|
||||
- gunixmounts: Fix use of uninitialised variable
|
||||
- tests: Run expected-to-hang cancellable tests in subprocesses
|
||||
- CI/msys2-mingw32: Set the G_DEBUGGER environment variable
|
||||
- Revert "GCancellable: Use per-instance mutex logic instead of
|
||||
global critical sections”
|
||||
- Various small backports
|
||||
- Backport “gthread: Move thread _impl functions to static
|
||||
inlines for speed”
|
||||
+ Updated translations.
|
||||
- Pass glib_debug=disabled to meson as recommended by upstream and
|
||||
pass sysprof=disabled to meson, avoid pulling in extra
|
||||
dependencies.
|
||||
- Drop python enviroment fix, no longer needed.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 26 10:45:18 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
|
@@ -37,7 +37,7 @@
|
||||
%define libgthread libgthread-%{libver}
|
||||
%define libgirepository libgirepository-%{libver}
|
||||
Name: glib2%{psuffix}
|
||||
Version: 2.80.5
|
||||
Version: 2.82.1
|
||||
Release: 0
|
||||
Summary: General-Purpose Utility Library
|
||||
License: LGPL-2.1-or-later
|
||||
@@ -371,9 +371,6 @@ The GObject library provides an object-oriented framework for C.
|
||||
|
||||
cp -a %{SOURCE1} %{SOURCE2} %{SOURCE5} .
|
||||
cp -a %{SOURCE4} gnome_defaults.conf
|
||||
# replace /usr/bin/env shebangs
|
||||
# /usr/bin/env @PYTHON@ -> /usr/bin/python3
|
||||
grep "%{_bindir}/env @PYTHON@" . -rl | xargs sed -i "s|%{_bindir}/env @PYTHON@|%{_bindir}/python3|g"
|
||||
sed -i "s/1.32.1/1.32/" docs/reference/meson.build
|
||||
|
||||
%build
|
||||
@@ -401,6 +398,8 @@ sed -i "s/1.32.1/1.32/" docs/reference/meson.build
|
||||
-Ddtrace=false \
|
||||
%endif
|
||||
-Dintrospection=%[ "%{flavor}" != "stage1" ? "enabled" : "disabled" ] \
|
||||
-Dglib_debug=disabled \
|
||||
-Dsysprof=disabled \
|
||||
%{nil}
|
||||
%meson_build
|
||||
|
||||
|
Reference in New Issue
Block a user