commit qemu for openSUSE:12.1:Update:Test

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package qemu for openSUSE:12.1:Update:Test 
checked in at 2012-02-08 14:50:47

Comparing /work/SRC/openSUSE:12.1:Update:Test/qemu (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.qemu.new (New)


Package is qemu, Maintainer is brog...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/qemu/qemu.changes   2012-02-08 
14:50:52.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.qemu.new/qemu.changes  2012-02-08 
14:50:52.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb  6 20:11:59 UTC 2012 - brog...@suse.com
+
+- avoid buffer overflow in e1000 device emulation (bnc#740165)
+
+---

New:

  0026-e1000-check-for-overflow-whenever-issuing-PCI-dma-reads.patch



Other differences:
--
++ qemu.spec ++
--- /var/tmp/diff_new_pack.t9vu8Q/_old  2012-02-08 14:50:52.0 +0100
+++ /var/tmp/diff_new_pack.t9vu8Q/_new  2012-02-08 14:50:52.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package qemu
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,16 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   qemu
 Url:http://fabrice.bellard.free.fr/qemu/
-License:BSD3c(or similar) ; GPLv2+ ; LGPLv2.1+ ; MIT License (or 
similar)
-Group:  System/Emulators/PC
 Summary:Universal CPU emulator
+License:BSD-3-Clause ; GPL-2.0+ ; LGPL-2.1+ ; MIT
+Group:  System/Emulators/PC
 Version:0.14.1
-Release:1
+Release:0
 Source: %name-%version.tar.bz2
 Patch1: 0001-qemu-0.7.0-amd64.patch
 Patch2: 0002-qemu-0.9.0.cvs-binfmt.patch
@@ -50,6 +47,7 @@
 Patch23:0023-linux-user-add-binfmt-wrapper-for-argv-0-handling.patch
 Patch24:0024-fix-glibc-install-locales.patch
 Patch25:0025-add-syscall-numbers-from-2.6.39.2.patch
+Patch26:
0026-e1000-check-for-overflow-whenever-issuing-PCI-dma-reads.patch
 # this is to make lint happy
 Source300:  rpmlintrc
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -122,6 +120,7 @@
 %patch15 -p1
 %patch17 -p1
 %endif
+%patch26 -p1
 
 %build
 # build QEMU

++ 0026-e1000-check-for-overflow-whenever-issuing-PCI-dma-reads.patch ++
From 7fff7710abc9893d8dce5dbad1e7093caf521132 Mon Sep 17 00:00:00 2001
From: Anthony Liguori aligu...@us.ibm.com
Date: Wed, 4 Jan 2012 14:50:45 -0600
Subject: e1000: check for overflow whenever issuing PCI dma reads

Reported-by: Nicolae Mogoreanu m...@google.com
Signed-off-by: Anthony Liguori aligu...@us.ibm.com
---
 hw/e1000.c |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

Index: qemu-kvm-0.12.5/hw/e1000.c
===
--- qemu-kvm-0.12.5.orig/hw/e1000.c
+++ qemu-kvm-0.12.5/hw/e1000.c
@@ -456,6 +456,7 @@ process_tx_desc(E1000State *s, struct e1
 bytes = split_size;
 if (tp-size + bytes  msh)
 bytes = msh - tp-size;
+bytes = MIN(sizeof(tp-data) - tp-size, bytes);
 cpu_physical_memory_read(addr, tp-data + tp-size, bytes);
 if ((sz = tp-size + bytes) = hdr  tp-size  hdr)
 memmove(tp-header, tp-data, hdr);
@@ -471,6 +472,7 @@ process_tx_desc(E1000State *s, struct e1
 // context descriptor TSE is not set, while data descriptor TSE is set
 DBGOUT(TXERR, TCP segmentaion Error\n);
 } else {
+split_size = MIN(sizeof(tp-data) - tp-size, split_size);
 cpu_physical_memory_read(addr, tp-data + tp-size, split_size);
 tp-size += split_size;
 }
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit zlib for openSUSE:12.1:Update:Test

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package zlib for openSUSE:12.1:Update:Test 
checked in at 2012-02-08 14:51:17

Comparing /work/SRC/openSUSE:12.1:Update:Test/zlib (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.zlib.new (New)


Package is zlib, Maintainer is mvysko...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/zlib/zlib.changes   2012-02-08 
14:51:22.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.zlib.new/zlib.changes  2012-02-08 
14:51:22.0 +0100
@@ -1,0 +2,6 @@
+Thu Dec 22 14:31:42 CET 2011 - meiss...@suse.de
+
+- use configure options for library paths. Also fixes
+  the pkg-config file to not have /usr/local bnc#738169
+
+---



Other differences:
--
++ zlib.spec ++
--- /var/tmp/diff_new_pack.vO1rzn/_old  2012-02-08 14:51:22.0 +0100
+++ /var/tmp/diff_new_pack.vO1rzn/_new  2012-02-08 14:51:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package zlib
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,11 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   zlib
-License:Other uncritical OpenSource License
-Group:  System/Libraries
 Provides:   libz
 Obsoletes:  libz
 # bug437293
@@ -28,8 +24,10 @@
 %endif
 #
 Version:1.2.5_git201105272030
-Release:17
+Release:0
 Summary:Data Compression Library
+License:Other uncritical OpenSource License
+Group:  System/Libraries
 Url:http://www.zlib.net/
 # git://github.com/kaffeemonster/zlib_adler32_vec.git
 Source: zlib-%{version}.tar.bz2
@@ -54,7 +52,6 @@
 ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html.
 
 %package devel
-License:Other uncritical OpenSource License
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Languages/C and C++
 Requires:   glibc-devel
@@ -72,7 +69,6 @@
 libraries.
 
 %package devel-static
-License:Other uncritical OpenSource License
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Languages/C and C++
 Requires:   %{name}-devel = %{version}
@@ -98,14 +94,14 @@
 %if %{do_profiling}
 profiledir=$(mktemp -d)
 trap rm -rf $profiledir EXIT
-CC=%__cc ./configure --shared
+CC=%__cc ./configure --shared --prefix=%_prefix --libdir=/%_lib
 %{__make} CFLAGS=$RPM_OPT_FLAGS %{cflags_profile_generate}=$profiledir 
%{?_smp_mflags}
 time make check
 make clean
 %{__make} CFLAGS=$RPM_OPT_FLAGS %{cflags_profile_feedback}=$profiledir 
%{?_smp_mflags}
 %else
 export CFLAGS=%optflags
-CC=%__cc ./configure --shared
+CC=%__cc ./configure --shared --prefix=%_prefix --libdir=/%_lib
 %{__make} %{?_smp_mflags}
 %endif
 
@@ -113,12 +109,9 @@
 time make check
 
 %install
-mkdir -p %{buildroot}{/%{_lib},%{_libdir}}
-mkdir -p %{buildroot}%{_mandir}/man3
-mkdir -p %{buildroot}%{_includedir}
-make install \
-   prefix=%{buildroot}%{_prefix} \
-   libdir=%{buildroot}/%{_lib}
+#mkdir -p %{buildroot}%{_mandir}/man3
+mkdir -p %{buildroot}%{_libdir}
+make install DESTDIR=%{buildroot}
 %{__ln_s} -v /%{_lib}/$(readlink %{buildroot}/%{_lib}/libz.so) 
%{buildroot}%{_libdir}/libz.so
 %{__rm} -v %{buildroot}/%{_lib}/libz.so
 # static lib

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



commit openslp for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package openslp for openSUSE:Factory checked 
in at 2012-02-08 15:33:53

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


Package is openslp, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/openslp/openslp.changes  2011-11-16 
17:20:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.openslp.new/openslp.changes 2012-02-08 
15:33:54.0 +0100
@@ -1,0 +2,5 @@
+Thu Dec 22 23:42:12 UTC 2011 - crrodrig...@opensuse.org
+
+- Add native systemd unit 
+
+---

New:

  slpd.service



Other differences:
--
++ openslp.spec ++
--- /var/tmp/diff_new_pack.UaNUsU/_old  2012-02-08 15:33:55.0 +0100
+++ /var/tmp/diff_new_pack.UaNUsU/_new  2012-02-08 15:33:55.0 +0100
@@ -19,6 +19,11 @@
 
 Name:   openslp
 BuildRequires:  bison flex libtool openssl-devel
+%if 0%{?suse_version}  1140
+BuildRequires:  systemd
+%{?systemd_requires}
+%define has_systemd 1
+%endif
 Summary:An OpenSLP Implementation of Service Location Protocol V2
 Version:1.2.0
 Release:186
@@ -40,6 +45,7 @@
 Source6:slpd.xml
 Source7:openslp.SuSEfirewall2
 Source8:baselibs.conf
+Source9:slpd.service
 Patch1: openslp.diff
 Patch2: openslp.audit.diff
 Patch3: extensions.diff
@@ -225,7 +231,9 @@
 install -D -m 644 %{S:7} 
$RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/openslp
 %endif
 
-nm -C -D %{buildroot}%_libdir/libslp.so
+%if 0%{?has_systemd}
+install -D -m 644 %{S:9} %{buildroot}%{_unitdir}/slpd.service
+%endif
 
 %post   -p /sbin/ldconfig
 
@@ -233,6 +241,9 @@
 
 %pre server
 /usr/sbin/useradd -r -g daemon -d /var/lib/empty -s /sbin/nologin -c openslp 
daemon openslp 2/dev/null || :
+%if 0%{?has_systemd}
+%service_add_pre slpd.service
+%endif
 
 %post server
 %if 0%{?sles_version} == 9 || 0%{?sles_version} == 10
@@ -240,13 +251,22 @@
 %else
 %{fillup_and_insserv slpd}
 %endif
+%if 0%{?has_systemd}
+%service_add_post slpd.service
+%endif
 
 %postun server
 %restart_on_update slpd
 %insserv_cleanup
+%if 0%{?has_systemd}
+%service_del_postun slpd.service
+%endif
 
 %preun server
 %stop_on_removal slpd
+%if 0%{?has_systemd}
+%service_del_preun slpd.service
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -287,6 +307,9 @@
 %if 0%{?suse_version}  0
 %config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/openslp
 %endif
+%if 0%{?has_systemd}
+%{_unitdir}/slpd.service
+%endif
 
 %files devel
 %defattr(-,root,root)

++ slpd.service ++
[Unit]
Description=OpenSLP daemon for the Service Location Protocol
After=network.target nss-lookup.target

[Service]
ExecStart=/usr/sbin/slpd -d
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit clementine for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package clementine for openSUSE:Factory 
checked in at 2012-02-08 15:34:20

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


Package is clementine, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/clementine/clementine.changes2012-01-26 
14:00:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.clementine.new/clementine.changes   
2012-02-08 15:34:22.0 +0100
@@ -1,0 +2,12 @@
+Thu Feb  2 20:43:37 UTC 2012 - sei...@b1-systems.de
+
+- changed fftw devel dependency to pkgconfig dependency
+
+---
+Wed Feb  1 11:39:30 UTC 2012 - sei...@b1-systems.de
+
+- updadet to version 1.0.1
+- added another dependency
+- modified file section to /usr/lib/ instead of /usr/lib64
+
+---

Old:

  clementine-1.0.0-desktop-fix.patch
  clementine-1.0.0.tar.gz

New:

  clementine-1.0.1.tar.bz2
  clementine-desktop-fix.patch



Other differences:
--
++ clementine.spec ++
--- /var/tmp/diff_new_pack.Pp4icP/_old  2012-02-08 15:34:24.0 +0100
+++ /var/tmp/diff_new_pack.Pp4icP/_new  2012-02-08 15:34:24.0 +0100
@@ -15,16 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   clementine
-Version:1.0.0
+Version:1.0.1
 Release:0
 Summary:A cross-platform Music Player based on Amarok 1
 License:GPL-3.0
 Group:  Productivity/Multimedia/Sound/Players
 Url:http://code.google.com/p/clementine-player/
-Source: 
http://clementine-player.googlecode.com/files/%{name}-%{version}.tar.gz
+Source: %{name}-%{version}.tar.bz2
 # PATCH-FIX-OPENSUSE clementine-1.0.0-desktop-fix.patch fi...@opensuse.org -- 
remove unity related shortcuts
-Patch0: clementine-1.0.0-desktop-fix.patch
+Patch0: clementine-desktop-fix.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake
 BuildRequires:  fdupes
@@ -35,6 +37,7 @@
 BuildRequires:  libkde4-devel
 BuildRequires:  liblastfm-devel
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(fftw3)
 BuildRequires:  pkgconfig(glew)
 BuildRequires:  pkgconfig(libgpod-1.0)
 # No gnutls means no gloox with license problem (GPL-2.0 only)
@@ -144,7 +147,8 @@
 
 %files kde
 %defattr(-,root,root)
-%{_libdir}/kde4/plasma_runner_clementine.so
+%dir /usr/lib/kde4
+/usr/lib/kde4/plasma_runner_clementine.so
 %{_datadir}/kde4/services/plasma-runner-clementine.desktop
 
 %changelog

++ clementine-1.0.0.tar.gz - clementine-1.0.1.tar.bz2 ++
/work/SRC/openSUSE:Factory/clementine/clementine-1.0.0.tar.gz 
/work/SRC/openSUSE:Factory/.clementine.new/clementine-1.0.1.tar.bz2 differ: 
char 1, line 1

++ clementine-desktop-fix.patch ++
Index: dist/clementine.desktop
===
--- dist/clementine.desktop.orig
+++ dist/clementine.desktop
@@ -15,27 +15,3 @@ StartupNotify=false
 
MimeType=application/ogg;application/x-ogg;application/x-ogm-audio;audio/aac;audio/mp4;audio/mpeg;audio/mpegurl;audio/ogg;audio/vnd.rn-realaudio;audio/vorbis;audio/x-flac;audio/x-mp3;audio/x-mpeg;audio/x-mpegurl;audio/x-ms-wma;audio/x-musepack;audio/x-oggflac;audio/x-pn-realaudio;audio/x-scpls;audio/x-speex;audio/x-vorbis;audio/x-vorbis+ogg;audio/x-wav;video/x-ms-asf;x-content/audio-player;
 X-Ayatana-Desktop-Shortcuts=Play;Pause;Stop;Previous;Next;
 
-[Play Shortcut Group] 
-Name=Play
-Exec=clementine --play 
-TargetEnvironment=Unity
-
-[Pause Shortcut Group] 
-Name=Pause
-Exec=clementine --pause
-TargetEnvironment=Unity
-
-[Stop Shortcut Group] 
-Name=Stop
-Exec=clementine --stop
-TargetEnvironment=Unity
-
-[Previous Shortcut Group] 
-Name=Previous
-Exec=clementine --previous
-TargetEnvironment=Unity
-
-[Next Shortcut Group] 
-Name=Next
-Exec=clementine --next
-TargetEnvironment=Unity
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ca-certificates-mozilla for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package ca-certificates-mozilla for 
openSUSE:Factory checked in at 2012-02-08 15:34:34

Comparing /work/SRC/openSUSE:Factory/ca-certificates-mozilla (Old)
 and  /work/SRC/openSUSE:Factory/.ca-certificates-mozilla.new (New)


Package is ca-certificates-mozilla, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/ca-certificates-mozilla/ca-certificates-mozilla.changes
  2012-01-17 16:04:25.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.ca-certificates-mozilla.new/ca-certificates-mozilla.changes
 2012-02-08 15:34:36.0 +0100
@@ -1,0 +2,6 @@
+Fri Jan 13 08:52:29 UTC 2012 - cfarr...@suse.com
+
+- license update: MPL-1.1 or GPL-2.0+ or LGPL-2.1+
+  SPDX format and correct GPL and LGPL tags to include or later
+
+---



Other differences:
--
++ ca-certificates-mozilla.spec ++
--- /var/tmp/diff_new_pack.4hrBPS/_old  2012-02-08 15:34:37.0 +0100
+++ /var/tmp/diff_new_pack.4hrBPS/_new  2012-02-08 15:34:37.0 +0100
@@ -24,7 +24,7 @@
 Version:1.76
 Release:0
 Summary:CA certificates for OpenSSL
-License:BSD-3-Clause ; MPL-1.1 and GPL-2.0 and LGPL-2.1
+License:MPL-1.1 or GPL-2.0+ or LGPL-2.1+
 Group:  Productivity/Networking/Security
 Url:http://www.mozilla.org
 # IMPORTANT: procedure to update certificates:

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



commit syslogd for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package syslogd for openSUSE:Factory checked 
in at 2012-02-08 15:35:01

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


Package is syslogd, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/syslogd/syslogd.changes  2011-11-23 
19:37:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.syslogd.new/syslogd.changes 2012-02-08 
15:35:02.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb  3 16:31:30 UTC 2012 - wer...@suse.de
+
+- Do not use early configuration setup for networkless configuration
+  (bnc #728565)
+
+---



Other differences:
--
++ syslog-service-generator ++
--- /var/tmp/diff_new_pack.erbabJ/_old  2012-02-08 15:35:04.0 +0100
+++ /var/tmp/diff_new_pack.erbabJ/_new  2012-02-08 15:35:04.0 +0100
@@ -130,7 +130,6 @@
break
esac
done  ${config}
-   test -z $network  config=/etc/rsyslog.early.conf
 else
config=/etc/rsyslog.early.conf
 fi


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



commit libcares2 for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libcares2 for openSUSE:Factory 
checked in at 2012-02-08 15:35:36

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


Package is libcares2, Maintainer is rha...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libcares2/libcares2.changes  2011-11-16 
17:19:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.libcares2.new/libcares2.changes 2012-02-08 
15:35:37.0 +0100
@@ -1,0 +2,12 @@
+Fri Feb  3 20:27:55 UTC 2012 - crrodrig...@opensuse.org
+
+- Fix license
+- provide symbol versioning support
+- fix -debuginfo packages
+
+---
+Tue Nov 15 09:16:32 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+
+---

New:

  0001-add-symbol-versioning-support.patch



Other differences:
--
++ libcares2.spec ++
--- /var/tmp/diff_new_pack.XPdjp7/_old  2012-02-08 15:35:38.0 +0100
+++ /var/tmp/diff_new_pack.XPdjp7/_new  2012-02-08 15:35:38.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libcares2
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -22,17 +22,19 @@
 Name:   libcares2
 Version:1.7.5
 Release:1
-License:MIT License (or similar)
+License:MIT
 Summary:Library for asynchronous name resolves
 Group:  Development/Libraries/C and C++
 Source: 
http://daniel.haxx.se/projects/c-ares/%{pkg_name}-%{version}.tar.bz2
 Source2:baselibs.conf
 BuildRequires:  pkg-config
+BuildRequires:  libtool
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Patch1: 0001-ares_destroy.c-fix-segfault-in-ares_destroy_options.patch
 Patch2: 0002-ares_getnameinfo-fix-random-results-with-c-ares-1.7..patch
 Patch3: 0003-ares_init.c-fix-segfault-triggered-in-ares_init_opti.patch
 Patch4: cares-ocloexec.patch
+Patch5: 0001-add-symbol-versioning-support.patch 
 
 %description
 c-ares is a C library that performs DNS requests and name resolves
@@ -40,7 +42,6 @@
 by Greg Hudson at MIT.
 
 %package -n libcares-devel
-License:MIT License (or similar)
 Summary:Library for asynchronous name resolves
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -57,17 +58,14 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 
 %build
+autoreconf -fiv
 %configure --enable-symbol-hiding --enable-nonblocking --enable-shared 
--disable-static --with-pic
+sed -i -e 's@-g0@-g@g' Makefile
 make %{?_smp_mflags}
 
-#there is no test suite atm
-#check
-#export MALLOC_CHECK_=2 MALLOC_PERTURB_=$((${RANDOM:-256} % 256))
-#{__make} %{?jobs:-j%jobs} check
-#unset MALLOC_CHECK_ MALLOC_PERTURB_
-
 %install
 make install DESTDIR=%{buildroot}
 rm -f %{buildroot}%{_libdir}/*.la
@@ -76,9 +74,6 @@
 
 %postun -p /sbin/ldconfig
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr(-,root,root)
 %{_libdir}/libcares.so.2*

++ 0001-add-symbol-versioning-support.patch ++
From f2f268450d2aff0c7bcbb848b8a1c7b1e1d38291 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= crrodrig...@opensuse.org
Date: Fri, 3 Feb 2012 16:01:16 -0300
Subject: [PATCH] add symbol versioning support

---
 Makefile.am |   11 ---
 c-ares.map  |   72 +++
 configure.ac|9 +
 m4/ld-version-script.m4 |   53 ++
 4 files changed, 133 insertions(+), 12 deletions(-)
 create mode 100644 c-ares.map
 create mode 100644 m4/ld-version-script.m4

--- c-ares-1.7.5.orig/Makefile.am
+++ c-ares-1.7.5/Makefile.am
@@ -93,12 +93,13 @@ VER=-version-info 2:0:0
 # set age to 0. (c:r:a=0)
 #
 
-if NO_UNDEFINED
-# The -no-undefined flag is crucial for this to build fine on some platforms
-UNDEF = -no-undefined
-endif
+libcares_la_LDFLAGS = -no-undefined $(UNDEF) $(VER)
 
-libcares_la_LDFLAGS = $(UNDEF) $(VER)
+if HAVE_LD_VERSION_SCRIPT
+libcares_la_LDFLAGS += -Wl,--version-script=$(srcdir)/c-ares.map
+else
+libcares_la_LDFLAGS += -export-symbols-regex '^ares_.*'
+endif
 
 # Add -Werror if defined
 CFLAGS += @CARES_CFLAG_EXTRAS@
--- /dev/null
+++ c-ares-1.7.5/c-ares.map
@@ -0,0 +1,72 @@
+CARES_1.2.0 {
+global:
+ares_cancel;
+ares_destroy;
+ares_expand_name;
+ares_expand_string;
+ares_fds;
+

commit amarok for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package amarok for openSUSE:Factory checked 
in at 2012-02-08 15:36:47

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


Package is amarok, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/amarok/amarok.changes2012-01-30 
12:23:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.amarok.new/amarok.changes   2012-02-08 
15:36:48.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 1 07:14:00 UTC 2012 - tittiatc...@gmail.com
+
+- Enable proper script support again as that qt4-qtscript now 
+  compiles for Qt 4.8
+
+---



Other differences:
--
++ amarok.spec ++
--- /var/tmp/diff_new_pack.2v7q3S/_old  2012-02-08 15:36:52.0 +0100
+++ /var/tmp/diff_new_pack.2v7q3S/_new  2012-02-08 15:36:52.0 +0100
@@ -69,6 +69,7 @@
 BuildRequires:  taglib-devel
 BuildRequires:  taglib-extras-devel
 BuildRequires:  tcpd-devel
+BuildRequires:  qt4-qtscript
 %if 0%{?suse_version}
 BuildRequires:  update-desktop-files
 %endif
@@ -76,6 +77,7 @@
 Requires:   taglib = 1.6
 %kde4_runtime_requires
 Recommends: moodbar
+Recommends: qt4-qtscript
 Recommends: %{name}-lang = %{version}
 Provides:   kde4-amarok = 2.0.90
 Obsoletes:  kde4-amarok = 2.0.89

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



commit armadillo for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package armadillo for openSUSE:Factory 
checked in at 2012-02-08 15:36:54

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


Package is armadillo, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/armadillo/armadillo.changes  2011-12-14 
14:33:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.armadillo.new/armadillo.changes 2012-02-08 
15:36:55.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb  7 23:23:50 UTC 2012 - badshah...@gmail.com
+
+- Update to version 2.4.3 (no summary of changes documented
+  upstream)
+
+---

Old:

  armadillo-2.4.2.tar.gz

New:

  armadillo-2.4.3.tar.gz



Other differences:
--
++ armadillo.spec ++
--- /var/tmp/diff_new_pack.JFqukF/_old  2012-02-08 15:36:57.0 +0100
+++ /var/tmp/diff_new_pack.JFqukF/_new  2012-02-08 15:36:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package armadillo
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -18,7 +18,7 @@
 
 
 Name:   armadillo
-Version:2.4.2
+Version:2.4.3
 Release:1
 License:LGPL-3.0+
 Summary:Fast C++ matrix library with interfaces to LAPACK and ATLAS

++ armadillo-2.4.2.tar.gz - armadillo-2.4.3.tar.gz ++
 1727 lines of diff (skipped)

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



commit arpwatch-ethercodes for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package arpwatch-ethercodes for 
openSUSE:Factory checked in at 2012-02-08 15:37:00

Comparing /work/SRC/openSUSE:Factory/arpwatch-ethercodes (Old)
 and  /work/SRC/openSUSE:Factory/.arpwatch-ethercodes.new (New)


Package is arpwatch-ethercodes, Maintainer is dr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/arpwatch-ethercodes/arpwatch-ethercodes.changes  
2012-02-07 14:44:53.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.arpwatch-ethercodes.new/arpwatch-ethercodes.changes 
2012-02-08 15:37:02.0 +0100
@@ -2 +2 @@
-Tue Feb  7 07:40:05 CET 2012 - autobu...@suse.de
+Wed Feb  8 07:40:04 CET 2012 - autobu...@suse.de
@@ -4 +4 @@
-- automated update on 2012-02-07
+- automated update on 2012-02-08



Other differences:
--
++ arpwatch-ethercodes.spec ++
--- /var/tmp/diff_new_pack.cpW2p5/_old  2012-02-08 15:37:04.0 +0100
+++ /var/tmp/diff_new_pack.cpW2p5/_new  2012-02-08 15:37:04.0 +0100
@@ -23,7 +23,7 @@
 License:BSD-3-Clause
 Group:  Productivity/Networking/Diagnostic
 Summary:Ethercodes Data for arpwatch
-Version:2012.2.7
+Version:2012.2.8
 Release:1
 Source0:http://standards.ieee.org/regauth/oui/oui.txt
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ oui.txt ++
--- /var/tmp/diff_new_pack.cpW2p5/_old  2012-02-08 15:37:04.0 +0100
+++ /var/tmp/diff_new_pack.cpW2p5/_new  2012-02-08 15:37:04.0 +0100
@@ -39794,8 +39794,8 @@
TAIPEI  235
TAIWAN, REPUBLIC OF CHINA
 
-00-18-84   (hex)   FON
-001884 (base 16)   FON
+00-18-84   (hex)   Fon Technology S.L.
+001884 (base 16)   Fon Technology S.L.
Avda. Bruselas, n. 7, Planta 3, Alcobendas
Madrid 28100
SPAIN

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



commit Botan for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package Botan for openSUSE:Factory checked 
in at 2012-02-08 15:37:06

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


Package is Botan, Maintainer is p...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/Botan/Botan.changes  2011-09-23 
01:50:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.Botan.new/Botan.changes 2012-02-08 
15:37:08.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb  7 08:04:05 UTC 2012 - co...@suse.com
+
+- little spec cleanup
+
+---



Other differences:
--
++ Botan.spec ++
--- /var/tmp/diff_new_pack.yufnYC/_old  2012-02-08 15:37:09.0 +0100
+++ /var/tmp/diff_new_pack.yufnYC/_new  2012-02-08 15:37:09.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package Botan
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,13 +15,12 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 %define version_suffix 1_10-0
 %define short_version 1.10
 
 Name:   Botan
 Version:1.10.0
-Release:3
+Release:0
 Url:http://botan.randombit.net
 Summary:A C++ Crypto Library
 License:BSD-3-Clause
@@ -36,9 +35,16 @@
 Patch6: Botan-fix_pkgconfig.patch 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   zlib, bzip2 = 1.0.2, gmp = 4.1
-BuildRequires:  bzip2 = 1.0.2 gmp-devel = 4.1 zlib-devel
-BuildRequires:  gcc-c++ gmp-devel libbz2-devel openssl-devel python
-BuildRequires:  libqt4-devel pkg-config
+BuildRequires:  bzip2 = 1.0.2
+BuildRequires:  gcc-c++
+BuildRequires:  gmp-devel
+BuildRequires:  gmp-devel = 4.1
+BuildRequires:  libbz2-devel
+BuildRequires:  libqt4-devel
+BuildRequires:  openssl-devel
+BuildRequires:  pkg-config
+BuildRequires:  python
+BuildRequires:  zlib-devel
 
 %description
 Botan is a C++ library that provides support for many common
@@ -46,15 +52,7 @@
 X.509v3 certificates and CRLs. A wide variety of algorithms is
 supported, including RSA, DSA, DES, AES, MD5, and SHA-1.
 
-
-
-Authors:
-
-Jack Lloyd ll...@randombit.net
-
 %package  -nlibbotan-%{version_suffix}
-
-License:BSD-3-Clause
 Summary:A C++ Crypto Library
 Group:  Development/Libraries/C and C++
 
@@ -64,14 +62,7 @@
 X.509v3 certificates and CRLs. A wide variety of algorithms is
 supported, including RSA, DSA, DES, AES, MD5, and SHA-1.
 
-
-
-Authors:
-
-Jack Lloyd ll...@randombit.net
-
 %package-n libbotan-devel
-License:BSD-3-Clause
 Summary:Development files for Botan
 Group:  Development/Libraries/C and C++
 Requires:   gmp-devel libbz2-devel
@@ -85,12 +76,6 @@
 This package contains the header files and libraries needed to develop
 programs that use the Botan library.
 
-
-
-Authors:
-
-Name: Jack Lloyd ll...@randombit.net
-
 %prep
 %setup -q
 %patch0
@@ -103,7 +88,7 @@
 %build
 export RPM_OPT_FLAGS
 %define common_config_flags --libdir=%{_lib} --with-bzip2 --with-zlib 
--with-gnump --with-openssl
-./configure.py --prefix=/usr --libdir=%{_libdir} \
+./configure.py --prefix=%_prefix --libdir=%{_libdir} \
--docdir=%{_defaultdocdir} \
--includedir=%{_includedir} \
--with-bzip2 \

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



commit digikam for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package digikam for openSUSE:Factory checked 
in at 2012-02-08 15:37:30

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


Package is digikam, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/digikam/digikam.changes  2011-12-14 
14:33:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.digikam.new/digikam.changes 2012-02-08 
15:37:39.0 +0100
@@ -1,0 +2,20 @@
+Fri Feb  3 09:56:22 UTC 2012 - tittiatc...@gmail.com
+
+- Correct the license of the Documentation subpackage to the 
+  GFDL-1.X license. 
+- Correct spec-file to autodetect the translations for the 
+  additional libraries
+
+---
+Fri Jan 13 09:50:17 UTC 2012 - tittiatc...@gmail.com
+
+- The digikam spec-file now builds all additional components 
+  (kipi-plugins, libmediawiki, libkface and libkgeomap)
+
+---
+Wed Jan  4 08:56:34 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 2.5.0
+  * a bug-fix release, including a total of 101 fixed bugs.
+
+---

Old:

  digikam-2.4.1.tar.bz2
  digikam-external-libs.patch

New:

  desktop-files.diff
  digikam-2.5.0.tar.bz2
  digikam_no_build_vkontakte.diff
  fix-broken-icon-reference.diff
  non-executable-script.patch
  remove-gplv2-only.patch
  use_correct_libkipi.patch



Other differences:
--
++ digikam.spec ++
 651 lines (skipped)
 between /work/SRC/openSUSE:Factory/digikam/digikam.spec
 and /work/SRC/openSUSE:Factory/.digikam.new/digikam.spec

++ desktop-files.diff ++
--- acquireimages/scangui.desktop.sav
+++ acquireimages/scangui.desktop
@@ -54,7 +54,6 @@ GenericName[uk]=Отримання зо�
 GenericName[x-test]=xxAcquire Imagesxx
 GenericName[zh_CN]=图像捕获
 GenericName[zh_TW]=擷取影像
-Icon=scanner
 Name=AcquireImages
 Name[ast]=AcquireImages
 Name[bg]=Сканиране на снимки
++ digikam-2.4.1.tar.bz2 - digikam-2.5.0.tar.bz2 ++
/work/SRC/openSUSE:Factory/digikam/digikam-2.4.1.tar.bz2 
/work/SRC/openSUSE:Factory/.digikam.new/digikam-2.5.0.tar.bz2 differ: char 11, 
line 1

++ digikam_no_build_vkontakte.diff ++
--- CMakeLists.txt  2012-01-03 01:42:09.0 +0100
+++ CMakeLists.txt  2012-01-05 13:49:28.920827859 +0100
@@ -70,7 +70,6 @@
 ${CMAKE_SOURCE_DIR}/extra/libkgeomap/cmake/modules
 ${CMAKE_SOURCE_DIR}/extra/libmediawiki/cmake/modules
 ${CMAKE_SOURCE_DIR}/extra/libkface/cmake/modules
-${CMAKE_SOURCE_DIR}/extra/libkvkontakte/cmake/modules
 ${CMAKE_SOURCE_DIR}/cmake/modules
 ${CMAKE_MODULE_PATH}
 )
@@ -85,7 +84,6 @@
 SET(KFACE_LOCAL_DIR extra/libkface)
 SET(KGEOMAP_LOCAL_DIR extra/libkgeomap)
 SET(MEDIAWIKI_LOCAL_DIR extra/libmediawiki)
-SET(LIBKVKONTAKTE_LOCAL_DIR extra/libkvkontakte)
 
 ADD_SUBDIRECTORY(extra)
 ADD_SUBDIRECTORY(core)
--- extra/CMakeLists.txt2012-01-03 01:31:52.0 +0100
+++ extra/CMakeLists.txt2012-01-05 13:49:38.665828606 +0100
@@ -33,7 +33,6 @@
 ENDIF()
 
 MACRO_OPTIONAL_ADD_SUBDIRECTORY(libmediawiki)
-MACRO_OPTIONAL_ADD_SUBDIRECTORY(libkvkontakte)
 
 ADD_SUBDIRECTORY(libkgeomap)
 ADD_SUBDIRECTORY(libkface)
++ fix-broken-icon-reference.diff ++
--- ./extra/kipi-plugins/panorama/plugin/panoramagui.desktop.orig   
2011-10-04 09:34:29.576552045 +0200
+++ ./extra/kipi-plugins/panorama/plugin/panoramagui.desktop2011-10-04 
09:35:16.838301132 +0200
@@ -57,7 +57,6 @@
 Name[x-test]=xxPanoramaxx
 Name[zh_TW]=Panorama
 StartupNotify=true
-Icon=layer-visible-on
 Terminal=false
 Type=Application
 X-DBUS-ServiceName=
++ non-executable-script.patch ++
--- extra/kipi-plugins/expoblending/plugin/expoblending.desktop.orig
2011-07-28 02:27:35.0 +0300
+++ extra/kipi-plugins/expoblending/plugin/expoblending.desktop 2011-08-08 
18:45:45.33070 +0300
@@ -1,4 +1,3 @@
-#!/usr/bin/env xdg-open
 [Desktop Entry]
 Categories=Qt;KDE;Graphics;
 Comment=A tool to blend bracketed images
--- extra/kipi-plugins/panorama/plugin/panoramagui.desktop.orig 2011-11-07 
09:50:25.0 +0200
+++ extra/kipi-plugins/panorama/plugin/panoramagui.desktop  2011-11-12 
22:14:39.80913 +0200
@@ -1,4 +1,3 @@
-#!/usr/bin/env xdg-open
 [Desktop Entry]
 Categories=Qt;KDE;Graphics;
 Comment=A tool to assemble images as a panorama
++ remove-gplv2-only.patch ++
Index: extra/kipi-plugins/gpssync/CMakeLists.txt
===
--- extra/kipi-plugins/gpssync/CMakeLists.txt.orig
+++ extra/kipi-plugins/gpssync/CMakeLists.txt
@@ -33,10 +33,8 @@ 

commit fortune for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package fortune for openSUSE:Factory checked 
in at 2012-02-08 15:37:43

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


Package is fortune, Maintainer is pu...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/fortune/fortune.changes  2011-10-04 
18:09:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.fortune.new/fortune.changes 2012-02-08 
15:37:44.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb  7 11:27:27 UTC 2012 - co...@suse.com
+
+- let's treat debian as upstream, they actually cared for the
+  actual fortunes - our last change is 10 years old
+
+---

Old:

  fortune-1.0-filepermissions.patch
  fortune-decl.patch
  fortune-fix-missing-closedir.patch
  fortune-fixfree.patch
  fortune-ia64.patch
  fortune.dif
  fortune.tar.bz2

New:

  fortune-mod_1.99.1-4.diff.gz
  fortune-mod_1.99.1.orig.tar.gz
  move-debian-suse.diff



Other differences:
--
++ fortune.spec ++
--- /var/tmp/diff_new_pack.wkgMj3/_old  2012-02-08 15:37:45.0 +0100
+++ /var/tmp/diff_new_pack.wkgMj3/_new  2012-02-08 15:37:45.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fortune
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,23 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Url:ftp://sunsite.unc.edu/pub/Linux/games/amusements/fortune/
 
 Name:   fortune
+Version:1.99.1
+Release:0
+Summary:Random Saying
 License:BSD-3-Clause
 Group:  Amusements/Toys/Other
-Version:1.0
-Release:996
-Summary:Random Saying
-Source: ftp://ftp.jurix.org/pub/jurix/source/games/fortune.tar.bz2
-Patch:  fortune.dif
-Patch1: fortune-ia64.patch
-Patch2: %{name}-%{version}-filepermissions.patch
-Patch3: fortune-decl.patch
-Patch4: fortune-fix-missing-closedir.patch
-Patch5: fortune-fixfree.patch
+# let's treat debian as upstream, they take a lot of care
+Source: 
http://ftp.de.debian.org/debian/pool/main/f/fortune-mod/fortune-mod_%{version}.orig.tar.gz
+Patch0: 
http://ftp.de.debian.org/debian/pool/main/f/fortune-mod/fortune-mod_1.99.1-4.diff.gz
+# suse specifics
+Patch1: move-debian-suse.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  recode-devel
 
 %description
 Fortune displays a random text string from a set of files in a certain
@@ -41,30 +39,22 @@
 uncomment the respective lines in the user's .profile.
 
 %prep
-%setup -n fortune
-%patch
-%patch1
-%patch2
-%patch3
-%patch4 -p1
-%patch5 -p1
+%setup  -n %name-mod-%version
+%patch0 -p1
+%patch1 -p1
 
 %build
 make all %{?_smp_mflags} CC=%__cc
 
 %install
-mkdir -p $RPM_BUILD_ROOT/usr/bin $RPM_BUILD_ROOT/usr/sbin
-mkdir -p $RPM_BUILD_ROOT%{_mandir}/man8
 make prefix=$RPM_BUILD_ROOT install
 
 %files
 %defattr(-,root,root)
 %doc README Notes
-%doc %{_mandir}/man6/fortune.6.gz
-%doc %{_mandir}/man8/strfile.8.gz
-/usr/bin/fortune
-/usr/sbin/strfile
-/usr/sbin/unstr
+%{_mandir}/man1/*
+%{_mandir}/man6/*
+%{_bindir}/*
 /usr/share/fortune
 
 %changelog

++ fortune-mod_1.99.1-4.diff.gz ++
 23180 lines (skipped)

++ move-debian-suse.diff ++
Index: fortune-mod-1.99.1/Makefile
===
--- fortune-mod-1.99.1.orig/Makefile2004-03-05 14:29:56.0 +0100
+++ fortune-mod-1.99.1/Makefile 2012-02-07 12:13:40.581513907 +0100
@@ -3,15 +3,15 @@
 #
 
 # Where does the fortune program go?
-FORTDIR=$(prefix)/usr/games
+FORTDIR=$(prefix)/usr/bin
 # Where do the data files (fortunes, or cookies) go?
-COOKIEDIR=$(prefix)/usr/share/games/fortunes
+COOKIEDIR=$(prefix)/usr/share/fortune
 # Offensive ones?
 OCOOKIEDIR=$(COOKIEDIR)/off
 # The ones with html tags?
 WCOOKIEDIR=$(COOKIEDIR)/html
 # Where do local data files go?
-LOCALDIR=$(prefix)/usr/local/share/games/fortunes
+LOCALDIR=$(prefix)/usr/local/share/fortune
 # Offensive ones?
 LOCALODIR=$(LOCALDIR)/off
 # With HTML tags?
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ggz-client-libs for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package ggz-client-libs for openSUSE:Factory 
checked in at 2012-02-08 15:37:58

Comparing /work/SRC/openSUSE:Factory/ggz-client-libs (Old)
 and  /work/SRC/openSUSE:Factory/.ggz-client-libs.new (New)


Package is ggz-client-libs, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/ggz-client-libs/ggz-client-libs.changes  
2011-09-23 01:59:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.ggz-client-libs.new/ggz-client-libs.changes 
2012-02-08 15:38:00.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb  7 14:13:01 CET 2012 - meiss...@suse.de
+
+- remove desktop-data-SUSE to have it build earlier
+
+---



Other differences:
--
++ ggz-client-libs.spec ++
--- /var/tmp/diff_new_pack.DxXpr4/_old  2012-02-08 15:38:01.0 +0100
+++ /var/tmp/diff_new_pack.DxXpr4/_new  2012-02-08 15:38:01.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ggz-client-libs
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,17 +16,16 @@
 #
 
 
-BuildRequires:  desktop-data-SuSE
 BuildRequires:  libexpat-devel
 BuildRequires:  libggz2-devel
 
 Name:   ggz-client-libs
 Version:0.0.14.1
-Release:71
-License:GPL-2.0+ ; LGPL-2.1+
+Release:0
 Summary:Common files needed to use GGZ
-Url:http://www.ggzgamingzone.org/
+License:GPL-2.0+ ; LGPL-2.1+
 Group:  Amusements/Games/Other
+Url:http://www.ggzgamingzone.org/
 Source0:%{name}-%{version}.tar.bz2
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -38,7 +37,6 @@
 coding and promote compatibility and stability.
 
 %package devel
-License:GPL-2.0+ ; LGPL-2.1+
 Summary:Development files for %{name}
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -72,8 +70,11 @@
 %files
 %defattr(-, root, root)
 %doc AUTHORS NEWS README
+%dir %{_sysconfdir}/xdg/menus
+%dir %{_sysconfdir}/xdg/menus/applications-merged
 %config %{_sysconfdir}/xdg/menus/*.menu
 %config %{_sysconfdir}/xdg/menus/applications-merged/*.menu
+%dir %{_datadir}/desktop-directories
 %{_datadir}/desktop-directories/*.directory
 %{_bindir}/ggz
 %{_libdir}/*.so.*

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



commit kdesdk4 for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package kdesdk4 for openSUSE:Factory checked 
in at 2012-02-08 15:38:24

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


Package is kdesdk4, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk4/kdesdk4.changes  2011-12-08 
12:10:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdesdk4.new/kdesdk4.changes 2012-02-08 
15:38:25.0 +0100
@@ -1,0 +2,21 @@
+Fri Jan 27 21:06:08 CET 2012 - tchva...@suse.cz
+
+- Add patch for lokalize fixing upstream bug #292575
+
+---
+Wed Jan 18 21:05:04 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.0
+  * first stable release of KDE 4.8 (only critical fixes over 4.7.98)
+  * see http://kde.org/announcements/4.8/ for details
+  
+
+---
+Tue Jan 10 18:45:13 CET 2012 - dmuel...@suse.de
+
+- update to 4.7.98
+  * RC2+ milestone release of KDE 4.8
+  *  see http://kde.org/announcements/4.8/ for details
+  
+
+---

Old:

  kdesdk-4.7.4.tar.bz2

New:

  kdesdk-4.8.0.tar.bz2
  lokalize-catalogmodel.patch



Other differences:
--
++ kdesdk4.spec ++
--- /var/tmp/diff_new_pack.mNjwPe/_old  2012-02-08 15:38:26.0 +0100
+++ /var/tmp/diff_new_pack.mNjwPe/_new  2012-02-08 15:38:26.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdesdk4
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kdesdk4
-Version:4.7.4
+Version:4.8.0
 Release:0
 Summary:KDE SDK Package
 License:GPL-2.0+
@@ -25,6 +26,7 @@
 Source0:kdesdk-%{version}.tar.bz2
 Source100:  kdesdk4-rpmlintrc
 Patch0: desktop-files.diff
+Patch1: lokalize-catalogmodel.patch
 BuildRequires:  antlr
 BuildRequires:  antlr-devel
 # for libiberty (used by kmtrace for cp_demangle)
@@ -53,6 +55,7 @@
 %prep
 %setup -q -n kdesdk-%{version}
 %patch0
+%patch1 -p4
 
 %build
 %ifarch ppc64
@@ -162,12 +165,17 @@
 
 %files -n dolphin-plugins
 %defattr(-,root,root)
-%_kde4_servicesdir/fileviewgitplugin.desktop
 %_kde4_configdir.kcfg/fileviewgitpluginsettings.kcfg
-%_kde4_modulesdir/fileviewgitplugin.so
-%_kde4_servicesdir/fileviewsvnplugin.desktop
+%_kde4_configdir.kcfg/fileviewhgpluginsettings.kcfg
 %_kde4_configdir.kcfg/fileviewsvnpluginsettings.kcfg
+%_kde4_modulesdir/fileviewbazaarplugin.so
+%_kde4_modulesdir/fileviewgitplugin.so
+%_kde4_modulesdir/fileviewhgplugin.so
 %_kde4_modulesdir/fileviewsvnplugin.so
+%_kde4_servicesdir/fileviewbazaarplugin.desktop
+%_kde4_servicesdir/fileviewgitplugin.desktop
+%_kde4_servicesdir/fileviewhgplugin.desktop
+%_kde4_servicesdir/fileviewsvnplugin.desktop
 
 %package -n okteta
 Summary:Hex Editor
@@ -206,10 +214,11 @@
 
 %files -n okteta-devel -f filelists/okteta.devel
 %defattr(-,root,root)
-%{_includedir}/KDE/Kasten
-%{_includedir}/KDE/Okteta
-%{_includedir}/kasten
-%{_includedir}/okteta
+%dir %{_kde4_includedir}/KDE/Kasten1
+%dir %{_kde4_includedir}/KDE/Okteta1
+%dir %{_kde4_includedir}/kasten1
+%dir %{_kde4_includedir}/kasten1/okteta1
+%dir %{_kde4_includedir}/okteta1
 
 %package -n cervisia
 Summary:CVS Frontend
@@ -424,6 +433,7 @@
 %_kde4_libdir/strigi/strigila_diff.so
 %_kde4_libdir/strigi/strigila_po.so
 %_kde4_libdir/strigi/strigita_ts.so
+%_kde4_libdir/strigi/strigita_xlf.so
 %{_datadir}/strigi/fieldproperties/strigi_translation.fieldproperties
 
 %package -n kprofilemethod

++ kdesdk-4.7.4.tar.bz2 - kdesdk-4.8.0.tar.bz2 ++
 116641 lines of diff (skipped)

++ lokalize-catalogmodel.patch ++
--- branches/KDE/4.8/kdesdk/lokalize/src/cataloglistview/catalogmodel.cpp   
2012/01/27 18:58:33 1276139
+++ branches/KDE/4.8/kdesdk/lokalize/src/cataloglistview/catalogmodel.cpp   
2012/01/27 19:21:11 1276140
@@ -30,6 +30,7 @@
 #include klocale.h
 
 #include QApplication
+#include QFontMetrics
 
 #define DYNAMICFILTER_LIMIT 256
 
@@ -112,7 +113,12 @@
 if (m_catalog-numberOfEntries()=index.row() )
 return QVariant();
 
-if (role==Qt::FontRole/*  index.column()==Target*/)
+if (role==Qt::SizeHintRole)
+{
+//no need to cache because of uniform row heights
+return 

commit kmod for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package kmod for openSUSE:Factory checked in 
at 2012-02-08 15:38:38

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


Package is kmod, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/kmod/kmod.changes2012-01-09 
12:04:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.kmod.new/kmod.changes   2012-02-08 
15:38:43.0 +0100
@@ -1,0 +2,15 @@
+Tue Feb  7 00:56:51 UTC 2012 - jeng...@medozas.de
+
+- Update to new upstream release 5
+* modprobe no longer works with paths: it only accepts module names
+  and/or aliases now. More code is now shared by libkmod and
+  modprobe.
+
+---
+Fri Jan 20 18:13:50 UTC 2012 - jeng...@medozas.de
+
+- Update to new upstream release 4
+* new APIs in libkmod: blacklists, install/remove commands,
+  aliases, options, softdeps and dumping indexes
+
+---

Old:

  kmod-3.tar.xz

New:

  kmod-5.tar.sign
  kmod-5.tar.xz
  kmod-so-version.diff



Other differences:
--
++ kmod.spec ++
--- /var/tmp/diff_new_pack.xgtIYe/_old  2012-02-08 15:38:49.0 +0100
+++ /var/tmp/diff_new_pack.xgtIYe/_new  2012-02-08 15:38:49.0 +0100
@@ -16,25 +16,28 @@
 #
 
 
-
 Name:   kmod
-%define lname  libkmod1
+%define lname  libkmod2
 Summary:Utilities to load modules into the kernel
-Version:3
-Release:0
-%define git_snapshot 0
 License:LGPL-2.1+ and GPL-2.0+
 Group:  System/Kernel
+Version:5
+Release:0
 Url:http://www.politreco.com/2011/12/announce-kmod-2/
 
 #Git-Clone:git://git.profusion.mobi/kmod
 Source: %name-%version.tar.xz
+Source2:%name-%version.tar.sign
+Patch1: kmod-so-version.diff
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?git_snapshot}
-BuildRequires:  autoconf automake libtool
-%endif
-BuildRequires:  pkgconfig = 0.23 pkgconfig(liblzma) pkgconfig(zlib) xz
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libtool
+BuildRequires:  pkgconfig = 0.23
+BuildRequires:  xz
+BuildRequires:  pkgconfig(liblzma) = 4.99
+BuildRequires:  pkgconfig(zlib)
 
 %description
 kmod is a set of tools to handle common tasks with Linux kernel
@@ -69,23 +72,23 @@
 
 %package -n libkmod-devel
 Summary:Development files for libkmod
-Group:  Development/Libraries/C and C++
 License:LGPL-2.1+
+Group:  Development/Libraries/C and C++
 Requires:   %lname = %version
 
 %description -n libkmod-devel
 libkmod was created to allow programs to easily insert, remove and
 list modules, also checking its properties, dependencies and aliases.
 
+This package contains the development headers for the library found
+in %lname.
+
 %prep
 %setup -q
+%patch -P 1 -p1
 
 %build
-%if 0%{?git_snapshot}
-if [ ! -e configure ]; then
-   autoreconf -fi;
-fi;
-%endif
+autoreconf -fi;
 # The extra --includedir gives us the possibility to detect dependent
 # packages which fail to properly use pkgconfig.
 %configure --with-xz --with-zlib --includedir=%_includedir/%name-%version \
@@ -116,20 +119,35 @@
 %files
 %defattr(-,root,root)
 /bin/kmod
+%_mandir/man5/modules.dep.bin.5*
 
 %files -n %lname
 %defattr(-,root,root)
-/%_lib/libkmod.so.1*
+/%_lib/libkmod.so.2*
 
 %files -n libkmod-devel
 %defattr(-,root,root)
 %_includedir/*
-%_libdir/pkgconfig/*.pc
+%_libdir/pkgconfig/libkmod.pc
 %_libdir/libkmod.so
 
 %files compat
 %defattr(-,root,root)
 /bin/lsmod
-/sbin/*
+/sbin/depmod
+/sbin/insmod
+/sbin/lsmod
+/sbin/modinfo
+/sbin/modprobe
+/sbin/rmmod
+%_mandir/man5/depmod.d.5*
+%_mandir/man5/modprobe.d.5*
+%_mandir/man5/modules.dep.5*
+%_mandir/man8/depmod.8*
+%_mandir/man8/insmod.8*
+%_mandir/man8/lsmod.8*
+%_mandir/man8/modinfo.8*
+%_mandir/man8/modprobe.8*
+%_mandir/man8/rmmod.8*
 
 %changelog

++ kmod-so-version.diff ++

Change the kmod Makefile from using -version-info to -version-number
to make it clear that the kmod project is not trying to subvert the
libtool interface number concept, but in fact does not do
libtool-style counting.

References: alpine.lnx.2.01.1202070049200.12...@frira.zrqbmnf.qr
References: http://lists.gnu.org/archive/html/libtool/2012-02/msg00011.html

---
 Makefile.am |9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

Index: kmod-5/Makefile.am
===
--- kmod-5.orig/Makefile.am
+++ kmod-5/Makefile.am
@@ -39,9 +39,8 @@ SED_PROCESS = \
 %.pc: %.pc.in Makefile
$(SED_PROCESS)
 
-LIBKMOD_CURRENT=2
-LIBKMOD_REVISION=0
-LIBKMOD_AGE=0

commit libQtGTL for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libQtGTL for openSUSE:Factory 
checked in at 2012-02-08 15:38:56

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


Package is libQtGTL, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libQtGTL.new/libQtGTL.changes   2012-02-08 
15:38:57.0 +0100
@@ -0,0 +1,23 @@
+---
+Mon Jan 30 21:31:53 UTC 2012 - asterios.dra...@gmail.com
+
+- Update to 0.9.2:
+  * Bugfixes.
+  * Add a OpenRijn backend.
+  From 0.9.1
+  * 26 tasks were completed. 
+  * Fix numerous bugs and memory leak.
+  * Cleaning.
+- Spec file updates:
+  * Renamed package from libqtgtl to libQtGTL.
+  * Renamed library subpackages according to openSUSE shared library packaging
+policy.
+  * Changes based on spec-cleaner run.
+  * Changed License: from GPL to LGPL-2.0+.
+  * Removed %changelog entries (fix for rpmlint warning).
+
+---
+Wed Mar 25 16:51:03 CET 2009 - buschman...@opensuse.org - 0.9.0
+
+- initial package
+- version 0.9.0 

New:

  libQtGTL-0.9.2.tar.bz2
  libQtGTL.changes
  libQtGTL.spec



Other differences:
--
++ libQtGTL.spec ++
#
# spec file for package libQtGTL
#
# Copyright 2009 Buschmann buschman...@opensuse.org
# Copyright (c) 2012 Asterios Dramis asterios.dra...@gmail.com.
# 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, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
#

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

%define libver 0_1
%define soversion 0.1

Name:   libQtGTL
Version:0.9.2
Release:0
License:LGPL-2.0+
Summary:Qt4 Wrapper Classes and Widgets for OpenGTL
Url:http://www.opengtl.org/
Group:  System/Libraries
Source0:http://download.opengtl.org/%{name}-%{version}.tar.bz2
BuildRequires:  cmake
BuildRequires:  libqt4-devel
BuildRequires:  OpenGTL-devel
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
This library provides widgets and classes to interface a Qt-based applications
with OpenGTL.

%package devel
Summary:Header Files for LibQtGTL
Group:  Development/Libraries/C and C++
Requires:   libQtGTL%{libver} = %{version}
Requires:   libQtShiva%{libver} = %{version}

%description devel
This package provides header files and libraries for the libQtGTL.

%package -n libQtGTL%{libver}
Summary:Qt4 Wrapper Classes and Widgets for OpenGTL
Group:  System/Libraries

%description -n libQtGTL%{libver}
This library provides widgets and classes to interface a Qt-based applications
with OpenGTL.

%package -n libQtShiva%{libver}
Summary:Qt4 Wrapper Classes and Widgets for OpenGTL
Group:  System/Libraries

%description -n libQtShiva%{libver}
This library provides widgets and classes to interface a Qt-based applications
with OpenGTL.

%prep
%setup -q

%build
mkdir build
cd build
export CFLAGS=%{optflags}
export CXXFLAGS=%{optflags}
__libsuffix=$(echo %{_lib} | cut -b4-)
cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
  -DLIB_SUFFIX=$__libsuffix \
  -DCMAKE_BUILD_TYPE=release \
  ..
make %{?_smp_mflags} VERBOSE=1
cd ..

%install
cd build
%make_install
cd ..

%post -n libQtGTL%{libver} -p /sbin/ldconfig

%postun -n libQtGTL%{libver} -p /sbin/ldconfig

%post -n libQtShiva%{libver} -p /sbin/ldconfig

%postun -n libQtShiva%{libver} -p /sbin/ldconfig

%files devel
%defattr(-,root,root,-)
%doc COPYING
%{_includedir}/QtGTL/
%{_includedir}/QtShiva/
%{_libdir}/libQtGTL.so
%{_libdir}/libQtShiva.so
%{_libdir}/pkgconfig/*.pc

%files -n libQtGTL%{libver}
%defattr(-,root,root,-)
%{_libdir}/libQtGTL.so.%{soversion}
%{_libdir}/libQtGTL.so.%{version}

%files -n libQtShiva%{libver}
%defattr(-,root,root,-)
%{_libdir}/libQtShiva.so.%{soversion}
%{_libdir}/libQtShiva.so.%{version}

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



commit librtas for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package librtas for openSUSE:Factory checked 
in at 2012-02-08 15:39:03

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


Package is librtas, Maintainer is jloe...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/librtas/librtas.changes  2011-11-14 
14:52:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.librtas.new/librtas.changes 2012-02-08 
15:39:04.0 +0100
@@ -1,0 +2,6 @@
+Tue Jan 31 10:48:35 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections per specfile guideline suggestions
+- Parallel building using %_smp_mflags
+
+---



Other differences:
--
++ librtas.spec ++
--- /var/tmp/diff_new_pack.d3aery/_old  2012-02-08 15:39:05.0 +0100
+++ /var/tmp/diff_new_pack.d3aery/_new  2012-02-08 15:39:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package librtas
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,17 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   librtas
 BuildRequires:  doxygen
 Version:1.3.6
-Release:1
-Group:  System/Libraries
-License:IPL-1.0
+Release:0
 BuildRequires:  fdupes
 Summary:Libraries to provide access to RTAS calls and RTAS events
+License:IPL-1.0
+Group:  System/Libraries
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  ppc ppc64
 Url:http://librtas.ozlabs.org/
@@ -51,7 +49,6 @@
 Michael Strosaker stros...@austin.ibm.com
 
 %package devel
-License:IPL-1.0
 Summary:Devel librtas files
 Group:  Development/Libraries/C and C++
 Requires:   librtas1 = 1.3.6
@@ -66,9 +63,8 @@
 Michael Strosaker stros...@austin.ibm.com
 
 %package doc
-License:IPL-1.0
-Group:  Documentation/Other
 Summary:Documentation for librtas
+Group:  Documentation/Other
 
 %description doc
 This package provides librtas documentation
@@ -81,9 +77,8 @@
 
 
 %package -n librtas1
-License:IPL-1.0
-Group:  System/Libraries
 Summary:Libraries to provide access to RTAS calls and RTAS events
+Group:  System/Libraries
 
 %description -n librtas1
 The librtas shared library provides userspace with an interface through
@@ -101,7 +96,7 @@
 sed s,rtasevent,ofdt,g doxygen.rtasevent doxygen.ofdt
 
 %build
-make CFLAGS=$RPM_OPT_FLAGS -fPIC -g -I $PWD/librtasevent_src 
LIB_DIR=%{_libdir} %{?jobs:-j%jobs}
+make CFLAGS=$RPM_OPT_FLAGS -fPIC -g -I $PWD/librtasevent_src 
LIB_DIR=%{_libdir} %{?_smp_mflags}
 make doc
 
 %install
@@ -111,11 +106,9 @@
 %fdupes $RPM_BUILD_ROOT/%_docdir
 /sbin/ldconfig -n $RPM_BUILD_ROOT%{_libdir}
 
-%post -n librtas1
-%{run_ldconfig}
+%post -n librtas1 -p /sbin/ldconfig
 
-%postun -n librtas1
-%{run_ldconfig}
+%postun -n librtas1 -p /sbin/ldconfig
 
 %files -n librtas1
 %defattr(-, root, root)

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



commit libspe2 for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libspe2 for openSUSE:Factory checked 
in at 2012-02-08 15:39:24

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


Package is libspe2, Maintainer is sassm...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/libspe2/libspe2.changes  2011-09-23 
02:10:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.libspe2.new/libspe2.changes 2012-02-08 
15:39:26.0 +0100
@@ -1,0 +2,5 @@
+Tue Jan 31 10:38:40 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections per specfile guideline suggestions
+
+---



Other differences:
--
++ libspe2.spec ++
--- /var/tmp/diff_new_pack.pBqsYc/_old  2012-02-08 15:39:27.0 +0100
+++ /var/tmp/diff_new_pack.pBqsYc/_new  2012-02-08 15:39:27.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libspe2 (Version 2.3.0)
+# spec file for package libspe2
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,16 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   libspe2
-License:GPL-2.0+ ; LGPL-2.1+
-Group:  Development/Libraries/Cross
-AutoReqProv:on
 Version:2.3.0
-Release:6
+Release:0
 Summary:Helper for standalone SPE applications
+License:GPL-2.0+ ; LGPL-2.1+
+Group:  Development/Libraries/Cross
 Url:http://www.bsc.es/plantillaH.php?cat_id=253
 PreReq: %insserv_prereq grep coreutils aaa_base
 Provides:   libspe
@@ -62,7 +59,6 @@
 make EXTRA_CFLAGS=$RPM_OPT_FLAGS prefix=%{_prefix} libdir=%{_libdir}
 
 %install
-#rm -rf $RPM_BUILD_ROOT
 make install elfspe-install DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} 
libdir=%{_libdir} 
 mkdir -p $RPM_BUILD_ROOT/etc/init.d/
 cp %{S:1} $RPM_BUILD_ROOT/etc/init.d/elfspe
@@ -96,9 +92,9 @@
 %attr(755,root,root) /etc/init.d/elfspe
 
 %package -n libspe2-devel
-License:LGPL-2.1+
 Requires:   %{name} = %{version}
 Summary:Helper for standalone SPE applications
+License:LGPL-2.1+
 Group:  Development/Libraries/Cross
 
 %description -n libspe2-devel

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



commit libspiro for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libspiro for openSUSE:Factory 
checked in at 2012-02-08 15:40:03

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


Package is libspiro, Maintainer is gnome-maintain...@suse.de

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libspiro.new/libspiro.changes   2012-02-08 
15:40:19.0 +0100
@@ -0,0 +1,40 @@
+---
+Mon Feb  6 13:46:11 UTC 2012 - cfarr...@suse.com
+
+- license update: GPL-2.0+
+  See gpl.txt and e.g. spiro.c - there is no indication that this is
+  BSD-3-Clause licensed and every indication that it is GPL-2.0+ licensed
+
+---
+Sat Feb  4 14:06:20 UTC 2012 - jeng...@medozas.de
+
+- Restore ldconfig call for shlib package
+
+---
+Sat Feb  4 08:27:28 UTC 2012 - i...@marguerite.su
+
+- rename spec file and changelog to meet Factory requirements.
+
+---
+Sat Feb  4 01:24:47 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections
+- pkgconfig file: libm should not be in the shared link
+- Remove pointless Obsoletes, the supposedly old name has never
+  been in use before
+
+---
+Sat Feb  4 01:23:40 UTC 2012 - jeng...@medozas.de
+
+- make license SPDX compatible.
+
+---
+Sun Dec 25 19:03:37 UTC 2011 - i...@marguerite.su
+
+- enable debuginfo package 
+
+---
+Sat Nov 26 15:51:32 UTC 2011 - i...@marguerite.su
+
+- formated specfile to merge into home:opensuse_zh 
+

New:

  libspiro.changes
  libspiro.spec
  libspiro_src-20071029.tar.bz2



Other differences:
--
++ libspiro.spec ++
#
# spec file for package libspiro0
#
# Copyright (c) 2011 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, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%define tarversion 20071029

Name:   libspiro
Version:0.0.1
Release:1.1
Summary:A clothoid to bezier spline converter
License:GPL-2.0+
Group:  System/Libraries
Source0:%{name}_src-%{tarversion}.tar.bz2
Url:http://libspiro.sourceforge.net
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  gcc-c++
BuildRequires:  pkg-config

%description
libspiro contains routines which will convert an array of clothoid
spline control points into an equivalent set of bezier control points.

Authors
---
  Raph Levien raph.lev...@gmail.com
  George Williams g...@silcom.com

%package -n %{name}0
Summary:A clothoid to bezier spline converter
Group:  System/Libraries

%description -n %{name}0
libspiro contains routines which will convert an array of clothoid
spline control points into an equivalent set of bezier control points.

%package devel
Summary:Development Files for %{name}
Group:  Development/Libraries/C and C++
Requires:   %{name}0 = %{version} glibc-devel

%description devel
This package contains all necessary include files and libraries needed
to compile and develop applications that use %{name}.

Authors
---
  Raph Levien raph.lev...@gmail.com
  George Williams g...@silcom.com


%prep
%setup -q -n %{name}-%{tarversion}

%build
# autoreconf -fi
%configure --with-pic\
   --disable-static
make %{?smp_mflags}

cat  %{name}.pc  EOF
prefix=%{_prefix}
exec_prefix=%{_exec_prefix}
libdir=%{_libdir}
includedir=%{_includedir}

Name: %{name}
Description: %{summary}
Requires:
Version: %{name}
Libs: -L\${libdir} -lspiro
Libs.private: -lm
Cflags: -I\${includedir}
EOF

%install
%makeinstall
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
mkdir -p $RPM_BUILD_ROOT%{_libdir}/pkgconfig/
mv *.pc $RPM_BUILD_ROOT%{_libdir}/pkgconfig/

%post -n %{name}0 -p /sbin/ldconfig

%postun -n %{name}0 -p /sbin/ldconfig

%files -n %{name}0

commit lv for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package lv for openSUSE:Factory checked in 
at 2012-02-08 15:40:29

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


Package is lv, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/lv/lv.changes2011-12-08 11:29:46.0 
+0100
+++ /work/SRC/openSUSE:Factory/.lv.new/lv.changes   2012-02-08 
15:40:38.0 +0100
@@ -1,0 +2,5 @@
+Thu Jan 26 11:59:32 UTC 2012 - pgaj...@suse.com
+
+- remove suse_update_config macro
+
+---



Other differences:
--
++ lv.spec ++
--- /var/tmp/diff_new_pack.SrLTtb/_old  2012-02-08 15:40:40.0 +0100
+++ /var/tmp/diff_new_pack.SrLTtb/_new  2012-02-08 15:40:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lv
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -18,8 +18,6 @@
 Name:   lv
 BuildRequires:  automake
 BuildRequires:  ncurses-devel
-License:GPL-2.0+
-Group:  Productivity/Text/Utilities
 Provides:   locale(ja;ko;zh)
 Version:4.51
 Release:0
@@ -32,6 +30,8 @@
 Patch5: lv-splitted-libtinfo.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Powerful, Multilingual File Viewer, Same User Interface as 
Less
+License:GPL-2.0+
+Group:  Productivity/Text/Utilities
 
 %description
 Lv is a powerful, multilingual file viewer. Apparently, lv looks like
@@ -67,8 +67,6 @@
 pushd src
   autoreconf -fi
 popd
-# update config.{guess,sub}
-%{?suse_update_config:%{suse_update_config -f src }}
 pushd build
 CFLAGS=$RPM_OPT_FLAGS -D_FILE_OFFSET_BITS=64 -fno-strict-aliasing \
 CXXFLAGS=$RPM_OPT_FLAGS  -D_FILE_OFFSET_BITS=64 -fno-strict-aliasing \

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



commit perl-App-perlbrew for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package perl-App-perlbrew for 
openSUSE:Factory checked in at 2012-02-08 15:40:47

Comparing /work/SRC/openSUSE:Factory/perl-App-perlbrew (Old)
 and  /work/SRC/openSUSE:Factory/.perl-App-perlbrew.new (New)


Package is perl-App-perlbrew, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-App-perlbrew/perl-App-perlbrew.changes  
2012-01-09 11:16:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-App-perlbrew.new/perl-App-perlbrew.changes 
2012-02-08 15:40:54.0 +0100
@@ -1,0 +2,15 @@
+Mon Jan 02 07:18:12 UTC 2012 - pascal.ble...@opensuse.org
+
+- update to 0.39:
+  * Fix GH #179. lib naming are more consistent
+  * Fix GH #171. bash users are suggestted to upgrad to this version
+  * Fix GH #152
+
+- changes from 0.38:
+  * fix deps
+
+- changes from 0.37:
+  * fix ENV mess after switching to diffirent libs multiple times
+  * add --sitecustomize option
+
+---

Old:

  App-perlbrew-0.35.tar.gz

New:

  App-perlbrew-0.39.tar.gz



Other differences:
--
++ perl-App-perlbrew.spec ++
--- /var/tmp/diff_new_pack.QASFUg/_old  2012-02-08 15:40:55.0 +0100
+++ /var/tmp/diff_new_pack.QASFUg/_new  2012-02-08 15:40:55.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-App-perlbrew
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -21,7 +21,7 @@
 %endif
 
 Name:   perl-App-perlbrew
-Version:0.35
+Version:0.39
 Release:1
 License:MIT
 %define cpan_name App-perlbrew
@@ -33,13 +33,15 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Devel::PatchPerl) = 0.26
+BuildRequires:  perl(Devel::PatchPerl) = 0.46
 BuildRequires:  perl(Path::Class)
 BuildRequires:  perl(IO::All)
 BuildRequires:  perl(Try::Tiny)
 BuildRequires:  perl(File::Path::Tiny)
 BuildRequires:  perl(local::lib) = 1.008
+BuildRequires:  perl(Capture::Tiny) = 0.13
 %if 0%{?with_test}
+BuildRequires:  perl(Test::Simple) = 0.98
 BuildRequires:  perl(Test::Spec)
 BuildRequires:  perl(Test::Output)
 BuildRequires:  perl(Test::Exception)
@@ -50,6 +52,7 @@
 Requires:   perl(Try::Tiny)
 Requires:   perl(File::Path::Tiny)
 Requires:   perl(local::lib) = 1.008
+Requires:   perl(Capture::Tiny)
 %{perl_requires}
 
 %description

++ App-perlbrew-0.35.tar.gz - App-perlbrew-0.39.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/App-perlbrew-0.35/Changes 
new/App-perlbrew-0.39/Changes
--- old/App-perlbrew-0.35/Changes   2011-12-17 06:03:00.0 +0100
+++ new/App-perlbrew-0.39/Changes   2011-12-31 17:00:05.0 +0100
@@ -1,3 +1,18 @@
+0.39:
+- Fix GH #179. lib naming are more consistent.
+- Fix GH #171. bash users are suggestted to upgrad to this version.
+- Fix GH #152.
+
+0.38:
+- fix deps
+
+0.37:
+- fix ENV mess after switching to diffirent libs multiple times
+- add --sitecustomize option
+
+0.36:
+- fix test errors on freebsd that makes it uninstallable
+
 0.35:
 - fixes for cpantester failures
 - requiers local::lib version 1.008
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/App-perlbrew-0.35/MANIFEST 
new/App-perlbrew-0.39/MANIFEST
--- old/App-perlbrew-0.35/MANIFEST  2011-12-16 00:22:45.0 +0100
+++ new/App-perlbrew-0.39/MANIFEST  2011-12-31 16:54:45.0 +0100
@@ -37,6 +37,7 @@
 t/10.resolve.t
 t/11.editdist.t
 t/11.root_from_arg.t
+t/12.sitecustomize.t
 t/command-available.t
 t/command-compgen.t
 t/command-display-rc.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/App-perlbrew-0.35/META.yml 
new/App-perlbrew-0.39/META.yml
--- old/App-perlbrew-0.35/META.yml  2011-12-17 06:04:56.0 +0100
+++ new/App-perlbrew-0.39/META.yml  2011-12-31 17:01:13.0 +0100
@@ -27,6 +27,7 @@
 - inc
 - t
 requires:
+  Capture::Tiny: 0.13
   Devel::PatchPerl: 0.46
   File::Path::Tiny: 0.1
   local::lib: 1.008
@@ -34,4 +35,4 @@
 resources:
   license: http://opensource.org/licenses/mit-license.php
   repository: git://github.com/gugod/App-perlbrew.git
-version: 0.35
+version: 0.39
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/App-perlbrew-0.35/Makefile.PL 
new/App-perlbrew-0.39/Makefile.PL
--- old/App-perlbrew-0.35/Makefile.PL   

commit permissions for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package permissions for openSUSE:Factory 
checked in at 2012-02-08 15:41:09

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


Package is permissions, Maintainer is lnus...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/permissions/permissions.changes  2011-11-07 
14:28:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.permissions.new/permissions.changes 
2012-02-08 15:41:13.0 +0100
@@ -1,0 +2,11 @@
+Wed Feb  8 08:15:50 UTC 2012 - lnus...@suse.de
+
+- add duplicate entries for / and /usr (bnc#745622)
+
+---
+Tue Feb  7 12:09:17 UTC 2012 - lnus...@suse.de
+
+- add scripts for automatic package sumission
+- drop zypp-refresh-wrapper (bnc#738677)
+
+---

Old:

  0001-disable-run-time-fscaps-detection-bnc-728312.diff
  permissions-2011.09.23.1037.tar.bz2

New:

  permissions-2012.02.08.0914.tar.bz2



Other differences:
--
++ permissions.spec ++
--- /var/tmp/diff_new_pack.CeBfIs/_old  2012-02-08 15:41:16.0 +0100
+++ /var/tmp/diff_new_pack.CeBfIs/_new  2012-02-08 15:41:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package permissions
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -24,13 +24,12 @@
 License:GPL-2.0+
 Group:  Productivity/Security
 AutoReqProv:on
-Version:2011.09.23.1037
+Version:2012.02.08.0914
 Release:1
 Provides:   aaa_base:/etc/permissions
 PreReq: %fillup_prereq
 Summary:SUSE Linux Default Permissions
 Source: permissions-%{version}.tar.bz2
-Patch0: 0001-disable-run-time-fscaps-detection-bnc-728312.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://gitorious.org/opensuse/permissions
 
@@ -49,7 +48,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 make %{?_smp_mflags} CFLAGS=-W -Wall $RPM_OPT_FLAGS FSCAPS_DEFAULT_ENABLED=0

++ permissions-2011.09.23.1037.tar.bz2 - 
permissions-2012.02.08.0914.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/permissions-2011.09.23.1037/Makefile 
new/permissions-2012.02.08.0914/Makefile
--- old/permissions-2011.09.23.1037/Makefile2011-09-23 10:37:01.0 
+0200
+++ new/permissions-2012.02.08.0914/Makefile2012-02-08 09:14:56.0 
+0100
@@ -32,4 +32,7 @@
 clean:
/bin/rm chkstat
 
-.PHONY: all clean
+package:
+   @obs/mkpackage
+
+.PHONY: all clean package
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/permissions-2011.09.23.1037/chkstat.8 
new/permissions-2012.02.08.0914/chkstat.8
--- old/permissions-2011.09.23.1037/chkstat.8   2011-09-23 10:37:01.0 
+0200
+++ new/permissions-2012.02.08.0914/chkstat.8   2012-02-08 09:14:56.0 
+0100
@@ -52,8 +52,9 @@
 Omit printing the output header lines.
 .TP
 .IR \-\-fscaps,\ \-\-no\-fscaps
-Force or disable use of fscaps. Default is to automatically
-determine whether the running kernel supports fscaps.
+Enable or disable use of fscaps. In system mode the setting of
+PERMISSIONS_FSCAPS determines whether fscaps are on or off when this
+option is not set.
 .TP
 .IR \-\-examine\ file
 Check permissions for this file instead of all files listed in the permissions 
files.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/permissions-2011.09.23.1037/chkstat.c 
new/permissions-2012.02.08.0914/chkstat.c
--- old/permissions-2011.09.23.1037/chkstat.c   2011-09-23 10:37:01.0 
+0200
+++ new/permissions-2012.02.08.0914/chkstat.c   2012-02-08 09:14:56.0 
+0100
@@ -54,6 +54,7 @@
 char** level;
 int do_set = -1;
 int default_set = 1;
+int have_fscaps = -1;
 char** permfiles = NULL;
 int npermfiles = 0;
 char* force_level;
@@ -281,6 +282,24 @@
  //fprintf(stderr, invalid value for CHECK_PERMISSIONS (must be 
'set', 'warn' or 'no')\n);
}
}
+  else if (have_fscaps == -1  !strncmp(p, PERMISSIONS_FSCAPS=, 19))
+   {
+ p+=19;
+ if (isquote(*p))
+   ++p;
+ if (!strncmp(p, yes, 3))
+   {
+ p+=3;
+ if (isquote(*p) || !*p)
+   have_fscaps=1;
+   }
+ else if (!strncmp(p, no, 2))
+   {
+ p+=2;
+ if 

commit python-webkitgtk for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package python-webkitgtk for 
openSUSE:Factory checked in at 2012-02-08 15:41:32

Comparing /work/SRC/openSUSE:Factory/python-webkitgtk (Old)
 and  /work/SRC/openSUSE:Factory/.python-webkitgtk.new (New)


Package is python-webkitgtk, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-webkitgtk/python-webkitgtk.changes
2011-09-23 12:43:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-webkitgtk.new/python-webkitgtk.changes   
2012-02-08 15:41:34.0 +0100
@@ -1,0 +2,11 @@
+Thu Feb  2 11:25:27 UTC 2012 - sasc...@suse.de
+
+- Spec cleanup:
+  - Ran spec-cleaner
+  - Moved 'demos' documentation to devel package
+  - No ldconfig for stuff in python_sitearch, it's just a binary
+Python module
+  - Removed outdated %clean section
+  - Don't use find ... -delete, fixes SLE_11 build
+
+---



Other differences:
--
++ python-webkitgtk.spec ++
--- /var/tmp/diff_new_pack.wXbQph/_old  2012-02-08 15:41:35.0 +0100
+++ /var/tmp/diff_new_pack.wXbQph/_new  2012-02-08 15:41:35.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package python-webkitgtk (Version 1.1.8)
+# spec file for package python-webkitgtk
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2008 Andrew Wafaa
 #
 # All modifications and additions to the file contributed by third parties
@@ -17,16 +17,14 @@
 #
 
 
-
 Name:   python-webkitgtk
-%define _name   pywebkitgtk
-Summary:Python bindings for WebKit/Gtk
 Version:1.1.8
-Release:1
+Release:0
+Summary:Python bindings for WebKit/Gtk
 License:LGPL-2.0+
 Group:  Development/Languages/Python
 Url:http://code.google.com/p/pywebkitgtk/
-Source: %{_name}-%{version}.tar.bz2
+Source: pywebkitgtk-%{version}.tar.bz2
 BuildRequires:  libwebkit-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  python-devel
@@ -35,7 +33,7 @@
 Obsoletes:  pywebkitgtk  %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %py_requires
-%{!?python_sitearch: %global python_sitearch %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib(1))}
+%{!?python_sitearch: %global python_sitearch %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib(1))}
 
 %description
 PyWebKitGtk provides an API for developers to program WebKit/Gtk using
@@ -49,7 +47,6 @@
 
 %package devel
 Summary:Python bindings for WebKit/Gtk -- Development Files
-License:LGPL-2.0+
 Group:  Development/Libraries/Python
 Requires:   %{name} = %{version}
 
@@ -64,30 +61,24 @@
 that they can access to using the Python programming language.
 
 %prep
-%setup -q -n %{_name}-%{version}
+%setup -q -n pywebkitgtk-%{version}
 
 %build
 %configure --disable-static
-%__make %{?jobs: -j%jobs}
+make %{?_smp_mflags}
 
 %install
-%makeinstall
-find %{buildroot} -type f -name *.la -delete -print
-
-%post -p /sbin/ldconfig
-
-%postun -p /sbin/ldconfig
-
-%clean
-rm -rf %{buildroot}
+%make_install
+find %{buildroot} -type f -name *.la | xargs rm
 
 %files
 %defattr(-, root, root)
-%doc AUTHORS COPYING MAINTAINERS NEWS README demos
+%doc AUTHORS COPYING MAINTAINERS NEWS README
 %{python_sitearch}/webkit/
 
 %files devel
 %defattr(-, root, root)
+%doc demos
 %dir %{_datadir}/pywebkitgtk/
 %{_datadir}/pywebkitgtk/defs/
 %{_libdir}/pkgconfig/pywebkitgtk-1.0.pc

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



commit qpdf for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package qpdf for openSUSE:Factory checked in 
at 2012-02-08 15:42:08

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


Package is qpdf, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/qpdf/qpdf.changes2012-01-25 
10:40:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.qpdf.new/qpdf.changes   2012-02-08 
15:42:11.0 +0100
@@ -1,0 +2,5 @@
+Tue Jan 24 12:07:27 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant sections (see specfile guidelines)
+
+---



Other differences:
--
++ qpdf.spec ++
--- /var/tmp/diff_new_pack.Nsv0xq/_old  2012-02-08 15:42:15.0 +0100
+++ /var/tmp/diff_new_pack.Nsv0xq/_new  2012-02-08 15:42:15.0 +0100
@@ -88,7 +88,4 @@
 %{_includedir}/*
 %{_libdir}/libqpdf*.so
 
-%clean
-rm -rf %{buildroot}
-
 %changelog

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



commit tolua++ for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package tolua++ for openSUSE:Factory checked 
in at 2012-02-08 15:42:35

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


Package is tolua++, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/tolua++/tolua++.changes  2011-10-07 
16:40:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.tolua++.new/tolua++.changes 2012-02-08 
15:42:48.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb  8 07:48:02 UTC 2012 - pgaj...@suse.com
+
+- build against lua51-devel for openSUSE  12.1 until tolua++ 
+  isn't ported to lua 5.2
+
+---



Other differences:
--
++ tolua++.spec ++
--- /var/tmp/diff_new_pack.g592cY/_old  2012-02-08 15:42:52.0 +0100
+++ /var/tmp/diff_new_pack.g592cY/_new  2012-02-08 15:42:52.0 +0100
@@ -1,4 +1,21 @@
-# vim: set sw=4 ts=4 et nu:
+#
+# spec file for package tolua++
+#
+# 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, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An Open Source License is a
+# license that conforms to the Open Source Definition (Version 1.9)
+# published by the Open Source Initiative.
+
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
+
 
 Name:   tolua++
 Version:1.0.93
@@ -7,12 +24,17 @@
 Source: http://www.codenix.com/~tolua/tolua++-%{version}.tar.bz2
 Patch1: tolua++-lib.patch
 Source99:   tolua++-rpmlintrc
-URL:http://www.codenix.com/~tolua/
+Url:http://www.codenix.com/~tolua/
 Group:  Development/Libraries/Other
 License:MIT
-BuildRoot:  %{_tmppath}/build-%{name}-%{version}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  scons
+#FIXME: change to lua-devel as soon as tolua++ is working with lua 5.2 
+%if 0%{?suse_version}  1210
+BuildRequires:  lua51-devel
+%else
 BuildRequires:  lua-devel
+%endif
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
 

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



commit urfkill for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package urfkill for openSUSE:Factory checked 
in at 2012-02-08 15:43:29

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


Package is urfkill, Maintainer is g...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/urfkill/urfkill.changes  2012-01-26 
14:08:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.urfkill.new/urfkill.changes 2012-02-08 
15:43:41.0 +0100
@@ -1,0 +2,5 @@
+Thu Jan 26 08:13:32 UTC 2012 - co...@suse.com
+
+- some cleanups
+
+---



Other differences:
--
++ urfkill.spec ++
--- /var/tmp/diff_new_pack.l3OyXS/_old  2012-02-08 15:43:42.0 +0100
+++ /var/tmp/diff_new_pack.l3OyXS/_new  2012-02-08 15:43:42.0 +0100
@@ -15,28 +15,26 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   urfkill
 Version:0.3.0
-Release:1
+Release:0
 Url:http://github.com/lcp/urfkill
+Summary:A daemon to control radio killswitches
 License:GPL-2.0+
 Group:  System/Daemons
-Summary:A daemon to control radio killswitches
 Source: %{name}-%{version}.tar.xz
 Patch0: urfkill-change-default-user.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  dbus-1-glib-devel
 BuildRequires:  gettext
+BuildRequires:  glib2-devel
+BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk-doc
 BuildRequires:  intltool
-BuildRequires:  glib2-devel
+BuildRequires:  libexpat-devel
 BuildRequires:  libgudev-1_0-devel
-BuildRequires:  dbus-1-glib-devel
 BuildRequires:  polkit-devel
-BuildRequires:  libexpat-devel
-BuildRequires:  gobject-introspection-devel
 BuildRequires:  xz
 Requires:   polkit
 
@@ -44,13 +42,7 @@
 Urfkill is a daemon to control radio killswitches through /dev/rfkill
 and supports PolicyKit authorization mechanism.
 
-
-Authors:
-
-g...@suse.com
-
 %package -n liburfkill-glib0
-License:GPL-2.0+
 Summary:The glib binding library for urfkill
 Group:  System/Daemons
 
@@ -58,15 +50,9 @@
 Urfkill add-on library to integrate the standard urfkill library with
 the GLib thread abstraction and main loop.
 
-
-Authors:
-
-g...@suse.com
-
 %if !0%{?_crossbuild}
 
 %package -n typelib-1_0-Urfkill-0_0
-License:GPL-2.0+
 Summary:The urfkill glib library-- Introspection bindings
 Group:  System/Daemons
 
@@ -76,14 +62,9 @@
 
 This package provides the GObject Introspection bindings for urfkill.
 
-
-Authors:
-
-g...@suse.com
 %endif
 
 %package -n liburfkill-glib-devel
-License:GPL-2.0+
 Summary:The glib binding library for urfkill
 Group:  Development/Libraries/Other
 Requires:   liburfkill-glib0 = %{version}-%{release}
@@ -97,11 +78,6 @@
 the GLib thread abstraction and main loop.
 http://freedesktop.org/wiki/Software/urfkill
 
-
-Authors:
-
-g...@suse.com
-
 %prep
 %setup -n %{name}-%{version} -q
 %patch0 -p1


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



commit xfce4-panel-plugin-timer for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package xfce4-panel-plugin-timer for 
openSUSE:Factory checked in at 2012-02-08 15:44:10

Comparing /work/SRC/openSUSE:Factory/xfce4-panel-plugin-timer (Old)
 and  /work/SRC/openSUSE:Factory/.xfce4-panel-plugin-timer.new (New)


Package is xfce4-panel-plugin-timer, Maintainer is xfce-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/xfce4-panel-plugin-timer/xfce4-panel-plugin-timer.changes
2012-02-02 18:01:02.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xfce4-panel-plugin-timer.new/xfce4-panel-plugin-timer.changes
   2012-02-08 15:44:11.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb  7 10:09:50 UTC 2012 - g...@opensuse.org
+
+- update to version 0.6.4
+  - incorporated xfce4-panel-plugin-timer-fix-windows.patch and
+xfce4-panel-plugin-timer-fix-timerinfo-truncation.patch
+  - the mouse click receive code is separated for pre-4.8 and 4.8
+panels
+  - added an icon
+
+---

Old:

  xfce4-panel-plugin-timer-fix-timerinfo-truncation.patch
  xfce4-panel-plugin-timer-fix-windows.patch
  xfce4-timer-plugin-0.6.3.tar.bz2

New:

  xfce4-timer-plugin-0.6.4.tar.bz2



Other differences:
--
++ xfce4-panel-plugin-timer.spec ++
--- /var/tmp/diff_new_pack.ifXRhx/_old  2012-02-08 15:44:12.0 +0100
+++ /var/tmp/diff_new_pack.ifXRhx/_new  2012-02-08 15:44:12.0 +0100
@@ -20,17 +20,13 @@
 %define plugin_name xfce4-timer-plugin
 
 Name:   xfce4-panel-plugin-timer
-Version:0.6.3
+Version:0.6.4
 Release:0
 Summary:Alarm clock plugin for the Xfce panel
 License:GPL-2.0+
 Group:  System/GUI/XFCE
 Url:
http://goodies.xfce.org/projects/panel-plugins/xfce4-timer-plugin
 Source0:xfce4-timer-plugin-%{version}.tar.bz2
-# xfce4-panel-plugin-timer-fix-timerinfo-truncation.patch bnc#742788 
g...@opensuse.org -- Use a dynamically allocated string to hold timer data in 
order to prevent truncation in some locales
-Patch0: xfce4-panel-plugin-timer-fix-timerinfo-truncation.patch
-# xfce4-panel-plugin-timer-fix-windows.patch g...@opensuse.org -- Set the 
add/edit dialog transient for the main configuration window and make the 
notification dialog modal
-Patch1: xfce4-panel-plugin-timer-fix-windows.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(libxfce4panel-1.0)
@@ -44,8 +40,6 @@
 
 %prep
 %setup -q -n %{plugin_name}-%{version}
-%patch0 -p1
-%patch1 -p1
 
 %build
 %configure --disable-static
@@ -60,9 +54,16 @@
 %clean
 rm -rf %{buildroot}
 
+%post
+%icon_theme_cache_post
+
+%postun
+%icon_theme_cache_postun
+
 %files -f %{name}.lang
 %defattr(-,root,root)
 %{_libexecdir}/xfce4/panel-plugins/xfce4-timer
 %{_datadir}/xfce4/panel-plugins/xfce4-timer.desktop
+%{_datadir}/icons/hicolor/*/apps/xfce4-timer.png
 
 %changelog

++ xfce4-timer-plugin-0.6.3.tar.bz2 - xfce4-timer-plugin-0.6.4.tar.bz2 
++
 8998 lines of diff (skipped)

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



commit zsh for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package zsh for openSUSE:Factory checked in 
at 2012-02-08 15:44:17

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


Package is zsh, Maintainer is idon...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/zsh/zsh.changes  2012-02-01 10:01:24.0 
+0100
+++ /work/SRC/openSUSE:Factory/.zsh.new/zsh.changes 2012-02-08 
15:44:19.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb  7 14:27:18 CET 2012 - hma...@suse.de
+
+- add zsh-enable-openSUSE-completion-functions.patch: Enable
+  installation of openSUSE completion functions which are upstream
+
+---

New:

  zsh-enable-openSUSE-completion-functions.patch



Other differences:
--
++ zsh.spec ++
--- /var/tmp/diff_new_pack.7nAnjG/_old  2012-02-08 15:44:20.0 +0100
+++ /var/tmp/diff_new_pack.7nAnjG/_new  2012-02-08 15:44:20.0 +0100
@@ -15,6 +15,8 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   zsh
 Version:4.3.15
 Release:0
@@ -37,6 +39,7 @@
 %endif
 Patch1: %{name}-4.3.12-fix-c02cond-test.patch
 Patch2: osc.patch
+Patch3: zsh-enable-openSUSE-completion-functions.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 Requires(pre):  %{install_info_prereq}
@@ -89,6 +92,7 @@
 %setup -q -n %{name}-%{version}
 %patch1 -p1
 %patch2 -p0
+%patch3 -p1
 
 # Remove executable bit
 chmod 0644 Etc/changelog2html.pl

++ zsh-enable-openSUSE-completion-functions.patch ++
Index: zsh-4.3.15/Src/Zle/complete.mdd
===
--- zsh-4.3.15.orig/Src/Zle/complete.mdd
+++ zsh-4.3.15/Src/Zle/complete.mdd
@@ -1,7 +1,7 @@
 name=zsh/complete
 link=either
 load=yes
-functions='Completion/*comp* Completion/AIX/*/* Completion/BSD/*/* 
Completion/Base/*/* Completion/Cygwin/*/* Completion/Darwin/*/* 
Completion/Debian/*/* Completion/Linux/*/* Completion/Mandriva/*/* 
Completion/Redhat/*/* Completion/Solaris/*/* Completion/Unix/*/* 
Completion/X/*/* Completion/Zsh/*/*'
+functions='Completion/*comp* Completion/AIX/*/* Completion/BSD/*/* 
Completion/Base/*/* Completion/Cygwin/*/* Completion/Darwin/*/* 
Completion/Debian/*/* Completion/Linux/*/* Completion/Mandriva/*/* 
Completion/Redhat/*/* Completion/Solaris/*/* Completion/openSUSE/*/* 
Completion/Unix/*/* Completion/X/*/* Completion/Zsh/*/*'
 
 moddeps=zsh/zle
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libsolv for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libsolv for openSUSE:Factory checked 
in at 2012-02-08 16:05:31

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


Package is libsolv, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libsolv/libsolv.changes  2011-10-24 
15:36:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsolv.new/libsolv.changes 2012-02-08 
16:05:32.0 +0100
@@ -1,0 +2,20 @@
+Tue Feb  7 16:33:10 CET 2012 - m...@suse.de
+
+- add findutils to the requires of libsolv-tools [bnc#743634]
+
+---
+Wed Feb  1 14:06:59 CET 2012 - m...@suse.de
+
+- add cleandeps support for install/update
+- check for cleandeps mistakes (untested)
+
+---
+Fri Jan 27 14:10:34 CET 2012 - m...@suse.de
+
+- make repo type code selection modular
+- add more solvable_ functions
+- add dependency getter/setter code to bindings
+- cleanup dup handling
+- hide more internals
+
+---



Other differences:
--
++ libsolv.spec ++
--- /var/tmp/diff_new_pack.Xjou2C/_old  2012-02-08 16:05:33.0 +0100
+++ /var/tmp/diff_new_pack.Xjou2C/_new  2012-02-08 16:05:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libsolv
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -17,12 +17,10 @@
 
 Name:   libsolv
 Version:0.0.0
-Release:1
-License:BSD 3-Clause
+Release:0
 Url:git://gitorious.org/opensuse/libsolv.git
 Source: libsolv-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Group:  Development/Libraries/C and C++
 
 %bcond_without enable_static
 %bcond_without disable_shared
@@ -52,7 +50,9 @@
 %else
 BuildRequires:  expat-devel
 %endif
-BuildRequires:  cmake rpm-devel gcc-c++
+BuildRequires:  cmake
+BuildRequires:  gcc-c++
+BuildRequires:  rpm-devel
 BuildRequires:  zlib-devel
 
 %if %{with perl_binding}
@@ -68,7 +68,8 @@
 %else
 %global ruby_vendorarch %(ruby -rrbconfig -e 'puts 
Config::CONFIG[vendorarchdir]')
 %endif
-BuildRequires: ruby ruby-devel
+BuildRequires:  ruby
+BuildRequires:  ruby-devel
 BuildRequires: swig
 %endif
 %if %{with python_binding}
@@ -78,7 +79,8 @@
 %endif
 
 Summary:A new approach to package dependency solving
-
+License:BSD-3-Clause
+Group:  Development/Libraries/C and C++
 
 %description
 A new approach to package dependency solving
@@ -109,7 +111,7 @@
 Group:  Development/Libraries/C and C++
 Obsoletes:  satsolver-tools  0.18
 Provides:   satsolver-tools = 0.18
-Requires:   gzip bzip2 coreutils
+Requires:   gzip bzip2 coreutils findutils
 
 %description tools
 A new approach to package dependency solving.
@@ -169,7 +171,7 @@
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DLIB=%{_lib} \
-DCMAKE_VERBOSE_MAKEFILE=TRUE \
-   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_BUILD_TYPE=RelWithDebInfo \
%{?with_enable_static:-DENABLE_STATIC=1} \
%{?with_disable_shared:-DDISABLE_SHARED=1} \
%{?with_perl_binding:-DENABLE_PERL=1} \

++ libsolv-0.0.0.tar.bz2 ++
 9477 lines of diff (skipped)

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



commit zypper for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package zypper for openSUSE:Factory checked 
in at 2012-02-08 16:05:39

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


Package is zypper, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/zypper/zypper.changes2011-12-25 
17:43:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.zypper.new/zypper.changes   2012-02-08 
16:05:40.0 +0100
@@ -1,0 +2,56 @@
+Thu Feb  2 01:14:45 CET 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Sun Jan 29 01:15:10 CET 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Sun Jan 22 01:14:05 CET 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Sun Jan 15 01:13:31 CET 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Thu Jan 12 01:13:39 CET 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Wed Jan 11 11:19:41 CET 2012 - m...@suse.de
+
+- Fix man page --cache-dir description. (bnc#738677)
+
+---
+Tue Jan 10 18:38:57 CET 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Tue Jan 10 18:32:11 CET 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Tue Jan 10 13:52:48 CET 2012 - m...@suse.de
+
+- Return nonzero (104 - INF_CAP_NOT_FOUND) when query matches no 
+  package (bnc#719690)
+
+---
+Mon Jan  9 16:30:52 CET 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Thu Dec 22 15:35:35 CET 2011 - m...@suse.de
+
+- Remove setuid root binary /usr/sbin/zypp-refresh-wrapper (bnc#724832)
+
+---



Other differences:
--
++ zypper.spec ++
--- /var/tmp/diff_new_pack.0dwbP0/_old  2012-02-08 16:05:42.0 +0100
+++ /var/tmp/diff_new_pack.0dwbP0/_new  2012-02-08 16:05:42.0 +0100
@@ -30,7 +30,7 @@
 Recommends: logrotate cron zypper-log
 Requires(post): permissions
 %endif
-License:GPLv2+
+License:GPL-2.0+
 Group:  System/Packages
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Command line software manager using libzypp
@@ -66,7 +66,7 @@
 %endif
 BuildArch:  noarch
 Summary:CLI for accessing the zypper logfile
-License:GPLv2+
+License:GPL-2.0+
 Group:  System/Packages
 %description -n zypper-log
 CLI for accessing the zypper logfile
@@ -77,9 +77,11 @@
 
 %package aptitude
 Summary:aptitude compatibility with zypper
-License:GPLv2+
+License:GPL-2.0+
 Requires:   perl
+%if 0%{?suse_version}
 Supplements:zypper
+%endif
 BuildArch:  noarch
 Group:  System/Packages
 %description aptitude
@@ -133,9 +135,6 @@
 %if 0%{?suse_version}
 %post
 %run_permissions
-
-%verifyscript
-%verify_permissions -e %{_sbindir}/zypp-refresh-wrapper
 %endif
 
 %clean
@@ -150,7 +149,6 @@
 %{_bindir}/zypper
 %{_bindir}/installation_sources
 %{_sbindir}/zypp-refresh
-%verify(not mode) %attr (755,root,root) %{_sbindir}/zypp-refresh-wrapper
 %dir %{_datadir}/zypper
 %{_datadir}/zypper/zypper.aug
 %dir %{_datadir}/zypper/xml

++ zypper-1.7.0.tar.bz2 ++
/work/SRC/openSUSE:Factory/zypper/zypper-1.7.0.tar.bz2 
/work/SRC/openSUSE:Factory/.zypper.new/zypper-1.7.0.tar.bz2 differ: char 11, 
line 1

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



commit libzypp for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory checked 
in at 2012-02-08 16:05:57

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


Package is libzypp, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libzypp/libzypp.changes  2011-12-27 
18:37:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.libzypp.new/libzypp.changes 2012-02-08 
16:05:59.0 +0100
@@ -1,0 +2,31 @@
+Fri Feb  3 13:18:01 CET 2012 - m...@suse.de
+
+- Add Fetcher support for CHECKSUMS file (replaceing SHA1SUMS) (bnc#744302)
+- Build with -fvisibility-inlines-hidden
+- CheckAccessDeleted: avoid duplicate entries for the same PID (bnc#716972)
+- Correctly use user:pass directly embedded in a proxy url (bnc#740764)
+- new sat::Map - Libsolv (bit)Map wrapper.
+- always set splitprovides to true now that libsolv handles them better
+- version 11.1.0 (1)
+
+---
+Thu Feb  2 01:14:17 CET 2012 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---
+Sun Jan 29 01:14:28 CET 2012 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---
+Sun Jan 22 01:13:30 CET 2012 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---
+Tue Jan 10 18:31:41 CET 2012 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---

Old:

  libzypp-11.0.0.tar.bz2

New:

  libzypp-11.1.0.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.8edc9P/_old  2012-02-08 16:06:01.0 +0100
+++ /var/tmp/diff_new_pack.8edc9P/_new  2012-02-08 16:06:01.0 +0100
@@ -19,11 +19,11 @@
 
 
 Name:   libzypp
-License:GPLv2+
+License:GPL-2.0+
 Group:  System/Packages
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Package, Patch, Pattern, and Product Management
-Version:11.0.0
+Version:11.1.0
 Release:1
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc
@@ -44,7 +44,7 @@
 %endif
 BuildRequires:  cmake
 BuildRequires:  openssl-devel
-%if 0%{?suse_version} = 1130
+%if 0%{?suse_version} = 1130 || 0%{?fedora_version} = 16
 BuildRequires:  libudev-devel
 %else
 BuildRequires:  hal-devel
@@ -57,7 +57,12 @@
 BuildRequires:  graphviz
 BuildRequires:  libxml2-devel
 BuildRequires:  libproxy-devel
+
+%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
+BuildRequires:  pkgconfig
+%else
 BuildRequires:  pkg-config
+%endif
 
 BuildRequires:  libsolv-devel
 %if 0%{?suse_version} = 1100
@@ -135,7 +140,7 @@
 Ladislav Slezak lsle...@suse.cz
 
 %package devel
-License:GPLv2+
+License:GPL-2.0+
 Requires:   libzypp = %{version}
 Requires:   libxml2-devel
 Requires:   openssl-devel
@@ -146,7 +151,7 @@
 Requires:   popt-devel
 Requires:   boost-devel
 Requires:   libstdc++-devel
-%if 0%{?suse_version} = 1130
+%if 0%{?suse_version} = 1130 || 0%{?fedora_version} = 16
 Requires:   libudev-devel
 %else
 Requires:   hal-devel

++ libzypp-11.0.0.tar.bz2 - libzypp-11.1.0.tar.bz2 ++
 1798 lines of diff (skipped)

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



commit libfreevec for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libfreevec for openSUSE:Factory 
checked in at 2012-02-08 16:08:24

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


Package is libfreevec, Maintainer is o...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/libfreevec/libfreevec.changes2011-09-23 
02:08:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.libfreevec.new/libfreevec.changes   
2012-02-08 16:08:26.0 +0100
@@ -1,0 +2,8 @@
+Tue Jan 31 23:42:19 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections per specfile guideline suggestions
+- Parallel building using %_smp_mflags
+- Update ExclusiveArch, this also compiles on ppc64
+- Add autotools BuildRequires for factory/12.2
+
+---



Other differences:
--
++ libfreevec.spec ++
--- /var/tmp/diff_new_pack.rxctnI/_old  2012-02-08 16:08:28.0 +0100
+++ /var/tmp/diff_new_pack.rxctnI/_new  2012-02-08 16:08:28.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libfreevec (Version 1.0.4)
+# spec file for package libfreevec
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,20 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   libfreevec
 Version:1.0.4
-Release:1
-License:LGPL-2.1+
+Release:0
 Summary:Altivec Versions of Some libc Functions
+License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
 Requires:   libfreevec-library
 Url:http://www.freevec.org/
-ExclusiveArch:  ppc
+ExclusiveArch:  ppc ppc64
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:http://www.codex.gr/system/files/libfreevec-%{version}.tar.bz2
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libtool
 
 %description
 libfreevec is a free (LGPL) library with hand-optimized replacement
@@ -38,14 +39,7 @@
 this unit. This means they will not work on older processors, such as
 603, 604, 750 (G3), or the POWER family of CPUs.
 
-
-
-Authors:
-
-Konstantinos Margaritis mar...@codex.gr
-
 %package -n libfreevec0
-License:LGPL-2.1+
 Summary:Altivec Versions of Some libc Functions
 Group:  Development/Libraries/C and C++
 Provides:   libfreevec-devel
@@ -59,29 +53,20 @@
 this unit. This means they will not work on older processors, such as
 603, 604, 750 (G3), or the POWER family of CPUs.
 
-
-
-Authors:
-
-Konstantinos Margaritis mar...@codex.gr
-
 %prep
 %setup -q
 
 %build
 autoreconf -fi
 CFLAGS=$RPM_OPT_FLAGS -U_FORTIFY_SOURCE -O3 -maltivec -funroll-loops 
-DHAVE_ALTIVEC_H -flax-vector-conversions \
-./configure \
-   --prefix=/usr \
+%configure \
+   --prefix=%_prefix \
--libdir=%{_libdir}
-make
+make %{?_smp_mflags}
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT pkglibdir=%{_libdir}
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %post -n libfreevec0 -p /sbin/ldconfig
 
 %postun -n libfreevec0 -p /sbin/ldconfig

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



commit libmtp for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libmtp for openSUSE:Factory checked 
in at 2012-02-08 16:08:29

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


Package is libmtp, Maintainer is meiss...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libmtp/libmtp.changes2012-01-19 
10:35:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmtp.new/libmtp.changes   2012-02-08 
16:08:31.0 +0100
@@ -1,0 +2,5 @@
+Tue Jan 31 12:27:07 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections per specfile guideline suggestions
+
+---



Other differences:
--
++ libmtp.spec ++
--- /var/tmp/diff_new_pack.ZF2Jl7/_old  2012-02-08 16:08:32.0 +0100
+++ /var/tmp/diff_new_pack.ZF2Jl7/_new  2012-02-08 16:08:32.0 +0100
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define debug_package_requires libmtp9 = %{version}-%{release}
 
 Name:   libmtp
 Url:http://sf.net/projects/libmtp

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



commit openstack-dashboard for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package openstack-dashboard for 
openSUSE:Factory checked in at 2012-02-08 16:08:42

Comparing /work/SRC/openSUSE:Factory/openstack-dashboard (Old)
 and  /work/SRC/openSUSE:Factory/.openstack-dashboard.new (New)


Package is openstack-dashboard, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/openstack-dashboard/openstack-dashboard.changes  
2012-01-17 16:12:22.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.openstack-dashboard.new/openstack-dashboard.changes 
2012-02-08 16:08:43.0 +0100
@@ -1,0 +2,6 @@
+Tue Jan 10 11:30:14 UTC 2012 - cfarr...@suse.com
+
+- license update: Apache-2.0
+  Use SPDX format (http://www.spdx.org/licenses)
+
+---



Other differences:
--
++ openstack-dashboard.spec ++
--- /var/tmp/diff_new_pack.RiEgGb/_old  2012-02-08 16:08:44.0 +0100
+++ /var/tmp/diff_new_pack.RiEgGb/_new  2012-02-08 16:08:44.0 +0100
@@ -21,7 +21,7 @@
 Name:   openstack-dashboard
 Version:601fc1b
 Release:0
-License:ASL 2.0
+License:Apache-2.0
 Summary:Django module for OpenStack
 Url:http://www.openstack.org
 Group:  Development/Languages/Python

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



commit perl-Gtk2 for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Gtk2 for openSUSE:Factory 
checked in at 2012-02-08 16:08:47

Comparing /work/SRC/openSUSE:Factory/perl-Gtk2 (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Gtk2.new (New)


Package is perl-Gtk2, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Gtk2/perl-Gtk2.changes  2011-11-23 
19:37:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Gtk2.new/perl-Gtk2.changes 2012-02-08 
16:08:49.0 +0100
@@ -1,0 +2,9 @@
+Mon Jan 23 02:47:24 UTC 2012 - vci...@suse.com
+
+- update to 1.242
+  * Add gitweb link to old ChangeLog
+  * Be compatible with perl 5.8.0 (Bugzilla bug #666227)
+  * Gtk2::Widget: don't implement is_sensitive() twice
+  * Disable a few potentially annoying tests
+
+---

Old:

  Gtk2-1.241.tar.gz

New:

  Gtk2-1.242.tar.gz



Other differences:
--
++ perl-Gtk2.spec ++
--- /var/tmp/diff_new_pack.1H3vu1/_old  2012-02-08 16:08:50.0 +0100
+++ /var/tmp/diff_new_pack.1H3vu1/_new  2012-02-08 16:08:50.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Gtk2
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,28 +16,27 @@
 #
 
 
-
 Name:   perl-Gtk2
-Version:1.241
-Release:1
-License:LGPL-2.1+
+Version:1.242
+Release:0
 %define cpan_name Gtk2
 Summary:Perl interface to the 2
-Url:http://search.cpan.org/dist/Gtk2/
+License:LGPL-2.1+
 Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/Gtk2/
 #Source: 
http://www.cpan.org/modules/by-module/Gtk2/Gtk2-%{version}.tar.gz
 Source: %{cpan_name}-%{version}.tar.gz
 BuildRequires:  perl
-BuildRequires:  perl(Cairo) = 1.000
-BuildRequires:  perl(ExtUtils::Depends) = 0.300
-BuildRequires:  perl(ExtUtils::PkgConfig) = 1.03
-BuildRequires:  perl(Glib) = 1.220
-BuildRequires:  perl(Pango) = 1.220
 BuildRequires:  perl-macros
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11
 BuildRequires:  xorg-x11-Xvfb
 BuildRequires:  xorg-x11-server
+BuildRequires:  perl(Cairo) = 1.000
+BuildRequires:  perl(ExtUtils::Depends) = 0.300
+BuildRequires:  perl(ExtUtils::PkgConfig) = 1.03
+BuildRequires:  perl(Glib) = 1.220
+BuildRequires:  perl(Pango) = 1.220
 BuildRequires:  pkgconfig(gtk+-2.0)
 Requires:   perl(Cairo) = 1.000
 Requires:   perl(ExtUtils::Depends) = 0.300

++ Gtk2-1.241.tar.gz - Gtk2-1.242.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gtk2-1.241/ChangeLog.pre-git 
new/Gtk2-1.242/ChangeLog.pre-git
--- old/Gtk2-1.241/ChangeLog.pre-git2011-11-18 18:40:44.0 +0100
+++ new/Gtk2-1.242/ChangeLog.pre-git2012-01-19 05:37:17.0 +0100
@@ -1,7 +1,8 @@
 === ChangeLog discontinued ===
 
With the move to git, we stop maintaining a separate ChangeLog and
-   rely on proper commit messages instead.
+   rely on proper commit messages instead.  Web view of changes:
+   http://git.gnome.org/browse/perl-Gtk2/.
 
 2009-03-24  Torsten Schoenfeld  kaffeeti...@gmx.de
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gtk2-1.241/META.yml new/Gtk2-1.242/META.yml
--- old/Gtk2-1.241/META.yml 2011-11-19 09:00:56.0 +0100
+++ new/Gtk2-1.242/META.yml 2012-01-20 08:53:30.0 +0100
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:   Gtk2
-version:1.241
+version:1.242
 abstract:   Perl interface to the 2.x series of the Gimp Toolkit 
library
 author:  []
 license:unknown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gtk2-1.241/NEWS new/Gtk2-1.242/NEWS
--- old/Gtk2-1.241/NEWS 2011-11-19 08:59:35.0 +0100
+++ new/Gtk2-1.242/NEWS 2012-01-20 08:49:55.0 +0100
@@ -1,3 +1,11 @@
+Overview of changes in Gtk2 1.242
+=
+
+* Add gitweb link to old ChangeLog
+* Be compatible with perl 5.8.0 (Bugzilla bug #666227)
+* Gtk2::Widget: don't implement is_sensitive() twice
+* Disable a few potentially annoying tests
+
 Overview of changes in Gtk2 1.241
 =
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gtk2-1.241/README new/Gtk2-1.242/README
--- old/Gtk2-1.241/README   2011-11-19 08:59:43.0 +0100

commit perl-String-Formatter for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package perl-String-Formatter for 
openSUSE:Factory checked in at 2012-02-08 16:08:56

Comparing /work/SRC/openSUSE:Factory/perl-String-Formatter (Old)
 and  /work/SRC/openSUSE:Factory/.perl-String-Formatter.new (New)


Package is perl-String-Formatter, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-String-Formatter/perl-String-Formatter.changes  
2012-01-09 21:44:06.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-String-Formatter.new/perl-String-Formatter.changes
 2012-02-08 16:08:57.0 +0100
@@ -1,0 +2,7 @@
+Mon Jan  9 14:17:38 UTC 2012 - cfarr...@suse.com
+
+- license update: GPL-2.0
+  Look at Formatter.pm - the licence makes no reference to an ^or later^
+  version
+
+---



Other differences:
--
++ perl-String-Formatter.spec ++
--- /var/tmp/diff_new_pack.hEjLPg/_old  2012-02-08 16:08:58.0 +0100
+++ /var/tmp/diff_new_pack.hEjLPg/_new  2012-02-08 16:08:58.0 +0100
@@ -21,7 +21,7 @@
 Release:0
 %define cpan_name String-Formatter
 Summary:Build sprintf-like functions of your own
-License:GPL-2.0+
+License:GPL-2.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/String-Formatter/
 Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/String-Formatter-%{version}.tar.gz

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



commit a2ps for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package a2ps for openSUSE:Factory checked in 
at 2012-02-08 17:17:11

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


Package is a2ps, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/a2ps/a2ps.changes2011-11-05 
11:36:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.a2ps.new/a2ps.changes   2012-02-08 
17:17:17.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb  7 09:22:18 CET 2012 - meiss...@suse.de
+
+- copy config.* files instead of old suse_update_config macro.
+
+---



Other differences:
--
++ a2ps.spec ++
--- /var/tmp/diff_new_pack.0tw6U7/_old  2012-02-08 17:17:18.0 +0100
+++ /var/tmp/diff_new_pack.0tw6U7/_new  2012-02-08 17:17:18.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package a2ps
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,20 +15,26 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   a2ps
-BuildRequires:  autoconf automake emacs-nox flex ghostscript-fonts-std gv 
psutils texlive-latex xorg-x11-devel
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  emacs-nox
+BuildRequires:  flex
+BuildRequires:  ghostscript-fonts-std
+BuildRequires:  gv
+BuildRequires:  psutils
+BuildRequires:  texlive-latex
+BuildRequires:  xorg-x11-devel
 Url:http://www.gnu.org/software/a2ps/a2ps.html
-License:GPL-2.0+
-Group:  Productivity/Publishing/PS
 Provides:   a2ps-bin
 Requires:   /bin/sed /usr/bin/iconv /usr/bin/file /usr/bin/wdiff 
/usr/bin/w3m ghostscript-fonts-std
 Suggests:   acroread gv ImageMagick psutils texinfo texlive-latex
 PreReq: %{install_info_prereq}
 Version:4.13
-Release:1336
+Release:0
 Summary:Converts ASCII Text into PostScript
+License:GPL-2.0+
+Group:  Productivity/Publishing/PS
 Source: a2ps-4.13b.tar.bz2
 Source1:a2ps-ko.po
 Source2:a2ps-open
@@ -56,7 +62,6 @@
 latin encodings are supported.
 
 %package -n a2ps-devel
-License:GPL-2.0+
 Summary:Library and header file for the interface of a2ps
 Group:  Development/Libraries/Other
 Provides:   a2ps:%{_libdir}/liba2ps.a
@@ -92,7 +97,7 @@
 rename no nb po/no.*
 
 %build
-%{?suse_update_config:%{suse_update_config -f auxdir}}
+ cp /usr/share/automake-1.11/config.* auxdir/
  export CFLAGS=$RPM_OPT_FLAGS -D_GNU_SOURCE -funroll-loops -Wall -pipe 
-fstack-protector
  export LPR=lpr
  export CC=gcc

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



commit alpine for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package alpine for openSUSE:Factory checked 
in at 2012-02-08 17:17:16

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


Package is alpine, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/alpine/alpine.changes2011-10-18 
14:08:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.alpine.new/alpine.changes   2012-02-08 
17:17:19.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb  8 11:36:12 UTC 2012 - pu...@suse.com
+
+- clean up spec file 
+
+---



Other differences:
--
++ alpine.spec ++
--- /var/tmp/diff_new_pack.fcWYbk/_old  2012-02-08 17:17:21.0 +0100
+++ /var/tmp/diff_new_pack.fcWYbk/_new  2012-02-08 17:17:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package alpine
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,8 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   alpine
 #
 # Package configuration:
@@ -34,9 +32,17 @@
 %definebuild_vanilla   0
 #
 Summary:Mail User Agent
-BuildRequires:  imap-devel krb5-devel libgssapi ncurses-devel
-BuildRequires:  openldap2-devel openssl-devel pam-devel update-desktop-files
+License:Apache-2.0
+Group:  Productivity/Networking/Email/Clients
+BuildRequires:  imap-devel
+BuildRequires:  krb5-devel
+BuildRequires:  libgssapi
 BuildRequires:  libtool
+BuildRequires:  ncurses-devel
+BuildRequires:  openldap2-devel
+BuildRequires:  openssl-devel
+BuildRequires:  pam-devel
+BuildRequires:  update-desktop-files
 %if %{use_mudflap}
 BuildRequires:  libmudflap
 %endif
@@ -51,9 +57,7 @@
 %endif
 #
 Version:2.00
-Release:61
-License:Apache-2.0
-Group:  Productivity/Networking/Email/Clients
+Release:0
 Url:http://www.washington.edu/alpine/
 Source: %{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -100,7 +104,6 @@
 command.
 
 %package -n pico
-License:Apache-2.0
 Summary:A small, easy to use editor
 Group:  Productivity/Editors/Other
 
@@ -113,7 +116,6 @@
 
 
 %package -n pilot
-License:Apache-2.0
 Summary:Simple file system browser
 Group:  Productivity/File utilities
 


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



commit apcupsd for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package apcupsd for openSUSE:Factory checked 
in at 2012-02-08 17:17:20

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


Package is apcupsd, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/apcupsd/apcupsd.changes  2012-02-01 
11:52:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.apcupsd.new/apcupsd.changes 2012-02-08 
17:17:23.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb  8 11:55:48 UTC 2012 - dval...@suse.com
+
+- fix ppc64 build 
+
+---



Other differences:
--
++ apcupsd.spec ++
--- /var/tmp/diff_new_pack.G3xMmF/_old  2012-02-08 17:17:25.0 +0100
+++ /var/tmp/diff_new_pack.G3xMmF/_new  2012-02-08 17:17:25.0 +0100
@@ -32,6 +32,7 @@
 BuildRequires:  pm-utils
 BuildRequires:  tcpd-devel
 BuildRequires:  update-desktop-files
+BuildRequires:  automake
 %if 0%{?suse_version}  1210
 BuildRequires:  sysvinit
 %else
@@ -69,6 +70,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define apache_serverroot %(/usr/sbin/apxs2 -q datadir 2/dev/null || 
/usr/sbin/apxs -q PREFIX)
 
+
 %description
 Controls and monitors the status of an APC UPS under Linux. Allows your
 computer or server to run for a specified length of time on UPS power
@@ -79,10 +81,13 @@
 http://www.apc.com/tools/download/.
 
 %package gui
+
+
 Summary:APC UPS Monitor GUI (for APC UPSs)
 Group:  Hardware/UPS
 Requires:   %{name} = %{version}
 
+
 %description gui
 Controls and monitors the status of an APC UPS under Linux. Allows your
 computer or server to run for a specified length of time on UPS power
@@ -94,6 +99,8 @@
 
 %prep
 %setup -q
+#This is needed as apcupsd doesn't recognize ppc64 correctly
+cp /usr/share/automake-1.11/config.* ./autoconf/ 
 cp -a %{S:1} platforms/suse/apcupsd.in
 cp -a %{S:2} %{S:4} %{S:5} .
 cp -a %{S:3} apcupsd-early-powerdown
@@ -112,6 +119,7 @@
 %patch10 -p1
 %patch11
 
+
 %build
 # Incomplete:
 #cd autoconf
@@ -139,6 +147,7 @@
--with-cgi-bin=%{apache_serverroot}/cgi-bin
 make %{?_smp_mflags}
 
+
 %install
 %makeinstall
 mkdir -p $RPM_BUILD_ROOT/sbin
@@ -161,6 +170,7 @@
 mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates
 cp apcupsd.sysconfig $RPM_BUILD_ROOT/var/adm/fillup-templates/sysconfig.apcupsd
 
+
 %post
 %{fillup_and_insserv apcupsd}
 # HALT_POWERDOWN_INSERT is supported since SuSE Linux 10.1, SLES 10.
@@ -184,9 +194,11 @@
 fi
 fi
 
+
 %preun
 %{stop_on_removal apcupsd}
 
+
 %postun
 # Remove HALT_POWERDOWN_INSERT
 if test $1 -eq 0 -a ! -f /etc/init.d/apcupsd ; then
@@ -204,6 +216,7 @@
 %{restart_on_update apcupsd}
 %{insserv_cleanup}
 
+
 %files
 %defattr(-,root,root)
 %doc apcupsd-early-powerdown COPYING ChangeLog* DISCLAIMER Developers INSTALL 
README.SUSE ReleaseNotes examples/
@@ -240,10 +253,13 @@
 %doc %{_mandir}/man?/*.*
 /var/adm/fillup-templates/sysconfig.*
 
+
 %files gui
 %defattr(-,root,root)
 %{_bindir}/gapcmon
 %{_datadir}/applications/gapcmon.desktop
 %{_datadir}/pixmaps/*.png
 
+
+
 %changelog

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



commit capi4hylafax for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package capi4hylafax for openSUSE:Factory 
checked in at 2012-02-08 17:17:30

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


Package is capi4hylafax, Maintainer is kk...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/capi4hylafax/capi4hylafax.changes
2011-12-25 17:33:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.capi4hylafax.new/capi4hylafax.changes   
2012-02-08 17:17:32.0 +0100
@@ -1,0 +2,5 @@
+Wed Dec 21 23:33:23 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+
+---



Other differences:
--
++ capi4hylafax.spec ++
--- /var/tmp/diff_new_pack.I8AqNs/_old  2012-02-08 17:17:33.0 +0100
+++ /var/tmp/diff_new_pack.I8AqNs/_new  2012-02-08 17:17:33.0 +0100
@@ -15,6 +15,8 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   capi4hylafax
 BuildRequires:  capi4linux
 BuildRequires:  capi4linux-devel
@@ -23,7 +25,6 @@
 BuildRequires:  libpng-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  pwdutils
-ExcludeArch:s390 s390x
 Requires:   hylafax tiff gs_lib smtp_daemon a2ps hylafax-client
 Version:01.03.00
 Release:0
@@ -37,7 +38,7 @@
 License:GPL-2.0+
 Group:  Hardware/Fax
 PreReq: sh-utils fileutils %insserv_prereq %fillup_prereq 
/usr/sbin/useradd /usr/sbin/usermod
-Url:http://www.avm.de
+URL:http://www.avm.de
 Summary:Adds a faxcapi modem for hylafax
 
 %description
@@ -54,7 +55,7 @@
 find ../ -name .cvsignore -exec rm {} \;
 
 %build
-%configure --prefix=/usr \
+%configure \
--with-hylafax-spooldir=/var/spool/fax
 #  --enable-debug 
 make %{?_smp_mflags}

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



commit fping for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package fping for openSUSE:Factory checked 
in at 2012-02-08 17:17:43

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


Package is fping, Maintainer is pu...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/fping/fping.changes  2011-09-23 
01:58:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.fping.new/fping.changes 2012-02-08 
17:17:45.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb  8 11:19:38 UTC 2012 - pu...@suse.com
+
+- update to fping-3.0
+  * rewritten main loop for improved performance
+  * -T parameter (select timeout) now obsolete
+  * Maintenance taken over from unresponsive previous maintainer
+  * New homepage: www.fping.org
+- drop fping-2.4b2-fixwarnings.patch (obsolete)
+
+---

Old:

  fping-2.4b2-fixwarnings.patch
  fping-2.4b2_to-ipv6.tar.bz2

New:

  fping-3.0.tar.gz



Other differences:
--
++ fping.spec ++
--- /var/tmp/diff_new_pack.q6FDXe/_old  2012-02-08 17:18:09.0 +0100
+++ /var/tmp/diff_new_pack.q6FDXe/_new  2012-02-08 17:18:09.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package fping (Version 2.4b2)
+# spec file for package fping
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,15 +16,13 @@
 #
 
 Name:   fping
-Url:http://www.fping.com
+Url:http://www.fping.org
+Version:3.0
+Release:0
+Summary:A program to ping multiple hosts
 License:MIT
 Group:  Productivity/Networking/Diagnostic
-Version:2.4b2
-Release:139
-Summary:A Program to Ping Multiple Hosts
-# IPv6 support patch: http://unfix.org/projects/ipv6/
-Source: %{name}-%{version}_to-ipv6.tar.bz2
-Patch:  fping-2.4b2-fixwarnings.patch
+Source: http://fping.org/dist/%{name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -46,12 +44,7 @@
 designed to be easy to parse.
 
 %prep
-%setup -n fping-2.4b2_to-ipv6
-%patch
-# fix the Changelog
-tr -d '\r'  ChangeLog  ChangeLog.new
-mv ChangeLog.new ChangeLog
-chmod -x COPYING README
+%setup
 
 %build
 %configure
@@ -64,7 +57,6 @@
 %defattr(-,root,root)
 %doc ChangeLog COPYING README
 %doc %{_mandir}/man8/fping.8.gz
-%_sbindir/fping
-%_sbindir/fping6
+%{_sbindir}/fping
 
 %changelog

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



commit gengetopt for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package gengetopt for openSUSE:Factory 
checked in at 2012-02-08 17:17:54

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


Package is gengetopt, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/gengetopt/gengetopt.changes  2011-09-28 
15:24:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.gengetopt.new/gengetopt.changes 2012-02-08 
17:18:09.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb  8 11:52:02 UTC 2012 - pu...@suse.com
+
+- cleanup spec file 
+
+---



Other differences:
--
++ gengetopt.spec ++
--- /var/tmp/diff_new_pack.1fCStr/_old  2012-02-08 17:18:14.0 +0100
+++ /var/tmp/diff_new_pack.1fCStr/_new  2012-02-08 17:18:14.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gengetopt
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,15 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   gengetopt
 Version:2.22.5
-Release:1
-License:GPL-3.0+
+Release:0
 Summary:Commandline parser generator
-Url:http://www.gnu.org/software/gengetopt/
+License:GPL-3.0+
 Group:  Development/Languages/C and C++
+Url:http://www.gnu.org/software/gengetopt/
 Source: %{name}-%{version}.tar.bz2
 BuildRequires:  gcc-c++
 Requires(pre):  info

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



commit isdngw for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package isdngw for openSUSE:Factory checked 
in at 2012-02-08 17:18:03

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


Package is isdngw, Maintainer is kk...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/isdngw/isdngw.changes2011-12-25 
17:35:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.isdngw.new/isdngw.changes   2012-02-08 
17:18:14.0 +0100
@@ -1,0 +2,6 @@
+Wed Dec 21 23:44:35 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+- Use %_smp_mflags for parallel building
+
+---



Other differences:
--
++ isdngw.spec ++
--- /var/tmp/diff_new_pack.PI1XF6/_old  2012-02-08 17:18:14.0 +0100
+++ /var/tmp/diff_new_pack.PI1XF6/_new  2012-02-08 17:18:14.0 +0100
@@ -16,6 +16,7 @@
 #
 
 
+
 Name:   isdngw
 BuildRequires:  SDL-devel
 BuildRequires:  gcc-c++
@@ -28,7 +29,7 @@
 BuildRequires:  sgml-skel
 BuildRequires:  sgmltool
 BuildRequires:  speex-devel
-Url:http://www.gnugk.org/h323-isdn-gw.html
+URL:http://www.gnugk.org/h323-isdn-gw.html
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %insserv_prereq %fillup_prereq
 %if %suse_version  1130
@@ -56,7 +57,7 @@
 #%patch
 
 %build
-make RPM_OPT_FLAGS=$RPM_OPT_FLAGS -fexceptions 
OPENH323DIR=/usr/share/openh323 PREFIX=/usr OH323_LIBDIR=%{_libdir} opt
+make RPM_OPT_FLAGS=$RPM_OPT_FLAGS -fexceptions 
OPENH323DIR=/usr/share/openh323 PREFIX=/usr OH323_LIBDIR=%{_libdir} opt 
%{?_smp_mflags}
 
 %install
 export M=`uname -m`
@@ -93,10 +94,6 @@
 %postun
 %{insserv_cleanup}
 
-%clean
-# Clear up the mess
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 %dir /etc/isdngw

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



commit kde3-kaffeine for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package kde3-kaffeine for openSUSE:Factory 
checked in at 2012-02-08 17:18:10

Comparing /work/SRC/openSUSE:Factory/kde3-kaffeine (Old)
 and  /work/SRC/openSUSE:Factory/.kde3-kaffeine.new (New)


Package is kde3-kaffeine, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/kde3-kaffeine/kde3-kaffeine.changes  
2011-11-21 15:45:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.kde3-kaffeine.new/kde3-kaffeine.changes 
2012-02-08 17:18:15.0 +0100
@@ -4 +4 @@
-- disable obsolete patch that prevented playing DVDs
+- disable obsolete patch that prevented playing DVDs (bnc#731893)



Other differences:
--

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



commit lftp for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

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

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


Package is lftp, Maintainer is pu...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/lftp/lftp.changes2011-10-25 
16:07:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.lftp.new/lftp.changes   2012-02-08 
17:18:24.0 +0100
@@ -1,0 +2,24 @@
+Wed Jan 25 23:19:14 UTC 2012 - pascal.ble...@opensuse.org
+
+- update to 4.3.5:
+  * fixed ascii mode uploads to sftp
+  * fixed local command without arguments
+  * fixed https
+  * fixed large memory consumption in ftp when target disk is full
+
+---
+Sun Jan  1 13:23:05 UTC 2012 - pascal.ble...@opensuse.org
+
+- update to 4.3.4:
+  * new settings cmd:at-exit-bg, cmd:at-finish, cmd:at-queue-finish
+  * added timestamps in readline history
+  * improved attach command to remove stale sockets
+  * fixed core dump when ftp server does not return valid PWD result
+  * fixed a special ftp cd case when real cwd equals to the new cwd
+  * fixed torrent status command line
+  * fixed torrent to open files with CLOEXEC flag
+  * fixed exit code of queue command
+  * fixed mirror to follow local symlinks with -L option
+  * fixed a crash with https
+
+---

Old:

  lftp-4.3.3.tar.bz2

New:

  lftp-4.3.5.tar.bz2



Other differences:
--
++ lftp.spec ++
--- /var/tmp/diff_new_pack.d8QvQh/_old  2012-02-08 17:18:26.0 +0100
+++ /var/tmp/diff_new_pack.d8QvQh/_new  2012-02-08 17:18:26.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lftp
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -24,7 +24,7 @@
 %endif
 
 Name:   lftp
-Version:4.3.3
+Version:4.3.5
 Release:0
 %define vi_version 1.1
 License:GPL-2.0+

++ lftp-4.3.3.tar.bz2 - lftp-4.3.5.tar.bz2 ++
 36395 lines of diff (skipped)


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



commit libelf0 for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libelf0 for openSUSE:Factory checked 
in at 2012-02-08 17:18:32

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


Package is libelf0, Maintainer is meiss...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libelf0/libelf0.changes  2011-09-23 
02:08:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.libelf0.new/libelf0.changes 2012-02-08 
17:18:33.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb  1 01:16:05 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections per specfile guideline suggestions
+- Parallel building using %_smp_mflags
+
+---



Other differences:
--
++ libelf0.spec ++
--- /var/tmp/diff_new_pack.SZAZth/_old  2012-02-08 17:18:34.0 +0100
+++ /var/tmp/diff_new_pack.SZAZth/_new  2012-02-08 17:18:34.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libelf0 (Version 0.8.13)
+# spec file for package libelf0
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,16 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   libelf0
 Summary:An ELF Object File Access Library
-BuildRequires:  pkgconfig
-Version:0.8.13
-Release:1
 License:LGPL-2.1+
 Group:  System/Libraries
+BuildRequires:  pkgconfig
+Version:0.8.13
+Release:0
 Url:http://www.mr511.de/software/
 Source: libelf-%{version}.tar.bz2
 Source2:baselibs.conf
@@ -51,7 +48,6 @@
 %package devel
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Libraries/C and C++
-License:LGPL-2.1+
 # bug437293
 %ifarch ppc64
 Obsoletes:  libelf-devel-64bit
@@ -75,7 +71,7 @@
 
 %build
 %configure
-make
+make %{?_smp_mflags}
 
 %install
 make install instroot=$RPM_BUILD_ROOT
@@ -89,9 +85,6 @@
 
 %postun -p /sbin/ldconfig
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files -f libelf.lang
 %defattr(-,root,root)
 %{_libdir}/libelf.so.*

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



commit libltdl3 for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package libltdl3 for openSUSE:Factory 
checked in at 2012-02-08 17:18:39

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


Package is libltdl3, Maintainer is co...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libltdl3/libltdl3.changes2011-09-23 
02:08:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.libltdl3.new/libltdl3.changes   2012-02-08 
17:18:41.0 +0100
@@ -1,0 +2,6 @@
+Tue Jan 31 16:47:26 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections per specfile guideline suggestions
+- Parallel building using %_smp_mflags
+
+---



Other differences:
--
++ libltdl3.spec ++
--- /var/tmp/diff_new_pack.IH8UXe/_old  2012-02-08 17:18:42.0 +0100
+++ /var/tmp/diff_new_pack.IH8UXe/_new  2012-02-08 17:18:42.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package libltdl3 (Version 1.5.26)
+# spec file for package libltdl3
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,21 +16,18 @@
 #
 
 
-
 Name:   libltdl3
+Summary:Libtool Runtime Library
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
-Summary:Libtool Runtime Library
 Version:1.5.26
-Release:8
-AutoReqProv:on
+Release:0
 Provides:   libltdl-3 = 1.5.26
 Obsoletes:  libltdl-3  1.5.26
 Url:http://www.gnu.org/software/libtool/
 Source: ftp://ftp.gnu.org/pub/gnu/libtool/libtool-%{version}.tar.gz
 Source2:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-AutoReqProv:on
 Provides:   libltdl
 Obsoletes:  libltdl = 1.5.22
 %ifarch ppc64
@@ -58,7 +55,7 @@
 %build
 ./configure CFLAGS=$RPM_OPT_FLAGS \
--prefix=/usr --infodir=%{_infodir} --libdir=%{_libdir}
-make
+make %{?_smp_mflags}
 
 %install
 make -C libltdl install DESTDIR=$RPM_BUILD_ROOT
@@ -69,9 +66,6 @@
 
 %postun -p /sbin/ldconfig
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-, root, root)
 %{_libdir}/libltdl.so.*

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



commit mercurial for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package mercurial for openSUSE:Factory 
checked in at 2012-02-08 17:18:56

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


Package is mercurial, Maintainer is ti...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/mercurial/mercurial.changes  2012-01-20 
20:24:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.mercurial.new/mercurial.changes 2012-02-08 
17:18:59.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb  7 20:18:47 UTC 2012 - w...@rosenauer.org
+
+- update to version 2.1
+  * feature and bugfix release
+
+---
@@ -5 +11 @@
-  * bugfixe release
+  * bugfix release

Old:

  mercurial-2.0.2.tar.gz

New:

  mercurial-2.1.tar.gz



Other differences:
--
++ mercurial.spec ++
--- /var/tmp/diff_new_pack.mluvGG/_old  2012-02-08 17:19:00.0 +0100
+++ /var/tmp/diff_new_pack.mluvGG/_new  2012-02-08 17:19:00.0 +0100
@@ -15,9 +15,8 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Name:   mercurial
-Version:2.0.2
+Version:2.1
 Release:0
 Summary:Scalable Distributed SCM
 License:GPL-2.0+

++ mercurial-2.0.2.tar.gz - mercurial-2.1.tar.gz ++
 71502 lines of diff (skipped)

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



commit ohphone for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package ohphone for openSUSE:Factory checked 
in at 2012-02-08 17:19:15

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


Package is ohphone, Maintainer is kk...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/ohphone/ohphone.changes  2011-12-15 
16:07:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.ohphone.new/ohphone.changes 2012-02-08 
17:19:16.0 +0100
@@ -1,0 +2,6 @@
+Fri Dec  9 15:40:03 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+- Use %_smp_mflags for parallel building
+
+---



Other differences:
--
++ ohphone.spec ++
--- /var/tmp/diff_new_pack.waeGxw/_old  2012-02-08 17:19:18.0 +0100
+++ /var/tmp/diff_new_pack.waeGxw/_new  2012-02-08 17:19:18.0 +0100
@@ -15,6 +15,8 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   ohphone
 BuildRequires:  SDL-devel
 BuildRequires:  kdelibs3-devel
@@ -23,7 +25,7 @@
 BuildRequires:  openldap2-devel
 BuildRequires:  pwlib-devel
 BuildRequires:  speex-devel
-Url:http://www.openh323.org
+URL:http://www.openh323.org
 Summary:An H.323 Net Telephone Application
 License:MPL-1.0
 Group:  Productivity/Telephony/H323/Clients
@@ -45,10 +47,10 @@
 
 %build
 export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing
-make XLIBDIR=/usr/X11R6/%{_lib} OPENH323DIR=/usr/share/openh323 PREFIX=/usr 
OH323_LIBDIR=%{_libdir} opt
+make XLIBDIR=/usr/X11R6/%{_lib} OPENH323DIR=/usr/share/openh323 \
+   PREFIX=/usr OH323_LIBDIR=%{_libdir} opt %{?_smp_mflags}
 
 %install
-[ $RPM_BUILD_ROOT != / ]  [ -d $RPM_BUILD_ROOT ]  rm -rf 
$RPM_BUILD_ROOT;
 mkdir -p $RPM_BUILD_ROOT/usr/bin
 mkdir -p $RPM_BUILD_ROOT/usr/share/man/man1
 export M=`uname -m`
@@ -58,10 +60,6 @@
 install -c obj_linux_$M_r/ohphone $RPM_BUILD_ROOT/usr/bin
 install -m644 -c ohphone.1 $RPM_BUILD_ROOT/usr/share/man/man1
 
-%clean
-# Clear up the mess
-[ $RPM_BUILD_ROOT != / ]  [ -d $RPM_BUILD_ROOT ]  rm -rf 
$RPM_BUILD_ROOT;
-
 %files
 %defattr(-,root,root)
 %{_mandir}/man1/ohphone.1.gz

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



commit okular for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package okular for openSUSE:Factory checked 
in at 2012-02-08 17:19:19

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


Package is okular, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/okular/okular.changes2011-12-08 
12:13:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.okular.new/okular.changes   2012-02-08 
17:19:21.0 +0100
@@ -1,0 +2,17 @@
+Wed Jan 18 21:00:22 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.0
+  * first stable release of KDE 4.8 (only critical fixes over 4.7.98)
+  * see http://kde.org/announcements/4.8/ for details
+  
+
+---
+Tue Jan 10 18:47:23 CET 2012 - dmuel...@suse.de
+
+- update to 4.7.98
+  * RC2+ milestone release of KDE 4.8
+  *  see http://kde.org/announcements/4.8/ for details
+- remove upstreamed patch
+- add empty 4_8_BRANCH.diff that can be refreshed later
+
+---

Old:

  fix_print_with_landscape.diff
  okular-4.7.4.tar.bz2

New:

  4_8_BRANCH.diff
  okular-4.8.0.tar.bz2



Other differences:
--
++ okular.spec ++
--- /var/tmp/diff_new_pack.Jb1ild/_old  2012-02-08 17:19:22.0 +0100
+++ /var/tmp/diff_new_pack.Jb1ild/_new  2012-02-08 17:19:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package okular
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,14 +16,14 @@
 #
 
 Name:   okular
-Version:4.7.4
+Version:4.8.0
 Release:0
 Summary:Document Viewer
 License:GPL-2.0+
 Group:  Productivity/Office/Other
 Url:http://www.kde.org
 Source0:%{name}-%{version}.tar.bz2
-Patch0: fix_print_with_landscape.diff
+Patch0: 4_8_BRANCH.diff
 BuildRequires:  OpenEXR-devel
 BuildRequires:  chmlib-devel
 BuildRequires:  fdupes
@@ -68,7 +68,7 @@
 
 %prep
 %setup -q
-%patch0 -p1
+%patch0
 
 %build
   %cmake_kde4 -d build

++ 4_8_BRANCH.diff ++
--- a/BRANCH_STATUS
+++ b/BRANCH_STATUS
@@ -0,0 +1,2 @@
+current HEAD: 6606337b9bdf98111276d0fd3d803a644462cb28
+git diff v4.7.2..origin/KDE/4.7
diff --git a/includes/CMakeLists.txt b/includes/CMakeLists.txt
index a967a92..1c6907e 100644
++ okular-4.7.4.tar.bz2 - okular-4.8.0.tar.bz2 ++
 13569 lines of diff (skipped)

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



commit openconnect for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package openconnect for openSUSE:Factory 
checked in at 2012-02-08 17:19:26

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


Package is openconnect, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/openconnect/openconnect.changes  2011-09-23 
02:15:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.openconnect.new/openconnect.changes 
2012-02-08 17:19:37.0 +0100
@@ -1,0 +2,30 @@
+Thu Jan  5 14:10:20 UTC 2012 - toddrme2...@gmail.com
+
+- Update to version 3.15
+  * Fix for reading multiple packets from Solaris tun device.
+  * Call bindtextdomain() to ensure that translations are found in install 
path.
+- Update to version 3.14
+  * Move executable to $prefix/sbin.
+  * Fix build issues on OSX, OpenIndiana, DragonFlyBSD, OpenBSD, FreeBSD  
NetBSD.
+  * Fix non-portable (void *) arithmetic.
+  * Make more messages translatable.
+  * Attempt to make NLS support more portable (with fewer dependencies).
+- Update to version 3.13
+  * Add --cert-expire-warning option.
+  * Give visible warning when server dislikes client SSL certificate.
+  * Add localisation support.
+  * Fix build on Debian systems where dtls1_stop_timer() is not available.
+  * Fix libproxy detection.
+  * Enable a useful set of compiler warnings by default.
+  * Fix various minor compiler warnings.
+- Update to version 3.12
+  * Fix DTLS compatibility with ASA firmware 8.4.1(11) and above.
+  * Fix build failures on GNU Hurd, on systems with ancient OpenSSL, and on 
Debian.
+  * Add --pid-file option.
+  * Print SHA1 fingerprint with server certificate details.
+- spec file changes
+  * Package language files in a lang package
+  * Since the binary is in /usr/sbin, keep the manual as man8
+  * Package .a file in -devel package and have -devel package provide 
-devel-static
+
+---

Old:

  openconnect-3.11.tar.gz

New:

  openconnect-3.15.tar.gz



Other differences:
--
++ openconnect.spec ++
--- /var/tmp/diff_new_pack.FaIMvA/_old  2012-02-08 17:19:39.0 +0100
+++ /var/tmp/diff_new_pack.FaIMvA/_new  2012-02-08 17:19:39.0 +0100
@@ -15,16 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   openconnect
-Version:3.11
+Version:3.15
 Release:1
 License:LGPL-2.1
 Summary:Open client for Cisco AnyConnect VPN
 Url:http://www.infradead.org/openconnect.html
 Group:  Productivity/Networking/Security
-Source0:
ftp://ftp.infradead.org/pub/openconnect/%{name}-%{version}.tar.gz
+Source0:ftp://ftp.infradead.org/pub/%{name}/%{name}-%{version}.tar.gz
 BuildRequires:  openssl-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(dbus-1)
@@ -46,6 +44,7 @@
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
 Recommends: pkg-config
+Provides:   %{name}-devel-static
 
 %description devel
 This package provides a client for Cisco's AnyConnect VPN, which uses
@@ -58,6 +57,7 @@
 
 %prep
 %setup -q
+%lang_package
 
 %build
 %configure
@@ -65,28 +65,31 @@
 
 %install
 %make_install
-install -Dm0644 openconnect.8 %{buildroot}/%{_mandir}/man1/openconnect.1
-rm -r %{buildroot}%{_mandir}/man8/
 rm %{buildroot}%{_libdir}/libopenconnect.la
+%find_lang %{name}
 
 %post   -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %clean
 rm -rf %{buildroot}
 
 %files
-%defattr(-,root,root,-)
+%defattr(-,root,root)
 %doc AUTHORS COPYING.LGPL TODO
-%{_mandir}/man1/*
-%{_bindir}/openconnect
+%{_sbindir}/openconnect
+%{_mandir}/man8/*
 %{_libdir}/libopenconnect.so.*
+%{_datadir}/openconnect/
 
 %files devel
-%defattr(-,root,root,-)
+%defattr(-,root,root)
 %{_includedir}/openconnect.h
 %{_libdir}/libopenconnect.so
+%{_libdir}/libopenconnect.a
 %{_libdir}/pkgconfig/openconnect.pc
 
+%files lang -f %{name}.lang
+%defattr(-,root,root)
+
 %changelog

++ openconnect-3.11.tar.gz - openconnect-3.15.tar.gz ++
 117082 lines of diff (skipped)

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



commit openstack-glance for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package openstack-glance for 
openSUSE:Factory checked in at 2012-02-08 17:19:34

Comparing /work/SRC/openSUSE:Factory/openstack-glance (Old)
 and  /work/SRC/openSUSE:Factory/.openstack-glance.new (New)


Package is openstack-glance, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/openstack-glance/openstack-glance.changes
2012-01-27 15:22:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.openstack-glance.new/openstack-glance.changes   
2012-02-08 17:19:39.0 +0100
@@ -1,0 +2,11 @@
+Mon Jan 16 16:01:42 UTC 2012 - prus...@opensuse.org
+
+- fix initscript scriptlets
+
+---
+Tue Jan 10 12:57:51 UTC 2012 - cfarr...@suse.com
+
+- license update: Apache-2.0 and GPL-3.0+
+  Use SPDX format. See rfc.sh (GPL-3.0+)
+
+---



Other differences:
--
++ openstack-glance.spec ++
--- /var/tmp/diff_new_pack.of5GkD/_old  2012-02-08 17:19:41.0 +0100
+++ /var/tmp/diff_new_pack.of5GkD/_new  2012-02-08 17:19:41.0 +0100
@@ -40,7 +40,7 @@
 %define _version 2011.3
 %endif
 Release:1
-License:ASL 2.0
+License:Apache-2.0 and GPL-3.0+
 Summary:Discover, Register and Retrieve virtual machine images 
%{vcs_summary_warn}
 Url:http://glance.openstack.org/
 Group:  Development/Libraries/Python
@@ -123,12 +123,15 @@
 getent passwd glance /dev/null || useradd -r -g glance -d 
%{sharedstatedir}/glance -s /sbin/nologin -c OpenStack glance Daemons glance
 exit 0
 
+%post
+%fillup_and_insserv openstack-glance
+%restart_on_update openstack-glance
+
 %preun
 %stop_on_removal openstack-glance
 
 %postun
-%restart_on_update openstack-glance
-%insserv_cleanup openstack-glance
+%insserv_cleanup
 
 %clean
 rm -rf %{buildroot}

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



commit pam_ccreds for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package pam_ccreds for openSUSE:Factory 
checked in at 2012-02-08 17:19:41

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


Package is pam_ccreds, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/pam_ccreds/pam_ccreds.changes2011-12-07 
14:38:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.pam_ccreds.new/pam_ccreds.changes   
2012-02-08 17:19:42.0 +0100
@@ -1,0 +2,7 @@
+Wed Dec  7 13:59:44 UTC 2011 - jeng...@medozas.de
+
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+- Use %_smp_mflags for parallel building
+
+---



Other differences:
--
++ pam_ccreds.spec ++
--- /var/tmp/diff_new_pack.ucWqq1/_old  2012-02-08 17:19:43.0 +0100
+++ /var/tmp/diff_new_pack.ucWqq1/_new  2012-02-08 17:19:43.0 +0100
@@ -16,6 +16,7 @@
 #
 
 
+
 Name:   pam_ccreds
 BuildRequires:  automake
 BuildRequires:  db-devel
@@ -26,7 +27,7 @@
 Summary:Pam module to cache login credentials
 License:GPL-2.0+
 Group:  Productivity/Security
-Url:http://www.padl.com/OSS/pam_ccreds.html
+URL:http://www.padl.com/OSS/pam_ccreds.html
 Source: pam_ccreds-%{version}.tar.bz2
 Source2:baselibs.conf
 Patch1: pam_ccreds-readme-fix.dif
@@ -46,7 +47,7 @@
 Luke Howard lu...@padl.com
 
 %prep
-%setup -q -n pam_ccreds-%{version}
+%setup -q
 %patch1
 
 %build
@@ -55,19 +56,13 @@
 export SUSE_ASNEEDED=0
 %{suse_update_config -f}
 autoreconf --verbose --force --install
-CFLAGS=$RPM_OPT_FLAGS \
-./configure --libdir=/%{_lib} --with-pamdir=/%{_lib}/security \
---prefix=/usr 
-make
+%configure --libdir=/%{_lib} --with-pamdir=/%{_lib}/security
+make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
 install -d 755 $RPM_BUILD_ROOT/%{_lib}/security
 install -m 755 pam_ccreds.so $RPM_BUILD_ROOT/%{_lib}/security
 
-%clean
-#rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(444,root,root,755)
 %doc README COPYING pam.conf

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



commit perl-Sys-Virt for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Sys-Virt for openSUSE:Factory 
checked in at 2012-02-08 17:20:08

Comparing /work/SRC/openSUSE:Factory/perl-Sys-Virt (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new (New)


Package is perl-Sys-Virt, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Sys-Virt/perl-Sys-Virt.changes  
2011-09-23 12:38:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Sys-Virt.new/perl-Sys-Virt.changes 
2012-02-08 17:20:10.0 +0100
@@ -1,0 +2,19 @@
+Wed Feb  8 11:13:18 UTC 2012 - idon...@suse.com
+
+- Fix license to be GPL-1.0+ 
+
+---
+Fri Jan  6 16:02:02 MST 2012 - jfeh...@suse.com
+
+- Update to 0.9.8
+ - Add all new APIs in libvirt 0.9.8
+ - Requires libvirt = 0.9.8
+
+---
+Thu Sep 29 17:35:54 MDT 2011 - jfeh...@suse.com
+
+- Update to 0.9.5
+ - Add all new APIs in libvirt 0.9.5
+ - Requires libvirt = 0.9.5
+
+---

Old:

  Sys-Virt-0.9.4.tar.gz

New:

  Sys-Virt-0.9.8.tar.gz



Other differences:
--
++ perl-Sys-Virt.spec ++
--- /var/tmp/diff_new_pack.VWTF4o/_old  2012-02-08 17:20:12.0 +0100
+++ /var/tmp/diff_new_pack.VWTF4o/_new  2012-02-08 17:20:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Sys-Virt
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,23 +16,22 @@
 #
 
 
-
 Name:   perl-Sys-Virt
-Version:0.9.4
-Release:1
-License:GPL+
+Version:0.9.8
+Release:0
 %define cpan_name Sys-Virt
 Summary:Represent and manage a libvirt hypervisor connection
-Url:http://search.cpan.org/dist/Sys-Virt/
+License:GPL-1.0+
 Group:  Development/Libraries/Perl
+Url:http://search.cpan.org/dist/Sys-Virt/
 Source: %{cpan_name}-%{version}.tar.gz
+BuildRequires:  libvirt-devel = 0.9.8
+BuildRequires:  perl-macros
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::Pod)
 BuildRequires:  perl(Test::Pod::Coverage)
 BuildRequires:  perl(XML::XPath)
 BuildRequires:  perl(XML::XPath::XMLParser)
-BuildRequires:  libvirt-devel = 0.9.4
-BuildRequires:  perl-macros
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 

++ Sys-Virt-0.9.4.tar.gz - Sys-Virt-0.9.8.tar.gz ++
 5913 lines of diff (skipped)

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



commit rsync for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package rsync for openSUSE:Factory checked 
in at 2012-02-08 17:20:20

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


Package is rsync, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rsync/rsync.changes  2011-12-27 
14:20:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.rsync.new/rsync.changes 2012-02-08 
17:20:27.0 +0100
@@ -1,0 +2,5 @@
+Sun Feb  5 23:25:26 UTC 2012 - crrodrig...@opensuse.org
+
+- Build with PIE and full RELRO 
+
+---



Other differences:
--
++ rsync.spec ++
--- /var/tmp/diff_new_pack.r6vclz/_old  2012-02-08 17:20:40.0 +0100
+++ /var/tmp/diff_new_pack.r6vclz/_new  2012-02-08 17:20:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rsync
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define with_system_zlib 0
 %if 0%{?suse_version}  1120
 %define _initddir %{_sysconfdir}/init.d
@@ -78,8 +79,9 @@
 patch -p1  patches/drop-cache.diff
 
 %build
-autoheader
-autoconf
+autoreconf -fiv
+export CFLAGS=%optflags -fPIC -DPIC -fPIE
+export LDFLAGS=-Wl,-z,relro,-z,now -pie
 %configure \
   --disable-debug \
   --enable-slp \

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



commit sblim-cmpi-base for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package sblim-cmpi-base for openSUSE:Factory 
checked in at 2012-02-08 17:20:26

Comparing /work/SRC/openSUSE:Factory/sblim-cmpi-base (Old)
 and  /work/SRC/openSUSE:Factory/.sblim-cmpi-base.new (New)


Package is sblim-cmpi-base, Maintainer is pu...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/sblim-cmpi-base/sblim-cmpi-base.changes  
2011-09-23 12:45:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.sblim-cmpi-base.new/sblim-cmpi-base.changes 
2012-02-08 17:20:40.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb  8 11:12:08 UTC 2012 - pu...@suse.com
+
+- fix file-packaged-twice error
+
+---
+Sun Nov 27 06:47:34 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ sblim-cmpi-base.spec ++
--- /var/tmp/diff_new_pack.V0pQoK/_old  2012-02-08 17:20:43.0 +0100
+++ /var/tmp/diff_new_pack.V0pQoK/_new  2012-02-08 17:20:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sblim-cmpi-base
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,15 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   sblim-cmpi-base
-BuildRequires:  gcc-c++ sblim-cmpi-devel sblim-indication_helper-devel 
sblim-sfcb sblim-testsuite
+BuildRequires:  gcc-c++
+BuildRequires:  libtool
+BuildRequires:  sblim-cmpi-devel
+BuildRequires:  sblim-indication_helper-devel
+BuildRequires:  sblim-sfcb
+BuildRequires:  sblim-testsuite
 Version:1.6.1
-Release:1
-Group:  System/Management
-License:Eclipse Public License 1.0
+Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   cim-server cim-schema
 Url:http://sblim.wiki.sourceforge.net/
@@ -34,6 +34,8 @@
 # PATCH-FIX-UPSTREAM sblim-cmpi-base-%{version}-missing-fclose.patch [ 
bnc#530325 upstream#2843613 ] mhruse...@suse.cz -- Adding missing fclose
 Patch1: sblim-cmpi-base-%{version}-missing-fclose.patch
 Summary:SBLIM Base Instrumentation
+License:EPL-1.0
+Group:  System/Management
 
 %description
 Standards Based Linux Instrumentation Base Providers
@@ -45,7 +47,6 @@
 SBLIM Project
 
 %package devel
-License:Eclipse Public License 1.0
 Summary:SBLIM Base Instrumentation Header Development Files
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -60,7 +61,6 @@
 SBLIM Project
 
 %package testsuite
-License:Eclipse Public License 1.0
 Summary:SBLIM Base Instrumentation (test suite)
 Group:  System/Management
 Requires:   %{name} = %{version}
@@ -157,7 +157,6 @@
 %files devel
 %defattr(-,root,root)
 %dir %{_includedir}/sblim
-%{_libdir}/cmpi/libcmpiOSBase_OperatingSystemProvider.so
 %{_includedir}/sblim/*
 %{_libdir}/libcmpiOSBase_Common.so
 %{_libdir}/libdmiinfo.so

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



commit sfftobmp for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package sfftobmp for openSUSE:Factory 
checked in at 2012-02-08 17:20:45

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


Package is sfftobmp, Maintainer is kk...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/sfftobmp/sfftobmp.changes2011-12-02 
13:22:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.sfftobmp.new/sfftobmp.changes   2012-02-08 
17:20:46.0 +0100
@@ -1,0 +2,6 @@
+Fri Dec  2 00:18:38 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant/unwanted tags/section (cf. specfile guidelines)
+- Use %_smp_mflags for parallel building
+
+---



Other differences:
--
++ sfftobmp.spec ++
--- /var/tmp/diff_new_pack.FlOux8/_old  2012-02-08 17:20:49.0 +0100
+++ /var/tmp/diff_new_pack.FlOux8/_new  2012-02-08 17:20:49.0 +0100
@@ -15,6 +15,8 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   sfftobmp
 BuildRequires:  automake
 BuildRequires:  boost-devel
@@ -28,7 +30,7 @@
 Release:0
 Summary:Tool to convert Structured Fax Files (.sff) to other image 
formats
 Source: %{name}-%{version}.tar.bz2 
-Url:http://sfftools.sourceforge.net/
+URL:http://sfftools.sourceforge.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Patch:  %{name}-gcc43.diff
 Patch1: sfftobmp-codecleanup.diff
@@ -44,12 +46,6 @@
 all other graphics formats using the PBMPLUS tools that are included in
 almost every Linux distribution nowadays.
 
-
-
-Authors:
-
-Peter Schaefer
-
 %prep
 %setup -q -n %{name}%{version}
 dos2unix -c mac src/output.h
@@ -64,7 +60,7 @@
 touch INSTALL NEWS README AUTHORS ChangeLog COPYING
 autoreconf --force --install
 %configure
-%{__make} %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
 make DESTDIR=$RPM_BUILD_ROOT install
@@ -73,9 +69,6 @@
 rm -rf doc/getopt
 install -m 644 doc/* $RPM_BUILD_ROOT/%{_defaultdocdir}/sfftobmp
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 %{_bindir}/sfftobmp

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



commit sysvinit for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package sysvinit for openSUSE:Factory 
checked in at 2012-02-08 17:20:50

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


Package is sysvinit, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/sysvinit/sysvinit.changes2012-02-01 
11:54:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.sysvinit.new/sysvinit.changes   2012-02-08 
17:20:51.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb  8 12:35:24 UTC 2012 - wer...@suse.de
+
+- Work around dully check script of obs 
+
+---



Other differences:
--
++ sysvinit.spec ++
--- /var/tmp/diff_new_pack.bLC10n/_old  2012-02-08 17:20:53.0 +0100
+++ /var/tmp/diff_new_pack.bLC10n/_new  2012-02-08 17:20:53.0 +0100
@@ -32,7 +32,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  audit-devel libselinux-devel libsepol-devel pam-devel
 Url:http://savannah.nongnu.org/projects/sysvinit/
-Source: 
http://download.savannah.gnu.org/releases/sysvinit/sysvinit-%{SIVER}dsf.tar.bz2
+Source: sysvinit-%{SIVER}dsf.tar.bz2
 Source2:killproc-%{KPVER}.tar.bz2
 Source3:powerd-%{PDVER}.tar.bz2
 Source4:showconsole-%{SCVER}.tar.bz2

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



commit texmaker for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package texmaker for openSUSE:Factory 
checked in at 2012-02-08 17:20:59

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


Package is texmaker, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/texmaker/texmaker.changes2012-01-17 
16:16:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.texmaker.new/texmaker.changes   2012-02-08 
17:21:05.0 +0100
@@ -1,0 +2,27 @@
+Tue Jan 17 17:43:38 UTC 2012 - badshah...@gmail.com
+
+- Update to version 3.2.2
+  + New Features:
+- Shortcuts of the Tool and Edit menus can now be modified
+- While using the New by copying an existing file command,
+  directory of the file is now stored
+- The list of asymptote and tikz tags has been completed
+- Users can now hide the pstricks/metapost/tikz/asymptote
+  icons in the structure panels
+- Users can now hide some commands in the left tool bar of
+  the editor
+- underline tag is replaced by the emphasis tag in the
+  toolbar of the editor
+- If errors are detected, the log file is now displayed even
+  if the quick build command is not used
+- After setting a document as master, the structure and
+  bibliography are rescanned.
+  + Bugs fixed:
+- Fix a critical bug about the syntax highlighting
+- Fix a bug in the detection of the language for the user
+  manual
+- Fix a regression in highlighting of search results
+- Fix the syntax highlighting with \verb* and
+  \begin{verbatim*} commands.
+
+---

Old:

  texmaker-3.2.1.tar.bz2

New:

  texmaker-3.2.2.tar.bz2



Other differences:
--
++ texmaker.spec ++
--- /var/tmp/diff_new_pack.layo4g/_old  2012-02-08 17:21:06.0 +0100
+++ /var/tmp/diff_new_pack.layo4g/_new  2012-02-08 17:21:06.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   texmaker
-Version:3.2.1
+Version:3.2.2
 Release:1
 License:GPL-2.0
 Summary:Free cross-platform LaTeX editor
@@ -64,10 +64,6 @@
 make INSTALL_ROOT=%{buildroot} install
 %fdupes %{buildroot}%{_datadir}/
 
-%clean
-rm -rf %{buildroot}
-#
-
 %files
 %defattr(-,root,root,-)
 %doc utilities/AUTHORS utilities/COPYING utilities/CHANGELOG.txt

++ texmaker-3.2.1.tar.bz2 - texmaker-3.2.2.tar.bz2 ++
/work/SRC/openSUSE:Factory/texmaker/texmaker-3.2.1.tar.bz2 
/work/SRC/openSUSE:Factory/.texmaker.new/texmaker-3.2.2.tar.bz2 differ: char 
11, line 1

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



commit tre for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package tre for openSUSE:Factory checked in 
at 2012-02-08 17:21:03

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


Package is tre, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/tre/tre.changes  2011-09-23 12:49:01.0 
+0200
+++ /work/SRC/openSUSE:Factory/.tre.new/tre.changes 2012-02-08 
17:21:07.0 +0100
@@ -1,0 +2,7 @@
+Sun Jan 29 01:09:35 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections per specfile guideline suggestions
+- Parallel building using %_smp_mflags
+- Enable pkgconfig provides
+
+---



Other differences:
--
++ tre.spec ++
--- /var/tmp/diff_new_pack.qu1q4L/_old  2012-02-08 17:21:08.0 +0100
+++ /var/tmp/diff_new_pack.qu1q4L/_new  2012-02-08 17:21:08.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package tre (Version 0.8.0)
+# spec file for package tre
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -27,18 +27,13 @@
 Summary:POSIX compatible regexp library with approximate matching
 Url:http://laurikari.net/tre/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  pkgconfig
 
 %description
 TRE is a lightweight, robust, and efficient POSIX compatible regexp
 matching library with some exciting features such as approximate
 matching.
 
-
-
-Authors:
-
-Ville Laurikari v...@iki.fi
-
 %package -n libtre5
 License:GPL v2.1 or later
 Summary:POSIX compatible regexp library with approximate matching
@@ -70,12 +65,6 @@
 matching library with some exciting features such as approximate
 matching.
 
-
-
-Authors:
-
-Ville Laurikari v...@iki.fi
-
 %package -n agrep
 License:NON-OSI-COMPLIANT(non-commercial) ; LGPLv2.1+
 Summary:Another powerful grep with interesting features
@@ -86,7 +75,6 @@
 approximate patterns as well as block oriented search.
 
 
-
 Authors:
 
 Sun Wu
@@ -94,23 +82,20 @@
 Burra Gopal
 
 %prep
-%setup -q -n tre-%{version}
+%setup -q
 %patch0 -p1
 
 %build
 export CXXFLAGS=$RPM_OPT_FLAGS
 export CFLAGS=$RPM_OPT_FLAGS
 %configure --disable-static --enable-shared
-make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
 rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
 rm -rf $RPM_BUILD_ROOT/usr/share/locale/
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr (-, root, root)
 %doc ABOUT-NLS AUTHORS LICENSE NEWS README THANKS TODO

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



commit ucommon for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package ucommon for openSUSE:Factory checked 
in at 2012-02-08 17:21:08

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


Package is ucommon, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/ucommon/ucommon.changes  2011-11-29 
16:25:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.ucommon.new/ucommon.changes 2012-02-08 
17:21:10.0 +0100
@@ -1,0 +2,5 @@
+Mon Dec 26 16:40:14 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections
+
+---



Other differences:
--
++ ucommon.spec ++
--- /var/tmp/diff_new_pack.fI0UDF/_old  2012-02-08 17:21:11.0 +0100
+++ /var/tmp/diff_new_pack.fI0UDF/_new  2012-02-08 17:21:11.0 +0100
@@ -26,7 +26,7 @@
 Release:1
 License:LGPL-3.0+
 Summary:Runtime library for portable C++ threading and sockets
-Url:http://www.gnu.org/software/commoncpp
+URL:http://www.gnu.org/software/commoncpp
 Group:  System/Libraries
 Source0:
http://www.gnutelephony.org/dist/archive/ucommon-%{version}.tar.gz
 BuildRequires:  cmake
@@ -83,7 +83,6 @@
 %setup -q
 
 %build
-rm -rf build
 mkdir build
 cd build
 cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
@@ -100,15 +99,11 @@
 
 %install
 cd build
-rm -rf %{buildroot}
 %make_install
 chmod 0755 %{buildroot}%{_bindir}/ucommon-config
 chmod 0755 %{buildroot}%{_bindir}/commoncpp-config
 rm -rf %{buildroot}%{_libdir}/*.la
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr(-,root,root,-)
 %doc AUTHORS README COPYING COPYING.LESSER COPYRIGHT NEWS SUPPORT ChangeLog

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



commit v8 for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package v8 for openSUSE:Factory checked in 
at 2012-02-08 17:21:15

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


Package is v8, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/v8/v8.changes2012-01-31 10:22:44.0 
+0100
+++ /work/SRC/openSUSE:Factory/.v8.new/v8.changes   2012-02-08 
17:21:18.0 +0100
@@ -1,0 +2,11 @@
+Mon Feb  6 09:31:08 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 3.9.1.0
+  * Reduce memory use immediately after starting V8.
+  * Fixed memory leak in NativeObjectsExplorer::FindOrAddGroupInfo
+(Chromium issue 112315).
+  * Fixed a crash in dev tools (Chromium issue 107996).
+  * Added 'dependencies_traverse': 1 to v8 GYP target.
+  * Performance and stability improvements on all platforms.
+
+---

Old:

  v8.3.8.9.0.tar.lzma

New:

  v8.3.9.1.0.tar.lzma



Other differences:
--
++ v8.spec ++
--- /var/tmp/diff_new_pack.RWyH1l/_old  2012-02-08 17:21:19.0 +0100
+++ /var/tmp/diff_new_pack.RWyH1l/_new  2012-02-08 17:21:19.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   v8
-Version:3.8.9.0
+Version:3.9.1.0
 Release:0
 Summary:JavaScript Engine
 License:BSD-3-Clause

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



commit xosview for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package xosview for openSUSE:Factory checked 
in at 2012-02-08 17:21:33

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


Package is xosview, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xosview/xosview.changes  2012-02-02 
18:01:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.xosview.new/xosview.changes 2012-02-08 
17:21:35.0 +0100
@@ -1,0 +2,13 @@
+Wed Feb  8 11:39:02 UTC 2012 - wer...@suse.de
+
+- Update to xosview version 1.9.2 
+  * Fix a bug where battery meter was not redrawn
+  * Modify linux serialmeter startup to allow for a port number instead of
+True/False.  Patch provided by Horst Wente.
+  * netIface support for NetBSD.  Patch from  Bernd Ernesti.
+  * Move repository to Git
+  * Merged patches from Debian distribution
+  * Several bugfixes
+  * Improvements to defaults
+
+---
@@ -25,0 +39,5 @@
+
+---
+Wed Jun  3 02:08:28 CEST 2009 - crrodrig...@suse.de
+
+- fix build 

Old:

  xosview-1.8.0-irda.patch
  xosview-1.8.1-procsys.patch
  xosview-1.8.2-configure.patch
  xosview-1.8.3-appdef.dif
  xosview-1.8.3-diskstat.dif
  xosview-1.8.3-double.patch
  xosview-1.8.3-float-conv.patch
  xosview-1.8.3-longint.patch
  xosview-1.8.3-maxlimit.patch
  xosview-1.8.3-serial.patch
  xosview-1.8.3.dif
  xosview-1.8.3.tar.bz2

New:

  xosview-1.9.2-appdef.dif
  xosview-1.9.2-diskstat.dif
  xosview-1.9.2-double.patch
  xosview-1.9.2-float-conv.patch
  xosview-1.9.2-irda.patch
  xosview-1.9.2-longint.patch
  xosview-1.9.2-maxlimit.patch
  xosview-1.9.2-procsys.patch
  xosview-1.9.2-serial.patch
  xosview-1.9.2.dif
  xosview-1.9.2.tar.bz2



Other differences:
--
++ xosview.spec ++
--- /var/tmp/diff_new_pack.LheTH7/_old  2012-02-08 17:21:37.0 +0100
+++ /var/tmp/diff_new_pack.LheTH7/_new  2012-02-08 17:21:37.0 +0100
@@ -29,7 +29,7 @@
 #Requires:desktop-data-SuSE
 # This because /usr/bin/xrdb is part of xorg-x11
 Requires:   xorg-x11
-Version:1.8.3
+Version:1.9.2
 Release:0
 Summary:System Load Information
 License:BSD-3-Clause ; GPL-2.0+ ; MIT
@@ -41,16 +41,15 @@
 Source3:xosview.desktop
 Source4:xosview.sh
 Patch:  xosview-%{version}.dif
-Patch1: xosview-1.8.3-serial.patch
-Patch2: xosview-1.8.1-procsys.patch
-Patch3: xosview-1.8.3-maxlimit.patch
-Patch4: xosview-1.8.0-irda.patch
+Patch1: xosview-%{version}-serial.patch
+Patch2: xosview-%{version}-procsys.patch
+Patch3: xosview-%{version}-maxlimit.patch
+Patch4: xosview-%{version}-irda.patch
 Patch6: xosview-%{version}-double.patch
 Patch7: xosview-%{version}-longint.patch
-Patch8: xosview-1.8.3-float-conv.patch
-Patch9: xosview-1.8.2-configure.patch
-Patch10:xosview-1.8.3-appdef.dif
-Patch11:xosview-1.8.3-diskstat.dif
+Patch8: xosview-%{version}-float-conv.patch
+Patch10:xosview-%{version}-appdef.dif
+Patch11:xosview-%{version}-diskstat.dif
 Patch12:xosview-config.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{expand: %%global _exec_prefix %(type -p pkg-config /dev/null  pkg-config 
--variable prefix x11 || echo /usr/X11R6)}
@@ -82,7 +81,6 @@
 %patch6  -p0 -b .double
 %patch7  -p0 -b .ulong
 %patch8  -p0 -b .float-conv
-%patch9  -p0 -b .conf
 %patch10 -p0 -b .appdef
 %patch11 -p0 -b .diskstat
 %patch12 

++ xosview-1.8.3-appdef.dif - xosview-1.9.2-appdef.dif ++
--- /work/SRC/openSUSE:Factory/xosview/xosview-1.8.3-appdef.dif 2011-09-23 
12:52:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.xosview.new/xosview-1.9.2-appdef.dif
2012-02-08 17:21:35.0 +0100
@@ -1,40 +1,50 @@
 --- Xrm.cc
-+++ Xrm.cc 2006-12-11 10:46:28.0 +
-@@ -11,6 +11,7 @@
- #include stdlib.h
 Xrm.cc 2012-02-07 16:45:31.561934420 +
+@@ -9,6 +9,7 @@
  #include stdio.h//  For snprintf().
  #include ctype.h
-+#include sys/stat.h //  For stat().
- #ifdef HAVE_IOSTREAM
  #include iostream
- #else
-@@ -152,20 +153,26 @@ Listed from weakest to strongest:
++#include sys/stat.h //  For stat().
+ #include unistd.h  //  for access(), etc.  BCG
+ #include snprintf.h
+ #include general.h
+@@ -140,29 +141,34 @@ Listed from weakest to strongest:
  
//  Merge in the system resource database.
char rfilename[2048];
 +  struct stat st;
+   int result;
  
// Get the app-defaults
-+  snprintf(rfilename, 2048, /usr/share/X11/app-defaults/%s,
-+  XrmQuarkToString(_class));

commit yast2-nfs-client for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package yast2-nfs-client for 
openSUSE:Factory checked in at 2012-02-08 17:21:50

Comparing /work/SRC/openSUSE:Factory/yast2-nfs-client (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-nfs-client.new (New)


Package is yast2-nfs-client, Maintainer is mvid...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-nfs-client/yast2-nfs-client.changes
2011-11-05 12:18:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-nfs-client.new/yast2-nfs-client.changes   
2012-02-08 17:21:51.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb  8 12:00:10 UTC 2012 - mfi...@suse.com
+
+- Base server hostname combobox on existing values - bnc#547983
+
+---
+Wed Dec  7 10:05:12 UTC 2011 - co...@suse.com
+
+- fix license to be in spdx.org format
+
+---

Old:

  yast2-nfs-client-2.21.2.tar.bz2

New:

  yast2-nfs-client-2.21.3.tar.bz2



Other differences:
--
++ yast2-nfs-client.spec ++
--- /var/tmp/diff_new_pack.ab50pB/_old  2012-02-08 17:21:53.0 +0100
+++ /var/tmp/diff_new_pack.ab50pB/_new  2012-02-08 17:21:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-nfs-client
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -19,7 +19,7 @@
 
 
 Name:   yast2-nfs-client
-Version:2.21.2
+Version:2.21.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-nfs-client-2.21.2.tar.bz2 - yast2-nfs-client-2.21.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-client-2.21.2/VERSION 
new/yast2-nfs-client-2.21.3/VERSION
--- old/yast2-nfs-client-2.21.2/VERSION 2011-11-03 13:41:29.0 +0100
+++ new/yast2-nfs-client-2.21.3/VERSION 2012-02-08 13:03:19.0 +0100
@@ -1 +1 @@
-2.21.2
+2.21.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-client-2.21.2/configure.in 
new/yast2-nfs-client-2.21.3/configure.in
--- old/yast2-nfs-client-2.21.2/configure.in2011-11-03 13:42:14.0 
+0100
+++ new/yast2-nfs-client-2.21.3/configure.in2012-02-08 09:15:49.0 
+0100
@@ -1,6 +1,6 @@
 dnl configure.in for yast2-nfs-client
 dnl
-dnl -- This file is generated by y2autoconf 2.21.2 - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.21.6 - DO NOT EDIT! --
 dnl(edit configure.in.in instead)
 
 AC_INIT(yast2-nfs-client, 2.21.2, http://bugs.opensuse.org/, yast2-nfs-client)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-client-2.21.2/src/ui.ycp 
new/yast2-nfs-client-2.21.3/src/ui.ycp
--- old/yast2-nfs-client-2.21.2/src/ui.ycp  2011-11-01 13:19:30.0 
+0100
+++ new/yast2-nfs-client-2.21.3/src/ui.ycp  2012-02-08 13:06:32.0 
+0100
@@ -13,7 +13,7 @@
  *   Dan Vesely d...@suse.cz
  *   Martin Vidner mvid...@suse.cz
  *
- * $Id: ui.ycp 64602 2011-06-27 12:20:15Z jreidinger $
+ * $Id: ui.ycp 67377 2012-02-08 12:03:57Z mfilka $
  *
  * Network NFS client dialogs
  *
@@ -58,6 +58,11 @@
 liststring hosts = nil;
 
 /**
+ * List of already defined nfs mount points
+ */
+list map string,any  nfs_entries = Nfs::nfs_entries;
+
+/**
  * Let the user choose one of a list of items
  * @param titleselectionbox title
  * @param itemsa list of items
@@ -178,6 +183,7 @@
`Bottom (button)
);
 }
+
 /**
  * Ask user for an entry.
  * @param fstab_ent$[spec: file: mntops:] or nil
@@ -213,6 +219,21 @@
servers = [ proposed_server ];
}
 
+   // append already defined servers - bug #547983
+foreach( map nfs_entry, nfs_entries,
+{
+   term couple = SpecToServPath( nfs_entry[ spec]:);
+   string known_server = ;
+
+   known_server = couple[0]:;
+
+   if( !contains( servers, known_server))
+   servers = add( servers, known_server);
+});
+
+servers = sort( servers);
+   //
+
UI::OpenDialog(
`opt(`decorated),
`HBox(
@@ -232,7 +253,8 @@
),
`HSpacing(0.5),
TextAndButton (
-   `TextEntry(`id(`pathent),
+   `InputField( `id(`pathent),
+   

commit xulrunner for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package xulrunner for openSUSE:Factory 
checked in at 2012-02-08 17:21:42

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


Package is xulrunner, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/xulrunner/xulrunner.changes  2012-02-02 
18:01:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.xulrunner.new/xulrunner.changes 2012-02-08 
17:21:47.0 +0100
@@ -1,0 +2,7 @@
+Tue Feb  7 10:40:58 UTC 2012 - dval...@suse.com
+
+- Use YARR interpreter instead of PCRE on platforms where YARR JIT
+  is not supported, since PCRE doesnt build (bmo#691898)
+  - fix ppc64 build (bmo#703534)
+
+---

New:

  mozilla-bmo703534.patch
  mozilla-yarr-pcre.patch



Other differences:
--
++ xulrunner.spec ++
--- /var/tmp/diff_new_pack.nnHN3W/_old  2012-02-08 17:21:50.0 +0100
+++ /var/tmp/diff_new_pack.nnHN3W/_new  2012-02-08 17:21:50.0 +0100
@@ -16,7 +16,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Name:   xulrunner
 BuildRequires:  Mesa-devel
 BuildRequires:  autoconf213
@@ -79,6 +78,8 @@
 Patch14:mozilla-linux3.patch
 Patch15:mozilla-a11y.patch
 Patch16:mozilla-disable-neon-option.patch
+Patch17:mozilla-bmo703534.patch
+Patch18:mozilla-yarr-pcre.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   mozilla-js = %{version}
 Requires(post):  update-alternatives coreutils
@@ -198,6 +199,8 @@
 %patch14 -p1
 %patch15 -p1
 %patch16 -p1
+%patch17 -p1
+%patch18 -p1
 
 %build
 # no need to add build time to binaries

++ mozilla-bmo703534.patch ++
# HG changeset patch
# User Mike Hommey mh+mozi...@glandium.org
# Date 1321613368 -3600
# Node ID 15cf58eb7923d34de7e61df80fa5f8a18a995abf
# Parent  aeb035da53283c56370992f254e4f79d7dd180f8
Bug 703534 - Fix build failure on platforms without YARR JIT. r=luke
target: M11

diff --git a/js/src/jscompartment.cpp b/js/src/jscompartment.cpp
--- a/js/src/jscompartment.cpp
+++ b/js/src/jscompartment.cpp
@@ -45,17 +45,16 @@
 #include jsiter.h
 #include jsmath.h
 #include jsproxy.h
 #include jsscope.h
 #include jstracer.h
 #include jswatchpoint.h
 #include jswrapper.h
 #include assembler/wtf/Platform.h
-#include assembler/jit/ExecutableAllocator.h
 #include yarr/BumpPointerAllocator.h
 #include methodjit/MethodJIT.h
 #include methodjit/PolyIC.h
 #include methodjit/MonoIC.h
 #include vm/Debugger.h
 
 #include jsgcinlines.h
 #include jsscopeinlines.h
++ mozilla-pkgconfig.patch ++
--- /var/tmp/diff_new_pack.nnHN3W/_old  2012-02-08 17:21:51.0 +0100
+++ /var/tmp/diff_new_pack.nnHN3W/_new  2012-02-08 17:21:51.0 +0100
@@ -14,7 +14,7 @@
  # Add pkg-config files to the install:: target
  
 +# the apilibdir always ends with 1.9 as every patch update will provide a link
-+apilibdir = $(dir $(installdir))xulrunner-9
++apilibdir = $(dir $(installdir))xulrunner-10
 +
  pkg_config_files = \
libxul.pc \

++ mozilla-yarr-pcre.patch ++
From: Mike Hommey m...@glandium.org
Date: Sat, 24 Dec 2011 09:56:58 +0100
Subject: Bug 691898 - Use YARR interpreter instead of PCRE on platforms where
 YARR JIT is not supported

---
 js/src/Makefile.in   |   21 +
 js/src/vm/RegExpObject-inl.h |   28 ++--
 js/src/vm/RegExpObject.cpp   |   36 
 js/src/vm/RegExpObject.h |   27 ++-
 js/src/yarr/wtfbridge.h  |2 --
 5 files changed, 25 insertions(+), 89 deletions(-)

diff --git a/js/src/Makefile.in b/js/src/Makefile.in
index fc48cbd..49f0bdc 100644
--- a/js/src/Makefile.in
+++ b/js/src/Makefile.in
@@ -416,15 +416,20 @@ CPPSRCS +=checks.cc \
 
 ifeq (,$(filter arm% sparc %86 x86_64,$(TARGET_CPU)))
 
-VPATH +=$(srcdir)/yarr/pcre \
+VPATH +=$(srcdir)/assembler \
+$(srcdir)/assembler/wtf \
+$(srcdir)/yarr \
$(NULL)
 
 CPPSRCS += \
-pcre_compile.cpp \
-pcre_exec.cpp \
-pcre_tables.cpp \
-pcre_xclass.cpp \
-pcre_ucp_searchfuncs.cpp \
+Assertions.cpp \
+OSAllocatorOS2.cpp \
+OSAllocatorPosix.cpp \
+OSAllocatorWin.cpp \
+PageBlock.cpp \
+YarrInterpreter.cpp \
+YarrPattern.cpp \
+YarrSyntaxChecker.cpp \
$(NULL)
 else
 
@@ -1015,10 +1020,10 @@ endif
 # Needed to configure it correctly.  Unfortunately these

commit yast2-qt for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-02-08 17:21:56

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is yast2-qt, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2011-12-22 
13:19:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-02-08 
17:21:58.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb  8 14:54:15 CET 2012 - tgoettlic...@suse.de
+
+- Fixed bnc#731540: fixed auto-scroll in LogView
+- Version: 2.22.2
+
+---

Old:

  yast2-qt-2.22.1.tar.bz2

New:

  yast2-qt-2.22.2.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.T1regw/_old  2012-02-08 17:21:59.0 +0100
+++ /var/tmp/diff_new_pack.T1regw/_new  2012-02-08 17:21:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-qt
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.1
+Version:2.22.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.1.tar.bz2
+Source0:yast2-qt-2.22.2.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.1.tar.bz2 - yast2-qt-2.22.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/VERSION.cmake 
new/yast2-qt-2.22.2/VERSION.cmake
--- old/yast2-qt-2.22.1/VERSION.cmake   2011-12-20 16:32:18.0 +0100
+++ new/yast2-qt-2.22.2/VERSION.cmake   2012-02-08 14:54:52.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 22)
-SET(VERSION_PATCH 1)
+SET(VERSION_PATCH 2)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/package/yast2-qt.changes 
new/yast2-qt-2.22.2/package/yast2-qt.changes
--- old/yast2-qt-2.22.1/package/yast2-qt.changes2011-12-20 
16:32:18.0 +0100
+++ new/yast2-qt-2.22.2/package/yast2-qt.changes2012-02-08 
14:54:52.0 +0100
@@ -1,4 +1,10 @@
 ---
+Wed Feb  8 14:54:15 CET 2012 - tgoettlic...@suse.de
+
+- Fixed bnc#731540: fixed auto-scroll in LogView
+- Version: 2.22.2
+
+---
 Tue Dec 20 16:30:28 CET 2011 - tgoettlic...@suse.de
 
 - Confirmed license
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/src/YQLogView.cc 
new/yast2-qt-2.22.2/src/YQLogView.cc
--- old/yast2-qt-2.22.1/src/YQLogView.cc2011-12-20 16:32:18.0 
+0100
+++ new/yast2-qt-2.22.2/src/YQLogView.cc2012-02-08 14:54:52.0 
+0100
@@ -73,7 +73,7 @@
 YUI_CHECK_NEW( _caption );
 layout-addWidget( _caption );
 
-_qt_text = new QTextEdit( this );
+_qt_text = new MyTextEdit( this );
 YUI_CHECK_NEW( _qt_text );
 layout-addWidget( _qt_text );
 
@@ -82,6 +82,9 @@
 _qt_text-setSizePolicy( QSizePolicy( QSizePolicy::Expanding, 
QSizePolicy::Expanding ) );
 
 _caption-setBuddy( _qt_text );
+
+connect (_qt_text, SIGNAL(resized()), this, SLOT(slotResize()));
+
 }
 
 
@@ -119,6 +122,7 @@
 {
 _qt_text-moveCursor( QTextCursor::End );
 _qt_text-ensureCursorVisible();
+  sb-setValue( sb-maximum() );
 }
 
 _lastText = newString;
@@ -163,6 +167,20 @@
 return max( 80, hintHeight );
 }
 
+void
+YQLogView::slotResize()
+{
+QScrollBar *sb = _qt_text-verticalScrollBar();
+
+bool atEnd = sb-value() == sb-maximum();
+
+if (atEnd)
+{
+_qt_text-moveCursor( QTextCursor::End );
+_qt_text-ensureCursorVisible();
+sb-setValue( sb-maximum() );
+}
+}
 
 void
 YQLogView::setSize( int newWidth, int newHeight )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/src/YQLogView.h 
new/yast2-qt-2.22.2/src/YQLogView.h
--- old/yast2-qt-2.22.1/src/YQLogView.h 2011-12-20 16:32:18.0 +0100
+++ new/yast2-qt-2.22.2/src/YQLogView.h 2012-02-08 14:54:52.0 +0100
@@ -49,6 +49,8 @@
 #include YLogView.h
 
 class YQWidgetCaption;
+class MyTextEdit;
+
 
 
 class YQLogView : public QFrame, public 

commit NetworkManager-openconnect for openSUSE:12.1:Update:Test

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package NetworkManager-openconnect for 
openSUSE:12.1:Update:Test checked in at 2012-02-08 17:55:10

Comparing /work/SRC/openSUSE:12.1:Update:Test/NetworkManager-openconnect (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.NetworkManager-openconnect.new 
(New)


Package is NetworkManager-openconnect, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:12.1:Update:Test/NetworkManager-openconnect/NetworkManager-openconnect.changes
   2012-01-31 14:40:34.0 +0100
+++ 
/work/SRC/openSUSE:12.1:Update:Test/.NetworkManager-openconnect.new/NetworkManager-openconnect.changes
  2012-02-08 17:55:12.0 +0100
@@ -1,0 +2,7 @@
+Wed Feb  8 16:04:45 UTC 2012 - toddrme2...@gmail.com
+
+- Backport factory spec file updates to openSUSE 12.1-compatible 
+  version
+- Submitting as an update for openSUSE 12.1 (see bnc#729095)
+
+---

Old:

  NetworkManager-openconnect-0.9.2.0.tar.bz2
  nm-openconnect-0.9.2.0-g_thread_init.patch
  nm-openconnect-0.9.2.0-g_thread_new.patch
  nm-openconnect-0.9.2.0-gmutex.patch
  nm-openconnect-0.9.2.0-gtk_box_new.patch
  nm-openconnect-0.9.2.0-gtypes.patch

New:

  NetworkManager-openconnect-0.9.0.tar.bz2



Other differences:
--
++ NetworkManager-openconnect.spec ++
--- /var/tmp/diff_new_pack.CU0XIu/_old  2012-02-08 17:55:12.0 +0100
+++ /var/tmp/diff_new_pack.CU0XIu/_new  2012-02-08 17:55:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package NetworkManager-openconnect
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,23 +16,13 @@
 #
 
 Name:   NetworkManager-openconnect
-Version:0.9.2.0
+Version:0.9.0
 Release:1
 License:GPL-2.0+ ; LGPL-2.1
 Summary:NetworkManager VPN support for OpenConnect
 Url:http://www.gnome.org/projects/NetworkManager
 Group:  Productivity/Networking/System
 Source0:
http://download.gnome.org/sources/%{name}/0.9/%{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM nm-openconnect-0.9.2.0-gtypes.patch commit: 
ca8a39d1bb999ba98ead45e53041fc3ea28ecd5c - fixed in 0.9.3
-Patch0: nm-openconnect-0.9.2.0-gtypes.patch
-# PATCH-FIX-UPSTREAM nm-openconnect-0.9.2.0-gtk_box_new.patch commit: 
b2a5782abc44710345ad6f907b7d855d81061ee5 - fixed in 0.9.3
-Patch1: nm-openconnect-0.9.2.0-gtk_box_new.patch
-# PATCH-FIX-UPSTREAM nm-openconnect-0.9.2.0-g_thread_init.patch commit: 
c6d92c3e64898ea62789def04b86752dec904326 - fixed in 0.9.3
-Patch2: nm-openconnect-0.9.2.0-g_thread_init.patch
-# PATCH-FIX-UPSTREAM nm-openconnect-0.9.2.0-gmutex.patch commit: 
50af1fcf4fdb34b45799bbaa07be68b8adc8007b - fixed in 0.9.3
-Patch3: nm-openconnect-0.9.2.0-gmutex.patch
-# PATCH-FIX-UPSTREAM nm-openconnect-0.9.2.0-g_thread_new.patch commit: 
e95980d9a4b96ac72c20740a35f411ceaca61312 - fixed in 0.9.3
-Patch4: nm-openconnect-0.9.2.0-g_thread_new.patch
 BuildRequires:  intltool
 BuildRequires:  openconnect-devel
 BuildRequires:  translation-update-upstream
@@ -69,11 +59,6 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
 translation-update-upstream
 
 %build
@@ -100,7 +85,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS ChangeLog COPYING NEWS
+%doc AUTHORS ChangeLog COPYING
 %{_libexecdir}/nm-openconnect-service
 %{_libexecdir}/nm-openconnect-service-openconnect-helper
 %{_sysconfdir}/NetworkManager/VPN/nm-openconnect-service.name

++ NetworkManager-openconnect-0.9.2.0.tar.bz2 - 
NetworkManager-openconnect-0.9.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-openconnect-0.9.2.0/Makefile.in 
new/NetworkManager-openconnect-0.9.0/Makefile.in
--- old/NetworkManager-openconnect-0.9.2.0/Makefile.in  2011-11-10 
04:22:18.0 +0100
+++ new/NetworkManager-openconnect-0.9.0/Makefile.in2011-08-23 
05:20:09.0 +0200
@@ -39,7 +39,7 @@
 subdir = .
 DIST_COMMON = $(am__configure_deps) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(srcdir)/config.h.in \
-   $(top_srcdir)/configure AUTHORS COPYING ChangeLog NEWS compile \
+   $(top_srcdir)/configure AUTHORS COPYING ChangeLog compile \
config.guess config.sub depcomp install-sh ltmain.sh missing \
mkinstalldirs
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit virt-viewer for openSUSE:12.1:Update:Test

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package virt-viewer for 
openSUSE:12.1:Update:Test checked in at 2012-02-08 17:56:53

Comparing /work/SRC/openSUSE:12.1:Update:Test/virt-viewer (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.virt-viewer.new (New)


Package is virt-viewer, Maintainer is carn...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/virt-viewer/virt-viewer.changes 
2012-02-08 17:56:58.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.virt-viewer.new/virt-viewer.changes
2012-02-08 17:56:59.0 +0100
@@ -1,0 +2,17 @@
+Fri Jan  6 16:26:14 MST 2012 - carn...@novell.com
+
+- Fix failure to resize viewer.  Noted usually when tunneling via ssh 
+  virtview-git-emit-resize.patch
+
+---
+Fri Dec  2 15:59:11 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---
+Mon Nov 21 16:22:57 MST 2011 - carn...@novell.com
+
+- Always use canonical URI from libvirt connection 
+  virtview-git-canonical-uri.patch
+
+---

New:

  virtview-git-canonical-uri.patch
  virtview-git-emit-resize.patch



Other differences:
--
++ virt-viewer.spec ++
--- /var/tmp/diff_new_pack.j0p896/_old  2012-02-08 17:56:59.0 +0100
+++ /var/tmp/diff_new_pack.j0p896/_new  2012-02-08 17:56:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package virt-viewer
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,13 +16,12 @@
 #
 
 
-
 Name:   virt-viewer
 Version:0.4.1
-Release:1
+Release:0
 Summary:Virtual Machine Viewer
+License:GPL-2.0+
 Group:  System/Monitoring
-License:GPLv2+
 Url:http://www.virt-manager.org
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:virt-viewer-0.4.1.tar.gz
@@ -40,11 +39,14 @@
 Patch12:virtview-git-wildcard-hostname.patch
 Patch13:virtview-git-fn-key.patch
 Patch14:virtview-git-window-wait.patch
+Patch15:virtview-git-canonical-uri.patch
+Patch16:virtview-git-emit-resize.patch
 Patch20:netcat.diff
 Patch21:windows-keycombo.patch
 Patch22:netware-keycombo.patch
 Patch23:glade-keycombo.patch
 Patch24:report-error.patch
+BuildRequires:  automake
 BuildRequires:  gtk2-devel
 BuildRequires:  libvirt-devel = 0.6.0
 BuildRequires:  libxml2-devel
@@ -92,6 +94,8 @@
 %patch12 -p1
 %patch13 -p1
 %patch14 -p1
+%patch15 -p1
+%patch16 -p1
 %patch20 -p1
 %patch21 -p1
 %patch22 -p1

++ report-error.patch ++
--- /var/tmp/diff_new_pack.j0p896/_old  2012-02-08 17:56:59.0 +0100
+++ /var/tmp/diff_new_pack.j0p896/_new  2012-02-08 17:56:59.0 +0100
@@ -2,7 +2,7 @@
 ===
 --- virt-viewer-0.4.1.orig/src/virt-viewer.c
 +++ virt-viewer-0.4.1/src/virt-viewer.c
-@@ -423,6 +423,7 @@ virt_viewer_initial_connect(VirtViewerAp
+@@ -426,6 +426,7 @@ virt_viewer_initial_connect(VirtViewerAp
} else {
virt_viewer_app_simple_message_dialog(app, _(Cannot 
find guest domain %s),
  priv-domkey);

++ virtview-git-canonical-uri.patch ++

Subject: Always use canonical URI from libvirt connection
From: Daniel P. Berrange berra...@redhat.com Mon Nov 7 11:17:05 2011 +
Date: Mon Nov 7 11:17:41 2011 +:
Git: 9319081827c096120c1a782b5dbc6924e9cd9eff

The URI we feed into libvirt may be an alias, so always query the
actual URI used internally

Index: virt-viewer-0.4.1/src/virt-viewer.c
===
--- virt-viewer-0.4.1.orig/src/virt-viewer.c
+++ virt-viewer-0.4.1/src/virt-viewer.c
@@ -285,6 +285,7 @@ virt_viewer_extract_connect_info(VirtVie
gchar *transport = NULL;
gchar *user = NULL;
gint port = 0;
+   gchar *uri = NULL;
 
virt_viewer_app_free_connect_info(app);
 
@@ -319,7 +320,8 @@ virt_viewer_extract_connect_info(VirtVie
else
DEBUG_LOG(Guest graphics address is %s, unixsock);
 
-   if (virt_viewer_util_extract_host(priv-uri, NULL, host, transport, 
user, port)  0) {
+   uri = virConnectGetURI(priv-conn);
+   if (virt_viewer_util_extract_host(uri, NULL, host, transport, user, 
port)  0) {

commit vm-install for openSUSE:12.1:Update:Test

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package vm-install for 
openSUSE:12.1:Update:Test checked in at 2012-02-08 18:17:26

Comparing /work/SRC/openSUSE:12.1:Update:Test/vm-install (Old)
 and  /work/SRC/openSUSE:12.1:Update:Test/.vm-install.new (New)


Package is vm-install, Maintainer is carn...@suse.com

Changes:

--- /work/SRC/openSUSE:12.1:Update:Test/vm-install/vm-install.changes   
2012-02-08 18:17:31.0 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.vm-install.new/vm-install.changes  
2012-02-08 18:17:32.0 +0100
@@ -1,0 +2,34 @@
+Fri Dec  9 09:30:12 MST 2011 - carn...@novell.com
+
+- bnc#735670 - virt-manager client doesn't show disks, network 
+  adapters and OS details 
+
+---
+Thu Dec  8 18:20:42 MST 2011 - carn...@novell.com
+
+- KVM: passing 'vd[a-t]' as the disk was broken because the internal
+  virtio flag was not being set.
+
+---
+Wed Dec  7 10:00:11 MST 2011 - carn...@novell.com
+
+- Allow upgrading SLES11/SLED11 (ga/sp1 to sp2)
+
+---
+Mon Dec  5 14:45:06 MST 2011 - carn...@novell.com
+
+- bnc#732986 - RHEL 6 on xen-pv fails to write to HD
+  Rhel6 has no Xen kernel.  It uses the pvops kernel.
+
+---
+Tue Nov 29 15:32:44 MST 2011 - carn...@novell.com
+
+- Updated man page to include specifics on KVM 
+
+---
+Fri Nov 11 10:35:29 MST 2011 - carn...@novell.com
+
+- bnc#729899 - Operating system chooser missing in command line 
+  version of vm-install 
+
+---



Other differences:
--
++ vm-install.spec ++
--- /var/tmp/diff_new_pack.4k1bqx/_old  2012-02-08 18:17:32.0 +0100
+++ /var/tmp/diff_new_pack.4k1bqx/_new  2012-02-08 18:17:32.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package vm-install
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,20 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   vm-install
 Url:http://developer.novell.com/wiki/index.php/Vm-install
-BuildRequires:  python-devel update-desktop-files
+BuildRequires:  python-devel
+BuildRequires:  update-desktop-files
 # For directory ownership:
 BuildRequires:  yast2
-License:GPL-2.0
-Group:  System/Emulators/PC
-AutoReqProv:yes
 Version:0.5.7
-Release:2
+Release:0
 Summary:Tool to Define a Virtual Machine and Install Its Operating 
System
+License:GPL-2.0
+Group:  System/Emulators/PC
 Source0:%{name}-0.5.7.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  %ix86 x86_64

++ vm-install-0.5.7.tar.bz2 ++
 5434 lines of diff (skipped)

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



commit openslp for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package openslp for openSUSE:Factory checked 
in at 2012-02-08 21:19:57

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


Package is openslp, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/openslp/openslp.changes  2012-02-08 
15:33:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.openslp.new/openslp.changes 2012-02-08 
21:19:59.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb  8 20:14:48 UTC 2012 - co...@suse.com
+
+- move the systemd requires to the server subpackage
+
+---



Other differences:
--
++ openslp.spec ++
--- /var/tmp/diff_new_pack.qBbtS9/_old  2012-02-08 21:20:11.0 +0100
+++ /var/tmp/diff_new_pack.qBbtS9/_new  2012-02-08 21:20:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package openslp
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,19 +16,20 @@
 #
 
 
-
 Name:   openslp
-BuildRequires:  bison flex libtool openssl-devel
+BuildRequires:  bison
+BuildRequires:  flex
+BuildRequires:  libtool
+BuildRequires:  openssl-devel
 %if 0%{?suse_version}  1140
 BuildRequires:  systemd
-%{?systemd_requires}
 %define has_systemd 1
 %endif
 Summary:An OpenSLP Implementation of Service Location Protocol V2
-Version:1.2.0
-Release:186
 License:BSD-3-Clause
 Group:  System/Daemons
+Version:1.2.0
+Release:0
 Url:http://www.openslp.org/
 # bug437293
 %ifarch ppc64
@@ -81,22 +82,13 @@
 defined by RFC 2608 and RFC 2614.  This package includes the slptool
 and runtime libraries.
 
-
-
-Authors:
-
-Matthew Peterson mpeter...@calderasystems.com
-Ganesan Rajagopal   rgane...@myrealbox.com
-David McCormack david.mccorm...@ottawa.com
-Evan Hughes hug...@lab43.org
-Matthieu Desmons m...@ocegr.fr
-Praveen Kumar Amritaluru prav...@india.hp.com
-
 %package server
-License:BSD-3-Clause
-Group:  System/Daemons
 Summary:The OpenSLP Implementation of the  Service Location Protocol V2
+Group:  System/Daemons
 PreReq: %fillup_prereq %insserv_prereq /usr/sbin/useradd
+%if 0%{?has_systemd}
+%{?systemd_requires}
+%endif
 Recommends: logrotate
 
 %description server
@@ -109,22 +101,10 @@
 services that should be used via an SLP client must run this server and
 register the service.
 
-
-
-Authors:
-
-Matthew Peterson mpeter...@calderasystems.com
-Ganesan Rajagopal   rgane...@myrealbox.com
-David McCormack david.mccorm...@ottawa.com
-Evan Hughes hug...@lab43.org
-Matthieu Desmons m...@ocegr.fr
-Praveen Kumar Amritaluru prav...@india.hp.com
-
 %package devel
-License:BSD-3-Clause
 Requires:   openssl-devel openslp = %version
-Group:  System/Daemons
 Summary:OpenSLP Development SDK
+Group:  System/Daemons
 # bug437293
 %ifarch ppc64
 Obsoletes:  openslp-devel-64bit
@@ -141,17 +121,6 @@
 with SLP support. It also contains developer documentation to develop
 such applications.
 
-
-
-Authors:
-
-Matthew Peterson mpeter...@calderasystems.com
-Ganesan Rajagopal   rgane...@myrealbox.com
-David McCormack david.mccorm...@ottawa.com
-Evan Hughes hug...@lab43.org
-Matthieu Desmons m...@ocegr.fr
-Praveen Kumar Amritaluru prav...@india.hp.com
-
 %prep
 %setup -q
 %patch1
@@ -268,9 +237,6 @@
 %service_del_preun slpd.service
 %endif
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 %dir %_defaultdocdir/%name


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



commit installation-images for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:Factory checked in at 2012-02-08 22:36:23

Comparing /work/SRC/openSUSE:Factory/installation-images (Old)
 and  /work/SRC/openSUSE:Factory/.installation-images.new (New)


Package is installation-images, Maintainer is snw...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/installation-images/installation-images.changes  
2012-01-27 21:26:59.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images.new/installation-images.changes 
2012-02-08 22:36:25.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb  8 21:35:17 UTC 2012 - co...@suse.com
+
+- some more libs deps and funny reformat of spec file
+
+---

New:

  new.diff



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.Mezh5O/_old  2012-02-08 22:36:27.0 +0100
+++ /var/tmp/diff_new_pack.Mezh5O/_new  2012-02-08 22:36:27.0 +0100
@@ -14,7 +14,6 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
-
 # needsrootforbuild
 # needsbinariesforbuild
 
@@ -23,21 +22,225 @@
 %define has_sles 0
 %define build_xen 1
 %define has_vnc 1
-BuildRequires:  adaptec-firmware autoyast2-installation bc 
blueprint-cursor-theme cifs-utils cron cups-libs dd_rescue dhcp-server dhcpcd 
dmraid dump ed efont-unicode eject fbiterm finger fonts-config gdb 
glibc-i18ndata hex icmpinfo initviocons iputils joe krb5-devel libidn libiterm 
libjpeg-devel libpng-devel links linuxrc lklug lvm2 mdadm mingetty mtools 
multipath-tools nasm netcat-openbsd netpbm nfs-utils ntfsprogs openslp-server 
openssh pcmciautils pcre-devel polkit popt-devel pothana2000 recode rsh rsync 
sbl screen setserial sg3_utils smartmontools socat sysconfig syslogd tcpd-devel 
telnet telnet-server termcap terminfo usbutils wget xfsdump
-BuildRequires:  e2fsprogs ncurses-utils yast2-add-on yast2-kdump yast2-mouse 
yast2-ncurses-pkg yast2-network yast2-nfs-client yast2-ntp-client yast2-qt 
yast2-qt-pkg yast2-runlevel yast2-slp yast2-trans-allpacks yast2-trans-stats 
yast2-tune yast2-update yast2-users
-BuildRequires:  aaa_base aaa_base-extras audit-libs busybox checkmedia 
cryptsetup dejavu dmapi dosfstools ethtool fvwm2 gpm hfsutils icewm-lite 
libcares2 libelf0 libpcsclite1 libzypp open-iscsi openct pciutils pciutils-ids 
pcsc-lite perl-HTML-Parser sqlite3 util-linux
-BuildRequires:  build-key gpg2 jfsutils kexec-tools limal limal-perl 
perl-Switch perl-XML-Bare perl-XML-NamespaceSupport perl-XML-Parser 
perl-XML-Simple yast2-iscsi-client yast2-ncurses
-BuildRequires:  Mesa libXi6 xkeyboard-config xorg-x11 xorg-x11-Xnest 
xorg-x11-Xvfb xorg-x11-fonts xorg-x11-fonts-core xorg-x11-libICE xorg-x11-libSM 
xorg-x11-libX11 xorg-x11-libXau xorg-x11-libXdmcp xorg-x11-libXext 
xorg-x11-libXfixes xorg-x11-libXmu xorg-x11-libXp xorg-x11-libXpm 
xorg-x11-libXrender xorg-x11-libXt xorg-x11-libfontenc xorg-x11-libs 
xorg-x11-libxcb xorg-x11-libxkbfile xorg-x11-server xterm
-BuildRequires:  bzip2 cracklib cracklib-dict-full curl gpart iproute2 
libexpat1 libfuse2 libreiserfs libreiserfs-devel module-init-tools nfs-client 
ntfs-3g parted procinfo procps psmisc reiserfs squashfs strace vim xntp xz 
yast2-devtools
-BuildRequires:  alsa alsa-utils bind-libs bind-utils chkrootkit espeak lsscsi 
openldap2-client portmap python rpcbind sdparm smp_utils uuid-runtime 
xorg-x11-xauth yast2-multipath
-BuildRequires:  btrfsprogs cairo graphviz graphviz-gnome kernel-default 
kernel-firmware libiw30 pango sax2-tools unscd valgrind wireless-tools 
wpa_supplicant yast2-qt-graph
-BuildRequires:  hdparm sysvinit sysvinit-init
+BuildRequires:  Mesa
+BuildRequires:  aaa_base
+BuildRequires:  aaa_base-extras
+BuildRequires:  adaptec-firmware
+BuildRequires:  alsa
+BuildRequires:  alsa-utils
+BuildRequires:  audit-libs
+BuildRequires:  autoyast2-installation
+BuildRequires:  bc
+BuildRequires:  bind-libs
+BuildRequires:  bind-utils
+BuildRequires:  blueprint-cursor-theme
+BuildRequires:  btrfsprogs
+BuildRequires:  build-key
+BuildRequires:  busybox
+BuildRequires:  bzip2
+BuildRequires:  cairo
+BuildRequires:  checkmedia
+BuildRequires:  chkrootkit
+BuildRequires:  cifs-utils
+BuildRequires:  cracklib
+BuildRequires:  cracklib-dict-full
+BuildRequires:  cron
+BuildRequires:  cryptsetup
+BuildRequires:  cups-libs
+BuildRequires:  curl
+BuildRequires:  dd_rescue
+BuildRequires:  dejavu
+BuildRequires:  dhcp-server
+BuildRequires:  dhcpcd
+BuildRequires:  dmapi
+BuildRequires:  dmraid
+BuildRequires:  dosfstools
+BuildRequires:  dump
+BuildRequires:  e2fsprogs
+BuildRequires:  ed
+BuildRequires:  efont-unicode
+BuildRequires:  eject
+BuildRequires:  espeak
+BuildRequires:  

commit yast2-gtk for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package yast2-gtk for openSUSE:Factory 
checked in at 2012-02-08 22:37:13

Comparing /work/SRC/openSUSE:Factory/yast2-gtk (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-gtk.new (New)


Package is yast2-gtk, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-gtk/yast2-gtk.changes  2011-09-23 
12:53:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-gtk.new/yast2-gtk.changes 2012-02-08 
22:37:14.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb  8 21:36:29 UTC 2012 - co...@suse.com
+
+- fix glib.h include
+
+---

New:

  new.patch



Other differences:
--
++ yast2-gtk.spec ++
--- /var/tmp/diff_new_pack.jHyXjf/_old  2012-02-08 22:37:16.0 +0100
+++ /var/tmp/diff_new_pack.jHyXjf/_new  2012-02-08 22:37:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-gtk
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -16,24 +16,25 @@
 #
 
 
-
 Name:   yast2-gtk
 Version:2.22.3
-Release:1
+Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-gtk-2.22.3.tar.bz2
 Url:http://en.opensuse.org/YaST2-GTK
 Summary:YaST2 - GTK+ Graphical User Interface
-Group:  System/YaST
 License:GPL-2.0 or GPL-3.0
+Group:  System/YaST
+BuildRequires:  blocxx-devel
 BuildRequires:  cmake
-BuildRequires:  blocxx-devel gcc-c++ libxcrypt-devel
-BuildRequires:  gtk3-devel
+BuildRequires:  gcc-c++
 BuildRequires:  gdk-pixbuf-devel
+BuildRequires:  gtk3-devel
+BuildRequires:  libxcrypt-devel
+BuildRequires:  libzypp-devel = 6.3.0
 BuildRequires:  yast2-devtools = 2.16.3
 BuildRequires:  yast2-libyui-devel = 2.18.8
-BuildRequires:  libzypp-devel = 6.3.0
 Requires:   gtk3
 Requires:   yast2-libyui = 2.18.8
 Requires:   yast2_theme = 2.16.1
@@ -42,6 +43,7 @@
 Provides:   yast2_ui yast2-ui-gtk
 Provides:   yast2_ui_pkg
 Source1:yast2-gtk-rpmlintrc 
+Patch0: new.patch
 
 %description
 One of several user interfaces available for YaST2, based on GTK and
@@ -49,6 +51,7 @@
 
 %prep
 %setup
+%patch0 -p1
 
 %build
 mkdir build

++ new.patch ++
Index: yast2-gtk-2.22.3/src/YGUI.cc
===
--- yast2-gtk-2.22.3.orig/src/YGUI.cc   2011-09-10 07:03:13.0 +0200
+++ yast2-gtk-2.22.3/src/YGUI.cc2012-02-08 22:17:26.929589580 +0100
@@ -17,7 +17,7 @@
 #include YGi18n.h
 #include YGUtils.h
 #include YGDialog.h
-#include glib/gthread.h
+#include glib.h
 
 static std::string askForFileOrDirectory (GtkFileChooserAction action,
const std::string path, const std::string filter, const std::string 
title);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org