commit libXau for openSUSE:Factory

2019-02-24 Thread root
Hello community,

here is the log from the commit of package libXau for openSUSE:Factory checked 
in at 2019-02-24 16:58:48

Comparing /work/SRC/openSUSE:Factory/libXau (Old)
 and  /work/SRC/openSUSE:Factory/.libXau.new.28833 (New)


Package is "libXau"

Sun Feb 24 16:58:48 2019 rev:10 rq:673353 version:1.0.9

Changes:

--- /work/SRC/openSUSE:Factory/libXau/libXau.changes2013-09-30 
18:12:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXau.new.28833/libXau.changes 2019-02-24 
16:58:49.568810860 +0100
@@ -1,0 +2,17 @@
+Mon Feb 11 11:15:25 UTC 2019 - sndir...@suse.com
+
+- Update to version 1.0.9:
+  * Update configure.ac bug URL for gitlab migration
+  * autogen.sh: use quoted string variables
+  * autogen: add default patch prefix
+  * autogen.sh: use exec instead of waiting for configure to finish
+  * XauFileName: always go through buf allocation if buf is NULL
+  * XauFileName: reset bsize when malloc failed
+  * AuDispose.c:remove redundant null check on calling free()
+  * AuFileName.c: remove redundant null check on calling free()
+  * AuRead.c: remove redundant null check on calling free()
+  * Avoid out of boundary read access
+- supersedes U_0001-XauFileName-reset-bsize-when-malloc-failed.patch,
+  U_0002-XauFileName-always-go-through-buf-allocation-if-buf-.patch
+
+---

Old:

  U_0001-XauFileName-reset-bsize-when-malloc-failed.patch
  U_0002-XauFileName-always-go-through-buf-allocation-if-buf-.patch
  libXau-1.0.8.tar.bz2

New:

  libXau-1.0.9.tar.bz2



Other differences:
--
++ libXau.spec ++
--- /var/tmp/diff_new_pack.aprWqq/_old  2019-02-24 16:58:50.080810616 +0100
+++ /var/tmp/diff_new_pack.aprWqq/_new  2019-02-24 16:58:50.084810614 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libXau
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 Name:   libXau
 %define lname  libXau6
-Version:1.0.8
+Version:1.0.9
 Release:0
 Summary:X11 authorization protocol library
 License:MIT
@@ -28,8 +28,7 @@
 #Git-Clone:git://anongit.freedesktop.org/xorg/lib/libXau
 #Git-Web:   http://cgit.freedesktop.org/xorg/lib/libXau/
 Source: 
http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.bz2
-Patch1: U_0001-XauFileName-reset-bsize-when-malloc-failed.patch
-Patch2: 
U_0002-XauFileName-always-go-through-buf-allocation-if-buf-.patch
+Source1:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #git#BuildRequires:autoconf >= 2.60, automake
 BuildRequires:  fdupes
@@ -47,8 +46,8 @@
 
 %package -n %lname
 Summary:X11 authorization protocol library
-Group:  System/Libraries
 # O/P added for 12.2
+Group:  System/Libraries
 Provides:   xorg-x11-libXau = 7.6_%version-%release
 Obsoletes:  xorg-x11-libXau < 7.6_%version-%release
 
@@ -79,8 +78,6 @@
 
 %prep
 %setup -q
-%patch1 -p1
-%patch2 -p1
 
 %build
 %configure --disable-static

++ libXau-1.0.8.tar.bz2 -> libXau-1.0.9.tar.bz2 ++
 29156 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libXau-1.0.8/AuDispose.c new/libXau-1.0.9/AuDispose.c
--- old/libXau-1.0.8/AuDispose.c2013-05-25 00:04:09.0 +0200
+++ new/libXau-1.0.9/AuDispose.c2019-02-10 23:45:00.0 +0100
@@ -34,9 +34,9 @@
 XauDisposeAuth (Xauth *auth)
 {
 if (auth) {
-   if (auth->address) (void) free (auth->address);
-   if (auth->number) (void) free (auth->number);
-   if (auth->name) (void) free (auth->name);
+   free (auth->address);
+   free (auth->number);
+   free (auth->name);
if (auth->data) {
(void) bzero (auth->data, auth->data_length);
(void) free (auth->data);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libXau-1.0.8/AuFileName.c new/libXau-1.0.9/AuFileName.c
--- old/libXau-1.0.8/AuFileName.c   

commit libXau for openSUSE:Factory

2013-09-30 Thread h_root
Hello community,

here is the log from the commit of package libXau for openSUSE:Factory checked 
in at 2013-09-30 18:12:01

Comparing /work/SRC/openSUSE:Factory/libXau (Old)
 and  /work/SRC/openSUSE:Factory/.libXau.new (New)


Package is "libXau"

Changes:

--- /work/SRC/openSUSE:Factory/libXau/libXau.changes2013-06-05 
11:55:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXau.new/libXau.changes   2013-09-30 
18:12:02.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep 30 10:12:46 UTC 2013 - sndir...@suse.com
+
+- U_0001-XauFileName-reset-bsize-when-malloc-failed.patch/
+  U_0002-XauFileName-always-go-through-buf-allocation-if-buf-.patch
+  * fixes regression in libXau 1.0.8, which resulted in a crash in
+Mozilla (bnc#831620,fdo#69929)
+
+---

New:

  U_0001-XauFileName-reset-bsize-when-malloc-failed.patch
  U_0002-XauFileName-always-go-through-buf-allocation-if-buf-.patch



Other differences:
--
++ libXau.spec ++
--- /var/tmp/diff_new_pack.dUalr4/_old  2013-09-30 18:12:03.0 +0200
+++ /var/tmp/diff_new_pack.dUalr4/_new  2013-09-30 18:12:03.0 +0200
@@ -28,6 +28,8 @@
 #Git-Clone:git://anongit.freedesktop.org/xorg/lib/libXau
 #Git-Web:   http://cgit.freedesktop.org/xorg/lib/libXau/
 Source: 
http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.bz2
+Patch1: U_0001-XauFileName-reset-bsize-when-malloc-failed.patch
+Patch2: 
U_0002-XauFileName-always-go-through-buf-allocation-if-buf-.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #git#BuildRequires:autoconf >= 2.60, automake
 BuildRequires:  fdupes
@@ -77,6 +79,8 @@
 
 %prep
 %setup -q
+%patch1 -p1
+%patch2 -p1
 
 %build
 %configure --disable-static

++ U_0001-XauFileName-reset-bsize-when-malloc-failed.patch ++
>From 67beb3d0bc41c3416902c858f595b35306f76704 Mon Sep 17 00:00:00 2001
From: Fuminobu TAKEYAMA 
Date: Sun, 29 Sep 2013 09:21:05 -0700
Subject: [PATCH 1/2] XauFileName: reset bsize when malloc failed

https://bugs.freedesktop.org/show_bug.cgi?id=69929

Reviewed-by: Alan Coopersmith 
Signed-off-by: Alan Coopersmith 
---
 AuFileName.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/AuFileName.c b/AuFileName.c
index 0904273..63d4956 100644
--- a/AuFileName.c
+++ b/AuFileName.c
@@ -70,8 +70,10 @@ XauFileName (void)
if (buf)
free (buf);
buf = malloc (size);
-   if (!buf)
+   if (!buf) {
+   bsize = 0;
return NULL;
+   }
 
 if (!atexit_registered) {
 atexit(free_filename_buffer);
-- 
1.8.1.4

++ U_0002-XauFileName-always-go-through-buf-allocation-if-buf-.patch ++
>From 304a11be4727c5a7feeb2501e8e001466f8ce84e Mon Sep 17 00:00:00 2001
From: Alan Coopersmith 
Date: Sun, 29 Sep 2013 09:23:45 -0700
Subject: [PATCH 2/2] XauFileName: always go through buf allocation if buf is
 NULL

Signed-off-by: Alan Coopersmith 
---
 AuFileName.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/AuFileName.c b/AuFileName.c
index 63d4956..7cedfcc 100644
--- a/AuFileName.c
+++ b/AuFileName.c
@@ -66,7 +66,7 @@ XauFileName (void)
return NULL;
 }
 size = strlen (name) + strlen(&slashDotXauthority[1]) + 2;
-if (size > bsize) {
+if ((size > bsize) || (buf == NULL)) {
if (buf)
free (buf);
buf = malloc (size);
-- 
1.8.1.4

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libXau for openSUSE:Factory

2013-06-05 Thread h_root
Hello community,

here is the log from the commit of package libXau for openSUSE:Factory checked 
in at 2013-06-05 11:55:50

Comparing /work/SRC/openSUSE:Factory/libXau (Old)
 and  /work/SRC/openSUSE:Factory/.libXau.new (New)


Package is "libXau"

Changes:

--- /work/SRC/openSUSE:Factory/libXau/libXau.changes2013-03-22 
11:53:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.libXau.new/libXau.changes   2013-06-05 
11:55:52.0 +0200
@@ -1,0 +2,9 @@
+Wed May 29 22:21:50 UTC 2013 - tobias.johannes.klausm...@mni.thm.de
+
+- Update to version 1.0.8:
+  This maintenance release brings happiness by getting rid of things
+  that make valgrind, clang, doclifter, automake, the GNOME build system,
+  various other static analyzers, and obsessive developers be unhappy.
+  Don't warn, be happy.
+
+---

Old:

  libXau-1.0.7.tar.bz2

New:

  libXau-1.0.8.tar.bz2



Other differences:
--
++ libXau.spec ++
--- /var/tmp/diff_new_pack.hNSrUV/_old  2013-06-05 11:55:53.0 +0200
+++ /var/tmp/diff_new_pack.hNSrUV/_new  2013-06-05 11:55:53.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   libXau
 %define lname  libXau6
-Version:1.0.7
+Version:1.0.8
 Release:0
 Summary:X11 authorization protocol library
 License:MIT

++ libXau-1.0.7.tar.bz2 -> libXau-1.0.8.tar.bz2 ++
 18607 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libXau-1.0.7/AuFileName.c new/libXau-1.0.8/AuFileName.c
--- old/libXau-1.0.7/AuFileName.c   2012-03-07 07:17:13.0 +0100
+++ new/libXau-1.0.8/AuFileName.c   2013-05-25 00:04:09.0 +0200
@@ -31,26 +31,34 @@
 #include 
 #include 
 
+static char *buf = NULL;
+
+static void
+free_filename_buffer(void)
+{
+free(buf);
+buf = NULL;
+}
+
 char *
 XauFileName (void)
 {
 const char *slashDotXauthority = "/.Xauthority";
 char*name;
-static char*buf;
-static int bsize;
+static size_t  bsize;
+static int atexit_registered = 0;
 #ifdef WIN32
 chardir[128];
 #endif
-intsize;
+size_t  size;
 
 if ((name = getenv ("XAUTHORITY")))
return name;
 name = getenv ("HOME");
 if (!name) {
 #ifdef WIN32
-   (void) strcpy (dir, "/users/");
if ((name = getenv("USERNAME"))) {
-   (void) strcat (dir, name);
+   snprintf(dir, sizeof(dir), "/users/%s", name);
name = dir;
}
if (!name)
@@ -61,12 +69,18 @@
 if (size > bsize) {
if (buf)
free (buf);
-   buf = malloc ((unsigned) size);
+   buf = malloc (size);
if (!buf)
return NULL;
+
+if (!atexit_registered) {
+atexit(free_filename_buffer);
+atexit_registered = 1;
+}
+
bsize = size;
 }
-strcpy (buf, name);
-strcat (buf, slashDotXauthority + (name[1] == '\0' ? 1 : 0));
+snprintf (buf, bsize, "%s%s", name,
+  slashDotXauthority + (name[1] == '\0' ? 1 : 0));
 return buf;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libXau-1.0.7/AuGetAddr.c new/libXau-1.0.8/AuGetAddr.c
--- old/libXau-1.0.7/AuGetAddr.c2012-03-07 07:17:13.0 +0100
+++ new/libXau-1.0.8/AuGetAddr.c2013-05-25 00:04:09.0 +0200
@@ -30,14 +30,7 @@
 #include 
 #include 
 
-static int
-binaryEqual (_Xconst char *a, _Xconst char *b, int len)
-{
-while (len--)
-   if (*a++ != *b++)
-   return 0;
-return 1;
-}
+#define binaryEqual(a, b, len) (memcmp(a, b, len) == 0)
 
 Xauth *
 XauGetAuthByAddr (
@@ -94,13 +87,13 @@
if ((family == FamilyWild || entry->family == FamilyWild ||
 (entry->family == family &&
  address_length == entry->address_length &&
- binaryEqual (entry->address, address, (int)address_length))) &&
+ binaryEqual (entry->address, address, address_length))) &&
(number_length == 0 || entry->number_length == 0 ||
 (number_length == entry->number_length &&
- binaryEqual (entry->number, number, (int)number_length))) &&
+  

commit libXau for openSUSE:Factory

2013-03-22 Thread h_root
Hello community,

here is the log from the commit of package libXau for openSUSE:Factory checked 
in at 2013-03-22 11:53:10

Comparing /work/SRC/openSUSE:Factory/libXau (Old)
 and  /work/SRC/openSUSE:Factory/.libXau.new (New)


Package is "libXau", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/libXau/libXau.changes2012-05-08 
11:57:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXau.new/libXau.changes   2013-03-22 
11:53:12.0 +0100
@@ -1,0 +2,6 @@
+Sun Feb 17 17:21:53 UTC 2013 - jeng...@inai.de
+
+- Use more robust make install call
+- Avoid calling fdupes outside of /usr
+
+---



Other differences:
--
++ libXau.spec ++
--- /var/tmp/diff_new_pack.FhyB85/_old  2013-03-22 11:53:13.0 +0100
+++ /var/tmp/diff_new_pack.FhyB85/_new  2013-03-22 11:53:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libXau
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -83,9 +83,9 @@
 make %{?_smp_mflags}
 
 %install
-%makeinstall
+make install DESTDIR="%buildroot"
 rm -f "%buildroot/%_libdir"/*.la
-%fdupes %buildroot
+%fdupes %buildroot/%_prefix
 
 %post -n %lname -p /sbin/ldconfig
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libXau for openSUSE:Factory

2012-05-08 Thread h_root
Hello community,

here is the log from the commit of package libXau for openSUSE:Factory checked 
in at 2012-05-08 11:57:13

Comparing /work/SRC/openSUSE:Factory/libXau (Old)
 and  /work/SRC/openSUSE:Factory/.libXau.new (New)


Package is "libXau", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/libXau/libXau.changes2012-02-17 
12:02:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.libXau.new/libXau.changes   2012-05-08 
11:57:19.0 +0200
@@ -1,0 +2,8 @@
+Wed Apr 11 15:16:20 UTC 2012 - vu...@opensuse.org
+
+- Update to version 1.0.7:
+  + Improve the handling of "normal" locking collisions
+  + Documentation cleanups
+  + Build configuration improvements
+
+---

Old:

  libXau-1.0.6.tar.bz2

New:

  libXau-1.0.7.tar.bz2



Other differences:
--
++ libXau.spec ++
--- /var/tmp/diff_new_pack.gSwZqx/_old  2012-05-08 11:57:20.0 +0200
+++ /var/tmp/diff_new_pack.gSwZqx/_new  2012-05-08 11:57:20.0 +0200
@@ -14,22 +14,26 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
+
 Name:   libXau
 %define lname  libXau6
-Version:1.0.6
+Version:1.0.7
 Release:0
 Summary:X11 authorization protocol library
 License:MIT
 Group:  Development/Libraries/C and C++
-URL:   http://xorg.freedesktop.org/
+Url:http://xorg.freedesktop.org/
 
 #Git-Clone:git://anongit.freedesktop.org/xorg/lib/libXau
 #Git-Web:   http://cgit.freedesktop.org/xorg/lib/libXau/
-Source: %name-%version.tar.bz2
-BuildRoot: %_tmppath/%name-%version-build
+Source: 
http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.bz2
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #git#BuildRequires:autoconf >= 2.60, automake
-BuildRequires: fdupes, libtool
-BuildRequires:  pkgconfig, pkgconfig(xorg-macros) >= 1.4
+BuildRequires:  fdupes
+BuildRequires:  libtool
+BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(xorg-macros) >= 1.8
 BuildRequires: pkgconfig(xproto)
 
 %description

++ libXau-1.0.6.tar.bz2 -> libXau-1.0.7.tar.bz2 ++
 50303 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libXau-1.0.6/AuDispose.c new/libXau-1.0.7/AuDispose.c
--- old/libXau-1.0.6/AuDispose.c2009-02-16 18:59:07.0 +0100
+++ new/libXau-1.0.7/AuDispose.c2012-03-07 07:17:13.0 +0100
@@ -1,5 +1,3 @@
-/* $Xorg: AuDispose.c,v 1.4 2001/02/09 02:03:42 xorgcvs Exp $ */
-
 /*
 
 Copyright 1988, 1998  The Open Group
@@ -25,7 +23,6 @@
 in this Software without prior written authorization from The Open Group.
 
 */
-/* $XFree86: xc/lib/Xau/AuDispose.c,v 1.4 2001/07/25 15:04:48 dawes Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libXau-1.0.6/AuFileName.c new/libXau-1.0.7/AuFileName.c
--- old/libXau-1.0.6/AuFileName.c   2009-02-16 18:59:07.0 +0100
+++ new/libXau-1.0.7/AuFileName.c   2012-03-07 07:17:13.0 +0100
@@ -1,5 +1,3 @@
-/* $Xorg: AuFileName.c,v 1.5 2001/02/09 02:03:42 xorgcvs Exp $ */
-
 /*
 
 Copyright 1988, 1998  The Open Group
@@ -25,7 +23,6 @@
 in this Software without prior written authorization from The Open Group.
 
 */
-/* $XFree86: xc/lib/Xau/AuFileName.c,v 3.6 2001/07/25 15:04:48 dawes Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/libXau-1.0.6/AuGetAddr.c new/libXau-1.0.7/AuGetAddr.c
--- old/libXau-1.0.6/AuGetAddr.c2009-02-16 18:59:07.0 +0100
+++ new/libXau-1.0.7/AuGetAddr.c2012-03-07 07:17:13.0 +0100
@@ -1,5 +1,3 @@
-/* $Xorg: AuGetAddr.c,v 1.4 2001/02/09 02:03:42 xorgcvs Exp $ */
-
 /*
 
 Copyright 1988, 1998  The Open Group
@@ -25,7 +23,6 @@
 in this Software without prior written authorization from The Open Group.
 
 */
-/* $XFree86: xc/lib/Xau/AuGetAddr.c,v

commit libXau for openSUSE:Factory

2012-02-17 Thread h_root
Hello community,

here is the log from the commit of package libXau for openSUSE:Factory checked 
in at 2012-02-17 12:02:22

Comparing /work/SRC/openSUSE:Factory/libXau (Old)
 and  /work/SRC/openSUSE:Factory/.libXau.new (New)


Package is "libXau", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libXau.new/libXau.changes   2012-02-17 
12:02:24.0 +0100
@@ -0,0 +1,118 @@
+---
+Sat Feb 11 18:29:50 UTC 2012 - jeng...@medozas.de
+
+- Rename xorg-x11-libXau to libXau and utilize shlib policy
+
+---
+Tue Dec 21 02:43:31 UTC 2010 - sndir...@novell.com
+
+- bumped version number to 7.6_1.0.6 
+
+---
+Sat Sep  4 18:04:08 UTC 2010 - sndir...@novell.com
+
+- libXau 1.0.6
+  * This minor release includes a number of packaging updates
+accumulated over the last year, and a couple of documentation
+fixes.
+- bumped version number to 7.5_1.0.6 
+- make use of %fdupes macro
+- fixed Summary/Group entries in -devel package
+
+---
+Sun Apr  4 15:33:14 CEST 2010 - sndir...@suse.de
+
+- libXau 1.0.5
+- bumped version number to 7.5 
+
+---
+Mon Dec 14 18:18:22 CET 2009 - jeng...@medozas.de
+
+- add baselibs.conf as a source
+
+---
+Fri May  1 23:34:35 CEST 2009 - e...@suse.de
+
+- revert static library and .la file removal
+  for SUSE versions <= 11.1.
+
+---
+Tue Apr 21 20:43:12 CEST 2009 - crrodrig...@suse.de
+
+- remove static libraries 
+
+---
+Thu Sep 11 14:21:14 CEST 2008 - sndir...@suse.de
+
+- bumped release number to 7.4 
+
+---
+Wed Aug 27 10:31:34 CEST 2008 - sndir...@suse.de
+
+- libXau 1.0.4
+  * SVR4 (including Solaris) puts gethostbyname_r in libnsl instead
+of libc
+  * Bug 17314: libXau's Makefile.am should have proper man creation
+rules
+  * Bug #11097: libXau COPYING fix (add missing copyright dates) 
+
+---
+Thu Apr 10 12:54:45 CEST 2008 - r...@suse.de
+
+- added baselibs.conf file to build xxbit packages
+  for multilib support
+
+---
+Fri Mar 14 18:01:02 CET 2008 - sndir...@suse.de
+
+- readded libXau.la for openSUSE <= 10.3 (bnc #371041)
+
+---
+Tue Jan  1 22:57:42 CET 2008 - crrodrig...@suse.de
+
+- fix library-without-ldconfig-* error
+- add missing PreReq coreutils 
+- remove libXau.la (empty dependency_libs) 
+
+---
+Sat Sep 29 12:22:45 CEST 2007 - sndir...@suse.de
+
+- bumped version to 7.3 
+
+---
+Mon Dec 18 10:59:53 CET 2006 - sndir...@suse.de
+
+- updated libXau to release 1.0.3 
+  * Makefile.am: make ChangeLog hook safer
+
+---
+Thu Oct 26 07:28:53 CEST 2006 - sndir...@suse.de
+
+- set version to 7.2 in specfile 
+
+---
+Wed Aug  2 16:12:06 CEST 2006 - sndir...@suse.de
+
+- fix setup line 
+
+---
+Sat Jul 29 08:34:15 CEST 2006 - sndir...@suse.de
+
+- updated libXau to release 1.0.2
+
+---
+Fri Jul 28 14:44:21 CEST 2006 - sndir...@suse.de
+
+- use "-fno-strict-aliasing" 
+
+---
+Thu Jul 27 11:41:34 CEST 2006 - sndir...@suse.de
+
+- use $RPM_OPT_FLAGS
+- remove existing /usr/include/X11 symlink in %pre
+
+---
+Thu Jun 22 11:22:12 CEST 2006 - sndir...@suse.de
+
+- created package 
+

New:

  baselibs.conf
  libXau-1.0.6.tar.bz2
  libXau.changes
  libXau.spec



Other differences:
--
++ libXau.spec ++
#
# spec file for package libXau
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file,