Accepting request 456938 from home:Zaitor:branches:GNOME:Factory
New stable release OBS-URL: https://build.opensuse.org/request/show/456938 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/glib2?expand=0&rev=318
This commit is contained in:
committed by
Git OBS Bridge
parent
b39336aa35
commit
2596897856
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:be68737c1f268c05493e503b3b654d2b7f43d7d0b8c5556f7e4651b870acfbf5
|
||||
size 7582312
|
3
glib-2.50.3.tar.xz
Normal file
3
glib-2.50.3.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:82ee94bf4c01459b6b00cb9db0545c2237921e3060c0b74cff13fbc020cfd999
|
||||
size 7589284
|
@@ -1,28 +0,0 @@
|
||||
From f4ccafc4245c19b6cb255c5e5765093f6e33086c Mon Sep 17 00:00:00 2001
|
||||
From: Ondrej Holy <oholy@redhat.com>
|
||||
Date: Fri, 2 Dec 2016 13:07:25 +0100
|
||||
Subject: Add missing check for termios.h
|
||||
|
||||
Check for termios.h is missing and passwords in the new gio tool
|
||||
are echoed in the terminal consequently, which is really bad!
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=775517
|
||||
---
|
||||
configure.ac | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 21623ec..fdacbd8 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -712,6 +712,7 @@ AC_CHECK_HEADERS([sys/select.h stdint.h inttypes.h sched.h malloc.h])
|
||||
AC_CHECK_HEADERS([sys/vfs.h sys/vmount.h sys/statfs.h sys/statvfs.h sys/filio.h])
|
||||
AC_CHECK_HEADERS([mntent.h sys/mnttab.h sys/vfstab.h sys/mntctl.h fstab.h])
|
||||
AC_CHECK_HEADERS([linux/magic.h])
|
||||
+AC_CHECK_HEADERS([termios.h])
|
||||
|
||||
# Some versions of MSC lack these
|
||||
AC_CHECK_HEADERS([dirent.h sys/time.h])
|
||||
--
|
||||
cgit v0.12
|
||||
|
@@ -1,26 +0,0 @@
|
||||
From accfe3826a15af9ba5249dca018a78968bee53ff Mon Sep 17 00:00:00 2001
|
||||
From: donadigo <donadigos159@gmail.com>
|
||||
Date: Wed, 7 Dec 2016 19:32:33 +0100
|
||||
Subject: Fixed notify id in FDO notification backend
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=775765
|
||||
---
|
||||
gio/gfdonotificationbackend.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/gio/gfdonotificationbackend.c b/gio/gfdonotificationbackend.c
|
||||
index 7b98027..9a39d75 100644
|
||||
--- a/gio/gfdonotificationbackend.c
|
||||
+++ b/gio/gfdonotificationbackend.c
|
||||
@@ -424,7 +424,7 @@ g_fdo_notification_backend_withdraw_notification (GNotificationBackend *backend,
|
||||
"org.freedesktop.Notifications",
|
||||
"/org/freedesktop/Notifications",
|
||||
"org.freedesktop.Notifications", "CloseNotification",
|
||||
- g_variant_new ("(u)", n->id), NULL,
|
||||
+ g_variant_new ("(u)", n->notify_id), NULL,
|
||||
G_DBUS_CALL_FLAGS_NONE, -1, NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
--
|
||||
cgit v0.12
|
||||
|
@@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 13 19:06:08 UTC 2017 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 2.50.3:
|
||||
+ Bugs fixed: bgo#775309, bgo#775468, bgo#775517, bgo#775765.
|
||||
+ Updated translations.
|
||||
- Drop glib2-Add-missing-check-for-termios_h.patch and
|
||||
glib2-fix-notify-id-FDO-notification-backend.patch: Fixed
|
||||
upstream.
|
||||
- Conditionally apply translations-update-upstream BuildRequires
|
||||
and macro for non-openSUSE only.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 18 10:37:55 UTC 2017 - dimstar@opensuse.org
|
||||
|
||||
|
14
glib2.spec
14
glib2.spec
@@ -20,7 +20,7 @@
|
||||
|
||||
Name: glib2
|
||||
%define _name glib
|
||||
Version: 2.50.2
|
||||
Version: 2.50.3
|
||||
Release: 0
|
||||
# FIXME: find out if tapsets should really be in devel package or in main package
|
||||
Summary: General-Purpose Utility Library
|
||||
@@ -52,10 +52,6 @@ Patch13: glib2-suppress-schema-deprecated-path-warning.patch
|
||||
Patch14: glib2-dbus-socket-path.patch
|
||||
# PATCH-FIX-UPSTREAM glib2-dbus-socket-path.patch boo#951221 bgo#756879 ro@suse.de -- remove debug output "II 1" from the fam monitor
|
||||
Patch15: glib2-remove_fam_debug_print.patch
|
||||
# PATCH-FIX-UPSTREAM glib2-Add-missing-check-for-termios_h.patch bgo#775517 zaitor@opensuse.org -- Add missing check for termios.h
|
||||
Patch16: glib2-Add-missing-check-for-termios_h.patch
|
||||
# PATCH-FIX-UPSTREAM glib2-fix-notify-id-FDO-notification-backend.patch bgo#775765 zaitor@opensuse.org -- Fixed notify id in FDO notification backend
|
||||
Patch17: glib2-fix-notify-id-FDO-notification-backend.patch
|
||||
BuildRequires: automake
|
||||
BuildRequires: docbook-xsl-stylesheets
|
||||
BuildRequires: fdupes
|
||||
@@ -76,7 +72,9 @@ BuildRequires: python
|
||||
%endif
|
||||
BuildRequires: systemtap-sdt-devel
|
||||
%endif
|
||||
%if !0%{?is_opensuse}
|
||||
BuildRequires: translation-update-upstream
|
||||
%endif
|
||||
BuildRequires: xsltproc
|
||||
# Needed for gresource
|
||||
BuildRequires: pkgconfig(libelf) >= 0.8.12
|
||||
@@ -260,14 +258,14 @@ The GObject library provides an object-oriented framework for C.
|
||||
%lang_package
|
||||
%prep
|
||||
%setup -q -n %{_name}-%{version}
|
||||
%if !0%{?is_opensuse}
|
||||
translation-update-upstream
|
||||
%endif
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch13 -p1
|
||||
%patch14 -p1
|
||||
%patch15
|
||||
%patch16 -p1
|
||||
%patch17 -p1
|
||||
cp -a %{S:1} %{S:2} %{S:5} .
|
||||
cp -a %{S:4} gnome_defaults.conf
|
||||
if ! test -f %{_datadir}/aclocal/gtk-doc.m4 ; then
|
||||
@@ -292,7 +290,7 @@ autoreconf -fi
|
||||
|
||||
%check
|
||||
# make check does not work on x86_64. See http://bugzilla.gnome.org/show_bug.cgi?id=554969
|
||||
# %{__make} %{?jobs:-j%jobs} check
|
||||
# %%{__make} %%{?jobs:-j%%jobs} check
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
|
Reference in New Issue
Block a user