Compare commits

...

8 Commits
master ... f22

Author SHA1 Message Date
Kalev Lember
bdab866334 Disable gobject property deprecation warnings by default 2015-09-21 16:29:43 +02:00
Kalev Lember
1144d61132 Update to 2.44.1 2015-05-13 11:11:30 +02:00
Kalev Lember
6ae785b584 Update to 2.44.0 2015-03-23 19:05:49 +01:00
Kalev Lember
8292f25930 Update to 2.43.92 2015-03-17 14:49:17 +01:00
Kalev Lember
18458811f2 Update to 2.43.91 2015-03-02 21:21:10 +01:00
David King
4ec678ad64 Update man pages glob in files section
https://fedoraproject.org/wiki/Packaging:Guidelines#Manpages
2015-02-18 17:55:16 +00:00
David King
4ddba758d2 Update to 2.43.90 2015-02-18 17:55:10 +00:00
Matthias Clasen
00ab523a8b 2.43.4 2015-02-10 20:48:59 -05:00
3 changed files with 71 additions and 18 deletions

View File

@ -0,0 +1,28 @@
From 3bd1618ea955f950f87bc4e452029c5f0cea35aa Mon Sep 17 00:00:00 2001
From: Matthias Clasen <mclasen@redhat.com>
Date: Mon, 14 Sep 2015 18:42:12 -0400
Subject: [PATCH] Disable deprecation warnings for the stable release again
Keeping these enabled causes too many people to file
bugs against gobject, and not enough people to send
patches to port away from deprecated properties.
---
gobject/gobject.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gobject/gobject.c b/gobject/gobject.c
index 3a0d008..a3c0875 100644
--- a/gobject/gobject.c
+++ b/gobject/gobject.c
@@ -1316,7 +1316,7 @@ consider_issuing_property_deprecation_warning (const GParamSpec *pspec)
const gchar *value = g_getenv ("G_ENABLE_DIAGNOSTIC");
if (!value)
- value = "-";
+ value = "0";
g_once_init_leave (&enable_diagnostic, value);
}
--
2.5.0

View File

@ -2,13 +2,15 @@
Summary: A library of handy utility functions
Name: glib2
Version: 2.43.3
Release: 1%{?dist}
Version: 2.44.1
Release: 2%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://www.gtk.org
#VCS: git:git://git.gnome.org/glib
Source: http://download.gnome.org/sources/glib/2.43/glib-%{version}.tar.xz
Source: http://download.gnome.org/sources/glib/2.44/glib-%{version}.tar.xz
# Disable gobject property deprecation warnings by default
Patch0: 0001-Disable-deprecation-warnings-for-the-stable-release-.patch
BuildRequires: pkgconfig
BuildRequires: gettext
@ -81,6 +83,7 @@ the functionality of the installed glib2 package.
%prep
%setup -q -n glib-%{version}
%patch0 -p1
%build
# Support builds of both git snapshots and tarballs packed with autogoo
@ -161,11 +164,11 @@ gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules
%{_bindir}/gsettings
%{_bindir}/gdbus
%{_bindir}/gapplication
%doc %{_mandir}/man1/gio-querymodules.1.gz
%doc %{_mandir}/man1/glib-compile-schemas.1.gz
%doc %{_mandir}/man1/gsettings.1.gz
%doc %{_mandir}/man1/gdbus.1.gz
%doc %{_mandir}/man1/gapplication.1.gz
%{_mandir}/man1/gio-querymodules.1*
%{_mandir}/man1/glib-compile-schemas.1*
%{_mandir}/man1/gsettings.1*
%{_mandir}/man1/gdbus.1*
%{_mandir}/man1/gapplication.1*
%files devel
%{_libdir}/lib*.so
@ -187,15 +190,15 @@ gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules
%{_bindir}/gresource
%{_datadir}/glib-2.0/codegen
%attr (0755, root, root) %{_bindir}/gtester-report
%doc %{_mandir}/man1/glib-genmarshal.1.gz
%doc %{_mandir}/man1/glib-gettextize.1.gz
%doc %{_mandir}/man1/glib-mkenums.1.gz
%doc %{_mandir}/man1/gobject-query.1.gz
%doc %{_mandir}/man1/gtester-report.1.gz
%doc %{_mandir}/man1/gtester.1.gz
%doc %{_mandir}/man1/gdbus-codegen.1.gz
%doc %{_mandir}/man1/glib-compile-resources.1.gz
%doc %{_mandir}/man1/gresource.1.gz
%{_mandir}/man1/glib-genmarshal.1*
%{_mandir}/man1/glib-gettextize.1*
%{_mandir}/man1/glib-mkenums.1*
%{_mandir}/man1/gobject-query.1*
%{_mandir}/man1/gtester-report.1*
%{_mandir}/man1/gtester.1*
%{_mandir}/man1/gdbus-codegen.1*
%{_mandir}/man1/glib-compile-resources.1*
%{_mandir}/man1/gresource.1*
%{_datadir}/gdb/auto-load%{_libdir}/libglib-2.0.so.*-gdb.py*
%{_datadir}/gdb/auto-load%{_libdir}/libgobject-2.0.so.*-gdb.py*
%{_datadir}/systemtap/tapset/*.stp
@ -218,6 +221,28 @@ gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules
%{_datadir}/installed-tests
%changelog
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 2.44.1-2
- Disable gobject property deprecation warnings by default
* Wed May 13 2015 Kalev Lember <kalevlember@gmail.com> - 2.44.1-1
- Update to 2.44.1
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 2.44.0-1
- Update to 2.44.0
* Tue Mar 17 2015 Kalev Lember <kalevlember@gmail.com> - 2.43.92-1
- Update to 2.43.92
* Mon Mar 02 2015 Kalev Lember <kalevlember@gmail.com> - 2.43.91-1
- Update to 2.43.91
* Wed Feb 18 2015 David King <amigadave@amigadave.com> - 2.43.90-1
- Update to 2.43.90
- Update man pages glob in files section
* Tue Feb 10 2015 Matthias Clasen <mclasen@redhat.com> - 2.43.4-1
- Update to 2.43.4
* Tue Jan 20 2015 David King <amigadave@amigadave.com> - 2.43.3-1
- Update to 2.43.3

View File

@ -1 +1 @@
2727c4dee79c5449f364cd5e27b17099 glib-2.43.3.tar.xz
83efba4722a9674b97437d1d99af79db glib-2.44.1.tar.xz