Hello community,

here is the log from the commit of package at-spi2-core for openSUSE:Factory 
checked in at 2017-12-06 08:55:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/at-spi2-core (Old)
 and      /work/SRC/openSUSE:Factory/.at-spi2-core.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "at-spi2-core"

Wed Dec  6 08:55:59 2017 rev:78 rq:548499 version:2.26.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/at-spi2-core/at-spi2-core.changes        
2017-11-03 19:06:07.424039058 +0100
+++ /work/SRC/openSUSE:Factory/.at-spi2-core.new/at-spi2-core.changes   
2017-12-06 08:56:18.805983221 +0100
@@ -1,0 +2,21 @@
+Mon Dec  4 21:53:40 UTC 2017 - [email protected]
+
+- Add at-spi2-core-bgo791124-buffer-overflow.patch: fix possible
+  buffer overflow reading dbus address in at-spi-bus-launcher
+  (bgo#791124).
+- Add at-spi2-core-bgo791167-reproducible-build.patch: use
+  @basename@ in templates, rather than @filename@; fixes build
+  reproducibility and multiarch conflict (bgo#791167).
+
+-------------------------------------------------------------------
+Fri Dec  1 07:39:41 UTC 2017 - [email protected]
+
+- Switch to using meson buildsystem:
+  + Add meson and gtk-doc BuildRequires.
+  + Use meson, meson_build and meson_install macros instead of
+    autotools macros.
+  + Drop update-desktop-files BuildRequires and stop using
+    suse_update_desktop_file macro, no longer needed.
+  + Modernize spec, use spec-cleaner.
+
+-------------------------------------------------------------------

New:
----
  at-spi2-core-bgo791124-buffer-overflow.patch
  at-spi2-core-bgo791167-reproducible-build.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ at-spi2-core.spec ++++++
--- /var/tmp/diff_new_pack.tQjpdY/_old  2017-12-06 08:56:19.317964479 +0100
+++ /var/tmp/diff_new_pack.tQjpdY/_new  2017-12-06 08:56:19.317964479 +0100
@@ -25,8 +25,15 @@
 Url:            http://www.gnome.org/
 Source0:        
http://download.gnome.org/sources/at-spi2-core/2.26/%{name}-%{version}.tar.xz
 Source99:       baselibs.conf
+# PATCH-FIX-UPSTREAM at-spi2-core-bgo791124-buffer-overflow.patch bgo#791124 
[email protected] -- Fix possible buffer overflow reading dbus address in 
at-spi-bus-launcher.
+Patch0:         at-spi2-core-bgo791124-buffer-overflow.patch
+# PATCH-FIX-UPSTREAM at-spi2-core-bgo791167-reproducible-build.patch 
bgo#791167 [email protected] -- use @basename@ rather than @filename@ in 
templates.
+Patch1:         at-spi2-core-bgo791167-reproducible-build.patch
+
+BuildRequires:  gtk-doc
 BuildRequires:  intltool
-BuildRequires:  update-desktop-files
+BuildRequires:  meson
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(dbus-1) >= 1.0
 BuildRequires:  pkgconfig(gio-2.0) >= 2.28
 BuildRequires:  pkgconfig(glib-2.0) >= 2.36.0
@@ -38,7 +45,6 @@
 BuildRequires:  pkgconfig(xtst)
 # dbus-daemon is needed to have this work fine
 Requires:       dbus-1
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
 AT-SPI is a general interface for applications to make use of the
@@ -79,30 +85,28 @@
 to develop applications that require these.
 
 %lang_package
+
 %prep
-%setup -q
+%autosetup -p1
 
 %build
-%configure \
-        --libexecdir=%{_libexecdir}/at-spi2 \
-        --with-dbus-daemondir=/bin \
-        --disable-xevie \
-        --disable-static
-make %{?_smp_mflags}
+%meson \
+       --libexecdir="%{_libexecdir}/at-spi2" \
+       -D enable_docs=true \
+       -D enable-introspection=yes \
+       -D enable-x11=yes \
+       %{nil}
+%meson_build
 
 %install
-%make_install
-%suse_update_desktop_file at-spi-dbus-bus
+%meson_install
 %find_lang at-spi2-core
-find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
 
 %post -n libatspi0 -p /sbin/ldconfig
-
 %postun -n libatspi0 -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
-%doc AUTHORS COPYING README
+%doc COPYING
 %{_libexecdir}/at-spi2/
 %{_sysconfdir}/xdg/autostart/at-spi-dbus-bus.desktop
 %{_userunitdir}/at-spi-dbus-bus.service
@@ -113,15 +117,13 @@
 %{_datadir}/defaults/at-spi2/
 
 %files -n libatspi0
-%defattr(-, root, root)
 %{_libdir}/libatspi.so.0*
 
 %files -n typelib-1_0-Atspi-2_0
-%defattr(-, root, root)
 %{_libdir}/girepository-1.0/Atspi-2.0.typelib
 
 %files devel
-%defattr(-, root, root)
+%doc AUTHORS README
 %{_includedir}/at-spi-2.0/
 %{_libdir}/libatspi.so
 %{_libdir}/pkgconfig/atspi-2.pc

++++++ at-spi2-core-bgo791124-buffer-overflow.patch ++++++
>From c2e87fe00b596dba20c9d57d406ab8faa744b15a Mon Sep 17 00:00:00 2001
From: Maya Rashish <[email protected]>
Date: Sat, 2 Dec 2017 13:24:29 +0200
Subject: [PATCH 1/2] Fix inverted logic.

Don't write more into a buffer than it can hold.

https://bugzilla.gnome.org/show_bug.cgi?id=791124
---
 bus/at-spi-bus-launcher.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bus/at-spi-bus-launcher.c b/bus/at-spi-bus-launcher.c
index 261353f..eb2b8e3 100644
--- a/bus/at-spi-bus-launcher.c
+++ b/bus/at-spi-bus-launcher.c
@@ -244,7 +244,7 @@ unix_read_all_fd_to_string (int      fd,
 {
   ssize_t bytes_read;
 
-  while (max_bytes > 1 && (bytes_read = read (fd, buf, MAX (4096, max_bytes - 
1))))
+  while (max_bytes > 1 && (bytes_read = read (fd, buf, MIN (4096, max_bytes - 
1))))
     {
       if (bytes_read < 0)
         return FALSE;
-- 
2.15.0

++++++ at-spi2-core-bgo791167-reproducible-build.patch ++++++
>From 0e9de9eb62088d251b95a7990b35f52ea961a608 Mon Sep 17 00:00:00 2001
From: Chris Lamb <[email protected]>
Date: Mon, 4 Dec 2017 14:15:01 -0600
Subject: [PATCH 2/2] Make the build reproducible

atspi-enum-types.(c|h).template should use @basename@ rather than @filename@

https://bugzilla.gnome.org/show_bug.cgi?id=791167
---
 atspi/atspi-enum-types.c.template | 2 +-
 atspi/atspi-enum-types.h.template | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/atspi/atspi-enum-types.c.template 
b/atspi/atspi-enum-types.c.template
index cd92f99..385d0ee 100644
--- a/atspi/atspi-enum-types.c.template
+++ b/atspi/atspi-enum-types.c.template
@@ -4,7 +4,7 @@
 /*** END file-header ***/
 
 /*** BEGIN file-production ***/
-/* enumerations from "@filename@" */
+/* enumerations from "@basename@" */
 #include "@filename@"
 
 /*** END file-production ***/
diff --git a/atspi/atspi-enum-types.h.template 
b/atspi/atspi-enum-types.h.template
index bd297b5..789ad2e 100644
--- a/atspi/atspi-enum-types.h.template
+++ b/atspi/atspi-enum-types.h.template
@@ -9,7 +9,7 @@ G_BEGIN_DECLS
 /*** END file-header ***/
 
 /*** BEGIN file-production ***/
-/* Enumerations from "@filename@" */
+/* Enumerations from "@basename@" */
 
 /*** END file-production ***/
 
-- 
2.15.0


Reply via email to