commit bulk_extractor for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package bulk_extractor for openSUSE:Factory 
checked in at 2012-12-31 14:24:23

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


Package is bulk_extractor, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/bulk_extractor/bulk_extractor.changes
2012-09-10 15:28:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.bulk_extractor.new/bulk_extractor.changes   
2012-12-31 14:24:25.0 +0100
@@ -1,0 +2,6 @@
+Sun Dec 30 23:40:59 UTC 2012 - dval...@suse.com
+
+- don't optimize a code when doing HAVE_ASM_CPUID detection
+  ppc-cpuid.patch 
+
+---

New:

  ppc-cpuid.patch



Other differences:
--
++ bulk_extractor.spec ++
--- /var/tmp/diff_new_pack.86xGom/_old  2012-12-31 14:24:28.0 +0100
+++ /var/tmp/diff_new_pack.86xGom/_new  2012-12-31 14:24:28.0 +0100
@@ -26,6 +26,7 @@
 # Source: bulk_extractor-%%{version}.tar.gz
 Source: http://afflib.org/downloads/bulk_extractor-%{version}.tar.gz
 Patch1: cpuid.patch
+Patch2: ppc-cpuid.patch
 BuildRequires:  afflib-devel
 BuildRequires:  flex
 BuildRequires:  gcc-c++
@@ -46,6 +47,7 @@
 %prep
 %setup -q
 %patch1 -p1
+%patch2 -p1
 
 %build
 %configure

++ ppc-cpuid.patch ++
Index: bulk_extractor-1.2.0/configure.ac
===
--- bulk_extractor-1.2.0.orig/configure.ac
+++ bulk_extractor-1.2.0/configure.ac
@@ -407,7 +407,7 @@ AC_LANG_POP()
 
 #
 # Do we have the CPUID instruction?
-AC_TRY_COMPILE([#define cpuid(id) __asm__( cpuid : =a(eax), =b(ebx), 
=c(ecx), =d(edx) : a(id), b(0), c(0), d(0))],
+AC_TRY_COMPILE([#define cpuid(id) __asm__ volatile ( cpuid : =a(eax), 
=b(ebx), =c(ecx), =d(edx) : a(id), b(0), c(0), d(0))],
[unsigned long eax, ebx, ecx, edx;cpuid(0);],
have_cpuid=yes,
have_cpuid=no)
Index: bulk_extractor-1.2.0/configure
===
--- bulk_extractor-1.2.0.orig/configure
+++ bulk_extractor-1.2.0/configure
@@ -7799,7 +7799,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
 # Do we have the CPUID instruction?
 cat confdefs.h - _ACEOF conftest.$ac_ext
 /* end confdefs.h.  */
-#define cpuid(id) __asm__( cpuid : =a(eax), =b(ebx), =c(ecx), 
=d(edx) : a(id), b(0), c(0), d(0))
+#define cpuid(id) __asm__ volatile ( cpuid : =a(eax), =b(ebx), 
=c(ecx), =d(edx) : a(id), b(0), c(0), d(0))
 int
 main ()
 {
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit clanlib for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package clanlib for openSUSE:Factory checked 
in at 2012-12-31 14:24:31

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


Package is clanlib, Maintainer is orpha...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/clanlib/clanlib.changes  2012-09-25 
09:34:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.clanlib.new/clanlib.changes 2012-12-31 
14:24:35.0 +0100
@@ -1,0 +2,5 @@
+Sun Dec 30 22:37:49 UTC 2012 - dval...@suse.com
+
+- fix build for powerpc (clanlib-ppc.patch)
+
+---

New:

  clanlib-ppc.patch



Other differences:
--
++ clanlib.spec ++
--- /var/tmp/diff_new_pack.hmJOnn/_old  2012-12-31 14:24:37.0 +0100
+++ /var/tmp/diff_new_pack.hmJOnn/_new  2012-12-31 14:24:37.0 +0100
@@ -28,6 +28,8 @@
 Source: ClanLib-%{version}.tgz
 # PATCH-FIX-UPSTREAM -- fix compilation with new Mesa, co...@suse.de
 Patch0: ClanLib-2.3.6-fix-opengl.patch
+# PATCH-FIX-OPENSUSE -- fix ppc build, dval...@suse.com
+Patch1: clanlib-ppc.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  alsa-devel
 BuildRequires:  dos2unix
@@ -74,6 +76,7 @@
 %prep
 %setup -q -n ClanLib-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
 export CFLAGS=%{optflags}
@@ -82,6 +85,10 @@
 export CFLAGS=$CFLAGS -DCL_ARM_PLATFORM
 export CXXFLAGS=$CFLAGS -DCL_ARM_PLATFORM
 %endif
+%ifarch ppc ppc64
+export CFLAGS=$CFLAGS -DCL_PPC_PLATFORM
+export CXXFLAGS=$CFLAGS -DCL_PPC_PLATFORM
+%endif
 %ifarch %ix86
 %configure --with-pic --disable-static --enable-asm386 --disable-docs
 %else

++ clanlib-ppc.patch ++
Index: ClanLib-2.3.6/Sources/Core/System/detect_cpu_ext.cpp
===
--- ClanLib-2.3.6.orig/Sources/Core/System/detect_cpu_ext.cpp
+++ ClanLib-2.3.6/Sources/Core/System/detect_cpu_ext.cpp
@@ -30,7 +30,7 @@
 #include Core/precomp.h
 #include API/Core/System/system.h
 
-#ifdef CL_ARM_PLATFORM
+#if defined(CL_ARM_PLATFORM)|| defined(CL_PPC_PLATFORM)
 bool CL_System::detect_cpu_extension(CL_CPU_ExtensionPPC ext)
 {
throw (Congratulations, you've just been selected to code this 
feature!);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit coccigrep for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package coccigrep for openSUSE:Factory 
checked in at 2012-12-31 14:24:49

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


Package is coccigrep, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/coccigrep/coccigrep.changes  2012-10-16 
21:31:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.coccigrep.new/coccigrep.changes 2012-12-31 
14:24:54.0 +0100
@@ -1,0 +2,6 @@
+Mon Dec 31 11:38:42 UTC 2012 - jsl...@suse.com
+
+- update to latest snapshot (20121222)
+  * see ChangeLog for changes
+
+---

Old:

  coccigrep-20120910.tar.xz

New:

  coccigrep-20121222.tar.xz



Other differences:
--
++ coccigrep.spec ++
--- /var/tmp/diff_new_pack.z2pFq1/_old  2012-12-31 14:24:55.0 +0100
+++ /var/tmp/diff_new_pack.z2pFq1/_new  2012-12-31 14:24:55.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   coccigrep
-Version:20120910
+Version:20121222
 Release:0
 Summary:Semantic grep tool for C, based on coccinelle
 License:GPL-3.0

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



commit ghc-transformers for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package ghc-transformers for 
openSUSE:Factory checked in at 2012-12-31 14:24:59

Comparing /work/SRC/openSUSE:Factory/ghc-transformers (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-transformers.new (New)


Package is ghc-transformers, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2012-12-21 01:49:00.356010756 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-transformers.new/ghc-transformers.changes   
2012-12-31 14:24:59.0 +0100
@@ -0,0 +1,37 @@
+---
+Sun Dec 30 18:46:00 UTC 2012 - peter.tromm...@ohm-hochschule.de
+
+- expand macro in name tag to help source validator 
+
+---
+Sat Nov 17 14:52:55 UTC 2012 - peter.tromm...@ohm-hochschule.de
+
+- make service localonly for Factory submission 
+
+---
+Tue Oct  2 11:12:46 UTC 2012 - peter.tromm...@ohm-hochschule.de
+
+- dropped rpmlintrc (warnings fixed by ghc-rpm-macros) 
+
+---
+Sun Jun  3 17:52:38 UTC 2012 - peter.tromm...@ohm-hochschule.de
+
+- update to 0.3.0.0 from upstream (no changelog)
+- required by Haskell Platform 2012.2.0.0 
+
+---
+Thu Feb 23 13:44:28 UTC 2012 - peter.tromm...@ohm-hochschule.de
+
+- Added BuildRoot for sle11-sp1 
+
+---
+Thu Dec 29 11:58:48 UTC 2011 - peter.tromm...@ohm-hochschule.de
+
+- Clean up
+- Enable hscolour 
+
+---
+Tue Nov 15 19:03:51 UTC 2011 - peter.tromm...@ohm-hochschule.de
+
+- Initial packaging with cabal2spec 
+

New:

  _service
  ghc-transformers.changes
  ghc-transformers.spec
  transformers-0.3.0.0.tar.gz



Other differences:
--
++ ghc-transformers.spec ++
#
# spec file for ghc-transformers
#

# Copyright (c) 2012 Peter Trommler peter.tromm...@ohm-hochschule.de
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

%global pkg_name transformers

%global common_summary Haskell concrete functor and monad transformers library

%global common_description A portable library of functor and monad 
transformers, inspired by the paper Functional Programming with Overloading 
and Higher-Order Polymorphism, by Mark P Jones, in Advanced School of 
Functional Programming, 1995 
(http://web.cecs.pdx.edu/~mpj/pubs/springschool.html).

Name:   ghc-transformers
Version:0.3.0.0
Release:1
Summary:%{common_summary}

Group:  System/Libraries
License:BSD-3-Clause
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
# BEGIN cabal2spec
URL:http://hackage.haskell.org/package/%{pkg_name}
Source0:
http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
ExclusiveArch:  %{ix86} x86_64 %{ghc_arches}
BuildRequires:  ghc-Cabal-devel
BuildRequires:  ghc-rpm-macros %{!?without_hscolour:hscolour}
# END cabal2spec

%description
%{common_description}


%prep
%setup -q -n %{pkg_name}-%{version}


%build
%ghc_lib_build


%install
%ghc_lib_install


# devel subpackage
%ghc_devel_package

%ghc_devel_description


%ghc_devel_post_postun


%ghc_files LICENSE


%changelog
++ _service ++
services
  
service name=download_files mode=localonly//services
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kdebase4-openSUSE for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

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

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


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

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-openSUSE/kdebase4-openSUSE.changes  
2012-12-21 09:05:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdebase4-openSUSE.new/kdebase4-openSUSE.changes 
2012-12-31 14:25:27.0 +0100
@@ -1,0 +2,7 @@
+Sun Dec 30 20:22:17 UTC 2012 - tittiatc...@gmail.com
+
+- Link to userbase instead of http://help.opensuse.org/kde4/ which 
+  is totally outdated. Fixes bnc#774509
+  Patch created by Christian Trippe
+
+---



Other differences:
--
++ kdebase4-openSUSE-12.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdebase4-openSUSE/greeter/greetings.cpp 
new/kdebase4-openSUSE/greeter/greetings.cpp
--- old/kdebase4-openSUSE/greeter/greetings.cpp 2012-12-20 18:01:17.0 
+0100
+++ new/kdebase4-openSUSE/greeter/greetings.cpp 2012-12-30 21:22:17.0 
+0100
@@ -204,7 +204,7 @@
 } else if ( url.startsWith( irc://) ) {
 KProcess::startDetached(konversationircprotocolhandler, 
QStringList()  url);
 } else if ( url.startsWith( /introduction ) ) {
-url=http://help.opensuse.org/kde4/;;
+url=http://userbase.kde.org/;;
 KProcess::startDetached(kfmclient, QStringList()  openURL  
url);
 } else {
 KProcess::startDetached(kfmclient, QStringList()  openURL  
url);

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



commit kde-gtk-config for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package kde-gtk-config for openSUSE:Factory 
checked in at 2012-12-31 14:25:40

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


Package is kde-gtk-config, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/kde-gtk-config/kde-gtk-config.changes
2012-12-10 17:16:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.kde-gtk-config.new/kde-gtk-config.changes   
2012-12-31 14:25:53.0 +0100
@@ -1,0 +2,7 @@
+Sat Dec 29 21:50:35 UTC 2012 - asterios.dra...@gmail.com
+
+- Added default templates for GTK2 and GTK3 settings. Updated the
+  kde_gtk_config.suse.sh startup script accordingly.
+- Added gtk2-theme-oxygen and gtk3-theme-oxygen Suggests: entries.
+
+---

New:

  gtk3-settings.ini-kde4.template
  gtkrc-2.0-kde4.template



Other differences:
--
++ kde-gtk-config.spec ++
--- /var/tmp/diff_new_pack.0aQxyM/_old  2012-12-31 14:25:54.0 +0100
+++ /var/tmp/diff_new_pack.0aQxyM/_new  2012-12-31 14:25:54.0 +0100
@@ -25,6 +25,8 @@
 Url:
https://projects.kde.org/projects/playground/base/kde-gtk-config/
 Source0:
ftp://ftp.kde.org/pub/kde/stable/%{name}/%{version}/src/%{name}-%{version}.tar.bz2
 Source1:kde_gtk_config.suse.sh
+Source2:gtkrc-2.0-kde4.template
+Source3:gtk3-settings.ini-kde4.template
 BuildRequires:  atk-devel
 BuildRequires:  cairo-devel
 BuildRequires:  gdk-pixbuf-devel
@@ -34,6 +36,8 @@
 BuildRequires:  pango-devel
 %kde4_runtime_requires
 Recommends: %{name}-lang = %{version}
+Suggests:   gtk2-theme-oxygen
+Suggests:   gtk3-theme-oxygen
 Obsoletes:  kcm_gtk
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -59,9 +63,10 @@
 
 %install
 %kde4_makeinstall -C build
-### Taken from kcm_gtk
-mkdir -p %{buildroot}%{_kde4_sharedir}/env
-install -D -m 0755 %{SOURCE1} %{buildroot}%{_kde4_sharedir}/env/
+
+install -Dpm 0755 %{SOURCE1} 
%{buildroot}%{_kde4_sharedir}/env/kde_gtk_config.suse.sh
+install -Dpm 0644 %{SOURCE2} 
%{buildroot}%{_kde4_appsdir}/%{name}/gtkrc-2.0-kde4.template
+install -Dpm 0644 %{SOURCE3} 
%{buildroot}%{_kde4_appsdir}/%{name}/gtk3-settings.ini-kde4.template
 
 %kde_post_install
 
@@ -71,6 +76,7 @@
 %defattr(-,root,root,-)
 %doc COPYING ChangeLog README
 %{_kde4_appsdir}/kcm-gtk-module/
+%{_kde4_appsdir}/kde-gtk-config/
 %{_kde4_bindir}/gtk_preview
 %{_kde4_bindir}/gtk3_preview
 %{_kde4_bindir}/reload_gtk_apps

++ gtk3-settings.ini-kde4.template ++
[Settings]
gtk-font-name=Sans Serif 9
gtk-theme-name=@@THEME_NAME@@
gtk-icon-theme-name=oxygen
gtk-fallback-icon-theme=gnome
gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
gtk-menu-images=1
gtk-button-images=1
++ gtkrc-2.0-kde4.template ++
include /usr/share/themes/@@THEME_NAME@@/gtk-2.0/gtkrc
include /etc/gtk-2.0/gtkrc
style user-font
{
font_name=Sans Serif
}
widget_class * style user-font
gtk-font-name=Sans Serif 9
gtk-theme-name=@@THEME_NAME@@
gtk-icon-theme-name=oxygen
gtk-fallback-icon-theme=gnome
gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
gtk-menu-images=1
gtk-button-images=1
++ kde_gtk_config.suse.sh ++
--- /var/tmp/diff_new_pack.0aQxyM/_old  2012-12-31 14:25:54.0 +0100
+++ /var/tmp/diff_new_pack.0aQxyM/_new  2012-12-31 14:25:54.0 +0100
@@ -1,35 +1,47 @@
 #!/bin/bash
 
-# Defaults for openSUSE 10.3
+# Defaults for openSUSE
 GTK2_SYSCONFDIR=/etc
 GTK2_DATADIR=/usr/share/themes/
+GTK3_HOME_CONFDIR=$HOME/.config/gtk-3.0
+GTK3_DATADIR=/usr/share/themes/
 
-# file used by kcm_gtk
-GTK2_THEME_RC=$HOME/.gtkrc-2.0-kde4
+# Files used by kde-gtk-config
+GTK2_THEME_RC=$HOME/.gtkrc-2.0
+GTK3_THEME_RC=$HOME/.config/gtk-3.0/settings.ini
 
 # GTK2
-# NOTE: ~/.gtkrc-2.0-kde is added later (in latest KDE only)
 if [ $GTK2_RC_FILES ]; then
-  export 
GTK2_RC_FILES=$GTK2_RC_FILES:$GTK2_THEME_RC:$HOME/.gtkrc-2.0-qtengine:$HOME/.gtkrc-2.0
+  export GTK2_RC_FILES=$GTK2_RC_FILES:$GTK2_THEME_RC
 else
-  export 
GTK2_RC_FILES=$GTK2_SYSCONFDIR/gtk-2.0/gtkrc:$GTK2_THEME_RC:$HOME/.gtkrc-2.0-qtengine:$HOME/.gtkrc-2.0
+  export GTK2_RC_FILES=$GTK2_SYSCONFDIR/gtk-2.0/gtkrc:$GTK2_THEME_RC
 fi
 
-# create the file if it doesn't exit
+# Create the file if it doesn't exist
 if [ ! -e $GTK2_THEME_RC ]; then
   # oxygen-gtk, the default
   if [ -e $GTK2_DATADIR/oxygen-gtk/gtk-2.0/gtkrc ] ; then
 THEME=oxygen-gtk
+  # else use QtCurve engine
   elif [ -e $GTK2_DATADIR/QtCurve/gtk-2.0/gtkrc ] ; then
-# use QtCurve engine
 THEME=QtCurve
-  elif [ -e $GTK2_DATADIR/Qt/gtk-2.0/gtkrc ] ; then
-# use general gtk-qt-engine
-THEME=Qt
   fi
   if [ -n $THEME ]; then
-cp -f 

commit libvirt-cim for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package libvirt-cim for openSUSE:Factory 
checked in at 2012-12-31 14:25:52

Comparing /work/SRC/openSUSE:Factory/libvirt-cim (Old)
 and  /work/SRC/openSUSE:Factory/.libvirt-cim.new (New)


Package is libvirt-cim, Maintainer is jfeh...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/libvirt-cim/libvirt-cim.changes  2012-08-07 
21:50:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.libvirt-cim.new/libvirt-cim.changes 
2012-12-31 14:25:54.0 +0100
@@ -1,0 +2,5 @@
+Fri Dec 28 18:03:51 UTC 2012 - dval...@suse.com
+
+- use macro for restart on update 
+
+---



Other differences:
--
++ libvirt-cim.spec ++
--- /var/tmp/diff_new_pack.W2mhIq/_old  2012-12-31 14:25:55.0 +0100
+++ /var/tmp/diff_new_pack.W2mhIq/_new  2012-12-31 14:25:55.0 +0100
@@ -110,7 +110,7 @@
 %post
 /sbin/ldconfig
 %{_datadir}/%{name}/install_base_schema.sh %{_datadir}/%{name}
-/etc/init.d/sfcb restart
+%restart_on_update sfcb
 %{_datadir}/%{name}/provider-register.sh -t sfcb \
 -n root/virt \
 -r %{REGISTRATION} -m %{SCHEMA} /dev/null 21 || true

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



commit LibVNCServer for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package LibVNCServer for openSUSE:Factory 
checked in at 2012-12-31 14:25:59

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


Package is LibVNCServer, Maintainer is orpha...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/LibVNCServer/LibVNCServer.changes
2012-10-26 17:13:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.LibVNCServer.new/LibVNCServer.changes   
2012-12-31 14:26:03.0 +0100
@@ -1,0 +2,8 @@
+Sun Dec 30 22:02:37 UTC 2012 - crrodrig...@opensuse.org
+
+- libvncserver-byteswap.patch : USe OS byteswapping macros 
+  which are optimized for the target arch.
+
+- BuildRequire libpng-Devel
+
+---

New:

  libvncserver-byteswap.patch



Other differences:
--
++ LibVNCServer.spec ++
--- /var/tmp/diff_new_pack.3Qstx2/_old  2012-12-31 14:26:04.0 +0100
+++ /var/tmp/diff_new_pack.3Qstx2/_new  2012-12-31 14:26:04.0 +0100
@@ -17,12 +17,12 @@
 
 
 Name:   LibVNCServer
-BuildRequires:  autoconf
-BuildRequires:  automake
 BuildRequires:  gnutls-devel
 BuildRequires:  libavahi-devel
 BuildRequires:  libgcrypt-devel
 BuildRequires:  libjpeg-devel
+BuildRequires:  libpng-devel
+BuildRequires:  libtool
 BuildRequires:  lzo-devel
 BuildRequires:  slang-devel
 BuildRequires:  xorg-x11-devel
@@ -41,6 +41,8 @@
 Patch7: redef-keysym.patch
 #PATCH-FIX-OPENSUSE: disable x11vnc build
 Patch10:LibVNCServer-0.9.9-no_x11vnc.patch
+#PATCH_FIX-OPENSUSE: Use system fast byteswap routines.
+Patch11:libvncserver-byteswap.patch
 
 %description
 VNC is a set of programs using the RFB (Remote Frame Buffer) protocol.
@@ -84,7 +86,7 @@
 # aclocal; autoheader; automake --add-missing --copy; autoconf
 # ./configure --enable-maintainer-mode
 # sh ./autogen.sh
-
+%patch11
 # fix encoding
 for file in AUTHORS ChangeLog ; do
 mv ${file} ${file}.OLD  \
@@ -99,12 +101,10 @@
 #autoreconf
 
 %build
-CFLAGS=$RPM_OPT_FLAGS -D_REENTRANT \
+CFLAGS=$RPM_OPT_FLAGS -D_GNU_SOURCE -D_REENTRANT \
 
 # Plase note that tightvn cause a problem; need to be fix
 %configure --disable-static --with-pic --enable-shared --with-gnu-ld 
--prefix=%{_prefix} --without-tightvnc-filetransfer
-# hack to omit unused-direct-shlib-dependencies
-sed -i -e 's! -shared ! -Wl,--as-needed\0!g' libtool
 
 make %{?_smp_mflags}
 

++ libvncserver-byteswap.patch ++
--- rfb/rfb.h.orig
+++ rfb/rfb.h
@@ -711,19 +711,18 @@ typedef struct _rfbClientRec {
  ((cl)-enableCursorPosUpdates  (cl)-cursorWasMoved) || \
  !sraRgnEmpty((cl)-copyRegion) || !sraRgnEmpty((cl)-modifiedRegion))
 
+#include byteswap.h
 /*
  * Macros for endian swapping.
  */
 
-#define Swap16(s) s)  0xff)  8) | (((s)  8)  0xff))
+#define Swap16(s) bswap_16(s)
 
 #define Swap24(l) l)  0xff)  16) | (((l)  16)  0xff) | \
(((l)  0x00ff00)))
 
-#define Swap32(l) (((l)  24) | \
-   (((l)  0x00ff)  8)  | \
-   (((l)  0xff00)  8)  | \
-   ((l)  24))
+#define Swap32(l) bswap_32(l)
+
 
 
 extern char rfbEndianTest;
--- rfb/rfbclient.h.orig
+++ rfb/rfbclient.h
@@ -38,25 +38,16 @@
 #include unistd.h
 #include rfb/rfbproto.h
 #include rfb/keysym.h
+#include byteswap.h
 
 #define rfbClientSwap16IfLE(s) \
-(*(char *)client-endianTest ? s)  0xff)  8) | (((s)  8)  
0xff)) : (s))
+(*(char *)client-endianTest ? (bswap_16(s)) : (s))
 
 #define rfbClientSwap32IfLE(l) \
-(*(char *)client-endianTest ? l)  0xff00)  24) | \
-(((l)  0x00ff)  8)  | \
-(((l)  0xff00)  8)  | \
-(((l)  0x00ff)  24))  : (l))
+(*(char *)client-endianTest ? (bswap_32(l)) : (l))
 
 #define rfbClientSwap64IfLE(l) \
-(*(char *)client-endianTest ? l)  0xff00ULL)  56) | \
-(((l)  0x00ffULL)  40)  | \
-(((l)  0xff00ULL)  24)  | \
-(((l)  0x00ffULL)  8)  | \
-(((l)  0xff00ULL)  8)  | \
-(((l)  0x00ffULL)  24)  | \
-(((l)  0xff00ULL)  40)  | \
-(((l)  0x00ffULL)  56))  : (l))
+(*(char *)client-endianTest ? (bswap_64(l)): (l))
 
 #define FLASH_PORT_OFFSET 5400
 #define LISTEN_PORT_OFFSET 5500
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mkinitrd for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:Factory 
checked in at 2012-12-31 14:26:14

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


Package is mkinitrd, Maintainer is mma...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/mkinitrd/mkinitrd.changes2012-11-13 
10:09:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.mkinitrd.new/mkinitrd.changes   2012-12-31 
14:26:16.0 +0100
@@ -1,0 +2,10 @@
+Mon Dec 17 16:07:27 UTC 2012 - mma...@suse.cz
+
+- Fix typo in purge-kernels.service (bnc#792925).
+
+---
+Fri Dec  7 05:16:54 CET 2012 - j...@suse.com
+
+- mkinitrd: copy firmware signature files to initrd (fate#314574).
+
+---



Other differences:
--
++ mkinitrd.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.2/etc/purge-kernels.service 
new/mkinitrd-2.7.2/etc/purge-kernels.service
--- old/mkinitrd-2.7.2/etc/purge-kernels.service2012-11-09 
18:38:03.0 +0100
+++ new/mkinitrd-2.7.2/etc/purge-kernels.service2012-12-17 
17:11:40.0 +0100
@@ -1,11 +1,11 @@
 [Unit]
 Description=Purge old kernels
 After=local_fs.target
-ConditionPathExists=/boot/do_pure_kernels
+ConditionPathExists=/boot/do_purge_kernels
 
 [Service]
 Type=oneshot
-ExecStartPre=/bin/rm -f /boot/do_pure_kernels
+ExecStartPre=/bin/rm -f /boot/do_purge_kernels
 ExecStart=/sbin/purge-kernels
 
 [Install]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.2/mkinitrd.changes 
new/mkinitrd-2.7.2/mkinitrd.changes
--- old/mkinitrd-2.7.2/mkinitrd.changes 2012-11-09 18:38:03.0 +0100
+++ new/mkinitrd-2.7.2/mkinitrd.changes 2012-12-17 17:11:40.0 +0100
@@ -1,4 +1,14 @@
 ---
+Mon Dec 17 16:07:27 UTC 2012 - mma...@suse.cz
+
+- Fix typo in purge-kernels.service (bnc#792925).
+
+---
+Fri Dec  7 05:16:54 CET 2012 - j...@suse.com
+
+- mkinitrd: copy firmware signature files to initrd (fate#314574).
+
+---
 Fri Nov  9 18:37:49 CET 2012 - oher...@suse.de
 
 - Version 2.7.2.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.2/sbin/lsinitrd 
new/mkinitrd-2.7.2/sbin/lsinitrd
--- old/mkinitrd-2.7.2/sbin/lsinitrd2012-11-09 18:38:03.0 +0100
+++ new/mkinitrd-2.7.2/sbin/lsinitrd2012-12-17 17:11:40.0 +0100
@@ -23,7 +23,8 @@
 echo Usage: lsinitrd [-l] [-h] [-c] initrd
 }
 
-config=0
+verbose=
+config=
 while [ $1 ] ; do
 case $1 in
 -l|--long)
@@ -76,7 +77,7 @@
 args=-t
 fi
 
-if [ $config -eq 1 ] ; then
+if [ $config ] ; then
 # yes, that's snow, but doesn't use any temporary files :)
 for configfile in $(uncomp $initrd | exec cpio --quiet -t | exec grep 
'^config/') ; do
 echo = $configfile 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.2/scripts/setup-modules.sh 
new/mkinitrd-2.7.2/scripts/setup-modules.sh
--- old/mkinitrd-2.7.2/scripts/setup-modules.sh 2012-11-09 18:38:03.0 
+0100
+++ new/mkinitrd-2.7.2/scripts/setup-modules.sh 2012-12-17 17:11:40.0 
+0100
@@ -341,6 +341,10 @@
has_firmware=true
 fi
 echo -n $fw 
+if test -e $dir/$subdir/$fw.sig; then
+cp -p --parents $_ $tmp_mnt
+echo -n $fw.sig 
+fi
 fi
 done
 done

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



commit mono-core for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package mono-core for openSUSE:Factory 
checked in at 2012-12-31 14:26:23

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


Package is mono-core, Maintainer is orpha...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/mono-core/mono-core.changes  2012-12-30 
12:19:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-core.new/mono-core.changes 2012-12-31 
14:26:24.0 +0100
@@ -1,0 +2,5 @@
+Thu Dec 27 17:52:57 UTC 2012 - dval...@suse.com
+
+- Fix ppc build failures (ppc.patch)
+
+---

New:

  ppc.patch



Other differences:
--
++ mono-core.spec ++
--- /var/tmp/diff_new_pack.0o7ucL/_old  2012-12-31 14:26:27.0 +0100
+++ /var/tmp/diff_new_pack.0o7ucL/_new  2012-12-31 14:26:27.0 +0100
@@ -39,6 +39,8 @@
 Patch2: mono-arm-cpuinfo-v7.patch
 # PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch3: mono-arm-vfp.patch
+# PATCH-FIX-OPENSUSE ppc.patch dval...@suse.com -- fix ppc build failures
+Patch4: ppc.patch
 BuildRequires:  bison
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -112,6 +114,7 @@
 %patch2 -p1
 %patch3 -p1
 %endif
+%patch4 -p1
 
 %build
 # These are only needed if there are patches to the runtime

++ ppc.patch ++
Index: mono-3.0.2/mono/mini/mini.c
===
--- mono-3.0.2.orig/mono/mini/mini.c
+++ mono-3.0.2/mono/mini/mini.c
@@ -6240,7 +6240,7 @@ mini_create_ftnptr (MonoDomain *domain,
desc [0] = addr;
desc [1] = NULL;
 #  elif defined(__ppc64__) || defined(__powerpc64__)
-   gpointer *desc;
+   //gpointer *desc;
 
desc = mono_domain_alloc0 (domain, 3 * sizeof (gpointer));
 
Index: mono-3.0.2/mono/mini/mini-ppc.h
===
--- mono-3.0.2.orig/mono/mini/mini-ppc.h
+++ mono-3.0.2/mono/mini/mini-ppc.h
@@ -96,6 +96,7 @@ typedef struct MonoCompileArch {
 #define MONO_ARCH_EMULATE_FREM 1
 #define MONO_ARCH_BIGMUL_INTRINS 1
 #define MONO_ARCH_HAVE_ATOMIC_CAS 1
+#define MONO_ARCH_GC_MAPS_SUPPORTED 1

 /* Parameters used by the register allocator */
 #define MONO_ARCH_CALLEE_REGS ((0xff  ppc_r3) | (1  ppc_r11) | (1  
ppc_r12))
Index: mono-3.0.2/mono/mini/mini-gc.c
===
--- mono-3.0.2.orig/mono/mini/mini-gc.c
+++ mono-3.0.2/mono/mini/mini-gc.c
@@ -438,6 +438,8 @@ static int callee_saved_regs [] = { X86_
 static int callee_saved_regs [] = { ARMREG_V1, ARMREG_V2, ARMREG_V3, 
ARMREG_V4, ARMREG_V5, ARMREG_V7, ARMREG_FP };
 #elif defined(TARGET_S390X)
 static int callee_saved_regs [] = { s390_r6, s390_r7, s390_r8, s390_r9, 
s390_r10, s390_r11, s390_r12, s390_r13, s390_r14 };
+#elif defined(TARGET_POWERPC)
+static int callee_saved_regs [] = { ppc_r6, ppc_r7, ppc_r8, ppc_r9, ppc_r10, 
ppc_r11, ppc_r12, ppc_r13, ppc_r14 };
 #endif

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



commit pv for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package pv for openSUSE:Factory checked in 
at 2012-12-31 14:26:32

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


Package is pv, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/pv/pv.changes2012-11-21 17:05:44.0 
+0100
+++ /work/SRC/openSUSE:Factory/.pv.new/pv.changes   2012-12-31 
14:26:34.0 +0100
@@ -1,0 +2,10 @@
+Mon Dec 24 06:48:09 UTC 2012 - jeng...@inai.de
+
+- Update to new upstream release 1.4.4
+* fix crash when progress is displayed with too-small terminal
+* new option --skip-errors
+* new option --stop-at-size to stop after --size bytes
+* autodetermine size if stdout is a block device
+* fix a use-after-free bug
+
+---

Old:

  pv-1.3.9.tar.bz2
  pv-1.3.9.tar.bz2.asc

New:

  pv-1.4.4.tar.bz2
  pv-1.4.4.tar.bz2.asc
  pv.keyring



Other differences:
--
++ pv.spec ++
--- /var/tmp/diff_new_pack.yaEVl0/_old  2012-12-31 14:26:35.0 +0100
+++ /var/tmp/diff_new_pack.yaEVl0/_new  2012-12-31 14:26:35.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   pv
-Version:1.3.9
+Version:1.4.4
 Release:0
 Summary:PipeViewer - Monitor the Progress of Data through Pipes
 License:Artistic-2.0
@@ -26,11 +26,15 @@
 
 Source: http://www.ivarch.com/programs/sources/%name-%version.tar.bz2
 Source2:%name-%version.tar.bz2.asc
+Source3:%name.keyring
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc
 BuildRequires:  gettext
 BuildRequires:  gettext-devel
 BuildRequires:  glibc-devel
+%if 0%{?suse_version} = 1230
+BuildRequires:  gpg-offline
+%endif
 BuildRequires:  intltool
 BuildRequires:  make
 
@@ -42,6 +46,7 @@
 will be until completion.
 
 %prep
+%{?gpg_verify: %gpg_verify %{S:2}}
 %setup -q
 
 %build

++ pv-1.3.9.tar.bz2 - pv-1.4.4.tar.bz2 ++
 6611 lines of diff (skipped)

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



commit smb4k for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package smb4k for openSUSE:Factory checked 
in at 2012-12-31 14:26:40

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


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

Changes:

--- /work/SRC/openSUSE:Factory/smb4k/smb4k.changes  2012-09-17 
01:29:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.smb4k.new/smb4k.changes 2012-12-31 
14:26:43.0 +0100
@@ -1,0 +2,7 @@
+Sat Dec 29 17:37:29 UTC 2012 - asterios.dra...@gmail.com
+
+- Update to version 1.0.5:
+  * Fixed hanging of Smb4K if a custom mount prefix without a trailing
+slash was entered (closes SF ticket #28).
+
+---

Old:

  smb4k-1.0.4.tar.bz2

New:

  smb4k-1.0.5.tar.bz2



Other differences:
--
++ smb4k.spec ++
--- /var/tmp/diff_new_pack.PqVMvT/_old  2012-12-31 14:26:44.0 +0100
+++ /var/tmp/diff_new_pack.PqVMvT/_new  2012-12-31 14:26:44.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   smb4k
-Version:1.0.4
+Version:1.0.5
 Release:0
 Summary:Advanced Network Neighborhood Browser for KDE
 License:GPL-2.0+
@@ -65,9 +65,7 @@
 %make_jobs
 
 %install
-cd build
-%kde4_makeinstall
-cd ..
+%kde4_makeinstall -C build
 
 %if 0%{?suse_version}  1220
 echo setBadness('suse-dbus-unauthorized-service', 0)  
$RPM_SOURCE_DIR/%name-rpmlintrc

++ smb4k-1.0.4.tar.bz2 - smb4k-1.0.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/smb4k-1.0.4/CMakeLists.txt 
new/smb4k-1.0.5/CMakeLists.txt
--- old/smb4k-1.0.4/CMakeLists.txt  2012-08-19 11:00:02.0 +0200
+++ new/smb4k-1.0.5/CMakeLists.txt  2012-12-26 12:51:35.0 +0100
@@ -1,9 +1,9 @@
 project( smb4k )
 
-set( VERSION 1.0.4 )
+set( VERSION 1.0.5 )
 set( VERSION_MAJOR 1 )
 set( VERSION_MINOR 0 )
-set( VERSION_PATCH 4 )
+set( VERSION_PATCH 5 )
 
 cmake_minimum_required( VERSION 2.6 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/smb4k-1.0.4/ChangeLog new/smb4k-1.0.5/ChangeLog
--- old/smb4k-1.0.4/ChangeLog   2012-08-19 11:00:02.0 +0200
+++ new/smb4k-1.0.5/ChangeLog   2012-12-26 10:23:54.0 +0100
@@ -1,3 +1,8 @@
+Smb4K 1.0.5 (2012-12-26):
+- Fixed hanging of Smb4K if a custom mount prefix without a trailing
+  slash was entered (closes SF ticket #28). Thanks go to Ettore Atalan
+  for reporting this issue and PhobosK for the patch.
+
 Smb4K 1.0.4 (2012-08-19):
 - Fixed erroneously shown error notifications when searching. Thanks to
   Alexander Willand for reporting this issue.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/smb4k-1.0.4/core/smb4kmounter_p.cpp 
new/smb4k-1.0.5/core/smb4kmounter_p.cpp
--- old/smb4k-1.0.4/core/smb4kmounter_p.cpp 2012-08-19 11:00:02.0 
+0200
+++ new/smb4k-1.0.5/core/smb4kmounter_p.cpp 2012-12-25 21:47:21.0 
+0100
@@ -186,7 +186,7 @@
   {
 KUrl u( dir.path() );
 
-while ( u != parentDirectory )
+while ( !parentDirectory.equals( u, KUrl::CompareWithoutTrailingSlash ) )
 {
   QFile( u.path() ).setPermissions( permissions );
   u = u.upUrl();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/smb4k-1.0.4/svn-commit.tmp 
new/smb4k-1.0.5/svn-commit.tmp
--- old/smb4k-1.0.4/svn-commit.tmp  1970-01-01 01:00:00.0 +0100
+++ new/smb4k-1.0.5/svn-commit.tmp  2012-07-28 17:43:06.0 +0200
@@ -0,0 +1,6 @@
+Wait until all shares have been unmounted on exit before closing down.
+-- Diese und die folgenden Zeilen werden ignoriert --
+
+MChangeLog
+Mcore/smb4kmounter.cpp
+Mcore/CMakeLists.txt

-- 
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-12-31 Thread h_root
Hello community,

here is the log from the commit of package valgrind for openSUSE:Factory 
checked in at 2012-12-31 14:26:48

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-10-06 
18:44:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.valgrind.new/valgrind.changes   2012-12-31 
14:26:52.0 +0100
@@ -1,0 +2,5 @@
+Mon Dec 31 09:12:06 UTC 2012 - idon...@suse.com
+
+- Add valgrind-glibc-2.17.patch to fix compilation with glibc 2.17 
+
+---

New:

  valgrind-glibc-2.17.patch



Other differences:
--
++ valgrind.spec ++
--- /var/tmp/diff_new_pack.9mj8Mg/_old  2012-12-31 14:26:53.0 +0100
+++ /var/tmp/diff_new_pack.9mj8Mg/_new  2012-12-31 14:26:53.0 +0100
@@ -40,6 +40,7 @@
 # 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
+Patch3: valgrind-glibc-2.17.patch
 # 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)
@@ -138,6 +139,7 @@
 cd ..
 %patch1
 %patch2
+%patch3 -p1
 
 %build
 %ifarch %arm

++ valgrind-glibc-2.17.patch ++
Index: valgrind-3.8.1/configure
===
--- valgrind-3.8.1.orig/configure
+++ valgrind-3.8.1/configure
@@ -6604,6 +6604,16 @@ $as_echo #define GLIBC_2_16 1 confde
DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
;;
+ 2.17)
+   { $as_echo $as_me:${as_lineno-$LINENO}: result: 2.16 family 5
+$as_echo 2.17 family 6; }
+
+$as_echo #define GLIBC_2_17 1 confdefs.h
+
+   DEFAULT_SUPP=glibc-2.X.supp ${DEFAULT_SUPP}
+   DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
+   DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
+;;
  darwin)
{ $as_echo $as_me:${as_lineno-$LINENO}: result: Darwin 5
 $as_echo Darwin 6; }
@@ -6624,7 +6634,7 @@ $as_echo #define BIONIC_LIBC 1 confd
  *)
{ $as_echo $as_me:${as_lineno-$LINENO}: result: unsupported version 
${GLIBC_VERSION} 5
 $as_echo unsupported version ${GLIBC_VERSION} 6; }
-   as_fn_error Valgrind requires glibc version 2.2 - 2.16 $LINENO 5
+   as_fn_error Valgrind requires glibc version 2.2 - 2.17 $LINENO 5
as_fn_error or Darwin libc $LINENO 5
;;
 esac
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xscreensaver for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package xscreensaver for openSUSE:Factory 
checked in at 2012-12-31 14:26:58

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


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

Changes:

--- /work/SRC/openSUSE:Factory/xscreensaver/xscreensaver.changes
2012-09-23 17:12:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.xscreensaver.new/xscreensaver.changes   
2012-12-31 14:27:06.0 +0100
@@ -1,0 +2,17 @@
+Wed Dec 26 04:28:59 UTC 2012 - and...@opensuse.org
+
+- new upstream version 5.20 
+   * Made pipes be ridiculously less efficient, but spin.
+   * Added better mouse control to rubik, cube21, crackberg, and julia.
+   * Cosmetic improvements to queens and endgame.
+   * sonar can now ping local subnet on DHCP.
+   * Most savers now resize/rotate properly.
+   * Various fixes. 
+   * Fixed some compilation problems.
+   * Enlarged the texture image for lament. 
+   * XInput devices now also ignore small mouse motions.
+   * Loading images via RSS feeds is much improved.
+- rebased xscreensaver-default-screensaver.patch and xscreensaver-stars.patch
+  to apply to new code
+
+---

Old:

  xscreensaver-5.15.tar.gz

New:

  xscreensaver-5.20.tar.gz



Other differences:
--
++ xscreensaver.spec ++
--- /var/tmp/diff_new_pack.EsoFcI/_old  2012-12-31 14:27:07.0 +0100
+++ /var/tmp/diff_new_pack.EsoFcI/_new  2012-12-31 14:27:07.0 +0100
@@ -39,7 +39,7 @@
 Requires:   desktop-data
 Requires:   pam-modules
 Suggests:   %{name}-data-extra
-Version:5.15
+Version:5.20
 Release:0
 Summary:A screen saver and locker for the X Window System
 License:BSD-3-Clause and GPL-2.0+
@@ -113,7 +113,7 @@
 %patch5
 %patch20
 %patch21 -p1
-%patch23
+%patch23 -p1
 # FIXME: Test, whether this patch is still needed:
 %patch24
 %patch29

++ xscreensaver-5.15.tar.gz - xscreensaver-5.20.tar.gz ++
/work/SRC/openSUSE:Factory/xscreensaver/xscreensaver-5.15.tar.gz 
/work/SRC/openSUSE:Factory/.xscreensaver.new/xscreensaver-5.20.tar.gz differ: 
char 5, line 1

++ xscreensaver-default-screensaver.patch ++
--- /var/tmp/diff_new_pack.EsoFcI/_old  2012-12-31 14:27:07.0 +0100
+++ /var/tmp/diff_new_pack.EsoFcI/_new  2012-12-31 14:27:07.0 +0100
@@ -1,19 +1,6 @@
-modify default configuration
-- do not grab images from desktop
-- do not show error output of hacks
-- ignore not installed hacks (they might disappear on update)
-- set path to images to use
-- display date + hostname in hacks requiring text input
-- select default screensaver to use
-- use DPMS by default
-- do not display splash screen
-- lock screen by default
-- nice to 19
-
-Index: xscreensaver-5.15/driver/XScreenSaver_ad.h
-===
 xscreensaver-5.15.orig/driver/XScreenSaver_ad.h2011-09-29 
06:16:35.0 +0200
-+++ xscreensaver-5.15/driver/XScreenSaver_ad.h 2012-02-20 20:20:49.16304 
+0100
+diff -uNr old-xscreensaver-5.20/driver/XScreenSaver_ad.h 
xscreensaver-5.20/driver/XScreenSaver_ad.h
+--- old-xscreensaver-5.20/driver/XScreenSaver_ad.h 2012-10-06 
22:20:04.0 +0200
 xscreensaver-5.20/driver/XScreenSaver_ad.h 2012-12-26 05:39:10.446124543 
+0100
 @@ -1,35 +1,36 @@
  #error Do not run app-defaults files through xrdb!,
  #error That does not do what you might expect.,
@@ -61,7 +48,7 @@
 +*ignoreUninstalledPrograms: True,
 +*textMode:   date,
  *textLiteral:XScreenSaver,
- *textFile:   /usr/X11/share/X11/doc/README.sgml,
+ *textFile:   ,
  *textProgram:fortune,
 @@ -195,7 +196,7 @@
GL: gleidescope -root   
\\n\
@@ -72,10 +59,9 @@
GL: hypertorus -root
\\n\
  - GL: jigglypuff -root
\\n\
metaballs -root \\n\
-Index: xscreensaver-5.15/driver/XScreenSaver.ad.in
-===
 xscreensaver-5.15.orig/driver/XScreenSaver.ad.in   2011-09-28 
12:54:58.0 +0200
-+++ xscreensaver-5.15/driver/XScreenSaver.ad.in2012-02-20 
20:20:49.16251 +0100
+diff -uNr old-xscreensaver-5.20/driver/XScreenSaver.ad.in 
xscreensaver-5.20/driver/XScreenSaver.ad.in
+--- old-xscreensaver-5.20/driver/XScreenSaver.ad.in2012-10-06 
22:04:17.0 +0200
 xscreensaver-5.20/driver/XScreenSaver.ad.in

commit valgrind for openSUSE:Factory

2012-12-31 Thread h_root
Hello community,

here is the log from the commit of package valgrind for openSUSE:Factory 
checked in at 2012-12-31 19:32:39

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-12-31 
14:26:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.valgrind.new/valgrind.changes   2012-12-31 
19:32:41.0 +0100
@@ -1,0 +2,5 @@
+Mon Dec 31 14:26:31 UTC 2012 - idon...@suse.com
+
+- Fix last patch 
+
+---



Other differences:
--
++ valgrind-glibc-2.17.patch ++
--- /var/tmp/diff_new_pack.jFjLxD/_old  2012-12-31 19:32:42.0 +0100
+++ /var/tmp/diff_new_pack.jFjLxD/_new  2012-12-31 19:32:42.0 +0100
@@ -1,30 +1,18 @@
-Index: valgrind-3.8.1/configure
+Index: valgrind-3.8.1/configure.in
 ===
 valgrind-3.8.1.orig/configure
-+++ valgrind-3.8.1/configure
-@@ -6604,6 +6604,16 @@ $as_echo #define GLIBC_2_16 1 confde
+--- valgrind-3.8.1.orig/configure.in
 valgrind-3.8.1/configure.in
+@@ -906,6 +906,13 @@ case ${GLIBC_VERSION} in
DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
;;
 + 2.17)
-+  { $as_echo $as_me:${as_lineno-$LINENO}: result: 2.16 family 5
-+$as_echo 2.17 family 6; }
-+
-+$as_echo #define GLIBC_2_17 1 confdefs.h
-+
++  AC_MSG_RESULT(2.17 family)
++  AC_DEFINE([GLIBC_2_17], 1, [Define to 1 if you're using glibc 2.17.x])
 +  DEFAULT_SUPP=glibc-2.X.supp ${DEFAULT_SUPP}
 +  DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
 +  DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
-+;;
++  ;;
   darwin)
-   { $as_echo $as_me:${as_lineno-$LINENO}: result: Darwin 5
- $as_echo Darwin 6; }
-@@ -6624,7 +6634,7 @@ $as_echo #define BIONIC_LIBC 1 confd
-  *)
-   { $as_echo $as_me:${as_lineno-$LINENO}: result: unsupported version 
${GLIBC_VERSION} 5
- $as_echo unsupported version ${GLIBC_VERSION} 6; }
--  as_fn_error Valgrind requires glibc version 2.2 - 2.16 $LINENO 5
-+  as_fn_error Valgrind requires glibc version 2.2 - 2.17 $LINENO 5
-   as_fn_error or Darwin libc $LINENO 5
-   ;;
- esac
+   AC_MSG_RESULT(Darwin)
+   AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])

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