commit krb5 for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package krb5 for openSUSE:Factory checked in 
at 2012-10-06 08:19:14

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


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

Changes:

--- /work/SRC/openSUSE:Factory/krb5/krb5-mini.changes   2012-06-13 
17:07:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.krb5.new/krb5-mini.changes  2012-10-06 
08:19:21.0 +0200
@@ -1,0 +2,6 @@
+Fri Oct  5 15:50:38 CEST 2012 - m...@suse.de
+
+- add systemd service files for kadmind, krb5kdc and kpropd
+- add sysconfig templates for kadmind and krb5kdc
+
+---
krb5.changes: same change



Other differences:
--
++ krb5-mini.spec ++
--- /var/tmp/diff_new_pack.r9DOkG/_old  2012-10-06 08:19:22.0 +0200
+++ /var/tmp/diff_new_pack.r9DOkG/_new  2012-10-06 08:19:22.0 +0200
@@ -30,6 +30,9 @@
 BuildRequires:  libcom_err-devel
 BuildRequires:  libselinux-devel
 BuildRequires:  ncurses-devel
+%if 0%{?suse_version} = 1210
+BuildRequires:  systemd
+%endif
 Version:1.10.2
 Release:0
 Summary:MIT Kerberos5 Implementation--Libraries
@@ -89,6 +92,7 @@
 Requires:   cron
 Requires:   logrotate
 Requires:   perl-Date-Calc
+%{?systemd_requires}
 PreReq: %insserv_prereq %fillup_prereq
 
 %description server
@@ -235,15 +239,27 @@
 install -m 755 %{vendorFiles}/kadmind.init 
%{buildroot}%{_sysconfdir}/init.d/kadmind
 install -m 755 %{vendorFiles}/krb5kdc.init 
%{buildroot}%{_sysconfdir}/init.d/krb5kdc
 install -m 755 %{vendorFiles}/kpropd.init  
%{buildroot}%{_sysconfdir}/init.d/kpropd
+# install systemd files
+%if 0%{?suse_version} = 1210
+mkdir -p %{buildroot}%{_unitdir}
+install -m 644 %{vendorFiles}/kadmind.service %{buildroot}%{_unitdir}
+install -m 644 %{vendorFiles}/krb5kdc.service %{buildroot}%{_unitdir}
+install -m 644 %{vendorFiles}/kpropd.service %{buildroot}%{_unitdir}
+%endif
+# install sysconfig templates
+mkdir -p $RPM_BUILD_ROOT/%{_var}/adm/fillup-templates
+install -m 644 %{vendorFiles}/sysconfig.kadmind 
$RPM_BUILD_ROOT/%{_var}/adm/fillup-templates/
+install -m 644 %{vendorFiles}/sysconfig.krb5kdc 
$RPM_BUILD_ROOT/%{_var}/adm/fillup-templates/
 # install logrotate files
 mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d
 install -m 644 %{vendorFiles}/krb5-server.logrotate 
%{buildroot}%{_sysconfdir}/logrotate.d/krb5-server
 find . -type f -name '*.ps' -exec gzip -9 {} \;
 # create rc* links 
 mkdir -p %{buildroot}/usr/bin/
-ln -sf ../../etc/init.d/kadmind %{buildroot}/usr/bin/rckadmind
-ln -sf ../../etc/init.d/krb5kdc %{buildroot}/usr/bin/rckrb5kdc
-ln -sf ../../etc/init.d/kpropd %{buildroot}/usr/bin/rckpropd
+mkdir -p %{buildroot}/usr/sbin/
+ln -sf ../../etc/init.d/kadmind %{buildroot}/usr/sbin/rckadmind
+ln -sf ../../etc/init.d/krb5kdc %{buildroot}/usr/sbin/rckrb5kdc
+ln -sf ../../etc/init.d/kpropd %{buildroot}/usr/sbin/rckpropd
 # create links for kinit and klist, because of the java ones
 ln -sf ../../usr/lib/mit/bin/kinit   %{buildroot}/usr/bin/kinit
 ln -sf ../../usr/lib/mit/bin/klist   %{buildroot}/usr/bin/klist
@@ -265,39 +281,80 @@
 %if %{build_mini}
 
 %preun 
+%if 0%{?suse_version} = 1210
+%service_del_preun krb5kdc.service kadmind.service kpropd.service
+%else
 %stop_on_removal krb5kdc kadmind kpropd
+%endif
 
 %postun 
 /sbin/ldconfig
+%if 0%{?suse_version} = 1210
+%service_del_postun krb5kdc.service kadmind.service kpropd.service
+%else
 %restart_on_update krb5kdc kadmind kpropd
 %{insserv_cleanup}
+%endif
+
+%post
+/sbin/ldconfig
+%if 0%{?suse_version} = 1210
+%service_add_post krb5kdc.service kadmind.service kpropd.service
+%endif
 
-%post -p /sbin/ldconfig
 %else
 #
 # krb5 pre/post/postun
 #
 
-%post -p /sbin/ldconfig
+%post
+/sbin/ldconfig
 
-%postun -p /sbin/ldconfig
+%postun
+/sbin/ldconfig
 
-%preun server
 #
-# krb5-server preun/postun
+# krb5-server preun/postun/pre/post
 #
+
+%preun server
+%if 0%{?suse_version} = 1210
+%service_del_preun krb5kdc.service kadmind.service kpropd.service
+%else
 %stop_on_removal krb5kdc kadmind kpropd
+%endif
 
 %postun server
+%if 0%{?suse_version} = 1210
+%service_del_postun krb5kdc.service kadmind.service kpropd.service
+%else
 %restart_on_update krb5kdc kadmind kpropd
 %{insserv_cleanup}
+%endif
+
+%post server
+%if 0%{?suse_version} = 1210
+%service_add_post krb5kdc.service kadmind.service kpropd.service
+%endif
+%{fillup_only -n kadmind}
+%{fillup_only -n krb5kdc}
+%{fillup_only -n kpropd}
+

commit emacs for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package emacs for openSUSE:Factory checked 
in at 2012-10-06 08:18:53

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


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

Changes:

--- /work/SRC/openSUSE:Factory/emacs/emacs.changes  2012-09-23 
19:33:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.emacs.new/emacs.changes 2012-10-06 
08:21:28.0 +0200
@@ -1,0 +2,6 @@
+Fri Oct  5 12:03:38 UTC 2012 - wer...@suse.de
+
+- Add workaround into emacs starter script for gtk/gstreamer bug
+  which overrides the locale 
+
+---



Other differences:
--
++ emacs.spec ++
--- /var/tmp/diff_new_pack.Pa44Zr/_old  2012-10-06 08:21:30.0 +0200
+++ /var/tmp/diff_new_pack.Pa44Zr/_new  2012-10-06 08:21:30.0 +0200
@@ -425,6 +425,10 @@
#!/bin/bash
# Possible values are nox, gtk, or x11
: ${EMACS_TOOLKIT:=gtk}
+   if test $EMACS_TOOLKIT = gtk; then
+   LC_NUMERIC=POSIX
+   export LC_NUMERIC
+   fi
if test -e ${0}-${EMACS_TOOLKIT} ; then
 exec -a ${0} ${0}-${EMACS_TOOLKIT} ${1+$@}
elif test -e ${0}-x11 ; then



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



commit avogadro for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package avogadro for openSUSE:Factory 
checked in at 2012-10-06 09:14:32

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


Package is avogadro, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/avogadro/avogadro.changes2012-09-27 
13:36:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.avogadro.new/avogadro.changes   2012-10-06 
09:16:26.0 +0200
@@ -1,0 +2,5 @@
+Fri Oct  5 11:30:01 UTC 2012 - co...@suse.com
+
+- glew no longer requires glu, so buildrequire it explicitly
+
+---



Other differences:
--
++ avogadro.spec ++
--- /var/tmp/diff_new_pack.CnF1BY/_old  2012-10-06 09:16:27.0 +0200
+++ /var/tmp/diff_new_pack.CnF1BY/_new  2012-10-06 09:16:27.0 +0200
@@ -44,6 +44,7 @@
 BuildRequires:  xorg-x11-devel
 BuildRequires:  xorg-x11-libX11-devel
 BuildRequires:  xorg-x11-libXext-devel
+BuildRequires:  pkgconfig(glu)
 Requires:   libavogadro1 = %{version}
 Requires:   openbabel
 Requires:   python-numpy


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



commit libnova for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package libnova for openSUSE:Factory checked 
in at 2012-10-04 20:00:14

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libnova/libnova.changes  2011-09-23 
02:09:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.libnova.new/libnova.changes 2012-10-06 
18:38:22.0 +0200
@@ -1,0 +2,9 @@
+Sat Sep 22 18:15:21 UTC 2012 - asterios.dra...@gmail.com
+
+- Update to version 0.15.0:
+  * Bugfix release.
+- Regenerate build system because of errors about libtool during compilation
+  (added libtool build requirement for this).
+- Compile developer documentation (added doxygen build requirement for this).
+
+---

Old:

  libnova-0.14.0.tar.gz

New:

  libnova-0.15.0.tar.gz



Other differences:
--
++ libnova.spec ++
--- /var/tmp/diff_new_pack.K9Oy6Q/_old  2012-10-06 18:38:24.0 +0200
+++ /var/tmp/diff_new_pack.K9Oy6Q/_new  2012-10-06 18:38:24.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libnova
 #
-# 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,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
-%define debug_package_requires libnova-0_14-0 = %{version}-%{release}
+%define so_ver 0_15-0
 
 Name:   libnova
-Version:0.14.0
-Release:1
-License:LGPL-2.0+
+Version:0.15.0
+Release:0
 Summary:Celestial Mechanics, Astrometry and Astrodynamics Library
-Url:http://libnova.sourceforge.net/
+License:LGPL-2.0+
 Group:  System/Libraries
+Url:http://libnova.sourceforge.net/
 Source0:
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
+BuildRequires:  doxygen
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
+BuildRequires:  libtool
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -37,21 +39,19 @@
 calculating positions of astronomical objects or celestial mechanics.
 
 %package devel
-License:LGPL-2.0+
 Summary:Development files for libnova
 Group:  Development/Libraries/C and C++
 Requires:   glibc-devel
-Requires:   libnova-0_14-0 = %{version}
+Requires:   libnova-%{so_ver} = %{version}
 
 %description devel
 This package contains development files for libnova.
 
-%package -n libnova-0_14-0
-License:LGPL-2.0+
+%package -n libnova-%{so_ver}
 Summary:Celestial Mechanics, Astrometry and Astrodynamics Library
 Group:  System/Libraries
 
-%description -n libnova-0_14-0
+%description -n libnova-%{so_ver}
 libnova is a general purpose, double precision, Celestial Mechanics,
 Astrometry and Astrodynamics library. The intended audience of libnova
 is C  C++ programmers, astronomers and anyone else interested in
@@ -61,31 +61,41 @@
 %setup -q
 
 %build
+# Regenerate build system because of errors about libtool during compilation
+autoreconf -vif
+
 %configure --disable-static --with-pic
 make CFLAGS+=%{optflags} %{?_smp_mflags}
+cd doc
+make doc %{?_smp_mflags}
+cd ..
 
 %install
 %make_install
 
-# Not needed
+# Manually install doc files in order to fix rpmlint warning files-duplicate
+mkdir -p %{buildroot}%{_docdir}/%{name}-devel
+cp -a doc/html/ %{buildroot}%{_docdir}/%{name}-devel/
+cp -a AUTHORS COPYING ChangeLog NEWS %{buildroot}%{_docdir}/%{name}-devel/
+
+# Remove libtool config files
 rm -f %{buildroot}%{_libdir}/*.la
 
-%post -n libnova-0_14-0 -p /sbin/ldconfig
+%fdupes -s %{buildroot}
 
-%postun -n libnova-0_14-0 -p /sbin/ldconfig
+%post -n libnova-%{so_ver} -p /sbin/ldconfig
 
-%clean
-rm -rf %{buildroot}
+%postun -n libnova-%{so_ver} -p /sbin/ldconfig
 
 %files devel
 %defattr(-,root,root,-)
-%doc AUTHORS COPYING ChangeLog NEWS
+%doc %{_docdir}/%{name}-devel/
 %{_includedir}/libnova/
 %{_libdir}/libnova.so
 %{_bindir}/libnovaconfig
 
-%files -n libnova-0_14-0
+%files -n libnova-%{so_ver}
 %defattr(-,root,root,-)
-%{_libdir}/libnova-0.14.so.0*
+%{_libdir}/libnova-0.15.so.0*
 
 %changelog

++ libnova-0.14.0.tar.gz - libnova-0.15.0.tar.gz ++
 10165 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess 

commit libserf for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package libserf for openSUSE:Factory checked 
in at 2012-10-05 13:45:33

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


Package is libserf, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libserf/libserf.changes  2012-06-10 
23:19:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.libserf.new/libserf.changes 2012-10-06 
18:38:51.0 +0200
@@ -1,0 +2,14 @@
+Thu Oct  4 21:45:29 UTC 2012 - andreas.stie...@gmx.de
+
+- update to Serf 1.1.1
+  This patch release contains fixes for some important connection
+  stability issues.
+  * ensure requeued requests are correctly handled. This fixes:
+- infinite loop with multiple connection resets or SIGPIPE errors
+- connection hang where we would not re-queue requests that are held 
after
+  we re-connect
+  * test_all goes in an endless loop
+  * Fix memory leak when conn. is closed explicitly/due to pool cleanups
+  * Add new error codes for the SSL bucket
+
+---

Old:

  serf-1.1.0.tar.bz2

New:

  serf-1.1.1.tar.bz2



Other differences:
--
++ libserf.spec ++
--- /var/tmp/diff_new_pack.Y92YXT/_old  2012-10-06 18:38:52.0 +0200
+++ /var/tmp/diff_new_pack.Y92YXT/_new  2012-10-06 18:38:52.0 +0200
@@ -19,7 +19,7 @@
 Name:   libserf
 %define soname 0
 %define major  1
-Version:1.1.0
+Version:1.1.1
 Release:0
 Summary:High-Performance Asynchronous HTTP Client Library
 License:Apache-2.0

++ serf-1.1.0.tar.bz2 - serf-1.1.1.tar.bz2 ++
 6513 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/serf-1.1.0/CHANGES new/serf-1.1.1/CHANGES
--- old/serf-1.1.0/CHANGES  2012-06-07 22:12:29.0 +0200
+++ new/serf-1.1.1/CHANGES  2012-10-04 22:06:40.0 +0200
@@ -1,3 +1,14 @@
+Serf 1.1.1 [2012-10-04, from /tags/1.1.1]
+  Fixed issue 86: ensure requeued requests are correctly handled. This fixes:
+- infinite loop with multiple connection resets or SIGPIPE errors
+- connection hang where we would not re-queue requests that are held 
after
+  we re-connect
+  Fixed issue 74: test_all goes in an endless loop
+  Fix memory leak when conn. is closed explicitly/due to pool cleanups (r1623)
+  Fix for https on Windows: handle connection aborts (r1628..-30,-33,-34,-37)
+  Add new error codes for the SSL bucket
+
+
 Serf 1.1.0 [2012-06-07, from /tags/1.1.0]
   New: serf_bucket_request_set_CL() for C-L based, non-chunked requests
   New: serf_ssl_server_cert_chain_callback_set() for full-chain validation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/serf-1.1.0/buckets/ssl_buckets.c new/serf-1.1.1/buckets/ssl_buckets.c
--- old/serf-1.1.0/buckets/ssl_buckets.c2012-04-19 23:43:22.0 
+0200
+++ new/serf-1.1.1/buckets/ssl_buckets.c2012-09-11 22:01:04.0 
+0200
@@ -180,6 +180,10 @@
 EVP_PKEY *cached_cert_pw;
 
 apr_status_t pending_err;
+
+/* Status of a fatal error, returned on subsequent encrypt or decrypt
+   requests. */
+apr_status_t fatal_err;
 };
 
 typedef struct {
@@ -534,6 +538,9 @@
 const char *data;
 int ssl_len;
 
+if (ctx-fatal_err)
+return ctx-fatal_err;
+
 #ifdef SSL_VERBOSE
 printf(ssl_decrypt: begin %d\n, bufsize);
 #endif
@@ -581,16 +588,44 @@
 break;
 case SSL_ERROR_SSL:
 *len = 0;
-status = ctx-pending_err ? ctx-pending_err : APR_EGENERAL;
-ctx-pending_err = 0;
+if (ctx-pending_err) {
+status = ctx-pending_err;
+ctx-pending_err = 0;
+} else {
+ctx-fatal_err = status = SERF_ERROR_SSL_COMM_FAILED;
+}
 break;
 default:
 *len = 0;
-status = APR_EGENERAL;
+ctx-fatal_err = status = SERF_ERROR_SSL_COMM_FAILED;
 break;
 }
-}
-else {
+} else if (ssl_len == 0) {
+/* The 

commit libyui-ncurses for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package libyui-ncurses for openSUSE:Factory 
checked in at 2012-10-05 13:45:42

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


Package is libyui-ncurses, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libyui-ncurses/libyui-ncurses.changes
2012-09-11 09:12:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.libyui-ncurses.new/libyui-ncurses.changes   
2012-10-06 18:39:01.0 +0200
@@ -1,0 +2,8 @@
+Thu Oct  4 11:20:57 CEST 2012 - g...@suse.de
+
+- NCTablePad: bug-fix for sorting of tables 
+- NCDialog: code cleanup, setStatusLine() added 
+
+- V 2.43.0
+
+---

Old:

  libyui-ncurses-2.42.2.tar.bz2

New:

  libyui-ncurses-2.43.0.tar.bz2



Other differences:
--
++ libyui-ncurses-doc.spec ++
--- /var/tmp/diff_new_pack.AkCHDZ/_old  2012-10-06 18:39:05.0 +0200
+++ /var/tmp/diff_new_pack.AkCHDZ/_new  2012-10-06 18:39:05.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses (Version 2.42.2)
+# spec file for package libyui-ncurses (Version 2.43.0)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -16,7 +16,7 @@
 #
 
 Name:  libyui-ncurses-doc
-Version:   2.42.2
+Version:   2.43.0
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-%{version}.tar.bz2

++ libyui-ncurses.spec ++
--- /var/tmp/diff_new_pack.AkCHDZ/_old  2012-10-06 18:39:05.0 +0200
+++ /var/tmp/diff_new_pack.AkCHDZ/_new  2012-10-06 18:39:05.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses (Version 2.42.2)
+# spec file for package libyui-ncurses (Version 2.43.0)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -17,7 +17,7 @@
 # norootforbuild
 
 Name:  libyui-ncurses
-Version:   2.42.2
+Version:   2.43.0
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-%{version}.tar.bz2

++ libyui-ncurses-2.42.2.tar.bz2 - libyui-ncurses-2.43.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.42.2/ChangeLog 
new/libyui-ncurses-2.43.0/ChangeLog
--- old/libyui-ncurses-2.42.2/ChangeLog 2012-09-07 14:14:20.0 +0200
+++ new/libyui-ncurses-2.43.0/ChangeLog 2012-10-04 12:00:06.0 +0200
@@ -1,4 +1,12 @@
 ---
+Thu Oct  4 11:20:57 CEST 2012 - g...@suse.de
+
+- NCTablePad: bug-fix for sorting of tables 
+- NCDialog: code cleanup, setStatusLine() added 
+
+- V 2.43.0
+
+---
 Fri Sep  7 13:50:36 CEST 2012 - tgoettlic...@suse.de
 
 - V 2.42.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.42.2/VERSION.cmake 
new/libyui-ncurses-2.43.0/VERSION.cmake
--- old/libyui-ncurses-2.42.2/VERSION.cmake 2012-09-07 14:14:20.0 
+0200
+++ new/libyui-ncurses-2.43.0/VERSION.cmake 2012-10-04 12:00:06.0 
+0200
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR 2 )
-SET( VERSION_MINOR 42 )
-SET( VERSION_PATCH 2 )
+SET( VERSION_MINOR 43 )
+SET( VERSION_PATCH 0 )
 SET( VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} )
 
 # This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.42.2/src/NCDialog.cc 
new/libyui-ncurses-2.43.0/src/NCDialog.cc
--- old/libyui-ncurses-2.42.2/src/NCDialog.cc   2012-09-07 14:14:20.0 
+0200
+++ new/libyui-ncurses-2.43.0/src/NCDialog.cc   2012-10-04 12:00:06.0 
+0200
@@ -106,7 +106,6 @@
 dlgstyle = NCurses::style()[mystyleset];
 
 eventReason = YEvent::UnknownReason;
-helpPopup = 0;
 yuiDebug()  +++   this  std::endl;
 }
 
@@ -165,10 +164,6 @@
 pan = 0;
 yuiDebug()  ---destroyed   this  std::endl;
 
-if ( helpPopup )
-{
-   YDialog::deleteTopmostDialog();
-}
 }
 
 
@@ -528,6 +523,11 @@
 }
 }
 
+void NCDialog::setStatusLine()
+{
+NCurses::SetStatusLine( describeFunctionKeys() );
+doUpdate();
+}
 
 void NCDialog::wUpdate( bool forced_br )
 {
@@ -1164,18 +1164,7 @@
switch ( hch )
{
case WEOF: // no 2nd char, handle ch
-
-   if ( helpPopup )
-   {
-   helpPopup-popdown();
-   YDialog::deleteTopmostDialog();
-   helpPopup = 0;
-   }
-  

commit libyui-ncurses-pkg for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package libyui-ncurses-pkg for 
openSUSE:Factory checked in at 2012-10-05 13:46:02

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


Package is libyui-ncurses-pkg, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libyui-ncurses-pkg/libyui-ncurses-pkg.changes
2012-09-11 09:12:12.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.libyui-ncurses-pkg.new/libyui-ncurses-pkg.changes   
2012-10-06 18:39:05.0 +0200
@@ -1,0 +2,8 @@
+Thu Oct  4 11:29:12 CEST 2012 - g...@suse.de
+
+- NCPkgTable: bug-fix for sorting the list of packages
+- Show function keys in bottom line correctly
+
+- Version 2.43.0
+
+---

Old:

  libyui-ncurses-pkg-2.42.2.tar.bz2

New:

  libyui-ncurses-pkg-2.43.0.tar.bz2



Other differences:
--
++ libyui-ncurses-pkg-doc.spec ++
--- /var/tmp/diff_new_pack.wg0wgy/_old  2012-10-06 18:39:07.0 +0200
+++ /var/tmp/diff_new_pack.wg0wgy/_new  2012-10-06 18:39:07.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses-pkg (Version 2.42.2)
+# spec file for package libyui-ncurses-pkg (Version 2.43.0)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -16,7 +16,7 @@
 #
 
 Name:  libyui-ncurses-pkg-doc
-Version:   2.42.2
+Version:   2.43.0
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-pkg-%{version}.tar.bz2

++ libyui-ncurses-pkg.spec ++
--- /var/tmp/diff_new_pack.wg0wgy/_old  2012-10-06 18:39:07.0 +0200
+++ /var/tmp/diff_new_pack.wg0wgy/_new  2012-10-06 18:39:07.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses-pkg (Version 2.42.2)
+# spec file for package libyui-ncurses-pkg (Version 2.43.0)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -18,7 +18,7 @@
 # norootforbuild
 
 Name:  libyui-ncurses-pkg
-Version:   2.42.2
+Version:   2.43.0
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-pkg-%{version}.tar.bz2
@@ -29,7 +29,7 @@
 BuildRequires: gcc-c++
 BuildRequires: pkg-config
 
-%define libyui_ncurses_devel_version   libyui-ncurses-devel = 2.42.0
+%define libyui_ncurses_devel_version   libyui-ncurses-devel = 2.43.0
 BuildRequires: %{libyui_ncurses_devel_version}
 %define libzypp_devel_version  libzypp-devel = 11.4.0
 BuildRequires: %{libzypp_devel_version}

++ libyui-ncurses-pkg-2.42.2.tar.bz2 - libyui-ncurses-pkg-2.43.0.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-pkg-2.42.2/ChangeLog 
new/libyui-ncurses-pkg-2.43.0/ChangeLog
--- old/libyui-ncurses-pkg-2.42.2/ChangeLog 2012-09-07 14:21:18.0 
+0200
+++ new/libyui-ncurses-pkg-2.43.0/ChangeLog 2012-10-04 11:58:31.0 
+0200
@@ -1,4 +1,12 @@
 ---
+Thu Oct  4 11:29:12 CEST 2012 - g...@suse.de
+
+- NCPkgTable: bug-fix for sorting the list of packages
+- Show function keys in bottom line correctly
+
+- Version 2.43.0
+
+---
 Fri Sep  7 13:51:19 CEST 2012 - tgoettlic...@suse.de
 
 - Version 2.42.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-pkg-2.42.2/VERSION.cmake 
new/libyui-ncurses-pkg-2.43.0/VERSION.cmake
--- old/libyui-ncurses-pkg-2.42.2/VERSION.cmake 2012-09-07 14:21:18.0 
+0200
+++ new/libyui-ncurses-pkg-2.43.0/VERSION.cmake 2012-10-04 11:58:31.0 
+0200
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR 2 )
-SET( VERSION_MINOR 42 )
-SET( VERSION_PATCH 2 )
+SET( VERSION_MINOR 43 )
+SET( VERSION_PATCH 0 )
 SET( VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} )
 
 # This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-pkg-2.42.2/libyui-ncurses-pkg.spec.in 
new/libyui-ncurses-pkg-2.43.0/libyui-ncurses-pkg.spec.in
--- old/libyui-ncurses-pkg-2.42.2/libyui-ncurses-pkg.spec.in2012-09-07 
14:21:18.0 +0200
+++ new/libyui-ncurses-pkg-2.43.0/libyui-ncurses-pkg.spec.in2012-10-04 
11:58:31.0 +0200
@@ -29,7 +29,7 @@
 BuildRequires: gcc-c++
 BuildRequires: pkg-config
 
-%define libyui_ncurses_devel_version   libyui-ncurses-devel = 2.42.0
+%define libyui_ncurses_devel_version   libyui-ncurses-devel = 2.43.0
 BuildRequires: %{libyui_ncurses_devel_version}
 %define libzypp_devel_version  libzypp-devel = 11.4.0
 

commit libzio for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package libzio for openSUSE:Factory checked 
in at 2012-10-05 18:38:00

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libzio/libzio.changes2012-02-15 
16:16:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.libzio.new/libzio.changes   2012-10-06 
18:39:08.0 +0200
@@ -1,0 +2,10 @@
+Fri Oct  5 07:49:23 UTC 2012 - wer...@suse.de
+
+- Strange policy causes new package libzio1
+
+---
+Thu Oct  4 13:06:40 UTC 2012 - wer...@suse.de
+
+- Correct autoconf part of the manual page 
+
+---

Old:

  libzio-0.99.tar.bz2

New:

  libzio-1.00.tar.bz2



Other differences:
--
++ libzio.spec ++
--- /var/tmp/diff_new_pack.ZWMiI5/_old  2012-10-06 18:39:08.0 +0200
+++ /var/tmp/diff_new_pack.ZWMiI5/_new  2012-10-06 18:39:08.0 +0200
@@ -15,7 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   libzio
+%define lname   libzio1
+Version:1.00
+Release:0
+Summary:A Library for Accessing Compressed Text Files
+License:GPL-2.0+
+Group:  System/Libraries
+Url:http://libzio.sourceforge.net/
+Source: libzio-%{version}.tar.bz2
+Source1:baselibs.conf
 BuildRequires:  libbz2-devel
 BuildRequires:  zlib-devel
 %if %suse_version = 1110
@@ -30,29 +40,31 @@
 Obsoletes:  libzio-64bit
 %endif
 #
-Version:0.99
-Release:0
-Summary:A Library for Accessing Compressed Text Files
-License:GPL-2.0+
-Group:  System/Libraries
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source: libzio-%{version}.tar.bz2
-Source2:baselibs.conf
 
 %description
 Libzio provides a wrapper function for reading or writing gzip or bzip2
 files with FILE streams.
 
+Author:
+
+Werner Fink wer...@suse.de
 
+%package -n %lname
+Summary:A Library for Accessing Compressed Text Files
+Group:  System/Libraries
 
-Authors:
+%description -n %lname
+Libzio provides a wrapper function for reading or writing gzip or bzip2
+files with FILE streams.
+
+Author:
 
 Werner Fink wer...@suse.de
 
 %packagedevel
 Summary:Libzio development files
 Group:  Development/Libraries/C and C++
-Requires:   libzio = %{version}
+Requires:   %lname = %{version}
 # bug437293
 %ifarch ppc64
 Obsoletes:  libzio-devel-64bit
@@ -92,13 +104,13 @@
 %install
 make DESTDIR=$RPM_BUILD_ROOT install libdir=%{_libdir} mandir=%{_mandir}
 
-%post -p /sbin/ldconfig
+%post -n %lname -p /sbin/ldconfig
 
-%postun -p /sbin/ldconfig
+%postun -n %lname -p /sbin/ldconfig
 
-%files
+%files -n %lname
 %defattr(-,root,root)
-%{_libdir}/libzio.so.0
+%{_libdir}/libzio.so.1
 %{_libdir}/libzio.so.%{version}
 
 %files devel

++ libzio-0.99.tar.bz2 - libzio-1.00.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzio-0.99/Makefile new/libzio-1.00/Makefile
--- old/libzio-0.99/Makefile2009-02-23 15:55:44.0 +0100
+++ new/libzio-1.00/Makefile2012-10-04 15:34:02.0 +0200
@@ -7,8 +7,8 @@
 LARGE  = $(shell getconf LFS_CFLAGS)
 CFLAGS = $(RPM_OPT_FLAGS) -pipe -Wall -D_GNU_SOURCE -D_REENTRANT $(LARGE)
 CC = gcc
-MAJOR  = 0
-MINOR  = 99
+MAJOR  = 1
+MINOR  = 00
 VERSION= $(MAJOR).$(MINOR)
 SONAME = libzio.so.$(MAJOR)
 LDMAP  = -Wl,--version-script=zio.map
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzio-0.99/fzopen.3.in new/libzio-1.00/fzopen.3.in
--- old/libzio-0.99/fzopen.3.in 2009-02-23 15:59:59.0 +0100
+++ new/libzio-1.00/fzopen.3.in 2012-10-04 15:04:26.0 +0200
@@ -142,7 +142,7 @@
 .nf
 AC_CHECK_HEADER(zio.h, [
   AC_CHECK_LIB(zio, fzopen, [
-AC_CHECK_LIB(zio, fdzopen, [LIBS=$LIBS -l$zio; am_cv_libzio=yes])
+AC_CHECK_LIB(zio, fdzopen, [LIBS=$LIBS -lzio; am_cv_libzio=yes])
   ])
 ])
 if test $am_cv_libzio = yes; then
@@ -167,11 +167,20 @@
 done
   ])
   AC_CHECK_HEADER(lzmadec.h, [
-for lib in libzma lzmadec; do
+for lib in lzma lzmadec; do
   AC_CHECK_LIB($lib, lzmadec_open, [
 LIBS=$LIBS -l$lib
 am_cv_libzio=$am_cv_libzio lib$lib
 break
+  ])
+done
+  ])
+  AC_CHECK_HEADER(lzma.h, [
+for lib in lzma; do
+  AC_CHECK_LIB($lib, lzma_easy_encoder, [
+LIBS=$LIBS -l$lib
+am_cv_libzio=$am_cv_libzio lib$lib
+break
   ])
 done
  

commit mariadb for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package mariadb for openSUSE:Factory checked 
in at 2012-10-05 13:46:13

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


Package is mariadb, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/mariadb/mariadb.changes  2012-07-02 
21:53:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.mariadb.new/mariadb.changes 2012-10-06 
18:39:22.0 +0200
@@ -1,0 +2,10 @@
+Tue Aug 28 11:53:55 UTC 2012 - xg...@tellas.gr
+
+- Reenable use of initgroups() (revert a temporary workaround
+  for ancient bmc#3037, search below for bug #39798).
+  This is necessary if we want to use the auth_pam plugin to 
+  authenticate users against their unix password via pam_unix2.
+  For that, mysqld must run as group shadow and maintain membership
+  after forking.
+
+---



Other differences:
--
++ build.inc ++
--- /var/tmp/diff_new_pack.GBHwIX/_old  2012-10-06 18:39:23.0 +0200
+++ /var/tmp/diff_new_pack.GBHwIX/_new  2012-10-06 18:39:23.0 +0200
@@ -6,7 +6,7 @@
 %if 0%{?suse_version}  1140
 export WARN_DIS=$WARN_DIS -Wno-unused-but-set-variable -fno-strict-aliasing 
-Wno-unused-parameter 
 %endif
-export CFLAGS=$RPM_OPT_FLAGS -DPIC -fPIC -DUNDEF_HAVE_INITGROUPS 
-DFORCE_INIT_OF_VARS $WARN_DIS 
+export CFLAGS=$RPM_OPT_FLAGS -DPIC -fPIC -DFORCE_INIT_OF_VARS $WARN_DIS 
 export CXXFLAGS=$CFLAGS -fno-exceptions -fno-rtti
 
 %if 0%{use_cmake}  1

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



commit mobipocket for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package mobipocket for openSUSE:Factory 
checked in at 2012-10-04 20:01:02

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


Package is mobipocket, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/mobipocket/mobipocket.changes2012-09-11 
07:59:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.mobipocket.new/mobipocket.changes   
2012-10-06 18:39:29.0 +0200
@@ -1,0 +2,6 @@
+Sun Sep 30 07:32:53 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/4.9.2/ for details
+
+---

Old:

  kdegraphics-mobipocket-4.9.1.tar.xz

New:

  kdegraphics-mobipocket-4.9.2.tar.xz



Other differences:
--
++ mobipocket.spec ++
--- /var/tmp/diff_new_pack.GNbMqj/_old  2012-10-06 18:39:30.0 +0200
+++ /var/tmp/diff_new_pack.GNbMqj/_new  2012-10-06 18:39:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mobipocket
-Version:4.9.1
+Version:4.9.2
 Release:0
 Summary:E-book plugin for Okular
 License:GPL-2.0+

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



commit mol for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package mol for openSUSE:Factory checked in 
at 2012-10-04 20:01:13

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


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

Changes:

--- /work/SRC/openSUSE:Factory/mol/mol.changes  2011-09-23 02:13:07.0 
+0200
+++ /work/SRC/openSUSE:Factory/.mol.new/mol.changes 2012-10-06 
18:39:30.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 27 11:41:37 UTC 2012 - sch...@linux-m68k.org
+
+- Clean up specfile
+- Add autoconf to BuildRequires
+- mol.config.patch: Fix missing include of mol_config.h
+
+---

New:

  mol.config.patch



Other differences:
--
++ mol.spec ++
--- /var/tmp/diff_new_pack.azBBWC/_old  2012-10-06 18:39:31.0 +0200
+++ /var/tmp/diff_new_pack.azBBWC/_new  2012-10-06 18:39:31.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package mol (Version 0.9.72.1)
+# spec file for package mol
 #
-# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,19 +16,24 @@
 #
 
 
-
 Name:   mol
-BuildRequires:  alsa-devel bison libpng-devel ncurses-devel xorg-x11-devel
+BuildRequires:  alsa-devel
+BuildRequires:  autoconf
+BuildRequires:  bison
+BuildRequires:  libpng-devel
+BuildRequires:  ncurses-devel
+BuildRequires:  xorg-x11-devel
 Summary:Mac on Linux
-Version:0.9.72.1
-Release:76
 License:GPL-2.0+
 Group:  System/Emulators/Other
-Source0:
ftp://ftp.sourceforge.net/pub/sourceforge/m/ma/mac-on-linux/mol-%{version}.tar.bz2
+Version:0.9.72.1
+Release:0
+Source0:
http://prdownloads.sourceforge.net/mac-on-linux/mol-%{version}.tar.bz2
 Source1:rpmlintrc
 Url:http://mac-on-linux.sourceforge.net/
 Patch0: mol.make-verbose.patch
 Patch1: mol.insmod.patch
+Patch2: mol.config.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  ppc
 
@@ -39,16 +44,11 @@
 WITHOUT A ROM IMAGE*. To run earlier versions, a ROM image is probably
 needed.
 
-
-
-Authors:
-
-Samuel Rydh sam...@ibrium.se
-
 %prep
 %setup -q 
 %patch0 -p1
 %patch1 -p1
+%patch2
 
 %build
 CFLAGS=$RPM_OPT_FLAGS -U_FORTIFY_SOURCE -Wall -D_FILE_OFFSET_BITS=64 \

++ mol.config.patch ++
--- src/drivers/disk/blk_dmg.c
+++ src/drivers/disk/blk_dmg.c
@@ -26,6 +26,7 @@
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  * THE SOFTWARE.
  */
+#include mol_config.h
 #include stdio.h
 #include blk_dmg.h
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mplus-fonts for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package mplus-fonts for openSUSE:Factory 
checked in at 2012-10-05 18:38:08

Comparing /work/SRC/openSUSE:Factory/mplus-fonts (Old)
 and  /work/SRC/openSUSE:Factory/.mplus-fonts.new (New)


Package is mplus-fonts, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/mplus-fonts/mplus-fonts.changes  2012-08-07 
08:11:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.mplus-fonts.new/mplus-fonts.changes 
2012-10-06 18:39:34.0 +0200
@@ -1,0 +2,7 @@
+Wed Sep 19 16:26:50 UTC 2012 - ft...@geeko.jp
+
+- updated to testflight 052
+  * New 100 glyphs and 4300 kanji glyphs are available in total.
+  * This version covers JIS Level 1. 
+
+---

Old:

  mplus-TESTFLIGHT-051.tar.bz2

New:

  mplus-TESTFLIGHT-052.tar.bz2



Other differences:
--
++ mplus-fonts.spec ++
--- /var/tmp/diff_new_pack.gE7TIj/_old  2012-10-06 18:39:36.0 +0200
+++ /var/tmp/diff_new_pack.gE7TIj/_new  2012-10-06 18:39:36.0 +0200
@@ -15,10 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define mplusname mplus-TESTFLIGHT-051
+
+%define mplusname mplus-TESTFLIGHT-052
 
 Name:   mplus-fonts
-Version:1.0.51
+Version:1.0.52
 Release:0
 Summary:Free Fonts Set Incorporates All Kanji Until Level 2 and Latin 
Glyphs
 License:SUSE-mplus

++ mplus-TESTFLIGHT-051.tar.bz2 - mplus-TESTFLIGHT-052.tar.bz2 ++
/work/SRC/openSUSE:Factory/mplus-fonts/mplus-TESTFLIGHT-051.tar.bz2 
/work/SRC/openSUSE:Factory/.mplus-fonts.new/mplus-TESTFLIGHT-052.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 nepomuk-core for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package nepomuk-core for openSUSE:Factory 
checked in at 2012-10-05 13:46:23

Comparing /work/SRC/openSUSE:Factory/nepomuk-core (Old)
 and  /work/SRC/openSUSE:Factory/.nepomuk-core.new (New)


Package is nepomuk-core, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/nepomuk-core/nepomuk-core.changes
2012-09-11 07:52:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.nepomuk-core.new/nepomuk-core.changes   
2012-10-06 18:39:42.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 10:21:11 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/4.9.2/ for details
+
+---

Old:

  nepomuk-core-4.9.1.tar.xz

New:

  nepomuk-core-4.9.2.tar.xz



Other differences:
--
++ nepomuk-core.spec ++
--- /var/tmp/diff_new_pack.jHGJLf/_old  2012-10-06 18:39:44.0 +0200
+++ /var/tmp/diff_new_pack.jHGJLf/_new  2012-10-06 18:39:44.0 +0200
@@ -34,7 +34,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://nepomuk.kde.org/
-Version:4.9.1
+Version:4.9.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 Source99:   nepomuk.png


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



commit obs-service-tar_scm for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package obs-service-tar_scm for 
openSUSE:Factory checked in at 2012-10-04 20:01:38

Comparing /work/SRC/openSUSE:Factory/obs-service-tar_scm (Old)
 and  /work/SRC/openSUSE:Factory/.obs-service-tar_scm.new (New)


Package is obs-service-tar_scm, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/obs-service-tar_scm/obs-service-tar_scm.changes  
2012-09-26 16:25:14.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.obs-service-tar_scm.new/obs-service-tar_scm.changes 
2012-10-06 18:39:51.0 +0200
@@ -1,0 +2,7 @@
+Mon Oct  1 07:15:03 UTC 2012 - cth...@suse.com
+
+- change default versionformat from author date (%at) to commiter date (%ct)
+  for git, to fix issues with cherry-picked commits resulting in decreased
+  version
+
+---



Other differences:
--
++ gitfixtures.py ++
--- /var/tmp/diff_new_pack.qn2beJ/_old  2012-10-06 18:39:52.0 +0200
+++ /var/tmp/diff_new_pack.qn2beJ/_new  2012-10-06 18:39:52.0 +0200
@@ -37,7 +37,7 @@
 tag = 'tag' + str(rev_num)
 self.run('tag ' + tag)
 self.revs[rev_num]   = tag
-self.timestamps[tag] = self.get_metadata('%at')
+self.timestamps[tag] = self.get_metadata('%ct')
 self.sha1s[tag]  = self.get_metadata('%h')
 self.scmlogs.annotate(
 Recorded rev %d: id %s, timestamp %s, SHA1 %s % \

++ gittests.py ++
--- /var/tmp/diff_new_pack.qn2beJ/_old  2012-10-06 18:39:52.0 +0200
+++ /var/tmp/diff_new_pack.qn2beJ/_new  2012-10-06 18:39:52.0 +0200
@@ -11,7 +11,7 @@
 fixtures_class = GitFixtures
 
 abbrev_hash_format = '%h'
-timestamp_format   = '%at'
+timestamp_format   = '%ct'
 
 def default_version(self):
 return self.timestamps(self.rev(2))

++ tar_scm ++
--- /var/tmp/diff_new_pack.qn2beJ/_old  2012-10-06 18:39:52.0 +0200
+++ /var/tmp/diff_new_pack.qn2beJ/_new  2012-10-06 18:39:52.0 +0200
@@ -378,7 +378,7 @@
   if [ -z $MYFORMAT ]; then
 case $MYSCM in
   git)
-MYFORMAT=%at
+MYFORMAT=%ct
 ;;
   hg)
 MYFORMAT={rev}

++ tar_scm.service ++
--- /var/tmp/diff_new_pack.qn2beJ/_old  2012-10-06 18:39:52.0 +0200
+++ /var/tmp/diff_new_pack.qn2beJ/_new  2012-10-06 18:39:52.0 +0200
@@ -20,7 +20,7 @@
 descriptionSpecify version to be used in tarball. Defaults to 
automatically detected value formatted by versionformat parameter./description
   /parameter
   parameter name=versionformat
-descriptionAuto-generate version from checked out source using this 
format string. For git, value is passed via git show --pretty=format:... 
(default '%at'); for hg, via hg log --template=... (default '{rev}'); for bzr 
and svn, %r is revision (default '%r'). Overrides tarball name defined by 
version parameter./description
+descriptionAuto-generate version from checked out source using this 
format string. For git, value is passed via git show --pretty=format:... 
(default '%ct'); for hg, via hg log --template=... (default '{rev}'); for bzr 
and svn, %r is revision (default '%r'). Overrides tarball name defined by 
version parameter./description
   /parameter
   parameter name=versionprefix
 descriptionspecify a base version as prefix./description

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



commit okular for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package okular for openSUSE:Factory checked 
in at 2012-10-05 13:46:32

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


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

Changes:

--- /work/SRC/openSUSE:Factory/okular/okular.changes2012-09-11 
07:59:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.okular.new/okular.changes   2012-10-06 
18:39:53.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 10:06:44 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/4.9.2/ for details
+
+---

Old:

  okular-4.9.1.tar.xz

New:

  okular-4.9.2.tar.xz



Other differences:
--
++ okular.spec ++
--- /var/tmp/diff_new_pack.em0qD0/_old  2012-10-06 18:39:54.0 +0200
+++ /var/tmp/diff_new_pack.em0qD0/_new  2012-10-06 18:39:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   okular
-Version:4.9.1
+Version:4.9.2
 Release:0
 Summary:Document Viewer
 License:GPL-2.0+

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



commit oxygen-gtk2 for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package oxygen-gtk2 for openSUSE:Factory 
checked in at 2012-10-05 18:38:23

Comparing /work/SRC/openSUSE:Factory/oxygen-gtk2 (Old)
 and  /work/SRC/openSUSE:Factory/.oxygen-gtk2.new (New)


Package is oxygen-gtk2, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/oxygen-gtk2/oxygen-gtk2.changes  2012-07-24 
17:20:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.oxygen-gtk2.new/oxygen-gtk2.changes 
2012-10-06 18:40:02.0 +0200
@@ -1,0 +2,10 @@
+Fri Oct  5 08:22:12 UTC 2012 - m...@suse.com
+
+- Update to version 1.3.1
+  * Thread-proof timers used for transitions and animations (kde#306671)
+  * Safer code for Groupbox appearance
+  * Proper rendering of flat GtkEntries
+  * Honor custom color for menu background (kde#304063)
+  * More testing options for the demo application 
+
+---

Old:

  oxygen-gtk2-1.3.0.tar.bz2

New:

  oxygen-gtk2-1.3.1.tar.bz2



Other differences:
--
++ oxygen-gtk2.spec ++
--- /var/tmp/diff_new_pack.UoUVLZ/_old  2012-10-06 18:40:03.0 +0200
+++ /var/tmp/diff_new_pack.UoUVLZ/_new  2012-10-06 18:40:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   oxygen-gtk2
-Version:1.3.0
+Version:1.3.1
 Release:0
 Summary:A Port of the default KDE Widget Theme (Oxygen), to GTK 2.x
 License:LGPL-2.1+

++ oxygen-gtk2-1.3.0.tar.bz2 - oxygen-gtk2-1.3.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-gtk2-1.3.0/CMakeLists.txt 
new/oxygen-gtk2-1.3.1/CMakeLists.txt
--- old/oxygen-gtk2-1.3.0/CMakeLists.txt2012-07-16 19:09:24.0 
+0200
+++ new/oxygen-gtk2-1.3.1/CMakeLists.txt2012-10-03 09:50:32.0 
+0200
@@ -13,7 +13,7 @@
 set( CPACK_PACKAGE_VENDOR h...@oxygen-icons.org )
 set( CPACK_PACKAGE_VERSION_MAJOR 1 )
 set( CPACK_PACKAGE_VERSION_MINOR 3 )
-set( CPACK_PACKAGE_VERSION_PATCH 0 )
+set( CPACK_PACKAGE_VERSION_PATCH 1 )
 set( CPACK_SOURCE_IGNORE_FILES build ^${PROJECT_SOURCE_DIR}.*/.git/ )
 
 ##
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-gtk2-1.3.0/demo/oxygeninputdemowidget.cpp 
new/oxygen-gtk2-1.3.1/demo/oxygeninputdemowidget.cpp
--- old/oxygen-gtk2-1.3.0/demo/oxygeninputdemowidget.cpp2012-07-16 
19:09:24.0 +0200
+++ new/oxygen-gtk2-1.3.1/demo/oxygeninputdemowidget.cpp2012-10-03 
09:50:32.0 +0200
@@ -68,6 +68,8 @@
 gtk_entry_set_text( GTK_ENTRY( lineEditor ), Example text );
 gtk_widget_show( lineEditor );
 
+_entries.push_back( lineEditor );
+
 // invisible line editor
 gtk_table_attach( GTK_TABLE( table ), label = gtk_label_new( Password 
editor:  ), 0, 1, 1, 2, GTK_FILL, GTK_FILL, 2, 0 );
 gtk_misc_set_alignment( GTK_MISC( label ), 1, 0.5 );
@@ -78,6 +80,8 @@
 gtk_entry_set_visibility( GTK_ENTRY( lineEditor ), false );
 gtk_widget_show( lineEditor );
 
+_entries.push_back( lineEditor );
+
 // combobox
 gtk_table_attach( GTK_TABLE( table ), label = gtk_label_new( Editable 
combobox:  ), 0, 1, 2, 3, GTK_FILL, GTK_FILL, 2, 0 );
 gtk_misc_set_alignment( GTK_MISC( label ), 1, 0.5 );
@@ -123,6 +127,17 @@
 gtk_table_attach( GTK_TABLE( table ), spinButton = 
gtk_spin_button_new_with_range( 0, 100, 1 ), 1, 2, 3, 4, GTK_FILL, GTK_FILL, 2, 
0  );
 gtk_widget_show( spinButton );
 
+_entries.push_back( spinButton );
+
+// flat widget button
+GtkWidget* checkbutton;
+gtk_table_attach( GTK_TABLE( table ), checkbutton = 
gtk_check_button_new_with_label( Use flat widgets ), 0, 2, 4, 5, GTK_FILL, 
GTK_FILL, 2, 0  );
+gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( checkbutton ), false 
);
+gtk_widget_show( checkbutton );
+
+_flatModeChangedId.connect( G_OBJECT( checkbutton ), toggled, 
G_CALLBACK( flatModeChanged ), this );
+
+
 // separator
 GtkWidget* separator( gtk_hseparator_new() );
 gtk_box_pack_start( GTK_BOX( mainWidget ), separator, false, true, 0 );
@@ -172,7 +187,6 @@
 gtk_box_pack_start( GTK_BOX( mainWidget ), scrolledWindow, true, true, 
0 );
 gtk_widget_show( scrolledWindow );
 
-GtkWidget* checkbutton;
 gtk_box_pack_start( GTK_BOX( mainWidget ), checkbutton = 
gtk_check_button_new_with_label( Wrap words ), false, true, 0 );
 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( checkbutton ), true );
 gtk_widget_show( checkbutton );
@@ -186,9 +200,17 @@
 {}
 
 

commit oxygen-gtk3 for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package oxygen-gtk3 for openSUSE:Factory 
checked in at 2012-10-05 18:38:29

Comparing /work/SRC/openSUSE:Factory/oxygen-gtk3 (Old)
 and  /work/SRC/openSUSE:Factory/.oxygen-gtk3.new (New)


Package is oxygen-gtk3, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/oxygen-gtk3/oxygen-gtk3.changes  2012-07-24 
17:20:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.oxygen-gtk3.new/oxygen-gtk3.changes 
2012-10-06 18:40:04.0 +0200
@@ -1,0 +2,9 @@
+Fri Oct  5 08:20:46 UTC 2012 - m...@suse.com
+
+- Update to version 1.1.1
+  * Thread-proof timers used for transitions and animations (kde#306671)
+  * Safer code for Groupbox appearance (kde#305833)
+  * Proper rendering of flat GtkEntries
+  * More testing options for the demo application 
+
+---

Old:

  oxygen-gtk3-1.1.0.tar.bz2

New:

  oxygen-gtk3-1.1.1.tar.bz2



Other differences:
--
++ oxygen-gtk3.spec ++
--- /var/tmp/diff_new_pack.SjTImT/_old  2012-10-06 18:40:04.0 +0200
+++ /var/tmp/diff_new_pack.SjTImT/_new  2012-10-06 18:40:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   oxygen-gtk3
-Version:1.1.0
+Version:1.1.1
 Release:0
 Summary:A Port of the default KDE Widget Theme (Oxygen), to GTK 3.x
 License:LGPL-2.1+

++ oxygen-gtk3-1.1.0.tar.bz2 - oxygen-gtk3-1.1.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-gtk3-1.1.0/CMakeLists.txt 
new/oxygen-gtk3-1.1.1/CMakeLists.txt
--- old/oxygen-gtk3-1.1.0/CMakeLists.txt2012-07-16 19:17:32.0 
+0200
+++ new/oxygen-gtk3-1.1.1/CMakeLists.txt2012-10-04 10:12:10.0 
+0200
@@ -13,7 +13,7 @@
 set( CPACK_PACKAGE_VENDOR h...@oxygen-icons.org )
 set( CPACK_PACKAGE_VERSION_MAJOR 1 )
 set( CPACK_PACKAGE_VERSION_MINOR 1 )
-set( CPACK_PACKAGE_VERSION_PATCH 0 )
+set( CPACK_PACKAGE_VERSION_PATCH 1 )
 set( CPACK_SOURCE_IGNORE_FILES build ^${PROJECT_SOURCE_DIR}.*/.git/ )
 
 ##
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-gtk3-1.1.0/demo/oxygeninputdemowidget.cpp 
new/oxygen-gtk3-1.1.1/demo/oxygeninputdemowidget.cpp
--- old/oxygen-gtk3-1.1.0/demo/oxygeninputdemowidget.cpp2012-07-16 
19:17:32.0 +0200
+++ new/oxygen-gtk3-1.1.1/demo/oxygeninputdemowidget.cpp2012-10-04 
10:12:10.0 +0200
@@ -68,6 +68,8 @@
 gtk_entry_set_text( GTK_ENTRY( lineEditor ), Example text );
 gtk_widget_show( lineEditor );
 
+_entries.push_back( lineEditor );
+
 // invisible line editor
 gtk_grid_attach( GTK_GRID( grid ), label = gtk_label_new( Password 
editor:  ), 0, 1, 1, 1 );
 gtk_misc_set_alignment( GTK_MISC( label ), 1, 0.5 );
@@ -78,6 +80,8 @@
 gtk_entry_set_visibility( GTK_ENTRY( lineEditor ), false );
 gtk_widget_show( lineEditor );
 
+_entries.push_back( lineEditor );
+
 // combobox
 gtk_grid_attach( GTK_GRID( grid ), label = gtk_label_new( Editable 
combobox:  ), 0, 2, 1, 1 );
 gtk_misc_set_alignment( GTK_MISC( label ), 1, 0.5 );
@@ -116,6 +120,17 @@
 gtk_grid_attach( GTK_GRID( grid ), spinButton = 
gtk_spin_button_new_with_range( 0, 100, 1 ), 1, 3, 1, 1 );
 gtk_widget_show( spinButton );
 
+_entries.push_back( spinButton );
+
+// flat widget button
+GtkWidget* checkbutton;
+gtk_grid_attach( GTK_GRID( grid ), checkbutton = 
gtk_check_button_new_with_label( Use flat widgets ), 0, 4, 2, 1 );
+gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( checkbutton ), false 
);
+gtk_widget_show( checkbutton );
+
+_flatModeChangedId.connect( G_OBJECT( checkbutton ), toggled, 
G_CALLBACK( flatModeChanged ), this );
+
+
 // separator
 GtkWidget* separator( gtk_separator_new( GTK_ORIENTATION_HORIZONTAL ) 
);
 gtk_box_pack_start( GTK_BOX( mainWidget ), separator, false, true, 0 );
@@ -165,7 +180,6 @@
 gtk_box_pack_start( GTK_BOX( mainWidget ), scrolledWindow, true, true, 
0 );
 gtk_widget_show( scrolledWindow );
 
-GtkWidget* checkbutton;
 gtk_box_pack_start( GTK_BOX( mainWidget ), checkbutton = 
gtk_check_button_new_with_label( Wrap words ), false, true, 0 );
 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( checkbutton ), true );
 gtk_widget_show( checkbutton );
@@ -179,9 +193,17 @@
 {}
 
 //
-void InputDemoWidget::wrapModeChanged( GtkToggleButton* button, gpointer 
data )
+void 

commit oxygen-icon-theme for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package oxygen-icon-theme for 
openSUSE:Factory checked in at 2012-10-05 13:46:54

Comparing /work/SRC/openSUSE:Factory/oxygen-icon-theme (Old)
 and  /work/SRC/openSUSE:Factory/.oxygen-icon-theme.new (New)


Package is oxygen-icon-theme, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/oxygen-icon-theme/oxygen-icon-theme.changes  
2012-09-11 07:59:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.oxygen-icon-theme.new/oxygen-icon-theme.changes 
2012-10-06 18:40:05.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 10:30:14 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/4.9.2/ for details
+
+---

Old:

  oxygen-icons-4.9.1.tar.xz

New:

  oxygen-icons-4.9.2.tar.xz



Other differences:
--
++ oxygen-icon-theme.spec ++
--- /var/tmp/diff_new_pack.VWCvjh/_old  2012-10-06 18:40:21.0 +0200
+++ /var/tmp/diff_new_pack.VWCvjh/_new  2012-10-06 18:40:21.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   oxygen-icon-theme
-Version:4.9.1
+Version:4.9.2
 Release:0
 Summary:Oxygen Icon Theme
 License:LGPL-2.1+











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



commit post-build-checks for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package post-build-checks for 
openSUSE:Factory checked in at 2012-10-05 13:47:25

Comparing /work/SRC/openSUSE:Factory/post-build-checks (Old)
 and  /work/SRC/openSUSE:Factory/.post-build-checks.new (New)


Package is post-build-checks, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/post-build-checks/post-build-checks.changes  
2012-09-23 21:10:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.post-build-checks.new/post-build-checks.changes 
2012-10-06 18:42:04.0 +0200
@@ -1,0 +2,6 @@
+Thu Oct  4 12:32:06 UTC 2012 - dmuel...@suse.com
+
+- merge /proc mount/umounting patch from AJ
+- add _service file to easily recreate the tarball from git
+
+---



Other differences:
--
++ post-build-checks-1.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/post-build-checks-1.0/checks/06-check-installtest 
new/post-build-checks-1.0/checks/06-check-installtest
--- old/post-build-checks-1.0/checks/06-check-installtest   2012-09-23 
11:37:14.0 +0200
+++ new/post-build-checks-1.0/checks/06-check-installtest   2012-10-04 
14:31:41.0 +0200
@@ -17,6 +17,8 @@
 
 SCRIPT_ARG=-e
 
+# rpm needs /proc mounted
+mount -n -tproc none $BUILD_ROOT/proc
 export YAST_IS_RUNNING=instsys
 for i in `find $BUILD_ROOT$TOPDIR/RPMS -name *.rpm | sort` ; do
 test -f $i || continue
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/post-build-checks-1.0/checks/09-check-packaged-twice 
new/post-build-checks-1.0/checks/09-check-packaged-twice
--- old/post-build-checks-1.0/checks/09-check-packaged-twice2012-09-23 
11:37:14.0 +0200
+++ new/post-build-checks-1.0/checks/09-check-packaged-twice2012-10-04 
14:31:41.0 +0200
@@ -44,6 +44,7 @@
 my %alldirs;
 my %pkg2rpm;
 
+system(mount -n -tproc none $build_root/proc);
 for my $rpm (@rpms) {
 next if ($rpm =~ m/-debuginfo/ || $rpm =~ m/-debugsource/);
 open (FILES, chroot $build_root rpm -qp --qf '[%{FILEMODES:perms} 
F:%{FILEFLAGS:fflags} %{NAME} %{FILEUSERNAME}:%{FILEGROUPNAME} %{FILENAMES}\n]' 
$rpm|);
@@ -60,7 +61,7 @@
 my $owner = $4;
 my $filename = $5;
 if ($filemodes =~ /^d/) {
-  $alldirs{$filename}-{$pkgname} = $fflags . $owner;
+  $alldirs{$filename}-{$pkgname} = $fflags:$owner;
 } else {
   $allfiles{$filename}-{$pkgname} = $fflags;
 }
@@ -96,4 +97,5 @@
 }
 }
 
+system(umount $build_root/proc);
 exit $had_errors;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/post-build-checks-1.0/checks/12-check-libtool-deps 
new/post-build-checks-1.0/checks/12-check-libtool-deps
--- old/post-build-checks-1.0/checks/12-check-libtool-deps  2012-09-23 
11:37:14.0 +0200
+++ new/post-build-checks-1.0/checks/12-check-libtool-deps  2012-10-04 
14:31:41.0 +0200
@@ -193,6 +193,8 @@
 fi
 echo (can be skipped by \skip-check-libtool-deps\ anywhere in spec)
 
+mount -n -tproc none $BUILD_ROOT/proc
+
 shopt -s nullglob
 IFS=$IFS:,
 
@@ -201,6 +203,7 @@
 done
 rpm_find_all_deps_reset
 
+umount $BUILD_ROOT/proc
 
 if test $RC -gt 0 ; then
 echo All errors are just warnings for now.

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



commit python3 for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package python3 for openSUSE:Factory checked 
in at 2012-10-04 20:02:16

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


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

Changes:

--- /work/SRC/openSUSE:Factory/python3/python3-base.changes 2012-07-30 
20:39:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3.new/python3-base.changes
2012-10-06 18:42:46.0 +0200
@@ -1,0 +2,39 @@
+Mon Oct  1 08:53:03 UTC 2012 - idon...@suse.com
+
+- Update to final 3.3.0 release
+  * See http://hg.python.org/cpython/file/v3.3.0/Misc/NEWS
+
+---
+Thu Sep 27 12:35:01 UTC 2012 - idon...@suse.com
+
+- Correct dependency for python3-testsuite, 
+  python3-tkinter - python3-tk
+
+---
+Thu Aug 23 13:08:11 UTC 2012 - jmate...@suse.com
+
+- update to 3.3.0 RC1
+
+---
+Fri Aug  3 12:09:34 UTC 2012 - jmate...@suse.com
+
+- update to 3.3.0 beta 1
+* flexible string representation, no longer distinguishing
+  between wide and narrow Unicode builds
+* importlib-based import system
+* virtualenv support in core
+* namespace packages
+* explicit Unicode literals for easier porting
+* key-sharing dict implementation reduces memory footprint
+  of OO code
+* hash randomization on by default
+* many other new bugfixes and features, check NEWS for details
+
+- pre_checkin.sh now autofills various version strings in specs
+- ship hashlib's fallback modules - those uselessly take up space
+  when real _hashlib.so from python3 is present, but the space wasted
+  is only 114kB and it provides python3-base with a working hashlib
+  module.
+  (also, this fixes bnc#743787)
+
+---
--- /work/SRC/openSUSE:Factory/python3/python3-doc.changes  2012-07-14 
11:51:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3.new/python3-doc.changes 2012-10-06 
18:42:46.0 +0200
@@ -1,0 +2,11 @@
+Mon Oct  1 08:53:43 UTC 2012 - idon...@suse.com
+
+- Update to final 3.3.0 release
+  * See http://hg.python.org/cpython/file/v3.3.0/Misc/NEWS
+
+---
+Fri Aug  3 12:13:10 UTC 2012 - jmate...@suse.com
+
+- update to 3.3.0 beta 1
+
+---
--- /work/SRC/openSUSE:Factory/python3/python3.changes  2012-07-30 
20:39:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3.new/python3.changes 2012-10-06 
18:42:46.0 +0200
@@ -1,0 +2,18 @@
+Mon Oct  1 08:52:01 UTC 2012 - idon...@suse.com
+
+- Update to final 3.3.0 release
+  * See http://hg.python.org/cpython/file/v3.3.0/Misc/NEWS
+
+---
+Mon Aug 27 16:36:03 UTC 2012 - jmate...@suse.com
+
+- update to 3.3.0 RC1
+- added Provides for %{python_version}, we'll see whether that
+  breaks everything
+
+---
+Fri Aug  3 12:12:58 UTC 2012 - jmate...@suse.com
+
+- update to 3.3.0 beta 1
+
+---

Old:

  Python-3.2.1-multilib.patch
  Python-3.2.3.tar.bz2
  python-2.6b3-curses-panel.patch
  python-3.2-docs-html.tar.bz2
  python-3.2-docs-pdf-a4.tar.bz2
  python-3.2-docs-pdf-letter.tar.bz2
  python-3.2.1-fix_date_time_compiler.patch
  python-3.2.3rc2-localpath.patch

New:

  Python-3.3.0.tar.bz2
  Python-3.3.0b2-multilib.patch
  python-3.3.0-docs-html.tar.bz2
  python-3.3.0-docs-pdf-a4.tar.bz2
  python-3.3.0-docs-pdf-letter.tar.bz2
  python-3.3.0b1-curses-panel.patch
  python-3.3.0b1-fix_date_time_compiler.patch
  python-3.3.0b1-localpath.patch
  python-3.3.0b1-test-posix_fadvise.patch



Other differences:
--
++ python3-base.spec ++
--- /var/tmp/diff_new_pack.8MNBDC/_old  2012-10-06 18:42:48.0 +0200
+++ /var/tmp/diff_new_pack.8MNBDC/_new  2012-10-06 18:42:48.0 +0200
@@ -32,7 +32,7 @@
 Summary:Python3 Interpreter
 License:Python-2.0
 Group:  Development/Languages/Python
-Version:3.2.3
+Version:3.3.0
 Release:0
 %define tarversion %{version}
 %define tarnamePython-%{tarversion}
@@ -59,39 +59,45 @@
 # implement --record-rpm option for distutils installations
 Patch01:Python-3.0b1-record-rpm.patch
 # support lib-vs-lib64 distinction
-Patch02:Python-3.2.1-multilib.patch
+Patch02:Python-3.3.0b2-multilib.patch
 # securing 

commit rng-tools for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package rng-tools for openSUSE:Factory 
checked in at 2012-10-05 13:47:46

Comparing /work/SRC/openSUSE:Factory/rng-tools (Old)
 and  /work/SRC/openSUSE:Factory/.rng-tools.new (New)


Package is rng-tools, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rng-tools/rng-tools.changes  2012-01-31 
10:22:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.rng-tools.new/rng-tools.changes 2012-10-06 
18:43:06.0 +0200
@@ -1,0 +2,14 @@
+Thu Oct  4 14:31:13 UTC 2012 - l...@linux-schulserver.de
+
+- update to version 4:
+  * Add RDRAND instruction support
+  * Add -q and -v options for quiet and verbose output
+  * Add -p option for specifying PID file (text file containing daemon's PID)
+  * Disable entropy source if facing continued failures, but be
+tolerant of the occasional fault.
+  * Default device is now the preferred /dev/hwrng
+  * Do not use TPM device for RNG access, if /dev/hwrng is present
+(TPM RNG is exported via the kernel, in newer kernels)
+- require $remote_fs in init script as binaries are below /usr
+
+---

Old:

  rng-tools-3.tar.bz2

New:

  rng-tools-4.tar.bz2



Other differences:
--
++ rng-tools.spec ++
--- /var/tmp/diff_new_pack.9n1iz4/_old  2012-10-06 18:43:07.0 +0200
+++ /var/tmp/diff_new_pack.9n1iz4/_new  2012-10-06 18:43:07.0 +0200
@@ -16,20 +16,19 @@
 #
 
 
-
 Name:   rng-tools
 BuildRequires:  automake
-BuildRequires:  trousers-devel
 BuildRequires:  systemd
-License:GPL-3.0+
-Group:  System/Kernel
+BuildRequires:  trousers-devel
 ExclusiveArch:  %ix86 ia64 x86_64
 Summary:Support daemon for hardware random device
-Version:3
+License:GPL-3.0+
+Group:  System/Kernel
+Version:4
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://sourceforge.net/projects/gkernel/
-Source: rng-tools-3.tar.bz2 
+Source: %{name}-%{version}.tar.bz2 
 Source1:%name.init
 Source2:%{name}.service
 PreReq: %fillup_prereq
@@ -75,19 +74,11 @@
 
 %description
 This  daemon  feeds data from a random number generator to the kernel's
- random  number  entropy  pool,  after first checking the data to
+random  number  entropy  pool,  after  first checking the data to
 ensure that it is properly random.
 
-
-
-Authors:
-
-Philipp Rumpf pru...@mandrakesoft.com
-Jeff Garzik jgar...@mandrakesoft.com
-Matt Sottek
-
 %prep
-%setup -q -n rng-tools-3
+%setup -q
 
 %build
 autoreconf --force --install

++ rng-tools-3.tar.bz2 - rng-tools-4.tar.bz2 ++
 6055 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/rng-tools-3/Makefile.am new/rng-tools-4/Makefile.am
--- old/rng-tools-3/Makefile.am 2009-12-24 07:47:24.0 +0100
+++ new/rng-tools-4/Makefile.am 2012-08-02 06:18:37.0 +0200
@@ -10,7 +10,8 @@
 noinst_LIBRARIES = librngd.a
 
 rngd_SOURCES   = rngd.h rngd.c rngd_entsource.h rngd_entsource.c   \
- rngd_linux.h rngd_linux.c
+ rngd_linux.h rngd_linux.c util.c  \
+ rngd_rdrand.c rdrand_asm.S
 rngd_LDADD = librngd.a
 
 rngtest_SOURCES= exits.h stats.h stats.c rngtest.c
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/rng-tools-3/NEWS new/rng-tools-4/NEWS
--- old/rng-tools-3/NEWS2010-07-04 04:54:07.0 +0200
+++ new/rng-tools-4/NEWS2012-08-02 21:01:16.0 +0200
@@ -1,4 +1,14 @@
 
+Version 4 (August 2, 2012):
+* Add RDRAND instruction support
+* Add -q and -v options for quiet and verbose output
+* Add -p option for specifying PID file (text file containing daemon's PID)
+* Disable entropy source if facing continued failures, but be
+  tolerant of the occasional fault.
+* Default device is now the preferred /dev/hwrng
+* Do not use TPM device for RNG access, if /dev/hwrng is present
+  (TPM RNG is exported via the kernel, in newer kernels)
+
 Version 3 (July 3, 2010):
 
 * add rngtest program
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit rpmlint for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory checked 
in at 2012-10-05 13:48:02

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


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

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes  2012-09-23 
08:01:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes 2012-10-06 
18:43:08.0 +0200
@@ -1,0 +2,24 @@
+Thu Oct  4 07:39:05 UTC 2012 - a...@suse.de
+
+- Remove check for /var/lock and /var/run since it's in upstream
+  rpmlint already.
+
+---
+Wed Sep 26 13:10:02 UTC 2012 - a...@suse.de
+
+- Add README.packaging.txt to explain packaging of file
+  rpmlint-checks-$VERSION.tar.gz
+- Package all *py files into rpmlint-checks tarball
+- Add _service file to update rpmlint-checks tarball
+- Add /etc/systemd.d, /etc/modules-load.d and /etc/tmpfiles.d to the
+  blacklist, only users should write here.
+- Blacklist the directories used by systemd.
+- Remove SuSEconfig directories (update patch suse-filesystem.diff)
+- Add warnings about files on tmpfs in /var/lock or /var/run.
+
+---
+Wed Sep 26 09:16:37 UTC 2012 - dmuel...@suse.com
+
+- restore LibraryPolicy from git
+
+---

Old:

  BashismsCheck.py
  BrandingPolicyCheck.py
  CheckAlternativesGhostFiles.py
  CheckBuildDate.py
  CheckBuildRoot.py
  CheckCommonFiles.py
  CheckDBUSServices.py
  CheckDBusPolicy.py
  CheckExecDocs.py
  CheckFilelist.py
  CheckGNOMEMacros.py
  CheckIconSizes.py
  CheckInitScripts.py
  CheckKDE4Deps.py
  CheckLogrotate.py
  CheckPAMModules.py
  CheckPkgConfig.py
  CheckPolkitPrivs.py
  CheckSUIDPermissions.py
  DuplicatesCheck.py
  KMPPolicyCheck.py
  LibraryPolicyCheck.py

New:

  README.packaging.txt
  _service
  rpmlint-checks-master.tar.gz



Other differences:
--
++ rpmlint.spec ++
--- /var/tmp/diff_new_pack.kLzQaw/_old  2012-10-06 18:43:12.0 +0200
+++ /var/tmp/diff_new_pack.kLzQaw/_new  2012-10-06 18:43:12.0 +0200
@@ -28,33 +28,12 @@
 Version:1.4
 Release:0
 Source0:http://rpmlint.zarb.org/download/rpmlint-%{version}.tar.xz
-Source1:config
-Source1001: config.in
-Source3:DuplicatesCheck.py
-Source4:CheckBuildRoot.py
-Source5:CheckExecDocs.py
-Source6:CheckPkgConfig.py
-Source7:LibraryPolicyCheck.py
-Source8:CheckCommonFiles.py
-Source9:CheckInitScripts.py
-Source10:   CheckIconSizes.py
-Source11:   BrandingPolicyCheck.py
-Source12:   CheckKDE4Deps.py
-Source13:   KMPPolicyCheck.py
-Source14:   CheckSUIDPermissions.py
-Source15:   CheckPolkitPrivs.py
-Source16:   CheckDBUSServices.py
-Source17:   CheckFilelist.py
-Source18:   CheckDBusPolicy.py
-Source19:   CheckAlternativesGhostFiles.py
-Source20:   rpmgroups.config
-Source21:   BashismsCheck.py
-Source22:   CheckGNOMEMacros.py
-Source23:   CheckBuildDate.py
-Source24:   pie.config
-Source25:   licenses.config
-Source26:   CheckLogrotate.py
-Source27:   CheckPAMModules.py
+Source1:rpmlint-checks-master.tar.gz
+Source2:config
+Source3:config.in
+Source10:   rpmgroups.config
+Source11:   pie.config
+Source12:   licenses.config
 Source100:  syntax-validator.py
 Url:http://rpmlint.zarb.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -69,6 +48,10 @@
 Requires:   python-magic
 Requires:   rpm-python
 BuildArch:  noarch
+#
+# Read README.packaging.txt before making any changes to this
+# package
+#
 Patch0: rpmlint-suse.diff
 Patch1: suse-checks.diff
 Patch2: suse-version.diff
@@ -148,7 +131,7 @@
 Gwenole Beauchesne gbeauche...@mandriva.com
 
 %prep
-%setup -q -n rpmlint-%{version}
+%setup -q -n rpmlint-%{version} -a1
 %patch0
 %patch1
 %patch2
@@ -214,29 +197,10 @@
 %patch88
 %patch89
 %patch90 -p1
-cp -p %{SOURCE1} .
-cp -p %{SOURCE3} .
-cp -p %{SOURCE4} .
-cp -p %{SOURCE5} .
-cp -p %{SOURCE6} .
-cp -p %{SOURCE7} .
-cp -p %{SOURCE8} .
-cp -p %{SOURCE9} .
-cp -p %{SOURCE10} .
-cp -p %{SOURCE11} .
-cp -p %{SOURCE12} .
-cp -p %{SOURCE13} .
-cp -p %{SOURCE14} .
-cp -p %{SOURCE15} .
-cp -p %{SOURCE16} .
-cp -p %{SOURCE17} .
-cp -p %{SOURCE18} .
-cp -p %{SOURCE19} .
-cp -p %{SOURCE21} .
-cp -p %{SOURCE22} .
-cp -p %{SOURCE23} .
-cp -p %{SOURCE26} .
-cp -p %{SOURCE27} .
+cp -p %{SOURCE2} .
+# Only move top-level python files 
+chmod 0755 rpmlint-checks-master/*.py
+mv 

commit skanlite for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package skanlite for openSUSE:Factory 
checked in at 2012-10-05 13:48:11

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


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

Changes:

--- /work/SRC/openSUSE:Factory/skanlite/skanlite.changes2011-12-25 
17:41:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.skanlite.new/skanlite.changes   2012-10-06 
18:43:41.0 +0200
@@ -1,0 +2,10 @@
+Wed Sep 26 20:30:37 UTC 2012 - asterios.dra...@gmail.com
+
+- Update to version 0.9:
+  * (Fix regression) Base suggested file name on previous name.
+  * Remove the save without asking and keep the ask for first, because you
+probably want to see where the files go anyways the first time around.
+- Keep only the english documentation in the doc subpackage (move the other
+  languages to the lang subpackage).
+
+---

Old:

  skanlite-0.8.tar.bz2

New:

  skanlite-0.9.tar.bz2



Other differences:
--
++ skanlite.spec ++
--- /var/tmp/diff_new_pack.ZsiZOV/_old  2012-10-06 18:43:44.0 +0200
+++ /var/tmp/diff_new_pack.ZsiZOV/_new  2012-10-06 18:43:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package skanlite
 #
-# 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,14 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   skanlite
-Version:0.8
+Version:0.9
 Release:0
 Summary:Image Scanner Application
 License:LGPL-2.1+
 Group:  Hardware/Scanner
 Url:http://kde-apps.org/content/show.php?content=109803
-Source0:
http://downloads.sourceforge.net/sanewidget/%{name}-%{version}.tar.bz2
+Source0:
http://download.kde.org/stable/%{name}/%{version}/src/%{name}-%{version}.tar.bz2
 BuildRequires:  libkde4-devel
 BuildRequires:  libksane-devel
 BuildRequires:  oxygen-icon-theme
@@ -52,9 +53,7 @@
 %make_jobs
 
 %install
-cd build
-%kde4_makeinstall
-cd ..
+%kde4_makeinstall -C build
 
 for i in {16,22,32,48,64}; do
mkdir -p %{buildroot}%{_kde4_iconsdir}/hicolor/$ix$i/apps
@@ -75,18 +74,9 @@
 %files doc
 %defattr(-,root,root,-)
 %doc %lang(en)%{_kde4_htmldir}/en/skanlite/
-%doc %lang(de)%{_kde4_htmldir}/de/skanlite/
-%doc %lang(sv)%{_kde4_htmldir}/sv/skanlite/
-%doc %lang(it)%{_kde4_htmldir}/it/skanlite/
-%doc %lang(pt_BR) %{_kde4_htmldir}/pt_BR/skanlite/
-%doc %lang(fr)%{_kde4_htmldir}/fr/skanlite/
-%doc %lang(es)%{_kde4_htmldir}/es/skanlite/
-%doc %lang(pt)%{_kde4_htmldir}/pt/skanlite/
-%doc %lang(et)%{_kde4_htmldir}/et/skanlite/
-%doc %lang(uk)%{_kde4_htmldir}/uk/skanlite/
 
 %files lang -f %{name}.lang
 %defattr(-,root,root,-)
-%exclude %{_kde4_htmldir}/
+%exclude %{_kde4_htmldir}/en/skanlite/
 
 %changelog

++ skanlite-0.8.tar.bz2 - skanlite-0.9.tar.bz2 ++
 19987 lines of diff (skipped)

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



commit sqlite3 for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package sqlite3 for openSUSE:Factory checked 
in at 2012-10-05 13:48:31

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


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

Changes:

--- /work/SRC/openSUSE:Factory/sqlite3/sqlite3.changes  2012-09-10 
15:21:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.sqlite3.new/sqlite3.changes 2012-10-06 
18:43:52.0 +0200
@@ -1,0 +2,12 @@
+Fri Oct  5 07:13:36 UTC 2012 - m...@suse.com
+
+- Bugfix release 3.7.14.1:
+  * Fix a bug that causes a segfault on a LEFT JOIN that includes
+an OR in the ON clause.
+  * Work around a bug in the optimizer in the VisualStudio-2012
+compiler that causes invalid code to be generated when
+compiling SQLite on ARM.
+  * Fix the TCL interface so that the nullvalue setting is
+honored for TCL implementations of SQL functions.
+
+---

Old:

  sqlite-autoconf-3071400.tar.gz

New:

  sqlite-autoconf-3071401.tar.gz



Other differences:
--
++ sqlite3.spec ++
--- /var/tmp/diff_new_pack.XDdmrc/_old  2012-10-06 18:43:53.0 +0200
+++ /var/tmp/diff_new_pack.XDdmrc/_new  2012-10-06 18:43:53.0 +0200
@@ -17,9 +17,9 @@
 
 
 Name:   sqlite3
-Version:3.7.14
+Version:3.7.14.1
 Release:0
-%define tarversion 3071400
+%define tarversion 3071401
 Summary:Embeddable SQL Database Engine
 License:SUSE-Public-Domain
 Group:  Productivity/Databases/Servers

++ sqlite-autoconf-3071400.tar.gz - sqlite-autoconf-3071401.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqlite-autoconf-3071400/configure 
new/sqlite-autoconf-3071401/configure
--- old/sqlite-autoconf-3071400/configure   2012-09-03 18:17:12.0 
+0200
+++ new/sqlite-autoconf-3071401/configure   2012-10-04 21:49:41.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for sqlite 3.7.14.
+# Generated by GNU Autoconf 2.68 for sqlite 3.7.14.1.
 #
 # Report bugs to http://www.sqlite.org.
 #
@@ -714,8 +714,8 @@
 # Identity of this package.
 PACKAGE_NAME='sqlite'
 PACKAGE_TARNAME='sqlite'
-PACKAGE_VERSION='3.7.14'
-PACKAGE_STRING='sqlite 3.7.14'
+PACKAGE_VERSION='3.7.14.1'
+PACKAGE_STRING='sqlite 3.7.14.1'
 PACKAGE_BUGREPORT='http://www.sqlite.org'
 PACKAGE_URL=''
 
@@ -1437,7 +1437,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures sqlite 3.7.14 to adapt to many kinds of systems.
+\`configure' configures sqlite 3.7.14.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1507,7 +1507,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of sqlite 3.7.14:;;
+ short | recursive ) echo Configuration of sqlite 3.7.14.1:;;
esac
   cat \_ACEOF
 
@@ -1617,7 +1617,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-sqlite configure 3.7.14
+sqlite configure 3.7.14.1
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2237,7 +2237,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by sqlite $as_me 3.7.14, which was
+It was created by sqlite $as_me 3.7.14.1, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -2906,7 +2906,7 @@
 
 # Define the identity of the package.
  PACKAGE='sqlite'
- VERSION='3.7.14'
+ VERSION='3.7.14.1'
 
 
 cat confdefs.h _ACEOF
@@ -20487,7 +20487,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by sqlite $as_me 3.7.14, which was
+This file was extended by sqlite $as_me 3.7.14.1, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -20544,7 +20544,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 ac_cs_config=`$as_echo $ac_configure_args | sed 's/^ //; 
s/[\\\`\$]//g'`
 ac_cs_version=\\
-sqlite config.status 3.7.14
+sqlite config.status 3.7.14.1
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\\$ac_cs_config\\
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqlite-autoconf-3071400/configure.ac 
new/sqlite-autoconf-3071401/configure.ac
--- 

commit superkaramba for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package superkaramba for openSUSE:Factory 
checked in at 2012-10-05 13:48:52

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


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

Changes:

--- /work/SRC/openSUSE:Factory/superkaramba/superkaramba.changes
2012-09-11 08:00:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.superkaramba.new/superkaramba.changes   
2012-10-06 18:43:57.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 10:23:57 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/4.9.2/ for details
+
+---

Old:

  superkaramba-4.9.1.tar.xz

New:

  superkaramba-4.9.2.tar.xz



Other differences:
--
++ superkaramba.spec ++
--- /var/tmp/diff_new_pack.cZaA5p/_old  2012-10-06 18:43:58.0 +0200
+++ /var/tmp/diff_new_pack.cZaA5p/_new  2012-10-06 18:43:58.0 +0200
@@ -31,7 +31,7 @@
 BuildRequires:  python-devel
 BuildRequires:  xz
 BuildRequires:  xz-devel
-Version:4.9.1
+Version:4.9.2
 Release:0
 Summary:Superkaramba allows you to have (interactive) desktop widgets
 License:GPL-2.0+

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



commit sushi for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package sushi for openSUSE:Factory checked 
in at 2012-10-05 18:38:46

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


Package is sushi, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/sushi/sushi.changes  2012-10-03 
15:10:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.sushi.new/sushi.changes 2012-10-06 
18:43:59.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct  1 20:37:18 UTC 2012 - dims...@opensuse.org
+
+- Add glib2_gsettings_schema_* handling to preamble, post and
+  postun. Fixes bnc#782917.
+
+---



Other differences:
--
++ sushi.spec ++
--- /var/tmp/diff_new_pack.yy6XY1/_old  2012-10-06 18:44:00.0 +0200
+++ /var/tmp/diff_new_pack.yy6XY1/_new  2012-10-06 18:44:00.0 +0200
@@ -51,6 +51,7 @@
 # libsushi and the typelib were erronously installed in the system libdir... 
 Obsoletes:  libsushi-1_0-0  %{version}
 Obsoletes:  typelib-1_0-Sushi-1_0  %{version}
+%glib2_gsettings_schema_requires
 
 %description
 Sushi is a quick previewer for Nautilus, the GNOME desktop file manager.
@@ -68,6 +69,12 @@
 find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
 %find_lang %{name} %{?no_lang_C}
 
+%post
+%glib2_gsettings_schema_post
+
+%postun
+%glib2_gsettings_schema_postun
+
 %clean
 rm -rf %{buildroot}
 


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



commit sweeper for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package sweeper for openSUSE:Factory checked 
in at 2012-10-05 18:39:03

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


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

Changes:

--- /work/SRC/openSUSE:Factory/sweeper/sweeper.changes  2012-09-11 
08:00:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.sweeper.new/sweeper.changes 2012-10-06 
18:44:02.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 10:24:03 UTC 2012 - tittiatc...@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/4.9.2/ for details
+
+---

Old:

  sweeper-4.9.1.tar.xz

New:

  sweeper-4.9.2.tar.xz



Other differences:
--
++ sweeper.spec ++
--- /var/tmp/diff_new_pack.Qi40j8/_old  2012-10-06 18:44:03.0 +0200
+++ /var/tmp/diff_new_pack.Qi40j8/_new  2012-10-06 18:44:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   sweeper
-Version:4.9.1
+Version:4.9.2
 Release:0
 Summary:KDE Privacy Utility
 License:LGPL-2.1+

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



commit telepathy-glib for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package telepathy-glib for openSUSE:Factory 
checked in at 2012-10-05 18:39:11

Comparing /work/SRC/openSUSE:Factory/telepathy-glib (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-glib.new (New)


Package is telepathy-glib, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-glib/telepathy-glib.changes
2012-10-03 15:11:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.telepathy-glib.new/telepathy-glib.changes   
2012-10-06 18:44:08.0 +0200
@@ -1,0 +2,6 @@
+Thu Oct  4 09:20:12 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.20.0:
+  + There were no code changes since 0.19.10.
+
+---

Old:

  telepathy-glib-0.19.10.tar.gz

New:

  telepathy-glib-0.20.0.tar.gz



Other differences:
--
++ telepathy-glib.spec ++
--- /var/tmp/diff_new_pack.yKjCdo/_old  2012-10-06 18:44:12.0 +0200
+++ /var/tmp/diff_new_pack.yKjCdo/_new  2012-10-06 18:44:12.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   telepathy-glib
-Version:0.19.10
+Version:0.20.0
 Release:0
 Summary:GObject-based library for the Telepathy D-Bus API
 License:LGPL-2.1+

++ telepathy-glib-0.19.10.tar.gz - telepathy-glib-0.20.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/telepathy-glib-0.19.10/ChangeLog 
new/telepathy-glib-0.20.0/ChangeLog
--- old/telepathy-glib-0.19.10/ChangeLog2012-09-26 16:06:44.0 
+0200
+++ new/telepathy-glib-0.20.0/ChangeLog 2012-10-03 14:07:57.0 +0200
@@ -1,3 +1,57 @@
+commit 2c9b852db37f2ba1df678f94d6d9a6e93f0a0634
+Author: Guillaume Desmottes guillaume.desmot...@collabora.co.uk
+Date:   2012-10-03 12:48:13 +0200
+
+prepare 0.20.0
+
+commit 1bf52d3274028450a9d16a30ca663a411dc4a65e
+Author: Simon McVittie simon.mcvit...@collabora.co.uk
+Date:   2012-10-03 09:56:51 +0100
+
+NEWS file for 0.20
+
+commit 8a13206cedc749c301521f65b7f6f017fa39aee5
+Author: Simon McVittie simon.mcvit...@collabora.co.uk
+Date:   2012-10-03 09:50:39 +0100
+
+Upload documentation to the 0.20.x location
+
+To be reverted in the 0.21 branch.
+
+commit 860832b0521da2145e71bb2c06ff05b3a921c59f
+Author: Simon McVittie simon.mcvit...@collabora.co.uk
+Date:   2012-10-03 09:49:33 +0100
+
+Don't check documentation completeness in this stable branch
+
+To be reverted in the 0.21 branch.
+
+commit 74b79c60c152d7ac49f091c88c2001a6dcec93f1
+Author: Simon McVittie simon.mcvit...@collabora.co.uk
+Date:   2010-04-06 12:33:21 +0100
+
+Disable warnings about deprecated functions for stable branch
+
+Since this is a stable branch, we're unlikely to fix uses of
+deprecated functions, so we shouldn't warn about them.
+
+To be reverted in the 0.21 branch.
+
+commit ed43abb7603e1286dbcbefbad75f354a654cae37
+Author: Simon McVittie simon.mcvit...@collabora.co.uk
+Date:   2012-10-02 16:15:53 +0100
+
+Bump libtool current/age even though nothing actually changed
+
+This is to compensate for 0.19.10, which should have incremented them
+(because it added API) but didn't.
+
+commit 7c8d17cc9540823fa75b4ecfc6a431fdbc8712e2
+Author: Guillaume Desmottes guillaume.desmot...@collabora.co.uk
+Date:   2012-09-26 16:10:30 +0200
+
+set nano version
+
 commit 884e32afc11107aa8e12ff282a90c10113adba49
 Author: Guillaume Desmottes guillaume.desmot...@collabora.co.uk
 Date:   2012-09-26 15:36:10 +0200
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/telepathy-glib-0.19.10/Makefile.am 
new/telepathy-glib-0.20.0/Makefile.am
--- old/telepathy-glib-0.19.10/Makefile.am  2012-06-20 10:49:00.0 
+0200
+++ new/telepathy-glib-0.20.0/Makefile.am   2012-10-03 14:04:45.0 
+0200
@@ -37,7 +37,7 @@
 maintainer-upload-release: _maintainer-upload-release-local
 _maintainer-upload-release-local: _maintainer-upload-release-check
rsync -rvzPp --chmod=Dg+s,ug+rwX,o=rX $(builddir)/docs/reference/html/ \
-   
telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/doc/telepathy-glib/
+   
telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/doc/telepathy-glib-0.20.x/
 
 BRANCH = $(shell sh tools/git-which-branch.sh misc | tr -d '\n' | tr -C 
[:alnum:] _)
 UPLOAD_BRANCH_TO = people.freedesktop.org:public_html/telepathy-glib
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/telepathy-glib-0.19.10/Makefile.in 
new/telepathy-glib-0.20.0/Makefile.in
--- old/telepathy-glib-0.19.10/Makefile.in  2012-09-26 16:04:53.0 
+0200
+++ 

commit telepathy-mission-control for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package telepathy-mission-control for 
openSUSE:Factory checked in at 2012-10-05 18:39:20

Comparing /work/SRC/openSUSE:Factory/telepathy-mission-control (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-mission-control.new (New)


Package is telepathy-mission-control, Maintainer is 
gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/telepathy-mission-control/telepathy-mission-control.changes
  2012-10-03 10:43:07.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.telepathy-mission-control.new/telepathy-mission-control.changes
 2012-10-06 18:44:13.0 +0200
@@ -1,0 +2,6 @@
+Thu Oct  4 09:19:11 UTC 2012 - dims...@opensuse.org
+
+- Update to version 5.14.0:
+  + There were no code changes since 5.13.2.
+
+---

Old:

  telepathy-mission-control-5.13.2.tar.gz

New:

  telepathy-mission-control-5.14.0.tar.gz



Other differences:
--
++ telepathy-mission-control.spec ++
--- /var/tmp/diff_new_pack.yti9Zn/_old  2012-10-06 18:44:15.0 +0200
+++ /var/tmp/diff_new_pack.yti9Zn/_new  2012-10-06 18:44:15.0 +0200
@@ -19,7 +19,7 @@
 Url:http://mission-control.sourceforge.net/
 
 Name:   telepathy-mission-control
-Version:5.13.2
+Version:5.14.0
 Release:0
 Summary:Telepathy Mission Control instant messaging connection manager
 License:LGPL-2.1

++ telepathy-mission-control-5.13.2.tar.gz - 
telepathy-mission-control-5.14.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/telepathy-mission-control-5.13.2/ChangeLog 
new/telepathy-mission-control-5.14.0/ChangeLog
--- old/telepathy-mission-control-5.13.2/ChangeLog  2012-09-20 
16:44:48.0 +0200
+++ new/telepathy-mission-control-5.14.0/ChangeLog  2012-10-03 
19:27:48.0 +0200
@@ -1,3 +1,56 @@
+commit c1fe16e325d1622bea056dbc8679c23e72000386
+Author: Simon McVittie simon.mcvit...@collabora.co.uk
+Date:   2012-10-03 18:11:25 +0100
+
+fix Makefile syntax
+
+commit a433ba2a46c9fdcd73e365c88639a6e501762893
+Author: Simon McVittie simon.mcvit...@collabora.co.uk
+Date:   2012-09-21 15:35:54 +0100
+
+exec-with-log.sh: add gdb wrapper
+
+Based on a patch from Jonny Lamb; changed to use ${abs_top_srcdir} to
+work out-of-tree, backtrace all threads, and put the gdb script in /tools.
+
+Signed-off-by: Simon McVittie simon.mcvit...@collabora.co.uk
+
+commit 91006767d5ce8f95b43c7ff85fc6e5ec90d8895c
+Author: Guillaume Desmottes guillaume.desmot...@collabora.co.uk
+Date:   2012-10-03 14:37:26 +0200
+
+prepare 5.14.0
+
+commit 4e5a187773cb34de567e3cf90d62710830bbd876
+Author: Simon McVittie simon.mcvit...@collabora.co.uk
+Date:   2012-08-27 10:50:08 +0100
+
+Don't warn on deprecated declarations, this is a stable branch.
+
+Signed-off-by: Simon McVittie simon.mcvit...@collabora.co.uk
+
+commit 5f156149b05e7b5ab9e54729136d9d59128c
+Author: Guillaume Desmottes guillaume.desmot...@collabora.co.uk
+Date:   2012-10-03 15:05:06 +0200
+
+Upload documentation to the 5.14.x location
+
+To be reverted in the 5.15 branch.
+
+commit 2a0b73c02353a155e473504546a8b7e598da4449
+Author: Guillaume Desmottes guillaume.desmot...@collabora.co.uk
+Date:   2012-10-03 14:57:48 +0200
+
+Don't check documentation completeness in this stable branch
+
+To be reverted in the 5.15 branch.
+
+commit 90a3b33273dd4384ebf653c9ec4c7a5fbc752246
+Author: Simon McVittie simon.mcvit...@collabora.co.uk
+Date:   2012-09-20 16:15:48 +0100
+
+Post-release version bump
+
 commit e80d7797aa038480701c6819bc178c9302d823e7
 Author: Simon McVittie simon.mcvit...@collabora.co.uk
 Date:   2012-09-20 15:41:12 +0100
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/telepathy-mission-control-5.13.2/Makefile.am 
new/telepathy-mission-control-5.14.0/Makefile.am
--- old/telepathy-mission-control-5.13.2/Makefile.am2012-09-13 
19:36:12.0 +0200
+++ new/telepathy-mission-control-5.14.0/Makefile.am2012-10-03 
19:08:47.0 +0200
@@ -30,7 +30,7 @@
 maintainer-upload-release: _maintainer-upload-release-local
 _maintainer-upload-release-local: _maintainer-upload-release-check
rsync -rvzPp --chmod=Dg+s,ug+rwX,o=rX 
doc/reference/mission-control-plugins/html/ \
-   
telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/doc/mission-control-plugins/
+   
telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/doc/mission-control-plugins-5.14.x/
 
 include tools/lcov.am
 include tools/telepathy.am
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit texinfo for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package texinfo for openSUSE:Factory checked 
in at 2012-10-06 08:18:42

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


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

Changes:

--- /work/SRC/openSUSE:Factory/texinfo/texinfo.changes  2012-07-19 
17:45:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.texinfo.new/texinfo.changes 2012-10-06 
18:44:17.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct  6 06:18:21 UTC 2012 - co...@suse.com
+
+- remove prereq on library names
+
+---



Other differences:
--
++ texinfo.spec ++
--- /var/tmp/diff_new_pack.HwJVqF/_old  2012-10-06 18:44:19.0 +0200
+++ /var/tmp/diff_new_pack.HwJVqF/_new  2012-10-06 18:44:19.0 +0200
@@ -29,7 +29,7 @@
 %global version_t2h 1.82
 %global version_t2r 2.0
 Summary:Tools Needed to Create Documentation from Texinfo Sources
-License:GPL-2.0+ ; GPL-3.0+
+License:GPL-2.0+ and GPL-3.0+
 Group:  Productivity/Publishing/Texinfo
 Url:http://www.texinfo.org
 PreReq: %{install_info_prereq}
@@ -74,28 +74,11 @@
 
 Aggregated with texinfo in this package is texi2html and texi2roff.
 
-
-Authors:
-
-Andreas Schwab sch...@suse.de
-Brian Fox b...@gnu.org
-Charles Hannum mycr...@gnu.org
-Daniel Hagerty h...@gnu.org
-David J. MacKenzie d...@gnu.org
-Eli Zaretskii  e...@is.elta.co.il
-Jim Meyering meyer...@na-net.ornl.gov
-Karl Berry  k...@gnu.org
-Kaveh R. Ghazi gh...@caip.rutgers.edu
-Noah Friedman fried...@prep.org
-Richard Stallman r...@gnu.org
-Robert J. Chassell b...@gnu.org
-Roland McGrath rol...@gnu.org
-
 %package -n info
 Summary:A Stand-Alone Terminal-Based Info Browser
 License:GPL-3.0+
 Group:  Productivity/Publishing/Texinfo
-PreReq: bash zlib libzio
+PreReq: bash
 
 %description -n info
 Info is a terminal-based program for reading documentation of computer
@@ -103,24 +86,6 @@
 on-line manuals in the Info format, so you need a program called Info
 reader to read the manuals.
 
-
-
-Authors:
-
-Andreas Schwab sch...@suse.de
-Brian Fox b...@gnu.org
-Charles Hannum mycr...@gnu.org
-Daniel Hagerty h...@gnu.org
-David J. MacKenzie d...@gnu.org
-Eli Zaretskii  e...@is.elta.co.il
-Jim Meyering meyer...@na-net.ornl.gov
-Karl Berry  k...@gnu.org
-Kaveh R. Ghazi gh...@caip.rutgers.edu
-Noah Friedman fried...@prep.org
-Richard Stallman r...@gnu.org
-Robert J. Chassell b...@gnu.org
-Roland McGrath rol...@gnu.org
-
 %package -n makeinfo
 Summary:Translate Texinfo documents to info format
 License:GPL-3.0+


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



commit tomahawk for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package tomahawk for openSUSE:Factory 
checked in at 2012-10-04 20:05:28

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


Package is tomahawk, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/tomahawk/tomahawk.changes2012-09-11 
17:18:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.tomahawk.new/tomahawk.changes   2012-10-06 
18:44:27.0 +0200
@@ -1,0 +2,12 @@
+Fri Sep 28 16:13:47 UTC 2012 - d...@dominik-schmidt.de
+
+- remove the crash reporter in the file list for %arm, it's not
+  built there - i'll investigate why it's disabled 
+
+---
+Mon Sep 17 14:58:27 UTC 2012 - d...@dominik-schmidt.de
+
+- use %icon_theme_cache_post(un)
+- add libqt4-sql-sqlite as runtime dependency 
+
+---



Other differences:
--
++ tomahawk.spec ++
--- /var/tmp/diff_new_pack.mIcBlN/_old  2012-10-06 18:44:28.0 +0200
+++ /var/tmp/diff_new_pack.mIcBlN/_new  2012-10-06 18:44:28.0 +0200
@@ -30,6 +30,8 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://gettomahawk.com
 
+Requires:   libqt4-sql-sqlite
+
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 
@@ -115,15 +117,20 @@
 %post
 /sbin/ldconfig
 %desktop_database_post
+%icon_theme_cache_post
 
 %postun
 /sbin/ldconfig
 %desktop_database_postun
+%icon_theme_cache_postun
 
 %files
 %defattr(-,root,root,0755)
 %{_bindir}/tomahawk
+
+%ifnarch %arm
 %{_libexecdir}/tomahawk_crash_reporter
+%endif
 
 %{_libdir}/libtomahawklib.so
 %{_libdir}/libtomahawk_*.so

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



commit totem for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package totem for openSUSE:Factory checked 
in at 2012-10-05 18:39:29

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


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

Changes:

--- /work/SRC/openSUSE:Factory/totem/totem.changes  2012-08-22 
12:17:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem.new/totem.changes 2012-10-06 
18:44:29.0 +0200
@@ -1,0 +2,90 @@
+Tue Sep 25 10:37:59 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.6.0:
+  + Browser Plugin: Fix the plugin not loading correctly
+  + Properties: Fix memory leaks.
+
+---
+Sun Sep 23 09:47:42 UTC 2012 - co...@suse.com
+
+- Replace ';' with 'and' in license tag.
+
+---
+Tue Sep 18 11:06:08 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.92:
+  + Backend:
+- Fix duration conversion
+- Simplify GStreamer helpers
+- Fix warning related to g_object_unref()
+  + Browser plugin:
+- Fix broken UI because of the new GtkMenuButton
+  + Main:
+- Remove documentation list from About dialogue
+  + Properties:
+- Fix string leaks.
+
+---
+Thu Sep 13 18:50:23 UTC 2012 - dims...@opensuse.org
+
+- Add gstreamer-plugin-gstclutter Requires: totem checks for the
+  availability of cluttersink. Totem fails to start without it.
+
+---
+Wed Aug 22 09:02:30 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.5.90:
+  + Plenty of build fixes to make it possible to build with Wayland
+support
+  + Increase thumbnail size to 256 px
+  + Movie player:
+- Rename to Videos
+- Hide titlebar when maximised
+- Move some menu items to the app menu
+- Command-line parsing bug fixes
+- Use Grilo to list DVDs and other optical media
+- Remove connection speed preferences
+- Stop DVD playback when disc is ejected
+- Fix ordering of the playlist after drag'n'drop
+  + Backend:
+- Port to GStreamer 1.0
+- Add HTTP proxy support
+- Much improved error messages
+- Add variable rate playback
+- Use Clutter for the OSD
+- Disable visualisations by default
+- Animate rotations
+- Add av-offset support
+- Prepare the ground for chapter support in non-DVDs
+  + Plugins:
+- Make screenshot UI-less, like in gnome-shell
+- Simplify the screensaver and browser plugin code
+- Remove publish and iPlayer plugins
+- Use Grilo 0.2
+- Better search sidebar
+- Add hook for site-specific user-agents
+- Add hook for custom subtitle selection through plugins
+- Move recent-files handling to a plugin.
+- Drop xz BuildRequires as it now comes for free in the build
+  system.
+- Add pkgconfig(gsettings-desktop-schemas) BuildRequires: new
+  dependency.
+- Replace BuildRequires for the port to GStreamer 1.0:
+  + Old: gstreamer-0_10-plugins-base, gstreamer-0_10-plugins-good,
+pkgconfig(gstreamer-0.10),
+pkgconfig(gstreamer-plugins-base-0.10) and
+pkgconfig(gstreamer-tag-0.10)
+  + New: gstreamer-plugins-bad, gstreamer-plugins-good,
+pkgconfig(gstreamer-1.0), pkgconfig(gstreamer-plugins-base-1.0)
+and pkgconfig(gstreamer-tag-1.0)
+- Replace pkgconfig(grilo-0.1) BuildRequires with
+  pkgconfig(grilo-0.2)
+- Replace pkgconfig(clutter-gst-1.0) BuildRequires with
+  pkgconfig(clutter-gst-2.0)
+- Remove libXtst-devel BuildRequires: the dependency got dropped
+  with the cleanup for Wayland.
+- Remove unneeded explicit gstreamer-0_10 Requires, and change
+  gstreamer-0_10-plugins-{base,good} Requires to
+  gstreamer-plugins-{base,good}.
+
+---

Old:

  totem-3.4.3.tar.xz

New:

  totem-3.6.0.tar.xz



Other differences:
--
++ totem.spec ++
--- /var/tmp/diff_new_pack.3cIuv5/_old  2012-10-06 18:44:30.0 +0200
+++ /var/tmp/diff_new_pack.3cIuv5/_new  2012-10-06 18:44:30.0 +0200
@@ -19,41 +19,39 @@
 %define build_zeitgeist_plugin 1
 
 Name:   totem
-Version:3.4.3
+Version:3.6.0
 Release:0
 # FIXME: Check if --disable-maintainer-mode can be dropped from configure. 
Last checked with 3.2.0
 Url:http://www.gnome.org/projects/totem/
 Summary:Movie Player for the GNOME Desktop
-License:GPL-2.0+ ; LGPL-2.1+
+License:GPL-2.0+ and LGPL-2.1+
 Group:  Productivity/Multimedia/Video/Players
-Source0:

commit tuxpaint for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package tuxpaint for openSUSE:Factory 
checked in at 2012-10-06 08:19:44

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


Package is tuxpaint, Maintainer is sndir...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/tuxpaint/tuxpaint.changes2012-07-23 
10:43:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.tuxpaint.new/tuxpaint.changes   2012-10-06 
18:44:34.0 +0200
@@ -1,0 +2,6 @@
+Thu Aug 30 08:42:13 UTC 2012 - pgaj...@suse.com
+
+- fixed build with libpng15
+  * libpng15.patch
+
+---

New:

  tuxpaint-libpng15.patch



Other differences:
--
++ tuxpaint.spec ++
--- /var/tmp/diff_new_pack.lQydEC/_old  2012-10-06 18:44:35.0 +0200
+++ /var/tmp/diff_new_pack.lQydEC/_new  2012-10-06 18:44:35.0 +0200
@@ -15,26 +15,29 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   tuxpaint
 Summary:Drawing Program for Young Children
-Url:http://www.newbreedsoftware.com/tuxpaint/
 License:GPL-2.0+
 Group:  Productivity/Graphics/Bitmap Editors
+Url:http://www.newbreedsoftware.com/tuxpaint/
 Version:0.9.21
-Release:1
+Release:0
 Source: %{name}-%{version}.tar.bz2
 Patch1: tuxpaint-import-eval.patch
 Patch2: tuxpaint-de_translation.patch
 Patch3: tuxpaint-linux_arch_links.patch
 Patch4: tuxpaint-manpage_fix.patch
-BuildRequires:  fribidi-devel
-BuildRequires:  libpng-devel 
-BuildRequires:  libpaper-devel
+# libpng15.patch sent to  b...@newbreedsoftware.com
+Patch5: tuxpaint-libpng15.patch
 BuildRequires:  SDL-devel 
-BuildRequires:  SDL_image-devel 
-BuildRequires:  SDL_ttf-devel  2.0.8
 BuildRequires:  SDL_Pango-devel 
+BuildRequires:  SDL_image-devel
 BuildRequires:  SDL_mixer-devel
+BuildRequires:  SDL_ttf-devel  2.0.8
+BuildRequires:  fribidi-devel
+BuildRequires:  libpaper-devel
+BuildRequires:  libpng-devel
 BuildRequires:  zlib-devel
 #
 # openSUSE 
@@ -93,24 +96,23 @@
 
 %package devel
 Summary:Devel files of tuxpaint
-Requires:   fribidi-devel
-Requires:   libpng-devel 
-Requires:   libpaper-devel 
+Group:  Development/Libraries
+Requires:   %name = %version
 Requires:   SDL-devel
+Requires:   SDL_Pango-devel
 Requires:   SDL_image-devel 
 Requires:   SDL_mixer-devel 
 Requires:   SDL_ttf-devel 
-Requires:   SDL_Pango-devel
-Requires:   %name = %version
+Requires:   fribidi-devel
+Requires:   libpaper-devel
+Requires:   libpng-devel
 Requires:   zlib-devel
 %if 0%{?suse_version}
-Group:  Development/Libraries/Other
 Requires:   gcc-c++
 Requires:   gettext-devel 
 Requires:   librsvg-devel 
 %endif
 %if 0%{?fedora_version}
-Group:  Development/Libraries
 Requires:   gettext
 Requires:   librsvg2-devel
 %endif
@@ -133,6 +135,7 @@
 %patch3 -p0
 %endif
 %patch4 -p0
+%patch5 -p1
 sed -i s|/usr/lib|%_libdir|g Makefile
 find . -name CVS   -print0 | xargs -0 rm -rf
 find docs/ -type f -print0 | xargs -0 sed -i s|
$||g

++ tuxpaint-libpng15.patch ++
Index: tuxpaint-0.9.21/src/tuxpaint.c
===
--- tuxpaint-0.9.21.orig/src/tuxpaint.c
+++ tuxpaint-0.9.21/src/tuxpaint.c
@@ -12898,12 +12898,9 @@ static int do_png_save(FILE * fi, const
   {
png_init_io(png_ptr, fi);
 
-   info_ptr-width = surf-w;
-   info_ptr-height = surf-h;
-   info_ptr-bit_depth = 8;
-   info_ptr-color_type = PNG_COLOR_TYPE_RGB;
-   info_ptr-interlace_type = 1;
-   info_ptr-valid = 0;/* will be updated by various png_set_FOO() 
functions */
+png_set_IHDR(png_ptr, info_ptr, surf-w, surf-h, 8,
+   PNG_COLOR_TYPE_RGB, 1, PNG_COMPRESSION_TYPE_DEFAULT,
+   PNG_FILTER_TYPE_DEFAULT);
 
png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
   PNG_sRGB_INTENT_PERCEPTUAL);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit valgrind for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package valgrind for openSUSE:Factory 
checked in at 2012-10-05 13:49:02

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


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

Changes:

--- /work/SRC/openSUSE:Factory/valgrind/valgrind.changes2012-09-23 
17:31:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.valgrind.new/valgrind.changes   2012-10-06 
18:44:43.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct  4 11:36:36 UTC 2012 - dmuel...@suse.com
+
+- raise seglimit to make it more useful for some apps
+
+---

New:

  raise-segnames-limit.diff



Other differences:
--
++ valgrind.spec ++
--- /var/tmp/diff_new_pack.tQLLSK/_old  2012-10-06 18:44:44.0 +0200
+++ /var/tmp/diff_new_pack.tQLLSK/_new  2012-10-06 18:44:44.0 +0200
@@ -39,6 +39,7 @@
 # svn  di svn://svn.valgrind.org/valgrind/tags/VALGRIND_3_5_0 
svn://svn.valgrind.org/valgrind/branches/VALGRIND_3_5_BRANCH  3_5_BRANCH.diff
 # svn  di svn://svn.valgrind.org/vex/tags/VEX_3_5_0 
svn://svn.valgrind.org/vex/branches/VEX_3_5_BRANCH  VEX_3_5_BRANCH.diff
 Patch1: jit-register-unregister.diff
+Patch2: raise-segnames-limit.diff
 # during building the major version of glibc is built into the suppression file
 %define glibc_main_version %(getconf GNU_LIBC_VERSION | cut -d' ' -f2 | cut 
-d. -f1)
 %define glibc_major_version %(getconf GNU_LIBC_VERSION | cut -d' ' -f2 | cut 
-d. -f2)
@@ -136,6 +137,7 @@
 cd VEX
 cd ..
 %patch1
+%patch2
 
 %build
 %ifarch %arm

++ raise-segnames-limit.diff ++
--- coregrind/m_aspacemgr/aspacemgr-linux.c
+++ coregrind/m_aspacemgr/aspacemgr-linux.c
@@ -268,7 +268,7 @@
 #define VG_N_SEGMENTS 5000
 
 /* Max number of segment file names we can track. */
-#define VG_N_SEGNAMES 1000
+#define VG_N_SEGNAMES 4000
 
 /* Max length of a segment file name. */
 #define VG_MAX_SEGNAMELEN 1000
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit virtualbox for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package virtualbox for openSUSE:Factory 
checked in at 2012-10-04 20:06:17

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


Package is virtualbox, Maintainer is mkudlv...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/virtualbox/virtualbox.changes2012-09-29 
15:37:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.virtualbox.new/virtualbox.changes   
2012-10-06 18:44:49.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 28 11:43:59 UTC 2012 - seife+...@b1-systems.com
+
+- update to 4.2.0
+  - rebase patches
+  - remove kernel-3.6 patch, no longer needed
+
+---

Old:

  VirtualBox-4.1.18-patched.tar.bz2
  virtualbox-4.1.18-UserManual.pdf
  virtualbox-4.1.18-rpmlintrc
  virtualbox-kernel-3.6.patch

New:

  VirtualBox-4.2.0-patched.tar.bz2
  virtualbox-4.2.0-UserManual.pdf
  virtualbox-rpmlintrc



Other differences:
--
++ virtualbox.spec ++
--- /var/tmp/diff_new_pack.BjAeAn/_old  2012-10-06 18:44:51.0 +0200
+++ /var/tmp/diff_new_pack.BjAeAn/_new  2012-10-06 18:44:51.0 +0200
@@ -46,7 +46,9 @@
 BuildRequires:  e2fsprogs-devel
 BuildRequires:  gcc
 BuildRequires:  gcc-c++
-BuildRequires:  kbuild
+# virtualbox 4.2.0 does not work with older versions (check in makefile),
+# and fails with newer versions (tested with rev2662)
+BuildRequires:  kbuild = 0.1.9998svn2577
 BuildRequires:  kernel-syms
 BuildRequires:  libcap-devel
 BuildRequires:  libcurl-devel
@@ -80,7 +82,7 @@
 %endif
 #
 ExclusiveArch:  %ix86 x86_64
-Version:4.1.18
+Version:4.2.0
 Release:0
 Summary:VirtualBox is an Emulator
 License:GPL-2.0+
@@ -105,7 +107,7 @@
 # init script to start virtual boxes during boot, to be configured via 
/etc/sysconfig/vbox bnc#582398
 Source12:   %{name}-vboxes
 Source13:   %{name}-sysconfig.vbox
-Source98:   %{name}-%{version}-rpmlintrc
+Source98:   %{name}-rpmlintrc
 Source99:   %{name}-patch-source.sh
 #rework init scripts to fit suse needs
 Patch1: vbox-vboxdrv-init-script.diff
@@ -130,8 +132,6 @@
 Patch103:   vbox-disable-updates.diff
 #use pie/fPIE for setuid binaries (bnc#743143) 
 Patch104:   vbox-fpie.diff
-# Fix compilation with kernel 3.6, upstream r42784
-Patch105:   virtualbox-kernel-3.6.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: pwdutils permissions
 Requires:   %{name}-host-kmp = %version
@@ -254,7 +254,6 @@
 %patch101
 %patch103
 %patch104 -p1
-%patch105 -p1
 #copy user manual
 %__cp %{S:1} UserManual.pdf
 #copy kbuild config
@@ -712,6 +711,8 @@
 %{_vbox_instdir}/VBoxAuth.so
 %{_vbox_instdir}/VBoxAuthSimple.so
 %{_vbox_instdir}/VBoxDbg.so
+%{_vbox_instdir}/VBoxDragAndDropSvc.so
+%{_vbox_instdir}/VBoxVMMPreload.so
 #
 %dir %{_vbox_instdir}/components
 %{_vbox_instdir}/components/*.so

++ VirtualBox-4.1.18-patched.tar.bz2 - VirtualBox-4.2.0-patched.tar.bz2 
++
/work/SRC/openSUSE:Factory/virtualbox/VirtualBox-4.1.18-patched.tar.bz2 
/work/SRC/openSUSE:Factory/.virtualbox.new/VirtualBox-4.2.0-patched.tar.bz2 
differ: char 11, line 1

++ vbox-default-os-type.diff ++
--- /var/tmp/diff_new_pack.BjAeAn/_old  2012-10-06 18:44:51.0 +0200
+++ /var/tmp/diff_new_pack.BjAeAn/_new  2012-10-06 18:44:51.0 +0200
@@ -1,15 +1,21 @@
 
src/VBox/Frontends/VirtualBox/src/widgets/VBoxOSTypeSelectorWidget.cpp.orig 
   2010-11-10 21:27:23.0 +0100
-+++ src/VBox/Frontends/VirtualBox/src/widgets/VBoxOSTypeSelectorWidget.cpp 
2010-11-10 21:27:53.0 +0100
-@@ -199,10 +199,10 @@
- if (xpIndex != -1)
- mCbType-setCurrentIndex (xpIndex);
+Index: src/VBox/Frontends/VirtualBox/src/widgets/UINameAndSystemEditor.cpp
+===
+--- src/VBox/Frontends/VirtualBox/src/widgets/UINameAndSystemEditor.cpp.orig
 src/VBox/Frontends/VirtualBox/src/widgets/UINameAndSystemEditor.cpp
+@@ -198,14 +198,14 @@ void UINameAndSystemEditor::sltFamilyCha
+ {
+ int iIndexWinXP = m_pTypeCombo-findData(WindowsXP, TypeID);
+ if (iIndexWinXP != -1)
+ m_pTypeCombo-setCurrentIndex(iIndexWinXP);
  }
--/* Or select Ubuntu item for Linux family as default */
-+/* Or select openSUSE item for Linux family as default */
- else if (familyId == Linux)
+-/* Or select Ubuntu item for Linux family as default: */
++/* Or select OpenSUSE item for Linux family as default: */
+ else if (strFamilyId == Linux)
  {
--int ubIndex = mCbType-findData (Ubuntu, RoleTypeID);
-+int ubIndex = 

commit wireshark for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package wireshark for openSUSE:Factory 
checked in at 2012-10-04 20:07:46

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


Package is wireshark, Maintainer is bjzh...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/wireshark/wireshark.changes  2012-09-01 
22:39:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.wireshark.new/wireshark.changes 2012-10-06 
18:45:01.0 +0200
@@ -1,0 +2,16 @@
+Tue Oct  2 20:20:43 UTC 2012 - andreas.stie...@gmx.de
+
+- update to upstream 1.8.3 (bnc#783275)
+  + vulnerabilities fixed:
+* The HSRP dissector could go into an infinite loop.
+  (wnpa-sec-2012-26 CVE-2012-5237)
+* The PPP dissector could abort.
+  (wnpa-sec-2012-27 CVE-2012-5238)
+* Martin Wilck discovered an infinite loop in the DRDA dissector.
+  (wnpa-sec-2012-28 CVE-2012-5239 CVE-2012-3548 bnc#778000)
+* Laurent Butti discovered a buffer overflow in the LDP dissector.
+  (wnpa-sec-2012-29 CVE-2012-5240)
+  + Further bug fixes and updated protocol support as listed in:
+http://www.wireshark.org/docs/relnotes/wireshark-1.8.3.html
+
+---

Old:

  wireshark-1.8.2.tar.bz2

New:

  wireshark-1.8.3.tar.bz2



Other differences:
--
++ wireshark.spec ++
--- /var/tmp/diff_new_pack.ZXJQ6e/_old  2012-10-06 18:45:03.0 +0200
+++ /var/tmp/diff_new_pack.ZXJQ6e/_new  2012-10-06 18:45:03.0 +0200
@@ -20,7 +20,7 @@
 %define use_caps 0
 
 Name:   wireshark
-Version:1.8.2
+Version:1.8.3
 Release:0
 Summary:A Network Traffic Analyser
 License:GPL-2.0+ and GPL-3.0+

++ wireshark-1.8.2.tar.bz2 - wireshark-1.8.3.tar.bz2 ++
/work/SRC/openSUSE:Factory/wireshark/wireshark-1.8.2.tar.bz2 
/work/SRC/openSUSE:Factory/.wireshark.new/wireshark-1.8.3.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 xemacs-packages for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package xemacs-packages for openSUSE:Factory 
checked in at 2012-10-04 20:08:56

Comparing /work/SRC/openSUSE:Factory/xemacs-packages (Old)
 and  /work/SRC/openSUSE:Factory/.xemacs-packages.new (New)


Package is xemacs-packages, Maintainer is wer...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xemacs-packages/xemacs-packages.changes  
2012-08-23 15:32:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.xemacs-packages.new/xemacs-packages.changes 
2012-10-06 18:45:22.0 +0200
@@ -1,0 +2,13 @@
+Tue Oct  2 13:34:29 UTC 2012 - ailin.ne...@gmail.com
+
+- update packages to latest xemacs versions:
+  * prog-modes 2.26 - 2.27: go-mode update to 13677 (handle unit
+test failure)
+  * cc-mode 1.55 - 1.57: bug fixes
+
+---
+Tue Sep 18 11:32:03 UTC 2012 - wer...@suse.de
+
+- Again, make it build with latest TeXLive 2012 
+
+---
@@ -22 +35 @@
-- Make it build with lateswt TeXLive 2012 
+- Make it build with latest TeXLive 2012 

Old:

  update-gnus.diff
  xemacs-packages-20120625.tar.bz2

New:

  xemacs-packages-20120911.tar.bz2



Other differences:
--
++ xemacs-packages.spec ++
--- /var/tmp/diff_new_pack.jD6bCj/_old  2012-10-06 18:45:24.0 +0200
+++ /var/tmp/diff_new_pack.jD6bCj/_new  2012-10-06 18:45:24.0 +0200
@@ -31,6 +31,7 @@
 BuildRequires:  libpng-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  openldap2-devel
+BuildRequires:  texlive
 BuildRequires:  texlive-latex
 BuildRequires:  unzip
 BuildRequires:  update-desktop-files
@@ -45,13 +46,16 @@
 %if %suse_version  1220
 BuildRequires:  makeinfo
 BuildRequires:  texinfo
+BuildRequires:  texlive-amsfonts
+BuildRequires:  texlive-cm-super
+BuildRequires:  texlive-ec
 %endif
 Url:http://www.xemacs.org
 Provides:   
xemacs:%{_datadir}/xemacs/xemacs-packages/etc/auctex/style/amsart.elc
 Obsoletes:  Mule-UCS-xemacs
 Obsoletes:  apel-xemacs = 10.7
 Obsoletes:  mule-ucs-xemacs
-Version:20120625
+Version:20120911
 Release:0
 Requires:   /usr/bin/env
 #
@@ -84,8 +88,6 @@
 Patch28:texi.patch
 Patch32:bugzilla-183805-missing-autoload-cookies.patch
 Patch34:mode-local.patch
-# PATCH-FIX-OPENSUSE update-gnus.diff ailin.ne...@gmail.com -- update gnus 
version in hg checkout (can be removed when this gets updated in hg)
-Patch40:update-gnus.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 Summary:XEmacs Packages
@@ -147,7 +149,6 @@
 %prep
 %setup -q
 %patch1   -p1 -b .keywords
-%patch40  -p1 -b .gnus195
 find -name '*.pl' -o -name file-newer | \
   xargs -r sed -ri '1 {s@(^#[[:blank:]]*\!)(.*/perl5?)@\1/usr/bin/perl@p}'
 chmod -R u+rw,g+r,o+r .

++ xemacs-packages-20120625.tar.bz2 - xemacs-packages-20120911.tar.bz2 
++
/work/SRC/openSUSE:Factory/xemacs-packages/xemacs-packages-20120625.tar.bz2 
/work/SRC/openSUSE:Factory/.xemacs-packages.new/xemacs-packages-20120911.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 xfce4-branding-openSUSE for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package xfce4-branding-openSUSE for 
openSUSE:Factory checked in at 2012-10-05 13:49:28

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


Package is xfce4-branding-openSUSE, Maintainer is xfce-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/xfce4-branding-openSUSE/xfce4-branding-openSUSE.changes
  2012-09-11 09:22:08.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.xfce4-branding-openSUSE.new/xfce4-branding-openSUSE.changes
 2012-10-06 18:45:30.0 +0200
@@ -1,0 +2,9 @@
+Thu Oct  4 13:07:00 UTC 2012 - g...@opensuse.org
+
+- on = 12.2 depend on libgio-2_0-0 which provides the
+  defaults.list symlink target
+- on  12.2 depend on desktop-file-utils which is now needed to
+  generate defaults.list
+- updated comment in xfce_defaults.conf
+
+---



Other differences:
--
++ xfce4-branding-openSUSE.spec ++
--- /var/tmp/diff_new_pack.TxS9FJ/_old  2012-10-06 18:45:31.0 +0200
+++ /var/tmp/diff_new_pack.TxS9FJ/_new  2012-10-06 18:45:31.0 +0200
@@ -57,6 +57,14 @@
 BuildRequires:  midori-branding-upstream
 BuildRequires:  wallpaper-branding
 %endif
+%if 0%{?suse_version} = 1220
+# owns %{_datadir}/xfce/applications/defaults.list symlink target
+Requires:   libgio-2_0-0
+%endif
+%if 0%{?suse_version}  1220
+# for regenerating defaults.list
+BuildRequires:  desktop-file-utils
+%endif
 BuildRequires:  thunar-volman
 BuildRequires:  xfce4-notifyd
 BuildRequires:  xfce4-panel
@@ -98,6 +106,14 @@
 Summary:openSUSE Branding of xfce4-session
 License:CC-BY-SA-3.0 and GPL-2.0+
 Group:  System/GUI/XFCE
+%if 0%{?suse_version} = 1220
+# owns %{_datadir}/xfce/applications/defaults.list symlink target
+Requires:   libgio-2_0-0
+%endif
+%if 0%{?suse_version}  1220
+# for regenerating defaults.list
+Requires:   desktop-file-utils
+%endif
 Conflicts:  otherproviders(xfce4-session-branding)
 Provides:   xfce4-session-branding = %{xfce4_session_version}
 Supplements:packageand(xfce4-session:branding-openSUSE)

++ xfce4-branding-openSUSE-4.10.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xfce4-branding-openSUSE-4.10.0/etc/xfce_defaults.conf 
new/xfce4-branding-openSUSE-4.10.0/etc/xfce_defaults.conf
--- old/xfce4-branding-openSUSE-4.10.0/etc/xfce_defaults.conf   2012-06-05 
16:26:31.0 +0200
+++ new/xfce4-branding-openSUSE-4.10.0/etc/xfce_defaults.conf   2012-10-04 
15:06:48.0 +0200
@@ -2,7 +2,7 @@
 # /etc/xfcer_defaults.conf
 #
 # After any change of this file run
-# SuSEconfig --module glib2
+# suse-update-mime-defaults
 #
 # This list is a source for defaults.list.
 #

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



commit xplanet for openSUSE:Factory

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package xplanet for openSUSE:Factory checked 
in at 2012-10-04 20:11:08

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


Package is xplanet, Maintainer is jsm...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/xplanet/xplanet.changes  2012-03-29 
07:49:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.xplanet.new/xplanet.changes 2012-10-06 
18:45:44.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep 28 19:37:45 UTC 2012 - asterios.dra...@gmail.com
+
+- Added CPPFLAGS=-I%{_includedir}/netpbm to fix compilation with netpbm
+  support in Factory (the netpbm headers where moved from /usr/include to
+  /usr/include/netpbm).
+- Use pkgconfig(...) for xorg-x11 build requirements.
+
+---



Other differences:
--
++ xplanet.spec ++
--- /var/tmp/diff_new_pack.va6cQw/_old  2012-10-06 18:45:45.0 +0200
+++ /var/tmp/diff_new_pack.va6cQw/_new  2012-10-06 18:45:45.0 +0200
@@ -27,18 +27,14 @@
 BuildRequires:  freetype2-devel
 BuildRequires:  gcc-c++
 BuildRequires:  giflib-devel
-%if 0%{?suse_version}  1210
-BuildRequires:  libICE-devel
-BuildRequires:  libX11-devel
-BuildRequires:  libXScrnSaver-devel
-%else
-BuildRequires:  xorg-x11-devel
-%endif
 BuildRequires:  libjpeg-devel
 BuildRequires:  libnetpbm-devel
 BuildRequires:  libpng-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  pango-devel
+BuildRequires:  pkgconfig(ice)
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(xscrnsaver)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -52,6 +48,8 @@
 %setup -q
 
 %build
+# configure does not check if netpbm headers are installed in 
/usr/include/netpbm
+export CPPFLAGS=-I%{_includedir}/netpbm
 # Set our preferred architecture-specific flags for the compiler and linker:
 export CFLAGS=%{optflags} -fno-strict-aliasing
 export CXXFLAGS=%{optflags} -fno-strict-aliasing

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



commit postgresql-libs for openSUSE:11.4:Update

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package postgresql-libs for 
openSUSE:11.4:Update checked in at 2012-10-06 14:12:40

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


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

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.eNiU1Y/_old  2012-10-06 18:48:28.0 +0200
+++ /var/tmp/diff_new_pack.eNiU1Y/_new  2012-10-06 18:48:28.0 +0200
@@ -1 +1 @@
-link package='postgresql-libs.378' cicount='copy' /
+link package='postgresql-libs.943' cicount='copy' /

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



commit postgresql for openSUSE:11.4:Update

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package postgresql for openSUSE:11.4:Update 
checked in at 2012-10-06 14:12:35

Comparing /work/SRC/openSUSE:11.4:Update/postgresql (Old)
 and  /work/SRC/openSUSE:11.4:Update/.postgresql.new (New)


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

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.eK5zQc/_old  2012-10-06 18:48:28.0 +0200
+++ /var/tmp/diff_new_pack.eK5zQc/_new  2012-10-06 18:48:28.0 +0200
@@ -1 +1 @@
-link package='postgresql.378' cicount='copy' /
+link package='postgresql.943' cicount='copy' /

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



commit mdadm for openSUSE:12.1:Update

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package mdadm for openSUSE:12.1:Update 
checked in at 2012-10-04 21:59:14

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


Package is mdadm, Maintainer is nfbr...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.bDEocD/_old  2012-10-06 18:51:44.0 +0200
+++ /var/tmp/diff_new_pack.bDEocD/_new  2012-10-06 18:51:44.0 +0200
@@ -1 +1 @@
-link package='mdadm.530' cicount='copy' /
+link package='mdadm.957' cicount='copy' /

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



commit device-mapper for openSUSE:12.2:Update

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package device-mapper for 
openSUSE:12.2:Update checked in at 2012-10-04 21:59:05

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


Package is device-mapper, Maintainer is dmzh...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.dIwAL8/_old  2012-10-06 18:56:26.0 +0200
+++ /var/tmp/diff_new_pack.dIwAL8/_new  2012-10-06 18:56:26.0 +0200
@@ -1 +1 @@
-link package='device-mapper.721' cicount='copy' /
+link package='device-mapper.956' cicount='copy' /

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



commit fontconfig for openSUSE:12.2:Update

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package fontconfig for openSUSE:12.2:Update 
checked in at 2012-10-06 14:12:50

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


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

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.UAjkTO/_old  2012-10-06 18:56:29.0 +0200
+++ /var/tmp/diff_new_pack.UAjkTO/_new  2012-10-06 18:56:29.0 +0200
@@ -1 +1 @@
-link package='fontconfig.711' cicount='copy' /
+link package='fontconfig.955' cicount='copy' /

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



commit lvm2-clvm for openSUSE:12.2:Update

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package lvm2-clvm for openSUSE:12.2:Update 
checked in at 2012-10-04 21:59:02

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


Package is lvm2-clvm, Maintainer is dmzh...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.OeCY1X/_old  2012-10-06 18:56:52.0 +0200
+++ /var/tmp/diff_new_pack.OeCY1X/_new  2012-10-06 18:56:52.0 +0200
@@ -1 +1 @@
-link package='lvm2-clvm.721' cicount='copy' /
+link package='lvm2-clvm.956' cicount='copy' /

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



commit xorg-x11-server for openSUSE:12.2:Update

2012-10-06 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-server for 
openSUSE:12.2:Update checked in at 2012-10-06 14:13:04

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


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

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.sxZCGE/_old  2012-10-06 18:57:42.0 +0200
+++ /var/tmp/diff_new_pack.sxZCGE/_new  2012-10-06 18:57:42.0 +0200
@@ -1 +1 @@
-link package='xorg-x11-server.865' cicount='copy' /
+link package='xorg-x11-server.959' cicount='copy' /

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