From 2f159171f273687c3d91b13756fcf00be46d6bffc44367cf564873c5f8e32b22 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Wed, 21 Sep 2011 15:26:31 +0000 Subject: [PATCH 1/3] Accepting request 82777 from home:jengelh:bl-a - Remove redundant tags/sections from specfile - Use %_smp_mflags for parallel build OBS-URL: https://build.opensuse.org/request/show/82777 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/at-spi2-core?expand=0&rev=55 --- at-spi2-core.changes | 6 ++++++ at-spi2-core.spec | 5 +---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/at-spi2-core.changes b/at-spi2-core.changes index 2105262..6a1a4af 100644 --- a/at-spi2-core.changes +++ b/at-spi2-core.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Sat Sep 17 13:26:55 UTC 2011 - jengelh@medozas.de + +- Remove redundant tags/sections from specfile +- Use %_smp_mflags for parallel build + ------------------------------------------------------------------- Tue Sep 6 06:09:38 UTC 2011 - vuntz@opensuse.org diff --git a/at-spi2-core.spec b/at-spi2-core.spec index f57dac9..999e766 100644 --- a/at-spi2-core.spec +++ b/at-spi2-core.spec @@ -84,7 +84,7 @@ to develop applications that require these. --libexecdir=%{_libexecdir}/at-spi2 \ --with-dbus-daemondir=/bin \ --disable-static -%__make %{?jobs:-j%jobs} +make %{?_smp_mflags} %install %makeinstall @@ -92,9 +92,6 @@ to develop applications that require these. %find_lang at-spi2-core find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print -%clean -rm -rf %{buildroot} - %post -n libatspi0 -p /sbin/ldconfig %postun -n libatspi0 -p /sbin/ldconfig From 202b9b976ca6b2bc37eb6d6828b324caa13944bcd4bf5963b2942035028544ce Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Thu, 22 Sep 2011 12:02:21 +0000 Subject: [PATCH 2/3] Accepting request 84445 from home:vuntz:branches:GNOME:Factory Update to 2.1.92 OBS-URL: https://build.opensuse.org/request/show/84445 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/at-spi2-core?expand=0&rev=56 --- at-spi2-core-2.1.91.tar.bz2 | 3 --- at-spi2-core-2.1.92.tar.bz2 | 3 +++ at-spi2-core-missing-return.patch | 30 ------------------------------ at-spi2-core.changes | 13 +++++++++++++ at-spi2-core.spec | 5 +---- 5 files changed, 17 insertions(+), 37 deletions(-) delete mode 100644 at-spi2-core-2.1.91.tar.bz2 create mode 100644 at-spi2-core-2.1.92.tar.bz2 delete mode 100644 at-spi2-core-missing-return.patch diff --git a/at-spi2-core-2.1.91.tar.bz2 b/at-spi2-core-2.1.91.tar.bz2 deleted file mode 100644 index fae6462..0000000 --- a/at-spi2-core-2.1.91.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:18db2cb606f8c4d2c1b421787c4910eb4cb6c1998b527620df6bf7c1ef0f3ee2 -size 517126 diff --git a/at-spi2-core-2.1.92.tar.bz2 b/at-spi2-core-2.1.92.tar.bz2 new file mode 100644 index 0000000..22159a6 --- /dev/null +++ b/at-spi2-core-2.1.92.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c789f44771ec4e727431d532123bd600d067a086519fad7d5e41b190a6c23f05 +size 517645 diff --git a/at-spi2-core-missing-return.patch b/at-spi2-core-missing-return.patch deleted file mode 100644 index d9cd6a5..0000000 --- a/at-spi2-core-missing-return.patch +++ /dev/null @@ -1,30 +0,0 @@ -commit 2634b72b59d18699353514348059c7d31aaf154c -Author: Vincent Untz -Date: Tue Sep 6 08:21:22 2011 +0200 - - Fix missing return statements - - https://bugzilla.gnome.org/show_bug.cgi?id=658337 - -diff --git a/bus/at-spi-bus-launcher.c b/bus/at-spi-bus-launcher.c -index 369998a..334258c 100644 ---- a/bus/at-spi-bus-launcher.c -+++ b/bus/at-spi-bus-launcher.c -@@ -205,6 +205,8 @@ ensure_a11y_bus (A11yBusLauncher *app) - close (app->pipefd[0]); - close (app->pipefd[1]); - app->state = A11Y_BUS_STATE_ERROR; -+ -+ return FALSE; - } - - static void -@@ -487,6 +489,8 @@ get_desktop_schema () - if (!strcmp (schemas[i], "org.gnome.desktop.interface")) - return g_settings_new (schemas[i]); - } -+ -+ return NULL; - } - - static void diff --git a/at-spi2-core.changes b/at-spi2-core.changes index 6a1a4af..e9e4b62 100644 --- a/at-spi2-core.changes +++ b/at-spi2-core.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Wed Sep 21 17:22:07 UTC 2011 - vuntz@opensuse.org + +- Update to version 2.1.92: + + Fixed a crash when handling event listeners. + + Add some defensive checks to prevent problems with defunct + objects. + + Fix some missing return statements. + + Some fixes related to deregistering event listeners. + + bgo#659088: Correctly define ATSPI_MODIFIER_NUMLOCK. + + bgo#657051: Fix a build error on Solaris. +- Drop at-spi2-core-missing-return.patch: fixed upstream. + ------------------------------------------------------------------- Sat Sep 17 13:26:55 UTC 2011 - jengelh@medozas.de diff --git a/at-spi2-core.spec b/at-spi2-core.spec index 999e766..c78f5dd 100644 --- a/at-spi2-core.spec +++ b/at-spi2-core.spec @@ -18,7 +18,7 @@ Name: at-spi2-core -Version: 2.1.91 +Version: 2.1.92 Release: 1 Summary: Assistive Technology Service Provider Interface - D-Bus based implementation License: GPLv2+ @@ -26,8 +26,6 @@ Group: System/Libraries Url: http://www.gnome.org/ Source0: http://download.gnome.org/sources/at-spi2-core/2.1/%{name}-%{version}.tar.bz2 Source99: %{name}-rpmlintrc -# PATCH-FIX-UPSTREAM at-spi2-core-missing-return.patch bgo#658337 vuntz@opensuse.org -- Missing returns -Patch0: at-spi2-core-missing-return.patch BuildRequires: glib2-devel BuildRequires: gobject-introspection-devel BuildRequires: intltool @@ -73,7 +71,6 @@ to develop applications that require these. %lang_package %prep %setup -q -%patch0 -p1 %if 0%{?BUILD_FROM_VCS} [ -x ./autogen.sh ] && NOCONFIGURE=1 ./autogen.sh From a3706ec4ac26dc41cfbc7f920303570c993b12685a5736d2e86d4203e9ccedd3 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Tue, 27 Sep 2011 11:29:30 +0000 Subject: [PATCH 3/3] Accepting request 85029 from home:vuntz:branches:GNOME:Factory Update to 2.2.0 OBS-URL: https://build.opensuse.org/request/show/85029 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/at-spi2-core?expand=0&rev=57 --- at-spi2-core-2.1.92.tar.bz2 | 3 --- at-spi2-core-2.2.0.tar.bz2 | 3 +++ at-spi2-core.changes | 6 ++++++ at-spi2-core.spec | 4 ++-- 4 files changed, 11 insertions(+), 5 deletions(-) delete mode 100644 at-spi2-core-2.1.92.tar.bz2 create mode 100644 at-spi2-core-2.2.0.tar.bz2 diff --git a/at-spi2-core-2.1.92.tar.bz2 b/at-spi2-core-2.1.92.tar.bz2 deleted file mode 100644 index 22159a6..0000000 --- a/at-spi2-core-2.1.92.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c789f44771ec4e727431d532123bd600d067a086519fad7d5e41b190a6c23f05 -size 517645 diff --git a/at-spi2-core-2.2.0.tar.bz2 b/at-spi2-core-2.2.0.tar.bz2 new file mode 100644 index 0000000..3200b9f --- /dev/null +++ b/at-spi2-core-2.2.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cb4f7449f366c6b540f9c2185c353976ce7ae34e26160a1cf00b13367debd04 +size 520843 diff --git a/at-spi2-core.changes b/at-spi2-core.changes index e9e4b62..86f93b6 100644 --- a/at-spi2-core.changes +++ b/at-spi2-core.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Sep 27 07:00:07 UTC 2011 - vuntz@opensuse.org + +- Update to version 2.2.0: + + Minor bug fix. + ------------------------------------------------------------------- Wed Sep 21 17:22:07 UTC 2011 - vuntz@opensuse.org diff --git a/at-spi2-core.spec b/at-spi2-core.spec index c78f5dd..e43eb47 100644 --- a/at-spi2-core.spec +++ b/at-spi2-core.spec @@ -18,13 +18,13 @@ Name: at-spi2-core -Version: 2.1.92 +Version: 2.2.0 Release: 1 Summary: Assistive Technology Service Provider Interface - D-Bus based implementation License: GPLv2+ Group: System/Libraries Url: http://www.gnome.org/ -Source0: http://download.gnome.org/sources/at-spi2-core/2.1/%{name}-%{version}.tar.bz2 +Source0: http://download.gnome.org/sources/at-spi2-core/2.2/%{name}-%{version}.tar.bz2 Source99: %{name}-rpmlintrc BuildRequires: glib2-devel BuildRequires: gobject-introspection-devel