commit alsa for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package alsa for openSUSE:Factory checked in 
at 2012-11-14 09:11:39

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


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

Changes:

--- /work/SRC/openSUSE:Factory/alsa/alsa.changes2012-10-18 
15:00:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.alsa.new/alsa.changes   2012-11-14 
09:11:40.0 +0100
@@ -1,0 +2,10 @@
+Tue Nov 13 16:39:26 CET 2012 - ti...@suse.de
+
+- backport fixes from upstream tree:
+  0031-pcm-support-for-audio-timestamps.patch
+  0032-pcm-fix-64-bit-SNDRV_PCM_IOCTL_STATUS-ABI-breakage.patch
+  0033-PCM-Fix-memory-leak-for-pcm-empty-and-asym-plugins.patch
+  0034-Reduce-compilation-warnings.patch
+  0035-PCM-Avoid-busy-loop-in-snd_pcm_write_areas-with-rate.patch
+
+---

New:

  0031-pcm-support-for-audio-timestamps.patch
  0032-pcm-fix-64-bit-SNDRV_PCM_IOCTL_STATUS-ABI-breakage.patch
  0033-PCM-Fix-memory-leak-for-pcm-empty-and-asym-plugins.patch
  0034-Reduce-compilation-warnings.patch
  0035-PCM-Avoid-busy-loop-in-snd_pcm_write_areas-with-rate.patch



Other differences:
--
++ alsa.spec ++
--- /var/tmp/diff_new_pack.t0J6Ri/_old  2012-11-14 09:11:44.0 +0100
+++ /var/tmp/diff_new_pack.t0J6Ri/_new  2012-11-14 09:11:44.0 +0100
@@ -82,6 +82,11 @@
 Patch27:0027-PCM-Fix-infinite-loop-in-htimestamp-of-dmix-dsnoop-a.patch
 Patch28:0028-test-add-audio_time.patch
 Patch30:0030-PCM-Fix-the-invalid-snd_pcm_close-calls-in-rate-plug.patch
+Patch31:0031-pcm-support-for-audio-timestamps.patch
+Patch32:0032-pcm-fix-64-bit-SNDRV_PCM_IOCTL_STATUS-ABI-breakage.patch
+Patch33:0033-PCM-Fix-memory-leak-for-pcm-empty-and-asym-plugins.patch
+Patch34:0034-Reduce-compilation-warnings.patch
+Patch35:0035-PCM-Avoid-busy-loop-in-snd_pcm_write_areas-with-rate.patch
 #
 Patch99:alsa-lib-doxygen-avoid-crash-for-11.3.diff
 Url:http://www.alsa-project.org/
@@ -162,6 +167,11 @@
 %patch27 -p1
 %patch28 -p1
 %patch30 -p1
+%patch31 -p1
+%patch32 -p1
+%patch33 -p1
+%patch34 -p1
+%patch35 -p1
 %if %suse_version == 1130
 %patch99 -p1
 %endif

++ 0031-pcm-support-for-audio-timestamps.patch ++
From cf40ea169aad366b83f431addafea6327149 Mon Sep 17 00:00:00 2001
From: Pierre-Louis Bossart pierre-louis.boss...@linux.intel.com
Date: Tue, 12 Jun 2012 14:36:40 -0500
Subject: [PATCH 31/35] pcm: support for audio timestamps

add new snd_pcm_status_get_audio_htstamp() routine to
query the audio timestamps provided by the kernel.

This change provides applications with better ways
to track elapsed time. Before this patch, applications
would subtract queued samples (delay) from written samples,
resulting in a 1-2 sample error.

Also add snd_pcm_hw_params_supports_audio_wallclock_ts()
to query what the hardware supports.

TODO: check protocol compatibility?

Signed-off-by: Pierre-Louis Bossart pierre-louis.boss...@linux.intel.com
Signed-off-by: Takashi Iwai ti...@suse.de
---
 include/pcm.h  |  2 ++
 include/sound/asound.h |  7 --
 src/pcm/pcm.c  | 31 +++
 test/audio_time.c  | 68 ++
 4 files changed, 96 insertions(+), 12 deletions(-)

diff --git a/include/pcm.h b/include/pcm.h
index 290593b..1ce91e7 100644
--- a/include/pcm.h
+++ b/include/pcm.h
@@ -631,6 +631,7 @@ int snd_pcm_hw_params_is_half_duplex(const 
snd_pcm_hw_params_t *params);
 int snd_pcm_hw_params_is_joint_duplex(const snd_pcm_hw_params_t *params);
 int snd_pcm_hw_params_can_sync_start(const snd_pcm_hw_params_t *params);
 int snd_pcm_hw_params_can_disable_period_wakeup(const snd_pcm_hw_params_t 
*params);
+int snd_pcm_hw_params_supports_audio_wallclock_ts(const snd_pcm_hw_params_t 
*params);
 int snd_pcm_hw_params_get_rate_numden(const snd_pcm_hw_params_t *params,
  unsigned int *rate_num,
  unsigned int *rate_den);
@@ -939,6 +940,7 @@ void snd_pcm_status_get_trigger_tstamp(const 
snd_pcm_status_t *obj, snd_timestam
 void snd_pcm_status_get_trigger_htstamp(const snd_pcm_status_t *obj, 
snd_htimestamp_t *ptr);
 void snd_pcm_status_get_tstamp(const snd_pcm_status_t *obj, snd_timestamp_t 
*ptr);
 void snd_pcm_status_get_htstamp(const snd_pcm_status_t *obj, snd_htimestamp_t 
*ptr);
+void snd_pcm_status_get_audio_htstamp(const snd_pcm_status_t *obj, 
snd_htimestamp_t *ptr);
 snd_pcm_sframes_t snd_pcm_status_get_delay(const snd_pcm_status_t *obj);
 snd_pcm_uframes_t snd_pcm_status_get_avail(const snd_pcm_status_t *obj);
 snd_pcm_uframes_t 

commit flash-player for openSUSE:12.1:Update

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package flash-player for 
openSUSE:12.1:Update checked in at 2012-11-14 09:11:58

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


Package is flash-player, Maintainer is dmuel...@suse.com

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Jz5nsW/_old  2012-11-14 09:11:59.0 +0100
+++ /var/tmp/diff_new_pack.Jz5nsW/_new  2012-11-14 09:11:59.0 +0100
@@ -1 +1 @@
-link package='flash-player.991' cicount='copy' /
+link package='flash-player.1069' cicount='copy' /

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



commit glib2-branding-openSUSE for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package glib2-branding-openSUSE for 
openSUSE:Factory checked in at 2012-11-14 09:12:51

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


Package is glib2-branding-openSUSE, Maintainer is gnome-maintain...@suse.de

Changes:

--- 
/work/SRC/openSUSE:Factory/glib2-branding-openSUSE/glib2-branding-openSUSE.changes
  2012-07-12 10:43:11.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.glib2-branding-openSUSE.new/glib2-branding-openSUSE.changes
 2012-11-14 09:12:52.0 +0100
@@ -1,0 +2,8 @@
+Mon Nov 12 17:56:36 UTC 2012 - dims...@opensuse.org
+
+- No longer set
+  org.gnome.settings-daemon.plugins.updates/auto-update-type: this
+  setting was removed from the schema during GNOME 3.6 development.
+  (gnome-settings-daemon commit 7cd4aad).
+
+---



Other differences:
--
++ glib2-branding.gschema.override.in ++
--- /var/tmp/diff_new_pack.qXCM98/_old  2012-11-14 09:12:59.0 +0100
+++ /var/tmp/diff_new_pack.qXCM98/_new  2012-11-14 09:12:59.0 +0100
@@ -61,11 +61,6 @@
 # sleep-inactive-battery = true
 # sleep-inactive-battery-timeout = 1200
 
-[org.gnome.settings-daemon.plugins.updates]
-## Don't try to automatically install security updates, as it pops out a polkit
-## dialog with no context for the user
-auto-update-type = none
-
 [org.gnome.settings-daemon.plugins.xsettings]
 ## the PackageKit gtk+ module is too spammy, fdo#23917
 disabled-gtk-modules = [ pk-gtk-module ]

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



commit libyui-ncurses for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package libyui-ncurses for openSUSE:Factory 
checked in at 2012-11-14 09:13:54

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-10-06 18:39:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.libyui-ncurses.new/libyui-ncurses.changes   
2012-11-14 09:13:56.0 +0100
@@ -1,0 +2,15 @@
+Fri Nov  2 18:11:49 CET 2012 - anase...@linux.it
+
+-  NCApplication: Reimplemented setApplicationTitle from YApplication
+-  Added the availiability to build a git sha1 versioned package using
+   cmake -DGIT_VERSION=on
+- V 2.43.2
+
+---
+Thu Oct 18 11:07:50 CEST 2012 - g...@suse.de
+
+- NCCheckBoxFrame: respect option `noAutoEnable, bug-fix for 
+  nested frames (bnc #7853079),
+- V 2.43.1
+
+---

Old:

  libyui-ncurses-2.43.0.tar.bz2

New:

  libyui-ncurses-2.43.2.tar.bz2



Other differences:
--
++ libyui-ncurses-doc.spec ++
--- /var/tmp/diff_new_pack.Dsgqxo/_old  2012-11-14 09:13:59.0 +0100
+++ /var/tmp/diff_new_pack.Dsgqxo/_new  2012-11-14 09:13:59.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses (Version 2.43.0)
+# spec file for package libyui-ncurses (Version 2.43.2)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -16,7 +16,7 @@
 #
 
 Name:  libyui-ncurses-doc
-Version:   2.43.0
+Version:   2.43.2
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-%{version}.tar.bz2

++ libyui-ncurses.spec ++
--- /var/tmp/diff_new_pack.Dsgqxo/_old  2012-11-14 09:13:59.0 +0100
+++ /var/tmp/diff_new_pack.Dsgqxo/_new  2012-11-14 09:13:59.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui-ncurses (Version 2.43.0)
+# spec file for package libyui-ncurses (Version 2.43.2)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -17,7 +17,7 @@
 # norootforbuild
 
 Name:  libyui-ncurses
-Version:   2.43.0
+Version:   2.43.2
 Release:   0
 License:   LGPL-2.1 or LGPL-3.0
 Source:libyui-ncurses-%{version}.tar.bz2
@@ -28,7 +28,7 @@
 BuildRequires: gcc-c++
 BuildRequires: pkg-config
 
-%define libyui_devel_version libyui-devel = 2.42.0
+%define libyui_devel_version libyui-devel = 2.42.3
 BuildRequires: %{libyui_devel_version}
 BuildRequires: ncurses-devel
 

++ libyui-ncurses-2.43.0.tar.bz2 - libyui-ncurses-2.43.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.43.0/CMakeLists.txt 
new/libyui-ncurses-2.43.2/CMakeLists.txt
--- old/libyui-ncurses-2.43.0/CMakeLists.txt2012-10-04 12:00:06.0 
+0200
+++ new/libyui-ncurses-2.43.2/CMakeLists.txt2012-11-13 11:58:05.0 
+0100
@@ -17,6 +17,28 @@
 SET( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules ${BUILDTOOLS_DIR} 
${CMAKE_MODULE_PATH} )
 
 INCLUDE( LibyuiCommon )
+
+#if you need to get a git versioned package you can use cmake -DGIT_VERSION=on
+if (GIT_VERSION)
+  FIND_PACKAGE(Git)
+  if(GIT_FOUND)
+exec_program(
+ ${GIT_EXECUTABLE}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ARGS describe --tags
+OUTPUT_VARIABLE GIT_VERSION )
+
+string( REGEX MATCH -g[0-9|a-f]+$ VERSION_SHA1 ${GIT_VERSION} )
+string( REGEX REPLACE [g]  VERSION_SHA1 ${VERSION_SHA1} )
+set (GIT_SHA1_VERSION ${VERSION_SHA1})
+  else()
+message (STATUS GIT_VERSION option needs git installed)
+set (GIT_SHA1_VERSION )
+  endif()
+else()
+  set (GIT_SHA1_VERSION )
+endif()
+
 INCLUDE( ${CMAKE_CURRENT_SOURCE_DIR}/VERSION.cmake )
 
 INITIALIZE()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.43.0/ChangeLog 
new/libyui-ncurses-2.43.2/ChangeLog
--- old/libyui-ncurses-2.43.0/ChangeLog 2012-10-04 12:00:06.0 +0200
+++ new/libyui-ncurses-2.43.2/ChangeLog 2012-11-13 11:58:05.0 +0100
@@ -1,4 +1,19 @@
 ---
+Fri Nov  2 18:11:49 CET 2012 - anase...@linux.it
+
+-  NCApplication: Reimplemented setApplicationTitle from YApplication
+-  Added the availiability to build a git sha1 versioned package using
+   cmake -DGIT_VERSION=on
+- V 2.43.2
+
+---
+Thu Oct 18 11:07:50 CEST 2012 - g...@suse.de
+
+- NCCheckBoxFrame: respect 

commit mgp for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package mgp for openSUSE:Factory checked in 
at 2012-11-14 09:14:38

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


Package is mgp, Maintainer is nadvor...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/mgp/mgp.changes  2011-12-08 11:53:10.0 
+0100
+++ /work/SRC/openSUSE:Factory/.mgp.new/mgp.changes 2012-11-14 
09:14:39.0 +0100
@@ -1,0 +2,12 @@
+Wed Aug 22 17:48:46 CEST 2012 - ti...@suse.de
+
+- Add recommends imlib2 to be installed automatically
+
+---
+Thu Aug 16 16:53:19 CEST 2012 - ti...@suse.de
+
+- Add bilinear image resampling (bnc#789418)
+- Fix BadDrawable error with zoomonclk (bnc#789416)
+- Fix the potential buffer overflow in imlib handling code
+
+---

New:

  mgp-bilinear-zoom.diff
  mgp-imlib2-segfault-fix.diff



Other differences:
--
++ mgp.spec ++
--- /var/tmp/diff_new_pack.K2yOqy/_old  2012-11-14 09:14:40.0 +0100
+++ /var/tmp/diff_new_pack.K2yOqy/_new  2012-11-14 09:14:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mgp
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   mgp
 BuildRequires:  automake
 BuildRequires:  bison
@@ -29,13 +30,16 @@
 BuildRequires:  pkgconfig
 BuildRequires:  sharutils
 BuildRequires:  xorg-x11-devel
-License:BSD-3-Clause
-Group:  Productivity/Publishing/Presentation
 Provides:   magicpoint 
-Requires:   perl freetype sharutils
+Requires:   freetype
+Requires:   perl
+Requires:   sharutils
+Recommends: imlib2
 Version:1.13a
 Release:0
 Summary:MagicPoint, an X Window System Presentation Tool
+License:BSD-3-Clause
+Group:  Productivity/Publishing/Presentation
 Url:http://member.wide.ad.jp/wg/mgp/
 Source: magicpoint-%{version}.tar.bz2
 Source1:README.SuSE
@@ -50,6 +54,8 @@
 Patch10:magicpoint-%{version}-xft-rendering-fix.diff
 Patch11:magicpoint-%{version}-lib64.diff
 Patch13:magicpoint-%{version}-warnings.patch
+Patch14:mgp-bilinear-zoom.diff
+Patch15:mgp-imlib2-segfault-fix.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -75,6 +81,8 @@
 #patch10
 %patch11
 %patch13
+%patch14 -p1
+%patch15 -p1
 cp %{SOURCE1} .
 rm -rf sample/CVS
 

++ mgp-bilinear-zoom.diff ++
---
 image/zoom.c |  159 ++-
 mgp.c|9 ++-
 mgp.man  |2 
 3 files changed, 168 insertions(+), 2 deletions(-)

--- a/image/zoom.c
+++ b/image/zoom.c
@@ -11,6 +11,8 @@
 #include copyright.h
 #include image.h
 
+int smooth_scaling = 1;
+
 static unsigned int *buildIndex(width, zoom, rwidth)
  unsigned int  width;
  float zoom;
@@ -36,6 +38,144 @@ static unsigned int *buildIndex(width, z
   return(index);
 }
 
+static Pixel rgb8_to_true(r, g, b)
+ byte r;
+ byte g;
+ byte b;
+{
+  return (Pixel)r  16 | (Pixel)g  8 | (Pixel)b;
+}
+
+/* simple bilinear resampling */
+static void resize_image(oimage, image)
+ Image *oimage;
+ Image *image;
+{
+  double cx, cy, xoff, yoff;
+  double xstep, ystep;
+  int maxx, maxy;
+  int x1, x2, y1, y2;
+  int i, j;
+  byte *line1, *line2;
+  byte *destptr;
+  unsigned int srclinelen;
+  unsigned int pixlen;
+  Pixel v[4];
+  unsigned int r, g, b;
+
+  maxx = oimage-width - 1;
+  maxy = oimage-height - 1;
+  pixlen= oimage-pixlen;
+  srclinelen= oimage-width * pixlen;
+  destptr = image-data;
+  cy = 0;
+  xstep = (double)oimage-width / (double)image-width;
+  ystep = (double)oimage-height / (double)image-height;
+  for (j = image-height; j  0; j--) {
+y1 = cy;
+if (y1 = maxy) {
+  y1 = y2 = maxy;
+  yoff = 0;
+} else {
+  y2 = y1 + 1;
+  yoff = cy - y1;
+}
+line1 = oimage-data + srclinelen * y1;
+line2 = oimage-data + srclinelen * y2;
+cx = 0;
+for (i = image-width; i  0; i--) {
+  x1 = cx;
+  if (x1 = maxx) {
+   x1 = x2 = maxx;
+   xoff = 0;
+  } else {
+   x2 = x1 + 1;
+   xoff = cx - x1;
+  }
+  v[0] = memToVal(line1 + pixlen * x1, pixlen);
+  v[1] = memToVal(line1 + pixlen * x2, pixlen);
+  v[2] = memToVal(line2 + pixlen * 

commit openssh for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package openssh for openSUSE:Factory checked 
in at 2012-11-14 09:15:15

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


Package is openssh, Maintainer is pce...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/openssh/openssh-askpass-gnome.changes
2012-06-28 15:38:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.openssh.new/openssh-askpass-gnome.changes   
2012-11-14 09:15:16.0 +0100
@@ -1,0 +2,41 @@
+Tue Nov 13 10:51:12 UTC 2012 - meiss...@suse.com
+
+- Updated to 6.1p1, a bugfix release
+  Features:
+ * sshd(8): This release turns on pre-auth sandboxing sshd by default for
+   new installs, by setting UsePrivilegeSeparation=sandbox in sshd_config.
+ * ssh-keygen(1): Add options to specify starting line number and number of
+   lines to process when screening moduli candidates, allowing processing
+   of different parts of a candidate moduli file in parallel
+ * sshd(8): The Match directive now supports matching on the local (listen)
+   address and port upon which the incoming connection was received via
+   LocalAddress and LocalPort clauses.
+ * sshd(8): Extend sshd_config Match directive to allow setting AcceptEnv
+   and {Allow,Deny}{Users,Groups}
+ * Add support for RFC6594 SSHFP DNS records for ECDSA key types. bz#1978
+ * ssh-keygen(1): Allow conversion of RSA1 keys to public PEM and PKCS8
+ * sshd(8): Allow the sshd_config PermitOpen directive to accept none as
+   an argument to refuse all port-forwarding requests.
+ * sshd(8): Support none as an argument for AuthorizedPrincipalsFile
+ * ssh-keyscan(1): Look for ECDSA keys by default. bz#1971
+ * sshd(8): Add VersionAddendum to sshd_config to allow server operators
+   to append some arbitrary text to the server SSH protocol banner.
+ Bugfixes:
+ * ssh(1)/sshd(8): Don't spin in accept() in situations of file
+   descriptor exhaustion. Instead back off for a while.
+ * ssh(1)/sshd(8): Remove hmac-sha2-256-96 and hmac-sha2-512-96 MACs as
+   they were removed from the specification. bz#2023,
+ * sshd(8): Handle long comments in config files better. bz#2025
+ * ssh(1): Delay setting tty_flag so RequestTTY options are correctly
+   picked up. bz#1995
+ * sshd(8): Fix handling of /etc/nologin incorrectly being applied to root
+   on platforms that use login_cap.
+ Portable OpenSSH:
+ * sshd(8): Allow sshd pre-auth sandboxing to fall-back to the rlimit
+   sandbox from the Linux SECCOMP filter sandbox when the latter is
+   not available in the kernel.
+ * ssh(1): Fix NULL dereference when built with LDNS and using DNSSEC to
+   retrieve a CNAME SSHFP record.
+ * Fix cross-compilation problems related to pkg-config. bz#1996
+
+---
--- /work/SRC/openSUSE:Factory/openssh/openssh.changes  2012-10-27 
13:24:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.openssh.new/openssh.changes 2012-11-14 
09:15:16.0 +0100
@@ -1,0 +2,47 @@
+Tue Nov 13 10:26:37 UTC 2012 - meiss...@suse.com
+
+- Updated to 6.1p1, a bugfix release
+  Features:
+ * sshd(8): This release turns on pre-auth sandboxing sshd by default for
+   new installs, by setting UsePrivilegeSeparation=sandbox in sshd_config.
+ * ssh-keygen(1): Add options to specify starting line number and number of
+   lines to process when screening moduli candidates, allowing processing
+   of different parts of a candidate moduli file in parallel
+ * sshd(8): The Match directive now supports matching on the local (listen)
+   address and port upon which the incoming connection was received via
+   LocalAddress and LocalPort clauses.
+ * sshd(8): Extend sshd_config Match directive to allow setting AcceptEnv
+   and {Allow,Deny}{Users,Groups}
+ * Add support for RFC6594 SSHFP DNS records for ECDSA key types. bz#1978
+ * ssh-keygen(1): Allow conversion of RSA1 keys to public PEM and PKCS8
+ * sshd(8): Allow the sshd_config PermitOpen directive to accept none as
+   an argument to refuse all port-forwarding requests.
+ * sshd(8): Support none as an argument for AuthorizedPrincipalsFile
+ * ssh-keyscan(1): Look for ECDSA keys by default. bz#1971
+ * sshd(8): Add VersionAddendum to sshd_config to allow server operators
+   to append some arbitrary text to the server SSH protocol banner.
+ Bugfixes:
+ * ssh(1)/sshd(8): Don't spin in accept() in situations of file
+   descriptor exhaustion. Instead back off for a while.
+ * ssh(1)/sshd(8): Remove hmac-sha2-256-96 and hmac-sha2-512-96 MACs as
+   they were removed from the specification. bz#2023,
+ * sshd(8): Handle long comments in config files better. bz#2025
+ * ssh(1): Delay setting tty_flag so RequestTTY options are correctly
+   picked up. bz#1995
+ * sshd(8): Fix handling of /etc/nologin incorrectly being 

commit pdf2djvu for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package pdf2djvu for openSUSE:Factory 
checked in at 2012-11-14 09:15:26

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


Package is pdf2djvu, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/pdf2djvu/pdf2djvu.changes2012-10-16 
07:13:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.pdf2djvu.new/pdf2djvu.changes   2012-11-14 
09:15:28.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 13 12:44:43 UTC 2012 - idon...@suse.com
+
+- add pdf2djvu-poppler.patch to fix compile with new poppler 
+
+---

New:

  pdf2djvu-poppler.patch



Other differences:
--
++ pdf2djvu.spec ++
--- /var/tmp/diff_new_pack.Di7FG3/_old  2012-11-14 09:15:29.0 +0100
+++ /var/tmp/diff_new_pack.Di7FG3/_new  2012-11-14 09:15:29.0 +0100
@@ -24,6 +24,7 @@
 Group:  Productivity/Publishing/PDF
 Url:http://pdf2djvu.googlecode.com/
 Source0:http://pdf2djvu.googlecode.com/files/%{name}_%{version}.tar.gz
+Patch1: pdf2djvu-poppler.patch
 BuildRequires:  djvulibre
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig(GraphicsMagick++)
@@ -43,6 +44,9 @@
 
 %prep
 %setup -q
+%if 0%{?suse_version}  1220
+%patch1 -p1
+%endif
 
 %build
 %configure

++ pdf2djvu-poppler.patch ++
Index: pdf2djvu-0.7.15/pdf-backend.cc
===
--- pdf2djvu-0.7.15.orig/pdf-backend.cc
+++ pdf2djvu-0.7.15/pdf-backend.cc
@@ -28,7 +28,7 @@
 #if POPPLER_VERSION  2100
 #include UTF8.h
 #else
-#include UTF.h
+#include UnicodeMap.h
 #endif
 #include UnicodeTypeTable.h
 
@@ -575,7 +575,9 @@ pdf::Object *pdf::dict_lookup(pdf::Dict
 void pdf::write_as_utf8(std::ostream stream, Unicode unicode_char)
 {
   char buffer[8];
-  int seqlen = mapUTF8(unicode_char, buffer, sizeof buffer);
+  GooString enc(UTF-8);
+  UnicodeMap *utf8Map = globalParams-getUnicodeMap(enc);
+  int seqlen = utf8Map-mapUnicode(unicode_char, buffer, sizeof buffer);
   stream.write(buffer, seqlen);
 }
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-distribute for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package python-distribute for 
openSUSE:Factory checked in at 2012-11-14 09:15:32

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


Package is python-distribute, Maintainer is cth...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/python-distribute/python3-distribute.changes 
2012-11-02 07:31:04.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-distribute.new/python3-distribute.changes
2012-11-14 09:15:34.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 11 20:26:29 UTC 2012 - jf...@funktronics.ca
+
+- Add files for new private '_markerlib' library
+
+---



Other differences:
--
++ python3-distribute.spec ++
--- /var/tmp/diff_new_pack.kKG7qE/_old  2012-11-14 09:15:35.0 +0100
+++ /var/tmp/diff_new_pack.kKG7qE/_new  2012-11-14 09:15:35.0 +0100
@@ -78,6 +78,7 @@
 %{python3_sitelib}/site.py*
 %{python3_sitelib}/%{modname}-%{version}-py%{py3_ver}.egg-info/
 %{python3_sitelib}/%{mod2nam}-*-py%{py3_ver}.egg-info
+%{python3_sitelib}/_markerlib
 %if 0%{?suse_version} = 1140
 %dir %{python3_sitelib}/
 %dir %{_prefix}/lib/python%{py3_ver}

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



commit python-numpy for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package python-numpy for openSUSE:Factory 
checked in at 2012-11-14 09:16:14

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


Package is python-numpy, Maintainer is jmate...@suse.com

Changes:

python-numpy.changes: same change
--- /work/SRC/openSUSE:Factory/python-numpy/python3-numpy.changes   
2012-09-17 14:08:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-numpy.new/python3-numpy.changes  
2012-11-14 09:16:16.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 13 12:23:18 UTC 2012 - idon...@suse.com
+
+- Add numpy-python33.patch to fix compilation with Python 3.3 
+
+---

New:

  numpy-python33.patch



Other differences:
--
++ python-numpy-doc.spec ++
--- /var/tmp/diff_new_pack.6bfaL4/_old  2012-11-14 09:16:17.0 +0100
+++ /var/tmp/diff_new_pack.6bfaL4/_new  2012-11-14 09:16:17.0 +0100
@@ -15,12 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define modname numpy
 Name:   python-%{modname}-doc
 %define docname numpydoc
 Version:1.6.2
-%define docvers 0.4
 Release:0
+%define docvers 0.4
 Url:http://sourceforge.net/projects/numpy
 Summary:Documentation for python-numpy
 License:BSD-3-Clause
@@ -28,19 +29,19 @@
 Source: %{modname}-%{version}.tar.gz
 Patch1: numpy-buildfix.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
+BuildRequires:  blas-devel
+BuildRequires:  lapack-devel
 BuildRequires:  python-Sphinx
+BuildRequires:  python-devel
 BuildRequires:  python-matplotlib
 BuildRequires:  python-numpy-devel
-BuildRequires:  blas-devel
-BuildRequires:  lapack-devel
 BuildRequires:  texlive-latex
 BuildRequires:  zip
 Provides:   python-numpydoc = %{version}
 Obsoletes:  python-numpydoc  %{version}
 %if 0%{?suse_version}
-BuildRequires:  gcc-fortran
 BuildRequires:  fdupes
+BuildRequires:  gcc-fortran
 %if 0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print(get_python_lib()))}
 %else

++ python-numpy.spec ++
--- /var/tmp/diff_new_pack.6bfaL4/_old  2012-11-14 09:16:17.0 +0100
+++ /var/tmp/diff_new_pack.6bfaL4/_new  2012-11-14 09:16:17.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define modname numpy
 Name:   python-%{modname}
 Version:1.6.2
@@ -26,14 +27,14 @@
 Source: %{modname}-%{version}.tar.gz
 Patch1: numpy-buildfix.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
 BuildRequires:  blas-devel
 BuildRequires:  lapack-devel
+BuildRequires:  python-devel
 Requires:   python = %{py_ver}
 Provides:   numpy = %{version}
 %if 0%{?suse_version}
-BuildRequires:  gcc-fortran
 BuildRequires:  fdupes
+BuildRequires:  gcc-fortran
 # FIXME: atlas is horribly broken
 # %if 0%{?suse_version} = 1210
 # BuildRequires:  libatlas3-devel
@@ -67,9 +68,9 @@
 Summary:Development files for %{modname} applications
 Group:  Development/Libraries/Python
 Requires:   %{name} = %{version}
-Requires:   python-devel
 Requires:   blas-devel
 Requires:   lapack-devel
+Requires:   python-devel
 %if 0%{?suse_version}
 Requires:   gcc-fortran
 %py_requires -d

++ python3-numpy.spec ++
--- /var/tmp/diff_new_pack.6bfaL4/_old  2012-11-14 09:16:17.0 +0100
+++ /var/tmp/diff_new_pack.6bfaL4/_new  2012-11-14 09:16:17.0 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define modname numpy
 Name:   python3-%{modname}
 Version:1.6.2
@@ -25,12 +26,13 @@
 Group:  Development/Libraries/Python
 Source: %{modname}-%{version}.tar.gz
 Patch1: numpy-buildfix.patch
+Patch2: numpy-python33.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  blas-devel
+BuildRequires:  lapack-devel
 BuildRequires:  python3
 BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
-BuildRequires:  blas-devel
-BuildRequires:  lapack-devel
 # FIXME: atlas is horribly broken
 # %if 0%{?suse_version} = 1210
 # BuildRequires:  libatlas3-devel
@@ -40,8 +42,8 @@
 %{!?py3_ver: %global py3_ver %(python3 -c import sys; 
version=str(sys.version_info[0]) + '.' + str(sys.version_info[1]); 
print(version) 2/dev/null || echo PYTHON-NOT-FOUND)}
 %endif
 %if 0%{?suse_version}
-BuildRequires:  gcc-fortran
 BuildRequires:  fdupes
+BuildRequires:  gcc-fortran
 %else

commit smartmontools for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package smartmontools for openSUSE:Factory 
checked in at 2012-11-14 09:16:33

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


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

Changes:

--- /work/SRC/openSUSE:Factory/smartmontools/smartmontools.changes  
2012-09-12 07:13:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.smartmontools.new/smartmontools.changes 
2012-11-14 09:16:34.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov  6 14:30:35 UTC 2012 - co...@suse.com
+
+- do no longer require syslog on 12.3, journal is enough for
+  some installations
+
+---



Other differences:
--
++ smartmontools.spec ++
--- /var/tmp/diff_new_pack.DE7RDO/_old  2012-11-14 09:16:35.0 +0100
+++ /var/tmp/diff_new_pack.DE7RDO/_new  2012-11-14 09:16:35.0 +0100
@@ -36,8 +36,10 @@
 PreReq: %insserv_prereq
 PreReq: coreutils
 %if 0%{?suse_version}  1130
+%if 0%{?suse_version}  1230
 PreReq: sysvinit(syslog)
 %endif
+%endif
 %if 0%{?suse_version} = 1100
 Requires:   powersave
 %endif

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



commit yast2-storage for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory 
checked in at 2012-11-14 09:17:14

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


Package is yast2-storage, Maintainer is aschn...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes  
2012-09-23 08:46:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 
2012-11-14 09:17:16.0 +0100
@@ -1,0 +2,41 @@
+Tue Nov 13 13:20:59 CET 2012 - f...@suse.de
+
+- 2.23.1
+- removed boost-devel and openssl-devel from BuildRequires
+- recognize BIOS grub partition as boot partition (bnc#786870)
+ 
+---
+Wed Nov  7 16:14:01 CET 2012  - f...@suse.de
+
+- support creation of BIOS grub partition on GPT (bnc#786870)
+
+---
+Mon Nov  5 13:42:32 CET 2012  - f...@suse.de
+
+- do a swapoff in live installer when swap partition gets removed
+  (bnc#779527)
+- disable Fstab Options button when not fstab entry (bnc#786788)
+
+---
+Tue Oct 23 16:09:38 CEST 2012 - f...@suse.de
+
+- support key mkfs_options in volumes for autoyast
+
+---
+Tue Oct 16 15:00:38 CEST 2012 - f...@suse.de
+
+- make autoyast able to continue on commit errors (bnc#785234)
+
+---
+Fri Oct 12 16:55:53 CEST 2012 - aschn...@suse.de
+
+- mention in help text that read-only mount flag is ignored during
+  installation (bnc#771556)
+
+---
+Tue Sep 25 17:05:18 CEST 2012 - f...@suse.de
+
+- propose reuse (without format) an existing EFI boot partition 
+  (bnc#781689)
+
+---

Old:

  yast2-storage-2.23.0.tar.bz2

New:

  yast2-storage-2.23.1.tar.bz2



Other differences:
--
++ yast2-storage.spec ++
--- /var/tmp/diff_new_pack.00dsNU/_old  2012-11-14 09:17:17.0 +0100
+++ /var/tmp/diff_new_pack.00dsNU/_new  2012-11-14 09:17:17.0 +0100
@@ -17,20 +17,18 @@
 
 
 Name:   yast2-storage
-Version:2.23.0
+Version:2.23.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-storage-%{version}.tar.bz2
 
-BuildRequires:  boost-devel
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  gcc-c++
-BuildRequires:  libstorage-devel = 2.23.0
+BuildRequires:  libstorage-devel = 2.23.1
 BuildRequires:  libtool
 BuildRequires:  libxslt
-BuildRequires:  openssl-devel
 BuildRequires:  perl-XML-Writer
 BuildRequires:  sablot
 BuildRequires:  sgml-skel
@@ -41,6 +39,7 @@
 BuildRequires:  yast2-devtools
 BuildRequires:  yast2-perl-bindings
 BuildRequires:  yast2-testsuite = 2.19.0
+Requires:   libstorage4 = 2.23.1
 Requires:   perl = %{perl_version}
 Requires:   yast2 = 2.19.4
 Requires:   yast2-core = 2.18.3

++ yast2-storage-2.23.0.tar.bz2 - yast2-storage-2.23.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.23.0/VERSION 
new/yast2-storage-2.23.1/VERSION
--- old/yast2-storage-2.23.0/VERSION2012-09-17 16:11:17.0 +0200
+++ new/yast2-storage-2.23.1/VERSION2012-11-13 13:23:57.0 +0100
@@ -1 +1 @@
-2.23.0
+2.23.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.23.0/storage/src/include/custom_part_check_generated.ycp 
new/yast2-storage-2.23.1/storage/src/include/custom_part_check_generated.ycp
--- 
old/yast2-storage-2.23.0/storage/src/include/custom_part_check_generated.ycp
2012-09-17 15:46:05.0 +0200
+++ 
new/yast2-storage-2.23.1/storage/src/include/custom_part_check_generated.ycp
2012-11-13 13:16:23.0 +0100
@@ -87,6 +87,7 @@
 boolean root_lvm = false;
 symbol  root_fs  = `unknown;
 symbol  boot_fs  = `unknown;
+integer boot_fsid= 0;
 integer boot_size_k  = 0;
 boolean boot_size_check  = !(Arch::board_chrp() || Arch::board_prep() 
|| Arch::board_iseries() || Arch::board_mac());
 boolean fat_system_mount = false;
@@ -157,6 +158,7 @@
boot_end = Region::End(part[region]:[]);
boot_fs = part[used_fs]:`unknown;
boot_size_k = part[size_k]:0;
+   boot_fsid = 

commit opera.1063 for openSUSE:12.1:Update

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package opera.1063 for openSUSE:12.1:Update 
checked in at 2012-11-14 16:30:12

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


Package is opera.1063, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2012-10-22 00:44:18.403455820 +0200
+++ /work/SRC/openSUSE:12.1:Update/.opera.1063.new/opera.changes
2012-11-14 16:30:14.0 +0100
@@ -0,0 +1,958 @@
+---
+Wed Nov  7 06:43:29 UTC 2012 - lijewski.ste...@gmail.com
+
+- recommended security update to 12.10 
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1210
+- fixes [bnc#788321]
+
+---
+Thu Aug 30 14:39:31 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 12.02
+  *Fixed an issue where truncated dialogs may be used to trick users
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1202/
+- fixes [bnc#778087]
+
+---
+Thu Aug  2 19:32:44 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 12.01
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1201/
+- fixes [bnc#774191]
+
+---
+Thu Jul 26 08:33:21 UTC 2012 - lijewski.ste...@zabka.pl
+
+- rename to README.openSUSE
+
+---
+Mon Jul 16 10:02:45 UTC 2012 - lijewski.ste...@zabka.pl
+
+- add README-opensuse note about operapref in file
+- mark operaprefs_fixed.ini as config
+
+---
+Wed Jul  4 18:28:25 UTC 2012 - lijewski.ste...@zabka.pl
+
+- fixes [bnc#769389]:
+added global prefs file disabling opera internal 
+update mechanism
+- use opera provided install script
+
+---
+Mon Jun 18 14:01:48 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 12.00
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1200/
+- fixes [bnc#767045]
+
+---
+Fri May 11 11:37:18 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 11.64:
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1164/
+- fixes [bnc#761633]
+
+---
+Thu Apr 26 06:01:34 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 11.62:
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1162/
+- fixes [bnc#754687], CVE-2012-1924,CVE-2012-1925,CVE-2012-1926,
+  CVE-2012-1927,CVE-2012-1928,CVE-2012-1929CVE-2012-1930,
+  CVE-2012-1931
+
+---
+Mon Mar  5 14:24:04 UTC 2012 - vdziewie...@suse.com
+
+- add Provides: browser(npapi) FATE#313084
+
+---
+Sun Feb  5 12:20:56 UTC 2012 - a...@suse.de
+
+-  Set license to SUSE-NonFree.
+
+---
+Fri Jan 27 12:25:48 UTC 2012 - lijewski.ste...@zabka.pl
+
+- updated to 11.61
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1161/
+- fixes [bnc#743079]
+
+---
+Wed Dec  7 13:16:40 UTC 2011 - prus...@opensuse.org
+
+- updated to 11.60
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1160/
+
+---
+Thu Oct 20 09:56:25 UTC 2011 - prus...@opensuse.org
+
+- updated to 11.52
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1152/
+
+---
+Sat Sep  3 19:51:33 UTC 2011 - lijewski.ste...@gmail.com
+
+- updated to 11.51
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1151/
+
+---
+Wed Jul  6 07:32:37 UTC 2011 - lijewski.ste...@gmail.com
+
+- updated to 11.50
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1150/
+- fixes CVE-2011-1337, CVE-2011-2609 - CVE-2011-2627 [bnc#703668]
+
+---
+Wed Jul  6 07:32:37 UTC 2011 - lijewski.ste...@gmail.com
+
+- updated to 11.15
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1150/
+- fixes [bnc#703668]
+
+---
+Wed May 18 

commit opera for openSUSE:12.1:Update

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package opera for openSUSE:12.1:Update 
checked in at 2012-11-14 16:30:15

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


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

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.rWeleX/_old  2012-11-14 16:30:16.0 +0100
+++ /var/tmp/diff_new_pack.rWeleX/_new  2012-11-14 16:30:16.0 +0100
@@ -1 +1 @@
-link package='opera.839' cicount='copy' /
+link package='opera.1063' cicount='copy' /

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



commit opera.1063 for openSUSE:12.2:Update

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package opera.1063 for openSUSE:12.2:Update 
checked in at 2012-11-14 16:30:16

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


Package is opera.1063, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2012-10-22 00:44:18.403455820 +0200
+++ /work/SRC/openSUSE:12.2:Update/.opera.1063.new/opera.changes
2012-11-14 16:30:19.0 +0100
@@ -0,0 +1,958 @@
+---
+Wed Nov  7 06:43:29 UTC 2012 - lijewski.ste...@gmail.com
+
+- recommended security update to 12.10 
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1210
+- fixes [bnc#788321]
+
+---
+Thu Aug 30 14:39:31 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 12.02
+  *Fixed an issue where truncated dialogs may be used to trick users
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1202/
+- fixes [bnc#778087]
+
+---
+Thu Aug  2 19:32:44 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 12.01
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1201/
+- fixes [bnc#774191]
+
+---
+Thu Jul 26 08:33:21 UTC 2012 - lijewski.ste...@zabka.pl
+
+- rename to README.openSUSE
+
+---
+Mon Jul 16 10:02:45 UTC 2012 - lijewski.ste...@zabka.pl
+
+- add README-opensuse note about operapref in file
+- mark operaprefs_fixed.ini as config
+
+---
+Wed Jul  4 18:28:25 UTC 2012 - lijewski.ste...@zabka.pl
+
+- fixes [bnc#769389]:
+added global prefs file disabling opera internal 
+update mechanism
+- use opera provided install script
+
+---
+Mon Jun 18 14:01:48 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 12.00
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1200/
+- fixes [bnc#767045]
+
+---
+Fri May 11 11:37:18 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 11.64:
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1164/
+- fixes [bnc#761633]
+
+---
+Thu Apr 26 06:01:34 UTC 2012 - lijewski.ste...@zabka.pl
+
+- update to 11.62:
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1162/
+- fixes [bnc#754687], CVE-2012-1924,CVE-2012-1925,CVE-2012-1926,
+  CVE-2012-1927,CVE-2012-1928,CVE-2012-1929CVE-2012-1930,
+  CVE-2012-1931
+
+---
+Mon Mar  5 14:24:04 UTC 2012 - vdziewie...@suse.com
+
+- add Provides: browser(npapi) FATE#313084
+
+---
+Sun Feb  5 12:20:56 UTC 2012 - a...@suse.de
+
+-  Set license to SUSE-NonFree.
+
+---
+Fri Jan 27 12:25:48 UTC 2012 - lijewski.ste...@zabka.pl
+
+- updated to 11.61
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1161/
+- fixes [bnc#743079]
+
+---
+Wed Dec  7 13:16:40 UTC 2011 - prus...@opensuse.org
+
+- updated to 11.60
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1160/
+
+---
+Thu Oct 20 09:56:25 UTC 2011 - prus...@opensuse.org
+
+- updated to 11.52
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1152/
+
+---
+Sat Sep  3 19:51:33 UTC 2011 - lijewski.ste...@gmail.com
+
+- updated to 11.51
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1151/
+
+---
+Wed Jul  6 07:32:37 UTC 2011 - lijewski.ste...@gmail.com
+
+- updated to 11.50
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1150/
+- fixes CVE-2011-1337, CVE-2011-2609 - CVE-2011-2627 [bnc#703668]
+
+---
+Wed Jul  6 07:32:37 UTC 2011 - lijewski.ste...@gmail.com
+
+- updated to 11.15
+  * full changelog available at:
+http://www.opera.com/docs/changelogs/unix/1150/
+- fixes [bnc#703668]
+
+---
+Wed May 18 

commit opera for openSUSE:12.2:Update

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package opera for openSUSE:12.2:Update 
checked in at 2012-11-14 16:30:18

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


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

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.D5pwMP/_old  2012-11-14 16:30:19.0 +0100
+++ /var/tmp/diff_new_pack.D5pwMP/_new  2012-11-14 16:30:19.0 +0100
@@ -1 +1 @@
-link package='opera.839' cicount='copy' /
+link package='opera.1063' cicount='copy' /

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



commit gnome-control-center for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package gnome-control-center for 
openSUSE:Factory checked in at 2012-11-14 16:32:07

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


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

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes
2012-10-31 06:57:44.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center.changes
   2012-11-14 16:32:08.0 +0100
@@ -1,0 +2,11 @@
+Wed Nov 14 13:51:05 UTC 2012 - dims...@opensuse.org
+
+- Don't own %{_datadir}/polkit-1/rules.d: it's owned (with special
+  attr() by polkit).
+
+---
+Wed Nov 14 10:31:21 UTC 2012 - dims...@opensuse.org
+
+- Change with_systemd defines to 1 in order to enable systemd.
+
+---



Other differences:
--
++ gnome-control-center.spec ++
--- /var/tmp/diff_new_pack.FG4A9Y/_old  2012-11-14 16:32:10.0 +0100
+++ /var/tmp/diff_new_pack.FG4A9Y/_new  2012-11-14 16:32:10.0 +0100
@@ -18,7 +18,7 @@
 
 # We cannot enable systemd support right now, as it is exclusive and means we
 # lose ConsoleKit support (bad for sysvinit)
-%define with_systemd 0
+%define with_systemd 1
 
 # We can currently not build ibus support, as it requires ibus 1.5, which has 
not been released yet.
 %define with_ibus 0
@@ -249,7 +249,6 @@
 %{_datadir}/icons/hicolor/*/*/*.svg
 %{_datadir}/polkit-1/actions/org.gnome.controlcenter.datetime.policy
 %{_datadir}/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy
-%dir %{_datadir}/polkit-1/rules.d
 %{_datadir}/polkit-1/rules.d/gnome-control-center.rules
 %dir %{_datadir}/sounds/gnome
 %dir %{_datadir}/sounds/gnome/default


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



commit aaa_base for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2012-11-14 16:32:53

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


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

Changes:

--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes2012-11-06 
11:11:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2012-11-14 
16:32:57.0 +0100
@@ -1,0 +2,12 @@
+Tue Nov 13 11:12:59 UTC 2012 - r...@suse.com
+
+- merged last bits from gitorious:
+  - from froh:
+- /etc/bash.bashrc: add prompt to the terminal status line,
+  which on most graphical terminals is the window title.
+  - from fcrozat:
+- rc.status: output initscript status before systemd one.
+- rc.status: educate users on which systemctl command was started
+- rc.status: systemctl 195+ allows to not specify .service
+
+---



Other differences:
--
++ aaa_base-12.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-12.3/files/etc/bash.bashrc 
new/aaa_base-12.3/files/etc/bash.bashrc
--- old/aaa_base-12.3/files/etc/bash.bashrc 2012-11-06 11:07:06.0 
+0100
+++ new/aaa_base-12.3/files/etc/bash.bashrc 2012-11-14 01:42:56.0 
+0100
@@ -180,12 +180,21 @@
;;
esac
# Colored root prompt (see bugzilla #144620)
+   _ps1_nocolor=$PS1
if test $UID -eq 0 -a -n $TERM -a -t ; then
_bred=$(path tput bold 2 /dev/null; path tput setaf 1 2 
/dev/null)
_sgr0=$(path tput sgr0 2 /dev/null)
PS1=\[$_bred\]$PS1\[$_sgr0\]
unset _bred _sgr0
fi
+   # Mirror prompt in terminal status line, which for graphical
+   # terminals usually is the window title.  kde konsole in
+   # addition needs to have %w in the tabs setting, ymmv fo
+   # other console emulators.
+   if _tsl=$(path tput tsl 2 /dev/null)  _fsl=$(path tput fsl 2 
/dev/null); then
+   PS1=$_tsl$_ps1_nocolor$_fsl$PS1
+   fi
+   unset _ps1_nocolor _tsl _fsl
unset _u _p _t
;;
 ash)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-12.3/files/etc/rc.status 
new/aaa_base-12.3/files/etc/rc.status
--- old/aaa_base-12.3/files/etc/rc.status   2012-11-06 11:07:06.0 
+0100
+++ new/aaa_base-12.3/files/etc/rc.status   2012-11-14 01:42:56.0 
+0100
@@ -54,11 +54,12 @@
;;
esac
case $1 in
-   start|stop|reload|restart|try-restart|force-reload|status) echo 
redirecting to systemctl /dev/stderr ;;
+   status) SYSTEMD_NO_WRAP=1 $0 $1 ;;
+   start|stop|reload|restart|try-restart|force-reload) echo 
redirecting to systemctl $1 ${_rc_base} /dev/stderr ;;
*) unset _rc_base ;;
esac
if test -n $_rc_base -a -x /bin/systemctl ; then
-   exec /bin/systemctl $1 ${_rc_base}.service
+   exec /bin/systemctl $1 ${_rc_base}
fi
unset _rc_base
 fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-12.3/obs/mkpackage 
new/aaa_base-12.3/obs/mkpackage
--- old/aaa_base-12.3/obs/mkpackage 2012-11-06 11:07:06.0 +0100
+++ new/aaa_base-12.3/obs/mkpackage 2012-11-14 01:42:56.0 +0100
@@ -22,12 +22,12 @@
 cd $src
 $src/obs/mkchanges $name/$name.changes | tee $name/.changes
 #test ! -s $name/.changes || git push
-for i in *.bz2; do
+for i in *.gz; do
/bin/rm -vi $i
 done
 cd $src
 $src/obs/mktar
-mv *bz2 $name
+mv *gz $name
 cd $name
 osc vc $name.changes .changes  rm -f .changes
 cd $src
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-12.3/obs/mktar new/aaa_base-12.3/obs/mktar
--- old/aaa_base-12.3/obs/mktar 2012-11-06 11:07:06.0 +0100
+++ new/aaa_base-12.3/obs/mktar 2012-11-14 01:42:56.0 +0100
@@ -1,16 +1,16 @@
 #!/bin/sh
 set -e
 NAME=aaa_base
-#VERSION=1.0
+VERSION=12.3
 #datefmt=%Y.%m.%d.%H%M
 #LAST_COMMIT=(`git rev-list --timestamp HEAD^..HEAD`)
 #DATE=`date +$datefmt -d 1970-01-01 00:00 UTC $LAST_COMMIT seconds`
 #scmver=$DATE
-#fullver=$VERSION${scmver:+_}$scmver
+fullver=$VERSION${scmver:+_}$scmver
 pfx=$NAME${fullver:+-$fullver}
-fn=$pfx.tar.bz2
+fn=$pfx.tar.gz
 if ! git config --get tar.umask /dev/null 21 ; then
git config --add tar.umask 022
 fi
-git archive --prefix=$pfx/ HEAD | bzip2  $fn
+git archive --prefix=$pfx/ HEAD | gzip  $fn
 echo version $fullver - $fn

-- 
To unsubscribe, e-mail: 

commit acpica for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package acpica for openSUSE:Factory checked 
in at 2012-11-14 16:33:04

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


Package is acpica, Maintainer is tr...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/acpica/acpica.changes2012-10-08 
07:10:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.acpica.new/acpica.changes   2012-11-14 
16:33:06.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov  7 10:27:54 UTC 2012 - tr...@suse.de
+
+- Update to latest version 20121018.
+  - one patch got accepted mainline - removed.
+
+---

Old:

  acpica-unix2-20120913.tar.bz2
  acpica_fix_32bit_build.patch

New:

  acpica-unix2-20121018.tar.bz2



Other differences:
--
++ acpica.spec ++
--- /var/tmp/diff_new_pack.go7NCb/_old  2012-11-14 16:33:13.0 +0100
+++ /var/tmp/diff_new_pack.go7NCb/_new  2012-11-14 16:33:13.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   acpica
 Url:http://acpica.org
-Version:20120913
+Version:20121018
 Release:6
 License:GPL-2.0
 %define src_dir acpica-unix2-%{version}
@@ -31,9 +31,8 @@
 Patch1: acpica_make_CFLAGS_overridable
 Patch2: acpidump-override-CFLAGS.patch
 Patch3: acpica-no-compiletime.patch
-Patch4: acpica_fix_32bit_build.patch
-Patch5: acpica_acpisrc_fix_unused_result.patch
-Patch6: acpica_makefile_whitespace_cleanup.patch
+Patch4: acpica_acpisrc_fix_unused_result.patch
+Patch5: acpica_makefile_whitespace_cleanup.patch
 Source1:ec_access.c
 Source2:acpidump-%{dmp_ver}.tar.bz2
 Source3:acpi_genl.tar.bz2
@@ -70,7 +69,6 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
-%patch6 -p1
 
 %build
 cc %{SOURCE1} $RPM_OPT_FLAGS -o ec_access

++ acpica-no-compiletime.patch ++
--- /var/tmp/diff_new_pack.go7NCb/_old  2012-11-14 16:33:13.0 +0100
+++ /var/tmp/diff_new_pack.go7NCb/_new  2012-11-14 16:33:13.0 +0100
@@ -12,11 +12,11 @@
  source/include/acapps.h  |8 
  3 files changed, 8 insertions(+), 13 deletions(-)
 
-Index: acpica-unix2-20120913/source/compiler/aslcompile.c
+Index: acpica-unix2-20121018/source/compiler/aslcompile.c
 ===
 acpica-unix2-20120913.orig/source/compiler/aslcompile.c
-+++ acpica-unix2-20120913/source/compiler/aslcompile.c
-@@ -161,8 +161,6 @@ void
+--- acpica-unix2-20121018.orig/source/compiler/aslcompile.c
 acpica-unix2-20121018/source/compiler/aslcompile.c
+@@ -160,8 +160,6 @@ void
  AslCompilerFileHeader (
  UINT32  FileId)
  {
@@ -25,7 +25,7 @@
  char*Prefix = ;
  
  
-@@ -202,12 +200,9 @@ AslCompilerFileHeader (
+@@ -201,12 +199,9 @@ AslCompilerFileHeader (
  
  /* Compilation header with timestamp */
  
@@ -40,11 +40,11 @@
  Prefix);
  
  switch (FileId)
-Index: acpica-unix2-20120913/source/compiler/aslutils.c
+Index: acpica-unix2-20121018/source/compiler/aslutils.c
 ===
 acpica-unix2-20120913.orig/source/compiler/aslutils.c
-+++ acpica-unix2-20120913/source/compiler/aslutils.c
-@@ -456,8 +456,8 @@ UtDisplaySummary (
+--- acpica-unix2-20121018.orig/source/compiler/aslutils.c
 acpica-unix2-20121018/source/compiler/aslutils.c
+@@ -454,8 +454,8 @@ UtDisplaySummary (
  {
  /* Compiler name and version number */
  
@@ -55,10 +55,10 @@
  }
  
  /* Summary of main input and output files */
-Index: acpica-unix2-20120913/source/include/acapps.h
+Index: acpica-unix2-20121018/source/include/acapps.h
 ===
 acpica-unix2-20120913.orig/source/include/acapps.h
-+++ acpica-unix2-20120913/source/include/acapps.h
+--- acpica-unix2-20121018.orig/source/include/acapps.h
 acpica-unix2-20121018/source/include/acapps.h
 @@ -69,15 +69,15 @@
  /* Macros for signons and file headers */
  

++ acpica-unix2-20120913.tar.bz2 - acpica-unix2-20121018.tar.bz2 ++
 17076 lines of diff (skipped)

++ acpica_acpisrc_fix_unused_result.patch ++
--- /var/tmp/diff_new_pack.go7NCb/_old  2012-11-14 16:33:13.0 +0100
+++ /var/tmp/diff_new_pack.go7NCb/_new  2012-11-14 16:33:13.0 +0100
@@ -10,11 +10,11 @@
  source/tools/acpisrc/asfile.c |6 +-
  1 file changed, 5 insertions(+), 1 deletion(-)
 
-Index: acpica-unix2-20120913/source/tools/acpisrc/asfile.c
+Index: acpica-unix2-20121018/source/tools/acpisrc/asfile.c
 ===
 

commit autoyast2 for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2012-11-14 16:34:29

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


Package is autoyast2, Maintainer is f...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes  2012-09-21 
14:33:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2012-11-14 
16:34:31.0 +0100
@@ -1,0 +2,44 @@
+Tue Nov 13 18:00:23 CET 2012 - f...@suse.de
+
+- 2.23.1
+- convert autoyast init script to systemd service (bnc#788997)
+
+---
+Mon Nov 12 15:57:37 CET 2012  - f...@suse.de
+
+- prepare for having autoyast documentation separate from sources
+
+---
+Wed Oct 24 14:40:50 CEST 2012 - f...@suse.de
+
+- ask dialogs can have width and height entries to make popups 
+  larger than default size (fate#313019)
+
+---
+Tue Oct 23 16:09:38 CEST 2012 - f...@suse.de
+
+- support entry mkfs_options in partitions
+
+---
+Wed Oct 17 13:32:12 CEST 2012 - f...@suse.de
+
+- tolerate leading or trailing whitespace in script location tag 
+  (bnc#782037)
+
+---
+Tue Oct 16 15:00:38 CEST 2012 - f...@suse.de
+
+- make autoyast able to continue on commit errors (bnc#785234)
+
+---
+Mon Oct 15 12:31:17 CEST 2012 - f...@suse.de
+
+- add note that merged sections need to be in alphabetical order
+  (bnc#782598)
+
+---
+Mon Oct  1 11:54:04 CEST 2012 - f...@suse.de
+
+- fix bug that caused hostname to contain IP address (bnc#782530)
+
+---

Old:

  autoyast2-2.23.0.tar.bz2

New:

  autoyast2-2.23.1.tar.bz2
  autoyast_en_html.tar.bz2



Other differences:
--
++ autoyast2.spec ++
--- /var/tmp/diff_new_pack.dM0nKQ/_old  2012-11-14 16:34:33.0 +0100
+++ /var/tmp/diff_new_pack.dM0nKQ/_new  2012-11-14 16:34:33.0 +0100
@@ -17,20 +17,18 @@
 
 
 Name:   autoyast2
-Version:2.23.0
+Version:2.23.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:autoyast2-%{version}.tar.bz2
 
-BuildRequires:  daps
-BuildRequires:  docbook-xsl-stylesheets
+Source1:autoyast_en_html.tar.bz2
+BuildRequires:  libxml2-tools
 BuildRequires:  libxslt
 BuildRequires:  perl-XML-Writer
 BuildRequires:  pkg-config
 BuildRequires:  python-xml
-BuildRequires:  sgml-skel
-BuildRequires:  suse-xsl-stylesheets
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-libs
 BuildRequires:  yast2-bootloader
@@ -83,7 +81,7 @@
 installation sources.
 
 %package installation
-Version:2.23.0
+Version:2.23.1
 Release:0
 Summary:YaST2 - Auto Installation Modules
 Group:  System/YaST
@@ -154,6 +152,16 @@
 install -d $RPM_BUILD_ROOT/var/lib/autoinstall/autoconf
 install -d $RPM_BUILD_ROOT/var/lib/autoinstall/tmp
 
+# Systemd Stuff
+mkdir -p $RPM_BUILD_ROOT/%{_unitdir}/
+install -m 644 scripts/autoyast-initscripts.service 
$RPM_BUILD_ROOT/%{_unitdir}/
+
+# Documentation
+install -d -m 755 $RPM_BUILD_ROOT/%{_prefix}/share/doc/packages/autoyast2/html
+tar xvpfC %{SOURCE1} 
$RPM_BUILD_ROOT/%{_prefix}/share/doc/packages/autoyast2/html
+mv $RPM_BUILD_ROOT/%{_prefix}/share/doc/packages/autoyast2/html/autoyast/* 
$RPM_BUILD_ROOT/%{_prefix}/share/doc/packages/autoyast2/html/
+rmdir $RPM_BUILD_ROOT/%{_prefix}/share/doc/packages/autoyast2/html/autoyast
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
@@ -212,7 +220,9 @@
 #%dir /usr/share/autoinstall/dtd
 %dir /usr/share/autoinstall/modules
 #/usr/share/autoinstall/dtd/*
-/etc/init.d/autoyast
+
+# systemd service file
+%{_unitdir}/autoyast-initscripts.service
 
 %dir /usr/share/autoinstall/xslt
 /usr/share/autoinstall/xslt/merge.xslt
@@ -273,6 +283,7 @@
 
 # scripts
 %{_prefix}/lib/YaST2/bin/fetch_image.sh
+%{_prefix}/lib/YaST2/bin/autoyast-initscripts.sh
 
 %dir /var/adm/autoinstall/
 %dir /var/adm/autoinstall/scripts

++ autoyast2-2.23.0.tar.bz2 - autoyast2-2.23.1.tar.bz2 ++
 60401 lines of diff (skipped)

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



commit avahi for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package avahi for openSUSE:Factory checked 
in at 2012-11-14 16:34:49

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


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

Changes:

avahi-mono.changes: same change
avahi-qt4.changes: same change
--- /work/SRC/openSUSE:Factory/avahi/avahi.changes  2012-10-26 
07:42:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.avahi.new/avahi.changes 2012-11-14 
16:34:50.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov 14 09:05:25 UTC 2012 - dims...@opensuse.org
+
+- Fix useradd invocation: -o is useless without -u and newer
+  versions of pwdutils/shadowutils fail on this now.
+
+---



Other differences:
--
++ avahi-glib2.spec ++
--- /var/tmp/diff_new_pack.O7XI82/_old  2012-11-14 16:34:52.0 +0100
+++ /var/tmp/diff_new_pack.O7XI82/_new  2012-11-14 16:34:52.0 +0100
@@ -910,7 +910,7 @@
 
 %pre
 %{_sbindir}/groupadd -r avahi 2 /dev/null || :
-%{_sbindir}/useradd -r -o -s /bin/false -c User for Avahi -d 
%{_localstatedir}/run/avahi-daemon -g avahi avahi 2 /dev/null || :
+%{_sbindir}/useradd -r -s /bin/false -c User for Avahi -d 
%{_localstatedir}/run/avahi-daemon -g avahi avahi 2 /dev/null || :
 %if %suse_version = 1210
 %service_add_pre avahi-dnsconfd.service avahi-daemon.service
 %endif

avahi-mono.spec: same change
avahi-qt4.spec: same change
++ avahi.spec ++
--- /var/tmp/diff_new_pack.O7XI82/_old  2012-11-14 16:34:52.0 +0100
+++ /var/tmp/diff_new_pack.O7XI82/_new  2012-11-14 16:34:52.0 +0100
@@ -912,7 +912,7 @@
 
 %pre
 %{_sbindir}/groupadd -r avahi 2 /dev/null || :
-%{_sbindir}/useradd -r -o -s /bin/false -c User for Avahi -d 
%{_localstatedir}/run/avahi-daemon -g avahi avahi 2 /dev/null || :
+%{_sbindir}/useradd -r -s /bin/false -c User for Avahi -d 
%{_localstatedir}/run/avahi-daemon -g avahi avahi 2 /dev/null || :
 %if %suse_version = 1210
 %service_add_pre avahi-dnsconfd.service avahi-daemon.service
 %endif


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



commit calligra for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package calligra for openSUSE:Factory 
checked in at 2012-11-14 16:36:26

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


Package is calligra, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/calligra/calligra-doc.changes2012-11-02 
17:32:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.calligra.new/calligra-doc.changes   
2012-11-14 16:36:32.0 +0100
@@ -1,0 +2,6 @@
+Mon Nov 12 22:29:18 UTC 2012 - asterios.dra...@gmail.com
+
+- Added libvisio-devel as build requirement (support for visio files).
+- Added kexi-spreadsheet-import in Suggests: entries for kexi.
+
+---
calligra.changes: same change



Other differences:
--
++ calligra-doc.spec ++
--- /var/tmp/diff_new_pack.2rku9J/_old  2012-11-14 16:36:35.0 +0100
+++ /var/tmp/diff_new_pack.2rku9J/_new  2012-11-14 16:36:35.0 +0100
@@ -58,6 +58,9 @@
 %if 0%{?suse_version}  1140
 BuildRequires:  libspnav-devel
 %endif
+%if 0%{?suse_version}  1220
+BuildRequires:  libvisio-devel
+%endif
 BuildRequires:  libwpd-devel
 BuildRequires:  libwpg-devel
 BuildRequires:  libwps-devel
@@ -86,7 +89,7 @@
 %setup -q -n calligra-%{version}
 
 %build
-%cmake_kde4 -d build -- -DBUILD_mobile=false -DBUILD_active=false 
-DIHAVEPATCHEDQT=TRUE
+%cmake_kde4 -d build -- -DBUILD_active=false -DIHAVEPATCHEDQT=TRUE
 cd doc
 make
 cd ..

++ calligra.spec ++
--- /var/tmp/diff_new_pack.2rku9J/_old  2012-11-14 16:36:35.0 +0100
+++ /var/tmp/diff_new_pack.2rku9J/_new  2012-11-14 16:36:35.0 +0100
@@ -65,6 +65,9 @@
 %if 0%{?suse_version}  1140
 BuildRequires:  libspnav-devel
 %endif
+%if 0%{?suse_version}  1220
+BuildRequires:  libvisio-devel
+%endif
 BuildRequires:  libwpd-devel
 BuildRequires:  libwpg-devel
 BuildRequires:  libwps-devel
@@ -96,7 +99,7 @@
 # calligra-kformula was last used at version 2.3.73 in KDE:Unstable:Playground
 Provides:   calligra-kformula = %{version}
 Obsoletes:  calligra-kformula  %{version}
-# calligra-kthesaurus was last used at version 2.3.73 in KDE:Release:49
+# calligra-kthesaurus was last used at version 2.4.92 in KDE:Release:49
 Provides:   calligra-kthesaurus = %{version}
 Obsoletes:  calligra-kthesaurus  %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -176,6 +179,7 @@
 Suggests:   kexi-mssql-driver
 Suggests:   kexi-mysql-driver
 Suggests:   kexi-postgresql-driver
+Suggests:   kexi-spreadsheet-import
 Suggests:   kexi-xbase-driver
 %kde4_runtime_requires
 
@@ -306,7 +310,7 @@
 %patch0
 
 %build
-%cmake_kde4 -d build -- -DBUILD_mobile=false -DBUILD_active=false 
-DIHAVEPATCHEDQT=TRUE
+%cmake_kde4 -d build -- -DBUILD_active=false -DIHAVEPATCHEDQT=TRUE
 %make_jobs
 
 %install
@@ -315,9 +319,11 @@
 
 # Create filelists
 %create_subdir_filelist -d braindump -v devel
+%create_subdir_filelist -d filters/flow -f flow
 %create_subdir_filelist -d filters/karbon -f karbon
-%create_subdir_filelist -d filters/stage -f stage
+%create_subdir_filelist -d filters/plan -f plan
 %create_subdir_filelist -d filters/sheets -f sheets
+%create_subdir_filelist -d filters/stage -f stage
 %create_subdir_filelist -d filters/words -f words -v devel
 %create_subdir_filelist -d flow -v devel
 %create_subdir_filelist -d karbon -v devel
@@ -636,7 +642,6 @@
 %exclude %{_kde4_servicesdir}/kexi*_xbase*.desktop
 
 %if 0%{?suse_version}  1140
-
 %files kexi-mssql-driver
 %defattr(-,root,root,-)
 %{_kde4_modulesdir}/kexidb_sybasedriver.so
@@ -685,10 +690,7 @@
 %{_kde4_appsdir}/planwork/
 %dir %{_kde4_iconsdir}/hicolor/45x45
 %dir %{_kde4_iconsdir}/hicolor/45x45/mimetypes
-%{_kde4_modulesdir}/planconvert/
-%{_kde4_modulesdir}/planmpxjimport.so
-%{_kde4_servicesdir}/plan_msproject_import.desktop
-%{_kde4_servicesdir}/plan_planner_import.desktop
+%dir %{_kde4_modulesdir}/planconvert/
 
 %files stage -f filelists/stage
 %defattr(-,root,root,-)






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



commit cmake for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package cmake for openSUSE:Factory checked 
in at 2012-11-14 16:36:35

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


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

Changes:

--- /work/SRC/openSUSE:Factory/cmake/cmake.changes  2012-11-10 
16:55:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.cmake.new/cmake.changes 2012-11-14 
16:36:37.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 14 12:55:10 UTC 2012 - idon...@suse.com
+
+- Add cmake-gettext.patch to fix gettext detection 
+
+---

New:

  cmake-gettext.patch



Other differences:
--
++ cmake.spec ++
--- /var/tmp/diff_new_pack.pSnz7d/_old  2012-11-14 16:36:38.0 +0100
+++ /var/tmp/diff_new_pack.pSnz7d/_new  2012-11-14 16:36:38.0 +0100
@@ -23,6 +23,7 @@
 Source0:http://www.cmake.org/files/v2.8/%{name}-%{version}.tar.gz
 Patch1: cmake-disable-builtin-chrpath.diff
 Patch2: cmake-fix-ruby-test.patch
+Patch3: cmake-gettext.patch
 Summary:Cross-platform, open-source make system
 License:BSD-3-Clause
 Group:  Development/Tools/Building
@@ -51,6 +52,7 @@
 %setup -q
 %patch1
 %patch2
+%patch3 -p1
 
 %build
 export CXXFLAGS=$RPM_OPT_FLAGS

++ cmake-gettext.patch ++
Index: cmake-2.8.10.1/Modules/FindGettext.cmake
===
--- cmake-2.8.10.1.orig/Modules/FindGettext.cmake
+++ cmake-2.8.10.1/Modules/FindGettext.cmake
@@ -209,5 +209,3 @@ function(GETTEXT_PROCESS_PO_FILES _lang)
add_dependencies(pofiles ${uniqueTargetName})
 
 endfunction()
-
-set(GETTEXT_FOUND ${Gettext_FOUND})
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit eina for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package eina for openSUSE:Factory checked in 
at 2012-11-14 16:37:10

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


Package is eina, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2012-10-22 00:44:18.403455820 +0200
+++ /work/SRC/openSUSE:Factory/.eina.new/eina.changes   2012-11-14 
16:37:11.0 +0100
@@ -0,0 +1,116 @@
+---
+Tue Nov 13 01:09:58 UTC 2012 - sleep_wal...@suse.cz
+
+- correct license version
+
+---
+Tue Nov 13 00:46:20 UTC 2012 - sleep_wal...@suse.cz
+
+- remove remains of doc subpackage
+
+---
+Tue Nov 13 00:43:21 UTC 2012 - sleep_wal...@suse.cz
+
+- applied spec-cleaner
+
+---
+Tue Nov 13 00:26:07 UTC 2012 - sleep_wal...@suse.cz
+
+- removed autoupdate entries from changelog
+
+---
+Mon Nov 12 23:10:21 UTC 2012 - sleep_wal...@suse.cz
+
+- remove configure patch as it is useless
+- remove __DATE__ and __TIME__ and use last changelog entry instead
+
+---
+Sat Oct 20 23:34:37 UTC 2012 - si...@simotek.net
+
+- bump to 1.7.1
+
+---
+Sun Sep  9 19:39:02 UTC 2012 - sleep_wal...@suse.cz
+
+- let there be eina-bench-cmp
+
+---
+Fri Sep  7 23:41:55 UTC 2012 - sleep_wal...@suse.cz
+
+- revert spec file make_install modification
+
+---
+Fri Sep  7 23:41:00 UTC 2012 - sleep_wal...@suse.cz
+
+- refresh patch
+
+---
+Tue Jun 19 09:12:40 UTC 2012 - sleep_wal...@suse.cz
+
+- fix description
+
+---
+Mon Apr 30 08:42:31 UTC 2012 - sleep_wal...@suse.cz
+
+- updated patch of configure
+
+---
+Wed Mar 21 22:02:37 UTC 2012 - sleep_wal...@suse.cz
+
+- refreshing configure.patch
+
+---
+Fri Dec 30 22:43:29 UTC 2011 - sleep_wal...@suse.cz
+
+- explicitly BuildRequire autoconf automake libtool
+
+---
+Fri Dec 16 22:49:55 UTC 2011 - sleep_wal...@suse.cz
+
+- pre_configure -- pre_configure_hook
+
+---
+Thu Dec 15 21:23:32 UTC 2011 - sleep_wal...@suse.cz
+
+- refresh configure.patch to revision 66263
+
+---
+Mon Dec 12 10:18:44 UTC 2011 - sleep_wal...@suse.cz
+
+- refresh configure.patch to revision 66086
+
+---
+Sat Dec 10 12:07:48 UTC 2011 - sleep_wal...@suse.cz
+
+- source_grabber autoupdate to revision 
40ebd546fdf4c2971f59f645e4f374ae35589a67
+
+---
+Mon Oct 17 19:26:08 UTC 2011 - tc...@suse.com
+
+- attempt for fix CentOS 5 and SLES10
+
+---
+Mon Oct 17 05:26:13 UTC 2011 - tc...@suse.com
+
+- add fix to detect revision correctly
+
+---
+Sun Oct 16 21:13:46 UTC 2011 - tc...@suse.com
+
+- add autoreconf before configure
+
+---
+Thu Oct 13 22:14:26 UTC 2011 - tc...@suse.com
+
+- first attempt for debian build
+
+---
+Mon Aug 15 08:54:42 UTC 2011 - sleep_wal...@suse.cz
+
+- change %make_install to %makeinstall to support more distributions
+
+---
+Tue Feb  1 17:23:30 UTC 2011 - dims...@opensuse.org
+
+- Initial package of Eina version 1.0.0
+

New:

  eina-1.7.1.tar.bz2
  eina.changes
  eina.spec



Other differences:
--
++ eina.spec ++
#
# spec file for package eina
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the 

commit icedtea-web for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package icedtea-web for openSUSE:Factory 
checked in at 2012-11-14 16:38:15

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


Package is icedtea-web, Maintainer is bnc-team-j...@forge.provo.novell.com

Changes:

--- /work/SRC/openSUSE:Factory/icedtea-web/icedtea-web.changes  2012-09-11 
09:08:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.icedtea-web.new/icedtea-web.changes 
2012-11-14 16:38:17.0 +0100
@@ -1,0 +2,10 @@
+Wed Nov  7 08:44:05 UTC 2012 - mvysko...@suse.com
+
+- update to 1.3.1 (bnc#787846)
+- Security Updates
+  * CVE-2012-4540, RH869040: Heap-based buffer overflow after triggering event 
attached to applet
+- Common
+  - PR1161: X509VariableTrustManager does not work correctly with OpenJDK7
+fixes the self-signed issue (mentioned in bnc#784859, bnc#785333, 
bnc#786775)
+
+---

Old:

  icedtea-web-1.3.tar.gz

New:

  icedtea-web-1.3.1.tar.gz



Other differences:
--
++ icedtea-web.spec ++
--- /var/tmp/diff_new_pack.rXm0al/_old  2012-11-14 16:38:18.0 +0100
+++ /var/tmp/diff_new_pack.rXm0al/_new  2012-11-14 16:38:18.0 +0100
@@ -53,7 +53,7 @@
 %define pluginname  IcedTeaPlugin.so
 
 Name:   icedtea-web
-Version:1.3
+Version:1.3.1
 Release:0
 Summary:Java Web Start and plugin implementation
 License:GPL-2.0-with-classpath-exception

++ icedtea-web-1.3.tar.gz - icedtea-web-1.3.1.tar.gz ++
 2263 lines of diff (skipped)

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



commit imagewriter for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package imagewriter for openSUSE:Factory 
checked in at 2012-11-14 16:38:42

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


Package is imagewriter, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/imagewriter/imagewriter.changes  2012-07-18 
11:47:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.imagewriter.new/imagewriter.changes 
2012-11-14 16:38:44.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 14 13:58:41 UTC 2012 - mbarrin...@suse.com
+
+- Updating to 1.10, which adds support for udisks2
+
+---

Old:

  imagewriter-1.9.tar.gz
  imagewriter-desktop-menu-exec.patch
  imagewriter-gcc47.patch

New:

  imagewriter-1.10.tar.gz



Other differences:
--
++ imagewriter.spec ++
--- /var/tmp/diff_new_pack.hnRAei/_old  2012-11-14 16:38:45.0 +0100
+++ /var/tmp/diff_new_pack.hnRAei/_new  2012-11-14 16:38:45.0 +0100
@@ -7,52 +7,72 @@
 #
 
 # needsrootforbuild
-Url:http://kiwi.berlios.de
+Url:https://github.com/mbarringer/imagewriter
 Name:   imagewriter
 BuildRequires:  gcc-c++
 
-%if 0%{?fedora_version}  
+%if 0%{?rhel_version} == 600 
+ %define dist el6
+ %define breq qt-devel
+ %define backend hal-devel
+ %define qmake /usr/bin/qmake-qt4  
+ %define lrelease /usr/bin/lrelease-qt4
+ %define definedbackend USEHAL
+%endif
+
+%if 0%{?fedora}
 %define breq qt4-devel  
+%define backend udisks2
 %define qmake /usr/bin/qmake-qt4  
 %define lrelease /usr/bin/lrelease-qt4
-BuildRequires:  hal-devel
+%define definedbackend USEUDISKS2
 %endif
+
 %if 0%{?mandriva_version}  
 %define breq libqt4-devel
+%define backend hal-devel
 %define qmake /usr/lib/qt4/bin/qmake  
 %define lrelease /usr/lib/qt4/bin/lrelease
-BuildRequires:  hal-devel
+%define definedbackend USEHAL
 %endif  
+
 %if 0%{?suse_version}
 %define breq libqt4-devel update-desktop-files
 %define qmake /usr/bin/qmake  
 %define lrelease /usr/bin/lrelease
 %endif
 
-%if 0%{?suse_version}  1130
-BuildRequires:  hal-devel
+%if 0%{?suse_version} = 1130
+%define backend hal-devel
+%define definedbackend USEHAL
+%endif
+
+%if 0%{?suse_version} == 1140 || 0%{?suse_version} == 1210
+%define backend udisks
+%define definedbackend USEUDISKS
+%endif
+
+%if 0%{?suse_version} = 1220
+%define backend udisks2
+%define definedbackend USEUDISKS2
 %endif
 
-Summary:SUSE Studio Imagewriter
-Version:1.9
+Summary:SUSE Imagewriter
+Version:1.10
 Release:0
 Group:  Hardware/Other
 License:GPL-2.0
 Source: imagewriter-%{version}.tar.gz
-Patch0: imagewriter-gcc47.patch
-Patch1: imagewriter-desktop-menu-exec.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  %{breq}
+BuildRequires:  %{breq} %{backend}
 %description
-Graphical image writer application
+A graphical utility for writing raw disk images  hybrid isos to USB keys
 
 %prep
 %setup
-%patch0 -p1
-%patch1 -p1
 
 %build
-%{qmake} PREFIX=$RPM_BUILD_ROOT/%{_prefix} imagewriter.pro
+%{qmake} PREFIX=$RPM_BUILD_ROOT/%{_prefix} DEFINES=%{definedbackend} 
imagewriter.pro
 make buildroot=$RPM_BUILD_ROOT CFLAGS=$RPM_OPT_FLAGS -DKIOSKHACK
 
 %install

++ imagewriter-1.9.tar.gz - imagewriter-1.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/imagewriter-1.9/MainWindow.cpp 
new/imagewriter-1.10/MainWindow.cpp
--- old/imagewriter-1.9/MainWindow.cpp  2011-04-06 16:20:28.0 +0200
+++ new/imagewriter-1.10/MainWindow.cpp 2012-11-14 15:00:02.0 +0100
@@ -27,11 +27,15 @@
 #include QProgressDialog
 #include QtDBus
 #include QFile
+#include QDebug
 
 #include unistd.h
 #include sys/types.h
 #include sys/sysctl.h
 
+#ifdef USEUDISKS2
+#include udisks2_interface.h
+#endif
 
 
 #include MainWindow.h
@@ -86,7 +90,16 @@
DeviceRemoved,
this,
SLOT(deviceRemoved(QDBusMessage)));
+#elif USEUDISKS2
+qDebug()  Using udisks2;
+org::freedesktop::DBus::ObjectManager manager(org.freedesktop.UDisks2, 
/org/freedesktop/UDisks2, QDBusConnection::systemBus());
+QDBusConnection::systemBus().connect(org.freedesktop.UDisks2, 
/org/freedesktop/UDisks2, org.freedesktop.DBus.ObjectManager, 
InterfacesAdded,
+ this, 
SLOT(deviceInserted(QDBusObjectPath,QVariantMapMap)));
+QDBusConnection::systemBus().connect(org.freedesktop.UDisks2, 
/org/freedesktop/UDisks2, 

commit insserv for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package insserv for openSUSE:Factory checked 
in at 2012-11-14 16:40:03

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


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

Changes:

--- /work/SRC/openSUSE:Factory/insserv/insserv.changes  2012-09-25 
10:24:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.insserv.new/insserv.changes 2012-11-14 
16:40:05.0 +0100
@@ -0,0 +1,9 @@
+Wed Nov 14 12:12:15 CET 2012 - wer...@suse.de
+
+- Add systemd support
+  * Talk with systemd over dbus connection to get all services and
+targets known by systemd
+  * Implement missing garbage collector for system facilities as
+the systemd targets are used as system facilities
+  + Side effect is that we detect loops in the systemd units
+

Old:

  insserv-1.14.0.dif
  insserv-1.14.0.tar.bz2

New:

  insserv-1.16.0.tar.bz2



Other differences:
--
++ insserv.spec ++
--- /var/tmp/diff_new_pack.Pq9Ae9/_old  2012-11-14 16:40:07.0 +0100
+++ /var/tmp/diff_new_pack.Pq9Ae9/_new  2012-11-14 16:40:07.0 +0100
@@ -18,7 +18,9 @@
 
 Name:   insserv
 Provides:   aaa_base:/sbin/insserv
-Version:1.14.0
+BuildRequires:  dbus-1-devel
+BuildRequires:  pkg-config
+Version:1.16.0
 Release:0
 Summary:A Program to Arrange Initialization Scripts
 License:GPL-2.0+
@@ -26,7 +28,7 @@
 Url:http://savannah.nongnu.org/projects/sysvinit/
 Source0:
http://download.savannah.gnu.org/releases/sysvinit/insserv-%{version}.tar.bz2
 Source1:insserv.conf
-Patch:  insserv-%{version}.dif
+#Patch: insserv-%{version}.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _sysconfdir /etc
 %global _sbindir/sbin
@@ -44,7 +46,7 @@
 
 %prep
 %setup
-%patch
+#%patch
 
 %build
 # remove -DOSCBUILD if all packages are fixed

++ insserv-1.14.0.tar.bz2 - insserv-1.16.0.tar.bz2 ++
 2393 lines of diff (skipped)

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



commit liberation-fonts for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package liberation-fonts for 
openSUSE:Factory checked in at 2012-11-14 16:44:12

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


Package is liberation-fonts, Maintainer is orpha...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/liberation-fonts/liberation-fonts.changes
2012-08-05 15:20:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.liberation-fonts.new/liberation-fonts.changes   
2012-11-14 16:44:14.0 +0100
@@ -1,0 +2,6 @@
+Mon Nov 12 12:20:50 UTC 2012 - pgaj...@suse.com
+
+- downgrade to 1.07.2 [bnc#788838] 
+  (liberation2-fonts package created)
+
+---

Old:

  liberation-fonts-2.00.0.tar.gz

New:

  liberation-fonts-ttf-1.07.2.tar.bz2



Other differences:
--
++ liberation-fonts.spec ++
--- /var/tmp/diff_new_pack.pewsTC/_old  2012-11-14 16:44:18.0 +0100
+++ /var/tmp/diff_new_pack.pewsTC/_new  2012-11-14 16:44:18.0 +0100
@@ -17,19 +17,18 @@
 
 
 Name:   liberation-fonts
-Version:2.00.0
+Version:1.07.2
 Release:0
 Summary:Liberation Fonts
-License:OFL-1.1
+License:SUSE-Liberation
 Group:  System/X11/Fonts
 Url:https://fedorahosted.org/liberation-fonts/
-Source0:
https://fedorahosted.org/releases/l/i/liberation-fonts/%{name}-%{version}.tar.gz
+Source: %{name}-ttf-%{version}.tar.bz2
 Source100:  %{name}-rpmlintrc
-BuildRequires:  fontforge
-BuildRequires:  fontpackages-devel
 %reconfigure_fonts_prereq
-Provides:   scalable-font-el
+BuildRequires:  fontpackages-devel
 Provides:   locale(bg;el;ru;bg)
+Conflicts:  liberation2-fonts
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -38,20 +37,19 @@
 and Courier New.
 
 %prep
-%setup -q
+%setup -q -n %{name}-ttf-%{version}
 
 %build
-make
 
 %install
 mkdir -p %{buildroot}%{_ttfontsdir}
-install -pm 0644 %{name}-ttf-%{version}/*.ttf %{buildroot}%{_ttfontsdir}/
+install -m 0644 *.ttf %{buildroot}%{_ttfontsdir}/
 
 %reconfigure_fonts_scriptlets
 
 %files
-%defattr(-,root,root,-)
-%doc AUTHORS ChangeLog LICENSE README TODO
+%defattr(-,root,root)
+%doc AUTHORS COPYING ChangeLog License.txt README
 %{_ttfontsdir}
 
 %changelog

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



commit libHX for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package libHX for openSUSE:Factory checked 
in at 2012-11-14 16:47:32

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libHX/libHX.changes  2012-08-04 
09:21:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.libHX.new/libHX.changes 2012-11-14 
16:47:34.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov 14 12:48:20 UTC 2012 - jeng...@inai.de
+
+- Update to new upstream release 3.14
+* rand: avoid division by zero when calling HX_irand with lo==hi
+
+---

Old:

  libHX-3.13.tar.xz
  libHX-3.13.tar.xz.asc

New:

  libHX-3.14.tar.xz
  libHX-3.14.tar.xz.asc



Other differences:
--
++ libHX.spec ++
--- /var/tmp/diff_new_pack.GMuo9f/_old  2012-11-14 16:47:36.0 +0100
+++ /var/tmp/diff_new_pack.GMuo9f/_new  2012-11-14 16:47:36.0 +0100
@@ -21,7 +21,7 @@
 Summary:Useful collection of routines for C and C++ programming
 License:LGPL-2.1 or LGPL-3.0
 Group:  Development/Libraries/C and C++
-Version:3.13
+Version:3.14
 Release:0
 Source: http://downloads.sf.net/libhx/libHX-%version.tar.xz
 Source3:http://downloads.sf.net/libhx/libHX-%version.tar.xz.asc

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



commit libseccomp for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package libseccomp for openSUSE:Factory 
checked in at 2012-11-14 16:50:51

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libseccomp/libseccomp.changes2012-09-11 
17:17:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.libseccomp.new/libseccomp.changes   
2012-11-14 16:50:54.0 +0100
@@ -1,0 +2,11 @@
+Tue Nov 13 15:40:20 UTC 2012 - meiss...@suse.com
+
+- updated to 1.0.1 release
+  - The header file is now easier to use with C++ compilers
+  - Minor documentation fixes
+  - Minor memory leak fixes
+  - Corrected x86 filter generation on x86_64 systems
+  - Corrected problems with small filters and filters with arguments
+- use public downloadable tarball
+
+---

Old:

  libseccomp-1.0.0+AM.tar.xz

New:

  libseccomp-1.0.1.tar.gz



Other differences:
--
++ libseccomp.spec ++
--- /var/tmp/diff_new_pack.amo4v4/_old  2012-11-14 16:50:55.0 +0100
+++ /var/tmp/diff_new_pack.amo4v4/_new  2012-11-14 16:50:55.0 +0100
@@ -17,21 +17,19 @@
 
 
 Name:   libseccomp
-%define lname   libseccomp0
-Version:1.0.0
+%define lname   libseccomp1
+Version:1.0.1
 Release:0
 Summary:An enhanced Seccomp (mode 2) helper library
 License:LGPL-2.1
 Group:  Development/Libraries/C and C++
 Url:http://sf.net/projects/seccomp/
-
-#DL-URL:   http://downloads.sf.net/libseccomp/libseccomp-1.0.0.tar.gz
+#DL-URL:   http://downloads.sf.net/libseccomp/libseccomp-%{version}.tar.gz
 #Git-Clone:git://git.code.sf.net/p/libseccomp/libseccomp
-Source: %name-%version+AM.tar.xz
+Source: http://downloads.sf.net/libseccomp/libseccomp-%{version}.tar.gz
 Patch1: 0001-build-use-ac-variables-in-pkgconfig-file.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  pkgconfig
-BuildRequires:  xz
 
 %description
 The libseccomp library provides and easy to use, platform
@@ -69,17 +67,12 @@
 This package contains the development files for libseccomp.
 
 %prep
-%if 0%{?__xz:1}
-%setup -qn %name
-%else
-tar -xf %{S:0} --use=xz;
-%setup -DTqn %name
-%endif
+%setup -q
 %patch -P 1 -p1
 
 %build
 %configure --includedir=%_includedir/%name-%version
-make %{?_smp_mflags}
+make V=1 %{?_smp_mflags}
 
 %install
 b=%buildroot;
@@ -97,7 +90,7 @@
 %files devel
 %defattr(-,root,root)
 %_mandir/man3/seccomp_*.3*
-%_includedir/%name-%version
+/usr/include/seccomp.h
 %_libdir/%name.so
 %_libdir/pkgconfig/%name.pc
 

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



commit libsolv for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package libsolv for openSUSE:Factory checked 
in at 2012-11-14 16:51:31

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


Package is libsolv, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libsolv/libsolv.changes  2012-06-26 
17:45:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsolv.new/libsolv.changes 2012-11-14 
16:51:33.0 +0100
@@ -1,0 +2,8 @@
+Thu Oct 18 16:58:10 CEST 2012 - m...@suse.de
+
+- fix susetags parser, it ignored the filelist of the last
+  solvable 
+- fix encoding of large values
+- bump version to 0.2.0
+
+---

Old:

  libsolv-0.1.0.tar.bz2

New:

  libsolv-0.2.0.tar.bz2



Other differences:
--
++ libsolv.spec ++
--- /var/tmp/diff_new_pack.aoX28j/_old  2012-11-14 16:51:34.0 +0100
+++ /var/tmp/diff_new_pack.aoX28j/_new  2012-11-14 16:51:34.0 +0100
@@ -16,7 +16,7 @@
 #
 
 Name:   libsolv
-Version:0.1.0
+Version:0.2.0
 Release:0
 Url:git://gitorious.org/opensuse/libsolv.git
 Source: libsolv-%{version}.tar.bz2

++ libsolv-0.1.0.tar.bz2 - libsolv-0.2.0.tar.bz2 ++
 7809 lines of diff (skipped)

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



commit libzypp for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory checked 
in at 2012-11-14 16:52:21

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


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

Changes:

--- /work/SRC/openSUSE:Factory/libzypp/libzypp.changes  2012-10-23 
19:39:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.libzypp.new/libzypp.changes 2012-11-14 
16:52:26.0 +0100
@@ -1,0 +2,29 @@
+Tue Nov 13 15:40:10 CET 2012 - m...@suse.de
+
+- Forward userdata string to commit plugins in BEGINPLUGIN (fate#312521)
+- Extend ZConfig to store a user defined string value (fate#312521)
+- Add SIGSEGV handler trying to log a stack trace
+- Add zypp::dumpBacktrace to dump current stack trace to a stream.
+- Use gettext plural handling (bnc#784666)
+- version 12.4.0 (0)
+
+---
+Sun Nov  4 01:13:21 CET 2012 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---
+Wed Oct 24 10:40:38 CEST 2012 - m...@suse.de
+
+- Add simple sysconfig::write (bnc#766598)
+- For installed products also filelists when trying to find the buddy 
+  (bnc#784900)
+- Provide information whether product license needs to be accepted.
+- version 12.3.0 (0)
+
+---
+Thu Oct 18 01:13:43 CEST 2012 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---

Old:

  libzypp-12.2.0.tar.bz2

New:

  libzypp-12.4.0.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.t8uVPO/_old  2012-11-14 16:52:27.0 +0100
+++ /var/tmp/diff_new_pack.t8uVPO/_new  2012-11-14 16:52:27.0 +0100
@@ -24,7 +24,7 @@
 Group:  System/Packages
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Package, Patch, Pattern, and Product Management
-Version:12.2.0
+Version:12.4.0
 Release:1
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ libzypp-12.2.0.tar.bz2 - libzypp-12.4.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-12.2.0/CMakeLists.txt 
new/libzypp-12.4.0/CMakeLists.txt
--- old/libzypp-12.2.0/CMakeLists.txt   2012-10-15 15:57:59.0 +0200
+++ new/libzypp-12.4.0/CMakeLists.txt   2012-11-14 12:43:31.0 +0100
@@ -29,8 +29,8 @@
 CHECK_C_COMPILER_FLAG(-Werror=format-security CC_FORMAT_SECURITY)
 CHECK_CXX_COMPILER_FLAG(-Werror=format-security CXX_FORMAT_SECURITY)
 
-SET( CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fvisibility-inlines-hidden 
-fno-strict-aliasing -fPIC -g -Wall -Woverloaded-virtual -Wnon-virtual-dtor 
-Wl,-as-needed -std=c++0x )
-SET( CMAKE_C_FLAGS   ${CMAKE_C_FLAGS}   -fno-strict-aliasing -fPIC -g -Wall 
-Wl,-as-needed )
+SET( CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fvisibility-inlines-hidden 
-fno-strict-aliasing -fPIC -g -rdynamic -Wall -Woverloaded-virtual 
-Wnon-virtual-dtor -Wl,-as-needed -std=c++0x )
+SET( CMAKE_C_FLAGS   ${CMAKE_C_FLAGS}   -fno-strict-aliasing -fPIC -g 
-rdynamic -Wall -Wl,-as-needed )
 
 set( CMAKE_C_FLAGS_RELEASE ${CMAKE_C_FLAGS} -O3 )
 set( CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS} -O3 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-12.2.0/VERSION.cmake 
new/libzypp-12.4.0/VERSION.cmake
--- old/libzypp-12.2.0/VERSION.cmake2012-10-15 15:58:00.0 +0200
+++ new/libzypp-12.4.0/VERSION.cmake2012-11-14 12:43:31.0 +0100
@@ -60,9 +60,9 @@
 #
 SET(LIBZYPP_MAJOR 12)
 SET(LIBZYPP_COMPATMINOR 0)
-SET(LIBZYPP_MINOR 2)
+SET(LIBZYPP_MINOR 4)
 SET(LIBZYPP_PATCH 0)
 #
-# LAST RELEASED: 12.2.0 (0)
+# LAST RELEASED: 12.4.0 (0)
 # (The number in parenthesis is LIBZYPP_COMPATMINOR)
 #===
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-12.2.0/doc/autoinclude/Plugin-Commit.doc 
new/libzypp-12.4.0/doc/autoinclude/Plugin-Commit.doc
--- old/libzypp-12.2.0/doc/autoinclude/Plugin-Commit.doc2012-10-15 
15:57:59.0 +0200
+++ new/libzypp-12.4.0/doc/autoinclude/Plugin-Commit.doc2012-11-14 
12:43:31.0 +0100
@@ -24,6 +24,8 @@
 
   def PLUGINBEGIN(self, headers, body):
 # commit is going to start.
+if headers.has_key('userdata'):
+  print Commit starts with TID '%s' % headers['userdata']
 self.ack()
 
   def PLUGINEND(self, headers, body):
@@ -40,11 +42,14 @@
 \section pluginbegin PLUGINBEGIN
 \verbatim
 PLUGINBEGIN
+userdata:TIDfoo42
 
 ^@
 \endverbatim
 Sent as 1st message after the plugin was 

commit ocaml-lablgtk2 for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package ocaml-lablgtk2 for openSUSE:Factory 
checked in at 2012-11-14 16:52:29

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


Package is ocaml-lablgtk2, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/ocaml-lablgtk2/ocaml-lablgtk2.changes
2012-09-23 21:08:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.ocaml-lablgtk2.new/ocaml-lablgtk2.changes   
2012-11-14 16:52:31.0 +0100
@@ -1,0 +2,17 @@
+Mon Nov 12 15:10:39 CET 2012 - oher...@suse.de
+
+- BR gtksourceview2-devel in 12.1 and later
+
+---
+Mon Nov 12 15:06:34 CET 2012 - oher...@suse.de
+
+- remove gtksourceview-devel from BuilrRequires, configure does
+  not check for version 3
+- require gtksourceview18-devel in devel subpackage
+
+---
+Sat Nov 10 06:30:19 UTC 2012 - peter.tromm...@ohm-hochschule.de
+
+- BR gtksourceview2-devel to provide lablgtksourceview2 
+
+---



Other differences:
--
++ ocaml-lablgtk2.spec ++
--- /var/tmp/diff_new_pack.YJuCZm/_old  2012-11-14 16:52:31.0 +0100
+++ /var/tmp/diff_new_pack.YJuCZm/_new  2012-11-14 16:52:31.0 +0100
@@ -18,8 +18,10 @@
 
 Name:   ocaml-lablgtk2
 BuildRequires:  gtk2-devel
-BuildRequires:  gtksourceview-devel
 BuildRequires:  gtksourceview18-devel
+%if %suse_version = 1210
+BuildRequires:  gtksourceview2-devel
+%endif
 BuildRequires:  gtkspell-devel
 BuildRequires:  libglade2-devel
 BuildRequires:  libgnomecanvas-devel
@@ -71,7 +73,10 @@
 Provides:   lablgtk2:/usr/lib/ocaml/lablgtk2/glib.cmi
 Requires:   %{name} = %{version}
 Requires:   gtk2-devel
-Requires:   gtksourceview-devel
+Requires:   gtksourceview18-devel
+%if %suse_version = 1210
+Requires:   gtksourceview2-devel
+%endif
 Requires:   libgnomecanvas-devel
 
 %description devel

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



commit pam-modules for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package pam-modules for openSUSE:Factory 
checked in at 2012-11-14 16:52:46

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


Package is pam-modules, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/pam-modules/pam-modules.changes  2012-09-04 
01:33:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.pam-modules.new/pam-modules.changes 
2012-11-14 16:52:48.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov 14 14:32:15 CET 2012 - ku...@suse.de
+
+- Add /etc/default/passwd for pam_unix2.so, was removed with
+  pwdutils drop.
+
+---

New:

  default.passwd



Other differences:
--
++ pam-modules.spec ++
--- /var/tmp/diff_new_pack.lh6wad/_old  2012-11-14 16:52:50.0 +0100
+++ /var/tmp/diff_new_pack.lh6wad/_new  2012-11-14 16:52:50.0 +0100
@@ -32,6 +32,7 @@
 Source0:pam_unix2-2.9.1.tar.bz2
 Source1:pam_pwcheck-3.13.tar.bz2
 Source2:pam_homecheck-2.0.tar.bz2
+Source3:default.passwd
 Source6:baselibs.conf
 Source21:   unix2_chkpwd.c
 Source41:   unix2_chkpwd.8
@@ -116,8 +117,8 @@
   cp -fpv ${i} $DOC/modules/README.`dirname ${i}`
 done
 install -m 644 $RPM_SOURCE_DIR/unix2_chkpwd.8 $RPM_BUILD_ROOT%{_mandir}/man8/
-# Remove default/passwd file
-rm $RPM_BUILD_ROOT/etc/default/passwd
+# Replace default/passwd file
+install -m 644 %SOURCE3 $RPM_BUILD_ROOT/etc/default/passwd
 # Find lang files
 %{find_lang} pam_unix2
 %{find_lang} pam_pwcheck pam_unix2.lang
@@ -131,7 +132,7 @@
 %files -f pam_unix2.lang
 %defattr(-,root,root,755)
 %doc %{_defaultdocdir}/pam
-#attr(644,root,root) %config(noreplace) /etc/default/passwd
+%attr(644,root,root) %config(noreplace) /etc/default/passwd
 %verify(not mode) %attr(4755,root,shadow) /sbin/unix2_chkpwd
 %attr(755,root,root) /%{_lib}/security/pam_homecheck.so
 %attr(755,root,root) /%{_lib}/security/pam_pwcheck.so

++ default.passwd ++
# This file contains some information about the
# hash to use for new or modified passwords.
# It is only used by pam_unix2.so.

# Define default crypt hash.
# CRYPT={des,md5,sha256,sha512}
CRYPT=

# Use another crypt hash for group passwords.
# This is used by gpasswd, fallback is the CRYPT entry.
# GROUP_CRYPT=des


# We can override the default for a specific service
# by appending the service name (FILES, YP, NISPLUS, LDAP)

# for local files, use a more secure hash. We
# don't need to be portable here:
CRYPT_FILES=sha512
#
# For NIS, we should prefer DES if we have other UNIX
# clients than Linux:
# CRYPT_YP=des

# We can override the default for a special service
# by appending the service name (FILES, YP, NISPLUS, LDAP)

# for local files, use a more secure hash. We
# don't need to be portable here:
CRYPT_FILES=sha512

# sometimes we need to specify special options for a hash (variable
# is prepended by the name of the crypt hash). In case of blowfish
# and sha* this is the number of rounds
# blowfish: 4-31
# BLOWFISH_CRYPT_FILES=5
# sha256/sha512: 1000-999
# SHA512_CRYPT_FILES=1000

# In June 2011 it was discovered that the Linux crypt_blowfish
# implementation contained a bug that made passwords with non-ASCII
# characters easier to crack (CVE-2011-2483). Affected passwords are
# also incompatible with the original, correct OpenBSD
# implementation. Therefore the $2a hash identifier previously used
# for blowfish now is ambiguous as it could mean the hash was
# generated with the correct implementation on OpenBSD or the buggy
# one on Linux. To avoid the ambiguity two new identifier were
# introduced. $2x now explicitly identifies hashes that were
# generated with the buggy algorithm while $2y is used for hashes
# generated with the correct algorithm. New passwords are now
# generated with the $2y identifier.
#
# Setting the following option to yes tells the sytem that $2a
# hashes are to be treated as generated with the buggy algorithm.
BLOWFISH_2A2X=
-- 
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-11-14 Thread h_root
Hello community,

here is the log from the commit of package post-build-checks for 
openSUSE:Factory checked in at 2012-11-14 16:52:54

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-10-29 20:12:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.post-build-checks.new/post-build-checks.changes 
2012-11-14 16:52:55.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 14 00:34:25 UTC 2012 - r...@suse.com
+
+- Remove timestamp prefix in check_gcc_output (thanks to schwab)
+
+---



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-data/check_gcc_output 
new/post-build-checks-1.0/checks-data/check_gcc_output
--- old/post-build-checks-1.0/checks-data/check_gcc_output  2012-10-04 
14:31:41.0 +0200
+++ new/post-build-checks-1.0/checks-data/check_gcc_output  2012-11-14 
01:32:59.0 +0100
@@ -198,6 +198,7 @@
 while () {
 chomp;
 s,  +, ,g;
+s/^\[ *\d+s\] //;
 next if (m,/usr/include/c\+\+/,);
 
 $in_build_stage = 1 if (/^Executing\(\%build/);

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



commit python-Fabric for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package python-Fabric for openSUSE:Factory 
checked in at 2012-11-14 16:53:33

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


Package is python-Fabric, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-Fabric/python-Fabric.changes  
2012-09-14 12:35:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Fabric.new/python-Fabric.changes 
2012-11-14 16:53:37.0 +0100
@@ -1,0 +2,21 @@
+Wed Nov  7 02:03:36 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.5.0:
+  - [Feature] #684: Update how task wraps task functions to preserve
+additional metadata; this allows decorated functions to play nice
+with Sphinx autodoc. Thanks to Jaka Hudoklin for catch  patch.
+  - [Bug] #749: Gracefully work around calls to fabric.version on
+systems lacking /bin/sh (which causes an OSError in
+subprocess.Popen calls.)
+  - [Bug] #718: isinstance(foo, Bar) is used in main instead of
+type(foo) == Bar in order to fix some edge cases. Thanks to
+Mikhail Korobov.
+  - [Bug] #693: Fixed edge case where abort driven failures within
+parallel tasks could result in a top level exception (a KeyError)
+regarding error handling. Thanks to Marcin Kuźmiński for the report.
+  - [Support] #681: Fixed outdated docstring for runs_once which
+claimed it would get run multiple times in parallel mode. That
+behavior was fixed in an earlier release but the docs were not
+updated. Thanks to Jan Brauer for the catch.
+
+---

Old:

  Fabric-1.4.3.tar.bz2

New:

  Fabric-1.5.0.tar.bz2



Other differences:
--
++ python-Fabric.spec ++
--- /var/tmp/diff_new_pack.Tc1SRm/_old  2012-11-14 16:53:38.0 +0100
+++ /var/tmp/diff_new_pack.Tc1SRm/_new  2012-11-14 16:53:38.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-Fabric
-Version:1.4.3
+Version:1.5.0
 Release:0
 Summary:Fabric is a simple, Pythonic tool for remote execution and 
deployment
 License:BSD-2-Clause
@@ -87,7 +87,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS LICENSE README
+%doc AUTHORS LICENSE README.rst
 %{_bindir}/fab
 %{python_sitelib}/*
 

++ Fabric-1.4.3.tar.bz2 - Fabric-1.5.0.tar.bz2 ++
 4200 lines of diff (skipped)

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



commit python-matplotlib for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package python-matplotlib for 
openSUSE:Factory checked in at 2012-11-14 16:56:34

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


Package is python-matplotlib, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-matplotlib/python-matplotlib.changes  
2012-08-26 11:33:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-matplotlib.new/python-matplotlib.changes 
2012-11-14 16:56:36.0 +0100
@@ -1,0 +2,20 @@
+Mon Nov 12 04:24:19 UTC 2012 - highwaystar...@gmail.com
+
+- update to 1.2.0
+ * Python 3.x support
+ * PGF/TikZ backend
+ * Locator interface
+ * Tri-Surface Plots
+ * Control the lengths of colorbar extensions
+ * Figures are picklable
+ * Set default bounding box in matplotlibrc
+ * New Boxplot Functionality
+ * New RC parameter functionality
+ * Streamplot
+ * New hist functionality
+ * Updated shipped dependencies
+ * Face-centred colors in tripcolor plots
+ * Hatching patterns in filled contour plots, with legends 
+- python3 package added
+
+---
New Changes file:

--- /dev/null   2012-10-22 00:44:18.403455820 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-matplotlib.new/python3-matplotlib.changes
2012-11-14 16:56:36.0 +0100
@@ -0,0 +1,20 @@
+---
+Mon Nov 12 04:28:18 UTC 2012 - highwaystar...@gmail.com
+
+- update to 1.2.0
+ * Python 3.x support
+ * PGF/TikZ backend
+ * Locator interface
+ * Tri-Surface Plots
+ * Control the lengths of colorbar extensions
+ * Figures are picklable
+ * Set default bounding box in matplotlibrc
+ * New Boxplot Functionality
+ * New RC parameter functionality
+ * Streamplot
+ * New hist functionality
+ * Updated shipped dependencies
+ * Face-centred colors in tripcolor plots
+ * Hatching patterns in filled contour plots, with legends
+- python3 package added
+ 

Old:

  matplotlib-1.1.1.tar.bz2

New:

  matplotlib-1.2.0.tar.bz2
  no-multiprocessing-setup.patch
  py3-matplotlib-setup.cfg
  python3-matplotlib.changes
  python3-matplotlib.spec



Other differences:
--
++ python-matplotlib.spec ++
--- /var/tmp/diff_new_pack.CBzXqF/_old  2012-11-14 16:56:38.0 +0100
+++ /var/tmp/diff_new_pack.CBzXqF/_new  2012-11-14 16:56:38.0 +0100
@@ -18,7 +18,7 @@
 
 %define modname matplotlib
 Name:   python-%{modname}
-Version:1.1.1
+Version:1.2.0
 Release:0
 
 Summary:Plotting Library for Python

++ python3-matplotlib.spec ++
#
# spec file for package python3-matplotlib
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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


%define modname matplotlib
Name:   python3-%{modname}
Version:1.2.0
Release:0

Summary:Plotting Library for Python
License:BSD-2-Clause
Group:  Development/Libraries/Python
Url:http://sourceforge.net/projects/%{modname}
Source: %{modname}-%{version}.tar.bz2
#special config for python3 needed because of lack of wx and gtk backends
Source1:py3-%{modname}-setup.cfg
Patch0: no-multiprocessing-setup.patch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

BuildRequires:  fltk-devel
BuildRequires:  freetype2-devel
BuildRequires:  gcc-c++

BuildRequires:  libpng-devel

BuildRequires:  python3-2to3
BuildRequires:  python3-devel
BuildRequires:  python3-distribute
BuildRequires:  python3-numpy-devel = 1.2.1
BuildRequires:  python3-tk
BuildRequires:  python3-xml
BuildRequires:  tcl
BuildRequires:  tcl-devel
BuildRequires:  tk
BuildRequires:  tk-devel

Requires:   python3-dateutil
Requires:   python3-numpy = 1.2.1
Requires:   python3-tz

BuildRequires:  python3-qt4

## These packages are required to prevent that matplotlib installs it's
## own versions of the packages from the lib directory
BuildRequires:  python3-dateutil
BuildRequires:  python3-tz

%description
matplotlib is a python 2D plotting library which produces publication
quality 

commit python-progressbar for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package python-progressbar for 
openSUSE:Factory checked in at 2012-11-14 17:01:01

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


Package is python-progressbar, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-progressbar/python-progressbar.changes
2012-05-29 10:35:48.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-progressbar.new/python-progressbar.changes   
2012-11-14 17:01:03.0 +0100
@@ -1,0 +2,6 @@
+Mon Nov  5 22:20:32 UTC 2012 - sasc...@suse.de
+
+- Update to 2.3+hg20121105.3c94a3a1ebe1
+  + See mercurial changes
+
+---
--- /work/SRC/openSUSE:Factory/python-progressbar/python3-progressbar.changes   
2012-09-11 09:18:11.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-progressbar.new/python3-progressbar.changes  
2012-11-14 17:01:03.0 +0100
@@ -1,0 +2,14 @@
+Mon Nov  5 22:38:46 UTC 2012 - sasc...@suse.de
+
+- Correctly fix non-executable-script rpmlint warning
+- No need to explicitly require python(abi), RPM does that since ages
+- Cleanup old SUSE version checks
+
+---
+Mon Nov  5 22:21:08 UTC 2012 - sasc...@suse.de
+
+- Update to 2.3+hg20121105.3c94a3a1ebe1
+  + See mercurial changes
+- Add progressbar-python3-relative-imports.patch: Fix import paths
+
+---

Old:

  progressbar-2.3.tar.gz

New:

  progressbar-2.3+hg20121105.3c94a3a1ebe1.tar.bz2
  progressbar-python3-relative-imports.patch



Other differences:
--
++ python-progressbar.spec ++
--- /var/tmp/diff_new_pack.0YAzHF/_old  2012-11-14 17:01:04.0 +0100
+++ /var/tmp/diff_new_pack.0YAzHF/_new  2012-11-14 17:01:04.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-progressbar
 #
-# 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
@@ -11,23 +11,24 @@
 # case the license is the MIT License). An Open Source License is a
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
-#
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
-%define modname progressbar
-Name:   python-%{modname}
-Version:2.3
+
+
+Name:   python-progressbar
+Version:2.3+hg20121105.3c94a3a1ebe1
 Release:0
-License:LGPL-2.1+ or BSD-3-Clause
 Summary:Text Progressbar Library for Python
-Url:http://code.google.com/p/python-%{modname}/
+License:LGPL-2.1+ or BSD-3-Clause
 Group:  Development/Libraries/Python
-Source: 
http://python-progressbar.googlecode.com/files/%{modname}-%{version}.tar.gz
+Url:http://code.google.com/p/python-progressbar/
+Source: progressbar-%{version}.tar.bz2
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
+%{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
 %else
 BuildArch:  noarch
 %endif
@@ -38,7 +39,8 @@
 processing is underway.
 
 %prep
-%setup -q -n %{modname}-%{version}
+%setup -q -n progressbar
+sed -i /\/usr\/bin\/python/d progressbar/*.py  # Correctly fix 
non-executable-script warning
 
 %build
 python setup.py build
@@ -49,7 +51,7 @@
 %files
 %defattr(-,root,root)
 %doc LICENSE.txt README.txt examples.py
-%{python_sitelib}/%{modname}/
-%{python_sitelib}/%{modname}-%{version}-py%{py_ver}.egg-info
+%{python_sitelib}/progressbar/
+%{python_sitelib}/progressbar-2.3-py%{py_ver}.egg-info
 
 %changelog

++ python3-progressbar.spec ++
--- /var/tmp/diff_new_pack.0YAzHF/_old  2012-11-14 17:01:04.0 +0100
+++ /var/tmp/diff_new_pack.0YAzHF/_new  2012-11-14 17:01:04.0 +0100
@@ -11,30 +11,24 @@
 # case the license is the MIT License). An Open Source License is a
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
-#
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define modname progressbar
-Name:   python3-%{modname}
-Version:2.3

commit shadow for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

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

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


Package is shadow, Maintainer is ku...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/shadow/shadow.changes2012-11-13 
17:10:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.shadow.new/shadow.changes   2012-11-14 
17:02:22.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 13 17:31:50 CET 2012 - ku...@suse.de
+
+- Fix getdef default variables (getdef-new-defs.diff)
+
+---

New:

  getdef-new-defs.diff



Other differences:
--
++ shadow.spec ++
--- /var/tmp/diff_new_pack.6uNl8q/_old  2012-11-14 17:02:23.0 +0100
+++ /var/tmp/diff_new_pack.6uNl8q/_new  2012-11-14 17:02:23.0 +0100
@@ -34,6 +34,7 @@
 Patch2: useradd-script.diff
 Patch3: chkname-regex.diff
 Patch4: useradd-default.diff
+Patch5: getdef-new-defs.diff
 BuildRequires:  audit-devel
 BuildRequires:  libacl-devel
 BuildRequires:  libattr-devel
@@ -57,6 +58,7 @@
 %patch2 -p0
 %patch3 -p0
 %patch4 -p0
+%patch5 -p0
 
 iconv -f ISO88591 -t utf-8  doc/HOWTO  doc/HOWTO.utf8
 mv -v doc/HOWTO.utf8 doc/HOWTO

++ getdef-new-defs.diff ++
--- lib/getdef.c
+++ lib/getdef.c2012/11/13 16:26:34
@@ -64,6 +64,7 @@
{FAKE_SHELL, NULL},
{GID_MAX, NULL},
{GID_MIN, NULL},
+   {GROUPADD_CMD, NULL},
{HUSHLOGIN_FILE, NULL},
{KILLCHAR, NULL},
{LOGIN_RETRIES, NULL},
@@ -93,7 +94,10 @@
{UID_MAX, NULL},
{UID_MIN, NULL},
{UMASK, NULL},
+   {USERADD_CMD, NULL},
{USERDEL_CMD, NULL},
+   {USERDEL_PRECMD, NULL},
+   {USERDEL_POSTCMD, NULL},
{USERGROUPS_ENAB, NULL},
 #ifndef USE_PAM
{CHFN_AUTH, NULL},
@@ -129,6 +133,10 @@
{TCB_SYMLINKS, NULL},
{USE_TCB, NULL},
 #endif
+   /* Used by /bin/login */
+   {MOTD_FILE, NULL},
+   {ENV_PATH, NULL},
+   {ENV_ROOTPATH, NULL},
{NULL, NULL}
 };
 
++ shadow-login_defs.diff ++
--- /var/tmp/diff_new_pack.6uNl8q/_old  2012-11-14 17:02:23.0 +0100
+++ /var/tmp/diff_new_pack.6uNl8q/_new  2012-11-14 17:02:23.0 +0100
@@ -1,5 +1,5 @@
 --- etc/login.defs
-+++ etc/login.defs 2012/09/26 12:02:14
 etc/login.defs 2012/11/13 16:30:57
 @@ -1,8 +1,6 @@
  #
  # /etc/login.defs - Configuration control definitions for the shadow package.
@@ -166,7 +166,16 @@
  
  # Default initial umask value used by login on non-PAM enabled systems.
  # Default umask value for pam_umask on PAM enabled systems.
-@@ -206,40 +123,37 @@
+@@ -197,49 +114,44 @@
+ #
+ # PASS_MAX_DAYS   Maximum number of days a password may be used.
+ # PASS_MIN_DAYS   Minimum number of days allowed between password changes.
+-# PASS_MIN_LENMinimum acceptable password length.
+ # PASS_WARN_AGE   Number of days warning given before a password expires.
+ #
+ PASS_MAX_DAYS 9
+ PASS_MIN_DAYS 0
+-PASS_MIN_LEN  5
  PASS_WARN_AGE 7
  
  #
@@ -222,7 +231,7 @@
  
  #
  # Max time in seconds for login
-@@ -247,28 +161,6 @@
+@@ -247,28 +159,6 @@
  LOGIN_TIMEOUT 60
  
  #
@@ -251,7 +260,7 @@
  # Which fields may be changed by regular users using chfn - use
  # any combination of letters frwh (full name, room number, work
  # phone, home phone).  If not defined, no changes are allowed.
-@@ -277,13 +169,6 @@
+@@ -277,13 +167,6 @@
  CHFN_RESTRICT rwh
  
  #
@@ -265,7 +274,7 @@
  # Only works if compiled with MD5_CRYPT defined:
  # If set to yes, new passwords will be encrypted using the MD5-based
  # algorithm compatible with the one used by recent releases of FreeBSD.
-@@ -345,16 +230,12 @@
+@@ -345,16 +228,12 @@
  DEFAULT_HOME  yes
  
  #
@@ -284,7 +293,7 @@
  #USERDEL_CMD  /usr/sbin/userdel_local
  
  #
-@@ -364,7 +245,7 @@
+@@ -364,7 +243,7 @@
  #
  # This also enables userdel to remove user groups if no members exist.
  #
@@ -293,7 +302,7 @@
  
  #
  # If set to a non-nul number, the shadow utilities will make sure that
-@@ -383,5 +264,41 @@
+@@ -383,5 +262,41 @@
  # This option is overridden with the -M or -m flags on the useradd command
  # line.
  #

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



commit syslogd for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

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

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


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

Changes:

--- /work/SRC/openSUSE:Factory/syslogd/syslogd.changes  2012-10-19 
06:50:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.syslogd.new/syslogd.changes 2012-11-14 
17:02:40.0 +0100
@@ -1,0 +2,15 @@
+Tue Nov 13 09:18:14 UTC 2012 - m...@suse.com
+
+- Dropped SYSLOG_DAEMON variable from /etc/sysconfig/syslog.
+  The syslogd package provides a specific syslogd.service file
+  and creates an alias to syslog.service while activation now
+  (bnc#788330).
+- Dropped SYSLOG_REQUIRES_NETWORK, syslogd requires network.
+- Updated documentation in syslog.8 manual page.
+- Adopted logrotation and svcinfo files to use systemctl.
+- Dropped /etc/init.d/syslog and earlysyslog init scripts,
+  added /sbin/rcsyslog as compatibility forwarder to systemctl.
+- Changed to install in /usr/sbin, compatibility link in /sbin.
+- Changed to use _unitdir macro to install systemd unit files.
+
+---

Old:

  rc.earlysyslog
  sysconfig.syslog
  syslog-service-generator
  syslog.service

New:

  syslogd-service-prepare
  syslogd.service



Other differences:
--
++ syslogd.spec ++
--- /var/tmp/diff_new_pack.7YDSIy/_old  2012-11-14 17:02:42.0 +0100
+++ /var/tmp/diff_new_pack.7YDSIy/_new  2012-11-14 17:02:42.0 +0100
@@ -21,16 +21,18 @@
 %define omc_svcdir %{omc_prefix}/svcinfo.d
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(systemd)
+%{?systemd_requires}
+%define sysdsysunitdir %{_unitdir}
 Requires(post):   %fillup_prereq
-Requires(post):   %insserv_prereq
 Requires(post):   permissions
-Requires(postun): %insserv_prereq
 Requires(prereq): coreutils
 Requires(prereq): klogd
 Requires(prereq): sed
 Requires(prereq): syslog-service
 Provides:   sysklogd
 Provides:   syslog
+Provides:   sysvinit(syslog)
+Conflicts:  otherproviders(syslog)
 Version:1.4.1
 Release:0
 Summary:The Syslog daemon
@@ -38,17 +40,15 @@
 Group:  System/Daemons
 Source: sysklogd-1.4.1.tar.bz2
 Source1:logrotate.syslog
-Source2:sysconfig.syslog
-Source3:sysconfig.syslogd
-Source4:sysconfig.klogd
-Source5:rc.syslog
-Source6:rc.earlysyslog
-Source7:syslog.xml
-Source8:syslog.8
-Source9:syslog-service-generator
-Source10:   klogd.service
-Source11:   syslog.service
-Source12:   klog.service
+Source2:sysconfig.syslogd
+Source3:sysconfig.klogd
+Source4:syslog.xml
+Source5:syslog.8
+Source6:klog.service
+Source7:klogd.service
+Source8:syslogd.service
+Source9:syslogd-service-prepare
+Source10:   rc.syslog
 Patch0: sysklogd-1.4.1.dif
 Patch1: sysklogd-1.4.1-dgram.patch
 Patch2: sysklogd-1.4.1-sparc.patch
@@ -77,8 +77,6 @@
 Patch25:sysklogd-1.4.1-systemd-multi.dif
 Patch26:sysklogd-1.4.1-systemd-sock-name.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{expand: %%global sysdsysunitdir %(pkg-config systemd 
--variable=systemdsystemunitdir)}
-%{expand: %%global sysdsysconfdir %(pkg-config systemd 
--variable=systemdsystemconfdir)}
 
 %description
 The syslogd daemon is the general system logging daemon, which is
@@ -99,8 +97,6 @@
 %package -n klogd
 Provides:   klogd:/sbin/klogd
 Requires(post):   %fillup_prereq
-Requires(post):   %insserv_prereq
-Requires(postun): %insserv_prereq
 Summary:The kernel log daemon
 Group:  System/Daemons
 
@@ -122,11 +118,9 @@
 
 %package -n syslog-service
 Requires(post):   %fillup_prereq
-Requires(post):   %insserv_prereq
-Requires(postun): %insserv_prereq
-Provides:   klogd:/etc/init.d/syslog
-Requires:   /etc/init.d/network
 Requires:   logrotate
+Requires:   syslog
+Requires:   sysvinit(network)
 Summary:Syslog service files  scripts
 Group:  System/Daemons
 BuildArch:  noarch
@@ -176,37 +170,35 @@
 mv sample-s390.conf sample.conf
 %endif
 # honor the increased LOG_BUF_LEN in kernel/printk.c
-make %{?_smp_mflags} LOG_BUFFER_SIZE=-DLOG_BUFFER_SIZE=131072
+make %{?_smp_mflags} BINDIR=%{_sbindir} 
LOG_BUFFER_SIZE=-DLOG_BUFFER_SIZE=131072
 
 %install
-mkdir -p $RPM_BUILD_ROOT/{sbin,etc}
-mkdir -p $RPM_BUILD_ROOT/etc/init.d
+mkdir -p $RPM_BUILD_ROOT/etc
 mkdir -p $RPM_BUILD_ROOT/etc/logrotate.d
+mkdir -p $RPM_BUILD_ROOT/sbin
+mkdir -p 

commit sysstat for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

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

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


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

Changes:

--- /work/SRC/openSUSE:Factory/sysstat/sysstat.changes  2012-10-18 
22:03:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.sysstat.new/sysstat.changes 2012-11-14 
17:02:53.0 +0100
@@ -1,0 +2,8 @@
+Fri Nov  9 15:36:58 UTC 2012 - vci...@suse.com
+
+- fixed two typos in spec related to service unit, which prevented
+  succesful startup (bnc#783886)
+- service unit included hardcoded /usr/lib, so patching
+  sysstat.service to use correct libdir
+
+---



Other differences:
--
++ sysstat.spec ++
--- /var/tmp/diff_new_pack.ZJVKFQ/_old  2012-11-14 17:02:54.0 +0100
+++ /var/tmp/diff_new_pack.ZJVKFQ/_new  2012-11-14 17:02:54.0 +0100
@@ -78,6 +78,10 @@
 %patch2
 %patch3
 %patch4
+# patch correct libdir path in service unit
+if [ %{_libdir} != /usr/lib ]; then
+sed -i 's:/usr/lib:%{_libdir}:' %{S:4}
+fi
 cp %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} .
 
 %build
@@ -110,7 +114,7 @@
 ln -s %{_sysconfdir}/init.d/boot.sysstat %{buildroot}%{_sbindir}/rcsysstat
 %find_lang %{name}
 install -d %{buildroot}%{_localstatedir}/lock/sa %{buildroot}%{_unitdir}
-install -D -m 0644 sysstat.service %{buildrppt}%{_unitdir}/sysstat.service
+install -D -m 0644 %{S:4} %{buildroot}%{_unitdir}/sysstat.service
 
 %pre
 %service_add_pre sysstat.service
@@ -122,7 +126,7 @@
 
 %post
 %{fillup_and_insserv boot.sysstat}
-%service_add_post syststat.service
+%service_add_post sysstat.service
 
 %postun
 %{insserv_cleanup}
@@ -147,6 +151,7 @@
 %{_sbindir}/*
 %exclude %{_bindir}/isag
 %{_libdir}/sa
+%{_unitdir}/sysstat.service
 %ghost %dir %{_localstatedir}/lock/sa
 %dir %{_localstatedir}/log/sa
 

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



commit timezone for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package timezone for openSUSE:Factory 
checked in at 2012-11-14 17:03:04

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


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

Changes:

--- /work/SRC/openSUSE:Factory/timezone/timezone.changes2012-11-10 
16:55:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.timezone.new/timezone.changes   2012-11-14 
17:03:05.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 13 17:55:55 UTC 2012 - dmuel...@suse.com
+
+- update to 2012j:
+  * Libya moved to CET this weekend, but with DST planned next year
+
+---

Old:

  tzcode2012i.tar.gz
  tzdata2012i.tar.gz

New:

  tzcode2012j.tar.gz
  tzdata2012j.tar.gz



Other differences:
--
++ timezone-java.spec ++
--- /var/tmp/diff_new_pack.SPVDKP/_old  2012-11-14 17:03:06.0 +0100
+++ /var/tmp/diff_new_pack.SPVDKP/_new  2012-11-14 17:03:06.0 +0100
@@ -25,7 +25,7 @@
 Group:  System/Base
 # COMMON-BEGIN
 # COMMON-BEGIN
-Version:2012i
+Version:2012j
 Release:0
 Source: ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz
 Source1:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz

++ timezone.spec ++
--- /var/tmp/diff_new_pack.SPVDKP/_old  2012-11-14 17:03:06.0 +0100
+++ /var/tmp/diff_new_pack.SPVDKP/_new  2012-11-14 17:03:06.0 +0100
@@ -23,7 +23,7 @@
 Url:http://www.iana.org/time-zones
 PreReq: filesystem, coreutils
 # COMMON-BEGIN
-Version:2012i
+Version:2012j
 Release:0
 Source: ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz
 Source1:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz

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



commit ufw for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package ufw for openSUSE:Factory checked in 
at 2012-11-14 17:03:13

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


Package is ufw, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2012-10-22 00:44:18.403455820 +0200
+++ /work/SRC/openSUSE:Factory/.ufw.new/ufw.changes 2012-11-14 
17:03:14.0 +0100
@@ -0,0 +1,75 @@
+---
+Fri Nov  9 12:28:27 UTC 2012 - johann.l...@wanadoo.fr
+
+-fix problem systemd move in /usr
+ fix various warning OBS 
+
+---
+Tue Oct 16 14:53:10 UTC 2012 - johann.l...@wanadoo.fr
+
+-fix systemd tag to start automaticaly ufw
+
+---
+Mon Sep 17 12:53:01 UTC 2012 - johann.l...@wanadoo.fr
+
+- Update in 0.33 
+  fix dependance python-base
+  fix lang zh_TW
+
+---
+Wed Apr  4 14:02:00 UTC 2012 - johann.l...@wanadoo.fr
+
+- Updated in 0.31.1
+  fix various warning OBS
+  add script init file for systemd
+
+---
+Tue Oct 11 15:05:51 UTC 2011 - johann.l...@wanadoo.fr
+
+bug on restart in init file- 
+
+---
+Mon Oct 10 16:13:12 UTC 2011 - johann.l...@wanadoo.fr
+
+add opensuse init script - 
+
+---
+Thu Oct  6 21:17:36 UTC 2011 - johann.l...@wanadoo.fr
+
+add %lang tag in spec file- 
+
+---
+Wed Oct  5 14:56:20 UTC 2011 - johann.l...@wanadoo.fr
+
+OpenSuSE Factory- 
+
+---
+Wed Oct  5 12:50:01 UTC 2011 - johann.l...@wanadoo.fr
+
+Delete patch commit.py- 
+
+---
+Wed Oct  5 10:15:43 UTC 2011 - johann.l...@wanadoo.fr
+
+Changes in spec file for lang-
+
+---
+Tue Oct  4 14:21:01 UTC 2011 - johann.l...@wanadoo.fr
+
+Changes in spec file for python version -
+
+---
+Tue Oct  4 14:07:48 UTC 2011 - johann.l...@wanadoo.fr
+
+Changes on buildarch -
+
+---
+Tue Oct  4 13:57:07 UTC 2011 - johann.l...@wanadoo.fr
+
+Errors in spec file - 
+
+---
+Tue Oct  4 13:49:46 UTC 2011 - johann.l...@wanadoo.fr
+
+first on OpenSUSE 11.4 - 
+

New:

  ufw-0.33.tar.bz2
  ufw-init
  ufw.changes
  ufw.service
  ufw.spec



Other differences:
--
++ ufw.spec ++
#
# spec file for package ufw
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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


Name:   ufw
Version:0.33 
Release:0
Summary:Uncomplicated Firewall
License:GPL-3.0
Group:  Productivity/Networking/Security
Url:http://launchpad.net/%{name}
Source0:%{name}-%{version}.tar.bz2
Source1:ufw-init
Source2:ufw.service
BuildArch:  noarch

BuildRequires:  iptables
BuildRequires:  python-base = 2.7
BuildRequires:  python-devel

%if 0%{?suse_version}  1140
BuildRequires:  systemd
%systemd_requires
%endif

#Requires:   
%description
The Uncomplicated Firewall(ufw) is a front-end for netfilter, which
aims to make it easier for people unfamiliar with firewall concepts.
Ufw provides a framework for managing netfilter as well as 
manipulating the firewall. 

%prep
%setup -q
#Submited patch through ufw's bug report
#Fix directory locations instead of #CONFIG_PREFIX#
#http://bugs.launchpad.net/ufw/+bug/819600

%build
#python setup.py build

%install
rm -rf %{buildroot}
python setup.py install --prefix=/usr \
--root %{buildroot}
mkdir -p $RPM_BUILD_ROOT/etc/init.d/
install -m 755 $RPM_SOURCE_DIR/ufw-init 

commit wireshark for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package wireshark for openSUSE:Factory 
checked in at 2012-11-14 17:03:28

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-10-06 
18:45:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.wireshark.new/wireshark.changes 2012-11-14 
17:03:30.0 +0100
@@ -1,0 +2,6 @@
+Wed Nov 14 00:01:02 UTC 2012 - andreas.stie...@gmx.de
+
+- for openSUSE 12.2 and later, build against lua51-devel instead
+  of lua-devel for Lua support (bnc#780669)
+
+---



Other differences:
--
++ wireshark.spec ++
--- /var/tmp/diff_new_pack.RJI2vF/_old  2012-11-14 17:03:31.0 +0100
+++ /var/tmp/diff_new_pack.RJI2vF/_new  2012-11-14 17:03:31.0 +0100
@@ -45,7 +45,12 @@
 BuildRequires:  libgnutls-devel
 BuildRequires:  libpcap-devel
 BuildRequires:  libsmi-devel
+# required for Lua support in openSUSE 12.2 and later [bnc#780669]
+%if 0%{?suse_version} = 1220
+BuildRequires:  lua51-devel
+%else
 BuildRequires:  lua-devel
+%endif
 BuildRequires:  net-snmp-devel
 BuildRequires:  openssl-devel
 BuildRequires:  pcre-devel

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



commit xmlgraphics-fop for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package xmlgraphics-fop for openSUSE:Factory 
checked in at 2012-11-14 17:03:48

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


Package is xmlgraphics-fop, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xmlgraphics-fop/xmlgraphics-fop.changes  
2012-11-02 22:53:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.xmlgraphics-fop.new/xmlgraphics-fop.changes 
2012-11-14 17:03:49.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 14 13:23:34 UTC 2012 - slav...@gmail.com
+
+- fixed Class not found errors in fop scripts
+
+---



Other differences:
--


++ xmlgraphics-fop-fontlist.script ++
--- /var/tmp/diff_new_pack.kqKxUD/_old  2012-11-14 17:03:50.0 +0100
+++ /var/tmp/diff_new_pack.kqKxUD/_new  2012-11-14 17:03:50.0 +0100
@@ -20,7 +20,7 @@
 # Rest of the configuration
 MAIN_CLASS=org.apache.fop.tools.fontlist.FontListMain
 
-BASE_JARS=xmlgraphics-fop xmlgraphics-commons batik-all 
excalibur/avalon-framework xerces-j2 xalan-j2 xalan-j2-serializer
+BASE_JARS=xmlgraphics-fop xmlgraphics-commons batik-all 
excalibur/avalon-framework xerces-j2 xalan-j2 xalan-j2-serializer 
apache-commons-logging apache-commons-io
 
 # Set parameters
 set_jvm


++ xmlgraphics-fop-fontmetrics.script ++
--- /var/tmp/diff_new_pack.kqKxUD/_old  2012-11-14 17:03:50.0 +0100
+++ /var/tmp/diff_new_pack.kqKxUD/_new  2012-11-14 17:03:50.0 +0100
@@ -32,7 +32,7 @@
 MAIN_CLASS=${MAIN_CLASS_TTF}
 fi
 
-BASE_JARS=xmlgraphics-fop commons-io commons-logging 
excalibur/avalon-framework xml-commons-jaxp-1.3-apis xerces-j2 xalan-j2 
xalan-j2-serializer
+BASE_JARS=xmlgraphics-fop xmlgraphics-commons commons-io commons-logging 
excalibur/avalon-framework xml-commons-jaxp-1.3-apis xerces-j2 xalan-j2 
xalan-j2-serializer
 
 # Set parameters
 set_jvm




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



commit xtables-geoip for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package xtables-geoip for openSUSE:Factory 
checked in at 2012-11-14 17:04:16

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


Package is xtables-geoip, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xtables-geoip/xtables-geoip.changes  
2012-08-24 13:53:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.xtables-geoip.new/xtables-geoip.changes 
2012-11-14 17:04:18.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 12 21:06:34 UTC 2012 - jeng...@inai.de
+
+- update database files to the November 2012 release
+
+---



Other differences:
--
++ xtables-geoip.spec ++
--- /var/tmp/diff_new_pack.7wt34t/_old  2012-11-14 17:04:19.0 +0100
+++ /var/tmp/diff_new_pack.7wt34t/_new  2012-11-14 17:04:19.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   xtables-geoip
-Version:2012.08
+Version:2012.11
 Release:0
 Summary:Geolocation database files for xt_geoip
 License:BSD-4-Clause

++ GeoIPCountryWhois.csv.xz ++
Files /var/tmp/diff_new_pack.7wt34t/_old and /var/tmp/diff_new_pack.7wt34t/_new 
differ

++ GeoIPv6.csv.xz ++
Files /var/tmp/diff_new_pack.7wt34t/_old and /var/tmp/diff_new_pack.7wt34t/_new 
differ

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



commit zypper for openSUSE:Factory

2012-11-14 Thread h_root
Hello community,

here is the log from the commit of package zypper for openSUSE:Factory checked 
in at 2012-11-14 17:04:40

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


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

Changes:

--- /work/SRC/openSUSE:Factory/zypper/zypper.changes2012-10-07 
20:08:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.zypper.new/zypper.changes   2012-11-14 
17:04:48.0 +0100
@@ -1,0 +2,39 @@
+Tue Nov 13 15:42:10 CET 2012 - m...@suse.de
+
+- Add global '--userdata' option to allow defining transaction ids 
(fate#312521)
+- BuildRequire libzypp supporting userdata transaction ids.
+- Fix 'whatprovides' output (bnc#787318)
+- version 1.8.6
+
+---
+Thu Nov  1 01:14:15 CET 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Sun Oct 28 01:14:13 CEST 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Thu Oct 25 18:08:59 CEST 2012 - m...@suse.de
+
+- Fix source-install to accept package names and lookup their 
+  source package (bnc#785832)
+- version 1.8.5
+
+---
+Wed Oct 24 10:22:24 CEST 2012 - m...@suse.de
+
+- return dedicated error code if libzypp is locked (bnc #772353)
+- Don't ask for license agreement for openSUSE (bnc #780659)
+- add patch/list-patches option --category to man
+- Fix zypper output if stdout is not a tty (bnc#779716)
+- version 1.8.4
+
+---
+Thu Oct 18 01:14:10 CEST 2012 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---

Old:

  zypper-1.8.3.tar.bz2

New:

  zypper-1.8.6.tar.bz2



Other differences:
--
++ zypper.spec ++
--- /var/tmp/diff_new_pack.XqsxDm/_old  2012-11-14 17:04:50.0 +0100
+++ /var/tmp/diff_new_pack.XqsxDm/_new  2012-11-14 17:04:50.0 +0100
@@ -17,7 +17,7 @@
 # norootforbuild
 
 Name:   zypper
-BuildRequires:  libzypp-devel = 12.2.0
+BuildRequires:  libzypp-devel = 12.4.0
 BuildRequires:  boost-devel = 1.33.1
 BuildRequires:  gettext-devel = 0.15
 BuildRequires:  readline-devel = 5.1
@@ -34,7 +34,7 @@
 Group:  System/Packages
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Command line software manager using libzypp
-Version:1.8.3
+Version:1.8.6
 Release:0
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ zypper-1.8.3.tar.bz2 - zypper-1.8.6.tar.bz2 ++
/work/SRC/openSUSE:Factory/zypper/zypper-1.8.3.tar.bz2 
/work/SRC/openSUSE:Factory/.zypper.new/zypper-1.8.6.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