commit apper for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package apper for openSUSE:Factory checked 
in at 2013-02-21 10:31:41

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


Package is apper, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/apper/apper.changes  2013-02-20 
09:26:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.apper.new/apper.changes 2013-02-21 
10:31:42.0 +0100
@@ -1,0 +2,7 @@
+Wed Feb 20 14:38:41 UTC 2013 - tittiatc...@gmail.com
+
+- add 0023-fix-annoying-notifications-over-and-over.patch to make 
+  sure we don't keep showing the same error over and over again..
+  (bnc#802562)
+
+---

New:

  0023-fix-annoying-notifications-over-and-over.patch



Other differences:
--
++ apper.spec ++
--- /var/tmp/diff_new_pack.OwvUEd/_old  2013-02-21 10:31:45.0 +0100
+++ /var/tmp/diff_new_pack.OwvUEd/_new  2013-02-21 10:31:45.0 +0100
@@ -46,6 +46,7 @@
 Patch17:0020-Allow-PackageDetails-to-show-screenshots-from-softwa.patch
 Patch18:0021-Update-the-last-refresh-cache-time-from-the-update-c.patch
 Patch19:0022-just-return-after-EULA-acceptance.patch
+Patch20:0023-fix-annoying-notifications-over-and-over.patch
 # Patches before 100 are from upstream git
 # to be sent upstream
 Patch100:   apper-ui-fixes.diff
@@ -107,6 +108,7 @@
 %patch17 -p1
 %patch18 -p1
 %patch19 -p1
+%patch20 -p1
 %patch100 -p1 
 %patch101 -p1
 %patch103 -p1

++ 0023-fix-annoying-notifications-over-and-over.patch ++
Git commit 0fedb139a16a89344ff3afcee1fa51d42ed48104 by Daniel Nicoletti.
Committed on 20/02/2013 at 15:28.
Pushed by dantti into branch 'master'.

Make sure we don't keep showing the same error over and over again...
FIXES: https://bugzilla.novell.com/show_bug.cgi?id=802562

M  +12   -5apperd/RefreshCacheTask.cpp
M  +2-0apperd/RefreshCacheTask.h

http://commits.kde.org/apper/0fedb139a16a89344ff3afcee1fa51d42ed48104

diff --git a/apperd/RefreshCacheTask.cpp b/apperd/RefreshCacheTask.cpp
index e633643..518efe8 100644
--- a/apperd/RefreshCacheTask.cpp
+++ b/apperd/RefreshCacheTask.cpp
@@ -29,11 +29,10 @@
 
 #include KDebug
 
-using namespace PackageKit;
-
 RefreshCacheTask::RefreshCacheTask(QObject *parent) :
 QObject(parent),
-m_transaction(0)
+m_transaction(0),
+m_lastError(Transaction::ErrorUnknown)
 {
 }
 
@@ -43,7 +42,7 @@ void RefreshCacheTask::refreshCache()
 if (!m_transaction) {
 m_transaction = new Transaction(this);
 connect(m_transaction, 
SIGNAL(finished(PackageKit::Transaction::Exit,uint)),
-this, 
SLOT(refreshCacheFinished(PackageKit::Transaction::Exit)));
+this, 
SLOT(refreshCacheFinished(PackageKit::Transaction::Exit,uint)));
 connect(m_transaction, 
SIGNAL(errorCode(PackageKit::Transaction::Error,QString)),
 this, SLOT(errorCode(PackageKit::Transaction::Error,QString)));
 
@@ -67,13 +66,21 @@ void RefreshCacheTask::refreshCache()
 
 void RefreshCacheTask::refreshCacheFinished(PackageKit::Transaction::Exit 
status, uint runtime)
 {
-Q_UNUSED(status)
 Q_UNUSED(runtime)
+
 m_transaction = 0;
+if (status == Transaction::ExitSuccess) {
+m_lastError = Transaction::ErrorUnknown;
+m_lastErrorString.clear();
+}
 }
 
 void RefreshCacheTask::errorCode(Transaction::Error error, const QString 
errorMessage)
 {
+if (m_lastError == error  m_lastErrorString == errorMessage) {
+return;
+}
+
 // Not decreasing and being Persistent
 // prevents multiple popups issued by
 // subsequent refresh cache tries
diff --git a/apperd/RefreshCacheTask.h b/apperd/RefreshCacheTask.h
index 7136bd2..c916792 100644
--- a/apperd/RefreshCacheTask.h
+++ b/apperd/RefreshCacheTask.h
@@ -43,6 +43,8 @@ private slots:
 private:
 KNotification *m_notification;
 Transaction *m_transaction;
+Transaction::Error m_lastError;
+QString m_lastErrorString;
 };
 
 #endif // REFRESHCACHETASK_H
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit apper for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package apper for openSUSE:12.3 checked in 
at 2013-02-21 10:31:44

Comparing /work/SRC/openSUSE:12.3/apper (Old)
 and  /work/SRC/openSUSE:12.3/.apper.new (New)


Package is apper, Maintainer is 

Changes:

--- /work/SRC/openSUSE:12.3/apper/apper.changes 2013-02-20 09:14:19.0 
+0100
+++ /work/SRC/openSUSE:12.3/.apper.new/apper.changes2013-02-21 
10:31:51.0 +0100
@@ -1,0 +2,7 @@
+Wed Feb 20 14:38:41 UTC 2013 - tittiatc...@gmail.com
+
+- add 0023-fix-annoying-notifications-over-and-over.patch to make 
+  sure we don't keep showing the same error over and over again..
+  (bnc#802562)
+
+---

New:

  0023-fix-annoying-notifications-over-and-over.patch



Other differences:
--
++ apper.spec ++
--- /var/tmp/diff_new_pack.7JaaaH/_old  2013-02-21 10:31:51.0 +0100
+++ /var/tmp/diff_new_pack.7JaaaH/_new  2013-02-21 10:31:51.0 +0100
@@ -46,6 +46,7 @@
 Patch17:0020-Allow-PackageDetails-to-show-screenshots-from-softwa.patch
 Patch18:0021-Update-the-last-refresh-cache-time-from-the-update-c.patch
 Patch19:0022-just-return-after-EULA-acceptance.patch
+Patch20:0023-fix-annoying-notifications-over-and-over.patch
 # Patches before 100 are from upstream git
 # to be sent upstream
 Patch100:   apper-ui-fixes.diff
@@ -107,6 +108,7 @@
 %patch17 -p1
 %patch18 -p1
 %patch19 -p1
+%patch20 -p1
 %patch100 -p1 
 %patch101 -p1
 %patch103 -p1

++ 0023-fix-annoying-notifications-over-and-over.patch ++
Git commit 0fedb139a16a89344ff3afcee1fa51d42ed48104 by Daniel Nicoletti.
Committed on 20/02/2013 at 15:28.
Pushed by dantti into branch 'master'.

Make sure we don't keep showing the same error over and over again...
FIXES: https://bugzilla.novell.com/show_bug.cgi?id=802562

M  +12   -5apperd/RefreshCacheTask.cpp
M  +2-0apperd/RefreshCacheTask.h

http://commits.kde.org/apper/0fedb139a16a89344ff3afcee1fa51d42ed48104

diff --git a/apperd/RefreshCacheTask.cpp b/apperd/RefreshCacheTask.cpp
index e633643..518efe8 100644
--- a/apperd/RefreshCacheTask.cpp
+++ b/apperd/RefreshCacheTask.cpp
@@ -29,11 +29,10 @@
 
 #include KDebug
 
-using namespace PackageKit;
-
 RefreshCacheTask::RefreshCacheTask(QObject *parent) :
 QObject(parent),
-m_transaction(0)
+m_transaction(0),
+m_lastError(Transaction::ErrorUnknown)
 {
 }
 
@@ -43,7 +42,7 @@ void RefreshCacheTask::refreshCache()
 if (!m_transaction) {
 m_transaction = new Transaction(this);
 connect(m_transaction, 
SIGNAL(finished(PackageKit::Transaction::Exit,uint)),
-this, 
SLOT(refreshCacheFinished(PackageKit::Transaction::Exit)));
+this, 
SLOT(refreshCacheFinished(PackageKit::Transaction::Exit,uint)));
 connect(m_transaction, 
SIGNAL(errorCode(PackageKit::Transaction::Error,QString)),
 this, SLOT(errorCode(PackageKit::Transaction::Error,QString)));
 
@@ -67,13 +66,21 @@ void RefreshCacheTask::refreshCache()
 
 void RefreshCacheTask::refreshCacheFinished(PackageKit::Transaction::Exit 
status, uint runtime)
 {
-Q_UNUSED(status)
 Q_UNUSED(runtime)
+
 m_transaction = 0;
+if (status == Transaction::ExitSuccess) {
+m_lastError = Transaction::ErrorUnknown;
+m_lastErrorString.clear();
+}
 }
 
 void RefreshCacheTask::errorCode(Transaction::Error error, const QString 
errorMessage)
 {
+if (m_lastError == error  m_lastErrorString == errorMessage) {
+return;
+}
+
 // Not decreasing and being Persistent
 // prevents multiple popups issued by
 // subsequent refresh cache tries
diff --git a/apperd/RefreshCacheTask.h b/apperd/RefreshCacheTask.h
index 7136bd2..c916792 100644
--- a/apperd/RefreshCacheTask.h
+++ b/apperd/RefreshCacheTask.h
@@ -43,6 +43,8 @@ private slots:
 private:
 KNotification *m_notification;
 Transaction *m_transaction;
+Transaction::Error m_lastError;
+QString m_lastErrorString;
 };
 
 #endif // REFRESHCACHETASK_H
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit armadillo for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package armadillo for openSUSE:Factory 
checked in at 2013-02-21 10:31:56

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  2012-12-27 
22:08:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.armadillo.new/armadillo.changes 2013-02-21 
10:31:58.0 +0100
@@ -2 +2,16 @@
-Fri Dec 21 18:03:59 UTC 2012 - dmi...@roshchin.org
+Wed Feb 20 09:24:21 UTC 2013 - dmitr...@opensuse.org
+
+- Update to version 3.6.3
+  * faster find()
+  * minor fix for non-contiguous submatrix views to handle
+empty vectors of indices
+
+---
+Tue Jan 29 09:24:54 UTC 2013 - dmitr...@opensuse.org
+
+- Update to version 3.6.2
+  * faster determinant for matrices marked as diagonal or triangular
+  * more fine-grained handling of 64 bit integers 
+
+---
+Fri Dec 21 18:03:59 UTC 2012 - dmitr...@opensuse.org

Old:

  armadillo-3.6.1.tar.gz

New:

  armadillo-3.6.3.tar.gz



Other differences:
--
++ armadillo.spec ++
--- /var/tmp/diff_new_pack.3KNsj5/_old  2013-02-21 10:32:03.0 +0100
+++ /var/tmp/diff_new_pack.3KNsj5/_new  2013-02-21 10:32:03.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package armadillo
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   armadillo
-Version:3.6.1
+Version:3.6.3
 Release:0
 Summary:Fast C++ matrix library with interfaces to LAPACK and ATLAS
 License:LGPL-3.0+

++ armadillo-3.6.1.tar.gz - armadillo-3.6.3.tar.gz ++
 3956 lines of diff (skipped)

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



commit emacs for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package emacs for openSUSE:Factory checked 
in at 2013-02-21 10:32:21

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


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

Changes:

--- /work/SRC/openSUSE:Factory/emacs/emacs.changes  2013-01-14 
22:20:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.emacs.new/emacs.changes 2013-02-21 
10:32:23.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 20 07:59:47 UTC 2013 - wer...@suse.de
+
+- Add missing backslashes spotted by Troy Sankey
+
+---



Other differences:
--
++ emacs.spec ++
--- /var/tmp/diff_new_pack.Vd7fyv/_old  2013-02-21 10:32:26.0 +0100
+++ /var/tmp/diff_new_pack.Vd7fyv/_new  2013-02-21 10:32:26.0 +0100
@@ -284,7 +284,7 @@
 --with-jpeg \
 --with-tiff \
 --with-gif \
---with-png 
+--with-png \
 --with-rsvg \
 --with-dbus \
 --without-gpm \
@@ -317,7 +317,7 @@
 --without-jpeg \
 --without-tiff \
 --without-gif \
---without-png 
+--without-png \
 --without-rsvg \
 --without-dbus \
 --without-xft \

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



commit emacs for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package emacs for openSUSE:12.3 checked in 
at 2013-02-21 10:32:26

Comparing /work/SRC/openSUSE:12.3/emacs (Old)
 and  /work/SRC/openSUSE:12.3/.emacs.new (New)


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

Changes:

--- /work/SRC/openSUSE:12.3/emacs/emacs.changes 2013-01-31 01:15:35.0 
+0100
+++ /work/SRC/openSUSE:12.3/.emacs.new/emacs.changes2013-02-21 
10:32:32.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 20 07:59:47 UTC 2013 - wer...@suse.de
+
+- Add missing backslashes spotted by Troy Sankey
+
+---



Other differences:
--
++ emacs.spec ++
--- /var/tmp/diff_new_pack.qsBFX7/_old  2013-02-21 10:32:33.0 +0100
+++ /var/tmp/diff_new_pack.qsBFX7/_new  2013-02-21 10:32:33.0 +0100
@@ -284,7 +284,7 @@
 --with-jpeg \
 --with-tiff \
 --with-gif \
---with-png 
+--with-png \
 --with-rsvg \
 --with-dbus \
 --without-gpm \
@@ -317,7 +317,7 @@
 --without-jpeg \
 --without-tiff \
 --without-gif \
---without-png 
+--without-png \
 --without-rsvg \
 --without-dbus \
 --without-xft \

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



commit ibus for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package ibus for openSUSE:Factory checked in 
at 2013-02-21 10:33:33

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


Package is ibus, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/ibus/ibus.changes2013-02-11 
20:46:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.ibus.new/ibus.changes   2013-02-21 
10:33:34.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb 16 15:59:12 UTC 2013 - ft...@geeko.jp
+
+- better solution for bnc#802967
+  * add ibus_indicator-14.patch: a shell extension for GNOME 3.6
+  * update ibus-fix-tray-icon-on-gnome-3.6.patch 
+
+---

New:

  ibus_indicator-14.patch



Other differences:
--
++ ibus.spec ++
--- /var/tmp/diff_new_pack.RgL2Xa/_old  2013-02-21 10:33:36.0 +0100
+++ /var/tmp/diff_new_pack.RgL2Xa/_new  2013-02-21 10:33:36.0 +0100
@@ -33,7 +33,10 @@
 Patch1: ibus-fix-default-preload-engines.patch
 # PATCH-FIX-OPENSUSE ibus-fix-docs-build-error.patch
 Patch2: ibus-fix-docs-build-error.patch
+# PATCH-FIX-OPENSUSE ibus-fix-tray-icon-on-gnome-3.6.patch
 Patch3: ibus-fix-tray-icon-on-gnome-3.6.patch
+# PATCH-FIX-OPENSUSE ibus_indicator-14.patch
+Patch4: ibus_indicator-14.patch
 Summary:Intelligent Input Bus for Linux OS
 License:LGPL-2.1+
 Group:  System/I18n/Chinese
@@ -134,6 +137,7 @@
 %patch2 -p1
 %if 0%{suse_version} = 1230
 %patch3 -p1
+%patch4 -p1
 %endif
 
 %build
@@ -188,6 +192,11 @@
 cat %{name}.schemas_list %{domain_name}.lang  %{name}.lst
 %fdupes -s $RPM_BUILD_ROOT
 
+%if 0%{suse_version} = 1230
+install -m755 -d 
%{buildroot}%{_datadir}/gnome-shell/extensions/ibus_indicator...@ftake.github.com
+install -m644 ibus_indicator...@ftake.github.com/* 
%{buildroot}%{_datadir}/gnome-shell/extensions/ibus_indicator...@ftake.github.com
+%endif
+
 %clean
 rm -rf %buildroot
 
@@ -232,6 +241,12 @@
 %{_datadir}/icons/hicolor/*/apps/*
 %{_datadir}/pixmaps/*
 %{_prefix}/%{_lib}/ibus
+%if 0%{suse_version} = 1230
+%dir %{_datadir}/gnome-shell/
+%dir %{_datadir}/gnome-shell/extensions/
+%dir %{_datadir}/gnome-shell/extensions/ibus_indicator...@ftake.github.com/
+%{_datadir}/gnome-shell/extensions/ibus_indicator...@ftake.github.com/*
+%endif
 
 %files -n libibus-1_0-0
 %defattr(-,root,root,-)

++ ibus-README.suse ++
--- /var/tmp/diff_new_pack.RgL2Xa/_old  2013-02-21 10:33:36.0 +0100
+++ /var/tmp/diff_new_pack.RgL2Xa/_new  2013-02-21 10:33:36.0 +0100
@@ -1,6 +1,11 @@
 ibus README for SuSE
 How to start using ibus
 
+Note:
+Since GNOME 3.6 does not support IBus 1.4, IBus's indicator icon is not placed 
on GNOME panel in the top of screen
+by default. This package includes a GNOME shell extension named IBus 1.4 
indicator to resolve this problem.
+Please enable the extension manually from gnome-tweak-tool GUI if you need the 
indicator on the panel.
+
 English:
 
 0:Note: ibus don't support QT3 immodule,

++ ibus-fix-tray-icon-on-gnome-3.6.patch ++
--- /var/tmp/diff_new_pack.RgL2Xa/_old  2013-02-21 10:33:36.0 +0100
+++ /var/tmp/diff_new_pack.RgL2Xa/_new  2013-02-21 10:33:36.0 +0100
@@ -1,23 +1,12 @@
-diff -Nur ibus-1.4.2/ui/gtk/panel.py ibus-1.4.2-new/ui/gtk/panel.py
 ibus-1.4.2/ui/gtk/panel.py 2012-08-22 22:16:51.0 +0800
-+++ ibus-1.4.2-new/ui/gtk/panel.py 2013-02-08 23:57:47.465504005 +0800
-@@ -103,19 +103,6 @@
- 
- 
- self.__status_icon = gtk.StatusIcon()
--# gnome-shell checks XClassHint.res_class with ShellTrayIcon.
--# gtk_status_icon_set_name() can set XClassHint.res_class .
--# However gtk_status_icon_new() also calls gtk_window_realize() so
--# gtk_status_icon_set_visible() needs to be called to set WM_CLASS
--# so that gtk_window_realize() is called later again.
--# set_title is for gnome-shell notificationDaemon in bottom right.
--self.__status_icon.set_visible(False)
--# gtk_status_icon_set_name() is not available in pygtk2 2.17
--if hasattr(self.__status_icon, 'set_name'):
+diff -ru ibus-1.4.2.org/ui/gtk/panel.py ibus-1.4.2/ui/gtk/panel.py
+--- ibus-1.4.2.org/ui/gtk/panel.py 2012-08-22 23:16:51.0 +0900
 ibus-1.4.2/ui/gtk/panel.py 2013-02-11 16:40:38.328356131 +0900
+@@ -112,7 +112,7 @@
+ self.__status_icon.set_visible(False)
+ # gtk_status_icon_set_name() is not available in pygtk2 2.17
+ if hasattr(self.__status_icon, 'set_name'):
 -self.__status_icon.set_name('ibus-ui-gtk')
--self.__status_icon.set_title(_(IBus Panel))
--# Hide icon until bus get the name owner.
--

commit ibus for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package ibus for openSUSE:12.3 checked in at 
2013-02-21 10:33:37

Comparing /work/SRC/openSUSE:12.3/ibus (Old)
 and  /work/SRC/openSUSE:12.3/.ibus.new (New)


Package is ibus, Maintainer is 

Changes:

--- /work/SRC/openSUSE:12.3/ibus/ibus.changes   2013-02-11 20:46:07.0 
+0100
+++ /work/SRC/openSUSE:12.3/.ibus.new/ibus.changes  2013-02-21 
10:33:43.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb 16 15:59:12 UTC 2013 - ft...@geeko.jp
+
+- better solution for bnc#802967
+  * add ibus_indicator-14.patch: a shell extension for GNOME 3.6
+  * update ibus-fix-tray-icon-on-gnome-3.6.patch 
+
+---

New:

  ibus_indicator-14.patch



Other differences:
--
++ ibus.spec ++
--- /var/tmp/diff_new_pack.sOYOC4/_old  2013-02-21 10:33:43.0 +0100
+++ /var/tmp/diff_new_pack.sOYOC4/_new  2013-02-21 10:33:43.0 +0100
@@ -33,7 +33,10 @@
 Patch1: ibus-fix-default-preload-engines.patch
 # PATCH-FIX-OPENSUSE ibus-fix-docs-build-error.patch
 Patch2: ibus-fix-docs-build-error.patch
+# PATCH-FIX-OPENSUSE ibus-fix-tray-icon-on-gnome-3.6.patch
 Patch3: ibus-fix-tray-icon-on-gnome-3.6.patch
+# PATCH-FIX-OPENSUSE ibus_indicator-14.patch
+Patch4: ibus_indicator-14.patch
 Summary:Intelligent Input Bus for Linux OS
 License:LGPL-2.1+
 Group:  System/I18n/Chinese
@@ -134,6 +137,7 @@
 %patch2 -p1
 %if 0%{suse_version} = 1230
 %patch3 -p1
+%patch4 -p1
 %endif
 
 %build
@@ -188,6 +192,11 @@
 cat %{name}.schemas_list %{domain_name}.lang  %{name}.lst
 %fdupes -s $RPM_BUILD_ROOT
 
+%if 0%{suse_version} = 1230
+install -m755 -d 
%{buildroot}%{_datadir}/gnome-shell/extensions/ibus_indicator...@ftake.github.com
+install -m644 ibus_indicator...@ftake.github.com/* 
%{buildroot}%{_datadir}/gnome-shell/extensions/ibus_indicator...@ftake.github.com
+%endif
+
 %clean
 rm -rf %buildroot
 
@@ -232,6 +241,12 @@
 %{_datadir}/icons/hicolor/*/apps/*
 %{_datadir}/pixmaps/*
 %{_prefix}/%{_lib}/ibus
+%if 0%{suse_version} = 1230
+%dir %{_datadir}/gnome-shell/
+%dir %{_datadir}/gnome-shell/extensions/
+%dir %{_datadir}/gnome-shell/extensions/ibus_indicator...@ftake.github.com/
+%{_datadir}/gnome-shell/extensions/ibus_indicator...@ftake.github.com/*
+%endif
 
 %files -n libibus-1_0-0
 %defattr(-,root,root,-)

++ ibus-README.suse ++
--- /var/tmp/diff_new_pack.sOYOC4/_old  2013-02-21 10:33:43.0 +0100
+++ /var/tmp/diff_new_pack.sOYOC4/_new  2013-02-21 10:33:43.0 +0100
@@ -1,6 +1,11 @@
 ibus README for SuSE
 How to start using ibus
 
+Note:
+Since GNOME 3.6 does not support IBus 1.4, IBus's indicator icon is not placed 
on GNOME panel in the top of screen
+by default. This package includes a GNOME shell extension named IBus 1.4 
indicator to resolve this problem.
+Please enable the extension manually from gnome-tweak-tool GUI if you need the 
indicator on the panel.
+
 English:
 
 0:Note: ibus don't support QT3 immodule,

++ ibus-fix-tray-icon-on-gnome-3.6.patch ++
--- /var/tmp/diff_new_pack.sOYOC4/_old  2013-02-21 10:33:43.0 +0100
+++ /var/tmp/diff_new_pack.sOYOC4/_new  2013-02-21 10:33:43.0 +0100
@@ -1,23 +1,12 @@
-diff -Nur ibus-1.4.2/ui/gtk/panel.py ibus-1.4.2-new/ui/gtk/panel.py
 ibus-1.4.2/ui/gtk/panel.py 2012-08-22 22:16:51.0 +0800
-+++ ibus-1.4.2-new/ui/gtk/panel.py 2013-02-08 23:57:47.465504005 +0800
-@@ -103,19 +103,6 @@
- 
- 
- self.__status_icon = gtk.StatusIcon()
--# gnome-shell checks XClassHint.res_class with ShellTrayIcon.
--# gtk_status_icon_set_name() can set XClassHint.res_class .
--# However gtk_status_icon_new() also calls gtk_window_realize() so
--# gtk_status_icon_set_visible() needs to be called to set WM_CLASS
--# so that gtk_window_realize() is called later again.
--# set_title is for gnome-shell notificationDaemon in bottom right.
--self.__status_icon.set_visible(False)
--# gtk_status_icon_set_name() is not available in pygtk2 2.17
--if hasattr(self.__status_icon, 'set_name'):
+diff -ru ibus-1.4.2.org/ui/gtk/panel.py ibus-1.4.2/ui/gtk/panel.py
+--- ibus-1.4.2.org/ui/gtk/panel.py 2012-08-22 23:16:51.0 +0900
 ibus-1.4.2/ui/gtk/panel.py 2013-02-11 16:40:38.328356131 +0900
+@@ -112,7 +112,7 @@
+ self.__status_icon.set_visible(False)
+ # gtk_status_icon_set_name() is not available in pygtk2 2.17
+ if hasattr(self.__status_icon, 'set_name'):
 -self.__status_icon.set_name('ibus-ui-gtk')
--self.__status_icon.set_title(_(IBus Panel))
--# Hide icon until bus get the name owner.
--

commit kiwi for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2013-02-21 10:38:02

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2013-02-18 
13:48:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2013-02-21 
10:38:04.0 +0100
@@ -1,0 +2,50 @@
+Wed Feb 20 17:07:11 CET 2013 - m...@suse.de
+
+- v5.04.50 released
+  
+---
+Wed Feb 20 16:51:09 CET 2013 - m...@suse.de
+  
+- make sure GRUB_TERMINAL is set in etc/default grub to make
+  yast bootloader happy. if yast can't find this setting it
+  switches to 'console' which deactivates the graphical grub2
+  console (bnc #804725)
+  
+---
+Wed Feb 20 15:25:00 CET 2013 - m...@suse.de
+  
+- v5.04.49 released
+  
+---
+Wed Feb 20 14:45:38 CET 2013 - adr...@suse.de
+  
+- fix product media creation for non-x86_64 when EFI
+  boot support is enabled (bnc #804428)
+  
+---
+Wed Feb 20 11:21:31 CET 2013 - m...@suse.de
+  
+- v5.04.48 released
+  
+---
+Wed Feb 20 10:59:55 CET 2013 - m...@suse.de
+  
+- added missing setup of etc/sysconfig/bootloader setup for grub2
+- fixed possible duplicate entries for quiet and splash= in
+  etc/default/grub
+  
+---
+Tue Feb 19 17:12:35 CET 2013 - m...@suse.de
+  
+- v5.04.47 released
+  
+---
+Tue Feb 19 17:01:02 CET 2013 - m...@suse.de
+  
+- KIWIISOLinux fixes:
+  + added addBootEFILive magic block creation to the source
+  media KIWICollect code too
+  + extend magic block lookup in findAndCopyMagicBlock()
+  from 2 to 8 files and from 4 to 8 blocks (bnc #804428)
+  
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.5Docap/_old  2013-02-21 10:38:07.0 +0100
+++ /var/tmp/diff_new_pack.5Docap/_new  2013-02-21 10:38:07.0 +0100
@@ -26,7 +26,7 @@
 Summary:openSUSE - KIWI Image System
 License:GPL-2.0
 Group:  System/Management
-Version:5.04.46
+Version:5.04.50
 Release:0
 # requirements to build packages
 BuildRequires:  e2fsprogs

++ kiwi.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2013-02-07 08:55:37.0 +0100
+++ new/kiwi/.revision  2013-02-07 08:55:37.0 +0100
@@ -1 +1 @@
-a7cd6879743694b1b8d5e034140f76a5ebf8c433
+c98440d365e2f768d35028d60277cf0124354c2c
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWICollect.pm 
new/kiwi/modules/KIWICollect.pm
--- old/kiwi/modules/KIWICollect.pm 2013-02-18 11:07:44.0 +0100
+++ new/kiwi/modules/KIWICollect.pm 2013-02-20 15:28:05.0 +0100
@@ -767,6 +767,10 @@
$this-logMsg('W', $msg);
}
else {
+   if (grep {x86_64 eq $_} 
$this-{m_archlist}-headList()) {
+   $this-logMsg('I', Add EFI 
Live setup);
+   $iso - addBootEFILive(1);
+}
$this-logMsg('I', Boot methods called 
successfully);
$is_bootable = 1;
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIGlobals.pm 
new/kiwi/modules/KIWIGlobals.pm
--- old/kiwi/modules/KIWIGlobals.pm 2013-02-18 11:07:44.0 +0100
+++ new/kiwi/modules/KIWIGlobals.pm 2013-02-20 17:07:36.0 +0100
@@ -931,7 +931,7 @@
# Globals (generic)
#--
my %data;
-   $data{Version} = 5.04.46;
+   $data{Version} = 5.04.50;
$data{Publisher}   = SUSE LINUX GmbH;
$data{Preparer}= KIWI - http://opensuse.github.com/kiwi;;
$data{ConfigName}  = config.xml;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit kiwi for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:12.3 checked in at 
2013-02-21 10:38:07

Comparing /work/SRC/openSUSE:12.3/kiwi (Old)
 and  /work/SRC/openSUSE:12.3/.kiwi.new (New)


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

Changes:

--- /work/SRC/openSUSE:12.3/kiwi/kiwi.changes   2013-02-18 13:48:19.0 
+0100
+++ /work/SRC/openSUSE:12.3/.kiwi.new/kiwi.changes  2013-02-21 
10:38:10.0 +0100
@@ -1,0 +2,50 @@
+Wed Feb 20 17:07:11 CET 2013 - m...@suse.de
+
+- v5.04.50 released
+  
+---
+Wed Feb 20 16:51:09 CET 2013 - m...@suse.de
+  
+- make sure GRUB_TERMINAL is set in etc/default grub to make
+  yast bootloader happy. if yast can't find this setting it
+  switches to 'console' which deactivates the graphical grub2
+  console (bnc #804725)
+  
+---
+Wed Feb 20 15:25:00 CET 2013 - m...@suse.de
+  
+- v5.04.49 released
+  
+---
+Wed Feb 20 14:45:38 CET 2013 - adr...@suse.de
+  
+- fix product media creation for non-x86_64 when EFI
+  boot support is enabled (bnc #804428)
+  
+---
+Wed Feb 20 11:21:31 CET 2013 - m...@suse.de
+  
+- v5.04.48 released
+  
+---
+Wed Feb 20 10:59:55 CET 2013 - m...@suse.de
+  
+- added missing setup of etc/sysconfig/bootloader setup for grub2
+- fixed possible duplicate entries for quiet and splash= in
+  etc/default/grub
+  
+---
+Tue Feb 19 17:12:35 CET 2013 - m...@suse.de
+  
+- v5.04.47 released
+  
+---
+Tue Feb 19 17:01:02 CET 2013 - m...@suse.de
+  
+- KIWIISOLinux fixes:
+  + added addBootEFILive magic block creation to the source
+  media KIWICollect code too
+  + extend magic block lookup in findAndCopyMagicBlock()
+  from 2 to 8 files and from 4 to 8 blocks (bnc #804428)
+  
+---

Old:

  kiwi.diff



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.bqdBa5/_old  2013-02-21 10:38:11.0 +0100
+++ /var/tmp/diff_new_pack.bqdBa5/_new  2013-02-21 10:38:11.0 +0100
@@ -26,7 +26,7 @@
 Summary:openSUSE - KIWI Image System
 License:GPL-2.0
 Group:  System/Management
-Version:5.04.46
+Version:5.04.50
 Release:0
 # requirements to build packages
 BuildRequires:  e2fsprogs
@@ -116,7 +116,6 @@
 Source2:%{name}-docu.tar.bz2
 Source3:%{name}-repo.tar.bz2
 Source4:%{name}-find-boot-requires.sh
-Patch0: kiwi.diff
 # build root path
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -467,7 +466,6 @@
 
 %prep
 %setup -q -n %name -a2 -a3
-%patch0 -p1
 
 %build
 # empty because of rpmlint warning rpm-buildroot-usage

++ kiwi.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2013-02-07 08:55:37.0 +0100
+++ new/kiwi/.revision  2013-02-07 08:55:37.0 +0100
@@ -1 +1 @@
-a7cd6879743694b1b8d5e034140f76a5ebf8c433
+c98440d365e2f768d35028d60277cf0124354c2c
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWICollect.pm 
new/kiwi/modules/KIWICollect.pm
--- old/kiwi/modules/KIWICollect.pm 2013-02-18 11:07:44.0 +0100
+++ new/kiwi/modules/KIWICollect.pm 2013-02-20 15:28:05.0 +0100
@@ -767,6 +767,10 @@
$this-logMsg('W', $msg);
}
else {
+   if (grep {x86_64 eq $_} 
$this-{m_archlist}-headList()) {
+   $this-logMsg('I', Add EFI 
Live setup);
+   $iso - addBootEFILive(1);
+}
$this-logMsg('I', Boot methods called 
successfully);
$is_bootable = 1;
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIGlobals.pm 
new/kiwi/modules/KIWIGlobals.pm
--- old/kiwi/modules/KIWIGlobals.pm 2013-02-18 11:07:44.0 +0100
+++ new/kiwi/modules/KIWIGlobals.pm 2013-02-20 17:07:36.0 +0100
@@ -931,7 +931,7 @@
# Globals (generic)
  

commit libstorage for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package libstorage for openSUSE:Factory 
checked in at 2013-02-21 10:42:16

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


Package is libstorage, Maintainer is aschn...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libstorage/libstorage.changes2013-02-19 
13:37:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.libstorage.new/libstorage.changes   
2013-02-21 10:42:17.0 +0100
@@ -1,0 +2,12 @@
+Wed Feb 20 18:09:17 CET 2013 - f...@suse.de
+
+- version 2.23.6
+- recognize /dev/disk-by-id/dm-name-nm as alias to 
+  /dev/mapper/dm
+
+---
+Tue Feb 19 15:57:52 CET 2013 - aschn...@suse.de
+
+- use option -f for vgremove (bnc#781402)
+
+---

Old:

  libstorage-2.23.5.tar.bz2

New:

  libstorage-2.23.6.tar.bz2



Other differences:
--
++ libstorage.spec ++
--- /var/tmp/diff_new_pack.GAutVs/_old  2013-02-21 10:42:19.0 +0100
+++ /var/tmp/diff_new_pack.GAutVs/_new  2013-02-21 10:42:19.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libstorage
-Version:2.23.5
+Version:2.23.6
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: libstorage-%{version}.tar.bz2

++ libstorage-2.23.5.tar.bz2 - libstorage-2.23.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/VERSION 
new/libstorage-2.23.6/VERSION
--- old/libstorage-2.23.5/VERSION   2013-02-19 12:02:36.0 +0100
+++ new/libstorage-2.23.6/VERSION   2013-02-20 19:02:41.0 +0100
@@ -1 +1 @@
-2.23.5
+2.23.6
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/AppUtil.cc 
new/libstorage-2.23.6/storage/AppUtil.cc
--- old/libstorage-2.23.5/storage/AppUtil.cc2013-01-22 11:28:07.0 
+0100
+++ new/libstorage-2.23.6/storage/AppUtil.cc2013-02-20 18:26:33.0 
+0100
@@ -413,6 +413,14 @@
 }
 }
 
+string afterLast(const string s, const string pat )
+{
+string ret(s);
+string::size_type pos = s.find_last_of(pat);
+if( pos!=string::npos )
+   ret.erase( 0, pos+pat.length() );
+return( ret );
+}
 
 string
 udevAppendPart(const string s, unsigned num)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/AppUtil.h 
new/libstorage-2.23.6/storage/AppUtil.h
--- old/libstorage-2.23.5/storage/AppUtil.h 2013-01-22 11:28:07.0 
+0100
+++ new/libstorage-2.23.6/storage/AppUtil.h 2013-02-20 18:26:33.0 
+0100
@@ -69,6 +69,7 @@
 const string removeSur =  \t\n );
 
 string udevAppendPart(const string, unsigned num);
+string afterLast(const string s, const string pat );
 
 string udevEncode(const string);
 string udevDecode(const string);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/Dm.cc 
new/libstorage-2.23.6/storage/Dm.cc
--- old/libstorage-2.23.5/storage/Dm.cc 2013-01-22 11:28:07.0 +0100
+++ new/libstorage-2.23.6/storage/Dm.cc 2013-02-20 18:26:33.0 +0100
@@ -219,11 +219,7 @@
 {
 getMajorMinor();
 if( majorNr()==Dm::dmMajor() )
-   {
-   string d = /dev/dm- + decString(minorNr());
-   if( d!=dev )
-   replaceAltName( /dev/dm-, d );
-   }
+   addDmNames(minorNr());
 num = mnr;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/DmPart.cc 
new/libstorage-2.23.6/storage/DmPart.cc
--- old/libstorage-2.23.5/storage/DmPart.cc 2013-01-22 11:28:07.0 
+0100
+++ new/libstorage-2.23.6/storage/DmPart.cc 2013-02-20 18:26:33.0 
+0100
@@ -84,7 +84,7 @@
 getMajorMinor();
 if (mjr != old_mjr || mnr != old_mnr)
{
-   replaceAltName(/dev/dm-, /dev/dm- + decString(mnr));
+   addDmNames(mnr);
getTableInfo();
}
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/Loop.cc 
new/libstorage-2.23.6/storage/Loop.cc
--- old/libstorage-2.23.5/storage/Loop.cc   2013-01-22 11:28:07.0 
+0100
+++ new/libstorage-2.23.6/storage/Loop.cc   2013-02-20 18:26:33.0 
+0100
@@ -146,7 +146,6 @@
 if( active )
{
getMajorMinor();
-   replaceAltName( /dev/dm-, /dev/dm-+decString(mnr) );
}
 

commit libstorage for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package libstorage for openSUSE:12.3 checked 
in at 2013-02-21 10:42:20

Comparing /work/SRC/openSUSE:12.3/libstorage (Old)
 and  /work/SRC/openSUSE:12.3/.libstorage.new (New)


Package is libstorage, Maintainer is aschn...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/libstorage/libstorage.changes   2013-02-19 
13:37:06.0 +0100
+++ /work/SRC/openSUSE:12.3/.libstorage.new/libstorage.changes  2013-02-21 
10:42:22.0 +0100
@@ -1,0 +2,12 @@
+Wed Feb 20 18:09:17 CET 2013 - f...@suse.de
+
+- version 2.23.6
+- recognize /dev/disk-by-id/dm-name-nm as alias to 
+  /dev/mapper/dm
+
+---
+Tue Feb 19 15:57:52 CET 2013 - aschn...@suse.de
+
+- use option -f for vgremove (bnc#781402)
+
+---

Old:

  libstorage-2.23.5.tar.bz2

New:

  libstorage-2.23.6.tar.bz2



Other differences:
--
++ libstorage.spec ++
--- /var/tmp/diff_new_pack.m3eEwO/_old  2013-02-21 10:42:22.0 +0100
+++ /var/tmp/diff_new_pack.m3eEwO/_new  2013-02-21 10:42:22.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libstorage
-Version:2.23.5
+Version:2.23.6
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: libstorage-%{version}.tar.bz2

++ libstorage-2.23.5.tar.bz2 - libstorage-2.23.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/VERSION 
new/libstorage-2.23.6/VERSION
--- old/libstorage-2.23.5/VERSION   2013-02-19 12:02:36.0 +0100
+++ new/libstorage-2.23.6/VERSION   2013-02-20 19:02:41.0 +0100
@@ -1 +1 @@
-2.23.5
+2.23.6
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/AppUtil.cc 
new/libstorage-2.23.6/storage/AppUtil.cc
--- old/libstorage-2.23.5/storage/AppUtil.cc2013-01-22 11:28:07.0 
+0100
+++ new/libstorage-2.23.6/storage/AppUtil.cc2013-02-20 18:26:33.0 
+0100
@@ -413,6 +413,14 @@
 }
 }
 
+string afterLast(const string s, const string pat )
+{
+string ret(s);
+string::size_type pos = s.find_last_of(pat);
+if( pos!=string::npos )
+   ret.erase( 0, pos+pat.length() );
+return( ret );
+}
 
 string
 udevAppendPart(const string s, unsigned num)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/AppUtil.h 
new/libstorage-2.23.6/storage/AppUtil.h
--- old/libstorage-2.23.5/storage/AppUtil.h 2013-01-22 11:28:07.0 
+0100
+++ new/libstorage-2.23.6/storage/AppUtil.h 2013-02-20 18:26:33.0 
+0100
@@ -69,6 +69,7 @@
 const string removeSur =  \t\n );
 
 string udevAppendPart(const string, unsigned num);
+string afterLast(const string s, const string pat );
 
 string udevEncode(const string);
 string udevDecode(const string);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/Dm.cc 
new/libstorage-2.23.6/storage/Dm.cc
--- old/libstorage-2.23.5/storage/Dm.cc 2013-01-22 11:28:07.0 +0100
+++ new/libstorage-2.23.6/storage/Dm.cc 2013-02-20 18:26:33.0 +0100
@@ -219,11 +219,7 @@
 {
 getMajorMinor();
 if( majorNr()==Dm::dmMajor() )
-   {
-   string d = /dev/dm- + decString(minorNr());
-   if( d!=dev )
-   replaceAltName( /dev/dm-, d );
-   }
+   addDmNames(minorNr());
 num = mnr;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/DmPart.cc 
new/libstorage-2.23.6/storage/DmPart.cc
--- old/libstorage-2.23.5/storage/DmPart.cc 2013-01-22 11:28:07.0 
+0100
+++ new/libstorage-2.23.6/storage/DmPart.cc 2013-02-20 18:26:33.0 
+0100
@@ -84,7 +84,7 @@
 getMajorMinor();
 if (mjr != old_mjr || mnr != old_mnr)
{
-   replaceAltName(/dev/dm-, /dev/dm- + decString(mnr));
+   addDmNames(mnr);
getTableInfo();
}
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libstorage-2.23.5/storage/Loop.cc 
new/libstorage-2.23.6/storage/Loop.cc
--- old/libstorage-2.23.5/storage/Loop.cc   2013-01-22 11:28:07.0 
+0100
+++ new/libstorage-2.23.6/storage/Loop.cc   2013-02-20 18:26:33.0 
+0100
@@ -146,7 +146,6 @@
 if( active )
{
getMajorMinor();
-   replaceAltName( /dev/dm-, /dev/dm-+decString(mnr) );
}
 Volume::setDmcryptDev( 

commit polkit-default-privs for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package polkit-default-privs for 
openSUSE:Factory checked in at 2013-02-21 10:44:05

Comparing /work/SRC/openSUSE:Factory/polkit-default-privs (Old)
 and  /work/SRC/openSUSE:Factory/.polkit-default-privs.new (New)


Package is polkit-default-privs, Maintainer is meiss...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/polkit-default-privs/polkit-default-privs.changes
2012-11-02 15:20:27.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.polkit-default-privs.new/polkit-default-privs.changes
   2013-02-21 10:44:07.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb 19 16:14:48 UTC 2013 - meiss...@suse.com
+
+- whitelist PackageKit / systemd offline update permissions, currently admin 
only
+- more systemd allows to make rpmlint happier bnc#783897
+
+---

Old:

  more-systemd.diff



Other differences:
--
++ polkit-default-privs.spec ++
--- /var/tmp/diff_new_pack.nrFw9h/_old  2013-02-21 10:44:08.0 +0100
+++ /var/tmp/diff_new_pack.nrFw9h/_new  2013-02-21 10:44:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package polkit-default-privs
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,6 @@
 License:GPL-2.0+
 Group:  Productivity/Security
 Source: polkit-default-privs-%version.tar.bz2
-Patch0: more-systemd.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Supplements:PolicyKit
 Supplements:libpolkit0, polkit
@@ -43,7 +42,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 

++ polkit-default-privs-12.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/polkit-default-privs-12.3/polkit-default-privs.restrictive 
new/polkit-default-privs-12.3/polkit-default-privs.restrictive
--- old/polkit-default-privs-12.3/polkit-default-privs.restrictive  
2012-11-02 11:08:00.0 +0100
+++ new/polkit-default-privs-12.3/polkit-default-privs.restrictive  
2013-02-19 17:13:52.0 +0100
@@ -361,4 +361,17 @@
 #
 org.kde.recorditnow.helper.watchauth_admin
 
+#
+# GNOME control-center (bnc#779938)
+#
+org.gnome.controlcenter.user-accounts.administration
no:no:auth_admin_keep
+org.gnome.controlcenter.datetime.configure  
no:no:auth_admin_keep
+
+#
+# PackageKit / systemd offline updates (bnc#798885)
+#
+org.freedesktop.packagekit.trigger-offline-update   
no:no:auth_admin_keep
+org.freedesktop.packagekit.clear-offline-update 
no:no:auth_admin_keep
+
+
 ###
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/polkit-default-privs-12.3/polkit-default-privs.standard 
new/polkit-default-privs-12.3/polkit-default-privs.standard
--- old/polkit-default-privs-12.3/polkit-default-privs.standard 2012-11-02 
11:08:00.0 +0100
+++ new/polkit-default-privs-12.3/polkit-default-privs.standard 2013-02-19 
17:13:52.0 +0100
@@ -347,6 +347,13 @@
 org.freedesktop.login1.inhibit-handle-suspend-key  auth_admin_keep
 org.freedesktop.login1.inhibit-handle-hibernate-keyauth_admin_keep
 org.freedesktop.login1.inhibit-handle-lid-switch   auth_admin_keep
+# even more
+org.freedesktop.login1.inhibit-delay-shutdown   auth_admin_keep
+org.freedesktop.login1.inhibit-delay-sleep  auth_admin_keep
+org.freedesktop.login1.inhibit-block-idle   auth_admin_keep
+org.freedesktop.login1.suspend  
auth_admin_keep:auth_admin_keep:yes
+org.freedesktop.login1.suspend-multiple-sessions
auth_admin_keep:auth_admin_keep:yes
+org.freedesktop.login1.hibernate
auth_admin_keep:auth_admin_keep:yes
 
 
 # gnome-control-center
@@ -400,5 +407,10 @@
 org.gnome.controlcenter.user-accounts.administration   
no:no:auth_admin_keep
 org.gnome.controlcenter.datetime.configure 
no:no:auth_admin_keep
 
+#
+# PackageKit / systemd offline updates (bnc#798885)
+#
+org.freedesktop.packagekit.trigger-offline-update  
no:no:auth_admin_keep
+org.freedesktop.packagekit.clear-offline-update
no:no:auth_admin_keep
 
 ###

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



commit polkit-default-privs for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package polkit-default-privs for 
openSUSE:12.3 checked in at 2013-02-21 10:44:10

Comparing /work/SRC/openSUSE:12.3/polkit-default-privs (Old)
 and  /work/SRC/openSUSE:12.3/.polkit-default-privs.new (New)


Package is polkit-default-privs, Maintainer is meiss...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/polkit-default-privs/polkit-default-privs.changes   
2013-01-31 01:33:46.0 +0100
+++ 
/work/SRC/openSUSE:12.3/.polkit-default-privs.new/polkit-default-privs.changes  
2013-02-21 10:44:12.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb 19 16:14:48 UTC 2013 - meiss...@suse.com
+
+- whitelist PackageKit / systemd offline update permissions, currently admin 
only
+- more systemd allows to make rpmlint happier bnc#783897
+
+---

Old:

  more-systemd.diff



Other differences:
--
++ polkit-default-privs.spec ++
--- /var/tmp/diff_new_pack.HKu0Wt/_old  2013-02-21 10:44:12.0 +0100
+++ /var/tmp/diff_new_pack.HKu0Wt/_new  2013-02-21 10:44:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package polkit-default-privs
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,6 @@
 License:GPL-2.0+
 Group:  Productivity/Security
 Source: polkit-default-privs-%version.tar.bz2
-Patch0: more-systemd.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Supplements:PolicyKit
 Supplements:libpolkit0, polkit
@@ -43,7 +42,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 

++ polkit-default-privs-12.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/polkit-default-privs-12.3/polkit-default-privs.restrictive 
new/polkit-default-privs-12.3/polkit-default-privs.restrictive
--- old/polkit-default-privs-12.3/polkit-default-privs.restrictive  
2012-11-02 11:08:00.0 +0100
+++ new/polkit-default-privs-12.3/polkit-default-privs.restrictive  
2013-02-19 17:13:52.0 +0100
@@ -361,4 +361,17 @@
 #
 org.kde.recorditnow.helper.watchauth_admin
 
+#
+# GNOME control-center (bnc#779938)
+#
+org.gnome.controlcenter.user-accounts.administration
no:no:auth_admin_keep
+org.gnome.controlcenter.datetime.configure  
no:no:auth_admin_keep
+
+#
+# PackageKit / systemd offline updates (bnc#798885)
+#
+org.freedesktop.packagekit.trigger-offline-update   
no:no:auth_admin_keep
+org.freedesktop.packagekit.clear-offline-update 
no:no:auth_admin_keep
+
+
 ###
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/polkit-default-privs-12.3/polkit-default-privs.standard 
new/polkit-default-privs-12.3/polkit-default-privs.standard
--- old/polkit-default-privs-12.3/polkit-default-privs.standard 2012-11-02 
11:08:00.0 +0100
+++ new/polkit-default-privs-12.3/polkit-default-privs.standard 2013-02-19 
17:13:52.0 +0100
@@ -347,6 +347,13 @@
 org.freedesktop.login1.inhibit-handle-suspend-key  auth_admin_keep
 org.freedesktop.login1.inhibit-handle-hibernate-keyauth_admin_keep
 org.freedesktop.login1.inhibit-handle-lid-switch   auth_admin_keep
+# even more
+org.freedesktop.login1.inhibit-delay-shutdown   auth_admin_keep
+org.freedesktop.login1.inhibit-delay-sleep  auth_admin_keep
+org.freedesktop.login1.inhibit-block-idle   auth_admin_keep
+org.freedesktop.login1.suspend  
auth_admin_keep:auth_admin_keep:yes
+org.freedesktop.login1.suspend-multiple-sessions
auth_admin_keep:auth_admin_keep:yes
+org.freedesktop.login1.hibernate
auth_admin_keep:auth_admin_keep:yes
 
 
 # gnome-control-center
@@ -400,5 +407,10 @@
 org.gnome.controlcenter.user-accounts.administration   
no:no:auth_admin_keep
 org.gnome.controlcenter.datetime.configure 
no:no:auth_admin_keep
 
+#
+# PackageKit / systemd offline updates (bnc#798885)
+#
+org.freedesktop.packagekit.trigger-offline-update  
no:no:auth_admin_keep
+org.freedesktop.packagekit.clear-offline-update
no:no:auth_admin_keep
 
 ###

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



commit supertuxkart for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package supertuxkart for openSUSE:Factory 
checked in at 2013-02-21 10:46:12

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


Package is supertuxkart, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2013-02-09 11:18:20.872010756 +0100
+++ /work/SRC/openSUSE:Factory/.supertuxkart.new/supertuxkart.changes   
2013-02-21 10:46:15.0 +0100
@@ -0,0 +1,273 @@
+---
+Wed Feb 20 16:21:05 UTC 2013 - cfarr...@suse.com
+
+- License update: GPL-2.0+ and GPL-3.0+ and CC-BY-SA-3.0
+  Based on audit of 0.8.
+
+---
+Fri Jan  4 13:51:36 UTC 2013 - dims...@opensuse.org
+
+- Correct supertuxkart-desktop.patch: the fix did not really work
+  (bnc#794681).
+
+---
+Wed Dec 26 11:08:26 UTC 2012 - joop.boo...@opensuse.org
+
+- openal-devel is now called openal-soft-devel 
+
+---
+Sat Dec 15 20:58:22 UTC 2012 - dims...@opensuse.org
+
+- Add supertuxkart-desktop.patch: Fix path to supertuxkart in
+  .desktop file (bnc#794681).
+
+---
+Tue Dec 11 23:30:04 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.8:
+  + Story mode and new challenge set.
+  + Improved AI.
+  + Skidding and better collision physics.
+  + Reverse mode.
+  + New green valley track.
+  + New Blackhill Mansion track.
+  + Updated XR591 track.
+  + Updated Fort Magma track.
+  + Updated Jungle track.
+  + Updated Sand track.
+  + New music.
+  + Updated menus.
+- Drop automake buildrequires: no need to bootstrap;
+- Drop Irrlicht-devel BuildRequires: we must build with the
+  internal, statically linked Irrlicht, or we will see graphic
+  glitches.
+- Drop supertuxkart-pthread.patch: fixed upstream.
+- Add cmake BuildRequires: build system was ported to cmake.
+- Add fribidi-devel BuildRequires: needed for RTL texts.
+- Add pkgconfig(gl) BuildRequires: new dependency (for Irrlicht).
+
+---
+Tue May  1 22:28:40 UTC 2012 - joop.boo...@opensuse.org
+
+- Corrected links is now hosted on sourceforge
+- Added missing BuildRequires automake
+
+---
+Mon Nov 14 21:34:47 UTC 2011 - dims...@opensuse.org
+
+- Update to version 0.7.3:
+  + New Minigolf track
+  + New Zen Garden track
+  + New Subsea track
+  + New Island battle arena
+  + New Suzanne kart
+  + New graphical effects
+  + New weapons 'Swatter' and 'Rubber Ball'
+  + Added Thunderbird as race referee
+  + 3 Strikes Battles now displays lives as spare tires
+  + Improved bubble gum
+  + See progression during Grand Prix
+  + Improve physics for tall karts (e.g. Adiumy)
+  + Lots of bug fixes
+  + Improved kart control at high speeds
+  + Better placement of rescued karts
+  + Transition track-making to blender 2.5/2.6
+- Hack in the .spec to drop files that get unintentionally
+  installed (reported to upstream).
+- Add: supertuxkart-pthread.patch: Link against pthread when.
+
+---
+Tue Sep 27 13:25:09 UTC 2011 - prus...@opensuse.org
+
+- add Geeko kart add-on by default
+- split data files to separate noarch package
+
+---
+Sat Jul 16 20:49:26 UTC 2011 - dims...@opensuse.org
+
+- Update to version 0.7.2:
+  + In-game addon manager
+  + Fixed major memory leaks
+  + New Snow Peak track by Samuncle
+  + Improved star track UFO by Rudy
+  + New Beastie kart.
+  + Show when you get a highscore
+  + Improve gamepad configuration under Windows (add ability to
+tell gamepads apart)
+  + Various other tweaks done and glitches fixed.
+
+---
+Mon Apr 25 19:29:32 UTC 2011 - dims...@opensuse.org
+
+- Update to version 0.7.1b:
+  + Fixes a nasty bug stopping you from finishing a challenge.
+
+---
+Fri Apr 15 21:17:36 UTC 2011 - dims...@opensuse.org
+
+- Update to version 0.7.1:
+  + Particle (smoke, splash, fire) and weather effects
+  + New Fort Magma by Samuncle, new Shiny Suburbs track by Horace
+  + New Beagle kart by wolterh, new Emule kart by Kinsu
+  + Added internet news
+  + Support for live language switch
+  + Added optional minimal race UI
+  + Temporary invincibility after being hit
+  + Added support for full-screen anti-aliasing
+  + Clearer multiplayer setup
+  + Renamed many tracks to nicer names
+  + Basic 

commit xorg-x11-server for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:12.3 
checked in at 2013-02-21 10:46:45

Comparing /work/SRC/openSUSE:12.3/xorg-x11-server (Old)
 and  /work/SRC/openSUSE:12.3/.xorg-x11-server.new (New)


Package is xorg-x11-server, Maintainer is sndir...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/xorg-x11-server/xorg-x11-server.changes 
2013-02-01 16:16:01.0 +0100
+++ /work/SRC/openSUSE:12.3/.xorg-x11-server.new/xorg-x11-server.changes
2013-02-21 10:46:52.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 20 13:36:40 UTC 2013 - sndir...@suse.com
+
+- added u_init_framebuffer_base.patch: initialize buffer.base to fix 
+  Xorg segfault in virtualbox guest (bnc#799480)
+
+---

New:

  u_init_framebuffer_base.patch



Other differences:
--
++ xorg-x11-server.spec ++
--- /var/tmp/diff_new_pack.mz8FgJ/_old  2013-02-21 10:46:53.0 +0100
+++ /var/tmp/diff_new_pack.mz8FgJ/_new  2013-02-21 10:46:53.0 +0100
@@ -177,6 +177,7 @@
 Patch222:   N_sync-fix.patch
 Patch225:   u_Do-not-use-intel-driver-on-Poulsbo-Oaktrail-Medfield.patch
 Patch226:   u_vgaHW-no-legacy.patch
+Patch227:   u_init_framebuffer_base.patch
 
 %description
 This package contains the X.Org Server.
@@ -295,6 +296,7 @@
 #%patch222 -p1
 %patch225 -p1
 %patch226 -p0
+%patch227 -p1
 
 %build
 autoreconf -fi

++ u_init_framebuffer_base.patch ++
Index: xorg-server-1.13.2/glx/glxdri.c
===
--- xorg-server-1.13.2/glx/glxdri.c
+++ xorg-server-1.13.2/glx/glxdri.c
@@ -971,13 +971,15 @@ __glXDRIscreenProbe(ScreenPtr pScreen)
 size_t buffer_size;
 ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen);
 
+framebuffer.base = NULL;
+
 if (!xf86LoaderCheckSymbol(DRIQueryDirectRenderingCapable) ||
 !DRIQueryDirectRenderingCapable(pScreen, isCapable) || !isCapable) {
 LogMessage(X_INFO,
AIGLX: Screen %d is not DRI capable\n, pScreen-myNum);
 return NULL;
 }
-
+   
 screen = calloc(1, sizeof *screen);
 if (screen == NULL)
 return NULL;
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-samba-client for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package yast2-samba-client for 
openSUSE:Factory checked in at 2013-02-21 10:47:52

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


Package is yast2-samba-client, Maintainer is jsuch...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-samba-client/yast2-samba-client.changes
2013-01-20 08:19:43.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-samba-client.new/yast2-samba-client.changes   
2013-02-21 10:47:54.0 +0100
@@ -1,0 +2,9 @@
+Wed Feb 20 11:44:33 CET 2013 - jsuch...@suse.cz
+
+- synchronize cluster before restarting CTDB clone service
+  (bnc#802814)
+- force synchronization of smb.conf (bnc#802814)
+- do not use hard-coded ctdb resource identifier (bnc#804303) 
+- 2.23.2
+
+---

Old:

  yast2-samba-client-2.23.1.tar.bz2

New:

  yast2-samba-client-2.23.2.tar.bz2



Other differences:
--
++ yast2-samba-client.spec ++
--- /var/tmp/diff_new_pack.ZKPYLx/_old  2013-02-21 10:47:56.0 +0100
+++ /var/tmp/diff_new_pack.ZKPYLx/_new  2013-02-21 10:47:56.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-samba-client
-Version:2.23.1
+Version:2.23.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-samba-client-2.23.1.tar.bz2 - yast2-samba-client-2.23.2.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-samba-client-2.23.1/VERSION 
new/yast2-samba-client-2.23.2/VERSION
--- old/yast2-samba-client-2.23.1/VERSION   2013-01-18 10:35:22.0 
+0100
+++ new/yast2-samba-client-2.23.2/VERSION   2013-02-20 14:41:33.0 
+0100
@@ -1 +1 @@
-2.23.1
+2.23.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-samba-client-2.23.1/configure 
new/yast2-samba-client-2.23.2/configure
--- old/yast2-samba-client-2.23.1/configure 2013-01-18 10:43:32.0 
+0100
+++ new/yast2-samba-client-2.23.2/configure 2013-02-20 14:41:46.0 
+0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-samba-client 2.23.1.
+# Generated by GNU Autoconf 2.69 for yast2-samba-client 2.23.2.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -579,8 +579,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-samba-client'
 PACKAGE_TARNAME='yast2-samba-client'
-PACKAGE_VERSION='2.23.1'
-PACKAGE_STRING='yast2-samba-client 2.23.1'
+PACKAGE_VERSION='2.23.2'
+PACKAGE_STRING='yast2-samba-client 2.23.2'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1247,7 +1247,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-samba-client 2.23.1 to adapt to many kinds of 
systems.
+\`configure' configures yast2-samba-client 2.23.2 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1319,7 +1319,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-samba-client 2.23.1:;;
+ short | recursive ) echo Configuration of yast2-samba-client 2.23.2:;;
esac
   cat \_ACEOF
 
@@ -1399,7 +1399,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-yast2-samba-client configure 2.23.1
+yast2-samba-client configure 2.23.2
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1416,7 +1416,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-samba-client $as_me 2.23.1, which was
+It was created by yast2-samba-client $as_me 2.23.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2355,7 +2355,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-samba-client'
- VERSION='2.23.1'
+ VERSION='2.23.2'
 
 
 cat confdefs.h _ACEOF
@@ -2478,7 +2478,7 @@
 
 
 
-VERSION=2.23.1
+VERSION=2.23.2
 RPMNAME=yast2-samba-client
 MAINTAINER=Jiri Suchomel jsuch...@suse.cz
 
@@ -3404,7 +3404,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by yast2-samba-client $as_me 2.23.1, which was
+This file was extended by yast2-samba-client $as_me 2.23.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -3457,7 

commit yast2-samba-client for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package yast2-samba-client for openSUSE:12.3 
checked in at 2013-02-21 10:47:58

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


Package is yast2-samba-client, Maintainer is jsuch...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/yast2-samba-client/yast2-samba-client.changes   
2013-01-31 01:47:08.0 +0100
+++ /work/SRC/openSUSE:12.3/.yast2-samba-client.new/yast2-samba-client.changes  
2013-02-21 10:48:01.0 +0100
@@ -1,0 +2,9 @@
+Wed Feb 20 11:44:33 CET 2013 - jsuch...@suse.cz
+
+- synchronize cluster before restarting CTDB clone service
+  (bnc#802814)
+- force synchronization of smb.conf (bnc#802814)
+- do not use hard-coded ctdb resource identifier (bnc#804303) 
+- 2.23.2
+
+---

Old:

  yast2-samba-client-2.23.1.tar.bz2

New:

  yast2-samba-client-2.23.2.tar.bz2



Other differences:
--
++ yast2-samba-client.spec ++
--- /var/tmp/diff_new_pack.BZ8USQ/_old  2013-02-21 10:48:01.0 +0100
+++ /var/tmp/diff_new_pack.BZ8USQ/_new  2013-02-21 10:48:01.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-samba-client
-Version:2.23.1
+Version:2.23.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-samba-client-2.23.1.tar.bz2 - yast2-samba-client-2.23.2.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-samba-client-2.23.1/VERSION 
new/yast2-samba-client-2.23.2/VERSION
--- old/yast2-samba-client-2.23.1/VERSION   2013-01-18 10:35:22.0 
+0100
+++ new/yast2-samba-client-2.23.2/VERSION   2013-02-20 14:41:33.0 
+0100
@@ -1 +1 @@
-2.23.1
+2.23.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-samba-client-2.23.1/configure 
new/yast2-samba-client-2.23.2/configure
--- old/yast2-samba-client-2.23.1/configure 2013-01-18 10:43:32.0 
+0100
+++ new/yast2-samba-client-2.23.2/configure 2013-02-20 14:41:46.0 
+0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-samba-client 2.23.1.
+# Generated by GNU Autoconf 2.69 for yast2-samba-client 2.23.2.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -579,8 +579,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-samba-client'
 PACKAGE_TARNAME='yast2-samba-client'
-PACKAGE_VERSION='2.23.1'
-PACKAGE_STRING='yast2-samba-client 2.23.1'
+PACKAGE_VERSION='2.23.2'
+PACKAGE_STRING='yast2-samba-client 2.23.2'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1247,7 +1247,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-samba-client 2.23.1 to adapt to many kinds of 
systems.
+\`configure' configures yast2-samba-client 2.23.2 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1319,7 +1319,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-samba-client 2.23.1:;;
+ short | recursive ) echo Configuration of yast2-samba-client 2.23.2:;;
esac
   cat \_ACEOF
 
@@ -1399,7 +1399,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-yast2-samba-client configure 2.23.1
+yast2-samba-client configure 2.23.2
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1416,7 +1416,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-samba-client $as_me 2.23.1, which was
+It was created by yast2-samba-client $as_me 2.23.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2355,7 +2355,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-samba-client'
- VERSION='2.23.1'
+ VERSION='2.23.2'
 
 
 cat confdefs.h _ACEOF
@@ -2478,7 +2478,7 @@
 
 
 
-VERSION=2.23.1
+VERSION=2.23.2
 RPMNAME=yast2-samba-client
 MAINTAINER=Jiri Suchomel jsuch...@suse.cz
 
@@ -3404,7 +3404,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by yast2-samba-client $as_me 2.23.1, which was
+This file was extended by yast2-samba-client $as_me 2.23.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -3457,7 +3457,7 @@
 cat 

commit kernel-firmware for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-firmware for openSUSE:Factory 
checked in at 2013-02-21 10:55:08

Comparing /work/SRC/openSUSE:Factory/kernel-firmware (Old)
 and  /work/SRC/openSUSE:Factory/.kernel-firmware.new (New)


Package is kernel-firmware, Maintainer is mma...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/kernel-firmware/kernel-firmware.changes  
2013-02-17 17:02:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.kernel-firmware.new/kernel-firmware.changes 
2013-02-21 10:55:10.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 21 09:24:39 UTC 2013 - larry.fin...@lwfinger.net
+
+- fix previous fix to build on factory/12.3
+
+---



Other differences:
--


++ linux-firmware-20130114git.tar.bz2 ++
/work/SRC/openSUSE:Factory/kernel-firmware/linux-firmware-20130114git.tar.bz2 
/work/SRC/openSUSE:Factory/.kernel-firmware.new/linux-firmware-20130114git.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 kernel-firmware for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-firmware for openSUSE:12.3 
checked in at 2013-02-21 10:55:11

Comparing /work/SRC/openSUSE:12.3/kernel-firmware (Old)
 and  /work/SRC/openSUSE:12.3/.kernel-firmware.new (New)


Package is kernel-firmware, Maintainer is mma...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/kernel-firmware/kernel-firmware.changes 
2013-02-17 17:02:32.0 +0100
+++ /work/SRC/openSUSE:12.3/.kernel-firmware.new/kernel-firmware.changes
2013-02-21 10:55:16.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 21 09:24:39 UTC 2013 - larry.fin...@lwfinger.net
+
+- fix previous fix to build on factory/12.3
+
+---



Other differences:
--


++ linux-firmware-20130114git.tar.bz2 ++
/work/SRC/openSUSE:12.3/kernel-firmware/linux-firmware-20130114git.tar.bz2 
/work/SRC/openSUSE:12.3/.kernel-firmware.new/linux-firmware-20130114git.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 jakarta-commons-httpclient.1351 for openSUSE:12.3:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package jakarta-commons-httpclient.1351 for 
openSUSE:12.3:Update checked in at 2013-02-21 13:25:22

Comparing /work/SRC/openSUSE:12.3:Update/jakarta-commons-httpclient.1351 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.jakarta-commons-httpclient.1351.new 
(New)


Package is jakarta-commons-httpclient.1351, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2013-02-09 11:18:20.872010756 +0100
+++ 
/work/SRC/openSUSE:12.3:Update/.jakarta-commons-httpclient.1351.new/jakarta-commons-httpclient.changes
  2013-02-21 13:25:23.0 +0100
@@ -0,0 +1,48 @@
+---
+Thu Feb 14 09:10:48 UTC 2013 - mvysko...@suse.com
+
+- fix bnc#803332: no ssl certificate hostname checking (CVE-2012-5783)
+  * commons-httpclient-CVE-2012-5783.patch
+
+---
+Fri May 25 11:18:20 UTC 2012 - mvysko...@suse.cz
+
+- update to 3.1 (bugfix release)
+- make sure it works with jdk7
+- improve spec (ie non-versioned javadoc dir)
+- rename to jakarta-commons-httpclient to remain compatible
+
+---
+Thu Jul 17 07:45:10 CEST 2008 - co...@suse.de
+
+- avoid another build cycle
+
+---
+Mon Oct  2 15:47:26 CEST 2006 - dbornkes...@suse.de
+
+- update to v3.0.1 
+- fixes necessary to compile with Java 1.5.0 (in 3.0.1 version)
+- set source=1.4 and target=1.4 for ant javac tasks
+- set source=1.4 for ant javadoc tasks
+
+---
+Mon Sep 25 12:47:02 CEST 2006 - s...@suse.de
+
+- don't use icecream
+- use source=1.4 and target=1.4 for build with java 1.5
+
+---
+Wed Jan 25 21:46:37 CET 2006 - m...@suse.de
+
+- converted neededforbuild to BuildRequires
+
+---
+Wed Jan  4 18:21:39 CET 2006 - dbornkes...@suse.de
+
+- disabled and 'test' target as that was specially written for sun JRE and 
hence fails with other JREs
+
+---
+Mon Dec 19 21:02:45 CET 2005 - dbornkes...@suse.de
+
+- Current version 3.0 from JPackage.org
+

New:

  commons-httpclient-3.1-src.tar.gz
  commons-httpclient-CVE-2012-5783.patch
  jakarta-commons-httpclient-addosgimanifest.patch
  jakarta-commons-httpclient-disablecryptotests.patch
  jakarta-commons-httpclient-encoding.patch
  jakarta-commons-httpclient.changes
  jakarta-commons-httpclient.spec



Other differences:
--
++ jakarta-commons-httpclient.spec ++
#
# spec file for package jakarta-commons-httpclient
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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/
#
# icecream 0


%define short_name commons-httpclient

Name:   jakarta-commons-httpclient
Version:3.1
Release:0
Summary:Feature rich package for accessing resources via HTTP
License:Apache-2.0
Group:  Development/Libraries/Java
Url:http://jakarta.apache.org/commons/httpclient/
#Source0:
http://archive.apache.org/dist/jakarta/commons/httpclient/source/commons-httpclient-3.0-rc4-src.tar.gz
Source0:commons-httpclient-%{version}-src.tar.gz
Patch0: %{name}-disablecryptotests.patch
# Add OSGi MANIFEST.MF bits
Patch1: %{name}-addosgimanifest.patch
Patch2: %{name}-encoding.patch
#PATCH-FIX-UPSTREAM: bnc#803332
#http://svn.apache.org/viewvc?view=revisionrevision=483925
Patch3: commons-httpclient-CVE-2012-5783.patch
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

BuildRequires:  ant
BuildRequires:  commons-codec
BuildRequires:  commons-logging = 1.0.3
#BuildRequires:  java-javadoc
#BuildRequires:  apache-commons-logging-javadoc
BuildRequires:  java-devel
BuildRequires:  junit

Requires:   commons-codec
Requires:   commons-logging = 1.0.3

Provides:   %{short_name} = %{version}-%{release}

commit jakarta-commons-httpclient for openSUSE:12.3:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package jakarta-commons-httpclient for 
openSUSE:12.3:Update checked in at 2013-02-21 13:25:28

Comparing /work/SRC/openSUSE:12.3:Update/jakarta-commons-httpclient (Old)
 and  /work/SRC/openSUSE:12.3:Update/.jakarta-commons-httpclient.new (New)


Package is jakarta-commons-httpclient, Maintainer is 

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++
link package='jakarta-commons-httpclient.1351' cicount='copy' /
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit colord for openSUSE:12.3:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package colord for openSUSE:12.3:Update 
checked in at 2013-02-21 13:25:34

Comparing /work/SRC/openSUSE:12.3:Update/colord (Old)
 and  /work/SRC/openSUSE:12.3:Update/.colord.new (New)


Package is colord, Maintainer is 

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++
link package='colord.1353' cicount='copy' /
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit patchinfo.1353 for openSUSE:12.3:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.1353 for 
openSUSE:12.3:Update checked in at 2013-02-21 13:25:36

Comparing /work/SRC/openSUSE:12.3:Update/patchinfo.1353 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.patchinfo.1353.new (New)


Package is patchinfo.1353, Maintainer is 

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++
patchinfo
  packagerdimstar/packager
  categoryrecommended/category
  ratinglow/rating
  summarycolord: Add AppArmor profiles to 12.3/summary
  descriptionThis update fixes the following issue for colord:
- bnc#803281: Add AppArmor profiles to 12.3/description
  issue tracker=bnc id=803281colord apparmor profile is broken, 
preventing colord to work properly/issue
/patchinfo
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit patchinfo.1339 for openSUSE:12.2:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.1339 for 
openSUSE:12.2:Update checked in at 2013-02-21 13:34:14

Comparing /work/SRC/openSUSE:12.2:Update/patchinfo.1339 (Old)
 and  /work/SRC/openSUSE:12.2:Update/.patchinfo.1339.new (New)


Package is patchinfo.1339, Maintainer is 

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++
patchinfo
  packagerWernerFink/packager
  categoryrecommended/category
  ratinglow/rating
  summarymkinitrd: Fix boolean typo that is assume local time as default in 
warpclock/summary
  descriptionThis update fixes the following issue for mkinitrd:
- Fix boolean typo that is assume local time as default in warpclock as we 
check for UTC in /etc/adjtime (related to bnc#779145)/description
  issue tracker=bnc id=779145nfs4 mounts with sec=krb5 not mounted during 
boot/issue
/patchinfo
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit postgresql91-libs.1337 for openSUSE:12.1:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package postgresql91-libs.1337 for 
openSUSE:12.1:Update checked in at 2013-02-21 13:49:58

Comparing /work/SRC/openSUSE:12.1:Update/postgresql91-libs.1337 (Old)
 and  /work/SRC/openSUSE:12.1:Update/.postgresql91-libs.1337.new (New)


Package is postgresql91-libs.1337, Maintainer is 

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++
link package=postgresql91.1337 cicount=copy/--
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit postgresql91-libs for openSUSE:12.1:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package postgresql91-libs for 
openSUSE:12.1:Update checked in at 2013-02-21 13:50:02

Comparing /work/SRC/openSUSE:12.1:Update/postgresql91-libs (Old)
 and  /work/SRC/openSUSE:12.1:Update/.postgresql91-libs.new (New)


Package is postgresql91-libs, Maintainer is m...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.3QJJ5d/_old  2013-02-21 13:50:04.0 +0100
+++ /var/tmp/diff_new_pack.3QJJ5d/_new  2013-02-21 13:50:04.0 +0100
@@ -1 +1 @@
-link package='postgresql91-libs.1224' cicount='copy' /
+link package='postgresql91-libs.1337' cicount='copy' /

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



commit postgresql91-libs for openSUSE:12.2:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package postgresql91-libs for 
openSUSE:12.2:Update checked in at 2013-02-21 13:50:04

Comparing /work/SRC/openSUSE:12.2:Update/postgresql91-libs (Old)
 and  /work/SRC/openSUSE:12.2:Update/.postgresql91-libs.new (New)


Package is postgresql91-libs, Maintainer is m...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.ZNtaar/_old  2013-02-21 13:50:13.0 +0100
+++ /var/tmp/diff_new_pack.ZNtaar/_new  2013-02-21 13:50:13.0 +0100
@@ -1 +1 @@
-link package='postgresql91-libs.1224' cicount='copy' /
+link package='postgresql91-libs.1337' cicount='copy' /

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



commit postgresql91 for openSUSE:12.1:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package postgresql91 for 
openSUSE:12.1:Update checked in at 2013-02-21 13:50:08

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


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

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.vFcMrU/_old  2013-02-21 13:50:16.0 +0100
+++ /var/tmp/diff_new_pack.vFcMrU/_new  2013-02-21 13:50:16.0 +0100
@@ -1 +1 @@
-link package='postgresql91.1224' cicount='copy' /
+link package='postgresql91.1337' cicount='copy' /

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



commit postgresql91 for openSUSE:12.2:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package postgresql91 for 
openSUSE:12.2:Update checked in at 2013-02-21 13:50:11

Comparing /work/SRC/openSUSE:12.2:Update/postgresql91 (Old)
 and  /work/SRC/openSUSE:12.2:Update/.postgresql91.new (New)


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

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.GPEHJu/_old  2013-02-21 13:50:18.0 +0100
+++ /var/tmp/diff_new_pack.GPEHJu/_new  2013-02-21 13:50:18.0 +0100
@@ -1 +1 @@
-link package='postgresql91.1224' cicount='copy' /
+link package='postgresql91.1337' cicount='copy' /

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



commit patchinfo.1337 for openSUSE:12.2:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.1337 for 
openSUSE:12.2:Update checked in at 2013-02-21 13:50:21

Comparing /work/SRC/openSUSE:12.2:Update/patchinfo.1337 (Old)
 and  /work/SRC/openSUSE:12.2:Update/.patchinfo.1337.new (New)


Package is patchinfo.1337, Maintainer is 

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++
patchinfo
  issue id=802679 tracker=bncVUL-0: CVE-2013-0255: postgresql post-auth 
remote denial of service (crash)/issue
  issue id=CVE-2013-0255 tracker=cve /
  categorysecurity/category
  ratingmoderate/rating
  packagerrmax/packager
  description
PostgreSQL was updated to version 9.1.8 (bnc#802679):
  * Prevent execution of enum_recv from SQL (CVE-2013-0255).
  * Fix multiple problems in detection of when a consistent database
state has been reached during WAL replay
  * Update minimum recovery point when truncating a relation file
  * Fix recycling of WAL segments after changing recovery target
timeline
  * Fix missing cancellations in hot standby mode
  * See the release notes for the rest of the changes:
http://www.postgresql.org/docs/9.1/static/release-9-1-8.html
/usr/share/doc/packages/postgresql/HISTORY

- Remove postgresql91-full.spec.in and use postgresql91.spec as the
  master for generating postgresql91-libs.spec.
/description
  summarypostgresql91: update to 9.1.8/summary
/patchinfo
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit argus for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package argus for openSUSE:Factory checked 
in at 2013-02-21 14:07:00

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


Package is argus, Maintainer is jmate...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/argus/argus.changes  2012-11-06 
16:04:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.argus.new/argus.changes 2013-02-21 
14:07:02.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 20 11:18:54 UTC 2013 - cfarr...@suse.com
+
+- license update: GPL-2.0 and LGPL-2.1 and BSD-3-Clause and MIT
+  Based on audit of 3.0.6.1
+
+---



Other differences:
--
++ argus.spec ++
--- /var/tmp/diff_new_pack.8eQFA7/_old  2013-02-21 14:07:06.0 +0100
+++ /var/tmp/diff_new_pack.8eQFA7/_new  2013-02-21 14:07:06.0 +0100
@@ -19,7 +19,7 @@
 
 Name:   argus
 BuildRequires:  bison flex libpcap-devel tcpd-devel tcsh
-License:BSD-3-Clause ; LGPL-2.1+ ; MIT
+License:GPL-2.0 and LGPL-2.1 and BSD-3-Clause and MIT
 Group:  Productivity/Networking/Diagnostic
 Summary:Network Monitoring Tool
 Version:3.0.6.1
@@ -34,7 +34,7 @@
 BuildRequires:  systemd
 
 %package server
-License:BSD-3-Clause ; LGPL-2.1+ ; NON-OSI-COMPLIANT(Restricted 
Shareware) ; MIT
+License:GPL-2.0 and LGPL-2.1 and BSD-3-Clause and MIT
 Group:  Productivity/Networking/Diagnostic
 Summary:Daemon for Network Monitoring Tool
 Requires:   argus


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



commit gmp for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package gmp for openSUSE:Factory checked in 
at 2013-02-21 14:07:47

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


Package is gmp, Maintainer is rguent...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmp/gmp.changes  2013-02-14 20:37:57.0 
+0100
+++ /work/SRC/openSUSE:Factory/.gmp.new/gmp.changes 2013-02-21 
14:07:48.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 20 19:28:21 UTC 2013 - sch...@suse.de
+
+- Update baselibs.conf for removal of libmp3
+
+---



Other differences:
--
++ baselibs.conf ++
--- /var/tmp/diff_new_pack.uBLEa2/_old  2013-02-21 14:07:50.0 +0100
+++ /var/tmp/diff_new_pack.uBLEa2/_new  2013-02-21 14:07:50.0 +0100
@@ -1,9 +1,7 @@
 libgmp10
   obsoletes gmp-targettype
 libgmpxx4
-libmp3
 gmp-devel
   requires -gmp-targettype
   requires libgmp10-targettype = version
   requires libgmpxx4-targettype = version
-  requires libmp3-targettype = version

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



commit libyui-ncurses-pkg for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package libyui-ncurses-pkg for 
openSUSE:Factory checked in at 2013-02-21 14:24:13

Comparing /work/SRC/openSUSE:Factory/libyui-ncurses-pkg (Old)
 and  /work/SRC/openSUSE:Factory/.libyui-ncurses-pkg.new (New)


Package is libyui-ncurses-pkg, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libyui-ncurses-pkg/libyui-ncurses-pkg.changes
2013-01-24 10:26:05.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.libyui-ncurses-pkg.new/libyui-ncurses-pkg.changes   
2013-02-21 14:24:16.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 21 09:44:08 CET 2013 - g...@suse.de
+- Show patch descriptions correctly (bnc #803466)
+- V 2.43.4
+
+---

Old:

  libyui-ncurses-pkg-2.43.3.tar.bz2

New:

  libyui-ncurses-pkg-2.43.4.tar.bz2



Other differences:
--
++ libyui-ncurses-pkg-doc.spec ++
--- /var/tmp/diff_new_pack.l7hEFu/_old  2013-02-21 14:24:17.0 +0100
+++ /var/tmp/diff_new_pack.l7hEFu/_new  2013-02-21 14:24:17.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses-pkg (Version 2.43.3)
+# spec file for package libyui-ncurses-pkg (Version 2.43.4)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -16,7 +16,7 @@
 #
 
 Name:  libyui-ncurses-pkg-doc
-Version:   2.43.3
+Version:   2.43.4
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-pkg-%{version}.tar.bz2

++ libyui-ncurses-pkg.spec ++
--- /var/tmp/diff_new_pack.l7hEFu/_old  2013-02-21 14:24:17.0 +0100
+++ /var/tmp/diff_new_pack.l7hEFu/_new  2013-02-21 14:24:17.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses-pkg (Version 2.43.3)
+# spec file for package libyui-ncurses-pkg (Version 2.43.4)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -18,7 +18,7 @@
 # norootforbuild
 
 Name:  libyui-ncurses-pkg
-Version:   2.43.3
+Version:   2.43.4
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-pkg-%{version}.tar.bz2

++ libyui-ncurses-pkg-2.43.3.tar.bz2 - libyui-ncurses-pkg-2.43.4.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-pkg-2.43.3/ChangeLog 
new/libyui-ncurses-pkg-2.43.4/ChangeLog
--- old/libyui-ncurses-pkg-2.43.3/ChangeLog 2013-01-22 12:58:21.0 
+0100
+++ new/libyui-ncurses-pkg-2.43.4/ChangeLog 2013-02-21 09:48:52.0 
+0100
@@ -1,4 +1,9 @@
 ---
+Thu Feb 21 09:44:08 CET 2013 - g...@suse.de
+- Show patch descriptions correctly (bnc #803466)
+- V 2.43.4
+
+---
 Tue Jan 22 11:43:43 CET 2013 - g...@suse.de
 
 - Bug-fix for package search (concerning package summary) 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-pkg-2.43.3/VERSION.cmake 
new/libyui-ncurses-pkg-2.43.4/VERSION.cmake
--- old/libyui-ncurses-pkg-2.43.3/VERSION.cmake 2013-01-22 12:58:21.0 
+0100
+++ new/libyui-ncurses-pkg-2.43.4/VERSION.cmake 2013-02-21 09:48:52.0 
+0100
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR 2 )
 SET( VERSION_MINOR 43 )
-SET( VERSION_PATCH 3 )
+SET( VERSION_PATCH 4 )
 SET( VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} )
 
 # This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-pkg-2.43.3/src/NCPkgPackageDetails.cc 
new/libyui-ncurses-pkg-2.43.4/src/NCPkgPackageDetails.cc
--- old/libyui-ncurses-pkg-2.43.3/src/NCPkgPackageDetails.cc2013-01-22 
12:58:21.0 +0100
+++ new/libyui-ncurses-pkg-2.43.4/src/NCPkgPackageDetails.cc2013-02-21 
09:48:52.0 +0100
@@ -424,6 +424,10 @@
 }
 else
 {
+// escape html
+boost::replace_all( value, , amp; );
+boost::replace_all( value, , lt; );
+boost::replace_all( value, , gt; );
html_text = pre + value + /pre; // add pre to preserve 
newlines and spaces
 }
 

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



commit libyui-ncurses-pkg for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package libyui-ncurses-pkg for openSUSE:12.3 
checked in at 2013-02-21 14:24:17

Comparing /work/SRC/openSUSE:12.3/libyui-ncurses-pkg (Old)
 and  /work/SRC/openSUSE:12.3/.libyui-ncurses-pkg.new (New)


Package is libyui-ncurses-pkg, Maintainer is 

Changes:

--- /work/SRC/openSUSE:12.3/libyui-ncurses-pkg/libyui-ncurses-pkg.changes   
2013-01-31 01:26:12.0 +0100
+++ /work/SRC/openSUSE:12.3/.libyui-ncurses-pkg.new/libyui-ncurses-pkg.changes  
2013-02-21 14:24:25.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 21 09:44:08 CET 2013 - g...@suse.de
+- Show patch descriptions correctly (bnc #803466)
+- V 2.43.4
+
+---

Old:

  libyui-ncurses-pkg-2.43.3.tar.bz2

New:

  libyui-ncurses-pkg-2.43.4.tar.bz2



Other differences:
--
++ libyui-ncurses-pkg-doc.spec ++
--- /var/tmp/diff_new_pack.IvV9l0/_old  2013-02-21 14:24:26.0 +0100
+++ /var/tmp/diff_new_pack.IvV9l0/_new  2013-02-21 14:24:26.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses-pkg (Version 2.43.3)
+# spec file for package libyui-ncurses-pkg (Version 2.43.4)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -16,7 +16,7 @@
 #
 
 Name:  libyui-ncurses-pkg-doc
-Version:   2.43.3
+Version:   2.43.4
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-pkg-%{version}.tar.bz2

++ libyui-ncurses-pkg.spec ++
--- /var/tmp/diff_new_pack.IvV9l0/_old  2013-02-21 14:24:26.0 +0100
+++ /var/tmp/diff_new_pack.IvV9l0/_new  2013-02-21 14:24:26.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses-pkg (Version 2.43.3)
+# spec file for package libyui-ncurses-pkg (Version 2.43.4)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -18,7 +18,7 @@
 # norootforbuild
 
 Name:  libyui-ncurses-pkg
-Version:   2.43.3
+Version:   2.43.4
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-pkg-%{version}.tar.bz2

++ libyui-ncurses-pkg-2.43.3.tar.bz2 - libyui-ncurses-pkg-2.43.4.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-pkg-2.43.3/ChangeLog 
new/libyui-ncurses-pkg-2.43.4/ChangeLog
--- old/libyui-ncurses-pkg-2.43.3/ChangeLog 2013-01-22 12:58:21.0 
+0100
+++ new/libyui-ncurses-pkg-2.43.4/ChangeLog 2013-02-21 09:48:52.0 
+0100
@@ -1,4 +1,9 @@
 ---
+Thu Feb 21 09:44:08 CET 2013 - g...@suse.de
+- Show patch descriptions correctly (bnc #803466)
+- V 2.43.4
+
+---
 Tue Jan 22 11:43:43 CET 2013 - g...@suse.de
 
 - Bug-fix for package search (concerning package summary) 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-pkg-2.43.3/VERSION.cmake 
new/libyui-ncurses-pkg-2.43.4/VERSION.cmake
--- old/libyui-ncurses-pkg-2.43.3/VERSION.cmake 2013-01-22 12:58:21.0 
+0100
+++ new/libyui-ncurses-pkg-2.43.4/VERSION.cmake 2013-02-21 09:48:52.0 
+0100
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR 2 )
 SET( VERSION_MINOR 43 )
-SET( VERSION_PATCH 3 )
+SET( VERSION_PATCH 4 )
 SET( VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} )
 
 # This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-pkg-2.43.3/src/NCPkgPackageDetails.cc 
new/libyui-ncurses-pkg-2.43.4/src/NCPkgPackageDetails.cc
--- old/libyui-ncurses-pkg-2.43.3/src/NCPkgPackageDetails.cc2013-01-22 
12:58:21.0 +0100
+++ new/libyui-ncurses-pkg-2.43.4/src/NCPkgPackageDetails.cc2013-02-21 
09:48:52.0 +0100
@@ -424,6 +424,10 @@
 }
 else
 {
+// escape html
+boost::replace_all( value, , amp; );
+boost::replace_all( value, , lt; );
+boost::replace_all( value, , gt; );
html_text = pre + value + /pre; // add pre to preserve 
newlines and spaces
 }
 

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



commit potrace for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package potrace for openSUSE:Factory checked 
in at 2013-02-21 14:24:26

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


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

Changes:

--- /work/SRC/openSUSE:Factory/potrace/potrace.changes  2011-11-28 
14:49:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.potrace.new/potrace.changes 2013-02-21 
14:24:28.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb 20 16:34:36 CET 2013 - sbra...@suse.cz
+
+- Update to version 1.11:
+  * A GeoJSON backend was added.
+  * Support for bitfields in the BMP format was added.
+  * A minor change was made to the behavior of the alphamax
+parameter; a value of 0 now gives a true polygon. 
+- Build shared libpotrace.
+
+---

Old:

  potrace-1.10.tar.gz

New:

  potrace-1.11.tar.gz



Other differences:
--
++ potrace.spec ++
--- /var/tmp/diff_new_pack.djuKoC/_old  2013-02-21 14:24:30.0 +0100
+++ /var/tmp/diff_new_pack.djuKoC/_new  2013-02-21 14:24:30.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package potrace
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,16 +16,15 @@
 #
 
 
-
 Name:   potrace
-Version:1.10
-Release:1
-License:GPL-2.0+
+Version:1.11
+Release:0
 Summary:Utility for Tracing a Bitmap to Scalable Outline Image
-Url:http://potrace.sourceforge.net/
+License:GPL-2.0+
 Group:  Productivity/Graphics/Convertors
+Url:http://potrace.sourceforge.net/
 Source: %{name}-%{version}.tar.gz
-BuildRequires:  libtool zlib-devel
+BuildRequires:  zlib-devel
 Provides:   bitmap_tracing
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -38,28 +37,72 @@
 image is not jaggy like a bitmap, but smooth. It can then be rendered
 at any resolution.
 
+%package -n libpotrace0
+Summary:Library for Tracing a Bitmap to Scalable Outline Image
+Group:  System/Libraries
+
+%description -n libpotrace0
+Potrace is a utility for tracing a bitmap, which means, transforming a
+bitmap into a smooth, scalable image.  The input is a bitmap (PBM, PGM,
+PPM, or BMP), and the default output is one of several vector file
+formats.  A typical use is to create EPS files from scanned data, such
+as company or university logos, handwritten notes, etc. The resulting
+image is not jaggy like a bitmap, but smooth. It can then be rendered
+at any resolution.
+
+%package devel
+Summary:Library Development Files for Tracing a Bitmap to Scalable 
Outline Image
+Group:  Development/Languages/C and C++
+Requires:   %{name} = %{version}
+
+%description devel
+Potrace is a utility for tracing a bitmap, which means, transforming a
+bitmap into a smooth, scalable image.  The input is a bitmap (PBM, PGM,
+PPM, or BMP), and the default output is one of several vector file
+formats.  A typical use is to create EPS files from scanned data, such
+as company or university logos, handwritten notes, etc. The resulting
+image is not jaggy like a bitmap, but smooth. It can then be rendered
+at any resolution.
+
 %prep
 %setup -q
 
 %build
-export CXXFLAGS=$RPM_OPT_FLAGS
-export CFLAGS=$CXXFLAGS
-autoreconf -f -i
-./configure  --enable-static=no --prefix=%{_prefix}
+%configure\
+   --docdir=%{_docdir}/%{name}\
+   --with-libpotrace\
+   --disable-static
 make  %{?_smp_mflags}
 
 %install
+%if %suse_version  1110
 %make_install
+%else
+%makeinstall
+%endif
+cp -a AUTHORS ChangeLog COPYING NEWS README %{buildroot}%{_docdir}/%{name}/
+rm %{buildroot}%{_libdir}/*.*a
 
 %clean
-rm -fr %{buildroot}
+rm -rf %{buildroot}
+
+%post -n libpotrace0 -p /sbin/ldconfig
+
+%postun -n libpotrace0 -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root)
-%doc AUTHORS ChangeLog COPYING NEWS README 
-%dir %_datadir//doc/potrace
-%_datadir/doc/potrace/placement.pdf
 %{_bindir}/*
+%doc %{_docdir}/%{name}
 %doc %{_mandir}/man?/*.*
 
+%files -n libpotrace0
+%defattr(-,root,root)
+%{_libdir}/*.so.*
+
+%files devel
+%defattr(-,root,root)
+%{_includedir}/*.h
+%{_libdir}/*.so
+
 %changelog

++ potrace-1.10.tar.gz - potrace-1.11.tar.gz ++
 25698 lines of diff (skipped)

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



commit libqt4 for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package libqt4 for openSUSE:Factory checked 
in at 2013-02-21 14:55:55

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


Package is libqt4, Maintainer is dmuel...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libqt4/libqt4-devel-doc.changes  2013-01-20 
12:17:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt4.new/libqt4-devel-doc.changes 
2013-02-21 14:55:58.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 21 09:56:04 UTC 2013 - mvysko...@suse.com
+
+- fix bnc#802634: information disclosure via QSharedMemory (CVE-2013-0254)
+  * libqt4-CVE-2013-0254.patch
+
+---
libqt4-sql-plugins.changes: same change
libqt4.changes: same change

New:

  libqt4-CVE-2013-0254.patch



Other differences:
--
++ libqt4-devel-doc.spec ++
--- /var/tmp/diff_new_pack.h85jIh/_old  2013-02-21 14:56:10.0 +0100
+++ /var/tmp/diff_new_pack.h85jIh/_new  2013-02-21 14:56:10.0 +0100
@@ -105,6 +105,7 @@
 # PATCH-FIX-UPSTREAM  garbage-collect-deleted-objects.patch Fixes performance 
issues in apps which register 
 # and deregister objects very frequently (like nepomukstorage)
 Patch146:   garbage-collect-deleted-objects.patch
+Patch147:   libqt4-CVE-2013-0254.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
   %define common_options --opensource -fast -no-separate-debug-info -shared 
-xkb -openssl-linked -xrender -xcursor -dbus-linked -xfixes -xrandr -xinerama 
-sm -no-nas-sound -no-rpath -system-libjpeg -system-libpng -accessibility -cups 
-stl -nis -system-zlib -prefix /usr -L %{_libdir} -libdir %{_libdir} -docdir 
%_docdir/%{base_name} -examplesdir %{_libdir}/qt4/examples -demosdir 
%{_libdir}/qt4/demos -plugindir %plugindir -translationdir 
%{_datadir}/qt4/translations -iconv -sysconfdir /etc/settings -datadir 
%{_datadir}/qt4/ -no-pch -reduce-relocations -exceptions -system-libtiff -glib 
-optimized-qmake -no-webkit -no-xmlpatterns -system-sqlite -qt3support 
-no-sql-mysql -importdir %plugindir/imports  -xsync -xinput -gtkstyle
@@ -185,6 +186,7 @@
 %patch144 -p1
 %patch145 -p1
 %patch146 -p1
+%patch147 -p1
 # ### 47 rediff
 #%patch121 -p1
 # be sure not to use them

libqt4-sql-plugins.spec: same change
++ libqt4.spec ++
--- /var/tmp/diff_new_pack.h85jIh/_old  2013-02-21 14:56:10.0 +0100
+++ /var/tmp/diff_new_pack.h85jIh/_new  2013-02-21 14:56:10.0 +0100
@@ -123,6 +123,7 @@
 # PATCH-FIX-UPSTREAM  garbage-collect-deleted-objects.patch Fixes performance 
issues in apps which register 
 # and deregister objects very frequently (like nepomukstorage)
 Patch146:   garbage-collect-deleted-objects.patch
+Patch147:   libqt4-CVE-2013-0254.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
   %define common_options --opensource -fast -no-separate-debug-info -shared 
-xkb -openssl-linked -xrender -xcursor -dbus-linked -xfixes -xrandr -xinerama 
-sm -no-nas-sound -no-rpath -system-libjpeg -system-libpng -accessibility -cups 
-stl -nis -system-zlib -prefix /usr -L %{_libdir} -libdir %{_libdir} -docdir 
%_docdir/%{base_name} -examplesdir %{_libdir}/qt4/examples -demosdir 
%{_libdir}/qt4/demos -plugindir %plugindir -translationdir 
%{_datadir}/qt4/translations -iconv -sysconfdir /etc/settings -datadir 
%{_datadir}/qt4/ -no-pch -reduce-relocations -exceptions -system-libtiff -glib 
-optimized-qmake -no-webkit -no-xmlpatterns -system-sqlite -qt3support 
-no-sql-mysql -importdir %plugindir/imports  -xsync -xinput -gtkstyle
@@ -413,6 +414,7 @@
 %patch144 -p1
 %patch145 -p1
 %patch146 -p1
+%patch147 -p1
 # ### 47 rediff
 #%patch121 -p1
 # be sure not to use them



++ libqt4-CVE-2013-0254.patch ++
From 57756e72adf2081137b97f0e689dd16c770d10b1 Mon Sep 17 00:00:00 2001
From: Thiago Macieira thiago.macie...@intel.com
Date: Sat, 22 Dec 2012 08:32:12 -0800
Subject: [PATCH] Change all shmget calls to user-only memory

Drop the read and write permissions for group and other users in the
system.

Change-Id: I8fc753f09126651af3fb82df3049050f0b14e876
(cherry-picked from Qt 5 commit 856f209fb63ae336bfb389a12d2a75fa886dc1c5)
Reviewed-by: Richard J. Moore r...@kde.org
(cherry picked from commit 20b26bdb3dd5e46b01b9a7e1ce8342074df3c89c)
---

From 57756e72adf2081137b97f0e689dd16c770d10b1 Mon Sep 17 00:00:00 2001
From: Thiago Macieira thiago.macie...@intel.com
Date: Sat, 22 Dec 2012 08:32:12 -0800
Subject: [PATCH] Change all shmget calls to user-only memory

Drop the read and write permissions for group and other users in the
system.

Change-Id: I8fc753f09126651af3fb82df3049050f0b14e876
(cherry-picked from Qt 5 commit 856f209fb63ae336bfb389a12d2a75fa886dc1c5)

commit libqt4 for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package libqt4 for openSUSE:12.3 checked in 
at 2013-02-21 14:56:02

Comparing /work/SRC/openSUSE:12.3/libqt4 (Old)
 and  /work/SRC/openSUSE:12.3/.libqt4.new (New)


Package is libqt4, Maintainer is dmuel...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/libqt4/libqt4-devel-doc.changes 2013-01-31 
01:24:56.0 +0100
+++ /work/SRC/openSUSE:12.3/.libqt4.new/libqt4-devel-doc.changes
2013-02-21 14:56:11.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 21 09:56:04 UTC 2013 - mvysko...@suse.com
+
+- fix bnc#802634: information disclosure via QSharedMemory (CVE-2013-0254)
+  * libqt4-CVE-2013-0254.patch
+
+---
libqt4-sql-plugins.changes: same change
libqt4.changes: same change

New:

  libqt4-CVE-2013-0254.patch



Other differences:
--
++ libqt4-devel-doc.spec ++
--- /var/tmp/diff_new_pack.ciMrWU/_old  2013-02-21 14:56:18.0 +0100
+++ /var/tmp/diff_new_pack.ciMrWU/_new  2013-02-21 14:56:18.0 +0100
@@ -105,6 +105,7 @@
 # PATCH-FIX-UPSTREAM  garbage-collect-deleted-objects.patch Fixes performance 
issues in apps which register 
 # and deregister objects very frequently (like nepomukstorage)
 Patch146:   garbage-collect-deleted-objects.patch
+Patch147:   libqt4-CVE-2013-0254.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
   %define common_options --opensource -fast -no-separate-debug-info -shared 
-xkb -openssl-linked -xrender -xcursor -dbus-linked -xfixes -xrandr -xinerama 
-sm -no-nas-sound -no-rpath -system-libjpeg -system-libpng -accessibility -cups 
-stl -nis -system-zlib -prefix /usr -L %{_libdir} -libdir %{_libdir} -docdir 
%_docdir/%{base_name} -examplesdir %{_libdir}/qt4/examples -demosdir 
%{_libdir}/qt4/demos -plugindir %plugindir -translationdir 
%{_datadir}/qt4/translations -iconv -sysconfdir /etc/settings -datadir 
%{_datadir}/qt4/ -no-pch -reduce-relocations -exceptions -system-libtiff -glib 
-optimized-qmake -no-webkit -no-xmlpatterns -system-sqlite -qt3support 
-no-sql-mysql -importdir %plugindir/imports  -xsync -xinput -gtkstyle
@@ -185,6 +186,7 @@
 %patch144 -p1
 %patch145 -p1
 %patch146 -p1
+%patch147 -p1
 # ### 47 rediff
 #%patch121 -p1
 # be sure not to use them

libqt4-sql-plugins.spec: same change
++ libqt4.spec ++
--- /var/tmp/diff_new_pack.ciMrWU/_old  2013-02-21 14:56:18.0 +0100
+++ /var/tmp/diff_new_pack.ciMrWU/_new  2013-02-21 14:56:18.0 +0100
@@ -123,6 +123,7 @@
 # PATCH-FIX-UPSTREAM  garbage-collect-deleted-objects.patch Fixes performance 
issues in apps which register 
 # and deregister objects very frequently (like nepomukstorage)
 Patch146:   garbage-collect-deleted-objects.patch
+Patch147:   libqt4-CVE-2013-0254.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
   %define common_options --opensource -fast -no-separate-debug-info -shared 
-xkb -openssl-linked -xrender -xcursor -dbus-linked -xfixes -xrandr -xinerama 
-sm -no-nas-sound -no-rpath -system-libjpeg -system-libpng -accessibility -cups 
-stl -nis -system-zlib -prefix /usr -L %{_libdir} -libdir %{_libdir} -docdir 
%_docdir/%{base_name} -examplesdir %{_libdir}/qt4/examples -demosdir 
%{_libdir}/qt4/demos -plugindir %plugindir -translationdir 
%{_datadir}/qt4/translations -iconv -sysconfdir /etc/settings -datadir 
%{_datadir}/qt4/ -no-pch -reduce-relocations -exceptions -system-libtiff -glib 
-optimized-qmake -no-webkit -no-xmlpatterns -system-sqlite -qt3support 
-no-sql-mysql -importdir %plugindir/imports  -xsync -xinput -gtkstyle
@@ -413,6 +414,7 @@
 %patch144 -p1
 %patch145 -p1
 %patch146 -p1
+%patch147 -p1
 # ### 47 rediff
 #%patch121 -p1
 # be sure not to use them



++ libqt4-CVE-2013-0254.patch ++
From 57756e72adf2081137b97f0e689dd16c770d10b1 Mon Sep 17 00:00:00 2001
From: Thiago Macieira thiago.macie...@intel.com
Date: Sat, 22 Dec 2012 08:32:12 -0800
Subject: [PATCH] Change all shmget calls to user-only memory

Drop the read and write permissions for group and other users in the
system.

Change-Id: I8fc753f09126651af3fb82df3049050f0b14e876
(cherry-picked from Qt 5 commit 856f209fb63ae336bfb389a12d2a75fa886dc1c5)
Reviewed-by: Richard J. Moore r...@kde.org
(cherry picked from commit 20b26bdb3dd5e46b01b9a7e1ce8342074df3c89c)
---

From 57756e72adf2081137b97f0e689dd16c770d10b1 Mon Sep 17 00:00:00 2001
From: Thiago Macieira thiago.macie...@intel.com
Date: Sat, 22 Dec 2012 08:32:12 -0800
Subject: [PATCH] Change all shmget calls to user-only memory

Drop the read and write permissions for group and other users in the
system.

Change-Id: I8fc753f09126651af3fb82df3049050f0b14e876
(cherry-picked from Qt 5 commit 856f209fb63ae336bfb389a12d2a75fa886dc1c5)

commit libyui-ncurses for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package libyui-ncurses for openSUSE:Factory 
checked in at 2013-02-21 15:04:08

Comparing /work/SRC/openSUSE:Factory/libyui-ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.libyui-ncurses.new (New)


Package is libyui-ncurses, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libyui-ncurses/libyui-ncurses.changes
2012-11-14 09:13:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.libyui-ncurses.new/libyui-ncurses.changes   
2013-02-21 15:04:10.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 21 09:32:10 CET 2013 - g...@suse.de
+
+- NCRichText: bug-fix for text in pre tags, patch description is
+  shown correctly (bnc #803466)
+- V 2.43.3
+
+---

Old:

  libyui-ncurses-2.43.2.tar.bz2

New:

  libyui-ncurses-2.43.3.tar.bz2



Other differences:
--
++ libyui-ncurses-doc.spec ++
--- /var/tmp/diff_new_pack.GLRWQi/_old  2013-02-21 15:04:11.0 +0100
+++ /var/tmp/diff_new_pack.GLRWQi/_new  2013-02-21 15:04:11.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses (Version 2.43.2)
+# spec file for package libyui-ncurses (Version 2.43.3)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -16,7 +16,7 @@
 #
 
 Name:  libyui-ncurses-doc
-Version:   2.43.2
+Version:   2.43.3
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-%{version}.tar.bz2

++ libyui-ncurses.spec ++
--- /var/tmp/diff_new_pack.GLRWQi/_old  2013-02-21 15:04:11.0 +0100
+++ /var/tmp/diff_new_pack.GLRWQi/_new  2013-02-21 15:04:11.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses (Version 2.43.2)
+# spec file for package libyui-ncurses (Version 2.43.3)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -17,7 +17,7 @@
 # norootforbuild
 
 Name:  libyui-ncurses
-Version:   2.43.2
+Version:   2.43.3
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-%{version}.tar.bz2

++ libyui-ncurses-2.43.2.tar.bz2 - libyui-ncurses-2.43.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.43.2/ChangeLog 
new/libyui-ncurses-2.43.3/ChangeLog
--- old/libyui-ncurses-2.43.2/ChangeLog 2012-11-13 11:58:05.0 +0100
+++ new/libyui-ncurses-2.43.3/ChangeLog 2013-02-21 09:43:20.0 +0100
@@ -1,4 +1,11 @@
 ---
+Thu Feb 21 09:32:10 CET 2013 - g...@suse.de
+
+- NCRichText: bug-fix for text in pre tags, patch description is
+  shown correctly (bnc #803466)
+- V 2.43.3
+
+---
 Fri Nov  2 18:11:49 CET 2012 - anase...@linux.it
 
 -  NCApplication: Reimplemented setApplicationTitle from YApplication
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.43.2/VERSION.cmake 
new/libyui-ncurses-2.43.3/VERSION.cmake
--- old/libyui-ncurses-2.43.2/VERSION.cmake 2012-11-13 11:58:05.0 
+0100
+++ new/libyui-ncurses-2.43.3/VERSION.cmake 2013-02-21 09:43:20.0 
+0100
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR 2 )
 SET( VERSION_MINOR 43 )
-SET( VERSION_PATCH 2 )
+SET( VERSION_PATCH 3 )
 SET( VERSION 
${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION} )
 
 # This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.43.2/src/NCRichText.cc 
new/libyui-ncurses-2.43.3/src/NCRichText.cc
--- old/libyui-ncurses-2.43.2/src/NCRichText.cc 2012-11-13 11:58:05.0 
+0100
+++ new/libyui-ncurses-2.43.3/src/NCRichText.cc 2013-02-21 09:43:20.0 
+0100
@@ -416,12 +416,6 @@
 const wchar_t * wch = osch;
 std::wstring wstr( wch, 6 );
 
-size_t llen = 0;   // longest line
-size_t tmp_len = 0;// width of current line
-
-std::listNCstring::const_iterator line;  // iterator for list NCstring 
mtext
-std::wstring::const_iterator wstr_it;  // iterator for std::wstring
-
 do
 {
 ++wch;
@@ -442,32 +436,21 @@
 NCstring nctxt( wtxt );
 NCtext ftext( nctxt );
 
+std::listNCstring::const_iterator line;
+size_t llen = 0;   // longest line
+
 // iterate through NCtext
 for ( line = ftext.Text().begin(); line != ftext.Text().end(); ++line )
 {
-   tmp_len = 0;
+   size_t tmp_len = 0;
 
-   for ( wstr_it = ( *line ).str().begin(); wstr_it != ( *line 
).str().end() ; ++wstr_it )
-   {
-   

commit libyui-ncurses for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package libyui-ncurses for openSUSE:12.3 
checked in at 2013-02-21 15:04:11

Comparing /work/SRC/openSUSE:12.3/libyui-ncurses (Old)
 and  /work/SRC/openSUSE:12.3/.libyui-ncurses.new (New)


Package is libyui-ncurses, Maintainer is 

Changes:

--- /work/SRC/openSUSE:12.3/libyui-ncurses/libyui-ncurses.changes   
2013-01-31 01:26:12.0 +0100
+++ /work/SRC/openSUSE:12.3/.libyui-ncurses.new/libyui-ncurses.changes  
2013-02-21 15:04:17.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 21 09:32:10 CET 2013 - g...@suse.de
+
+- NCRichText: bug-fix for text in pre tags, patch description is
+  shown correctly (bnc #803466)
+- V 2.43.3
+
+---

Old:

  libyui-ncurses-2.43.2.tar.bz2

New:

  libyui-ncurses-2.43.3.tar.bz2



Other differences:
--
++ libyui-ncurses-doc.spec ++
--- /var/tmp/diff_new_pack.Oq2yf1/_old  2013-02-21 15:04:18.0 +0100
+++ /var/tmp/diff_new_pack.Oq2yf1/_new  2013-02-21 15:04:18.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses (Version 2.43.2)
+# spec file for package libyui-ncurses (Version 2.43.3)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -16,7 +16,7 @@
 #
 
 Name:  libyui-ncurses-doc
-Version:   2.43.2
+Version:   2.43.3
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-%{version}.tar.bz2

++ libyui-ncurses.spec ++
--- /var/tmp/diff_new_pack.Oq2yf1/_old  2013-02-21 15:04:18.0 +0100
+++ /var/tmp/diff_new_pack.Oq2yf1/_new  2013-02-21 15:04:18.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses (Version 2.43.2)
+# spec file for package libyui-ncurses (Version 2.43.3)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -17,7 +17,7 @@
 # norootforbuild
 
 Name:  libyui-ncurses
-Version:   2.43.2
+Version:   2.43.3
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-%{version}.tar.bz2

++ libyui-ncurses-2.43.2.tar.bz2 - libyui-ncurses-2.43.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.43.2/ChangeLog 
new/libyui-ncurses-2.43.3/ChangeLog
--- old/libyui-ncurses-2.43.2/ChangeLog 2012-11-13 11:58:05.0 +0100
+++ new/libyui-ncurses-2.43.3/ChangeLog 2013-02-21 09:43:20.0 +0100
@@ -1,4 +1,11 @@
 ---
+Thu Feb 21 09:32:10 CET 2013 - g...@suse.de
+
+- NCRichText: bug-fix for text in pre tags, patch description is
+  shown correctly (bnc #803466)
+- V 2.43.3
+
+---
 Fri Nov  2 18:11:49 CET 2012 - anase...@linux.it
 
 -  NCApplication: Reimplemented setApplicationTitle from YApplication
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.43.2/VERSION.cmake 
new/libyui-ncurses-2.43.3/VERSION.cmake
--- old/libyui-ncurses-2.43.2/VERSION.cmake 2012-11-13 11:58:05.0 
+0100
+++ new/libyui-ncurses-2.43.3/VERSION.cmake 2013-02-21 09:43:20.0 
+0100
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR 2 )
 SET( VERSION_MINOR 43 )
-SET( VERSION_PATCH 2 )
+SET( VERSION_PATCH 3 )
 SET( VERSION 
${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION} )
 
 # This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.43.2/src/NCRichText.cc 
new/libyui-ncurses-2.43.3/src/NCRichText.cc
--- old/libyui-ncurses-2.43.2/src/NCRichText.cc 2012-11-13 11:58:05.0 
+0100
+++ new/libyui-ncurses-2.43.3/src/NCRichText.cc 2013-02-21 09:43:20.0 
+0100
@@ -416,12 +416,6 @@
 const wchar_t * wch = osch;
 std::wstring wstr( wch, 6 );
 
-size_t llen = 0;   // longest line
-size_t tmp_len = 0;// width of current line
-
-std::listNCstring::const_iterator line;  // iterator for list NCstring 
mtext
-std::wstring::const_iterator wstr_it;  // iterator for std::wstring
-
 do
 {
 ++wch;
@@ -442,32 +436,21 @@
 NCstring nctxt( wtxt );
 NCtext ftext( nctxt );
 
+std::listNCstring::const_iterator line;
+size_t llen = 0;   // longest line
+
 // iterate through NCtext
 for ( line = ftext.Text().begin(); line != ftext.Text().end(); ++line )
 {
-   tmp_len = 0;
+   size_t tmp_len = 0;
 
-   for ( wstr_it = ( *line ).str().begin(); wstr_it != ( *line 
).str().end() ; ++wstr_it )
-   {
-   // skip html 

commit xf86-video-intel for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-intel for 
openSUSE:Factory checked in at 2013-02-21 15:04:37

Comparing /work/SRC/openSUSE:Factory/xf86-video-intel (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-intel.new (New)


Package is xf86-video-intel, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-intel/xf86-video-intel.changes
2013-02-11 11:16:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.xf86-video-intel.new/xf86-video-intel.changes   
2013-02-21 15:04:39.0 +0100
@@ -1,0 +2,19 @@
+Thu Feb 21 00:33:16 UTC 2013 - tobias.johannes.klausm...@mni.thm.de
+
+- Update to version 2.21.3:
+  A few minor bugfixes, another point release.
+  + Fix tracking of DRI pixmaps and their backing bo across reparenting. If
+we tried to execute a SwapBuffers after a Window was reparented, but
+before the DRI client has updated its references, then we would end up
+manipulating an exported pixmap without a flush flag set. In the worst
+case, this would culminate in a segfault in the driver.
+
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1127497
+  + Restore the gen4 workarounds for flickering rendering - a few cases still
+remain, as the root cause persists.
+https://bugs.freedesktop.org/show_bug.cgi?id=60402
+  + Double check that the device has KMS enabled before claiming. This allows
+X to gracefully fallback to VESA/fbdev rather than bailing out.
+https://bugs.freedesktop.org/show_bug.cgi?id=60987
+  + Fix the UXA render programs for projective transforms on Ivybridge.
+
+---

Old:

  xf86-video-intel-2.21.2.tar.bz2

New:

  xf86-video-intel-2.21.3.tar.bz2



Other differences:
--
++ xf86-video-intel.spec ++
--- /var/tmp/diff_new_pack.7y0M2F/_old  2013-02-21 15:04:41.0 +0100
+++ /var/tmp/diff_new_pack.7y0M2F/_new  2013-02-21 15:04:41.0 +0100
@@ -19,7 +19,7 @@
 %define glamor 1
 
 Name:   xf86-video-intel
-Version:2.21.2
+Version:2.21.3
 Release:0
 Summary:Intel video driver for the Xorg X server
 License:MIT

++ xf86-video-intel-2.21.2.tar.bz2 - xf86-video-intel-2.21.3.tar.bz2 ++
 2001 lines of diff (skipped)

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



commit yast2-firstboot for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package yast2-firstboot for openSUSE:Factory 
checked in at 2013-02-21 15:16:29

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


Package is yast2-firstboot, Maintainer is jsuch...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-firstboot/yast2-firstboot.changes  
2012-11-08 21:55:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-firstboot.new/yast2-firstboot.changes 
2013-02-21 15:16:31.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 21 12:50:00 CET 2013 - jsuch...@suse.cz
+
+- remove references to SuSEconfig (bnc#804936)
+- 2.23.1 
+
+---

Old:

  yast2-firstboot-2.23.0.tar.bz2

New:

  yast2-firstboot-2.23.1.tar.bz2



Other differences:
--
++ yast2-firstboot.spec ++
--- /var/tmp/diff_new_pack.nZOzNh/_old  2013-02-21 15:16:39.0 +0100
+++ /var/tmp/diff_new_pack.nZOzNh/_new  2013-02-21 15:16:39.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-firstboot
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-firstboot
-Version:2.23.0
+Version:2.23.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-firstboot-2.23.0.tar.bz2 - yast2-firstboot-2.23.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-2.23.0/Makefile.in 
new/yast2-firstboot-2.23.1/Makefile.in
--- old/yast2-firstboot-2.23.0/Makefile.in  2012-11-07 15:12:45.0 
+0100
+++ new/yast2-firstboot-2.23.1/Makefile.in  2013-02-21 13:41:43.0 
+0100
@@ -690,7 +690,7 @@
*.zip*) \
  unzip $(distdir).zip ;;\
esac
-   chmod -R a-w $(distdir); chmod a+w $(distdir)
+   chmod -R a-w $(distdir); chmod u+w $(distdir)
mkdir $(distdir)/_build
mkdir $(distdir)/_inst
chmod a-w $(distdir)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-2.23.0/VERSION 
new/yast2-firstboot-2.23.1/VERSION
--- old/yast2-firstboot-2.23.0/VERSION  2012-11-07 15:12:32.0 +0100
+++ new/yast2-firstboot-2.23.1/VERSION  2013-02-21 13:41:31.0 +0100
@@ -1 +1 @@
-2.23.0
+2.23.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-2.23.0/configure 
new/yast2-firstboot-2.23.1/configure
--- old/yast2-firstboot-2.23.0/configure2012-11-07 15:12:44.0 
+0100
+++ new/yast2-firstboot-2.23.1/configure2013-02-21 13:41:42.0 
+0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-firstboot 2.23.0.
+# Generated by GNU Autoconf 2.69 for yast2-firstboot 2.23.1.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -579,8 +579,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-firstboot'
 PACKAGE_TARNAME='yast2-firstboot'
-PACKAGE_VERSION='2.23.0'
-PACKAGE_STRING='yast2-firstboot 2.23.0'
+PACKAGE_VERSION='2.23.1'
+PACKAGE_STRING='yast2-firstboot 2.23.1'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1255,7 +1255,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-firstboot 2.23.0 to adapt to many kinds of 
systems.
+\`configure' configures yast2-firstboot 2.23.1 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1326,7 +1326,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-firstboot 2.23.0:;;
+ short | recursive ) echo Configuration of yast2-firstboot 2.23.1:;;
esac
   cat \_ACEOF
 
@@ -1406,7 +1406,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-yast2-firstboot configure 2.23.0
+yast2-firstboot configure 2.23.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1423,7 +1423,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-firstboot $as_me 2.23.0, which was
+It was created by yast2-firstboot $as_me 2.23.1, which was
 generated by GNU Autoconf 2.69.  

commit yast2-firstboot for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package yast2-firstboot for openSUSE:12.3 
checked in at 2013-02-21 15:16:33

Comparing /work/SRC/openSUSE:12.3/yast2-firstboot (Old)
 and  /work/SRC/openSUSE:12.3/.yast2-firstboot.new (New)


Package is yast2-firstboot, Maintainer is jsuch...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/yast2-firstboot/yast2-firstboot.changes 
2013-01-31 01:46:57.0 +0100
+++ /work/SRC/openSUSE:12.3/.yast2-firstboot.new/yast2-firstboot.changes
2013-02-21 15:16:40.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 21 12:50:00 CET 2013 - jsuch...@suse.cz
+
+- remove references to SuSEconfig (bnc#804936)
+- 2.23.1 
+
+---

Old:

  yast2-firstboot-2.23.0.tar.bz2

New:

  yast2-firstboot-2.23.1.tar.bz2



Other differences:
--
++ yast2-firstboot.spec ++
--- /var/tmp/diff_new_pack.NFX5jA/_old  2013-02-21 15:16:43.0 +0100
+++ /var/tmp/diff_new_pack.NFX5jA/_new  2013-02-21 15:16:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-firstboot
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-firstboot
-Version:2.23.0
+Version:2.23.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-firstboot-2.23.0.tar.bz2 - yast2-firstboot-2.23.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-2.23.0/Makefile.in 
new/yast2-firstboot-2.23.1/Makefile.in
--- old/yast2-firstboot-2.23.0/Makefile.in  2012-11-07 15:12:45.0 
+0100
+++ new/yast2-firstboot-2.23.1/Makefile.in  2013-02-21 13:41:43.0 
+0100
@@ -690,7 +690,7 @@
*.zip*) \
  unzip $(distdir).zip ;;\
esac
-   chmod -R a-w $(distdir); chmod a+w $(distdir)
+   chmod -R a-w $(distdir); chmod u+w $(distdir)
mkdir $(distdir)/_build
mkdir $(distdir)/_inst
chmod a-w $(distdir)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-2.23.0/VERSION 
new/yast2-firstboot-2.23.1/VERSION
--- old/yast2-firstboot-2.23.0/VERSION  2012-11-07 15:12:32.0 +0100
+++ new/yast2-firstboot-2.23.1/VERSION  2013-02-21 13:41:31.0 +0100
@@ -1 +1 @@
-2.23.0
+2.23.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-2.23.0/configure 
new/yast2-firstboot-2.23.1/configure
--- old/yast2-firstboot-2.23.0/configure2012-11-07 15:12:44.0 
+0100
+++ new/yast2-firstboot-2.23.1/configure2013-02-21 13:41:42.0 
+0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-firstboot 2.23.0.
+# Generated by GNU Autoconf 2.69 for yast2-firstboot 2.23.1.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -579,8 +579,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-firstboot'
 PACKAGE_TARNAME='yast2-firstboot'
-PACKAGE_VERSION='2.23.0'
-PACKAGE_STRING='yast2-firstboot 2.23.0'
+PACKAGE_VERSION='2.23.1'
+PACKAGE_STRING='yast2-firstboot 2.23.1'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1255,7 +1255,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-firstboot 2.23.0 to adapt to many kinds of 
systems.
+\`configure' configures yast2-firstboot 2.23.1 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1326,7 +1326,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-firstboot 2.23.0:;;
+ short | recursive ) echo Configuration of yast2-firstboot 2.23.1:;;
esac
   cat \_ACEOF
 
@@ -1406,7 +1406,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-yast2-firstboot configure 2.23.0
+yast2-firstboot configure 2.23.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1423,7 +1423,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-firstboot $as_me 2.23.0, which was
+It was created by yast2-firstboot $as_me 2.23.1, which was
 generated by GNU Autoconf 2.69.  Invocation 

commit yast2-update for openSUSE:Factory

2013-02-21 Thread h_root


binM1FEfIKvDY.bin
Description: Binary data


commit yast2-update for openSUSE:12.3

2013-02-21 Thread h_root


binNhWM_28_OV.bin
Description: Binary data


commit translation-update.1359 for openSUSE:12.3:Update

2013-02-21 Thread h_root


bin0CXxL9iPhs.bin
Description: Binary data


commit translation-update for openSUSE:12.3:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package translation-update for 
openSUSE:12.3:Update checked in at 2013-02-21 15:29:12

Comparing /work/SRC/openSUSE:12.3:Update/translation-update (Old)
 and  /work/SRC/openSUSE:12.3:Update/.translation-update.new (New)


Package is translation-update, Maintainer is gnome-maintain...@suse.de

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++
link package='translation-update.1359' cicount='copy' /
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit patchinfo.1359 for openSUSE:12.3:Update

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.1359 for 
openSUSE:12.3:Update checked in at 2013-02-21 15:29:16

Comparing /work/SRC/openSUSE:12.3:Update/patchinfo.1359 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.patchinfo.1359.new (New)


Package is patchinfo.1359, Maintainer is 

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++
patchinfo
  packagersbrabec/packager
  categoryrecommended/category
  ratinglow/rating
  summarytranslation-update: Update to version 12.3/summary
  descriptionThis update fixes the following issues for translation-update:
- Set version to 12.3.
  - Added support for auto-generated 
translation-update-from-translation-update-upstream tarball with translation 
updates and added 
translation-update-from-translation-update-upstream-20130214.tar.bz2
  - Added support for last minute translations (translation-update2.tar.bz2).
  - Added two supplementary scripts that allow to generate package list 
dynamically (translation-update-reset-lang-list.sh, 
translation-update-generate-lang-list.sh).
  - Added translation-update.rpmlintrc.
  - Small improvements of %build and %install to run faster with cleaner 
log./description
/patchinfo
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit grub2 for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package grub2 for openSUSE:Factory checked 
in at 2013-02-21 15:32:16

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


Package is grub2, Maintainer is mch...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/grub2/grub2.changes  2013-02-07 
14:16:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.grub2.new/grub2.changes 2013-02-21 
15:32:21.0 +0100
@@ -1,0 +2,23 @@
+Tue Feb 19 15:38:04 UTC 2013 - d...@suse.com
+
+   Fix up bogus items from the previous merge:
+ - efi_libdir = _libdir = /usr/lib
+ - package /usr/lib/grub2 dir only once
+ - move grub.efi to /usr/lib/grub2/%{grubefiarch}/
+ - create a symlink so that scripts can find it there.
+
+---
+Thu Feb 14 11:42:40 UTC 2013 - d...@suse.com
+
+- merge internal+external BS changes into superset spec file, 
+  remove obsolete dependencies
+- merge SLES+openSUSE patches, restrict grub-efi to 12.2
+- add efidisk-ahci-workaround (bnc#794674)
+- fix unquoted-string-in-class.patch (bnc#788322)
+
+---
+Fri Feb  8 01:58:22 UTC 2013 - mch...@suse.com
+
+- adapt to pesign-obs-integration changes
+
+---
@@ -6,0 +30,5 @@
+Thu Jan 31 16:18:56 UTC 2013 - d...@suse.com
+
+- switch to out of source / subdir build
+
+---
@@ -24,0 +53,13 @@
+Tue Jan 29 02:42:28 UTC 2013 - mch...@suse.com
+
+- set empty prefix to grub.efi for looking up in current directory
+- remove grubcd.efi, as grub.efi can now be used for cdrom booting
+
+---
+Mon Jan 28 08:05:52 CET 2013 - snw...@suse.de
+
+- add fat module to grubcd
+- explicitly set empty prefix to get grub to set $prefix to the currrent
+  directory
+
+---
@@ -31,0 +73,10 @@
+Fri Jan 18 06:24:57 UTC 2013 - mch...@suse.com
+
+- ship a Secure Boot UEFI compatible bootloader (fate#314485).
+- update for cdrom boot support.
+- grub2-cdpath.patch: fix the grub.cfg not found when booting from
+  optical disk.
+- grubcd.efi: the efi image used for optial disk booting, with
+  reduced size and $prefix set to /EFI/BOOT.
+
+---
@@ -51,0 +103,20 @@
+
+---
+Fri Dec 21 04:18:06 UTC 2012 - mch...@suse.com
+
+- put 32-bit grub2 modules to /usr/lib/grub2
+- put 64-bit grub2 modules to /usr/lib64/grub2 (x86_64-efi)
+- put grub.efi to /usr/lib64/efi(x86_64) or /usr/lib/efi(i586)
+
+---
+Tue Dec 18 03:43:38 UTC 2012 - mch...@suse.com
+
+- ship a Secure Boot UEFI compatible bootloader (fate#314485)
+- add grub2-secureboot-chainloader.patch, which expands the efi
+  chainloader to be able to verify images via shim lock protocol.
+
+---
+Fri Nov 30 06:39:15 UTC 2012 - mch...@suse.com
+
+- replace %{sles_version} by %{suse_version} 
+- use correct product name

New:

  efidisk-ahci-workaround



Other differences:
--
++ grub2.spec ++
--- /var/tmp/diff_new_pack.MWkjo0/_old  2013-02-21 15:32:24.0 +0100
+++ /var/tmp/diff_new_pack.MWkjo0/_new  2013-02-21 15:32:24.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 # needssslcertforbuild
 
 Name:   grub2
@@ -43,18 +44,14 @@
 BuildRequires:  texinfo
 %endif
 BuildRequires:  python
-BuildRequires:  ruby
 BuildRequires:  xz-devel
-%if 0%{?suse_version} == 1210
-BuildRequires:  guile
-%endif
 %ifarch x86_64
-%if 0%{?suse_version} = 1230
+%if 0%{?suse_version} = 1230 || 0%{?sles_version} = 11
 BuildRequires:  pesign-obs-integration
 %endif
 %endif
 
-# Modules always contain just 32-bit code
+# Modules code is dynamically loaded and collected from a _fixed_ path.
 %define _libdir %{_exec_prefix}/lib
 
 %ifarch ppc ppc64
@@ -82,7 +79,7 @@
 %endif
 %endif
 
-%if 0%{?sles_version} == 11
+%if 0%{?suse_version} == 1110 || 0%{?sles_version} == 11
 %define only_efi %{nil}
 %define only_x86_64 %{nil}
 %endif
@@ -135,6 +132,7 @@
 Patch28:grub2-fix-unquoted-string-in-class.patch
 Patch29:grub2-secureboot-chainloader.patch
 Patch30:grub2-cdpath.patch
+Patch31:efidisk-ahci-workaround
 PreReq: perl-Bootloader
 Requires:   gettext-runtime
 %if 0%{?suse_version} = 1140
@@ -155,20 +153,26 @@
 %endif
 
 %description

commit grub2 for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package grub2 for openSUSE:12.3 checked in 
at 2013-02-21 15:32:20

Comparing /work/SRC/openSUSE:12.3/grub2 (Old)
 and  /work/SRC/openSUSE:12.3/.grub2.new (New)


Package is grub2, Maintainer is mch...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/grub2/grub2.changes 2013-02-07 14:16:26.0 
+0100
+++ /work/SRC/openSUSE:12.3/.grub2.new/grub2.changes2013-02-21 
15:32:25.0 +0100
@@ -1,0 +2,23 @@
+Tue Feb 19 15:38:04 UTC 2013 - d...@suse.com
+
+   Fix up bogus items from the previous merge:
+ - efi_libdir = _libdir = /usr/lib
+ - package /usr/lib/grub2 dir only once
+ - move grub.efi to /usr/lib/grub2/%{grubefiarch}/
+ - create a symlink so that scripts can find it there.
+
+---
+Thu Feb 14 11:42:40 UTC 2013 - d...@suse.com
+
+- merge internal+external BS changes into superset spec file, 
+  remove obsolete dependencies
+- merge SLES+openSUSE patches, restrict grub-efi to 12.2
+- add efidisk-ahci-workaround (bnc#794674)
+- fix unquoted-string-in-class.patch (bnc#788322)
+
+---
+Fri Feb  8 01:58:22 UTC 2013 - mch...@suse.com
+
+- adapt to pesign-obs-integration changes
+
+---
@@ -6,0 +30,5 @@
+Thu Jan 31 16:18:56 UTC 2013 - d...@suse.com
+
+- switch to out of source / subdir build
+
+---
@@ -24,0 +53,13 @@
+Tue Jan 29 02:42:28 UTC 2013 - mch...@suse.com
+
+- set empty prefix to grub.efi for looking up in current directory
+- remove grubcd.efi, as grub.efi can now be used for cdrom booting
+
+---
+Mon Jan 28 08:05:52 CET 2013 - snw...@suse.de
+
+- add fat module to grubcd
+- explicitly set empty prefix to get grub to set $prefix to the currrent
+  directory
+
+---
@@ -31,0 +73,10 @@
+Fri Jan 18 06:24:57 UTC 2013 - mch...@suse.com
+
+- ship a Secure Boot UEFI compatible bootloader (fate#314485).
+- update for cdrom boot support.
+- grub2-cdpath.patch: fix the grub.cfg not found when booting from
+  optical disk.
+- grubcd.efi: the efi image used for optial disk booting, with
+  reduced size and $prefix set to /EFI/BOOT.
+
+---
@@ -51,0 +103,20 @@
+
+---
+Fri Dec 21 04:18:06 UTC 2012 - mch...@suse.com
+
+- put 32-bit grub2 modules to /usr/lib/grub2
+- put 64-bit grub2 modules to /usr/lib64/grub2 (x86_64-efi)
+- put grub.efi to /usr/lib64/efi(x86_64) or /usr/lib/efi(i586)
+
+---
+Tue Dec 18 03:43:38 UTC 2012 - mch...@suse.com
+
+- ship a Secure Boot UEFI compatible bootloader (fate#314485)
+- add grub2-secureboot-chainloader.patch, which expands the efi
+  chainloader to be able to verify images via shim lock protocol.
+
+---
+Fri Nov 30 06:39:15 UTC 2012 - mch...@suse.com
+
+- replace %{sles_version} by %{suse_version} 
+- use correct product name

New:

  efidisk-ahci-workaround



Other differences:
--
++ grub2.spec ++
--- /var/tmp/diff_new_pack.Kekzps/_old  2013-02-21 15:32:27.0 +0100
+++ /var/tmp/diff_new_pack.Kekzps/_new  2013-02-21 15:32:27.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 # needssslcertforbuild
 
 Name:   grub2
@@ -43,18 +44,14 @@
 BuildRequires:  texinfo
 %endif
 BuildRequires:  python
-BuildRequires:  ruby
 BuildRequires:  xz-devel
-%if 0%{?suse_version} == 1210
-BuildRequires:  guile
-%endif
 %ifarch x86_64
-%if 0%{?suse_version} = 1230
+%if 0%{?suse_version} = 1230 || 0%{?sles_version} = 11
 BuildRequires:  pesign-obs-integration
 %endif
 %endif
 
-# Modules always contain just 32-bit code
+# Modules code is dynamically loaded and collected from a _fixed_ path.
 %define _libdir %{_exec_prefix}/lib
 
 %ifarch ppc ppc64
@@ -82,7 +79,7 @@
 %endif
 %endif
 
-%if 0%{?sles_version} == 11
+%if 0%{?suse_version} == 1110 || 0%{?sles_version} == 11
 %define only_efi %{nil}
 %define only_x86_64 %{nil}
 %endif
@@ -135,6 +132,7 @@
 Patch28:grub2-fix-unquoted-string-in-class.patch
 Patch29:grub2-secureboot-chainloader.patch
 Patch30:grub2-cdpath.patch
+Patch31:efidisk-ahci-workaround
 PreReq: perl-Bootloader
 Requires:   gettext-runtime
 %if 0%{?suse_version} = 1140
@@ -155,20 +153,26 @@
 %endif
 
 %description
-This is the second 

commit release-notes-openSUSE for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package release-notes-openSUSE for 
openSUSE:Factory checked in at 2013-02-21 15:34:51

Comparing /work/SRC/openSUSE:Factory/release-notes-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.release-notes-openSUSE.new (New)


Package is release-notes-openSUSE, Maintainer is k...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/release-notes-openSUSE/release-notes-openSUSE.changes
2013-02-14 21:13:50.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.release-notes-openSUSE.new/release-notes-openSUSE.changes
   2013-02-21 15:34:53.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 21 13:01:43 UTC 2013 - k...@suse.de
+
+- 12.3.3:
+* New entries: UEFI update.
+* Minor changes (bnc#804301; bnc#804315).
+
+---

Old:

  release-notes-opensuse-12.3.2.tar.bz2

New:

  release-notes-opensuse-12.3.3.tar.bz2



Other differences:
--
++ release-notes-openSUSE.spec ++
--- /var/tmp/diff_new_pack.ify9EX/_old  2013-02-21 15:34:55.0 +0100
+++ /var/tmp/diff_new_pack.ify9EX/_new  2013-02-21 15:34:55.0 +0100
@@ -30,7 +30,7 @@
 Group:  Documentation/SUSE
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:12.3.2
+Version:12.3.3
 Release:0
 Provides:   release-notes = %{version}
 Source0:release-notes-opensuse-%{version}.tar.bz2

++ release-notes-opensuse-12.3.2.tar.bz2 - 
release-notes-opensuse-12.3.3.tar.bz2 ++
 5206 lines of diff (skipped)

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



commit release-notes-openSUSE for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package release-notes-openSUSE for 
openSUSE:12.3 checked in at 2013-02-21 15:34:56

Comparing /work/SRC/openSUSE:12.3/release-notes-openSUSE (Old)
 and  /work/SRC/openSUSE:12.3/.release-notes-openSUSE.new (New)


Package is release-notes-openSUSE, Maintainer is k...@suse.com

Changes:

--- 
/work/SRC/openSUSE:12.3/release-notes-openSUSE/release-notes-openSUSE.changes   
2013-02-14 21:13:54.0 +0100
+++ 
/work/SRC/openSUSE:12.3/.release-notes-openSUSE.new/release-notes-openSUSE.changes
  2013-02-21 15:34:57.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 21 13:01:43 UTC 2013 - k...@suse.de
+
+- 12.3.3:
+* New entries: UEFI update.
+* Minor changes (bnc#804301; bnc#804315).
+
+---

Old:

  release-notes-opensuse-12.3.2.tar.bz2

New:

  release-notes-opensuse-12.3.3.tar.bz2



Other differences:
--
++ release-notes-openSUSE.spec ++
--- /var/tmp/diff_new_pack.UGARfZ/_old  2013-02-21 15:34:57.0 +0100
+++ /var/tmp/diff_new_pack.UGARfZ/_new  2013-02-21 15:34:57.0 +0100
@@ -30,7 +30,7 @@
 Group:  Documentation/SUSE
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:12.3.2
+Version:12.3.3
 Release:0
 Provides:   release-notes = %{version}
 Source0:release-notes-opensuse-%{version}.tar.bz2

++ release-notes-opensuse-12.3.2.tar.bz2 - 
release-notes-opensuse-12.3.3.tar.bz2 ++
 5206 lines of diff (skipped)

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



commit snapper for openSUSE:Factory

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package snapper for openSUSE:Factory checked 
in at 2013-02-21 15:37:24

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


Package is snapper, Maintainer is aschn...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/snapper/snapper.changes  2013-02-08 
23:26:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.snapper.new/snapper.changes 2013-02-21 
15:37:26.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 21 14:23:55 CET 2013 - aschn...@suse.de
+
+- removed obsolete calls to renice and ionice in cron scripts
+  (bnc#804355)
+
+---



Other differences:
--
++ snapper-0.1.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.1.2/Makefile.in 
new/snapper-0.1.2/Makefile.in
--- old/snapper-0.1.2/Makefile.in   2013-02-08 10:51:56.0 +0100
+++ new/snapper-0.1.2/Makefile.in   2013-02-21 14:26:52.0 +0100
@@ -181,6 +181,9 @@
 CC = @CC@
 CCDEPMODE = @CCDEPMODE@
 CFLAGS = @CFLAGS@
+CHATTRBIN = @CHATTRBIN@
+CHSNAPBIN = @CHSNAPBIN@
+CPBIN = @CPBIN@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
 CXX = @CXX@
@@ -192,6 +195,7 @@
 DBUS_LIBS = @DBUS_LIBS@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
+DIFFBIN = @DIFFBIN@
 DLLTOOL = @DLLTOOL@
 DSYMUTIL = @DSYMUTIL@
 DUMPBIN = @DUMPBIN@
@@ -217,6 +221,9 @@
 LIPO = @LIPO@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
+LVCREATEBIN = @LVCREATEBIN@
+LVREMOVEBIN = @LVREMOVEBIN@
+LVSBIN = @LVSBIN@
 MAKEINFO = @MAKEINFO@
 MANIFEST_TOOL = @MANIFEST_TOOL@
 MKDIR_P = @MKDIR_P@
@@ -238,10 +245,12 @@
 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 RANLIB = @RANLIB@
+RMBIN = @RMBIN@
 SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
 STRIP = @STRIP@
+TOUCHBIN = @TOUCHBIN@
 VERSION = @VERSION@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.1.2/client/Makefile.in 
new/snapper-0.1.2/client/Makefile.in
--- old/snapper-0.1.2/client/Makefile.in2013-02-08 10:51:56.0 
+0100
+++ new/snapper-0.1.2/client/Makefile.in2013-02-21 14:26:52.0 
+0100
@@ -177,6 +177,9 @@
 CC = @CC@
 CCDEPMODE = @CCDEPMODE@
 CFLAGS = @CFLAGS@
+CHATTRBIN = @CHATTRBIN@
+CHSNAPBIN = @CHSNAPBIN@
+CPBIN = @CPBIN@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
 CXX = @CXX@
@@ -188,6 +191,7 @@
 DBUS_LIBS = @DBUS_LIBS@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
+DIFFBIN = @DIFFBIN@
 DLLTOOL = @DLLTOOL@
 DSYMUTIL = @DSYMUTIL@
 DUMPBIN = @DUMPBIN@
@@ -213,6 +217,9 @@
 LIPO = @LIPO@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
+LVCREATEBIN = @LVCREATEBIN@
+LVREMOVEBIN = @LVREMOVEBIN@
+LVSBIN = @LVSBIN@
 MAKEINFO = @MAKEINFO@
 MANIFEST_TOOL = @MANIFEST_TOOL@
 MKDIR_P = @MKDIR_P@
@@ -234,10 +241,12 @@
 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 RANLIB = @RANLIB@
+RMBIN = @RMBIN@
 SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
 STRIP = @STRIP@
+TOUCHBIN = @TOUCHBIN@
 VERSION = @VERSION@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.1.2/client/utils/Makefile.in 
new/snapper-0.1.2/client/utils/Makefile.in
--- old/snapper-0.1.2/client/utils/Makefile.in  2013-02-08 10:51:56.0 
+0100
+++ new/snapper-0.1.2/client/utils/Makefile.in  2013-02-21 14:26:53.0 
+0100
@@ -135,6 +135,9 @@
 CC = @CC@
 CCDEPMODE = @CCDEPMODE@
 CFLAGS = @CFLAGS@
+CHATTRBIN = @CHATTRBIN@
+CHSNAPBIN = @CHSNAPBIN@
+CPBIN = @CPBIN@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
 CXX = @CXX@
@@ -146,6 +149,7 @@
 DBUS_LIBS = @DBUS_LIBS@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
+DIFFBIN = @DIFFBIN@
 DLLTOOL = @DLLTOOL@
 DSYMUTIL = @DSYMUTIL@
 DUMPBIN = @DUMPBIN@
@@ -171,6 +175,9 @@
 LIPO = @LIPO@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
+LVCREATEBIN = @LVCREATEBIN@
+LVREMOVEBIN = @LVREMOVEBIN@
+LVSBIN = @LVSBIN@
 MAKEINFO = @MAKEINFO@
 MANIFEST_TOOL = @MANIFEST_TOOL@
 MKDIR_P = @MKDIR_P@
@@ -192,10 +199,12 @@
 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 RANLIB = @RANLIB@
+RMBIN = @RMBIN@
 SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
 STRIP = @STRIP@
+TOUCHBIN = @TOUCHBIN@
 VERSION = @VERSION@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.1.2/config.h.in 
new/snapper-0.1.2/config.h.in
--- old/snapper-0.1.2/config.h.in   2013-02-08 10:51:55.0 +0100
+++ new/snapper-0.1.2/config.h.in   2013-02-21 14:26:51.0 +0100
@@ -1,5 +1,17 @@
 /* 

commit snapper for openSUSE:12.3

2013-02-21 Thread h_root
Hello community,

here is the log from the commit of package snapper for openSUSE:12.3 checked in 
at 2013-02-21 15:37:27

Comparing /work/SRC/openSUSE:12.3/snapper (Old)
 and  /work/SRC/openSUSE:12.3/.snapper.new (New)


Package is snapper, Maintainer is aschn...@suse.com

Changes:

--- /work/SRC/openSUSE:12.3/snapper/snapper.changes 2013-02-08 
23:40:28.0 +0100
+++ /work/SRC/openSUSE:12.3/.snapper.new/snapper.changes2013-02-21 
15:37:31.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 21 14:23:55 CET 2013 - aschn...@suse.de
+
+- removed obsolete calls to renice and ionice in cron scripts
+  (bnc#804355)
+
+---



Other differences:
--
++ snapper-0.1.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.1.2/Makefile.in 
new/snapper-0.1.2/Makefile.in
--- old/snapper-0.1.2/Makefile.in   2013-02-08 10:51:56.0 +0100
+++ new/snapper-0.1.2/Makefile.in   2013-02-21 14:26:52.0 +0100
@@ -181,6 +181,9 @@
 CC = @CC@
 CCDEPMODE = @CCDEPMODE@
 CFLAGS = @CFLAGS@
+CHATTRBIN = @CHATTRBIN@
+CHSNAPBIN = @CHSNAPBIN@
+CPBIN = @CPBIN@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
 CXX = @CXX@
@@ -192,6 +195,7 @@
 DBUS_LIBS = @DBUS_LIBS@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
+DIFFBIN = @DIFFBIN@
 DLLTOOL = @DLLTOOL@
 DSYMUTIL = @DSYMUTIL@
 DUMPBIN = @DUMPBIN@
@@ -217,6 +221,9 @@
 LIPO = @LIPO@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
+LVCREATEBIN = @LVCREATEBIN@
+LVREMOVEBIN = @LVREMOVEBIN@
+LVSBIN = @LVSBIN@
 MAKEINFO = @MAKEINFO@
 MANIFEST_TOOL = @MANIFEST_TOOL@
 MKDIR_P = @MKDIR_P@
@@ -238,10 +245,12 @@
 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 RANLIB = @RANLIB@
+RMBIN = @RMBIN@
 SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
 STRIP = @STRIP@
+TOUCHBIN = @TOUCHBIN@
 VERSION = @VERSION@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.1.2/client/Makefile.in 
new/snapper-0.1.2/client/Makefile.in
--- old/snapper-0.1.2/client/Makefile.in2013-02-08 10:51:56.0 
+0100
+++ new/snapper-0.1.2/client/Makefile.in2013-02-21 14:26:52.0 
+0100
@@ -177,6 +177,9 @@
 CC = @CC@
 CCDEPMODE = @CCDEPMODE@
 CFLAGS = @CFLAGS@
+CHATTRBIN = @CHATTRBIN@
+CHSNAPBIN = @CHSNAPBIN@
+CPBIN = @CPBIN@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
 CXX = @CXX@
@@ -188,6 +191,7 @@
 DBUS_LIBS = @DBUS_LIBS@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
+DIFFBIN = @DIFFBIN@
 DLLTOOL = @DLLTOOL@
 DSYMUTIL = @DSYMUTIL@
 DUMPBIN = @DUMPBIN@
@@ -213,6 +217,9 @@
 LIPO = @LIPO@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
+LVCREATEBIN = @LVCREATEBIN@
+LVREMOVEBIN = @LVREMOVEBIN@
+LVSBIN = @LVSBIN@
 MAKEINFO = @MAKEINFO@
 MANIFEST_TOOL = @MANIFEST_TOOL@
 MKDIR_P = @MKDIR_P@
@@ -234,10 +241,12 @@
 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 RANLIB = @RANLIB@
+RMBIN = @RMBIN@
 SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
 STRIP = @STRIP@
+TOUCHBIN = @TOUCHBIN@
 VERSION = @VERSION@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.1.2/client/utils/Makefile.in 
new/snapper-0.1.2/client/utils/Makefile.in
--- old/snapper-0.1.2/client/utils/Makefile.in  2013-02-08 10:51:56.0 
+0100
+++ new/snapper-0.1.2/client/utils/Makefile.in  2013-02-21 14:26:53.0 
+0100
@@ -135,6 +135,9 @@
 CC = @CC@
 CCDEPMODE = @CCDEPMODE@
 CFLAGS = @CFLAGS@
+CHATTRBIN = @CHATTRBIN@
+CHSNAPBIN = @CHSNAPBIN@
+CPBIN = @CPBIN@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
 CXX = @CXX@
@@ -146,6 +149,7 @@
 DBUS_LIBS = @DBUS_LIBS@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
+DIFFBIN = @DIFFBIN@
 DLLTOOL = @DLLTOOL@
 DSYMUTIL = @DSYMUTIL@
 DUMPBIN = @DUMPBIN@
@@ -171,6 +175,9 @@
 LIPO = @LIPO@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
+LVCREATEBIN = @LVCREATEBIN@
+LVREMOVEBIN = @LVREMOVEBIN@
+LVSBIN = @LVSBIN@
 MAKEINFO = @MAKEINFO@
 MANIFEST_TOOL = @MANIFEST_TOOL@
 MKDIR_P = @MKDIR_P@
@@ -192,10 +199,12 @@
 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 RANLIB = @RANLIB@
+RMBIN = @RMBIN@
 SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
 STRIP = @STRIP@
+TOUCHBIN = @TOUCHBIN@
 VERSION = @VERSION@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/snapper-0.1.2/config.h.in 
new/snapper-0.1.2/config.h.in
--- old/snapper-0.1.2/config.h.in   2013-02-08 10:51:55.0 +0100
+++ new/snapper-0.1.2/config.h.in   2013-02-21 14:26:51.0 +0100
@@ -1,5 +1,17 @@
 /*