commit aaa_base for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2012-03-12 08:53:15

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


Package is aaa_base, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes2012-03-07 
20:08:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2012-03-12 
08:53:19.0 +0100
@@ -1,0 +2,10 @@
+Fri Mar  9 16:58:56 UTC 2012 - wer...@suse.de
+
+- Yet an other bash completion problem worked around
+
+---
+Fri Mar  9 14:27:10 UTC 2012 - wer...@suse.de
+
+- Add old request from gitorious
+
+---



Other differences:
--
++ aaa_base.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/files/etc/csh.login 
new/aaa_base/files/etc/csh.login
--- old/aaa_base/files/etc/csh.login2012-03-07 00:38:46.0 +0100
+++ new/aaa_base/files/etc/csh.login2012-03-09 17:58:01.0 +0100
@@ -33,9 +33,7 @@
 if ( -d /proc/iSeries  ( $tty == tty1 || $tty == console)) then
setenv LINES   24
setenv COLUMNS 80
-   if ( -x /usr/bin/initviocons ) then
-   eval `/usr/bin/initviocons -q -e -c`
-   endif
+   eval `path initviocons -q -e -c`
 endif
 settc km yes
 endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/files/etc/init.d/skeleton.compat 
new/aaa_base/files/etc/init.d/skeleton.compat
--- old/aaa_base/files/etc/init.d/skeleton.compat   2012-03-07 
00:38:46.0 +0100
+++ new/aaa_base/files/etc/init.d/skeleton.compat   2012-03-09 
17:58:01.0 +0100
@@ -130,6 +130,9 @@
 # Read config  
 . $FOO_CONFIG
 
+# Some variables
+FOO_PIDFILE=/var/run/foo.pid
+
 # Source LSB init functions
 # providing start_daemon, killproc, pidofproc, 
 # log_success_msg, log_failure_msg and log_warning_msg.
@@ -185,7 +188,7 @@
fi
}
# TODO: Add checking for lockfiles
-   checkproc() { return pidofproc ${1+$@} /dev/null 21; }
+   checkproc() { pidofproc ${1+$@} /dev/null 21; return $?; }
 elif test -e /etc/init.d/functions; then
# RHAT
. /etc/init.d/functions
@@ -198,8 +201,8 @@
failure   [${_SMSG[${_RC_RV}]}] 
fi
}
-   checkproc() { return status ${1+$@}; }
-   start_daemon() { return daemon ${1+$@}; }
+   checkproc() { status ${1+$@}; return $?; }
+   start_daemon() { daemon ${1+$@}; return $?; }
 else
# emulate it
echo_rc() { echo   [${_SMSG[${_RC_RV}]}] ; }
@@ -263,18 +266,30 @@
## the return value is set appropriately by startproc.
start_daemon $FOO_BIN
 
-   # Remember status and be verbose
+   ## Remember status and be verbose
rc_status -v
+
+   ## Update PIDFILE if not automatically written
+   # pidofproc $FOO_BIN  $FOO_PIDFILE
;;
 stop)
echo -n Shutting down FOO 
## Stop daemon with killproc(8) and if this fails
## killproc sets the return value according to LSB.
-
+   ## Usage on RH: killproc [-p pidfile] [-d delay] {progrm} [-signal]
+   
+   ## This one signal TERM followed by e.g. signal KILL
killproc $FOO_BIN
+   ## or only with signal TERM
+   # killproc $FOO_BIN -TERM   
 
-   # Remember status and be verbose
+   ## Remember status and be verbose
rc_status -v
+
+   ## Remove PIDFILE it not automatically renmoved
+   # if test -e $FOO_PIDFILE ; then
+   # rm -f $FOO_PIDFILE
+   # fi
;;
 try-restart|condrestart)
## Do a restart only if the service was active before.
@@ -289,7 +304,7 @@
else
rc_reset# Not running is not a failure.
fi
-   # Remember status and be quiet
+   ## Remember status and be quiet
rc_status
;;
 restart)
@@ -298,7 +313,7 @@
$0 stop
$0 start
 
-   # Remember status and be quiet
+   ## Remember status and be quiet
rc_status
;;
 force-reload)
@@ -321,7 +336,7 @@
## Like force-reload, but if daemon does not support
## signaling, do nothing (!)
 
-   # If it supports signaling:
+   ## If it supports signaling:
echo -n Reload service FOO 
killproc -HUP $FOO_BIN
#touch /var/run/FOO.pid
@@ -336,18 +351,18 @@
## Check status with checkproc(8), if process is running
## checkproc will return 

commit bash for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package bash for openSUSE:Factory checked in 
at 2012-03-12 08:53:23

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


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

Changes:

--- /work/SRC/openSUSE:Factory/bash/bash.changes2012-03-07 
20:08:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.bash.new/bash.changes   2012-03-12 
08:53:25.0 +0100
@@ -1,0 +2,5 @@
+Fri Mar  9 17:44:52 UTC 2012 - wer...@suse.de
+
+- Avoid endless loop in user completion caused by endpw patches 
+
+---



Other differences:
--
++ bash.spec ++
--- /var/tmp/diff_new_pack.Hx0m6l/_old  2012-03-12 08:53:28.0 +0100
+++ /var/tmp/diff_new_pack.Hx0m6l/_new  2012-03-12 08:53:28.0 +0100
@@ -270,7 +270,7 @@
 %patch3  -p0 -b .2.4.4
 %patch4  -p0 -b .evalexp
 %patch5  -p0 -b .warnlc
-%patch6  -p0 -b .endpw
+#%patch6  -p0 -b .endpw
 %patch7  -p0 -b .decl
 %patch8  -p0 -b .async
 %patch9  -p0 -b .extended_quote
@@ -287,7 +287,7 @@
 %patch22 -p0 -b .wrap
 %patch23 -p0 -b .conf
 %patch24 -p0 -b .metamode
-%patch25 -p0 -b .endpw
+#%patch25 -p0 -b .endpw
 %patch40 -p0 -b .bashrc
 %patch46 -p0 -b .notimestamp
 %patch0  -p0 -b .0
@@ -301,7 +301,7 @@
 %patch22 -p2 -b .wrap
 %patch23 -p2 -b .conf
 %patch24 -p2 -b .metamode
-%patch25 -p2 -b .endpw
+#%patch25 -p2 -b .endpw
 %patch30 -p0 -b .destdir
 %patch20 -p0 -b .0
 

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



commit crystalhd-libs for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package crystalhd-libs for openSUSE:Factory 
checked in at 2012-03-12 08:53:28

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


Package is crystalhd-libs, Maintainer is ti...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/crystalhd-libs/crystalhd-libs.changes
2011-09-23 01:54:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.crystalhd-libs.new/crystalhd-libs.changes   
2012-03-12 08:53:31.0 +0100
@@ -1,0 +2,15 @@
+Fri Mar  9 08:56:07 UTC 2012 - cfarr...@suse.com
+
+- license update: SUSE-Firmware
+  Use SUSE-Firmware to describe firmware which can be freely distributed in
+  non-modifiable form. The SUSE- prefix should be used until SPDX.org
+  accept the license upstream
+
+---
+Sat Feb 25 04:23:07 UTC 2012 - crrodrig...@opensuse.org
+
+- Use rpmoptflags 
+- Fix buffer overflow (!) in strncat usage
+  This library needs a full security review, code stinks.
+
+---



Other differences:
--
++ crystalhd-libs.spec ++
--- /var/tmp/diff_new_pack.7MBZoB/_old  2012-03-12 08:53:32.0 +0100
+++ /var/tmp/diff_new_pack.7MBZoB/_new  2012-03-12 08:53:32.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package crystalhd-libs
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,14 +16,13 @@
 #
 
 
-
 Name:   crystalhd-libs
 BuildRequires:  gcc-c++
 Summary:Broadcom Crystal HD device interface library
-Version:3.6.5
-Release:1
-License:LGPLv2.1+
+License:LGPL-2.1+
 Group:  System/Libraries
+Version:3.6.5
+Release:0
 Source0:crystalhd-libs_%{version}-1.tar.bz2
 Source1:README
 Source2:LICENSE
@@ -38,8 +37,8 @@
 H.264 video stream with Broadcom Crystal HD chips.
 
 %package -n libcrystalhd3
-License:LGPLv2.1+
 Summary:Broadcom Crystal HD device interface library
+License:LGPL-2.1+
 Group:  System/Libraries
 
 %description -n libcrystalhd3
@@ -48,8 +47,8 @@
 
 
 %package -n libcrystalhd-devel
-License:LGPLv2.1+
 Summary:Development package for libcrystalhd
+License:LGPL-2.1+
 Group:  Development/Languages/C and C++
 Requires:   libcrystalhd3 = %{version}-%{release}
 
@@ -58,7 +57,7 @@
 
 %package -n crystalhd-firmware
 Summary:Firmware for the Broadcom Crystal HD video decoder
-License:NON-OSI-COMPLIANT(no modification)
+License:SUSE-Firmware
 Group:  Hardware/Other
 
 %description -n crystalhd-firmware
@@ -66,11 +65,12 @@
 
 %prep
 %setup -q -n crystalhd-libs
-%patch0 -p1
+%patch0
 cp %{SOURCE1} .
 cp %{SOURCE2} .
 
 %build
+export CXXFLAGS=%optflags
 make %{?_smp_mflags}
 
 %install

++ crystalhd-libs-define-first.patch ++
--- /var/tmp/diff_new_pack.7MBZoB/_old  2012-03-12 08:53:32.0 +0100
+++ /var/tmp/diff_new_pack.7MBZoB/_new  2012-03-12 08:53:32.0 +0100
@@ -1,6 +1,5 @@
-diff -uNr crystalhd-libs/libcrystalhd_if.h 
new-crystalhd-libs//libcrystalhd_if.h
 crystalhd-libs/libcrystalhd_if.h   2010-12-07 00:15:46.0 +0100
-+++ new-crystalhd-libs//libcrystalhd_if.h  2011-01-24 19:52:02.845076999 
+0100
+--- libcrystalhd_if.h.orig
 libcrystalhd_if.h
 @@ -29,8 +29,8 @@
  #ifndef _BCM_LDIL_IF_H_
  #define _BCM_LDIL_IF_H_
@@ -11,3 +10,44 @@
  
  #define FLEA_MAX_TRICK_MODE_SPEED 6
  
+--- Makefile.orig
 Makefile
+@@ -16,13 +16,13 @@ BCGCC = g++
+ INCLUDES = -I./ -I/usr/include
+ 
+ 
+-CXXFLAGS = -D__LINUX_USER__
++CXXFLAGS += -D__LINUX_USER__
+ # -DLDIL_PRINTS_ON
+ # -D_USE_SHMEM_
+ 
+ CXXFLAGS += ${INCLUDES}
+-CXXFLAGS += -O2 -Wall -fPIC -shared -fstrict-aliasing -msse2
+-LDFLAGS = -Wl,-soname,${BCLIB_SL} -pthread
++CXXFLAGS += -pthread -O2 -Wall -fPIC -DPIC -fvisibility-inlines-hidden 
-shared -fstrict-aliasing -msse2
++LDFLAGS = -Wl,-soname,${BCLIB_SL}
+ 
+ SRCFILES =libcrystalhd_if.cpp \
+   libcrystalhd_int_if.cpp \
+--- libcrystalhd_fwdiag_if.cpp.orig
 libcrystalhd_fwdiag_if.cpp
+@@ -168,7 +168,7 @@ DtsDownloadFWDIAGToLINK(HANDLE hDevice,c
+   }
+ 
+   if(FwBinFile!=NULL){
+-  strncat(fwfile,(const char*)FwBinFile,sizeof(fwfile));
++  strncat(fwfile,(const 
char*)FwBinFile,sizeof(fwfile)-strlen(fwfile)-1);
+   DebugLog_Trace(LDIL_DBG,1. fwfile is 

commit libqca2 for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package libqca2 for openSUSE:Factory checked 
in at 2012-03-12 08:53:34

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libqca2/libqca2.changes  2011-09-23 
02:09:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqca2.new/libqca2.changes 2012-03-12 
08:53:36.0 +0100
@@ -1,0 +2,7 @@
+Sun Mar 11 00:06:55 UTC 2012 - crrodrig...@opensuse.org
+
+- Build respecting RPM_OPT_FLAGS, ugly hack to fix all 
+  *.pro files ensued.
+- Build with visibility-inlines-hidden
+
+---



Other differences:
--
++ libqca2.spec ++
--- /var/tmp/diff_new_pack.brQQzn/_old  2012-03-12 08:53:37.0 +0100
+++ /var/tmp/diff_new_pack.brQQzn/_new  2012-03-12 08:53:37.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqca2
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,20 +15,25 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   libqca2
-BuildRequires:  cmake libdrm-devel libjpeg-devel libqt4-devel openssl-devel
-BuildRequires:  kde4-filesystem update-desktop-files
-BuildRequires:  cyrus-sasl-devel gpg2 libgcrypt-devel
+BuildRequires:  cmake
+BuildRequires:  cyrus-sasl-devel
+BuildRequires:  gpg2
+BuildRequires:  kde4-filesystem
+BuildRequires:  libdrm-devel
+BuildRequires:  libgcrypt-devel
+BuildRequires:  libjpeg-devel
+BuildRequires:  libqt4-devel
+BuildRequires:  openssl-devel
+BuildRequires:  update-desktop-files
+Summary:Qt Cryptographic Architecture 2
 License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
-Summary:Qt Cryptographic Architecture 2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://delta.affinix.com/qca/
 Version:2.0.3
-Release:1
+Release:0
 %define tar_version %{version}
 %define my_subdirs qca-gnupg-* qca-ossl-* qca-pkcs11-* qca-cyrus-sasl-*
 %define with_botan 0
@@ -71,7 +76,6 @@
 Justin Karneges jus...@affinix.com
 
 %package devel
-License:LGPL-2.1+
 Summary:Qt Cryptographic Architecture 2
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -89,7 +93,6 @@
 Justin Karneges jus...@affinix.com
 
 %package plugin-cyrus-sasl
-License:LGPL-2.1+
 Summary:Qt Cryptographic Architecture 2
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -112,7 +115,6 @@
 %if %with_botan
 
 %package plugin-botan
-License:LGPL-2.1+
 Summary:Qt Cryptographic Architecture 2
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -137,7 +139,6 @@
 %if %with_nss
 
 %package plugin-nss
-License:LGPL-2.1+
 Summary:Qt Cryptographic Architecture 2
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -161,7 +162,6 @@
 %if %with_pkcs11
 
 %package plugin-pkcs11
-License:LGPL-2.1+
 Summary:Qt Cryptographic Architecture 2 - pkcs11 support
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
@@ -184,7 +184,7 @@
 %endif
 
 %prep
-%setup  -c -n qca-%{tar_version}/plugins -a 1 -a 2 -a 3 -a 4
+%setup -q -c -n qca-%{tar_version}/plugins -a 1 -a 2 -a 3 -a 4
 pushd qca-gnupg-*
 %patch0
 popd
@@ -196,6 +196,9 @@
 %patch1
 
 %build
+# I confess this is ugly..
+# but there are too many pro files to make a patch (  180)
+find -type f -name *.pro -exec sed -i 1i QMAKE_CXXFLAGS +=$RPM_OPT_FLAGS 
-fvisibility-inlines-hidden {} +
 pushd plugins
 rm -rf CMakeLists.txt qca-%{version}
 for i in *; do
@@ -204,7 +207,8 @@
 popd
 export CXXFLAGS=$RPM_OPT_FLAGS
 export CFLAGS=$RPM_OPT_FLAGS
-EXTRA_FLAGS=
+export EXTRA_FLAGS=$RPM_OPT_FLAGS -fvisibility-inlines-hidden
+export QMAKE_CXXFLAGS=$EXTRA_FLAGS
 if [ %{_lib} = lib64 ]; then
   EXTRA_FLAGS=$EXTRA_FLAGS -DLIB_SUFFIX=64
 fi

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



commit mined for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package mined for openSUSE:Factory checked 
in at 2012-03-12 08:53:41

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


Package is mined, Maintainer is mfab...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/mined/mined.changes  2011-09-23 
02:13:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.mined.new/mined.changes 2012-03-12 
08:53:42.0 +0100
@@ -1,0 +2,80 @@
+Thu Mar  8 11:19:38 UTC 2012 - cfarr...@suse.com
+
+- license update: GPL-3.0+
+  No indication of GPL-3.0 (only) license
+
+---
+Mon Feb 13 10:50:21 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---
+Sat Nov 12 22:00:00 CEST 2011 - t...@towo.net
+
+This release features major enhancements in file management:
+
+• Interactive file chooser to navigate file system.
+• Backup files, interoperable with other editors; optional numbered backups.
+• File locking, using interoperable lock files.
+• Recovery files (if mined quits), interoperable with other editors.
+• Checking/warning whether disk file was changed while being edited (2011.18).
+• Enhancement and migration of file info storage (2011.18).
+
+Other major enhancements in this release:
+
+Interactive:
+• Mouse movement navigation between menus, especially to open submenus.
+
+Interworking and Deployment:
+• Using glyph detection feature of mintty for optimal marker selection.
+• Assigned HOP function to Shift-TAB and to keypad *, to support 
+  laptop keyboards and some dumb terminals (KDE konsole, BSD console).
+• Windows stand-alone package: Installing into Start Menu and Desktop.
+• Enhanced Linux desktop integration (2011.18).
+• Other interoperability and portability enhancements,
+  including port to Haiku (2011.18).
+
+---
+Wed Jun  8 14:20:11 CEST 2011 - t...@towo.net
+
+- update to mined 2011.17
+  Major enhancements in this release:
+  Character encoding support enhancements:
+  • Updated to Unicode 5.2 and Unicode 6.0:
+  • Supporting Arabic ligature joining in all terminals.
+  Interactive:
+  • Sub-menu (in Options menu) to change keyboard emulation interactively.
+  • Improved display of status line information.
+  • Automatically adjusting HTML syntax highlighting colour to dark background.
+  • Improved file info handling, includes selected input method.
+  • Interactive help viewing uses mined rather than less.
+  Interworking:
+  • Supporting extended mouse-coordinates mode (xterm 262 and 268, 
+mintty 0.9), for up to 2015 lines/columns screen width.
+  • Improved handling of function keys on badly-configured terminals.
+  Bug fixes:
+  • Fixed keyboard mapping in xterm to accept sequences with 
+subsequent capital letters (like hE, HE).
+  • Fixed printing under Windows and Interix.
+  • Fixed UTF-16 handling.
+  • Fixed stalled mined with modified text after terminal is killed on Linux.
+
+---
+Thu Jun 10 14:02:14 UTC 2010 - llu...@novell.com
+
+- update to mined 2000.16.
+  Major enhancements in this release:
+  Text editing features: 
+  • New rectangular copy/paste area mode. 
+  • Enhanced smart quotes algorithm and input support for apostrophe. 
+  • Support fow Hawai'ian input. 
+  Interactive: 
+  • Self-made visual selection highlighting, supporting all terminals. 
+  • Changed Del keypad key to more common behaviour. 
+  • Calculated dim attribute for line markers in xterm and mintty. 
+  • Enabled keyboard mapping (input method handling) for DOS/djgpp version. 
+  • Menu navigation: On a submenu entry, cursor-right enters the submenu too. 
+  File handling: 
+  • The text position is now more easily remembered.
+
+---

Old:

  build.patch
  mined-2000.14.tar.bz2
  mined-lib64.patch
  mined.desktop.patch
  mined2000-termio.patch

New:

  mined-2011.19.2.tar.gz
  mined.dsc



Other differences:
--
++ mined.spec ++
--- /var/tmp/diff_new_pack.0UKYfA/_old  2012-03-12 08:53:44.0 +0100
+++ /var/tmp/diff_new_pack.0UKYfA/_new  2012-03-12 08:53:44.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package mined (Version 2000.14)
+# spec file for package mined
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless 

commit opie for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package opie for openSUSE:Factory checked in 
at 2012-03-12 08:53:47

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


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

Changes:

--- /work/SRC/openSUSE:Factory/opie/opie.changes2011-12-06 
18:01:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.opie.new/opie.changes   2012-03-12 
08:53:48.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 24 10:30:28 UTC 2012 - lnus...@suse.de
+
+- make opie program position independent (bnc#743136)
+
+---

New:

  opie-2.4-DESTDIR.patch
  opie-2.4-pie.patch



Other differences:
--
++ opie.spec ++
--- /var/tmp/diff_new_pack.VoSreW/_old  2012-03-12 08:53:49.0 +0100
+++ /var/tmp/diff_new_pack.VoSreW/_new  2012-03-12 08:53:49.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package opie
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
 Url:http://www.inner.net/opie
 Version:2.4
 Release:708
-License:Innernet-2.0
+License:SUSE-Innernet-2.0
 Group:  Productivity/Security
 Provides:   pam_opie
 %define name_pam pam_opie
@@ -52,6 +52,8 @@
 Patch16:opielogin-setuid-CVE-2011-2490.patch
 Patch17:opiesu-overflow-CVE-2011-2489.patch
 Patch18:opie-fix-autoconf.patch
+Patch19:opie-2.4-DESTDIR.patch
+Patch20:opie-2.4-pie.patch
 Summary:Support for One-Time Passwords
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: permissions
@@ -75,10 +77,7 @@
 %patch7 -p1
 %patch8 -p1
 %patch9
-perl -pi -e 's/(?!DESTDIR\))\$\(KEY_FILE\)/\$\(DESTDIR\)\$\(KEY_FILE\)/g' 
Makefile.in
-perl -pi -e 's/(?!DESTDIR\))\$\(LOCK_DIR\)/\$\(DESTDIR\)\$\(LOCK_DIR\)/g' 
Makefile.in
-perl -pi -e 's/(?!DESTDIR\))\$\(LOCALBIN\)/\$\(DESTDIR\)\$\(LOCALBIN\)/g' 
Makefile.in
-perl -pi -e 's/(?!DESTDIR\))\$\(LOCALMAN\)/\$\(DESTDIR\)\$\(LOCALMAN\)/g' 
Makefile.in
+%patch19 -p1
 %patch10 -p1
 %patch11
 pushd %{name_pam}
@@ -91,10 +90,12 @@
 %patch16
 %patch17
 %patch18
+%patch20 -p1
 
 %build
 # build opie
 export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing
+export SUID_CFLAGS=-fPIC SUID_LDFLAGS=-pie
 autoreconf -i -f
 %configure --enable-insecure-override
 make %{?_smp_mflags}

++ opie-2.4-DESTDIR.patch ++
Index: opie-2.4/Makefile.in
===
--- opie-2.4.orig/Makefile.in
+++ opie-2.4/Makefile.in
@@ -136,60 +136,60 @@ client: libopie/libopie.a libmissing/lib
 client-install: client
@echo Installing OPIE client software...
@echo Copying OPIE key-related files
-   @if test ! -d $(LOCALBIN); then $(MKDIR) $(LOCALBIN); chmod 755 
$(LOCALBIN); fi 
-   @cp opiekey $(OPIEAUTO) $(LOCALBIN)
-   @cp opiesu $(OPIEAUTO) $(LOCALBIN)
-   @cp opielogin $(OPIEAUTO) $(LOCALBIN)
-   @cp opieftpd $(OPIEAUTO) $(LOCALBIN)
-   @cp opiegen $(OPIEAUTO) $(LOCALBIN)
-   @$(CHOWN) $(OWNER) $(LOCALBIN)/opiekey
-   @$(CHOWN) $(OWNER) $(LOCALBIN)/opiesu
-   @$(CHOWN) $(OWNER) $(LOCALBIN)/opielogin
-   @$(CHOWN) $(OWNER) $(LOCALBIN)/opieftpd
-   @$(CHOWN) $(OWNER) $(LOCALBIN)/opiegen
-   @if test ! -z $(OPIEAUTO); then $(CHOWN) $(OWNER) 
$(LOCALBIN)/opieauto; fi
-   @chgrp $(GROUP) $(LOCALBIN)/opiekey
+   @if test ! -d $(DESTDIR)$(LOCALBIN); then $(MKDIR) 
$(DESTDIR)$(LOCALBIN); chmod 755 $(DESTDIR)$(LOCALBIN); fi 
+   @cp opiekey $(OPIEAUTO) $(DESTDIR)$(LOCALBIN)
+   @cp opiesu $(OPIEAUTO) $(DESTDIR)$(LOCALBIN)
+   @cp opielogin $(OPIEAUTO) $(DESTDIR)$(LOCALBIN)
+   @cp opieftpd $(OPIEAUTO) $(DESTDIR)$(LOCALBIN)
+   @cp opiegen $(OPIEAUTO) $(DESTDIR)$(LOCALBIN)
+   @$(CHOWN) $(OWNER) $(DESTDIR)$(LOCALBIN)/opiekey
+   @$(CHOWN) $(OWNER) $(DESTDIR)$(LOCALBIN)/opiesu
+   @$(CHOWN) $(OWNER) $(DESTDIR)$(LOCALBIN)/opielogin
+   @$(CHOWN) $(OWNER) $(DESTDIR)$(LOCALBIN)/opieftpd
+   @$(CHOWN) $(OWNER) $(DESTDIR)$(LOCALBIN)/opiegen
+   @if test ! -z $(OPIEAUTO); then $(CHOWN) $(OWNER) 
$(DESTDIR)$(LOCALBIN)/opieauto; fi
+   @chgrp $(GROUP) $(DESTDIR)$(LOCALBIN)/opiekey
@echo Changing file permissions
-   @chmod 0755 $(LOCALBIN)/opiekey
-   @chmod 0755 $(LOCALBIN)/opieftpd
-   @chmod 0755 $(LOCALBIN)/opiegen
-   @chmod 0755 $(LOCALBIN)/opielogin
-   @chmod 4755 $(LOCALBIN)/opiesu
-   @if 

commit perl-IPC-Run3 for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package perl-IPC-Run3 for openSUSE:Factory 
checked in at 2012-03-12 08:53:52

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


Package is perl-IPC-Run3, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-IPC-Run3/perl-IPC-Run3.changes  
2011-11-21 12:41:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-IPC-Run3.new/perl-IPC-Run3.changes 
2012-03-12 08:53:54.0 +0100
@@ -1,0 +2,13 @@
+Thu Mar  8 10:53:42 UTC 2012 - cfarr...@suse.com
+
+- license update: BSD-2-Clause or GPL-2.0+ or Artistic-1.0
+  See License
+
+---
+Mon Feb 27 10:09:13 UTC 2012 - co...@suse.com
+
+- updated to 0.045
+  skip a test that tickles an OpenBSD bug and hangs the process (thanks,
+  BinGOs)
+
+---

Old:

  IPC-Run3-0.044.tar.gz

New:

  IPC-Run3-0.045.tar.gz



Other differences:
--
++ perl-IPC-Run3.spec ++
--- /var/tmp/diff_new_pack.9W9lHP/_old  2012-03-12 08:53:55.0 +0100
+++ /var/tmp/diff_new_pack.9W9lHP/_new  2012-03-12 08:53:55.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-IPC-Run3
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,42 +15,37 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-%bcond_with pod
 
 Name:   perl-IPC-Run3
+Version:0.045
+Release:0
 %define cpan_name IPC-Run3
 Summary:Run a subprocess with input/ouput redirection
-Version:0.044
-Release:2
-License:Any of BSDv1+ , Artistic V1+ , GPLv1+
+License:BSD-2-Clause or GPL-2.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/IPC-Run3/
-#Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/IPC-Run3-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-%if %{with pod}
-BuildRequires:  perl(Test::Pod) = 1.00
-BuildRequires:  perl(Test::Pod::Coverage) = 1.04
-%endif
-BuildRequires:  perl(Test::More) = 0.31
-BuildRequires:  perl(Time::HiRes)
-Requires:   perl(Time::HiRes)
+#BuildRequires: perl(IPC::Run3)
+#BuildRequires: perl(IPC::Run3::ProfArrayBuffer)
+#BuildRequires: perl(IPC::Run3::ProfLogger)
+#BuildRequires: perl(IPC::Run3::ProfLogReader)
+#BuildRequires: perl(IPC::Run3::ProfPP)
+#BuildRequires: perl(IPC::Run3::ProfReporter)
+%{perl_requires}
 
 %description
 This module allows you to run a subprocess and redirect stdin, stdout,
-and/or stderr to files and perl data structures. It aims to satisfy 99%
-of the need for using system, qx, and open3 with a simple, extremely
+and/or stderr to files and perl data structures. It aims to satisfy 99% of
+the need for using 'system', 'qx', and 'open3' with a simple, extremely
 Perlish API.
 
-Authors:
-
-Barrie Slaymaker barr...@slaysys.com
+Speed, simplicity, and portability are paramount. (That's speed of Perl
+code; which is often much slower than the kind of buffered I/O that this
+module uses to spool input to and output from the child command.)
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
@@ -64,18 +59,11 @@
 
 %install
 %perl_make_install
-# do not perl_process_packlist (noarch)
-# remove .packlist file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
-# remove perllocal.pod file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
+%perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
 %doc Changes LICENSE README
 
 %changelog

++ IPC-Run3-0.044.tar.gz - IPC-Run3-0.045.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IPC-Run3-0.044/Changes new/IPC-Run3-0.045/Changes
--- old/IPC-Run3-0.044/Changes  2010-08-22 21:41:39.0 +0200
+++ new/IPC-Run3-0.045/Changes  2011-12-23 19:49:09.0 +0100
@@ -1,5 +1,9 @@
 Changes file for IPC::Run3
 
+0.045 2011-12-23
+  skip a test that tickles an OpenBSD bug and hangs the process (thanks,
+  BinGOs)
+
 0.044 2010-08-22
   ignore user-defined __DIE__ handler in _type (Jeff Lavallee)
   

commit perl-Test-Spec for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-Spec for openSUSE:Factory 
checked in at 2012-03-12 08:53:59

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


Package is perl-Test-Spec, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Spec/perl-Test-Spec.changes
2012-02-16 15:00:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Test-Spec.new/perl-Test-Spec.changes   
2012-03-12 08:54:02.0 +0100
@@ -1,0 +2,9 @@
+Fri Mar  9 14:05:28 UTC 2012 - co...@suse.com
+
+- updated to 0.42
+  - Added context() and xcontext() aliases for describe/xdescribe
+(reported by intrigeri)
+  - Added license info to Makefile.PL (RT#75400)
+  - Fixed test suite problems on Windows
+
+---

Old:

  Test-Spec-0.40.tar.gz

New:

  Test-Spec-0.42.tar.gz



Other differences:
--
++ perl-Test-Spec.spec ++
--- /var/tmp/diff_new_pack.94bYcr/_old  2012-03-12 08:54:03.0 +0100
+++ /var/tmp/diff_new_pack.94bYcr/_new  2012-03-12 08:54:03.0 +0100
@@ -17,11 +17,11 @@
 
 
 Name:   perl-Test-Spec
-Version:0.40
+Version:0.42
 Release:0
 %define cpan_name Test-Spec
 Summary:Write tests in a declarative specification style
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Test-Spec/
 Source: 
http://www.cpan.org/authors/id/P/PH/PHILIP/%{cpan_name}-%{version}.tar.gz

++ Test-Spec-0.40.tar.gz - Test-Spec-0.42.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spec-0.40/Changes new/Test-Spec-0.42/Changes
--- old/Test-Spec-0.40/Changes  2012-01-31 00:43:31.0 +0100
+++ new/Test-Spec-0.42/Changes  2012-03-06 04:21:04.0 +0100
@@ -1,5 +1,13 @@
 Revision history for Perl extension Test::Spec.
 
+0.42 Mon Mar 05 21:18:00 CST 2012
+  - Added context() and xcontext() aliases for describe/xdescribe
+(reported by intrigeri)
+
+0.41 Sat Mar 03 19:04:00 EST 2012
+  - Added license info to Makefile.PL (RT #75400)
+  - Fixed test suite problems on Windows
+
 0.40 Mon Jan 30 18:38:00 EST 2012
   - Fixed problem that caused Test::Spec usage errors (e.g. 'describe foo;'
 without a subroutine argument) to be reported from inside the library,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spec-0.40/META.yml new/Test-Spec-0.42/META.yml
--- old/Test-Spec-0.40/META.yml 2012-01-31 00:44:24.0 +0100
+++ new/Test-Spec-0.42/META.yml 2012-03-06 04:21:16.0 +0100
@@ -1,10 +1,10 @@
 --- #YAML:1.0
 name:   Test-Spec
-version:0.40
+version:0.42
 abstract:   Write tests in a declarative specification style
 author:
 - Philip Garrett philip.garr...@icainformatics.com
-license:unknown
+license:perl
 distribution_type:  module
 configure_requires:
 ExtUtils::MakeMaker:  0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spec-0.40/Makefile.PL 
new/Test-Spec-0.42/Makefile.PL
--- old/Test-Spec-0.40/Makefile.PL  2011-06-13 17:27:54.0 +0200
+++ new/Test-Spec-0.42/Makefile.PL  2012-03-04 01:06:07.0 +0100
@@ -21,4 +21,5 @@
 ($] = 5.005 ? ## Add these new keywords supported since 5.005
   (ABSTRACT_FROM  = 'lib/Test/Spec.pm', # retrieve abstract from module
AUTHOR = 'Philip Garrett philip.garr...@icainformatics.com') 
: ()),
+LICENSE = 'perl',
 );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spec-0.40/lib/Test/Spec.pm 
new/Test-Spec-0.42/lib/Test/Spec.pm
--- old/Test-Spec-0.40/lib/Test/Spec.pm 2012-01-31 00:43:31.0 +0100
+++ new/Test-Spec-0.42/lib/Test/Spec.pm 2012-03-06 04:21:04.0 +0100
@@ -3,7 +3,7 @@
 use warnings;
 use Test::Trap ();# load as early as possible to override CORE::exit
 
-our $VERSION = '0.40';
+our $VERSION = '0.42';
 
 use base qw(Exporter);
 
@@ -17,9 +17,10 @@
 our $TODO;
 our $Debug = $ENV{TEST_SPEC_DEBUG} || 0;
 
-our @EXPORT  = qw(runtests describe xdescribe before after it xit they
-  xthey *TODO share shared_examples_for 
it_should_behave_like
-  spec_helper);
+our @EXPORT  = qw(runtests
+  describe xdescribe context xcontext it xit they xthey
+  before after spec_helper
+  *TODO share shared_examples_for 

commit pulseaudio for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package pulseaudio for openSUSE:Factory 
checked in at 2012-03-12 08:54:05

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


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

Changes:

--- /work/SRC/openSUSE:Factory/pulseaudio/pulseaudio.changes2012-01-19 
09:44:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.pulseaudio.new/pulseaudio.changes   
2012-03-12 08:54:07.0 +0100
@@ -1,0 +2,10 @@
+Fri Feb 17 20:57:09 UTC 2012 - pascal.ble...@opensuse.org
+
+- add pulseaudio-remove_broken_assert.patch to remove a broken assert that
+  makes pulseaudio crash when playing audio from Firefox when having to
+  resample, especially in combination with the jack sink
+- add libcap-devel build dependency for capabilities support
+- add fftw3-devel build dependency for builtin equalizer support
+- add orc build dependency for better performance
+
+---

New:

  pulseaudio-remove_broken_assert.patch



Other differences:
--
++ pulseaudio.spec ++
--- /var/tmp/diff_new_pack.OuyacB/_old  2012-03-12 08:54:08.0 +0100
+++ /var/tmp/diff_new_pack.OuyacB/_new  2012-03-12 08:54:08.0 +0100
@@ -33,6 +33,8 @@
 Patch0: disabled-start.diff
 Patch1: suppress-socket-error-msg.diff
 Patch2: pulseaudio-wrong-memset.patch
+# PATCH-FIX-UPSTREAM pulseaudio-remove_broken_assert.patch fdo#47156 
pascal.ble...@opensuse.org -- Fix crash
+Patch3: pulseaudio-remove_broken_assert.patch
 BuildRequires:  alsa-devel
 BuildRequires:  bluez-devel
 BuildRequires:  doxygen
@@ -54,6 +56,9 @@
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-devel
+BuildRequires:  libcap-devel
+BuildRequires:  fftw3-devel
+BuildRequires:  orc
 # Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
 BuildRequires:  xz
 BuildRequires:  pkgconfig(gconf-2.0)
@@ -253,6 +258,7 @@
 %patch0
 %patch1 -p1
 %patch2 -p1
+%patch3
 
 %build
 autoreconf
@@ -266,7 +272,7 @@
 --with-system-group=pulse \
 --with-access-group=pulse-access \
 --disable-hal
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 make doxygen
 
 %install
@@ -320,6 +326,7 @@
 %doc README LICENSE GPL LGPL
 %{_bindir}/pulseaudio
 %{_bindir}/setup-pulseaudio
+%{_bindir}/qpaeq
 %dir %{_datadir}/pulseaudio
 %{_datadir}/pulseaudio/alsa-mixer
 %{_localstatedir}/adm/fillup-templates/sysconfig.sound-pulseaudio
@@ -360,6 +367,7 @@
 %{_libdir}/pulse-%{drvver}/modules/module-esound-protocol-tcp.so
 %{_libdir}/pulse-%{drvver}/modules/module-esound-protocol-unix.so
 %{_libdir}/pulse-%{drvver}/modules/module-esound-sink.so
+%{_libdir}/pulse-%{drvver}/modules/module-equalizer-sink.so
 %{_libdir}/pulse-%{drvver}/modules/module-filter-apply.so
 %{_libdir}/pulse-%{drvver}/modules/module-filter-heuristics.so
 %{_libdir}/pulse-%{drvver}/modules/module-hal-detect.so


++ pulseaudio-remove_broken_assert.patch ++
--- src/pulsecore/resampler.c.orig  2012-02-17 21:34:37.154883446 +0100
+++ src/pulsecore/resampler.c   2012-02-17 21:34:51.272882943 +0100
@@ -1227,7 +1227,6 @@
 data.end_of_input = 0;
 
 pa_assert_se(src_process(r-src.state, data) == 0);
-pa_assert((unsigned) data.input_frames_used == in_n_frames);
 
 pa_memblock_release(input-memblock);
 pa_memblock_release(output-memblock);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-lxml for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package python-lxml for openSUSE:Factory 
checked in at 2012-03-12 08:54:13

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


Package is python-lxml, Maintainer is thomas.schrai...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/python-lxml/python-lxml.changes  2011-09-23 
12:42:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-lxml.new/python-lxml.changes 
2012-03-12 08:54:15.0 +0100
@@ -1,0 +2,43 @@
+Fri Mar  9 20:57:25 UTC 2012 - sasc...@gmx.de
+
+- Update to version 2.3.3:
+  * lxml.html.tostring() gained new serialisation options with_tail and 
doctype.
+  * Fixed a crash when using iterparse() for HTML parsing and requesting start 
events.
+  * Fixed parsing of more selectors in cssselect. Whitespace before
+pseudo-elements and pseudo-classes is significant as it is a descendant
+combinator. E :pseudo should parse the same as E *:pseudo, not 
E:pseudo.
+  * lxml.html.diff no longer raises an exception when hitting 'img' tags 
without 'src' attribute.
+- Changes from version 2.3.2:
+  * lxml.objectify.deannotate() has a new boolean option cleanup_namespaces to
+remove the objectify namespace declarations (and generally clean up the
+namespace declarations) after removing the type annotations.
+  * lxml.objectify gained its own SubElement() function as a copy of 
+etree.SubElement to avoid an otherwise redundant import of lxml.etree on 
the user side.
+  * Fixed the descendant bug in cssselect a second time
+  * Fixed parsing of some selectors in cssselect.
+- Changes from version 2.3.1:
+  * New option kill_tags in lxml.html.clean to remove specific tags and their
+content (i.e. their whole subtree).
+  * pi.get() and pi.attrib on processing instructions to parse
+pseudo-attributes from the text content of processing instructions.
+  * lxml.get_include() returns a list of include paths that can be used to
+compile external C code against lxml.etree.
+  * Resolver.resolve_file() takes an additional option close_file that
+configures if the file(-like) object will be closed after reading or not.
+  * HTML cleaning didn't remove 'data:' links.
+  * The html5lib parser integration now uses the 'official' implementation in
+html5lib itself, which makes it work with newer releases of the library.
+  * In lxml.sax, endElementNS() could incorrectly reject a plain tag name when
+the corresponding start event inferred the same plain tag name to be in 
the default namespace.
+  * When an open file-like object is passed into parse() or iterparse(), the
+parser will no longer close it after use.
+  * Assertion error in lxml.html.cleaner when discarding top-level elements.
+  * In lxml.cssselect, use the xpath 'A//B' (short for 
+'A/descendant-or-self::node()/B') instead of 'A/descendant::B' for the css
+descendant selector ('A B').
+  * In lxml.html, non-selected option tags no longer show up in the 
collected form values.
+  * Adding/removing option values to/from a multiple select form field
+properly selects them and unselects them.
+- Explicitly build against libxml2-devel
+
+---

Old:

  lxml-2.3.tar.gz
  lxmldoc-2.3.pdf

New:

  lxml-2.3.3.tar.gz
  lxmldoc-2.3.3.pdf



Other differences:
--
++ python-lxml.spec ++
--- /var/tmp/diff_new_pack.lVppeF/_old  2012-03-12 08:54:17.0 +0100
+++ /var/tmp/diff_new_pack.lVppeF/_new  2012-03-12 08:54:17.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-lxml
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,24 +16,23 @@
 #
 
 
-
 Name:   python-lxml
-Version:2.3
-Release:2
-Url:http://lxml.de/
+Version:2.3.3
+Release:0
 Summary:Powerful and Pythonic XML processing library
 License:BSD-3-Clause and GPL-2.0+
 Group:  Development/Languages/Python
+Url:http://lxml.de/
 Source: 
http://pypi.python.org/packages/source/l/lxml/lxml-%{version}.tar.gz
-Source1:lxmldoc-%{version}.pdf
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
+Source1:http://lxml.de/lxmldoc-%{version}.pdf
 BuildRequires:  libxslt-devel
 BuildRequires:  python-Cython
-%if 0%{?suse_version}
-%py_requires
+BuildRequires:  python-devel
+BuildRequires:  pkgconfig(libxml-2.0)
+BuildRoot:

commit R-base for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package R-base for openSUSE:Factory checked 
in at 2012-03-12 08:54:19

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


Package is R-base, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/R-base/R-base.changes2012-03-01 
17:27:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.R-base.new/R-base.changes   2012-03-12 
08:54:22.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 29 18:00:59 UTC 2012 - detlef.ste...@gmx.de
+
+- upstream minor version increase to 2.14.2 
+- see, as usual, /usr/lib/R/doc/NEWS.html for details.
+
+---

Old:

  R-2.14.1.tar.bz2

New:

  R-2.14.2.tar.bz2



Other differences:
--
++ R-base.spec ++
--- /var/tmp/diff_new_pack.WLXMsu/_old  2012-03-12 08:54:24.0 +0100
+++ /var/tmp/diff_new_pack.WLXMsu/_new  2012-03-12 08:54:24.0 +0100
@@ -19,7 +19,7 @@
 
 Name:   R-base
 %define release 1 
-Version:2.14.1
+Version:2.14.2
 Release:%release
 #Source: http://cran.r-project.org/src/base/R-2/R-%%{version}.tar.gz
 Source: R-%{version}.tar.bz2
@@ -50,31 +50,31 @@
 Requires:   fontconfig, freetype2, xdg-utils
 
 Provides:   R = %{version}
-Provides:   R-boot = 1.3.3
+Provides:   R-boot = 1.3.4
 Provides:   R-class = 7.3.3
-Provides:   R-cluster = 1.14.1
+Provides:   R-cluster = 1.14.2
 Provides:   R-codetools = 0.2.8
 Provides:   R-compiler = %{version}
 Provides:   R-datasets = %{version}
-Provides:   R-foreign = 0.8.48
+Provides:   R-foreign = 0.8.49
 Provides:   R-graphics = %{version}
 Provides:   R-grDevices = %{version}
 Provides:   R-grid = %{version}
 Provides:   R-KernSmooth = 2.23.7
 Provides:   R-lattice = 0.20.0
-Provides:   R-MASS = 7.3.16
-Provides:   R-Matrix = 1.0.2
-Obsoletes:  R-Matrix  1.0.2
+Provides:   R-MASS = 7.3.17
+Provides:   R-Matrix = 1.0.4
+Obsoletes:  R-Matrix  1.0.4
 Provides:   R-methods = %{version}
-Provides:   R-mgcv = 1.7.12
-Provides:   R-nlme = 3.1.102
+Provides:   R-mgcv = 1.7.13
+Provides:   R-nlme = 3.1.103
 Provides:   R-nnet = 7.3.1
-Provides:   R-rpart = 3.1.50
+Provides:   R-rpart = 3.1.51
 Provides:   R-spatial = 7.3.3
 Provides:   R-splines = %{version}
 Provides:   R-stats = %{version}
 Provides:   R-stats4 = %{version}
-Provides:   R-survival = 2.36.10
+Provides:   R-survival = 2.36.12
 Provides:   R-tcltk = %{version}
 Provides:   R-tools = %{version}
 Provides:   R-utils = %{version}
@@ -631,6 +631,7 @@
 %dir %{_libdir}/R/library/survival/
 %{_libdir}/R/library/survival/data/
 %{_libdir}/R/library/survival/doc/
+%{_libdir}/R/library/survival/CITATION
 %{_libdir}/R/library/survival/DESCRIPTION
 %{_libdir}/R/library/survival/help/
 %{_libdir}/R/library/survival/html/

++ R-2.14.1.tar.bz2 - R-2.14.2.tar.bz2 ++
/work/SRC/openSUSE:Factory/R-base/R-2.14.1.tar.bz2 
/work/SRC/openSUSE:Factory/.R-base.new/R-2.14.2.tar.bz2 differ: char 11, line 1

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



commit icedtea-web for openSUSE:11.4

2012-03-12 Thread h_root

Hello community,

here is the log from the commit of package icedtea-web for openSUSE:11.4
checked in at Mon Mar 12 11:30:56 CET 2012.




--- old-versions/11.4/UPDATES/all/icedtea-web/icedtea-web.changes   
2011-11-14 11:24:53.0 +0100
+++ 11.4/icedtea-web/icedtea-web.changes2012-03-06 14:06:51.0 
+0100
@@ -1,0 +2,34 @@
+Tue Mar  6 12:55:36 UTC 2012 - mvysko...@suse.cz
+
+- update to 1.2
+- New features:
+ * Signed JNLP support
+ * Support for client authentication certificates
+ * Cache size enforcement now supported via itweb-settings
+ * Applet parameter passing through JNLP files now supported
+ * Better icons for access warning dialog
+ * Security Dialog UI revamped to make it look less threatening when 
appropriate
+- Fixes (plugin, webstart, common)
+ * PR618: Can't install OpenDJ, JavaWebStart fails with Input stream is null 
error
+ * PR765: JNLP file with all resource jars marked as 'lazy' fails to validate 
signature and stops the launch of application
+ * PR788: Elluminate Live! is not working
+ * PR804: javaws launcher incorrectly handles file names with spaces
+ * PR820, bnc#746895: IcedTea-Web 1.1.3 crashing Firefox when loading Citrix 
XenApp
+ * PR838: IcedTea plugin crashes with chrome browser when javascript is 
executed
+ * PR852: Classloader not being flushed after last applet from a site is closed
+ * RH586194: Unable to connect to connect with Juniper VPN client
+ * PR771: IcedTea-Web certificate verification code does not use the right API
+ * PR742: IcedTea-Web checks certs only upto 1 level deep before declaring 
them untrusted.
+ * PR789: typo in jrunscript.sh
+ * PR808: javaws is unable to start, when missing jars are enumerated before 
main jar
+ * RH738814: Access denied at ssl handshake
+ * Support for authenticating using client certificates
+- fix bnc#737105/FATE#313084: add Supplements: 
packageand(broswer(npapi):java-openjdk)
+  ensures the web plugin is pulled in when openjdk and capable browser is 
installed
+
+---
+Mon Mar  5 13:24:29 UTC 2012 - mvysko...@suse.cz
+
+- enable make check in respective section
+
+---

calling whatdependson for 11.4-i586


Old:

  icedtea-web-1.1.4.tar.gz
  icedtea-web-npapi-sdk-r5.patch

New:

  icedtea-web-1.2.tar.gz



Other differences:
--
++ icedtea-web.spec ++
--- /var/tmp/diff_new_pack.o0y4en/_old  2012-03-12 11:30:36.0 +0100
+++ /var/tmp/diff_new_pack.o0y4en/_new  2012-03-12 11:30:36.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package icedtea-web
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -53,11 +53,11 @@
 %define pluginname  IcedTeaPlugin.so
 
 Name:   icedtea-web
-Version:1.1.4
+Version:1.2
 Release:0.RELEASE2
 Summary:Java Web Start and plugin implementation
-Group:  Development/Languages/Java
 License:GPL-2.0-with-classpath-exception
+Group:  Development/Languages/Java
 Url:http://icedtea.classpath.org
 Source0:
http://icedtea.classpath.org/download/source/%{name}-%{version}.tar.gz
 Patch0: icedtea-web-1.0.2-no-return-in-nonvoid-function.patch
@@ -65,7 +65,6 @@
 # https://bugzilla.mozilla.org/show_bug.cgi?id=582130
 # http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=622
 Patch1: icedtea-web-1.1-moonlight-symbol-clash.patch
-Patch2: icedtea-web-npapi-sdk-r5.patch
 Patch1000:  icedtea-web-suse-desktop-files.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  java-1_6_0-openjdk-devel
@@ -85,8 +84,8 @@
 %endif
 %if %defined suse_version
 BuildRequires:  fdupes
-BuildRequires:  procps
 BuildRequires:  gcc-c++
+BuildRequires:  procps
 BuildRequires:  update-desktop-files
 BuildRequires:  zip
 %endif
@@ -104,6 +103,9 @@
 Provides:   java-1.6.0-openjdk-plugin = %{openjdk_ver}
 Provides:   java-plugin = %{javaver}
 
+# bnc#737105/FATE#313084
+Supplements:packageand(browser(npapi):java-openjdk)
+
 %description
 The IcedTea-Web project provides a Free Software web browser plugin running
 applets written in the Java programming language and an implementation of Java
@@ -124,9 +126,6 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
-%if %{with_npapisdk}
-%patch2 -p1
-%endif
 
 %patch1000 -p1
 
@@ -162,6 +161,9 @@
 %clean
 rm -rf %{buildroot}
 
+%check
+%{__make} check
+
 %posttrans
 # java-1_6_0-openjdk-plugin - icedtea-web is remove of the first package
 # which causes a javaplugin removal, so let's move it here

++ icedtea-web-1.1.4.tar.gz - 

commit analitza for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package analitza for openSUSE:Factory 
checked in at 2012-03-12 20:11:34

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


Package is analitza, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/analitza/analitza.changes2012-02-10 
17:11:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.analitza.new/analitza.changes   2012-03-12 
20:11:35.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:11:34 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  analitza-4.8.0.tar.bz2

New:

  analitza-4.8.1.tar.bz2



Other differences:
--
++ analitza.spec ++
--- /var/tmp/diff_new_pack.C7fS1k/_old  2012-03-12 20:11:37.0 +0100
+++ /var/tmp/diff_new_pack.C7fS1k/_new  2012-03-12 20:11:37.0 +0100
@@ -15,11 +15,12 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   analitza
 BuildRequires:  libkde4-devel
 BuildRequires:  readline-devel
 Url:https://projects.kde.org/projects/kde/kdeedu/analitza
-Version:4.8.0
+Version:4.8.1
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:A library to add mathematical features to programs

++ analitza-4.8.0.tar.bz2 - analitza-4.8.1.tar.bz2 ++

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



commit ark for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package ark for openSUSE:Factory checked in 
at 2012-03-12 20:11:38

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


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

Changes:

--- /work/SRC/openSUSE:Factory/ark/ark.changes  2012-02-03 10:21:48.0 
+0100
+++ /work/SRC/openSUSE:Factory/.ark.new/ark.changes 2012-03-12 
20:11:41.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:11:41 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  ark-4.8.0.tar.bz2

New:

  ark-4.8.1.tar.bz2



Other differences:
--
++ ark.spec ++
--- /var/tmp/diff_new_pack.q2whV6/_old  2012-03-12 20:11:43.0 +0100
+++ /var/tmp/diff_new_pack.q2whV6/_new  2012-03-12 20:11:43.0 +0100
@@ -15,22 +15,23 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   ark
-Version:4.8.0
+Version:4.8.1
 Release:0
-License:GPL-2.0+
 Summary:KDE Archiver Tool
-Url:http://www.kde.org
+License:GPL-2.0+
 Group:  Productivity/Other
+Url:http://www.kde.org
 Source0:ark-%{version}.tar.bz2
 Patch0: 4_7_BRANCH.diff
 BuildRequires:  kdebase4-workspace-devel
 BuildRequires:  libarchive-devel
 BuildRequires:  libkonq-devel
 BuildRequires:  libqjson-devel
-BuildRequires:  xz-devel
 BuildRequires:  libzip-devel
 BuildRequires:  oxygen-icon-theme-large
+BuildRequires:  xz-devel
 Provides:   kde4-ark = 4.3.0
 Obsoletes:  kde4-ark  4.3.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -40,15 +41,15 @@
 This is a KDE application to work with compressed archives.
 
 %package -n libkerfuffle4
-Group:  System/Libraries
 Summary:KDE Archiver Tool
+Group:  System/Libraries
 
 %description -n libkerfuffle4
 This is a KDE application to work with compressed archives.
 
 %package devel
-Group:  Development/Libraries/C and C++
 Summary:KDE Archiver Tool
+Group:  Development/Libraries/C and C++
 Requires:   libkerfuffle4
 
 %description devel

++ ark-4.8.0.tar.bz2 - ark-4.8.1.tar.bz2 ++
Files old/ark-4.8.0/doc/index.cache.bz2 and new/ark-4.8.1/doc/index.cache.bz2 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-4.8.0/doc/index.docbook 
new/ark-4.8.1/doc/index.docbook
--- old/ark-4.8.0/doc/index.docbook 2011-08-22 15:26:04.0 +0200
+++ new/ark-4.8.1/doc/index.docbook 2012-02-29 23:57:35.0 +0100
@@ -249,7 +249,7 @@
 itemizedlist
 titleAuthors:/title
 listitemparaRaphael Kubo da Costa
-emailkub...@gmail.com/email/para/listitem
+emailrak...@freebsd.org/email/para/listitem
 listitemparaHarald Hvaal
 emailharal...@stud.ntnu.no/email/para/listitem
 listitemparaHelio Chissini de Castro
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-4.8.0/kerfuffle/cliinterface.cpp 
new/ark-4.8.1/kerfuffle/cliinterface.cpp
--- old/ark-4.8.0/kerfuffle/cliinterface.cpp2011-10-11 16:48:03.0 
+0200
+++ new/ark-4.8.1/kerfuffle/cliinterface.cpp2012-02-29 23:57:35.0 
+0100
@@ -340,9 +340,8 @@
 m_process-setPtyChannels(KPtyProcess::StdinChannel);
 #endif
 
-m_process-setTextModeEnabled(true);
 m_process-setOutputChannelMode(KProcess::MergedChannels);
-m_process-setNextOpenMode(QIODevice::ReadWrite | QIODevice::Unbuffered);
+m_process-setNextOpenMode(QIODevice::ReadWrite | QIODevice::Unbuffered | 
QIODevice::Text);
 m_process-setProgram(programPath, arguments);
 
 connect(m_process, SIGNAL(readyReadStandardOutput()), SLOT(readStdout()), 
Qt::DirectConnection);
@@ -486,6 +485,26 @@
 }
 
 if (m_operationMode == Copy) {
+if (checkForPasswordPromptMessage(line)) {
+kDebug()  Found a password prompt;
+
+Kerfuffle::PasswordNeededQuery query(filename());
+userQuery(query);
+query.waitForResponse();
+
+if (query.responseCancelled()) {
+failOperation();
+return;
+}
+
+setPassword(query.password());
+
+const QString response(password() + QLatin1Char('\n'));
+writeToProcess(response.toLocal8Bit());
+
+return;
+}
+
 if (checkForErrorMessage(line, WrongPasswordPatterns)) {
 kDebug()  Wrong password!;
 error(i18n(Incorrect password.));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit blinken for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package blinken for openSUSE:Factory checked 
in at 2012-03-12 20:11:44

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


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

Changes:

--- /work/SRC/openSUSE:Factory/blinken/blinken.changes  2012-01-31 
10:19:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.blinken.new/blinken.changes 2012-03-12 
20:11:47.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:11:46 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  blinken-4.8.0.tar.bz2

New:

  blinken-4.8.1.tar.bz2



Other differences:
--
++ blinken.spec ++
--- /var/tmp/diff_new_pack.7IWm9N/_old  2012-03-12 20:11:49.0 +0100
+++ /var/tmp/diff_new_pack.7IWm9N/_new  2012-03-12 20:11:49.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   blinken
 BuildRequires:  kdebase4-workspace-devel
 BuildRequires:  libkdeedu4-devel
@@ -25,7 +26,7 @@
 BuildRequires:  ocaml
 BuildRequires:  ocaml-facile
 %endif
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Simon Says Game
 License:GPL-2.0+

++ blinken-4.8.0.tar.bz2 - blinken-4.8.1.tar.bz2 ++
Files old/blinken-4.8.0/doc/index.cache.bz2 and 
new/blinken-4.8.1/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blinken-4.8.0/src/blinken.desktop 
new/blinken-4.8.1/src/blinken.desktop
--- old/blinken-4.8.0/src/blinken.desktop   2011-11-04 15:33:48.0 
+0100
+++ new/blinken-4.8.1/src/blinken.desktop   2012-02-29 23:56:23.0 
+0100
@@ -45,6 +45,7 @@
 Name[pt_BR]=Blinken
 Name[ro]=Blinken
 Name[ru]=Blinken
+Name[sk]=Blinken
 Name[sl]=Blinken
 Name[sv]=Blinken
 Name[tr]=Blinken
@@ -93,6 +94,7 @@
 GenericName[pt_BR]=Jogo para desenvolvimento da memória
 GenericName[ro]=Un joc de îmbunătățire a memoriei
 GenericName[ru]=Игра для развития памяти
+GenericName[sk]=Hra na zlepšenie pamäte
 GenericName[sl]=Igra za izboljšanje spomina
 GenericName[sv]=Spel för att förbättra minnet
 GenericName[tr]=Bellek Geliştirme Uygulaması
@@ -152,6 +154,7 @@
 Comment[pt_BR]=Um jogo de desenvolvimento da memória
 Comment[ro]=Un joc de îmbunătățire a memoriei
 Comment[ru]=Игра для развития памяти
+Comment[sk]=Hra na zlepšenie pamäte
 Comment[sl]=Igra za izboljšanje spomina
 Comment[sv]=Ett spel för att förbättra minnet
 Comment[tr]=Bir bellek geliştirme uygulaması

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



commit brp-check-suse for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2012-03-12 20:11:50

Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and  /work/SRC/openSUSE:Factory/.brp-check-suse.new (New)


Package is brp-check-suse, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes
2011-12-12 16:57:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new/brp-check-suse.changes   
2012-03-12 20:11:51.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  9 21:56:04 UTC 2012 - dims...@opensuse.org
+
+- Add brp-check-xdg-menus.patch: Accept all icons specified in icon
+  naming spec.
+
+---

New:

  brp-check-xdg-menus.patch



Other differences:
--
++ brp-check-suse.spec ++
--- /var/tmp/diff_new_pack.b8ztO5/_old  2012-03-12 20:11:54.0 +0100
+++ /var/tmp/diff_new_pack.b8ztO5/_new  2012-03-12 20:11:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package brp-check-suse
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   brp-check-suse
 AutoReqProv:off
 Summary:Build root policy check scripts
@@ -32,6 +33,7 @@
 # make package
 #
 Source0:%{name}-%{version}.tar.bz2
+Patch0: brp-check-xdg-menus.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global provfind sh -c grep -v 'brp-desktop.data' | %__find_provides
 %global __find_provides %provfind
@@ -43,6 +45,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 %ifnarch x86_64 s390x ppc64
 rm brp-65-lib64-linux
 %endif

++ brp-check-xdg-menus.patch ++
Index: brp-check-suse-1.0/brp-desktop.data/xdg_menu
===
--- brp-check-suse-1.0.orig/brp-desktop.data/xdg_menu
+++ brp-check-suse-1.0/brp-desktop.data/xdg_menu
@@ -38,44 +38,310 @@ my %Desktop_entries;
 my %Directory_entries;
 
 # These icons get accepted by default. Newer icon themes should provide them
-# in any case
+# in any case. List fetched from icon naming spec (last change from 2009),
+# without animation and international icons.
 my %standardIconNames = (
+# Standard Action Icons
+   address-book-new = undef,
+   application-exit = undef,
+   appointment-new = undef,
+   call-start = undef,
+   call-stop = undef,
+   contact-new = undef,
+   document-new = undef,
+   document-open = undef,
+   document-open-recent = undef,
+   document-page-setup = undef,
+   document-print = undef,
+   document-print-preview = undef,
+   document-properties = undef,
+   document-revert = undef,
+   document-save = undef,
+   document-save-as = undef,
+   document-send = undef,
+   edit-clear = undef,
+   edit-copy = undef,
+   edit-cut = undef,
+   edit-delete = undef,
+   edit-find = undef,
+   edit-find-replace = undef,
+   edit-paste = undef,
+   edit-redo = undef,
+   edit-select-all = undef,
+   edit-undo = undef,
+   folder-new = undef,
+   format-indent-less = undef,
+   format-indent-more = undef,
+   format-justify-center = undef,
+   format-justify-fill = undef,
+   format-justify-left = undef,
+   format-justify-right = undef,
+   format-text-direction-ltr = undef,
+   format-text-direction-rtl = undef,
+   format-text-bold = undef,
+   format-text-italic = undef,
+   format-text-underline = undef,
+   format-text-strikethrough = undef,
+   go-bottom = undef,
+   go-down = undef,
+   go-first = undef,
+   go-home = undef,
+   go-jump = undef,
+   go-last = undef,
+   go-next = undef,
+   go-previous = undef,
+   go-top = undef,
+   go-up = undef,
+   help-about = undef,
+   help-contents = undef,
+   help-faq = undef,
+   insert-image = undef,
+   insert-link = undef,
+   insert-object = undef,
+   insert-text = undef,
+   list-add = undef,
+   list-remove = undef,
+   mail-forward = undef,
+   mail-mark-important = undef,
+   mail-mark-junk = undef,
+   mail-mark-notjunk = undef,
+   mail-mark-read = undef,
+   mail-mark-unread = undef,
+   mail-message-new = undef,
+   mail-reply-all = undef,
+   mail-reply-sender = undef,
+   mail-send = undef,
+   

commit cantor for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package cantor for openSUSE:Factory checked 
in at 2012-03-12 20:11:54

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


Package is cantor, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/cantor/cantor.changes2012-02-14 
11:23:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.cantor.new/cantor.changes   2012-03-12 
20:11:55.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:11:50 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  cantor-4.8.0.tar.bz2

New:

  cantor-4.8.1.tar.bz2



Other differences:
--
++ cantor.spec ++
--- /var/tmp/diff_new_pack.fnfPlV/_old  2012-03-12 20:11:56.0 +0100
+++ /var/tmp/diff_new_pack.fnfPlV/_new  2012-03-12 20:11:56.0 +0100
@@ -15,7 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   cantor
+BuildRequires:  R-base-devel
 BuildRequires:  analitza-devel
 BuildRequires:  fdupes
 BuildRequires:  gcc-fortran
@@ -24,13 +26,12 @@
 BuildRequires:  libqalculate-devel
 BuildRequires:  libspectre-devel
 BuildRequires:  perl
-BuildRequires:  R-base-devel
 # currently in DOESNOTBUILD (2008-07-03)
 %ifnarch ppc ppc64 s390 s390x
 BuildRequires:  ocaml
 BuildRequires:  ocaml-facile
 %endif
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Worksheet GUI for mathematical software
 License:GPL-2.0+

++ cantor-4.8.0.tar.bz2 - cantor-4.8.1.tar.bz2 ++
Files old/cantor-4.8.0/doc/index.cache.bz2 and 
new/cantor-4.8.1/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cantor-4.8.0/doc/index.docbook 
new/cantor-4.8.1/doc/index.docbook
--- old/cantor-4.8.0/doc/index.docbook  2011-11-17 21:56:23.0 +0100
+++ new/cantor-4.8.1/doc/index.docbook  2012-02-29 23:56:24.0 +0100
@@ -290,6 +290,7 @@
 /sect1
 --
 /chapter
+!--this chapter is boring and completely useless, only default menu items 
well known to any kde user--
 chapter id=commands
 titleCommand Reference/title
 
@@ -364,7 +365,7 @@
 varlistentry
 termmenuchoice
 guimenuFile/guimenu
-guimenuitemExport to LaTex/guimenuitem
+guimenuitemExport to LaTeX/guimenuitem
 /menuchoice/term
 listitemparaactionAllows saving the current worksheet as a LaTeX 
document./action/para/listitem
 /varlistentry
@@ -585,6 +586,7 @@
 qandaentry
   questionparaThe Menu Item guimenuitemTypeset using LaTeX/guimenuitem 
is not available/para/question
   answerparaNot every Backend supports every option./para/answer
+!-- which backends support Typeset using LaTeX--
 /qandaentry
 qandaentry
   questionparaI have installed Sage/Maxima, but the appropriate backend 
does not appear./para/question
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cantor-4.8.0/src/assistants/differentiate/differentiateassistant.desktop 
new/cantor-4.8.1/src/assistants/differentiate/differentiateassistant.desktop
--- 
old/cantor-4.8.0/src/assistants/differentiate/differentiateassistant.desktop
2012-01-18 19:49:08.0 +0100
+++ 
new/cantor-4.8.1/src/assistants/differentiate/differentiateassistant.desktop
2012-02-29 23:56:24.0 +0100
@@ -30,6 +30,7 @@
 Name[pt]=Diferenciar
 Name[pt_BR]=Derivada
 Name[ru]=Дифференцирование
+Name[sk]=Diferencovať
 Name[sl]=Odvajaj
 Name[sv]=Derivera
 Name[th]=หาอนุพันธ์
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cantor-4.8.0/src/assistants/integrate/integrateassistant.desktop 
new/cantor-4.8.1/src/assistants/integrate/integrateassistant.desktop
--- old/cantor-4.8.0/src/assistants/integrate/integrateassistant.desktop
2012-01-18 19:49:08.0 +0100
+++ new/cantor-4.8.1/src/assistants/integrate/integrateassistant.desktop
2012-02-29 23:56:24.0 +0100
@@ -31,6 +31,7 @@
 Name[pt]=Integração
 Name[pt_BR]=Integral
 Name[ru]=Интегрирование
+Name[sk]=Integrovať
 Name[sl]=Integriraj
 Name[sv]=Integrera
 Name[th]=หาปริพันธ์
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cantor-4.8.0/src/assistants/linearalgebra/creatematrix/creatematrixassistant.desktop
 
new/cantor-4.8.1/src/assistants/linearalgebra/creatematrix/creatematrixassistant.desktop
--- 
old/cantor-4.8.0/src/assistants/linearalgebra/creatematrix/creatematrixassistant.desktop
2012-01-18 19:49:08.0 +0100
+++ 

commit duplicity for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package duplicity for openSUSE:Factory 
checked in at 2012-03-12 20:11:59

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


Package is duplicity, Maintainer is cth...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/duplicity/duplicity.changes  2012-02-21 
12:17:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.duplicity.new/duplicity.changes 2012-03-12 
20:12:02.0 +0100
@@ -1,0 +2,10 @@
+Mon Mar  5 08:37:26 UTC 2012 - w...@rosenauer.org
+
+- Update to version 0.6.18:
+  * Added option to not compress the backup, when no encryption
+ is selected
+  * Adding --file-prefix option so different sets of backups can
+be stored in the same bucket
+  * more bugfixes
+
+---

Old:

  duplicity-0.6.17.tar.gz

New:

  duplicity-0.6.18.tar.gz



Other differences:
--
++ duplicity.spec ++
--- /var/tmp/diff_new_pack.tDYkZg/_old  2012-03-12 20:12:05.0 +0100
+++ /var/tmp/diff_new_pack.tDYkZg/_new  2012-03-12 20:12:05.0 +0100
@@ -29,7 +29,7 @@
 Summary:Encrypted bandwidth-efficient backup using the rsync algorithm
 License:GPL-3.0+
 Group:  Productivity/Archiving/Backup
-Version:0.6.17
+Version:0.6.18
 Release:0
 Url:http://duplicity.nongnu.org/
 Source: 
http://code.launchpad.net/%{name}/0.6-series/%{version}/+download/%{name}-%{version}.tar.gz

++ duplicity-0.6.17.tar.gz - duplicity-0.6.18.tar.gz ++
 4051 lines of diff (skipped)

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



commit filelight for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package filelight for openSUSE:Factory 
checked in at 2012-03-12 20:12:39

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


Package is filelight, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/filelight/filelight.changes  2012-02-02 
17:57:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.filelight.new/filelight.changes 2012-03-12 
20:13:49.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:11:54 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  filelight-4.8.0.tar.bz2

New:

  filelight-4.8.1.tar.bz2



Other differences:
--
++ filelight.spec ++
--- /var/tmp/diff_new_pack.vpnI4l/_old  2012-03-12 20:13:50.0 +0100
+++ /var/tmp/diff_new_pack.vpnI4l/_new  2012-03-12 20:13:50.0 +0100
@@ -15,13 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   filelight
-Version:4.8.0
+Version:4.8.1
 Release:0
-License:GPL-2.0 or GPL-3.0
 Summary:Graphical disk usage viewer
-Url:http://www.kde.org
+License:GPL-2.0 or GPL-3.0
 Group:  System/GUI/KDE
+Url:http://www.kde.org
 Source0:filelight-%{version}.tar.bz2
 Patch0: 4_7_BRANCH.diff
 BuildRequires:  kdebase4-workspace-devel

++ filelight-4.8.0.tar.bz2 - filelight-4.8.1.tar.bz2 ++
Files old/filelight-4.8.0/doc/index.cache.bz2 and 
new/filelight-4.8.1/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/filelight-4.8.0/misc/filelight.desktop 
new/filelight-4.8.1/misc/filelight.desktop
--- old/filelight-4.8.0/misc/filelight.desktop  2012-01-10 15:18:38.0 
+0100
+++ new/filelight-4.8.1/misc/filelight.desktop  2012-02-29 23:57:36.0 
+0100
@@ -137,6 +137,7 @@
 Comment[sv]=Visa information om hårddiskanvändning
 Comment[th]=แสดงข้อมูลการใช้งานพื้นที่ดิสก์
 Comment[tr]=Disk kullanımını görüntüle
+Comment[ug]=دىسكىنىڭ ئىشلىتىلىش ئۇچۇرلىرىنى كۆرسىتىش پروگراممىسى
 Comment[uk]=Перегляд інформації щодо використання дисків
 Comment[wa]=Vey les informåcions so l' eployaedje del deure plake
 Comment[x-test]=xxView disk usage informationxx

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



commit gwenview for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package gwenview for openSUSE:Factory 
checked in at 2012-03-12 20:12:53

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


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

Changes:

--- /work/SRC/openSUSE:Factory/gwenview/gwenview.changes2012-01-27 
15:17:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.gwenview.new/gwenview.changes   2012-03-12 
20:13:53.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:14 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  gwenview-4.8.0.tar.bz2

New:

  gwenview-4.8.1.tar.bz2



Other differences:
--
++ gwenview.spec ++
--- /var/tmp/diff_new_pack.HhkSdT/_old  2012-03-12 20:13:55.0 +0100
+++ /var/tmp/diff_new_pack.HhkSdT/_new  2012-03-12 20:13:55.0 +0100
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   gwenview
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Simple Image Viewer for KDE
 License:GPL-2.0+

++ gwenview-4.8.0.tar.bz2 - gwenview-4.8.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gwenview-4.8.0/app/advancedconfigpage.ui 
new/gwenview-4.8.1/app/advancedconfigpage.ui
--- old/gwenview-4.8.0/app/advancedconfigpage.ui2011-07-27 
20:42:11.0 +0200
+++ new/gwenview-4.8.1/app/advancedconfigpage.ui2012-02-29 
23:57:15.0 +0100
@@ -48,8 +48,7 @@
item row=1 column=1
 widget class=QLabel name=cacheHelpLabel
  property name=text
-  stringEnable this option if you do not have a lot of disk space.
-Be careful: this will delete the folder named 
lt;filenamegt;.thumbnailslt;/filenamegt; in your home folder, deleting all 
thumbnails previously generated by Gwenview and other applications./string
+ stringEnable this option if you do not have a lot of disk 
space.lt;br/gt;lt;br/gt;lt;emgt;Be careful:lt;/emgt; this will delete 
the folder named lt;filenamegt;.thumbnailslt;/filenamegt; in your home 
folder, deleting all thumbnails previously generated by Gwenview and other 
applications./string
  /property
  property name=wordWrap
   booltrue/bool
Files old/gwenview-4.8.0/doc/index.cache.bz2 and 
new/gwenview-4.8.1/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gwenview-4.8.0/doc/index.docbook 
new/gwenview-4.8.1/doc/index.docbook
--- old/gwenview-4.8.0/doc/index.docbook2011-12-20 20:14:04.0 
+0100
+++ new/gwenview-4.8.1/doc/index.docbook2012-02-29 23:57:15.0 
+0100
@@ -38,8 +38,8 @@
 /copyright
 legalnoticeFDLNotice;/legalnotice
 
-date2011-12-02/date
-releaseinfo2.7.0 (kde; 4.8)/releaseinfo
+date2012-01-28/date
+releaseinfo2.8 (kde; 4.8)/releaseinfo
 abstract
 parakappname; is an image viewer for kde;./para
 /abstract
@@ -60,7 +60,7 @@
 titleWhat is kappname;/title
 
 para
-kappname; is a fast and easy to use image viewer for KDE.
+kappname; is a fast and easy to use image and video viewer for KDE.
 /para
 
 para
@@ -227,7 +227,14 @@
 button are next to the zoom slider and are two preset zoom levels. The
 guibuttonFit/guibutton button zooms the current image to fit the size
 of the window, and the guibutton100%/guibutton button zooms the image to
-the actual pixel size./para
+the actual pixel size. The shortcut keycapF/keycap toggles between both 
view modes./para
+
+paraWhen an image is in zoom-to-fit mode, you can go to the previous and 
next 
+image with the arrow keys. When you zoom in, arrow keys are used to scroll the 
image. 
+This is very similar to the behavior provided by phones or digital 
cameras./para
+
+paraWhen an image is zoomed in, a bird-eye view appears and lets you scroll 
+the image using the mouse and the arrow keys./para
 
 tipparaYou can start directly in View mode by starting kappname; from a
 context menu like guimenuitemOpen With/guimenuitem in another program or by
@@ -544,6 +551,12 @@
 listitemparakeycombo
 action=simulCtrl;keycapO/keycap/keycombo:
 Open an image using the standard file selection dialog./para/listitem
+
+listitemparakeycapF/keycap:
+Pressing this shortcut toggles zoom-to-fit on and off./para/listitem
+
+listitemparakeycapP/keycap:
+Viewing a video this shortcut toggles playback on and off./para/listitem
 /itemizedlist
 /sect1
 /chapter
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit icinga for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package icinga for openSUSE:Factory checked 
in at 2012-03-12 20:13:04

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


Package is icinga, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/icinga/icinga.changes2012-03-01 
17:20:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.icinga.new/icinga.changes   2012-03-12 
20:14:00.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 16:36:48 UTC 2012 - thard...@suse.com
+
+- Changed the spec file to use the nagios-rpm-macro variables
+- Fixed a rare bug in rcido2db when the pid directory was missing during first 
start
+
+---



Other differences:
--
++ icinga.spec ++
--- /var/tmp/diff_new_pack.UtyQ6t/_old  2012-03-12 20:14:01.0 +0100
+++ /var/tmp/diff_new_pack.UtyQ6t/_new  2012-03-12 20:14:01.0 +0100
@@ -16,23 +16,21 @@
 #
 
 
-%define logdir %{_localstatedir}/log/icinga
+%define apacheconfdir  %{_sysconfdir}/apache2/conf.d
+# overload eventhandlerdir with the original value for now to not break 
backward
+# compatibility, this will be changed with the next upstream version 
integration
+# to /usr/lib/icinga/eventhandler
+%define icinga_eventhandlerdir %{_prefix}/lib/nagios/plugins/eventhandlers/
 
 Name:   icinga
 Version:1.6.1
-Release:0
-%define nsusr icinga
-%define nsgrp icinga
-%define cmdgrp icingacmd
-%define cmdusr wwwrun
+Release:2
+License:GPL-2.0
 # Macro that print mesages to syslog at package (un)install time
 %define nnmmsg logger -t %{name}/rpm
-%define apacheuser wwwrun
-%define apachegroup www
 Summary:Host/service/network monitoring program
-License:GPL-2.0
-Group:  System/Monitoring
 Url:http://www.icinga.org/
+Group:  System/Monitoring
 Source0:%{name}-%{version}.tar.gz
 Source1:rc%{name}
 Source2:rcido2db
@@ -47,6 +45,7 @@
 # PATCH-FIX-OPENSUSE icinga-add-ifdefine-to-apache.patch
 Patch0: icinga-add-ifdefine-to-apache.patch
 BuildRequires:  apache2-devel
+BuildRequires:  nagios-rpm-macros
 %if 0%{?suse_version} = 1110
 BuildRequires:  fdupes
 %endif
@@ -173,6 +172,7 @@
 Group:  System/Monitoring
 Requires:   %{name}-idoutils = %{version}
 Recommends: oracle-client
+Provides:   %{name}-idoutils-drivers-dbd = %{version}
 
 %description idoutils-oracle
 This package requires all needed packages for using IDOUtils with OracleDB.
@@ -212,8 +212,8 @@
 %patch0 -p1
 
 # replace default ido2db lock and socket file settings
-sed -ie 
s|@localstatedir@/ido2db.lock|%{_localstatedir}/run/%{name}/ido2db.pid|g; \
- 
s|@localstatedir@/ido.sock|%{_localstatedir}/spool/%{name}/ido2db.sock|g; \
+sed -ie s|@localstatedir@/ido2db.lock|%{icinga_ido2db_lockfile}|g; \
+ s|@localstatedir@/ido.sock|%{icinga_ido2db_socketfile}|g; \
module/idoutils/config/ido2db.cfg-sample.in \
module/idoutils/config/idomod.cfg-sample.in;
 
@@ -223,29 +223,29 @@
 %build
 export PATH_TO_TRACEROUTE=%{_sbindir}/traceroute
 %configure \
-   --exec-prefix=%{_sbindir} \
-   --bindir=%{_sbindir} \
-   --sbindir=%{_prefix}/lib/%{name}/cgi \
-   --libexecdir=%{_prefix}/lib/nagios/plugins \
-   --datarootdir=%{_datadir}/%{name} \
-   --sysconfdir=/%{_sysconfdir}/%{name} \
-   --with-p1-file-dir=/%{_datadir}/%{name} \
-   --with-init-dir=/etc/init.d \
-   --localstatedir=%{_localstatedir}/lib/%{name} \
-   --with-checkresult-dir=%{_localstatedir}/lib/%{name}/checkresults \
-   --with-cgiurl=/%{name}/cgi-bin \
-   --with-htmurl=/%{name} \
-   --with-httpd-conf=%{_sysconfdir}/apache2/conf.d \
-   --with-lockfile=%{_localstatedir}/run/%{name}/%{name}.pid \
-   --with-ext-cmd-file-dir=%{_localstatedir}/spool/%{name} \
-   --with-log-dir=%{logdir} \
-   --with-cgi-log-dir=%{logdir}/www \
-   --with-icinga-user=%{nsusr} \
-   --with-icinga-group=%{nsgrp} \
-   --with-command-user=%{cmdusr} \
-   --with-command-group=%{cmdgrp} \
-   --with-gd-lib=%{_libdir} \
-   --with-gd-inc=%{_includedir} \
+   --exec-prefix=%{_sbindir} \
+   --bindir=%{_sbindir} \
+   --sbindir=%{icinga_cgidir} \
+   --libexecdir=%{icinga_plugindir} \
+   --datarootdir=%{icinga_datadir} \
+   --sysconfdir=%{icinga_sysconfdir} \
+   --with-p1-file-dir=%{icinga_datadir} \
+   --with-init-dir=%{_sysconfdir}/init.d \
+   --localstatedir=%{icinga_localstatedir}  \
+   --with-checkresult-dir=%{icinga_localstatedir}/checkresults \
+   

commit jovie for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package jovie for openSUSE:Factory checked 
in at 2012-03-12 20:13:10

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


Package is jovie, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/jovie/jovie.changes  2012-01-30 
12:24:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.jovie.new/jovie.changes 2012-03-12 
20:14:01.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:21 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  jovie-4.8.0.tar.bz2

New:

  jovie-4.8.1.tar.bz2



Other differences:
--
++ jovie.spec ++
--- /var/tmp/diff_new_pack.flupH2/_old  2012-03-12 20:14:03.0 +0100
+++ /var/tmp/diff_new_pack.flupH2/_new  2012-03-12 20:14:03.0 +0100
@@ -26,7 +26,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.8.0
+Version:4.8.1
 Release:0
 Source0:jovie-%version.tar.bz2
 Patch:  4_7_BRANCH.diff

++ jovie-4.8.0.tar.bz2 - jovie-4.8.1.tar.bz2 ++
Files old/jovie-4.8.0/doc/index.cache.bz2 and 
new/jovie-4.8.1/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/jovie-4.8.0/filters/stringreplacer/jovie_stringreplacerplugin.desktop 
new/jovie-4.8.1/filters/stringreplacer/jovie_stringreplacerplugin.desktop
--- old/jovie-4.8.0/filters/stringreplacer/jovie_stringreplacerplugin.desktop   
2012-01-18 19:50:14.0 +0100
+++ new/jovie-4.8.1/filters/stringreplacer/jovie_stringreplacerplugin.desktop   
2012-02-29 23:57:52.0 +0100
@@ -96,6 +96,7 @@
 Comment[pt]='Plugin' Genérico de Substituição de Textos para o Jovie
 Comment[pt_BR]=Plug-in genérico do filtro de substituição de textos para o 
Jovie
 Comment[ru]=Модуль автозамены для Jovie
+Comment[sk]=Všeobecný modul filtra náhrady reťazca pre Jovie
 Comment[sr]=Генерички филтерски прикључак Џови за замену ниски
 Comment[sr@ijekavian]=Генерички филтерски прикључак Џови за замјену ниски
 Comment[sr@ijekavianlatin]=Generički filterski priključak Džovi za zamjenu 
niski
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/jovie-4.8.0/filters/talkerchooser/jovie_talkerchooserplugin.desktop 
new/jovie-4.8.1/filters/talkerchooser/jovie_talkerchooserplugin.desktop
--- old/jovie-4.8.0/filters/talkerchooser/jovie_talkerchooserplugin.desktop 
2012-01-18 19:50:14.0 +0100
+++ new/jovie-4.8.1/filters/talkerchooser/jovie_talkerchooserplugin.desktop 
2012-02-29 23:57:52.0 +0100
@@ -95,6 +95,7 @@
 Comment[pt]='Plugin' Genérico de Escolha do Locutor para o Jovie
 Comment[pt_BR]=Plug-in genérico do filtro de escolha do locutor para o Jovie
 Comment[ru]=Модуль выбора диктора для Jovie
+Comment[sk]=Všeobecný modul filra pre voľbu hovorcu pre Jovie
 Comment[sr]=Генерички филтерски прикључак Џови за бирање говорника
 Comment[sr@ijekavian]=Генерички филтерски прикључак Џови за бирање говорника
 Comment[sr@ijekavianlatin]=Generički filterski priključak Džovi za biranje 
govornika
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/jovie-4.8.0/filters/xmltransformer/jovie_xmltransformerplugin.desktop 
new/jovie-4.8.1/filters/xmltransformer/jovie_xmltransformerplugin.desktop
--- old/jovie-4.8.0/filters/xmltransformer/jovie_xmltransformerplugin.desktop   
2012-01-18 19:50:14.0 +0100
+++ new/jovie-4.8.1/filters/xmltransformer/jovie_xmltransformerplugin.desktop   
2012-02-29 23:57:52.0 +0100
@@ -95,6 +95,7 @@
 Comment[pt]='Plugin' Genérico de Transformação de XML para o Jovie
 Comment[pt_BR]=Plug-in genérico do filtro de transformação XML para o Jovie
 Comment[ru]=Модуль преобразования XML для Jovie
+Comment[sk]=Všeobecný modul filtra pre XML transformáciu pre Jovie
 Comment[sr]=Генерички филтерски прикључак Џови за трансформисање ИксМЛ‑а
 Comment[sr@ijekavian]=Генерички филтерски прикључак Џови за трансформисање 
ИксМЛ‑а
 Comment[sr@ijekavianlatin]=Generički filterski priključak Džovi za 
transformisanje XML‑a
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jovie-4.8.0/jovie/jovie.desktop 
new/jovie-4.8.1/jovie/jovie.desktop
--- old/jovie-4.8.0/jovie/jovie.desktop 2012-01-18 19:50:14.0 +0100
+++ new/jovie-4.8.1/jovie/jovie.desktop 2012-02-29 23:57:52.0 +0100
@@ -21,6 +21,7 @@
 GenericName[hu]=Szövegfelolvasó szolgáltatás
 GenericName[it]=Servizio di pronuncia di KDE
 

commit kaccessible for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kaccessible for openSUSE:Factory 
checked in at 2012-03-12 20:13:14

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


Package is kaccessible, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/kaccessible/kaccessible.changes  2012-02-10 
17:14:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.kaccessible.new/kaccessible.changes 
2012-03-12 20:14:04.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:25 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kaccessible-4.8.0.tar.bz2

New:

  kaccessible-4.8.1.tar.bz2



Other differences:
--
++ kaccessible.spec ++
--- /var/tmp/diff_new_pack.R686iI/_old  2012-03-12 20:14:05.0 +0100
+++ /var/tmp/diff_new_pack.R686iI/_new  2012-03-12 20:14:05.0 +0100
@@ -26,7 +26,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:4.8.0
+Version:4.8.1
 Release:0
 Source0:%{name}-%version.tar.bz2
 Patch:  4_7_BRANCH.diff

++ kaccessible-4.8.0.tar.bz2 - kaccessible-4.8.1.tar.bz2 ++

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



commit kactivities4 for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kactivities4 for openSUSE:Factory 
checked in at 2012-03-12 20:13:20

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


Package is kactivities4, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/kactivities4/kactivities4.changes
2012-02-10 17:15:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.kactivities4.new/kactivities4.changes   
2012-03-12 20:14:06.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:29 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kactivities-4.8.0.tar.bz2

New:

  kactivities-4.8.1.tar.bz2



Other differences:
--
++ kactivities4.spec ++
--- /var/tmp/diff_new_pack.iYJmH1/_old  2012-03-12 20:14:07.0 +0100
+++ /var/tmp/diff_new_pack.iYJmH1/_new  2012-03-12 20:14:07.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   kactivities4
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:KDE Plasma Activities support
 License:GPL-2.0+ ; LGPL-2.1+

++ kactivities-4.8.0.tar.bz2 - kactivities-4.8.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.8.0/service/activitymanager-plugin.desktop 
new/kactivities-4.8.1/service/activitymanager-plugin.desktop
--- old/kactivities-4.8.0/service/activitymanager-plugin.desktop
2012-01-18 19:48:53.0 +0100
+++ new/kactivities-4.8.1/service/activitymanager-plugin.desktop
2012-02-29 23:56:02.0 +0100
@@ -25,9 +25,10 @@
 Comment[pa]=ਐਕਟੀਵਿਟੀ ਮੈਨੇਜਰ ਪਲੱਗਇਨ
 Comment[pl]=Wtyczka menadżera działań
 Comment[pt]='Plugin' de gestão de actividades
-Comment[pt_BR]=Plug-in do gerenciador de atividades
+Comment[pt_BR]=Plugin do gerenciador de atividades
 Comment[ro]=Modul pentru gestionarul de activități
 Comment[se]=Lassemodula aktivitehtagieđahallamii
+Comment[sk]=Plugin správcu aktivít
 Comment[sl]=Vstavek upravljalnika dejavnosti
 Comment[sr]=Прикључак менаџера активности
 Comment[sr@ijekavian]=Прикључак менаџера активности
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-4.8.0/service/kactivitymanagerd.desktop 
new/kactivities-4.8.1/service/kactivitymanagerd.desktop
--- old/kactivities-4.8.0/service/kactivitymanagerd.desktop 2012-01-18 
19:48:53.0 +0100
+++ new/kactivities-4.8.1/service/kactivitymanagerd.desktop 2012-02-29 
23:56:02.0 +0100
@@ -32,6 +32,7 @@
 Name[pt_BR]=Gerenciador de atividades
 Name[ro]=Gestionar de activități
 Name[se]=Aktivitehtagieđahalli
+Name[sk]=Správca aktivít
 Name[sl]=Upravljalnik dejavnosti
 Name[sr]=Менаџер активности
 Name[sr@ijekavian]=Менаџер активности
@@ -70,6 +71,7 @@
 Comment[pt_BR]=Infraestrutura de gerenciamento de atividades
 Comment[ro]=Suport pentru administrare activități
 Comment[se]=Aktivitehtagieđahallama duogášmohtor
+Comment[sk]=Backend pre správu aktivít
 Comment[sl]=Hrbtenica za upravljanje z dejavnostmi
 Comment[sr]=Позадина за управљање активностима
 Comment[sr@ijekavian]=Позадина за управљање активностима
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.8.0/service/plugins/dummy/activitymanager-plugin-dummy.desktop
 
new/kactivities-4.8.1/service/plugins/dummy/activitymanager-plugin-dummy.desktop
--- 
old/kactivities-4.8.0/service/plugins/dummy/activitymanager-plugin-dummy.desktop
2012-01-18 19:48:53.0 +0100
+++ 
new/kactivities-4.8.1/service/plugins/dummy/activitymanager-plugin-dummy.desktop
2012-02-29 23:56:02.0 +0100
@@ -22,9 +22,10 @@
 Name[pa]=ਡੰਮੀ ਪਲੱਗਇਨ
 Name[pl]=Fikcyjna wtyczka
 Name[pt]='Plugin' de testes
-Name[pt_BR]=Plug-in de testes
+Name[pt_BR]=Plugin de testes
 Name[ro]=Modul fictiv
 Name[se]=Mahkášlassemodula
+Name[sk]=Prázdny plugin
 Name[sl]=Prazen vstavek
 Name[sr]=Лажни прикључак
 Name[sr@ijekavian]=Лажни прикључак
@@ -62,6 +63,7 @@
 Comment[pt_BR]=Apenas testando
 Comment[ro]=Doar pentru testare
 Comment[se]=Dušše iskamin
+Comment[sk]=Iba testovanie
 Comment[sl]=Samo testiranje
 Comment[sr]=Проста проба
 Comment[sr@ijekavian]=Проста проба
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.8.0/service/plugins/nepomuk/activitymanager-plugin-nepomuk.desktop
 
new/kactivities-4.8.1/service/plugins/nepomuk/activitymanager-plugin-nepomuk.desktop
--- 
old/kactivities-4.8.0/service/plugins/nepomuk/activitymanager-plugin-nepomuk.desktop
2012-01-18 

commit kalgebra for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kalgebra for openSUSE:Factory 
checked in at 2012-03-12 20:13:26

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kalgebra/kalgebra.changes2012-02-15 
15:57:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.kalgebra.new/kalgebra.changes   2012-03-12 
20:14:08.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:34 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kalgebra-4.8.0.tar.bz2

New:

  kalgebra-4.8.1.tar.bz2



Other differences:
--
++ kalgebra.spec ++
--- /var/tmp/diff_new_pack.oyOtCu/_old  2012-03-12 20:14:09.0 +0100
+++ /var/tmp/diff_new_pack.oyOtCu/_new  2012-03-12 20:14:09.0 +0100
@@ -33,7 +33,7 @@
 License:GPL-2.0+
 Group:  Productivity/Scientific/Math
 Url:http://edu.kde.org
-Version:4.8.0
+Version:4.8.1
 Release:0
 Source0:%{name}-%version.tar.bz2
 Patch0: 4_6_BRANCH.diff

++ kalgebra-4.8.0.tar.bz2 - kalgebra-4.8.1.tar.bz2 ++
Files old/kalgebra-4.8.0/doc/index.cache.bz2 and 
new/kalgebra-4.8.1/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kalgebra-4.8.0/mobile/kalgebramobile.desktop 
new/kalgebra-4.8.1/mobile/kalgebramobile.desktop
--- old/kalgebra-4.8.0/mobile/kalgebramobile.desktop2012-01-02 
20:51:48.0 +0100
+++ new/kalgebra-4.8.1/mobile/kalgebramobile.desktop2012-02-29 
23:56:25.0 +0100
@@ -30,8 +30,10 @@
 Name[pl]=Mobilna KAlgebra
 Name[pt]=KAlgebra Móvel
 Name[pt_BR]=KAlgebra Móvel
+Name[sk]=KAlgebra Mobile
 Name[sl]=KAlgebra Mobile
 Name[sv]=Kalgebra för mobil
+Name[ug]=كۆچمە ئۈسكۈنىلەر ئۈچۈن KAlgebra
 Name[uk]=Мобільна KAlgebra
 Name[x-test]=xxKAlgebra Mobilexx
 Name[zh_CN]=KAlgebra 移动
@@ -106,6 +108,7 @@
 Comment[pt_BR]=Solucionador e visualizador portátil de expressões matemáticas
 Comment[sl]=Žepni reševalnik matematičnih enačb in risalnik grafov
 Comment[sv]=Lösning och uppritning av matematiska uttryck i fickformat
+Comment[ug]=كۆچمە ئۈسكۈنىلەر ئۈچۈن ماتېماتىكىلىق ئىپادىلەرنى يېشىش ۋە سىزىش 
قورالى
 Comment[uk]=Кишеньковий розв’язувач математичних рівнянь та графопобудовник
 Comment[x-test]=xxPocket Math Expression Solver and Plotterxx
 Comment[zh_CN]=口袋数学式解决与绘图工具
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kalgebra-4.8.0/mobile/kalgebrascript.desktop 
new/kalgebra-4.8.1/mobile/kalgebrascript.desktop
--- old/kalgebra-4.8.0/mobile/kalgebrascript.desktop2012-01-02 
20:51:48.0 +0100
+++ new/kalgebra-4.8.1/mobile/kalgebrascript.desktop2012-02-29 
23:56:25.0 +0100
@@ -34,6 +34,7 @@
 Name[pl]=Skrypt KAlgebra
 Name[pt]=Programa do KAlgebra
 Name[pt_BR]=Script do KAlgebra
+Name[sk]=KAlgebra skript
 Name[sl]=Skript KAlgebra
 Name[sv]=Kalgebra-skript
 Name[uk]=Скрипт KAlgebra
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kalgebra-4.8.0/mobile/plugins/kalgebraconsole.desktop 
new/kalgebra-4.8.1/mobile/plugins/kalgebraconsole.desktop
--- old/kalgebra-4.8.0/mobile/plugins/kalgebraconsole.desktop   2012-01-18 
19:49:09.0 +0100
+++ new/kalgebra-4.8.1/mobile/plugins/kalgebraconsole.desktop   2012-02-29 
23:56:25.0 +0100
@@ -34,6 +34,7 @@
 Name[pl]=Konsola
 Name[pt]=Consola
 Name[pt_BR]=Console
+Name[sk]=Konzola
 Name[sl]=Konzola
 Name[sv]=Terminal
 Name[ug]=تىزگىن سۇپا
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kalgebra-4.8.0/mobile/plugins/kalgebraplot2d.desktop 
new/kalgebra-4.8.1/mobile/plugins/kalgebraplot2d.desktop
--- old/kalgebra-4.8.0/mobile/plugins/kalgebraplot2d.desktop2012-01-02 
20:51:48.0 +0100
+++ new/kalgebra-4.8.1/mobile/plugins/kalgebraplot2d.desktop2012-02-29 
23:56:25.0 +0100
@@ -33,6 +33,7 @@
 Name[pl]=Wykres 2D
 Name[pt]=Gráfico 2D
 Name[pt_BR]=Gráfico em 2D
+Name[sk]=2D Graf
 Name[sl]=2D graf
 Name[sv]=Graf-2D
 Name[uk]=Двовимірний графік
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kalgebra-4.8.0/plasmoid/kalgebraplasmoid.desktop 
new/kalgebra-4.8.1/plasmoid/kalgebraplasmoid.desktop
--- old/kalgebra-4.8.0/plasmoid/kalgebraplasmoid.desktop2012-01-10 
15:14:41.0 +0100
+++ new/kalgebra-4.8.1/plasmoid/kalgebraplasmoid.desktop2012-02-29 
23:56:25.0 +0100

commit kalzium for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kalzium for openSUSE:Factory checked 
in at 2012-03-12 20:13:31

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kalzium/kalzium.changes  2012-01-31 
10:20:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.kalzium.new/kalzium.changes 2012-03-12 
20:14:09.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:38 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kalzium-4.8.0.tar.bz2

New:

  kalzium-4.8.1.tar.bz2



Other differences:
--
++ kalzium.spec ++
--- /var/tmp/diff_new_pack.lDzL3J/_old  2012-03-12 20:14:10.0 +0100
+++ /var/tmp/diff_new_pack.lDzL3J/_new  2012-03-12 20:14:10.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kalzium
 BuildRequires:  boost-devel
 BuildRequires:  freeglut-devel
@@ -45,7 +46,7 @@
 BuildRequires:  ocaml
 BuildRequires:  ocaml-facile
 %endif
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Periodic Table of Elements
 License:GPL-2.0+

++ kalzium-4.8.0.tar.bz2 - kalzium-4.8.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kalzium-4.8.0/compoundviewer/kalziumgl_part.desktop 
new/kalzium-4.8.1/compoundviewer/kalziumgl_part.desktop
--- old/kalzium-4.8.0/compoundviewer/kalziumgl_part.desktop 2012-01-10 
15:14:47.0 +0100
+++ new/kalzium-4.8.1/compoundviewer/kalziumgl_part.desktop 2012-02-29 
23:56:26.0 +0100
@@ -95,7 +95,7 @@
 Comment[pa]=ਅਣੂ ਲਈ ਓਪਨ-GL ਅਧਾਰਿਤ 3D-ਰੈਂਡਰਿੰਗ
 Comment[pl]=Moduł prezentujący trójwymiarowy widok cząsteczek; wykorzystuje 
OpenGL
 Comment[pt]=Um motor de representação em OpenGL para moléculas
-Comment[pt_BR]=Um renderizador de moléculas em 3D baseado no OpenGL
+Comment[pt_BR]=Um processador de moléculas em 3D baseado no OpenGL
 Comment[ro]=Un randor 3D de molecule, bazat pe OpenGL
 Comment[ru]=Построитель объёмных молекул, основанный на OpenGL
 Comment[sl]=3D izrisovalnik molekul, ki temelji na OpenGL
Files old/kalzium-4.8.0/doc/index.cache.bz2 and 
new/kalzium-4.8.1/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kalzium-4.8.0/plasmoid/applet/concentrationPlasmoid/concentrationCalculator.desktop
 
new/kalzium-4.8.1/plasmoid/applet/concentrationPlasmoid/concentrationCalculator.desktop
--- 
old/kalzium-4.8.0/plasmoid/applet/concentrationPlasmoid/concentrationCalculator.desktop
 2012-01-02 20:51:50.0 +0100
+++ 
new/kalzium-4.8.1/plasmoid/applet/concentrationPlasmoid/concentrationCalculator.desktop
 2012-02-29 23:56:26.0 +0100
@@ -13,6 +13,7 @@
 Name[eu]=Kalzium kontzentrazioen kalkulagailua
 Name[fi]=Kalziumin konsentraatiolaskin
 Name[fr]=Calculateur de concentration Kalzium
+Name[ga]=Áireamhán tiúchana Kalzium
 Name[gl]=Calculador de concentracións de Kalzium
 Name[hu]=Kalzium koncentrációszámoló
 Name[it]=Calcolatore di concentrazione di Kalzium
@@ -51,6 +52,7 @@
 Comment[eu]=Kalzium kontzentrazioen kalkulagailua
 Comment[fi]=Kalziumin konsentraatiolaskin
 Comment[fr]=Calculateur de concentration Kalzium
+Comment[ga]=Áireamhán tiúchana Kalzium
 Comment[gl]=Calculador de concentracións de Kalzium
 Comment[hu]=Kalzium koncentrációszámoló
 Comment[it]=Calcolatore di concentrazione di Kalzium
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kalzium-4.8.0/plasmoid/applet/gasPlasmoid/gasCalculator.desktop 
new/kalzium-4.8.1/plasmoid/applet/gasPlasmoid/gasCalculator.desktop
--- old/kalzium-4.8.0/plasmoid/applet/gasPlasmoid/gasCalculator.desktop 
2012-01-02 20:51:50.0 +0100
+++ new/kalzium-4.8.1/plasmoid/applet/gasPlasmoid/gasCalculator.desktop 
2012-02-29 23:56:26.0 +0100
@@ -14,6 +14,7 @@
 Name[eu]=Kalzium gasen kalkulagailua
 Name[fi]=Kalziumin kaasulaskin
 Name[fr]=Calculateur de gaz Kalzium
+Name[ga]=Áireamh gáis Kalzium
 Name[gl]=Calculadora de gases de Kalzium
 Name[hu]=Kalzium gázszámoló
 Name[it]=Calcolatore di gas di Kalzium
@@ -53,6 +54,7 @@
 Comment[eu]=Kalzium gasen kalkulagailua
 Comment[fi]=Kalziumin kaasulaskin
 Comment[fr]=Calculateur de gaz Kalzium
+Comment[ga]=Áireamh gáis Kalzium
 Comment[gl]=Calculadora de gases de Kalzium
 Comment[hu]=Kalzium gázszámoló
 Comment[it]=Calcolatore di gas di Kalzium
diff -urN '--exclude=CVS' 

commit kanagram for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kanagram for openSUSE:Factory 
checked in at 2012-03-12 20:13:41

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


Package is kanagram, Maintainer is kanagram

Changes:

--- /work/SRC/openSUSE:Factory/kanagram/kanagram.changes2012-01-30 
12:24:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.kanagram.new/kanagram.changes   2012-03-12 
20:14:14.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:45 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kanagram-4.8.0.tar.bz2

New:

  kanagram-4.8.1.tar.bz2



Other differences:
--
++ kanagram.spec ++
--- /var/tmp/diff_new_pack.LaTQRS/_old  2012-03-12 20:14:15.0 +0100
+++ /var/tmp/diff_new_pack.LaTQRS/_new  2012-03-12 20:14:15.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kanagram
 BuildRequires:  boost-devel
 BuildRequires:  freeglut-devel
@@ -45,7 +46,7 @@
 BuildRequires:  ocaml
 BuildRequires:  ocaml-facile
 %endif
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Anagram Game
 License:GPL-2.0+

++ kanagram-4.8.0.tar.bz2 - kanagram-4.8.1.tar.bz2 ++
Files old/kanagram-4.8.0/doc/index.cache.bz2 and 
new/kanagram-4.8.1/doc/index.cache.bz2 differ

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



commit kamera for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kamera for openSUSE:Factory checked 
in at 2012-03-12 20:13:36

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


Package is kamera, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/kamera/kamera.changes2012-01-27 
15:18:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.kamera.new/kamera.changes   2012-03-12 
20:14:11.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:41 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kamera-4.8.0.tar.bz2

New:

  kamera-4.8.1.tar.bz2



Other differences:
--
++ kamera.spec ++
--- /var/tmp/diff_new_pack.7JDCGD/_old  2012-03-12 20:14:14.0 +0100
+++ /var/tmp/diff_new_pack.7JDCGD/_new  2012-03-12 20:14:14.0 +0100
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kamera
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Base package for kdegraphics apps
 License:LGPL-2.1+
@@ -54,8 +55,8 @@
 Summary:KDE I/O-Slave for Cameras
 License:GPL-2.0+
 Group:  Hardware/Camera
-Provides:   
kdegraphics3-kamera:/opt/kde3/share/applications/kde/kamera.desktop
 Provides:   kde4-kio_kamera = 4.3.0
+Provides:   
kdegraphics3-kamera:/opt/kde3/share/applications/kde/kamera.desktop
 Obsoletes:  kde4-kio_kamera  4.3.0
 %kde4_runtime_requires
 

++ kamera-4.8.0.tar.bz2 - kamera-4.8.1.tar.bz2 ++
Files old/kamera-4.8.0/doc/index.cache.bz2 and 
new/kamera-4.8.1/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-4.8.0/kcontrol/kamera.desktop 
new/kamera-4.8.1/kcontrol/kamera.desktop
--- old/kamera-4.8.0/kcontrol/kamera.desktop2012-01-18 19:49:46.0 
+0100
+++ new/kamera-4.8.1/kcontrol/kamera.desktop2012-02-29 23:57:12.0 
+0100
@@ -74,6 +74,7 @@
 Comment[zh_HK]=設定 Kamera
 Comment[zh_TW]=設定照相機
 X-KDE-Keywords=gphoto,camera,digicam,webcam,kamera
+X-KDE-Keywords[ar]=كاميرا,ويبكام,gphoto,camera,digicam,webcam,kamera
 X-KDE-Keywords[ca]=gphoto,càmera,digicam,webcam,kamera
 X-KDE-Keywords[ca@valencia]=gphoto,càmera,digicam,webcam,kamera
 X-KDE-Keywords[da]=gphoto,kamera,digicam,webcam,digitalkamera
@@ -86,6 +87,7 @@
 X-KDE-Keywords[hu]=gphoto,fényképezőgép,digitális 
fényképezőgép,webkamera,kamera
 X-KDE-Keywords[it]=gphoto,camera,digikam,webcam,kamera
 X-KDE-Keywords[kk]=gphoto,camera,digicam,webcam,kamera
+X-KDE-Keywords[ko]=gphoto,camera,digicam,webcam,kamera,카메라,디지털 카메라,웹캠
 X-KDE-Keywords[nb]=gphoto,camera,digicam,webcam,kamera
 X-KDE-Keywords[nds]=gphoto,camera,digicam,webcam,nettkamera,kamera
 X-KDE-Keywords[nl]=gphoto,camera,digicam,webcam,kamera
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-4.8.0/solid_camera.desktop 
new/kamera-4.8.1/solid_camera.desktop
--- old/kamera-4.8.0/solid_camera.desktop   2012-01-10 15:15:41.0 
+0100
+++ new/kamera-4.8.1/solid_camera.desktop   2012-02-29 23:57:12.0 
+0100
@@ -7,6 +7,7 @@
 Exec=kioclient exec camera:/
 Icon=system-file-manager
 Name=Open with File Manager
+Name[ar]=افتح بمدير الملفات
 Name[ast]=Abrir con Xestor de Ficheros
 Name[bg]=Отваряне в файлов браузър
 Name[bs]=Otvori menadžerom datoteka

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



commit kcalc for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kcalc for openSUSE:Factory checked 
in at 2012-03-12 20:14:01

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kcalc/kcalc.changes  2012-01-30 
12:24:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.kcalc.new/kcalc.changes 2012-03-12 
20:14:22.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:13:00 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kcalc-4.8.0.tar.bz2

New:

  kcalc-4.8.1.tar.bz2



Other differences:
--
++ kcalc.spec ++
--- /var/tmp/diff_new_pack.X2QE8Z/_old  2012-03-12 20:14:23.0 +0100
+++ /var/tmp/diff_new_pack.X2QE8Z/_new  2012-03-12 20:14:23.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kcalc
 BuildRequires:  gmp-devel
 BuildRequires:  kdebase4-workspace-devel
@@ -33,7 +34,7 @@
 License:GPL-2.0+
 Group:  Productivity/Scientific/Math
 Url:http://www.kde.org
-Version:4.8.0
+Version:4.8.1
 Release:0
 Source0:kcalc-%version.tar.bz2
 Patch:  4_7_BRANCH.diff

++ kcalc-4.8.0.tar.bz2 - kcalc-4.8.1.tar.bz2 ++
Files old/kcalc-4.8.0/doc/index.cache.bz2 and 
new/kcalc-4.8.1/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcalc-4.8.0/kcalc.desktop 
new/kcalc-4.8.1/kcalc.desktop
--- old/kcalc-4.8.0/kcalc.desktop   2012-01-10 15:18:40.0 +0100
+++ new/kcalc-4.8.1/kcalc.desktop   2012-02-29 23:57:37.0 +0100
@@ -136,6 +136,7 @@
 GenericName[tg]=Мошинаи ҳисобкунаки Илмӣ
 GenericName[th]=เครื่องคิดเลขทางวิทยาศาสตร์
 GenericName[tr]=Bilimsel Hesap Makinesi
+GenericName[ug]=ئىلمىي ھېسابلىغۇچ
 GenericName[uk]=Калькулятор для науковців
 GenericName[uz]=Ilmiy kalkulyator
 GenericName[uz@cyrillic]=Илмий калкулятор

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



commit kbruch for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kbruch for openSUSE:Factory checked 
in at 2012-03-12 20:13:54

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


Package is kbruch, Maintainer is kbruch

Changes:

--- /work/SRC/openSUSE:Factory/kbruch/kbruch.changes2012-01-30 
12:24:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.kbruch.new/kbruch.changes   2012-03-12 
20:14:20.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:55 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kbruch-4.8.0.tar.bz2

New:

  kbruch-4.8.1.tar.bz2



Other differences:
--
++ kbruch.spec ++
--- /var/tmp/diff_new_pack.SHE2OY/_old  2012-03-12 20:14:21.0 +0100
+++ /var/tmp/diff_new_pack.SHE2OY/_new  2012-03-12 20:14:21.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kbruch
 BuildRequires:  boost-devel
 BuildRequires:  freeglut-devel
@@ -45,7 +46,7 @@
 BuildRequires:  ocaml
 BuildRequires:  ocaml-facile
 %endif
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Excercise Fractions
 License:GPL-2.0+

++ kbruch-4.8.0.tar.bz2 - kbruch-4.8.1.tar.bz2 ++
Files old/kbruch-4.8.0/doc/index.cache.bz2 and 
new/kbruch-4.8.1/doc/index.cache.bz2 differ

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



commit kcharselect for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kcharselect for openSUSE:Factory 
checked in at 2012-03-12 20:14:07

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kcharselect/kcharselect.changes  2012-01-30 
12:24:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.kcharselect.new/kcharselect.changes 
2012-03-12 20:14:23.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:13:03 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kcharselect-4.8.0.tar.bz2

New:

  kcharselect-4.8.1.tar.bz2



Other differences:
--
++ kcharselect.spec ++
--- /var/tmp/diff_new_pack.VDxNQk/_old  2012-03-12 20:14:24.0 +0100
+++ /var/tmp/diff_new_pack.VDxNQk/_new  2012-03-12 20:14:24.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kcharselect
 BuildRequires:  gmp-devel
 BuildRequires:  kdebase4-workspace-devel
@@ -33,7 +34,7 @@
 Summary:KDE Character Selector
 License:GPL-2.0+
 Group:  Productivity/Other
-Version:4.8.0
+Version:4.8.1
 Release:0
 Source0:kcharselect-%version.tar.bz2
 Patch:  4_7_BRANCH.diff

++ kcharselect-4.8.0.tar.bz2 - kcharselect-4.8.1.tar.bz2 ++
Files old/kcharselect-4.8.0/doc/index.cache.bz2 and 
new/kcharselect-4.8.1/doc/index.cache.bz2 differ

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



commit kate for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kate for openSUSE:Factory checked in 
at 2012-03-12 20:13:48

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kate/kate.changes2012-01-27 
15:18:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.kate.new/kate.changes   2012-03-12 
20:14:16.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:12:52 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kate-4.8.0.tar.bz2

New:

  kate-4.8.1.tar.bz2



Other differences:
--
++ kate.spec ++
--- /var/tmp/diff_new_pack.UkQqpy/_old  2012-03-12 20:14:19.0 +0100
+++ /var/tmp/diff_new_pack.UkQqpy/_new  2012-03-12 20:14:19.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kate
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Advanced Text Editor
 License:GPL-2.0+
@@ -148,8 +148,8 @@
 Summary:KDE Text Editor
 Group:  Productivity/Editors/Other
 Requires:   libktexteditor = %{version}
-Provides:   kdebase3:/opt/kde3/bin/kwrite
 Provides:   kde4-kwrite = 4.3.0
+Provides:   kdebase3:/opt/kde3/bin/kwrite
 Obsoletes:  kde4-kwrite  4.3.0
 %kde4_runtime_requires
 

++ kate-4.8.0.tar.bz2 - kate-4.8.1.tar.bz2 ++
Files old/kate-4.8.0/doc/kate/index.cache.bz2 and 
new/kate-4.8.1/doc/kate/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kate-4.8.0/doc/kate/vi.docbook 
new/kate-4.8.1/doc/kate/vi.docbook
--- old/kate-4.8.0/doc/kate/vi.docbook  2011-12-20 20:12:15.0 +0100
+++ new/kate-4.8.1/doc/kate/vi.docbook  2012-02-29 23:56:34.0 +0100
@@ -3,8 +3,9 @@
 chapterinfo
 authorgroupauthor
 Erlend.Hamberg; Erlend.Hamberg.mail;
-/author/authorgroup
+/author
 !-- TRANS:ROLES_OF_TRANSLATORS --
+/authorgroup
 /chapterinfo
 
 titleThe VI Input Mode/title
Files old/kate-4.8.0/doc/kwrite/index.cache.bz2 and 
new/kate-4.8.1/doc/kwrite/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kate-4.8.0/doc/kwrite/menus.docbook 
new/kate-4.8.1/doc/kwrite/menus.docbook
--- old/kate-4.8.0/doc/kwrite/menus.docbook 2011-11-17 21:56:49.0 
+0100
+++ new/kate-4.8.1/doc/kwrite/menus.docbook 2012-02-29 23:56:34.0 
+0100
@@ -508,7 +508,9 @@
 listitem
 paraDisplays the Katepart command line at the bottom of the window.
 In the command line, type userinputhelp/userinput to get help and 
userinputhelp list/userinput
-to get a list of commands./para
+to get a list of commands.  For more information on the command line, see
+ulink url=help:/kate/advanced-editing-tools-commandline.htmlThe Editor
+Component Command Line/ulink./para
 /listitem
 /varlistentry
 
@@ -518,7 +520,7 @@
 /menuchoice (Power user mode)/term
 listitemparaThis opens a tool view that allows you to run Javascript code
 interactively. For more information, see
-ulink url=help:/kate/index.html#advanced-editing-tools-scriptingExtending 
kate; with Scripts/ulink
+ulink url=help:/kate/advanced-editing-tools-scripting.htmlExtending kate; 
with Scripts/ulink
 /para/listitem
 /varlistentry
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kate-4.8.0/kate/data/kate.desktop 
new/kate-4.8.1/kate/data/kate.desktop
--- old/kate-4.8.0/kate/data/kate.desktop   2012-01-18 19:49:16.0 
+0100
+++ new/kate-4.8.1/kate/data/kate.desktop   2012-02-29 23:56:34.0 
+0100
@@ -1,5 +1,6 @@
 [Desktop Entry]
 GenericName=Advanced Text Editor
+GenericName[ar]=محرر نصوص متقدّم
 GenericName[ast]=Editor de testu avanzáu
 GenericName[bg]=Усъвършенстван текстов редактор
 GenericName[bs]=Napredni uređivač teksta
@@ -55,6 +56,7 @@
 GenericName[zh_CN]=高级文本编辑器
 GenericName[zh_TW]=進階文字編輯器
 Name=Kate
+Name[ar]=كيت
 Name[ast]=Kate
 Name[be]=Kate
 Name[bg]=Kate
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kate-4.8.0/kate/data/kateplugin.desktop 
new/kate-4.8.1/kate/data/kateplugin.desktop
--- old/kate-4.8.0/kate/data/kateplugin.desktop 2012-01-18 19:49:16.0 
+0100
+++ new/kate-4.8.1/kate/data/kateplugin.desktop 2012-02-29 23:56:34.0 
+0100
@@ -3,6 +3,7 @@
 X-KDE-ServiceType=Kate/Plugin
 X-KDE-Derived=
 Comment=Kate Plugin
+Comment[ar]=Kate ملحق
 Comment[ast]=Complementu de Kate
 Comment[bg]=Приставка за Kate
 Comment[bs]=Priključak za Kejt
diff -urN '--exclude=CVS' 

commit kcolorchooser for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kcolorchooser for openSUSE:Factory 
checked in at 2012-03-12 20:14:20

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kcolorchooser/kcolorchooser.changes  
2012-01-27 15:18:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.kcolorchooser.new/kcolorchooser.changes 
2012-03-12 20:14:29.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:13:06 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kcolorchooser-4.8.0.tar.bz2

New:

  kcolorchooser-4.8.1.tar.bz2



Other differences:
--
++ kcolorchooser.spec ++
--- /var/tmp/diff_new_pack.RbOYWE/_old  2012-03-12 20:14:30.0 +0100
+++ /var/tmp/diff_new_pack.RbOYWE/_new  2012-03-12 20:14:30.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kcolorchooser
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Color Chooser
 License:MIT

++ kcolorchooser-4.8.0.tar.bz2 - kcolorchooser-4.8.1.tar.bz2 ++

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



commit kdeadmin4 for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kdeadmin4 for openSUSE:Factory 
checked in at 2012-03-12 20:14:30

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdeadmin4/kdeadmin4.changes  2012-01-27 
15:20:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdeadmin4.new/kdeadmin4.changes 2012-03-12 
20:14:32.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:13:10 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kdeadmin-4.8.0.tar.bz2

New:

  kdeadmin-4.8.1.tar.bz2



Other differences:
--
++ kdeadmin4.spec ++
--- /var/tmp/diff_new_pack.T6F5wm/_old  2012-03-12 20:14:33.0 +0100
+++ /var/tmp/diff_new_pack.T6F5wm/_new  2012-03-12 20:14:33.0 +0100
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kdeadmin4
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:KDEadmin base package
 License:GPL-2.0+

++ kdeadmin-4.8.0.tar.bz2 - kdeadmin-4.8.1.tar.bz2 ++
Files old/kdeadmin-4.8.0/doc/kcron/index.cache.bz2 and 
new/kdeadmin-4.8.1/doc/kcron/index.cache.bz2 differ
Files old/kdeadmin-4.8.0/doc/ksystemlog/index.cache.bz2 and 
new/kdeadmin-4.8.1/doc/ksystemlog/index.cache.bz2 differ
Files old/kdeadmin-4.8.0/doc/kuser/index.cache.bz2 and 
new/kdeadmin-4.8.1/doc/kuser/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.8.0/kcron/src/kcm_cron.desktop 
new/kdeadmin-4.8.1/kcron/src/kcm_cron.desktop
--- old/kdeadmin-4.8.0/kcron/src/kcm_cron.desktop   2012-01-18 
19:50:19.0 +0100
+++ new/kdeadmin-4.8.1/kcron/src/kcm_cron.desktop   2012-03-01 
00:04:25.0 +0100
@@ -139,12 +139,14 @@
 X-KDE-Keywords[ia]=cron,crontab,planificate,cargas,carga,planifica,vixie
 X-KDE-Keywords[it]=cron,crontab,piano,compiti,compito,pianificare,vixie
 X-KDE-Keywords[kk]=cron,crontab,scheduled,tasks,task,schedule,vixie
+X-KDE-Keywords[ko]=cron,crontab,scheduled,tasks,task,schedule,vixie,작업,예약,예약된 
작업
 X-KDE-Keywords[nb]=cron,crontab,planlagt,oppgaver,oppgave,plan,vixie
 X-KDE-Keywords[nds]=cron,Opgaav,Opgaven,Opgaventabell,plaant,Plaan,vixie
 X-KDE-Keywords[nl]=cron,crontab,gepland,taken,taak,planning,vixie
 X-KDE-Keywords[pl]=cron,crontab,program_planujący,zadania,zadanie,planuj,vixie
 X-KDE-Keywords[pt]=cron,crontab,agendadas,tarefas,tarefa,agendar,vixie
 X-KDE-Keywords[pt_BR]=cron,crontab,agendadas,tarefas,tarefa,agendar,vixie
+X-KDE-Keywords[sk]=cron,crontab,plánované,úlohy,úloha,plánovanie,vixie
 
X-KDE-Keywords[sr]=cron,crontab,scheduled,tasks,task,schedule,vixie,крон,кронтаб,распоред,задаци,распоређен
 
X-KDE-Keywords[sr@ijekavian]=cron,crontab,scheduled,tasks,task,schedule,vixie,крон,кронтаб,распоред,задаци,распоређен
 
X-KDE-Keywords[sr@ijekavianlatin]=cron,crontab,scheduled,tasks,task,schedule,vixie,cron,crontab,raspored,zadaci,raspoređen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.8.0/ksystemlog/src/ksystemlog.desktop 
new/kdeadmin-4.8.1/ksystemlog/src/ksystemlog.desktop
--- old/kdeadmin-4.8.0/ksystemlog/src/ksystemlog.desktop2011-09-26 
13:20:47.0 +0200
+++ new/kdeadmin-4.8.1/ksystemlog/src/ksystemlog.desktop2012-03-01 
00:04:25.0 +0100
@@ -154,6 +154,7 @@
 GenericName[pt_BR]=Visualizador do registros do sistema
 GenericName[ro]=Vizualizator jurnale de sistem
 GenericName[ru]=Средство просмотра системных журналов
+GenericName[sk]=Prehliadač záznamov systému
 GenericName[sr]=Приказивач системског дневника
 GenericName[sr@ijekavian]=Приказивач системског дневника
 GenericName[sr@ijekavianlatin]=Prikazivač sistemskog dnevnika
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeadmin-4.8.0/system-config-printer-kde/system-config-printer-kde.desktop 
new/kdeadmin-4.8.1/system-config-printer-kde/system-config-printer-kde.desktop
--- 
old/kdeadmin-4.8.0/system-config-printer-kde/system-config-printer-kde.desktop  
2012-01-18 19:50:19.0 +0100
+++ 
new/kdeadmin-4.8.1/system-config-printer-kde/system-config-printer-kde.desktop  
2012-03-01 00:04:25.0 +0100
@@ -136,12 +136,14 @@
 X-KDE-Keywords[ia]=imprimitor,imprimitores,imprimente
 X-KDE-Keywords[it]=stampante,stampanti,stampare
 X-KDE-Keywords[kk]=printer,printers,printing
+X-KDE-Keywords[ko]=printer,printers,printing,프린터,인쇄

commit kde4-printer-applet for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kde4-printer-applet for 
openSUSE:Factory checked in at 2012-03-12 20:14:25

Comparing /work/SRC/openSUSE:Factory/kde4-printer-applet (Old)
 and  /work/SRC/openSUSE:Factory/.kde4-printer-applet.new (New)


Package is kde4-printer-applet, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kde4-printer-applet/kde4-printer-applet.changes  
2012-02-03 10:23:21.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.kde4-printer-applet.new/kde4-printer-applet.changes 
2012-03-12 20:14:30.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:26:51 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  printer-applet-4.8.0.tar.bz2

New:

  printer-applet-4.8.1.tar.bz2



Other differences:
--
++ kde4-printer-applet.spec ++
--- /var/tmp/diff_new_pack.DBSPqa/_old  2012-03-12 20:14:31.0 +0100
+++ /var/tmp/diff_new_pack.DBSPqa/_new  2012-03-12 20:14:31.0 +0100
@@ -15,13 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kde4-printer-applet
-Version:4.8.0
+Version:4.8.1
 Release:0
-License:GPL-2.0+
 Summary:System tray utility to show current print jobs
-Url:http://www.kde.org
+License:GPL-2.0+
 Group:  Productivity/Other
+Url:http://www.kde.org
 Source0:printer-applet-%{version}.tar.bz2
 Patch0: 4_7_BRANCH.diff
 BuildRequires:  kdebase4-workspace-devel

++ printer-applet-4.8.0.tar.bz2 - printer-applet-4.8.1.tar.bz2 ++
Files old/printer-applet-4.8.0/doc/index.cache.bz2 and 
new/printer-applet-4.8.1/doc/index.cache.bz2 differ

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



commit kdebase4 for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kdebase4 for openSUSE:Factory 
checked in at 2012-03-12 20:14:35

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4/kdebase4.changes2012-01-27 
15:20:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdebase4.new/kdebase4.changes   2012-03-12 
20:14:40.0 +0100
@@ -1,0 +2,11 @@
+Mon Mar  5 14:38:22 UTC 2012 - vdziewie...@suse.com
+
+- add Provides: browser(npapi) FATE#313084
+
+---
+Fri Mar  2 23:13:51 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kde-baseapps-4.8.0.tar.bz2

New:

  kde-baseapps-4.8.1.tar.bz2



Other differences:
--
++ kdebase4.spec ++
--- /var/tmp/diff_new_pack.ZcWWgy/_old  2012-03-12 20:14:41.0 +0100
+++ /var/tmp/diff_new_pack.ZcWWgy/_new  2012-03-12 20:14:41.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdebase4
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:The Base KDE Apps
 License:GPL-2.0+
@@ -43,6 +43,7 @@
 BuildRequires:  pciutils-devel
 BuildRequires:  xine-devel
 BuildRequires:  pkgconfig(libxklavier)
+Provides:   browser(npapi)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %kde4_runtime_requires
 

++ kde-baseapps-4.8.0.tar.bz2 - kde-baseapps-4.8.1.tar.bz2 ++
 9088 lines of diff (skipped)

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



commit kdebase4-runtime for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-runtime for 
openSUSE:Factory checked in at 2012-03-12 20:14:41

Comparing /work/SRC/openSUSE:Factory/kdebase4-runtime (Old)
 and  /work/SRC/openSUSE:Factory/.kdebase4-runtime.new (New)


Package is kdebase4-runtime, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-runtime/kdebase4-runtime.changes
2012-01-31 10:20:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdebase4-runtime.new/kdebase4-runtime.changes   
2012-03-12 20:14:43.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:15:39 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kde-runtime-4.8.0.tar.bz2

New:

  kde-runtime-4.8.1.tar.bz2



Other differences:
--
++ kdebase4-runtime.spec ++
--- /var/tmp/diff_new_pack.nAGSSU/_old  2012-03-12 20:14:45.0 +0100
+++ /var/tmp/diff_new_pack.nAGSSU/_new  2012-03-12 20:14:45.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdebase4-runtime
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:The KDE Runtime Components
 License:GPL-2.0+
@@ -65,7 +65,6 @@
 PreReq: permissions
 Requires:   dbus-1-x11
 Requires:   kdelibs4 = %{version}
-Requires:   libqt4-x11 = %( echo `rpm -q --queryformat '%{VERSION}' 
libqt4-x11`)
 Requires:   oxygen-icon-theme = 4.6.40
 Requires:   phonon
 Requires:   soprano-backend-redland
@@ -376,6 +375,7 @@
 %{_kde4_modulesdir}/nepomukstorage.so
 %{_kde4_libdir}/libnepomukcommon.so
 %{_kde4_libdir}/libnepomukdatamanagement.so
+%{_kde4_libdir}/libnepomukdatamanagement.so.4*
 %{_kde4_libdir}/libnepomuksync.so
 
 # --- plasma ---
@@ -430,6 +430,7 @@
 %{_kde4_appsdir}/kcm_phonon
 %{_kde4_appsdir}/kconf_update/devicepreference.upd
 %{_kde4_appsdir}/kconf_update/kuriikwsfilter.upd
+%{_kde4_appsdir}/kconf_update/nepomukstrigiservice-migrate.upd
 %{_kde4_appsdir}/kde/kde.notifyrc
 %{_kde4_appsdir}/kglobalaccel
 %{_kde4_appsdir}/khelpcenter


++ kde-runtime-4.8.0.tar.bz2 - kde-runtime-4.8.1.tar.bz2 ++
 2541 lines of diff (skipped)


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



commit kdebase4-wallpapers for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-wallpapers for 
openSUSE:Factory checked in at 2012-03-12 20:14:48

Comparing /work/SRC/openSUSE:Factory/kdebase4-wallpapers (Old)
 and  /work/SRC/openSUSE:Factory/.kdebase4-wallpapers.new (New)


Package is kdebase4-wallpapers, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-wallpapers/kdebase4-wallpapers.changes  
2012-01-27 15:20:23.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdebase4-wallpapers.new/kdebase4-wallpapers.changes 
2012-03-12 20:14:51.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:16:06 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  kde-wallpapers-4.8.0.tar.bz2

New:

  kde-wallpapers-4.8.1.tar.bz2



Other differences:
--
++ kdebase4-wallpapers.spec ++
--- /var/tmp/diff_new_pack.dvZwkK/_old  2012-03-12 20:14:54.0 +0100
+++ /var/tmp/diff_new_pack.dvZwkK/_new  2012-03-12 20:14:54.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdebase4-wallpapers
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:KDE 4 Wallpapers
 License:LGPL-3.0+

++ kde-wallpapers-4.8.0.tar.bz2 - kde-wallpapers-4.8.1.tar.bz2 ++
/work/SRC/openSUSE:Factory/kdebase4-wallpapers/kde-wallpapers-4.8.0.tar.bz2 
/work/SRC/openSUSE:Factory/.kdebase4-wallpapers.new/kde-wallpapers-4.8.1.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 kdebase4-workspace for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-workspace for 
openSUSE:Factory checked in at 2012-03-12 20:14:55

Comparing /work/SRC/openSUSE:Factory/kdebase4-workspace (Old)
 and  /work/SRC/openSUSE:Factory/.kdebase4-workspace.new (New)


Package is kdebase4-workspace, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-workspace/kdebase4-workspace.changes
2012-02-28 14:13:46.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdebase4-workspace.new/kdebase4-workspace.changes   
2012-03-12 20:14:57.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:16:32 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---
--- /work/SRC/openSUSE:Factory/kdebase4-workspace/python-kdebase4.changes   
2012-01-31 10:21:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdebase4-workspace.new/python-kdebase4.changes  
2012-03-12 20:14:57.0 +0100
@@ -1,0 +2,11 @@
+Fri Mar  2 23:16:32 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---
+Mon Feb 27 20:46:29 CET 2012 - dmuel...@suse.de
+
+- require the right version of kactivities4 to avoid crashes 
+
+---

Old:

  kde-workspace-4.8.0.tar.bz2

New:

  kde-workspace-4.8.1.tar.bz2
  kdm_plymouth.patch



Other differences:
--
++ kdebase4-workspace.spec ++
--- /var/tmp/diff_new_pack.l1KYKt/_old  2012-03-12 20:15:00.0 +0100
+++ /var/tmp/diff_new_pack.l1KYKt/_new  2012-03-12 20:15:00.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   kdebase4-workspace
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:The KDE Workspace Components
 License:GPL-2.0+
@@ -97,6 +97,10 @@
 Patch201:   plasma-notifications-kill-timer.diff
 Patch202:   plasma-disable-networkmanager.diff
 Patch211:   disable-python-support.diff
+# Patch from Fedora to enable plymouth support in KDM. 
+# Patch is based on the changes within GDM to detect running plymouth 
+# and issue a quit to the plymouth daemon
+Patch400:   kdm_plymouth.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %suse_version  1200
@@ -328,6 +332,7 @@
 %patch201 -p1
 %patch202 -p1
 %patch211
+%patch400 -p0
 cp %{SOURCE3} kwin/effects/cube/data/cubecap.png
 
 %build

++ python-kdebase4.spec ++
--- /var/tmp/diff_new_pack.l1KYKt/_old  2012-03-12 20:15:00.0 +0100
+++ /var/tmp/diff_new_pack.l1KYKt/_new  2012-03-12 20:15:00.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-kdebase4
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Python bindings for KDE 4 desktop shell
 License:GPL-2.0+

++ kde-workspace-4.8.0.tar.bz2 - kde-workspace-4.8.1.tar.bz2 ++
/work/SRC/openSUSE:Factory/kdebase4-workspace/kde-workspace-4.8.0.tar.bz2 
/work/SRC/openSUSE:Factory/.kdebase4-workspace.new/kde-workspace-4.8.1.tar.bz2 
differ: char 11, line 1

++ kdm_plymouth.patch ++
--- kdm/backend/dm.c2011-09-06 16:09:17.0 +0200
+++ kdm/backend/dm.c2011-09-07 16:23:59.017135854 +0200
@@ -1347,6 +1347,81 @@
 return activeVTs;
 }
 
+static int
+get_active_vt (void)
+{
+int console_fd;
+struct vt_stat console_state = { 0 };
+console_fd = open (/dev/tty0, O_RDONLY | O_NOCTTY);
+if (console_fd  0) {
+goto out;
+}
+if (ioctl (console_fd, VT_GETSTATE, console_state)  0) {
+goto out;
+}
+out:
+if (console_fd = 0) {
+close (console_fd);
+}
+return console_state.v_active;
+}
+
+static int
+plymouth_is_running (void)
+{
+int status;
+status = system (/bin/plymouth --ping);
+
+return WIFEXITED (status)  WEXITSTATUS (status) == 0;
+}
+
+static int
+plymouth_has_active_vt (void)
+{
+int status;
+status = system (/bin/plymouth --has-active-vt);
+
+return WIFEXITED (status)  WEXITSTATUS (status) == 0;
+}
+
+static int
+plymouth_prepare_for_transition (void)
+{
+int status;
+status = system (/bin/plymouth deactivate);
+
+return WIFEXITED (status)  WEXITSTATUS (status) == 0;
+}
+
+int
+plymouth_quit_with_transition (void)
+{
+int status;
+status = system (/bin/plymouth quit --retain-splash);
+
+return WIFEXITED (status)  WEXITSTATUS (status) == 0;
+}
+
+static int
+plymouth_quit_without_transition (void)

commit kdebindings-smokegen for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kdebindings-smokegen for 
openSUSE:Factory checked in at 2012-03-12 20:15:01

Comparing /work/SRC/openSUSE:Factory/kdebindings-smokegen (Old)
 and  /work/SRC/openSUSE:Factory/.kdebindings-smokegen.new (New)


Package is kdebindings-smokegen, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/kdebindings-smokegen/kdebindings-smokegen.changes
2012-01-27 15:20:26.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdebindings-smokegen.new/kdebindings-smokegen.changes
   2012-03-12 20:15:07.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:27:32 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  smokegen-4.8.0.tar.bz2

New:

  smokegen-4.8.1.tar.bz2



Other differences:
--
++ kdebindings-smokegen.spec ++
--- /var/tmp/diff_new_pack.7vXYky/_old  2012-03-12 20:15:08.0 +0100
+++ /var/tmp/diff_new_pack.7vXYky/_new  2012-03-12 20:15:08.0 +0100
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kdebindings-smokegen
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Smoke Generator for kdebindings
 License:GPL-2.0

++ smokegen-4.8.0.tar.bz2 - smokegen-4.8.1.tar.bz2 ++

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



commit kdebindings-smokekde for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kdebindings-smokekde for 
openSUSE:Factory checked in at 2012-03-12 20:15:05

Comparing /work/SRC/openSUSE:Factory/kdebindings-smokekde (Old)
 and  /work/SRC/openSUSE:Factory/.kdebindings-smokekde.new (New)


Package is kdebindings-smokekde, Maintainer is 

Changes:

--- 
/work/SRC/openSUSE:Factory/kdebindings-smokekde/kdebindings-smokekde.changes
2012-01-30 12:24:51.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdebindings-smokekde.new/kdebindings-smokekde.changes
   2012-03-12 20:15:08.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar  2 23:27:36 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for 
details
+
+---

Old:

  smokekde-4.8.0.tar.bz2

New:

  smokekde-4.8.1.tar.bz2



Other differences:
--
++ kdebindings-smokekde.spec ++
--- /var/tmp/diff_new_pack.tganmI/_old  2012-03-12 20:15:10.0 +0100
+++ /var/tmp/diff_new_pack.tganmI/_new  2012-03-12 20:15:10.0 +0100
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kdebindings-smokekde
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Kdebindings Smoke-kde library
 License:LGPL-2.1+

++ smokekde-4.8.0.tar.bz2 - smokekde-4.8.1.tar.bz2 ++

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



commit kinput2 for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package kinput2 for openSUSE:Factory checked 
in at 2012-03-12 20:15:09

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


Package is kinput2, Maintainer is lzw...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/kinput2/kinput2.changes  2011-12-25 
17:35:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.kinput2.new/kinput2.changes 2012-03-12 
20:15:11.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 28 12:54:11 CET 2012 - ti...@suse.de
+
+- fix filelist to build properly on FACTORY
+
+---



Other differences:
--
++ kinput2.spec ++
--- /var/tmp/diff_new_pack.78wjoL/_old  2012-03-12 20:15:12.0 +0100
+++ /var/tmp/diff_new_pack.78wjoL/_new  2012-03-12 20:15:12.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kinput2
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   kinput2
 BuildRequires:  canna-devel
 BuildRequires:  fwnndev
@@ -117,7 +118,7 @@
 %dir /etc/X11/xim.d/
 /etc/X11/xim.d/*
 %{xbindir}/*
-%config %{appdefdir}/app-defaults/Kinput2
+%config %{appdefdir}/app-defaults
 %doc %{xmandir}/*/*
 %dir %{xprefix}/lib/X11/ccdef/
 %{xprefix}/lib/X11/ccdef/*

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



commit ktorrent for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package ktorrent for openSUSE:Factory 
checked in at 2012-03-12 20:15:13

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


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

Changes:

--- /work/SRC/openSUSE:Factory/ktorrent/ktorrent.changes2012-01-30 
12:26:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.ktorrent.new/ktorrent.changes   2012-03-12 
20:15:15.0 +0100
@@ -1,0 +2,57 @@
+Tue Mar  6 10:51:32 UTC 2012 - m...@suse.com
+
+- Update to version 4.2.0, also lists changes what changed in rc1
+  * Add new group switcher combobox in toolbar
+  * Make kio-magnet optional
+  * Improve handing magnet uris in search plugin
+  * Fix bug causing kio-magnet to deselect all files
+  * Close current scan widget when a new one is started for a torrent
+  * Fix syndication plugin not handling relative urls properly
+  * Fix magnet uri's not being handled properly in load torrent feature of 
webinterface
+  * Make it possible to check individual files of a torrent
+  * Data checks for multiple torrents can now get started at the same time
+  * Make links clickable in the status tab comments field
+  * Revamp UPnP plugin
+  * Fix bug making it possible to add conflicting items to the schedule
+  * Make it possible for schedule items to span multiple days
+  * Include disk usage of existing files when calculating bytes left after 
download in FileSelectDlg
+  * Disable scripts in GUI, if no interpreter could be found for the script
+  * Show shutdown plugin's config dialog when no rules are present and the 
enable button is pressed
+  * Make it possible to wait for several events before activating the shutdown 
action
+  * Fix wrong required diskspace calculation in some rare circumstances
+  * Revamp scanfolder plugin
+  * Revamp GUI of mediaplayer plugin
+  * Make properties extender a dialog
+  * Fix bug causing scripts not to be selectable in scripting plugin
+  * Show info hash in status tab
+  * Improve video streaming support
+  * Add Open With option to FileView context menu
+  * Fix bug causing views to not get properly restored when the application 
language changes
+  * Check if new trackers have a supported protocol
+  * Remove usage of several deprecated KDE3 networking classes
+  * Remove obsolete config options of datacheck during upload feature
+  * Improve error display of syndication plugin errors
+  * Remove multiple views support
+  * Relabel Change Tracker button into Switch Tracker to avoid user confusion
+  * Revamp IP filter widget
+  * Fix scanfolder moving to loaded directory causing a flurry of popups about 
the torrent already being loaded
+  * Only enable the infowidget plugin by default
+  * Add force start option
+  * Add torrent search bar for view
+  * Make it possible to hide uploads, downloads and not queued torrents in the 
queue manager
+  * Merge status and name column into one column and use icons to show the 
status
+  * Highlight in bold and scroll to newly added torrents
+  * Show torrent names in remove torrent and data confirmation dialog
+  * Enable select new location button when all non excluded files are missing 
instead of when all files are missing
+  * Hide chunkbar when download of stream is complete
+  * Suspend/resume queue when middle clicking on tray icon
+  * Use dbus to show ktorrent window from plasma applet
+  * Fix crash due to dangling pointer
+  * Always make already loaded message of a torrent a passive popup
+  * Make torrent properties dialog modal
+  * Allow i2p addresses as a custom ip in tracker announces
+  * Fix bug causing homepage of search plugin not the render properly
+- Refresh suse-dht-warning.diff
+- Drop out ktorrent-bug287309.patch since its included
+
+---

Old:

  ktorrent-4.1.3.tar.bz2
  ktorrent-bug287309.patch

New:

  ktorrent-4.2.0.tar.bz2



Other differences:
--
++ ktorrent.spec ++
--- /var/tmp/diff_new_pack.gjxSUx/_old  2012-03-12 20:15:17.0 +0100
+++ /var/tmp/diff_new_pack.gjxSUx/_new  2012-03-12 20:15:17.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   ktorrent
-Version:4.1.3
+Version:4.2.0
 Release:0
 Summary:KDE BitTorrent Client
 License:GPL-2.0+
@@ -34,13 +34,11 @@
 Patch1: suse-dht-warning.diff
 # PATCH-FIX-OPENSUSE initial-preference.diff cmorv...@yahoo.es -- 
InitialPreference to set it as the default torrent downloader
 Patch2: initial-preference.diff
-# PATCH-FIX-UPSTREAM ktorrent-bug287309.patch idoen...@suse.de -- Fix for 
kde#287309   

commit libxml2 for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package libxml2 for openSUSE:Factory checked 
in at 2012-03-12 20:15:24

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libxml2/libxml2.changes  2012-03-07 
20:09:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.libxml2.new/libxml2.changes 2012-03-12 
20:15:25.0 +0100
@@ -1,0 +2,7 @@
+Sun Mar 11 21:00:19 UTC 2012 - jeng...@medozas.de
+
+- libxml2-2 should not require libxml2-tools. There is no trouble
+  expected, since attempting to install libxml2 will already pull
+  in libxml2-tools due to Provides tags.
+
+---



Other differences:
--
++ libxml2.spec ++
--- /var/tmp/diff_new_pack.JfFwzw/_old  2012-03-12 20:15:27.0 +0100
+++ /var/tmp/diff_new_pack.JfFwzw/_new  2012-03-12 20:15:27.0 +0100
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 %define lname libxml2-2
 
 Name:   libxml2
@@ -55,10 +54,6 @@
 %package -n %lname
 Summary:A Library to Manipulate XML Files
 Group:  System/Libraries
-# this is technically not true, but all other suse versions and fedora 
-# have the tools in libxml2, so avoid too much trouble and always install
-# them for now
-Requires:   %name-tools
 
 %description -n %lname
 The XML C library was initially developed for the GNOME project. It is
@@ -79,7 +74,7 @@
 %package tools
 Summary:Tools using libxml
 Group:  System/Libraries
-Provides:   %name = %version
+Provides:   %name = %version-%release
 Obsoletes:  %name  2.7.8+git20120223
 
 %description tools

++ python-libxml2.spec ++
--- /var/tmp/diff_new_pack.JfFwzw/_old  2012-03-12 20:15:27.0 +0100
+++ /var/tmp/diff_new_pack.JfFwzw/_new  2012-03-12 20:15:27.0 +0100
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Name:   python-libxml2
 Version:2.7.8+git20120223
 Release:0

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



commit md5deep for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package md5deep for openSUSE:Factory checked 
in at 2012-03-12 20:15:33

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


Package is md5deep, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/md5deep/md5deep.changes  2012-02-01 
09:58:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.md5deep.new/md5deep.changes 2012-03-12 
20:15:46.0 +0100
@@ -1,0 +2,15 @@
+Thu Feb 23 12:49:44 UTC 2012 - elchev...@opensuse.org
+
+- Updated to version 4.1
+- Add smp_flags and optflags to make
+- update licente tag
+
+* New Features
+
+  Added expert mode option to parse Windows PE files
+
+* Bug Fixes
+
+  Fixed junction point handling on Win32 
+
+---

Old:

  md5deep-4.0.1.tar.gz

New:

  md5deep-4.1.tar.gz



Other differences:
--
++ md5deep.spec ++
--- /var/tmp/diff_new_pack.s587sr/_old  2012-03-12 20:15:48.0 +0100
+++ /var/tmp/diff_new_pack.s587sr/_new  2012-03-12 20:15:48.0 +0100
@@ -16,17 +16,16 @@
 #
 
 
-
 Name:   md5deep
-Version:4.0.1
+Version:4.1
 Release:0
-License:GPL-2.0+
 Summary:Compute MD5, SHA-1, SHA-256, Tiger or Whirlpool message digests
-Url:http://md5deep.sourceforge.net/
+License:SUSE-Public-Domain and GPL-2.0+
 Group:  System/Base
+Url:http://md5deep.sourceforge.net/
 Source0:%{name}-%{version}.tar.gz
-BuildRequires:  gcc-c++
 BuildRequires:  fdupes
+BuildRequires:  gcc-c++
 BuildRequires:  python
 BuildRequires:  python-devel
 Requires:   python
@@ -39,13 +38,13 @@
 hashes in a variety of formats.
 
 %prep
-%setup -q -n %{name}-%{version}
+%setup -q
 
 %build
 if test -x ./configure; then
  %configure
 fi
-make
+make %{?_smp_mflags} CFLAGS=%{optflags}
 
 %install
 
@@ -56,12 +55,6 @@
 # create hardlinks for the rest
 %fdupes %{buildroot}
 
-#%check
-#
-# look how to do the checks in future
-#cd tests
-#sh tests.sh
-
 %clean
 rm -rf %{buildroot}
 

++ md5deep-4.0.1.tar.gz - md5deep-4.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/md5deep-4.0.1/ChangeLog new/md5deep-4.1/ChangeLog
--- old/md5deep-4.0.1/ChangeLog 2012-01-22 18:10:36.0 +0100
+++ new/md5deep-4.1/ChangeLog   2012-02-10 14:32:04.0 +0100
@@ -1,3 +1,35 @@
+2012-02-10  Jesse Kornblum  resea...@jessekornblum.com:
+
+   * sample-hashes/sample.{c,jpg}: Added Windows executable with 
non-executable extension
+   * src/winpe.cpp, main.cpp, dig.cpp: Added comments
+   * configure.ac: Version bump to 4.1
+   * src/*.cpp: Added $Id$ tags
+
+2012-02-08  Jesse Kornblum  resea...@jessekornblum.com:
+
+   * src/dig.cpp, winpe.h, winpe.cpp, main.cpp: Added check for Windows PE 
files to expert mode.
+
+2012-01-30  Jesse Kornblum  resea...@jessekornblum.com:
+
+   * src/display.cpp: Reverted previous change, but updated test for 
presence of vasprintf.
+
+2012-01-29  Jesse Kornblum  resea...@jessekornblum.com:
+
+   * src/dig.cpp: Check for junction points before adding files to queue
+   * src/display.cpp: Removed redefinition of vasprintf. It is apparently 
now part of the compiler's stdio.h
+
+2012-01-28  Jesse Kornblum  resea...@jessekornblum.com:
+
+   * configure.ac: Version bump to 4.0.2-001
+
+2012-01-28  Simson Garfinkel  simsong@mucha
+
+   * src/display.cpp (display::dfxml_write): strange; sstream should have 
been stringstream. Well, it's fixed now.
+
+2012-01-23  Simson Garfinkel  simsong@Mucha.local
+
+   * src/helpers.cpp: successfully removed itos().
+
 2012-01-22  Jesse Kornblum  resea...@jessekornblum.com:
 
* src/threadpool.h: Removed debugging fprintf
@@ -25,7 +57,7 @@
* Makefile.am: Changed rule for converting man pages to Windows text 
files
 
 2012-01-06  Jesse Kornblum resea...@jessekornblum.com
-   
+
* configure.ac: Version bump to 4.0.0
* src/hashlist.cpp: Legibility changes only.
* doc/Makefile: Updating man page locations
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/md5deep-4.0.1/NEWS new/md5deep-4.1/NEWS
--- old/md5deep-4.0.1/NEWS  2012-01-22 18:10:36.0 +0100
+++ new/md5deep-4.1/NEWS2012-02-14 16:53:57.0 +0100
@@ -1,3 +1,15 @@
+** Changes in version 4.1.0 (14 Feb 2012)
+
+* New Features
+
+  Added expert mode option to parse Windows PE files
+
+* Bug Fixes
+
+  Fixed junction point handling on Win32
+
+
+
 ** Changes in version 4.0.1 (22 Jan 2012)
 
 * Bug Fixes
diff -urN '--exclude=CVS' 

commit monit for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package monit for openSUSE:Factory checked 
in at 2012-03-12 20:15:39

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


Package is monit, Maintainer is lmue...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/monit/monit.changes  2011-12-01 
12:24:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.monit.new/monit.changes 2012-03-12 
20:15:48.0 +0100
@@ -1,0 +2,42 @@
+Tue Mar  6 09:13:45 UTC 2012 - cfarr...@suse.com
+
+- license update: AGPL-3.0
+  My mistake - there is no entry for AGPL-3.0+ on spdx.org/licenses. The
+  only available one is AGPL-3.0 (without the plus)
+
+---
+Wed Feb 29 14:17:55 UTC 2012 - cfarr...@suse.com
+
+- license update: AGPL-3.0+
+  monit is AGPL-3.0 _not_ GPL-3.0
+
+---
+Wed Jan 25 23:34:26 UTC 2012 - pascal.ble...@opensuse.org
+
+- fix bnc#743289 by adding monit-dirs.patch to set the PIDDIR accordingly to
+  what is preset in the monitrc configuration (and in the spec file), as well
+  as to fix the default event directory
+
+---
+Wed Dec 21 08:26:20 UTC 2011 - pascal.ble...@opensuse.org
+
+- update to 5.3.2:
+  * fix bug #34801: the file content match test did reset of the read position
+in the case that the unmonitor or stop action was done. When the file
+monitoring was enabled again, the content match test was applied to the
+content which was tested already.
+  * log error details in the case that the name resolving failed
+  * fix the system cpu usage statistics when pattern based process check is
+used and the service is restarted
+  * Debian Bug#652715: include files not found warning: do not display the
+warning if the include directory is empty
+
+- create /var/run/monit in the init script on start (if needed), as /var/run is
+  on a volatile filesystem (tmpfs) since 12.1
+
+---
+Tue Dec 13 13:21:51 UTC 2011 - co...@suse.com
+
+- fix license to be in spdx.org format
+
+---

Old:

  monit-5.3.1.tar.gz

New:

  monit-5.3.2.tar.gz
  monit-dirs.patch



Other differences:
--
++ monit.spec ++
--- /var/tmp/diff_new_pack.3O47in/_old  2012-03-12 20:15:50.0 +0100
+++ /var/tmp/diff_new_pack.3O47in/_new  2012-03-12 20:15:50.0 +0100
@@ -1,7 +1,8 @@
 #
 # spec file for package monit
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+#   Pascal Bleser pascal.ble...@opensuse.org
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,24 +16,31 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   monit
-Version:5.3.1
-Release:1
+Version:5.3.2
+Release:0
 Summary:Service Manager and Monitor System
+License:AGPL-3.0
+Group:  System/Monitoring
 Source: http://mmonit.com/monit/dist/monit-%{version}.tar.gz
 Source1:monit-vendor-files.tar.gz
 Patch1: monit-page_shift.patch
 Patch2: monit-better_default_monitrc.patch
+Patch3: monit-dirs.patch
 Source99:   monit-rpmlintrc
 Url:http://mmonit.com/monit/download/
-Group:  System/Monitoring
-License:GNU General Public License (GPL)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  bison flex gcc glibc-devel make openssl-devel
-BuildRequires:  autoconf automake libtool
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  bison
+BuildRequires:  flex
+BuildRequires:  gcc
+BuildRequires:  glibc-devel
+BuildRequires:  libtool
+BuildRequires:  make
+BuildRequires:  openssl-devel
 Obsoletes:  monit-beta  %{version}
 Provides:   monit-beta = %{version}
 %if %{_vendor} == suse
@@ -53,7 +61,6 @@
 remote hosts: monit can ping a remote host and check port connections.
 
 %package doc
-License:GNU General Public License (GPL)
 Summary:Service Manager and Monitor System (Documentation and Examples)
 Group:  System/Monitoring
 %if 0%{?suse_version} = 1120
@@ -78,6 +85,14 @@
 %setup -q -a1
 %patch1
 %patch2
+%patch3
+%__perl -n -e 'print $1,\n if /^\+{3}\s+(\S+)/' %PATCH3 \
+| while read f; do
+%__perl -i -p -e '
+s,\Q@@PIDDIR@@\E,%{_var}/run/monit,g;

commit ncurses for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2012-03-12 20:15:44

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


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

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2012-03-07 
20:09:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2012-03-12 
20:15:51.0 +0100
@@ -1,0 +2,13 @@
+Mon Mar 12 12:17:31 UTC 2012 - wer...@suse.de
+
+- Add check_build script to avoid to stumble on gcc exception 32
+
+---
+Mon Mar 12 10:38:59 UTC 2012 - wer...@suse.de
+
+- Add ncurses patch 5.9.20120310
+  + fix some strict compiler warnings for abi6 and 64-bits.
+  + use begin_va_copy/end_va_copy macros in lib_printw.c (cf: 20120303).
+  + improve a limit-check in infocmp.c (Werner Fink)
+
+---

Old:

  ncurses-5.9-fortify.dif

New:

  check-build.sh



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.PMSOs9/_old  2012-03-12 20:15:53.0 +0100
+++ /var/tmp/diff_new_pack.PMSOs9/_new  2012-03-12 20:15:53.0 +0100
@@ -47,7 +47,6 @@
 Source6:edit.sed
 Source7:baselibs.conf
 Patch0: ncurses-%{version}.dif
-Patch1: ncurses-5.9-fortify.dif
 Patch3: ncurses-5.9-overwrite.dif
 Patch4: ncurses-5.7-tack.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -261,7 +260,6 @@
 tar Oxfj %{S:1} | patch -p1 -s
 tar  xfj %{S:5}
 mv tack-* tack
-%patch -P 1 -p0 -b .ovf
 %patch -P 3 -p0 -b .ow
 %patch -P 4 -p0 -b .hs
 %patch -P 0 -p0 -b .p0

++ check-build.sh ++
#!/bin/bash -e
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# This script use the following variable(s):
# 
# - $BUILD_BASENAME
#

: ${BUILD_BASENAME:=$(uname -m)}

kernel_version()
{
echo $((($116)+($28)+($3)))
}
kernel_string()
{
echo $((($116)0xff)).$((($18)0xff)).$(($10xff))
}

typeset -i major minor level version required
IFS=' .-' read -t 10 name dummy major minor level rest  /proc/version || exit 1
let version=$(((major16)+(minor8)+(level)))
unset name dummy major minor level rest

case $BUILD_BASENAME in
   *x86_64*) let required=$(kernel_version 2 6 32) ;;   # gcc exception 32
   *)let required=$(kernel_version 2 6 16) ;;
esac

if ((versionrequired)) ; then
echo FATAL: kernel too old, need kernel = $(kernel_string required) for 
this package 12
exit 1
fi

#
# Success
#
exit 0
++ ncurses-5.9-patches.tar.bz2 ++
 1877 lines of diff (skipped)

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



commit OpenLP for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package OpenLP for openSUSE:Factory checked 
in at 2012-03-12 20:15:50

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


Package is OpenLP, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/OpenLP/OpenLP.changes2012-03-09 
21:24:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.OpenLP.new/OpenLP.changes   2012-03-12 
20:15:54.0 +0100
@@ -1,0 +2,13 @@
+Sun Mar 11 02:43:12 UTC 2012 - jdmul...@gmail.com
+
+- Changed download_files service mode to localonly to comply with
+  Factory rules
+
+---
+Tue Mar  6 03:45:05 UTC 2012 - jdmul...@gmail.com
+
+- Added openlp-1.9.8-impress-segfault-backport.patch which
+  backports fix from upstream to bnc#748241.
+  Patch can be removed in the next release from upstream
+
+---

New:

  _service
  openlp-1.9.8-impress-segfault-backport.patch



Other differences:
--
++ OpenLP.spec ++
--- /var/tmp/diff_new_pack.hk9gjn/_old  2012-03-12 20:15:56.0 +0100
+++ /var/tmp/diff_new_pack.hk9gjn/_new  2012-03-12 20:15:56.0 +0100
@@ -11,13 +11,15 @@
 # case the license is the MIT License). An Open Source License is a
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
-#
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   OpenLP
 Version:1.9.8
-Release:0
+Release:1
 License:GPL-2.0
 Summary:Open source Church presentation and lyrics projection 
application
 Url:http://openlp.org
@@ -26,6 +28,10 @@
 # PATCH-FIX-OPENSUSE uno-path.patch jdmu...@gmail.com
 # Patch to add appropriate entry to python search path so that 'import uno' 
works
 Patch0: uno-path.patch
+# PATCH-FIX-UPSTREAM openlp-1.9.8-impress-segfault-backport.patch 
jdmul...@gmail.com
+# Patch to fix segfault in openSUSE 12.2 (Factory) bnc#748241
+# Already fixed upstream (lp#902115). Patch can be removed as of OpenLP 1.9.9
+Patch1: openlp-1.9.8-impress-segfault-backport.patch
 BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes
 BuildRequires:  python-devel
@@ -64,6 +70,8 @@
 %patch0 -p1
 %endif
 
+%patch1 -p1
+
 %build
 python setup.py build
 

++ _service ++
services
  service name=download_files mode=localonly/
/services++ openlp-1.9.8-impress-segfault-backport.patch ++
Index: OpenLP-1.9.8/openlp/plugins/presentations/lib/impresscontroller.py
===
--- OpenLP-1.9.8.orig/openlp/plugins/presentations/lib/impresscontroller.py 
2012-03-05 22:35:56.0 -0500
+++ OpenLP-1.9.8/openlp/plugins/presentations/lib/impresscontroller.py  
2012-03-05 22:36:37.180964757 -0500
@@ -114,7 +114,6 @@ class ImpressController(PresentationCont
 cmd = get_uno_command()
 self.process = QtCore.QProcess()
 self.process.startDetached(cmd)
-self.process.waitForStarted()
 
 def get_uno_desktop(self):
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit perl-Text-CSV_XS for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package perl-Text-CSV_XS for 
openSUSE:Factory checked in at 2012-03-12 20:15:54

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


Package is perl-Text-CSV_XS, Maintainer is u...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Text-CSV_XS/perl-Text-CSV_XS.changes
2012-02-17 12:08:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Text-CSV_XS.new/perl-Text-CSV_XS.changes   
2012-03-12 20:15:57.0 +0100
@@ -1,0 +2,8 @@
+Sun Mar 11 19:20:16 UTC 2012 - co...@suse.com
+
+- updated to 0.87
+* Extra check on utf8 output (RT#74330)

   
+* examples/csvdiff now recognizes numerically sorted CSV files 

   
+* Document example comparing getline_hr vs bind_columns + getline  

   
+
+---

Old:

  Text-CSV_XS-0.86.tgz

New:

  Text-CSV_XS-0.87.tgz



Other differences:
--
++ perl-Text-CSV_XS.spec ++
--- /var/tmp/diff_new_pack.joSisJ/_old  2012-03-12 20:15:58.0 +0100
+++ /var/tmp/diff_new_pack.joSisJ/_new  2012-03-12 20:15:58.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Text-CSV_XS
-Version:0.86
+Version:0.87
 Release:0
 %define cpan_name Text-CSV_XS
 Summary:comma-separated values manipulation routines

++ Text-CSV_XS-0.86.tgz - Text-CSV_XS-0.87.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Text-CSV_XS-0.86/CSV_XS.pm 
new/Text-CSV_XS-0.87/CSV_XS.pm
--- old/Text-CSV_XS-0.86/CSV_XS.pm  2012-01-21 12:57:01.0 +0100
+++ new/Text-CSV_XS-0.87/CSV_XS.pm  2012-03-08 12:22:44.0 +0100
@@ -27,7 +27,7 @@
 use Carp;
 
 use vars   qw( $VERSION @ISA );
-$VERSION = 0.86;
+$VERSION = 0.87;
 @ISA = qw( DynaLoader );
 bootstrap Text::CSV_XS $VERSION;
 
@@ -1224,6 +1224,32 @@
 
 L/getline_hr will croak if called before L/column_names.
 
+Note that L/getline_hr creates a hashref for every row and might be much
+slower than the combined use of L/bind_columns and L/getline but still
+offering the same ease of use hashref inside the loop:
+
+ my @cols = @{$csv-getline ($io)};
+ $csv-column_names (@cols);
+ while (my $row = $csv-getline_hr ($io)) {
+ print $row-{price};
+ }
+
+Could easily be rewritten to the much faster:
+
+ my @cols = @{$csv-getline ($io)};
+ my $row = {};
+ $csv-bind_columns (\@{$row}{@cols});
+ while ($csv-getline ($io)) {
+ print $row-{price};
+ }
+
+Your mileage may vary for the size of the data and the numbers of rows, but 
+with perl-5.14.2 the difference is like for a 100_000 line file with 14 rows:
+
+Rate hashrefs getlines
+ hashrefs 1.00/s   -- -76%
+ getlines 4.15/s 313%   --
+
 =head2 getline_hr_all
 Xgetline_hr_all
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Text-CSV_XS-0.86/CSV_XS.xs 
new/Text-CSV_XS-0.87/CSV_XS.xs
--- old/Text-CSV_XS-0.86/CSV_XS.xs  2012-01-22 15:15:05.0 +0100
+++ new/Text-CSV_XS-0.87/CSV_XS.xs  2012-01-25 08:45:00.0 +0100
@@ -19,6 +19,7 @@
 #include ppport.h
 #if (PERL_BCDVERSION = 0x5005005)
 #  define sv_utf8_upgrade(sv)  /* no-op */
+#  define is_utf8_string(s,l)  0
 #  define SvUTF8_on(sv)/* no-op */
 #  define SvUTF8(sv)   0
 #  endif
@@ -601,7 +602,7 @@
PUSHs ((dst));
PUSHs (tmp);
PUTBACK;
-   if (csv-utf8)
+   if (csv-utf8  is_utf8_string (SvPV_nolen (tmp), 0))
SvUTF8_on (tmp);
result = call_sv (m_print, G_SCALAR | G_METHOD);
SPAGAIN;
@@ -617,7 +618,7 @@
sv_catpvn (SvRV (dst), csv-buffer, csv-used);
result = TRUE;
}
-if (csv-utf8  SvROK (dst))
+if (csv-utf8  SvROK (dst)  is_utf8_string (SvPV_nolen (SvRV (dst)), 
0))
SvUTF8_on (SvRV (dst));
 csv-used = 0;
 return result;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Text-CSV_XS-0.86/ChangeLog 
new/Text-CSV_XS-0.87/ChangeLog
--- old/Text-CSV_XS-0.86/ChangeLog  2012-01-22 15:49:10.0 +0100
+++ new/Text-CSV_XS-0.87/ChangeLog  2012-03-08 12:21:11.0 +0100
@@ -1,3 +1,8 @@
+0.87   - 

commit perl-Text-DelimMatch for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package perl-Text-DelimMatch for 
openSUSE:Factory checked in at 2012-03-12 20:16:00

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


Package is perl-Text-DelimMatch, Maintainer is mrueck...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Text-DelimMatch/perl-Text-DelimMatch.changes
2011-11-21 12:48:46.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Text-DelimMatch.new/perl-Text-DelimMatch.changes
   2012-03-12 20:16:24.0 +0100
@@ -1,0 +2,6 @@
+Sun Mar 11 19:27:33 UTC 2012 - co...@suse.com
+
+- set version to what is in cpan, to avoid an annoying another
+  upstream version available warning
+
+---



Other differences:
--
++ perl-Text-DelimMatch.spec ++
--- /var/tmp/diff_new_pack.er88i9/_old  2012-03-12 20:16:27.0 +0100
+++ /var/tmp/diff_new_pack.er88i9/_new  2012-03-12 20:16:27.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Text-DelimMatch
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,18 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Text-DelimMatch
 %define module_name DelimMatch
 %define module_version 1.06
 Summary:DelimMatch for Locating Delimited Substrings with Proper 
Nesting
-Version:1.06a
-Release:82
-AutoReqProv:on
 License:Artistic-1.0
 Group:  Development/Libraries/Perl
+Version:1.06
+Release:0
 Source0:%{module_name}-1.06a.tar.gz
 Url:http://search.cpan.org/~nwalsh/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -38,12 +35,6 @@
 DelimMatch is a Perl 5 module that provides functions for locating
 delimited substrings with proper nesting.
 
-
-
-Authors:
-
-Norman Walsh n...@nwalsh.com
-
 %prep
 %setup -q -n %{module_name}-%{module_version}
 
@@ -58,9 +49,6 @@
 %perl_make_install
 %perl_process_packlist
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-, root, root)
 %doc  README

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



commit poedit for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package poedit for openSUSE:Factory checked 
in at 2012-03-12 20:16:09

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


Package is poedit, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/poedit/poedit.changes2011-09-23 
12:41:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.poedit.new/poedit.changes   2012-03-12 
20:16:36.0 +0100
@@ -1,0 +2,13 @@
+Sun Mar 11 18:16:09 UTC 2012 - lazy.k...@opensuse.org
+
+- Use wxWidgets defines.
+- Split off language package.
+- Removed check for unsupported openSUSE versions.
+- Use full URL as a source.
+- Corrected Summary style.
+- Use fdupes to remove file duplicates.
+- Added icon_theme_cache_post/un macros.
+- Removed redundant clean section.
+- Removed zip from build dependencies.
+
+---



Other differences:
--
++ poedit.spec ++
--- /var/tmp/diff_new_pack.s4KC6U/_old  2012-03-12 20:16:38.0 +0100
+++ /var/tmp/diff_new_pack.s4KC6U/_new  2012-03-12 20:16:38.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package poedit
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,27 +16,26 @@
 #
 
 
+%define _use_internal_dependency_generator 0
+%define __find_requires %wx_requires
 
 Name:   poedit
 Version:1.4.6.1
-Release:1
+Release:0
+Summary:Cross-platform Gettext Catalogs Editing Tool
 License:MIT
-Summary:A cross-platform Gettext catalogs editing tool
-Url:http://www.poedit.net/
 Group:  Development/Tools/Other
-Source: %{name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} = 1130
-BuildRequires:  wxGTK-devel
-%else
-BuildRequires:  wxWidgets-devel
-%endif
+Url:http://www.poedit.net/
+Source: 
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
 BuildRequires:  db-devel
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  gtkspell-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  zip
+BuildRequires:  wxWidgets-devel
+BuildRequires:  pkgconfig(gtkspell-2.0)
 Requires:   gettext-tools
+Recommends: %{name}-lang
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 poEdit is cross-platform gettext catalogs (.po files) editor.
@@ -44,6 +43,8 @@
 supported by it. It aims to provide more convenient approach to
 editing catalogs than launching vi and editing the file by hand.
 
+%lang_package
+
 %prep
 %setup -q
 
@@ -56,25 +57,28 @@
 %install
 %make_install
 %suse_update_desktop_file -c poedit poEdit Tool for editing po files poedit 
poedit Development Translation
+%fdupes -s %{buildroot}%{_datadir}
 %find_lang %{name}
 
-%clean
-rm -rf %{buildroot}
+%post
+%icon_theme_cache_post
+
+%postun
+%icon_theme_cache_postun
 
-%files -f %{name}.lang
+%files
 %defattr(-,root,root,755)
 %doc AUTHORS COPYING NEWS README TODO
-%{_bindir}/*
-%{_mandir}/man1/*
-%{_datadir}/poedit/
-%{_datadir}/applications/poedit.desktop
-%{_datadir}/pixmaps/poedit.png
-%{_datadir}/icons/*
-%if 0%{?suse_version}  1120
-%dir %{_datadir}/locale/af_ZA
-%dir %{_datadir}/locale/af_ZA/LC_MESSAGES
-%dir %{_datadir}/locale/fa_IR
-%dir %{_datadir}/locale/fa_IR/LC_MESSAGES
-%endif
+%{_bindir}/%{name}
+%{_datadir}/%{name}
+%exclude %{_datadir}/%{name}/help/hr
+%{_datadir}/applications/%{name}.desktop
+%{_datadir}/icons/hicolor/*/*/%{name}.*
+%{_datadir}/pixmaps/%{name}.png
+%{_mandir}/man?/*
+
+%files lang -f %{name}.lang
+%defattr(-,root,root,755)
+%{_datadir}/%{name}/help/hr
 
 %changelog

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



commit python-pyudev for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package python-pyudev for openSUSE:Factory 
checked in at 2012-03-12 20:16:22

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


Package is python-pyudev, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-pyudev/python-pyudev.changes  
2012-02-22 15:54:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-pyudev.new/python-pyudev.changes 
2012-03-12 20:16:47.0 +0100
@@ -1,0 +2,16 @@
+Sat Mar 10 19:20:03 UTC 2012 - asterios.dra...@gmail.com
+
+- Update to version 0.15:
+  * #20: :meth:`pyudev.Monitor.filter_by()` and
+:meth:`pyudev.Monitor.filter_by_tag()` can be called after
+:meth:`pyudev.Monitor.enable_receiving()` now
+  * #20: Added :meth:`~pyudev.Monitor.remove_filter()`
+  * :class:`pyudev.MonitorObserver` calls
+:meth:`pyudev.Monitor.enable_receiving()` now when started.
+  * #40: Added user guide to the documentation
+  * #39: Added :meth:`pyudev.Device.from_device_file()`
+  * :data:`errno.EINVAL` from underlying libudev functions causes
+:exc:`~exceptions.ValueError` instead of
+:exc:`~exceptions.EnvironmentError` now.
+
+---

Old:

  pyudev-0.14.tar.gz

New:

  pyudev-0.15.tar.gz



Other differences:
--
++ python-pyudev.spec ++
--- /var/tmp/diff_new_pack.Vx7Df7/_old  2012-03-12 20:16:50.0 +0100
+++ /var/tmp/diff_new_pack.Vx7Df7/_new  2012-03-12 20:16:50.0 +0100
@@ -15,13 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   python-pyudev
-Version:0.14
+Version:0.15
 Release:0
-License:LGPL-2.1+
 Summary:Udev bindings for Python
-Url:http://pyudev.readthedocs.org/
+License:LGPL-2.1+
 Group:  Development/Libraries/Python
+Url:http://pyudev.readthedocs.org/
 Source0:
http://pypi.python.org/packages/source/p/pyudev/pyudev-%{version}.tar.gz
 BuildRequires:  libudev-devel
 BuildRequires:  python-devel
@@ -49,6 +50,6 @@
 %files -f INSTALLED_FILES
 %defattr(-,root,root,-)
 %doc CHANGES.rst COPYING README.rst
-%doc doc/
+%doc doc/guide.rst doc/index.rst
 
 %changelog

++ pyudev-0.14.tar.gz - pyudev-0.15.tar.gz ++
 2871 lines of diff (skipped)

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



commit sarg for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package sarg for openSUSE:Factory checked in 
at 2012-03-12 20:16:52

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


Package is sarg, Maintainer is dr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/sarg/sarg.changes2011-12-30 
08:46:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.sarg.new/sarg.changes   2012-03-12 
20:17:02.0 +0100
@@ -1,0 +2,41 @@
+Sun Mar  4 03:55:17 UTC 2012 - tabra...@novell.com
+
+- Update to 2.3.2:
+  * removed obsolete sarg-2.2.3.1-description.patch
+  * added C_FLAGS=-std99 and sarg-2.3.2-limits_h.diff to compile on
+SLE 10 and openSUSE 11.1
+
+  - Add support for sorttable.js 
(http://www.kryogenix.org/code/browser/sorttable/) 
+to dynamically sort some tables (thanks to Éric).
+  - Add the two command line options --lastlog and --keeplogs to set the 
number of 
+reports to keep or to keep all the reports respectively (thanks to 
Emmanuel 
+Lacour for the suggestion).
+  - Report the user ID in the e-mail report.
+  - Add an option to sort the top sites by time.
+  - Delete unused files from the directory containing the user report 
+(thanks to alf-man).
+  - Add the index_fields option to hide the directory size column in the index 
+sorted by date.
+  - Split the input log file in several files each containing one day worth of 
+data (thanks to Mauricio Silveira).
+  - Take the date_format into account when converting a log file.
+  - Accept IPv6 addresses in the realtime report.
+  - Don't fail for an empty report directory when building the index.
+  - Fix a read error when parsing the time of a common log format 
+(thanks to Richard P Scott).
+  - Use anonymous file and directory names in the report to hide the identity 
of 
+the user whose report is displayed and shorten the total path length.
+  - More robust calls to external sort commands (guard against buffer 
overflows 
+and use tab as column separator).
+  - Replace host names by aliases and group identicaly aliased host names.
+  - IPv6 is accepted in the hosts exclusion list.
+  - Discriminate between users whose name produce the same mangled temporary 
+file name.
+  - Write a note about the number of entries ignored in the reports (thanks 
+to Iain Lopata).
+  - Command line option -z output some messages to explain why the reports 
+are not generated due to the configuration.
+  - The Sites  Users report page links to the user's page if the user is 
+listed in the Top Users page.
+
+---

Old:

  sarg-2.2.3.1-description.patch
  sarg-2.3.1.tar.bz2

New:

  sarg-2.3.2-limits_h.diff
  sarg-2.3.2.tar.bz2



Other differences:
--
++ sarg.spec ++
--- /var/tmp/diff_new_pack.0Blk86/_old  2012-03-12 20:17:05.0 +0100
+++ /var/tmp/diff_new_pack.0Blk86/_new  2012-03-12 20:17:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sarg
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,8 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   sarg
-Version:2.3.1
+Version:2.3.2
 Release:0
 Summary:Squid Analysis Report Generator
 License:GPL-2.0+
@@ -36,8 +38,7 @@
 # Patch0:   http://sarg.sourceforge.net/sarg-2.0.1-largeurl.patch.gz
 # PATCH-FIX-UPSTREAM sarg-2.3.1-config.patch
 Patch0: sarg-2.3.1-config.patch
-# PATCH-FIX-UPSTREAM sarg-2.2.3.1-description.patch
-Patch1: sarg-2.2.3.1-description.patch
+Patch1: sarg-2.3.2-limits_h.diff
 # PATCH-FIX-UPSTREAM sarg-reports-english.patch
 Patch10:sarg-reports-english.patch
 PreReq: %fillup_prereq
@@ -59,15 +60,20 @@
 %prep
 %setup -q
 %patch0
-%patch1 -p1
-patch %{SOURCE2}  %{PATCH10}
+%patch1
+%{__patch} %{SOURCE2}  %{PATCH10}
 
 %build
+%{__chmod} a+x configure
+%{__chmod} a+x user_limit_block
 %configure \
 --sysconfdir=%{_datadir}/%{name} \
---mandir=%{_mandir}/man1 \
+--mandir=%{_mandir}/ \
 --localedir=%{_datadir}/sarg/languages \
 --enable-sargphp=/srv/www/htdocs
+%if 0%{?suse_version} == 1110 || 0%{?sles_version} == 1000
+C_FLAGS=-std=c99
+%endif
 %{__make}
 
 %install


++ sarg-2.3.1-config.patch ++
--- /var/tmp/diff_new_pack.0Blk86/_old  2012-03-12 20:17:05.0 +0100
+++ /var/tmp/diff_new_pack.0Blk86/_new  2012-03-12 

commit spice-gtk for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package spice-gtk for openSUSE:Factory 
checked in at 2012-03-12 20:17:03

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


Package is spice-gtk, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/spice-gtk/spice-gtk.changes  2012-02-27 
18:37:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.spice-gtk.new/spice-gtk.changes 2012-03-13 
00:45:49.0 +0100
@@ -1,0 +2,18 @@
+Sun Mar 11 21:12:36 UTC 2012 - dims...@opensuse.org
+
+- spice-client-glib-usb-acl-helper is here again. Besides depending
+  on the right version ofpolkit, it also depends of usbredir, which
+  caused it to silently disappear last time.
+
+---
+Thu Mar  8 21:06:16 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.11:
+  - Fix semi-seamless migration regression
+  - Add Spice session UUID and name support
+  - Add foreign menu support to controller library
+  - Add a simple controller testing tool spice-controller-dump
+  - Build fixes
+- Drop spice-gtk-0.9-return-nonvoid.patch: fixed upstream.
+
+---

Old:

  spice-gtk-0.10.tar.bz2
  spice-gtk-0.9-return-nonvoid.patch

New:

  spice-gtk-0.11.tar.bz2



Other differences:
--
++ spice-gtk.spec ++
--- /var/tmp/diff_new_pack.DH8WbU/_old  2012-03-13 00:45:53.0 +0100
+++ /var/tmp/diff_new_pack.DH8WbU/_new  2012-03-13 00:45:53.0 +0100
@@ -18,15 +18,14 @@
 
 
 Name:   spice-gtk
-Version:0.10
+Version:0.11
 Release:0
+# FIXME: /usr/bin/spice-client-glib-usb-acl-helper should be installed u+s, 
see bnc#744251.
 Summary:Gtk client and libraries for SPICE remote desktop servers
 License:LGPL-2.1+
 Group:  System/GUI/GNOME
 Url:http://spice-space.org/page/Spice-Gtk
 Source: http://spice-space.org/download/gtk/%{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM spice-gtk-0.9-return-nonvoid.patch dims...@opensuse.org 
-- Return value in non-void function.
-Patch0: spice-gtk-0.9-return-nonvoid.patch
 BuildRequires:  cyrus-sasl-devel
 BuildRequires:  intltool
 BuildRequires:  libacl-devel
@@ -112,7 +111,6 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %configure \
@@ -125,6 +123,12 @@
 find %{buildroot} -type f -name *.la -delete -print
 %find_lang %{name}
 
+%post
+%set_permissions %{_bindir}/spice-client-glib-usb-acl-helper
+
+%verifyscript
+%verify_permissions -e %{_bindir}/spice-client-glib-usb-acl-helper
+
 %post -n libspice-client-glib-2_0-1 -p /sbin/ldconfig
 
 %postun -n libspice-client-glib-2_0-1 -p /sbin/ldconfig
@@ -143,6 +147,9 @@
 %{_bindir}/snappy
 %{_bindir}/spicy
 %{_bindir}/spicy-stats
+# Remove the attr(755) once bnc#744251 has been fixed.
+%attr(755,root,root) %{_bindir}/spice-client-glib-usb-acl-helper
+%{_datadir}/polkit-1/actions/org.spice-space.lowlevelusbaccess.policy
 
 %files lang -f %{name}.lang
 

++ spice-gtk-0.10.tar.bz2 - spice-gtk-0.11.tar.bz2 ++
 5926 lines of diff (skipped)

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



commit systemd for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

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

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


Package is systemd, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/systemd/systemd-gtk.changes  2012-03-09 
21:28:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.systemd.new/systemd-gtk.changes 2012-03-13 
00:46:06.0 +0100
@@ -1,0 +2,5 @@
+Mon Mar 12 08:50:36 UTC 2012 - fcro...@suse.com
+
+- Add fix-c++-compat.patch: fix C++ compatibility error in header.
+
+---
systemd.changes: same change

New:

  fix-c++-compat.patch



Other differences:
--
++ systemd.spec ++
--- /var/tmp/diff_new_pack.bz0L84/_old  2012-03-13 00:46:12.0 +0100
+++ /var/tmp/diff_new_pack.bz0L84/_new  2012-03-13 00:46:12.0 +0100
@@ -88,6 +88,7 @@
 # an exception will be silently removed with the next version update.
 Patch21:no-tmpfs-fsck.patch
 Patch40:systemd-journald-fix-endianess-bug.patch
+Patch41:fix-c++-compat.patch
 
 %description
 Systemd is a system and service manager, compatible with SysV and LSB
@@ -148,6 +149,7 @@
 %patch38 -p1
 %patch39 -p1
 %patch40 -p1
+%patch41 -p1
 
 %build
 autoreconf -fiv

++ fix-c++-compat.patch ++
From e09a9a35a1fdb4e849e63bdaf47d936c272b5e82 Mon Sep 17 00:00:00 2001
From: Lennart Poettering lenn...@poettering.net
Date: Mon, 5 Mar 2012 15:16:10 +0100
Subject: [PATCH] sd-login: c++ compatibility

---
 src/systemd/sd-login.h |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/systemd/sd-login.h b/src/systemd/sd-login.h
index 2f3c90c..6e99cfc 100644
--- a/src/systemd/sd-login.h
+++ b/src/systemd/sd-login.h
@@ -94,7 +94,7 @@ int sd_session_get_service(const char *session, char 
**service);
 int sd_session_get_type(const char *session, char **type);
 
 /* Determine the class of this session, i.e. one of user, greeter or 
lock-screen. */
-int sd_session_get_class(const char *session, char **class);
+int sd_session_get_class(const char *session, char **clazz);
 
 /* Determine the X11 display of this session. */
 int sd_session_get_display(const char *session, char **display);
-- 
1.7.7


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



commit tnef for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package tnef for openSUSE:Factory checked in 
at 2012-03-12 20:17:12

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


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

Changes:

--- /work/SRC/openSUSE:Factory/tnef/tnef.changes2011-09-23 
12:48:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.tnef.new/tnef.changes   2012-03-13 
00:46:34.0 +0100
@@ -1,0 +2,7 @@
+Sun Mar 11 21:04:07 UTC 2012 - asterios.dra...@gmail.com
+
+- Update to 1.4.9:
+  * Fix some memory leaks.
+  * Fixes for printing out MIME types.
+
+---

Old:

  tnef-1.4.8.tar.bz2

New:

  tnef-1.4.9.tar.gz



Other differences:
--
++ tnef.spec ++
--- /var/tmp/diff_new_pack.0jyMdZ/_old  2012-03-13 00:46:37.0 +0100
+++ /var/tmp/diff_new_pack.0jyMdZ/_new  2012-03-13 00:46:37.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tnef
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,19 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   tnef
-Version:1.4.8
-Release:1
+Version:1.4.9
+Release:0
 Summary:Uncompress MS-TNEF Archives
-
 License:GPL-2.0+
-Url:http://tnef.sourceforge.net/
 Group:  Productivity/Archiving/Compression
-# http://sourceforge.net/projects/tnef/files/tnef/tnef-1.4.8.tar.gz
-Source0:%{name}-%{version}.tar.bz2
+Url:http://tnef.sourceforge.net/
+Source0:
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -45,9 +41,6 @@
 %install
 %makeinstall
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr(-,root,root,-)
 %doc AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO doc/FAQ

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



commit varnish for openSUSE:Factory

2012-03-12 Thread h_root
Hello community,

here is the log from the commit of package varnish for openSUSE:Factory checked 
in at 2012-03-12 20:17:17

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


Package is varnish, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/varnish/varnish.changes  2011-09-23 
12:49:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.varnish.new/varnish.changes 2012-03-13 
00:46:49.0 +0100
@@ -1,0 +2,50 @@
+Wed Feb  8 23:26:10 UTC 2012 - jeng...@medozas.de
+
+- Update to new upstream release 3.0.2
+* Add support for ESI and gzip
+* Handle objects larger than 2G
+* HTTP Range support is now enabled by default
+* 307 Temporary redirect is now considered cacheable
+* see ChangeLog (packaged) or
+  http://varnish-cache.org/trac/browser/doc/changes.rst
+  for details
+- Note that the -s file,/var/cache/varnish,524288 argument (check
+  /etc/sysconfig/varnish) needs at least 1M instead of 524288
+  or the daemon will not start anymore.
+- Add systemd unit files
+
+---
+Thu Dec  8 13:51:14 UTC 2011 - co...@suse.com
+
+- fix license to be in spdx.org format
+
+---
+Tue May 10 14:01:13 UTC 2011 - crrodrig...@opensuse.org
+
+- Varnish Requires a C compiler, the vcl scripts are compiled
+  and loaded as DSO.
+
+---
+Sat Apr 16 17:26:10 UTC 2011 - crrodrig...@opensuse.org
+
+- remove configure option --enable-debugging-symbols
+  it overrides buildsystem optimization levels. 
+
+---
+Sat Apr 16 17:12:11 UTC 2011 - crrodrig...@opensuse.org
+
+- Update to version 2.1.5
+   * Two bugs relating to Content-Length and possible duplication 
+of Content-Length headers have been resolved. 
+   * Fixed an issue with re-using connections after Chunked-Encoding.
+   * Use the time of cache-insertion for If-Modified-Since requests 
+ if a Last-Modified header isn't provided by the backend.
+   * Merge multi-line Vary and Cache-Control headers from clients, 
+ which Google Chromium seem to split up.
+
+---
+Fri Apr 15 22:36:02 UTC 2011 - mrueck...@suse.de
+
+- use pkgconfig instead of pkg-config on SLES 9
+
+---
@@ -4,0 +55 @@
+  (bnc#678811)

Old:

  varnish-2.1.3.tar.gz

New:

  varnish-3.0.2.tar.xz
  varnish.service
  varnishlog.init
  varnishlog.service



Other differences:
--
++ varnish.spec ++
--- /var/tmp/diff_new_pack.vGyYpH/_old  2012-03-13 00:46:53.0 +0100
+++ /var/tmp/diff_new_pack.vGyYpH/_new  2012-03-13 00:46:53.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package varnish
+# spec file for package varnish (Version 2.0.5)
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,35 +15,40 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   varnish
-Version:2.1.3
-Release:5
-#
-License:BSD
+%define library_name libvarnishapi1
+Version:3.0.2
+Release:0
+Summary:Varnish is a high-performance HTTP accelerator
+License:BSD-2-Clause
 Group:  Productivity/Networking/Web/Proxy
-#
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  libxslt ncurses-devel pcre-devel pkg-config
+URL:http://varnish-cache.org/
+
+#DL-URL:   http://downloads.sf.net/varnish/%name-%version.tar.bz2
+Source0:   %name-%version.tar.xz
+Source2:varnish.init
+Source3:varnish.sysconfig
+Source4:   vcl.conf
+Source5:   varnish.logrotate
+Source6:varnishlog.init
+Source7:   varnish.service
+Source8:   varnishlog.service
+
+BuildRoot:  %_tmppath/%name-%version-build
+BuildRequires:  libxslt, ncurses-devel, pcre-devel
+BuildRequires:  pkgconfig, xz
 Prereq(post):  %_sbindir/useradd %_sbindir/groupadd
-%if 0%{?suse_version}
+%if 0%{?suse_version} = 1010
 Recommends: logrotate
 %endif
+%if 0%{?suse_version} = 1210
+BuildRequires: systemd
+%{?systemd_requires}
+%endif
 %define pkg_home %_localstatedir/lib/%name
 %define pkg_logdir   %_localstatedir/log/%name
 %define pkg_cachedir %_localstatedir/cache/%name
-#
-Url:http://www.varnish-cache.org/
-Source0: