commit build for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package build for openSUSE:Factory checked 
in at 2013-12-04 12:22:11

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


Package is build

Changes:

--- /work/SRC/openSUSE:Factory/build/build.changes  2013-10-17 
17:36:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.build.new/build.changes 2013-12-04 
12:22:12.0 +0100
@@ -1,0 +2,7 @@
+Wed Dec  4 08:26:56 UTC 2013 - adr...@suse.de
+
+- support for project side configured VM kernels
+- ppc64le support
+- minor fixes
+
+---

Old:

  obs-build-20131015.tar.gz

New:

  obs-build-20131203.tar.gz



Other differences:
--
++ build.spec ++
--- /var/tmp/diff_new_pack.f1h93m/_old  2013-12-04 12:22:12.0 +0100
+++ /var/tmp/diff_new_pack.f1h93m/_new  2013-12-04 12:22:12.0 +0100
@@ -20,7 +20,7 @@
 Summary:A Script to Build SUSE Linux RPMs
 License:GPL-2.0+ and GPL-2.0
 Group:  Development/Tools/Building
-Version:20131015
+Version:20131203
 Release:0
 #!BuildIgnore:  build-mkbaselibs
 Source: obs-build-%{version}.tar.gz

++ PKGBUILD ++
--- /var/tmp/diff_new_pack.f1h93m/_old  2013-12-04 12:22:13.0 +0100
+++ /var/tmp/diff_new_pack.f1h93m/_new  2013-12-04 12:22:13.0 +0100
@@ -1,5 +1,5 @@
 pkgname=build
-pkgver=20131015
+pkgver=20131203
 pkgrel=0
 pkgdesc=Build packages in sandbox
 arch=('i686' 'x86_64')
@@ -8,7 +8,7 @@
 groups=('base-devel')
 depends=('perl')
 source=(obs-build-${pkgver}.tar.gz)
-md5sums=('b0c023cc1613e14e84934e0f395b3dd0')
+md5sums=('68004d50578bb66c05481bedc2b8ea0c')
 
 package() {
   msg Installing build ...

++ build.dsc ++
--- /var/tmp/diff_new_pack.f1h93m/_old  2013-12-04 12:22:13.0 +0100
+++ /var/tmp/diff_new_pack.f1h93m/_new  2013-12-04 12:22:13.0 +0100
@@ -1,6 +1,6 @@
 Format: 1.0
 Source: build
-Version: 20131015
+Version: 20131203
 Binary: build
 Maintainer: Adrian Schroeter adr...@suse.de
 Architecture: all

++ obs-build-20131015.tar.gz - obs-build-20131203.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/obs-build-20131015/Build/Kiwi.pm 
new/obs-build-20131203/Build/Kiwi.pm
--- old/obs-build-20131015/Build/Kiwi.pm2013-10-15 11:43:49.0 
+0200
+++ new/obs-build-20131203/Build/Kiwi.pm2013-12-04 09:28:30.0 
+0100
@@ -173,7 +173,7 @@
 
   my $instsource = ($kiwi-{'instsource'} || [])-[0];
   if ($instsource) {
-foreach my $repository(sort {$a-{priority} = $b-{priority}} 
@{$instsource-{'instrepo'} || []}) {
+for my $repository(sort {$a-{priority} = $b-{priority}} 
@{$instsource-{'instrepo'} || []}) {
   my $kiwisource = ($repository-{'source'} || [])-[0];
   if ($kiwisource-{'path'} eq 'obsrepositories:/') {
  # special case, OBS will expand it.
@@ -183,11 +183,17 @@
   die(bad instsource path: $kiwisource-{'path'}\n) unless 
$kiwisource-{'path'} =~ /^obs:\/\/\/?([^\/]+)\/([^\/]+)\/?$/;
   push @repos, $1/$2;
 }
+$ret-{'sourcemedium'} = -1;
+$ret-{'debugmedium'} = -1;
 if ($instsource-{'productoptions'}) {
   my $productoptions = $instsource-{'productoptions'}-[0] || {};
   for my $po (@{$productoptions-{'productvar'} || []}) {
$ret-{'version'} = $po-{'_content'} if $po-{'name'} eq 'VERSION';
   }
+  for my $po (@{$productoptions-{'productoption'} || []}) {
+   $ret-{'sourcemedium'} = $po-{'_content'} if $po-{'name'} eq 
'SOURCEMEDIUM';
+   $ret-{'debugmedium'} = $po-{'_content'} if $po-{'name'} eq 
'DEBUGMEDIUM';
+  }
 }
 if ($instsource-{'architectures'}) {
   my $a = $instsource-{'architectures'}-[0] || {};
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/obs-build-20131015/Build.pm 
new/obs-build-20131203/Build.pm
--- old/obs-build-20131015/Build.pm 2013-10-15 11:43:49.0 +0200
+++ new/obs-build-20131203/Build.pm 2013-12-04 09:28:30.0 +0100
@@ -101,7 +101,7 @@
 $rpmdista = $arch;
   }
   $rpmdista =~ s/i[456]86/i386/;
-  $rpmdist = '' unless $rpmdista =~ 
/^(i386|x86_64|ia64|ppc|ppc64|s390|s390x)$/;
+  $rpmdist = '' unless $rpmdista =~ 
/^(i386|x86_64|ia64|ppc|ppc64|ppc64le|s390|s390x)$/;
   my $dist = 'default';
   if ($rpmdist =~ /unitedlinux 1\.0.*/) {
 $dist = ul1-$rpmdista;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/obs-build-20131015/build new/obs-build-20131203/build
--- old/obs-build-20131015/build2013-10-15 11:43:49.0 +0200
+++ new/obs-build-20131203/build  

commit autoyast2 for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2013-12-04 12:21:53

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


Package is autoyast2

Changes:

--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes  2013-11-30 
19:55:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2013-12-04 
12:21:54.0 +0100
@@ -1,0 +2,6 @@
+Tue Dec  3 14:45:40 UTC 2013 - vmora...@suse.com
+
+- Support legacy runlevel profile
+- 3.1.3
+
+---

Old:

  autoyast2-3.1.2.tar.bz2

New:

  autoyast2-3.1.3.tar.bz2



Other differences:
--
++ autoyast2.spec ++
--- /var/tmp/diff_new_pack.6BXrD6/_old  2013-12-04 12:21:54.0 +0100
+++ /var/tmp/diff_new_pack.6BXrD6/_new  2013-12-04 12:21:54.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   autoyast2
-Version:3.1.2
+Version:3.1.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ autoyast2-3.1.2.tar.bz2 - autoyast2-3.1.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.2/VERSION new/autoyast2-3.1.3/VERSION
--- old/autoyast2-3.1.2/VERSION 2013-11-28 18:05:28.0 +0100
+++ new/autoyast2-3.1.3/VERSION 2013-12-03 16:05:03.0 +0100
@@ -1 +1 @@
-3.1.2
+3.1.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.2/package/autoyast2.changes 
new/autoyast2-3.1.3/package/autoyast2.changes
--- old/autoyast2-3.1.2/package/autoyast2.changes   2013-11-28 
18:05:28.0 +0100
+++ new/autoyast2-3.1.3/package/autoyast2.changes   2013-12-03 
16:05:03.0 +0100
@@ -1,4 +1,10 @@
 ---
+Tue Dec  3 14:45:40 UTC 2013 - vmora...@suse.com
+
+- Support legacy runlevel profile
+- 3.1.3
+
+---
 Thu Nov 28 16:37:19 CET 2013 - f...@suse.de
 
 - fix bug where autoyast created primary partition when logical
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.2/package/autoyast2.spec 
new/autoyast2-3.1.3/package/autoyast2.spec
--- old/autoyast2-3.1.2/package/autoyast2.spec  2013-11-28 18:05:28.0 
+0100
+++ new/autoyast2-3.1.3/package/autoyast2.spec  2013-12-03 16:05:03.0 
+0100
@@ -17,7 +17,7 @@
 
 
 Name:   autoyast2
-Version:3.1.1
+Version:3.1.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.2/src/clients/inst_autosetup.rb 
new/autoyast2-3.1.3/src/clients/inst_autosetup.rb
--- old/autoyast2-3.1.2/src/clients/inst_autosetup.rb   2013-11-28 
18:05:28.0 +0100
+++ new/autoyast2-3.1.3/src/clients/inst_autosetup.rb   2013-12-03 
16:05:03.0 +0100
@@ -278,7 +278,7 @@
 
   Progress.NextStage
   AutoinstSoftware.Import(Ops.get_map(Profile.current, software, {}))
-  keys = Profile.current.keys.select do |k| 
+  keys = Profile.current.keys.select do |k|
 Profile.current[k].is_a?(Array)||Profile.current[k].is_a?(Hash)
   end
   AutoinstSoftware.AddYdepsFromProfile(keys)
@@ -327,8 +327,17 @@
   LanUdevAuto.Import(Ops.get_map(Profile.current, networking, {}))
 
   Progress.NextStage
-  @default_target = Profile.current['default_target'].to_s
-  Builtins.y2milestone(autoyast - configured default target: 
#{@default_target})
+
+  if Profile.current['runlevel']  Profile.current['runlevel']['default']
+default_runlevel = Profile.current['runlevel']['default'].to_i
+@default_target = default_runlevel == 5 ? Target::GRAPHICAL : 
Target::MULTIUSER
+Builtins.y2milestone(Accepting runlevel '#{default_runlevel}' as 
default target '#{@default_target}')
+  else
+@default_target = Profile.current['default_target'].to_s
+  end
+
+  Builtins.y2milestone(autoyast - configured default target: 
'#{@default_target}')
+
   if !@default_target.empty?
 SystemdTarget.default_target = @default_target
   else
@@ -336,6 +345,7 @@
   Arch.x11_setup_needed 
   Pkg.IsSelected(xorg-x11-server) ? Target::GRAPHICAL : 
Target::MULTIUSER
   end
+
   Builtins.y2milestone(
 autoyast - setting default target to: #{SystemdTarget.default_target}
   )

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

commit schily-libs for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package schily-libs for openSUSE:Factory 
checked in at 2013-12-04 12:23:16

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


Package is schily-libs

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



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



commit fontinfo for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package fontinfo for openSUSE:Factory 
checked in at 2013-12-04 12:24:31

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


Package is fontinfo

Changes:

--- /work/SRC/openSUSE:Factory/fontinfo/fontinfo.changes2013-11-10 
15:07:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.fontinfo.new/fontinfo.changes   2013-12-04 
12:24:32.0 +0100
@@ -1,0 +2,33 @@
+Tue Nov 26 10:36:47 UTC 2013 - pgaj...@suse.com
+
+- updated to verison 20131126
+  * new string for Byzantine Musical Symbols (thanks to Konstantinos 
+Terzopoulos)
+
+---
+Thu Nov 21 13:25:57 UTC 2013 - pgaj...@suse.com
+
+- updated to version 20131119
+  * no underscores in script names above specimens
+  * languages - sentences mapping as preparation
+for opentype shaping
+  * new sentences for e. g. Math, Sundanese, etc.
+
+---
+Thu Nov 14 08:21:42 UTC 2013 - pgaj...@suse.com
+
+- updated to version 20131114
+  * extend Math and Musical_Symbols collections coverage
+  * added sentences for Math and Musical_Symbols collections
+
+---
+Tue Nov 12 16:22:30 UTC 2013 - pgaj...@suse.com
+
+- updated to version 20131112
+  * index fonts by unicode blocks
+  * introduce 'collections' (now Math and Musical_Symbols); they 
+are on the same level as scripts, but defined by fontinfo
+  * display software package description
+  * added CHANGES file
+
+---

Old:

  fontinfo-20131108.tar.bz2

New:

  fontinfo-20131126.tar.bz2



Other differences:
--
++ fontinfo.spec ++
--- /var/tmp/diff_new_pack.Ojsu1h/_old  2013-12-04 12:24:33.0 +0100
+++ /var/tmp/diff_new_pack.Ojsu1h/_new  2013-12-04 12:24:33.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   fontinfo
-Version:20131108
+Version:20131126
 Release:0
 Url:https://build.opensuse.org/package/show/home:pgajdos/fontinfo
 Summary:Overview of Installed Fonts
@@ -60,8 +60,7 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING doc/THANKS.md
+%doc COPYING CHANGES doc/THANKS.md
 %{_bindir}/*
-%{_datadir}/*
 
 %changelog

++ fontinfo-20131108.tar.bz2 - fontinfo-20131126.tar.bz2 ++
 5391 lines of diff (skipped)

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



commit git for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package git for openSUSE:Factory checked in 
at 2013-12-04 12:25:01

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


Package is git

Changes:

--- /work/SRC/openSUSE:Factory/git/git.changes  2013-12-03 14:26:03.0 
+0100
+++ /work/SRC/openSUSE:Factory/.git.new/git.changes 2013-12-04 
12:25:03.0 +0100
@@ -1,0 +2,6 @@
+Tue Dec  3 16:21:45 CET 2013 - oher...@suse.de
+
+- Package also git-remote-hg and git-remote-bzr, so that 
+  git clone hg::$URL actually works
+
+---



Other differences:
--
++ git.spec ++
--- /var/tmp/diff_new_pack.d79Jnh/_old  2013-12-04 12:25:04.0 +0100
+++ /var/tmp/diff_new_pack.d79Jnh/_new  2013-12-04 12:25:04.0 +0100
@@ -238,6 +238,8 @@
 mkdir -p $RPM_BUILD_ROOT/%{_fwdefdir}
 install -m 644 %{S:6} $RPM_BUILD_ROOT/%{_fwdefdir}/git-daemon
 ###
+install -m 755 -D contrib/remote-helpers/git-remote-bzr 
$RPM_BUILD_ROOT%{gitexecdir}
+install -m 755 -D contrib/remote-helpers/git-remote-hg 
$RPM_BUILD_ROOT%{gitexecdir}
 (find $RPM_BUILD_ROOT%{_bindir} -type f -o -type l | grep -vE 
archimport|svn|cvs|email|gitk|daemon|gui | sed -e s@^$RPM_BUILD_ROOT@@)   
 bin-man-doc-files
 (find $RPM_BUILD_ROOT%{gitexecdir} ! -type d | grep -vE 
archimport|svn|cvs|email|gitk|daemon|gui | sed -e s@^$RPM_BUILD_ROOT@@)   
 bin-man-doc-files
 (find $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT/Documentation -type f | grep 
-vE archimport|svn|git-cvs|email|gitk|daemon|gui | sed -e 
s@^$RPM_BUILD_ROOT@@ -e 's/$/*/' )  bin-man-doc-files

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



commit kdbg for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package kdbg for openSUSE:Factory checked in 
at 2013-12-04 12:25:20

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


Package is kdbg

Changes:

--- /work/SRC/openSUSE:Factory/kdbg/kdbg.changes2013-11-12 
15:08:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdbg.new/kdbg.changes   2013-12-04 
12:25:21.0 +0100
@@ -1,0 +2,5 @@
+Tue Dec  3 09:10:26 UTC 2013 - pgaj...@suse.com
+
+- use png_fix_dir macro [bnc#852862]
+
+---



Other differences:
--
++ kdbg.spec ++
--- /var/tmp/diff_new_pack.F4Zdnc/_old  2013-12-04 12:25:21.0 +0100
+++ /var/tmp/diff_new_pack.F4Zdnc/_new  2013-12-04 12:25:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdbg
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,9 @@
 Source0:%{name}-%{version}.tar.gz
 Patch1: susepatches.diff
 BuildRequires:  fdupes
+%if 0%{?suse_version} = 1310
+BuildRequires:  libpng-tools
+%endif
 BuildRequires:  libkde4-devel
 Requires:   gdb
 Recommends: %{name}-lang = %{version}
@@ -61,6 +64,9 @@
   %kde_post_install
   cd ..
   %find_lang %{name}
+  %if 0%{?suse_version} = 1310
+  %png_fix_dir %{buildroot}/%{_datadir}/icons/hicolor/22x22/actions/
+  %endif
   %fdupes -s %{buildroot}
   
   # remove oxygen/debug-run.png, already included in oxygen-icon-theme

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



commit kdemultimedia3 for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package kdemultimedia3 for openSUSE:Factory 
checked in at 2013-12-04 12:26:10

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


Package is kdemultimedia3

Changes:

--- /work/SRC/openSUSE:Factory/kdemultimedia3/kdemultimedia3.changes
2012-06-18 14:52:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdemultimedia3.new/kdemultimedia3.changes   
2013-12-04 12:26:11.0 +0100
@@ -1,0 +2,6 @@
+Wed Dec  4 01:32:01 UTC 2013 - an...@opensuse.org
+
+- fix capture knobs, patch from trinity
+  kdemultimedia-alsa-capture-fix.diff
+
+---

New:

  kdemultimedia-alsa-capture-fix.diff



Other differences:
--
++ kdemultimedia3.spec ++
--- /var/tmp/diff_new_pack.ClGjbZ/_old  2013-12-04 12:26:12.0 +0100
+++ /var/tmp/diff_new_pack.ClGjbZ/_new  2013-12-04 12:26:12.0 +0100
@@ -56,6 +56,7 @@
 #Patch54:kdemultimedia-3.5.10-alt3.2-kmix.patch
 Patch55:kdemultimedia-mmx-test.diff
 Patch56:kdemultimedia-xine.patch
+Patch57:kdemultimedia-alsa-capture-fix.diff 
 
 %description
 This package contains the base libraries for KDE multimedia programs.
@@ -236,6 +237,7 @@
 #%patch54 -p1
 %patch55 -p1
 %patch56 -p1
+%patch57 -p1
 rm -rf kappfinder-data
 . /etc/opt/kde3/common_options
 cp %SOURCE2 juk/pics/

++ kdemultimedia-alsa-capture-fix.diff ++
commit cf93ece4748db951ec0599dceb3569865ca333d3
Author: Timothy Pearson kb9...@pearsoncomputing.net
Date:   1365144710 -0500

Fix ALSA capture knob
This resolves Bug 1190
Thanks to Roman Savochenko for the patch!

diff --git a/kmix/mixer_alsa9.cpp b/kmix/mixer_alsa9.cpp
index e23e2b5..8f00c8d 100644
--- a/kmix/mixer_alsa9.cpp
+++ b/kmix/mixer_alsa9.cpp
@@ -305,8 +305,8 @@ Mixer_ALSA::open()
} // is ordinary mixer element (NOT an enum)
 
MixDevice* md = new MixDevice( mixerIdx,
-  *volPlay,
-   canRecord,
+  canCapture ? *volCapture : *volPlay,
+  canCapture ? true : canRecord,
   canMute,
   snd_mixer_selem_id_get_name( sid ),
   ct,
@@ -321,18 +321,6 @@ Mixer_ALSA::open()
masterChosen = true;
}
 
-   if ( canCapture  !canRecord ) {
-   MixDevice *mdCapture =
-   new MixDevice( mixerIdx,
-  *volCapture,
-   true,
-  canMute,
-  snd_mixer_selem_id_get_name( sid ),
-  ct,
-  cc );
-   m_mixDevices.append( mdCapture );
-   }
-
if ( enumList.count()  0 ) {
  int maxEnumId= enumList.count();
  QPtrListQString enumValuesRef = md-enumValues(); // 
retrieve a ref

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



commit konversation for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package konversation for openSUSE:Factory 
checked in at 2013-12-04 12:26:42

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


Package is konversation

Changes:

--- /work/SRC/openSUSE:Factory/konversation/konversation.changes
2013-03-25 20:31:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.konversation.new/konversation.changes   
2013-12-04 12:26:43.0 +0100
@@ -1,0 +2,5 @@
+Tue Dec  3 09:24:02 UTC 2013 - pgaj...@suse.com
+
+- use png_fix macro [bnc#852862]
+
+---



Other differences:
--
++ konversation.spec ++
--- /var/tmp/diff_new_pack.Z3Wf38/_old  2013-12-04 12:26:43.0 +0100
+++ /var/tmp/diff_new_pack.Z3Wf38/_new  2013-12-04 12:26:43.0 +0100
@@ -28,6 +28,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libkde4-devel
 BuildRequires:  libkdepimlibs4-devel
+%if 0%{?suse_version} = 1310
+BuildRequires:  libpng-tools
+%endif
 BuildRequires:  libqca2-devel
 BuildRequires:  xz
 %if 0%{?suse_version}
@@ -91,6 +94,9 @@
 #
 
 %find_lang %{name}
+%if 0%{?suse_version} = 1310
+%png_fix 
%{buildroot}/%{_kde4_appsdir}/konversation/themes/alternative/irc_normal.png
+%endif
 
 %kde_post_install
 

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



commit libcfile for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package libcfile for openSUSE:Factory 
checked in at 2013-12-04 12:27:26

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


Package is libcfile

Changes:

--- /work/SRC/openSUSE:Factory/libcfile/libcfile.changes2013-11-07 
08:40:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.libcfile.new/libcfile.changes   2013-12-04 
12:27:28.0 +0100
@@ -1,0 +2,5 @@
+Tue Dec  3 16:07:25 UTC 2013 - co...@suse.com
+
+- don't buildrequire ourselves
+
+---



Other differences:
--
++ libcfile.spec ++
--- /var/tmp/diff_new_pack.RkdrNJ/_old  2013-12-04 12:27:28.0 +0100
+++ /var/tmp/diff_new_pack.RkdrNJ/_new  2013-12-04 12:27:28.0 +0100
@@ -31,7 +31,6 @@
 Source: %{name}-alpha-%timestamp.tar.gz
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(libcerror) = 20130609
-BuildRequires:  pkgconfig(libcfile) = 20130809
 BuildRequires:  pkgconfig(libclocale) = 20130609
 BuildRequires:  pkgconfig(libcnotify) = 20130103
 # This can cause a build loop.  The internal version should be used.

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



commit libguestfs for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package libguestfs for openSUSE:Factory 
checked in at 2013-12-04 12:29:01

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


Package is libguestfs

Changes:

--- /work/SRC/openSUSE:Factory/libguestfs/libguestfs.changes2013-10-22 
14:52:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.libguestfs.new/libguestfs.changes   
2013-12-04 12:29:02.0 +0100
@@ -1,0 +2,11 @@
+Tue Nov 26 11:27:04 CET 2013 - oher...@suse.de
+
+- Update to version 1.24.1
+  * virt-resize  virt-sysprep can now use URIs to work on remote disks
+  * many new virt-sysprep operations
+  * many bug fixes
+  * full release notes: http://libguestfs.org/guestfs-release-notes.1.html
+- guestfsd needs at least libaugeas0 = 1.0.0
+- Recommend bash-completion to avoid completion errors
+
+---

Old:

  libguestfs-1.22.7.tar.xz

New:

  libguestfs-1.24.1.tar.xz



Other differences:
--
++ libguestfs.spec ++
--- /var/tmp/diff_new_pack.K7SRHm/_old  2013-12-04 12:29:03.0 +0100
+++ /var/tmp/diff_new_pack.K7SRHm/_new  2013-12-04 12:29:03.0 +0100
@@ -17,7 +17,7 @@
 #
 
 
-Version:1.22.7
+Version:1.24.1
 Release:0
 
 %define opt %(test -x %{_bindir}/ocamlopt  echo 1 || echo 0)
@@ -98,7 +98,7 @@
 %endif
 BuildRequires:  aaa_base
 BuildRequires:  attr-devel
-BuildRequires:  augeas-devel
+BuildRequires:  augeas-devel = 1.0.0
 BuildRequires:  autoconf
 BuildRequires:  automake
 %if %{with bash_completion}
@@ -179,6 +179,9 @@
 Provides:   %{name} = %{version}
 Obsoletes:  %{name}  %{version}
 Requires:   kvm = 1.1
+%if %{with bash_completion}
+Recommends: bash-completion = 2.0
+%endif
 %if %{with perl_bindings}
 Requires:   perl(Data::Dumper)
 Requires:   perl(File::Basename)
@@ -218,6 +221,7 @@
 Summary:Daemon for the libguestfs appliance
 License:GPL-2.0
 Group:  System/Filesystems
+Conflicts:  libaugeas0  1.0.0
 
 %description -n guestfsd
 guestfsd runs within the libguestfs appliance. It receives commands from the 
host
@@ -497,7 +501,7 @@
 make \
INSTALLDIRS=vendor \
LD_RUN_PATH= \
-   %{?jobs:-j%jobs}
+   %{?_smp_mflags}
 
 %install
 %if !%opt
@@ -760,5 +764,6 @@
 %{_datadir}/bash-completion
 %endif
 %{_mandir}/man1/*
+%{_mandir}/man5/*
 
 %changelog

++ 1000-force-virtio_blk-in-old-guest-kernel.patch ++
--- /var/tmp/diff_new_pack.K7SRHm/_old  2013-12-04 12:29:03.0 +0100
+++ /var/tmp/diff_new_pack.K7SRHm/_new  2013-12-04 12:29:03.0 +0100
@@ -1,22 +1,22 @@
-From f010abe024b47057f814e369b7b647e52d001019 Mon Sep 17 00:00:00 2001
+From 5002a87860d2c0b40f8df64fba403f2eb67d2f97 Mon Sep 17 00:00:00 2001
 From: Olaf Hering o...@aepfle.de
 Date: Mon, 3 Sep 2012 19:50:44 +0200
-Subject: [PATCH] force virtio_blk in old guest kernel
+Subject: force virtio_blk in old guest kernel
 
 Signed-off-by: Olaf Hering o...@aepfle.de
 ---
- fish/options.c |7 +--
- src/guestfs-internal.h |1 +
- src/handle.c   |   16 
- src/inspect-fs-unix.c  |4 ++--
- src/launch-direct.c|2 ++
+ fish/options.c |  7 +--
+ src/guestfs-internal.h |  1 +
+ src/handle.c   | 16 
+ src/inspect-fs-unix.c  |  4 ++--
+ src/launch-direct.c|  2 ++
  5 files changed, 26 insertions(+), 4 deletions(-)
 
-Index: libguestfs-1.22.5/fish/options.c
-===
 libguestfs-1.22.5.orig/fish/options.c
-+++ libguestfs-1.22.5/fish/options.c
-@@ -286,7 +286,10 @@ add_drives (struct drv *drv, char next_d
+diff --git a/fish/options.c b/fish/options.c
+index 75d61ad..b0bcd09 100644
+--- a/fish/options.c
 b/fish/options.c
+@@ -80,7 +80,10 @@ add_drives (struct drv *drv, char next_drive)
  {
int r;
struct guestfs_add_drive_opts_argv ad_optargs;
@@ -28,7 +28,7 @@
if (next_drive  'z') {
  fprintf (stderr,
   _(%s: too many drives added on the command line\n),
-@@ -300,7 +303,7 @@ add_drives (struct drv *drv, char next_d
+@@ -94,7 +97,7 @@ add_drives (struct drv *drv, char next_drive)
  free (drv-device);
  drv-device = NULL;
  
@@ -37,23 +37,23 @@
perror (asprintf);
exit (EXIT_FAILURE);
  }
-Index: libguestfs-1.22.5/src/guestfs-internal.h
-===
 libguestfs-1.22.5.orig/src/guestfs-internal.h
-+++ libguestfs-1.22.5/src/guestfs-internal.h
-@@ -432,6 +432,7 @@ struct guestfs_h
-   char *virt_selinux_label;
-   char *virt_selinux_imagelabel;
-   bool 

commit osc for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package osc for openSUSE:Factory checked in 
at 2013-12-04 12:30:16

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


Package is osc

Changes:

--- /work/SRC/openSUSE:Factory/osc/osc.changes  2013-12-03 16:11:46.0 
+0100
+++ /work/SRC/openSUSE:Factory/.osc.new/osc.changes 2013-12-04 
12:30:17.0 +0100
@@ -1,0 +2,6 @@
+Wed Dec  4 08:25:41 UTC 2013 - adr...@suse.de
+
+- 0.142.2
+  - support for ppc64le architecture
+
+---

Old:

  osc-0.142.1.tar.gz

New:

  osc-0.142.2.tar.gz



Other differences:
--
++ osc.spec ++
--- /var/tmp/diff_new_pack.ZPiGHl/_old  2013-12-04 12:30:18.0 +0100
+++ /var/tmp/diff_new_pack.ZPiGHl/_new  2013-12-04 12:30:18.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   osc
-Version:0.142.1
+Version:0.142.2
 Release:0
 Summary:openSUSE Build Service Commander
 License:GPL-2.0+

++ PKGBUILD ++
--- /var/tmp/diff_new_pack.ZPiGHl/_old  2013-12-04 12:30:18.0 +0100
+++ /var/tmp/diff_new_pack.ZPiGHl/_new  2013-12-04 12:30:18.0 +0100
@@ -1,5 +1,5 @@
 pkgname=osc
-pkgver=0.142.1
+pkgver=0.142.2
 pkgrel=0
 pkgdesc=Open Build Service client
 arch=('i686' 'x86_64')
@@ -8,7 +8,7 @@
 groups=('base-devel')
 depends=('python')
 source=(osc-${pkgver}.tar.gz)
-md5sums=('a3977c5cdc8bac4f09bca027b6a76fec')
+md5sums=('cdce96f3d1a7c55f3bee980e33808b2e')
 
 package() {
   msg Installing osc ...

++ _service ++
--- /var/tmp/diff_new_pack.ZPiGHl/_old  2013-12-04 12:30:18.0 +0100
+++ /var/tmp/diff_new_pack.ZPiGHl/_new  2013-12-04 12:30:18.0 +0100
@@ -1,7 +1,7 @@
 services
   service name=tar_scm mode=disabled
-param name=version0.142.1/param
-param name=revision0.142.1/param
+param name=version0.142.2/param
+param name=revision0.142.2/param
 param name=urlgit://github.com/openSUSE/osc.git/param
 param name=scmgit/param
   /service

++ osc-0.142.1.tar.gz - osc-0.142.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-0.142.1/osc/build.py new/osc-0.142.2/osc/build.py
--- old/osc-0.142.1/osc/build.py2013-12-03 11:25:08.0 +0100
+++ new/osc-0.142.2/osc/build.py2013-12-04 09:26:09.0 +0100
@@ -64,7 +64,7 @@
  'armv8l' :[ 'armv4l', 
'armv5el', 'armv6el', 'armv7el', 'armv8el' ], # not existing arch, just for 
compatibility
  'armv5tel':['armv4l', 
'armv5el', 'armv5tel' ], 
  's390x':  ['s390' ],
- 'ppc64':  ['ppc', 'ppc64', 'ppc64p7' ],
+ 'ppc64':  ['ppc', 'ppc64', 'ppc64p7', 
'ppc64le' ],
  'ppc64le':[ 'ppc64le' ],
  'i586':   ['i386' ],
  'i686':   ['i586', 'i386' ],

++ osc.dsc ++
--- /var/tmp/diff_new_pack.ZPiGHl/_old  2013-12-04 12:30:18.0 +0100
+++ /var/tmp/diff_new_pack.ZPiGHl/_new  2013-12-04 12:30:18.0 +0100
@@ -1,6 +1,6 @@
 Format: 1.0
 Source: osc
-Version: 0.142.1
+Version: 0.142.2
 Binary: osc
 Maintainer: Adrian Schroeter adr...@suse.de
 Architecture: any

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



commit libmsiecf for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package libmsiecf for openSUSE:Factory 
checked in at 2013-12-04 12:29:52

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


Package is libmsiecf

Changes:

--- /work/SRC/openSUSE:Factory/libmsiecf/libmsiecf.changes  2013-08-27 
20:53:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmsiecf.new/libmsiecf.changes 2013-12-04 
12:29:53.0 +0100
@@ -1,0 +2,8 @@
+Tue Nov 26 23:05:27 UTC 2013 - greg.freem...@gmail.com
+
+- update to 0~20131015
+   * updated dependencies
+   * improved pymsiecf as integer functions
+   * worked on setup.py, largely for MSI builds
+
+---

Old:

  libmsiecf-alpha-20130806.tar.gz

New:

  libmsiecf-alpha-20131015.tar.gz



Other differences:
--
++ libmsiecf.spec ++
--- /var/tmp/diff_new_pack.50Ap1n/_old  2013-12-04 12:29:53.0 +0100
+++ /var/tmp/diff_new_pack.50Ap1n/_new  2013-12-04 12:29:53.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   libmsiecf
 %define lname  libmsiecf1
-%define timestamp  20130806
+%define timestamp  20131015
 Version:0~%timestamp
 Release:0
 Summary:Library to parse MS Internet Explorer Cache Files
@@ -26,7 +26,7 @@
 Group:  Productivity/File utilities
 Url:http://code.google.com/p/libmsiecf/
 
-#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSVm1MNkw5cU1mUG8/libmsiecf-alpha-20130806.tar.gz
+#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSVm1MNkw5cU1mUG8/libmsiecf-alpha-20131015.tar.gz
 Source: %name-alpha-%timestamp.tar.gz
 Source2:MSIE_Cache_File_(index.dat)_format.pdf
 BuildRequires:  pkg-config
@@ -41,7 +41,7 @@
 BuildRequires:  pkgconfig(libfdatetime) = 20120522
 BuildRequires:  pkgconfig(libfguid) = 20120426
 BuildRequires:  pkgconfig(libuna) = 20120425
-# these packages fail if the factory version is used, verified 8/26/2013
+# these packages fail if the factory version is used, verified 10/15/2013
 #BuildRequires:  pkgconfig(libcerror) = 20120425
 # these packages have not been released standalone by upstream
 #BuildRequires:  pkgconfig(libfole) = 20120426

++ libmsiecf-alpha-20130806.tar.gz - libmsiecf-alpha-20131015.tar.gz ++
 26693 lines of diff (skipped)

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



commit libstorage for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package libstorage for openSUSE:Factory 
checked in at 2013-12-04 12:30:09

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


Package is libstorage

Changes:

--- /work/SRC/openSUSE:Factory/libstorage/libstorage.changes2013-11-23 
08:14:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.libstorage.new/libstorage.changes   
2013-12-04 12:30:10.0 +0100
@@ -1,0 +2,8 @@
+Tue Dec 03 17:31:28 CET 2013 - aschn...@suse.de
+
+- added list of UsedByInfo to ruby bindings
+- removed deprecated variables from ContainerInfo, VolumeInfo and
+  DiskInfo
+- pass some variables as list instead of joined string
+
+---

Old:

  libstorage-2.25.3.tar.bz2

New:

  libstorage-2.25.4.tar.bz2



Other differences:
--
++ libstorage.spec ++
--- /var/tmp/diff_new_pack.40Fa2L/_old  2013-12-04 12:30:11.0 +0100
+++ /var/tmp/diff_new_pack.40Fa2L/_new  2013-12-04 12:30:11.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libstorage
-Version:2.25.3
+Version:2.25.4
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: libstorage-%{version}.tar.bz2
@@ -114,7 +114,7 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%package -n libstorage4
+%package -n libstorage5
 
 Requires:   coreutils
 Requires:   cryptsetup
@@ -142,7 +142,7 @@
 Summary:Library for storage management
 Group:  System/Libraries
 
-%description -n libstorage4
+%description -n libstorage5
 This package contains libstorage, a library for storage management.
 
 Authors:
@@ -150,7 +150,7 @@
 Thomas Fehr f...@suse.de
 Arvin Schnell aschn...@suse.de
 
-%files -n libstorage4 -f libstorage.lang
+%files -n libstorage5 -f libstorage.lang
 %defattr(-,root,root)
 %{_libdir}/libstorage.so.*
 %ghost /var/run/libstorage
@@ -159,20 +159,20 @@
 %doc %{prefix}/share/doc/packages/libstorage/AUTHORS
 %doc %{prefix}/share/doc/packages/libstorage/COPYING
 
-%post -n libstorage4
+%post -n libstorage5
 /sbin/ldconfig
 %if 0%{?suse_version}
 %{fillup_only -an storage}
 %endif
 
-%postun -n libstorage4
+%postun -n libstorage5
 /sbin/ldconfig
 
 %package -n libstorage-devel
 
 Requires:   gcc-c++
 Requires:   libstdc++-devel
-Requires:   libstorage4 = %version
+Requires:   libstorage5 = %version
 Requires:   libxml2-devel
 Summary:Header files and documentation for libstorage
 Group:  Development/Languages/C and C++
@@ -196,7 +196,7 @@
 
 %package -n libstorage-python
 
-Requires:   libstorage4 = %version
+Requires:   libstorage5 = %version
 %{py_requires}
 Summary:Python bindings for libstorage
 Group:  System/Libraries
@@ -215,7 +215,7 @@
 
 %package -n libstorage-ruby
 
-Requires:   libstorage4 = %version
+Requires:   libstorage5 = %version
 Summary:Ruby bindings for libstorage
 Group:  System/Libraries
 
@@ -245,7 +245,7 @@
 
 %package -n libstorage-testsuite
 
-Requires:   libstorage4 = %version
+Requires:   libstorage5 = %version
 Summary:Testsuite for libstorage
 Group:  Development/Tools/Other
 

++ libstorage-2.25.3.tar.bz2 - libstorage-2.25.4.tar.bz2 ++
 10849 lines of diff (skipped)

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



commit sane-backends for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package sane-backends for openSUSE:Factory 
checked in at 2013-12-04 12:31:04

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


Package is sane-backends

Changes:

--- /work/SRC/openSUSE:Factory/sane-backends/sane-backends.changes  
2013-09-25 17:20:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.sane-backends.new/sane-backends.changes 
2013-12-04 12:31:05.0 +0100
@@ -1,0 +2,27 @@
+Tue Dec  3 11:09:25 CET 2013 - jsm...@suse.de
+
+- Upgraded to sane-backends version 1.0.24:
+  Changes since 1.0.23:
+  * Significant enhancements to pixma, genesys, kodakaio,
+fujitsu, canon_dr.
+  * Minor updates, bugfixes or scanners added in several backends.
+  * Added new testsuite.
+  * 51 new scanner models supported.
+  * USB support improvements.
+  * Improved build system (mingw64, bug fixes,
+default pthread on Linux).
+  * Documentation updates.
+  * Bugfixes.
+  For Details see the ChangeLog file.
+- sane-backends-1.0.21-SCX4500W.patch that adds usb id for SCX4500W
+  is obsolete since sane-backends-1.0.24 because it is fixed
+  in the source.
+- fix-no-return-in-nonvoid-function.patch that fixes a
+  control reaches end of non-void function gcc warning
+  in kodakaio.c is obsolete since sane-backends-1.0.24
+  because it is fixed in the source.
+- Recreated adapt_epkowa.desc_for_yast2-scanner.patch
+  according to the comment in sane-backends.spec
+  so that it applies for sane-backends-1.0.24.
+
+---
@@ -4,2 +31,2 @@
-- workaround for hp scanjet 8200
-  As described in https://bugzilla.novell.com/show_bug.cgi?id=840443
+- Workaround for hp scanjet 8200: As described in
+  https://bugzilla.novell.com/show_bug.cgi?id=840443
@@ -8 +35,2 @@
-  In order circumvent this issue, following workaround has been implemented:
+  In order circumvent this issue, following workaround has been
+  implemented:
@@ -12,2 +40,4 @@
- (namely detection of NO ADF but reporting of SOME ADF type) is given.
-  Per default the new option is inactive by comment; activate at your own risk!
+ (namely detection of NO ADF but reporting of SOME ADF type)
+ is given.
+  Per default the new option is inactive by comment.
+  Activate at your own risk!
@@ -15,4 +45,3 @@
-  
https://alioth.debian.org/tracker/index.php?func=detailaid=314108group_id=30186atid=410366
-- created patch110 for avision.conf
-- created patch111 for avision.c
-- introduced patch110 and patch111 into sane-backends.spec
+  
https://alioth.debian.org/tracker/index.php?func=detailaid=314108group_id=30186atid=410366
+- created patch110 (avision.conf.patch) for avision.conf
+- created patch111 (avision.c.patch) for avision.c

Old:

  fix-no-return-in-nonvoid-function.patch
  sane-backends-1.0.21-SCX4500W.patch
  sane-backends-1.0.23.tar.gz

New:

  sane-backends-1.0.24.tar.gz



Other differences:
--
++ sane-backends.spec ++
--- /var/tmp/diff_new_pack.1MD6c0/_old  2013-12-04 12:31:06.0 +0100
+++ /var/tmp/diff_new_pack.1MD6c0/_new  2013-12-04 12:31:06.0 +0100
@@ -39,20 +39,16 @@
 Summary:SANE (Scanner Access Now Easy) Scanner Drivers
 License:GPL-2.0+ and SUSE-GPL-2.0+-with-sane-exception and 
SUSE-Public-Domain
 Group:  Hardware/Scanner
-Version:1.0.23
+Version:1.0.24
 Release:0
 Url:http://www.sane-project.org/
-# URLs for Source0:
-# https://alioth.debian.org/frs/download.php/3752/sane-backends-1.0.23.tar.gz.1
-# https://alioth.debian.org/frs/download.php/3753/sane-backends-1.0.23.tar.gz.2
-# https://alioth.debian.org/frs/download.php/3754/sane-backends-1.0.23.tar.gz.3
-# Get 
https://alioth.debian.org/frs/download.php/3756/sane-backends-1.0.23.tar.gz.md5
-# for the MD5 sum for sane-backends-1.0.23.tar.gz 
e226a89c54173efea80e91e9a5eb6573
-# See https://alioth.debian.org/frs/download.php/3755/README.txt
-# how to make sane-backends-1.0.23.tar.gz and how to verify it:
-# $ cat sane-backends-1.0.23.tar.gz.[1-3]  sane-backends-1.0.23.tar.gz
-# $ md5sum -c sane-backends-1.0.23.tar.gz.md5
-Source0:sane-backends-%{version}.tar.gz
+# How to get Source0:
+# wget --no-check-certificate 
https://alioth.debian.org/frs/download.php/file/3958/sane-backends-1.0.24.tar.gz
+# How to get the MD5 sum file:
+# wget --no-check-certificate 
https://alioth.debian.org/frs/download.php/file/3956/sane-backends-1.0.24.tar.gz.md5
+# How to check the MD5 sum:
+# md5sum -c sane-backends-1.0.24.tar.gz.md5
+Source0:
https://alioth.debian.org/frs/download.php/file/3958/sane-backends-%{version}.tar.gz
 # Source100... is SUSE specific stuff:
 # 

commit qinternet for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package qinternet for openSUSE:Factory 
checked in at 2013-12-04 12:30:53

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


Package is qinternet

Changes:

--- /work/SRC/openSUSE:Factory/qinternet/qinternet.changes  2011-09-23 
12:43:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.qinternet.new/qinternet.changes 2013-12-04 
12:30:54.0 +0100
@@ -1,0 +2,5 @@
+Tue Dec  3 09:26:49 UTC 2013 - pgaj...@suse.com
+
+- use png_fix macro [bnc#852862]
+
+---



Other differences:
--
++ qinternet.spec ++
--- /var/tmp/diff_new_pack.qrGnjg/_old  2013-12-04 12:30:54.0 +0100
+++ /var/tmp/diff_new_pack.qrGnjg/_new  2013-12-04 12:30:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package qinternet
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,17 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   qinternet
-BuildRequires:  libqt4-devel openslp-devel update-desktop-files
+BuildRequires:  libqt4-devel
+BuildRequires:  openslp-devel
+BuildRequires:  update-desktop-files
+%if 0%{?suse_version} = 1310
+BuildRequires:  libpng-tools
+%endif
+Summary:Internet Connection Tool
 License:GPL-2.0+
 Group:  Productivity/Networking/PPP
-Summary:Internet Connection Tool
 Requires:   smpppd
 Version:0.75_git200910271200
-Release:9
+Release:0
 Source0:qinternet-%{version}.tar.bz2
 # feel free to improve it and please upstream it
 Patch0: qinternet-no-copy-dt-needed-entries.patch
@@ -57,6 +60,9 @@
 make DESTDIR=%{buildroot} install
 %suse_update_desktop_file qinternet
 %find_lang %{name}
+%if 0%{?suse_version} = 1310
+%png_fix %{buildroot}/%{_datadir}/pixmaps/qinternet.png
+%endif
 
 %post -p /sbin/ldconfig
 

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



commit php5-pear-channel-symfony2 for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package php5-pear-channel-symfony2 for 
openSUSE:Factory checked in at 2013-12-04 12:30:43

Comparing /work/SRC/openSUSE:Factory/php5-pear-channel-symfony2 (Old)
 and  /work/SRC/openSUSE:Factory/.php5-pear-channel-symfony2.new (New)


Package is php5-pear-channel-symfony2

Changes:

New Changes file:

--- /dev/null   2013-11-25 01:44:08.036031256 +0100
+++ 
/work/SRC/openSUSE:Factory/.php5-pear-channel-symfony2.new/php5-pear-channel-symfony2.changes
   2013-12-04 12:30:45.0 +0100
@@ -0,0 +1,5 @@
+---
+Sun Aug  4 11:45:28 UTC 2013 - robert.munte...@gmail.com
+
+- Initial package 
+

New:

  channel.xml
  php5-pear-channel-symfony2.changes
  php5-pear-channel-symfony2.spec



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

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


%define peardir %(pear config-get php_dir 2 /dev/null)
%define pear_xmldir  /var/lib/pear

Name:   php5-pear-channel-symfony2
Version:1.0
Release:0
Summary:Adds pear.symfony.com channel to PEAR
License:MIT
Group:  Development/Libraries/PHP
Url:http://pear.symfony.com/
Source0:http://pear.symfony.com/channel.xml
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
BuildRequires:  php-pear
Requires:   php-pear

%description
This package adds the pear.symfony.com channel which allows PEAR packages
from this channel to be installed.


%prep
%setup -q -c -T

%build
# Empty build section, nothing to build

%install

%{__mkdir_p} %{buildroot}%{pear_xmldir}

%{__install} -pm 644 %{SOURCE0} %{buildroot}%{pear_xmldir}/pear.symfony.com.xml

%clean

%{__rm} -rf %{buildroot}

%post
if [ $1 -eq  1 ] ; then
   pear channel-add %{pear_xmldir}/pear.symfony.com.xml  /dev/null || :
else
   pear channel-update %{pear_xmldir}/pear.symfony.com.xml  /dev/null ||:
fi

%postun

if [ $1 -eq 0 ] ; then
   pear channel-delete pear.symfony-project.com  /dev/null || :
fi

%files
%defattr(-,root,root,-)
%{pear_xmldir}/*

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



commit terminus-bitmap-fonts for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package terminus-bitmap-fonts for 
openSUSE:Factory checked in at 2013-12-04 12:31:23

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


Package is terminus-bitmap-fonts

Changes:

--- 
/work/SRC/openSUSE:Factory/terminus-bitmap-fonts/terminus-bitmap-fonts.changes  
2012-09-14 12:39:50.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.terminus-bitmap-fonts.new/terminus-bitmap-fonts.changes
 2013-12-04 12:31:24.0 +0100
@@ -1,0 +2,7 @@
+Fri Nov 22 04:31:25 UTC 2013 - jeng...@inai.de
+
+- Correct License field, update homepage URL and description to
+  include font classification
+- Kill terminus-bitmap-fonts.patch, we can do this in the .spec
+
+---

Old:

  terminus-bitmap-fonts.patch



Other differences:
--
++ terminus-bitmap-fonts.spec ++
--- /var/tmp/diff_new_pack.reHEK4/_old  2013-12-04 12:31:24.0 +0100
+++ /var/tmp/diff_new_pack.reHEK4/_new  2013-12-04 12:31:24.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package terminus-bitmap-fonts
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,13 +22,12 @@
 Version:4.38
 Release:0
 Summary:Readable Fixed Width Fonts for X11 and the Linux Console
-License:GPL-2.0+
+License:OFL-1.1
 Group:  System/X11/Fonts
-Url:http://www.is-vn.bg/hamster/jimmy-en.html
-#http://www.is-vn.bg/hamster/terminus-font-{version}.tar.bz2
-Source0:%{fontname}-%{version}.tar.bz2
-# PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
-Patch1: %{name}.patch
+Url:http://terminus-font.sf.net/
+
+#DL-URL:   
http://downloads.sf.net/terminus-font/terminus-font-%version.tar.gz
+Source: terminus-font-%version.tar.bz2
 BuildRequires:  fontpackages-devel
 %if 0%{?suse_version} = 1220
 BuildRequires:  bdftopcf
@@ -45,12 +44,12 @@
 BuildArch:  noarch
 
 %description
-Terminus Font is designed for long (8 and more hours per day) work with
-computers. Version 4.03 contains 538 characters, covering code pages
-ISO8859-1/2/5/9/15/16, Windows-1250/1251/1252/1254,
-IBM-437/852/855/866, KOI8-R/U/E/F, Bulgarian-MIK, Paratype-PT154/PT254
-and Macintosh-Ukrainian, and also the vt100 and xterm pseudographic
-characters.
+Terminus Font is a geometric sans-serif font designed for long (8 and
+more hours per day) work with computers. Version 4.03 contains 538
+characters, covering code pages ISO8859-1/2/5/9/15/16,
+Windows-1250/1251/1252/1254, IBM-437/852/855/866, KOI8-R/U/E/F,
+Bulgarian-MIK, Paratype-PT154/PT254 and Macintosh-Ukrainian, and also
+the vt100 and xterm pseudographic characters.
 
 The sizes and styles present are 8x14-normal, 8x14-bold,
 8x14-EGA/VGA-bold, 8x16-normal, 8x16-bold, 8x16-EGA/VGA-bold,
@@ -59,11 +58,11 @@
 
 %prep
 %setup -q -n %{fontname}-%{version}
-%patch1 
 %define psfdir /usr/share/kbd/consolefonts
 
 %build
 chmod +x ./configure
+# not autoconf
 ./configure --prefix=/usr
 make -e x11dir=%{_miscfontsdir} psfdir=%{psfdir}
 
@@ -73,12 +72,20 @@
 pushd %{buildroot}%{psfdir}
 rename .psf.gz .psfu.gz *.psf.gz
 popd
+#
+# Was once a patch, now a command here. Author and exact reason unknown,
+# but recompression does not look all that bad -j.eng.
+#
+find %buildroot -type f ( -name *.pcf.gz -o -name *.psfu.gz ) \
+   -exec gzip -dv {} +
+find %buildroot -type f ( -name *.pcf.gz -o -name *.psfu.gz ) \
+   -exec gzip -9v {} +
 
 %reconfigure_fonts_scriptlets
 
 %files
 %defattr(-, root,root)
-%doc README*
+%doc README* OFL.TXT
 %{_miscfontsdir}
 %{psfdir}
 %dir %{_datadir}/kbd

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



commit thttpd for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package thttpd for openSUSE:Factory checked 
in at 2013-12-04 12:32:06

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


Package is thttpd

Changes:

--- /work/SRC/openSUSE:Factory/thttpd/thttpd.changes2013-06-28 
19:28:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.thttpd.new/thttpd.changes   2013-12-04 
12:32:08.0 +0100
@@ -1,0 +2,6 @@
+Tue Dec  3 14:31:18 UTC 2013 - vci...@suse.com
+
+- fix CVE-2013-0348 (bnc#853381)
+  * don't create a world readable logfile
+
+---

New:

  thttpd-CVE-2013-0348.patch



Other differences:
--
++ thttpd.spec ++
--- /var/tmp/diff_new_pack.BthcGc/_old  2013-12-04 12:32:08.0 +0100
+++ /var/tmp/diff_new_pack.BthcGc/_new  2013-12-04 12:32:08.0 +0100
@@ -38,6 +38,7 @@
 Patch12:thttpd-2.25b-getline.patch
 # PATCH-FIX-SUSE CVE-2012-5640
 Patch13:thttpd-2.25b-CVE-2012-5640-check_crypt_return_value.patch
+Patch14:thttpd-CVE-2013-0348.patch
 Url:http://www.acme.com/software/thttpd/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:Small and very simple webserver
@@ -78,6 +79,7 @@
 %patch11
 %patch12
 %patch13 -p1
+%patch14 -p1
 
 %build
 cp /usr/share/automake-1.*/config.* . 

++ thttpd-CVE-2013-0348.patch ++
From d2e186dbd58d274a0dea9b59357edc8498b5388d Mon Sep 17 00:00:00 2001
From: Anthony G. Basile bluen...@gentoo.org
Date: Tue, 26 Feb 2013 14:28:26 -0500
Subject: [PATCH] src/thttpd.c: Fix world readable log, CVE-2013-0348.

Make sure that the logfile is created or reopened as read/write
by thttpd user only.

X-gentoo-Bug: 458896
X-gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=458896
Reported-by:  Agostino Sarubbo a...@gentoo.org
Signed-off-by: Anthony G. Basile bas...@opensource.dyc.edu
---
 src/thttpd.c |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

Index: thttpd-2.25b/thttpd.c
===
--- thttpd-2.25b.orig/thttpd.c  2013-12-03 15:38:31.719334530 +0100
+++ thttpd-2.25b/thttpd.c   2013-12-03 15:38:31.754334893 +0100
@@ -331,6 +331,7 @@ static void
 re_open_logfile( void )
 {
 FILE* logfp;
+int retchmod;
 
 if ( no_log || hs == (httpd_server*) 0 )
return;
@@ -340,7 +341,8 @@ re_open_logfile( void )
{
syslog( LOG_NOTICE, re-opening logfile );
logfp = fopen( logfile, a );
-   if ( logfp == (FILE*) 0 )
+   retchmod = chmod( logfile, S_IRUSR|S_IWUSR );
+   if ( logfp == (FILE*) 0 || retchmod != 0 )
{
syslog( LOG_CRIT, re-opening %.80s - %m, logfile );
return;
@@ -360,6 +362,7 @@ main( int argc, char** argv )
 gid_t gid = 32767;
 char cwd[MAXPATHLEN+1];
 FILE* logfp;
+int retchmod;
 int num_ready;
 int cnum;
 connecttab* c;
@@ -429,7 +432,8 @@ main( int argc, char** argv )
else
{
logfp = fopen( logfile, a );
-   if ( logfp == (FILE*) 0 )
+   retchmod = chmod( logfile, S_IRUSR|S_IWUSR );
+   if ( logfp == (FILE*) 0 || retchmod != 0 )
{
syslog( LOG_CRIT, %.80s - %m, logfile );
perror( logfile );
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit patchinfo.2307 for openSUSE:13.1:Update

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.2307 for 
openSUSE:13.1:Update checked in at 2013-12-04 12:47:17

Comparing /work/SRC/openSUSE:13.1:Update/patchinfo.2307 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.patchinfo.2307.new (New)


Package is patchinfo.2307

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++
patchinfo incident=2307
  categoryrecommended/category
  ratinglow/rating
  packagersumski/packager
  summaryNetworkManager-kde4: Update to latest bugfix release 
0.9.0.10/summary
  descriptionThis update fixes the following issues with NetworkManager-kde4:
- Update to 0.9.0.10
  + Bugfix release
  + bnc#845783, kde#299863: Fixed crash when adding WPA2 Enterprise connections
  + Re-add support to NetworkManager 0.9.6.x.
  + Add IPv6 information into connection details.
  + kde#324880: Fix signal quality and access technology updating for 3G 
connections.
  + Small optimization: disable updating traffic plotter if popup is 
closed./description
  issue tracker=bnc id=845783NetworkManager fails to save connection 
details for WAN connection with TLS/issue
  issue tracker=kde id=299863Network connections crashed when added 
wireless profile with wpa enterprise/issue
  issue tracker=kde id=324880Widget doesn't show signal strength for 
mobile broadband/issue
/patchinfo
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit java-1_7_0-openjdk for openSUSE:12.2:Update

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package java-1_7_0-openjdk for 
openSUSE:12.2:Update checked in at 2013-12-04 12:48:42

Comparing /work/SRC/openSUSE:12.2:Update/java-1_7_0-openjdk (Old)
 and  /work/SRC/openSUSE:12.2:Update/.java-1_7_0-openjdk.new (New)


Package is java-1_7_0-openjdk

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Ohp1cS/_old  2013-12-04 12:48:45.0 +0100
+++ /var/tmp/diff_new_pack.Ohp1cS/_new  2013-12-04 12:48:45.0 +0100
@@ -1 +1 @@
-link package='java-1_7_0-openjdk.2126' cicount='copy' /
+link package='java-1_7_0-openjdk.2260' cicount='copy' /

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



commit java-1_7_0-openjdk.2260 for openSUSE:12.2:Update

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package java-1_7_0-openjdk.2260 for 
openSUSE:12.2:Update checked in at 2013-12-04 12:48:39

Comparing /work/SRC/openSUSE:12.2:Update/java-1_7_0-openjdk.2260 (Old)
 and  /work/SRC/openSUSE:12.2:Update/.java-1_7_0-openjdk.2260.new (New)


Package is java-1_7_0-openjdk.2260

Changes:

New Changes file:

--- /dev/null   2013-11-25 01:44:08.036031256 +0100
+++ 
/work/SRC/openSUSE:12.2:Update/.java-1_7_0-openjdk.2260.new/java-1_7_0-openjdk.changes
  2013-12-04 12:48:44.0 +0100
@@ -0,0 +1,930 @@
+---
+Mon Nov 18 14:50:03 UTC 2013 - mvysko...@suse.com
+
+- disable bootstrap build, among others fixes bnc#850880
+- disable download of tarballs
+- remove cacerts file if it has wrong mime-type (bnc#847952)
+
+---
+Tue Oct 29 09:53:04 UTC 2013 - mvysko...@suse.com
+
+- refresh zero-powerpc patches
+  * java-1.7.0-openjdk-ppc-zero-hotspot.patch
+  * java-1.7.0-openjdk-ppc-zero-jdk.patch
+- re-add _constraints
+
+---
+Tue Oct 22 13:29:45 UTC 2013 - mvysko...@suse.com
+
+- Update to icedtea 2.4.3 (bnc#846999)
+  synchronized OpenJDK 7 support with the upstream u45 b31 tag
+* Security fixes
+  - S8006900, CVE-2013-3829: Add new date/time capability
+  - S8008589: Better MBean permission validation
+  - S8011071, CVE-2013-5780: Better crypto provider handling
+  - S8011081, CVE-2013-5772: Improve jhat
+  - S8011157, CVE-2013-5814: Improve CORBA portablility
+  - S8012071, CVE-2013-5790: Better Building of Beans
+  - S8012147: Improve tool support
+  - S8012277: CVE-2013-5849: Improve AWT DataFlavor
+  - S8012425, CVE-2013-5802: Transform TransformerFactory
+  - S8013503, CVE-2013-5851: Improve stream factories
+  - S8013506: Better Pack200 data handling
+  - S8013510, CVE-2013-5809: Augment image writing code
+  - S8013514: Improve stability of cmap class
+  - S8013739, CVE-2013-5817: Better LDAP resource management
+  - S8013744, CVE-2013-5783: Better tabling for AWT
+  - S8014085: Better serialization support in JMX classes
+  - S8014093, CVE-2013-5782: Improve parsing of images
+  - S8014098: Better profile validation
+  - S8014102, CVE-2013-5778: Improve image conversion
+  - S8014341, CVE-2013-5803: Better service from Kerberos servers
+  - S8014349, CVE-2013-5840: (cl) Class.getDeclaredClass problematic in some 
class loader configurations
+  - S8014530, CVE-2013-5825: Better digital signature processing
+  - S8014534: Better profiling support
+  - S8014987, CVE-2013-5842: Augment serialization handling
+  - S8015614: Update build settings
+  - S8015731: Subject java.security.auth.subject to improvements
+  - S8015743, CVE-2013-5774: Address internet addresses
+  - S8016256: Make finalization final
+  - S8016653, CVE-2013-5804: javadoc should ignore ignoreable characters in 
names
+  - S8016675, CVE-2013-5797: Make Javadoc pages more robust
+  - S8017196, CVE-2013-5850: Ensure Proxies are handled appropriately
+  - S8017287, CVE-2013-5829: Better resource disposal
+  - S8017291, CVE-2013-5830: Cast Proxies Aside
+  - S8017298, CVE-2013-4002: Better XML support
+  - S8017300, CVE-2013-5784: Improve Interface Implementation
+  - S8017505, CVE-2013-5820: Better Client Service
+  - S8019292: Better Attribute Value Exceptions
+  - S8019617: Better view of objects
+  - S8020293: JVM crash
+  - S8021275, CVE-2013-5805: Better screening for ScreenMenu
+  - S8021282, CVE-2013-5806: Better recycling of object instances
+  - S8021286: Improve MacOS resourcing
+  - S8021290, CVE-2013-5823: Better signature validation
+  - S8022931, CVE-2013-5800: Enhance Kerberos exceptions
+  - S8022940: Enhance CORBA translations
+  - S8023683: Enhance class file parsing
+* Backports
+  - S6614237: missing codepage Cp290 at java runtime
+  - S8005932: Java 7 on mac os x only provides text clipboard formats
+  - S8014046: (process) Runtime.exec(String) fails if command contains spaces 
[win]
+  - S8015144: Performance regression in ICU OpenType Layout library
+  - S8015965: (process) Typo in name of property to allow ambiguous commands
+  - S8015978: Incorrect transformation of XPath expression string(-0)
+  - S8016357: Update hotspot diagnostic class
+  - S8019584: javax/management/remote/mandatory/loading/MissingClassTest.java 
failed in nightly against jdk7u45: java.io.InvalidObjectException: Invalid 
notification: null
+  - S8019969: nioNetworkChannelInet6/SetOptionGetOptionTestInet6 test case 
crashes
+  - S8020032: 7u fastdebug doesn't generate fastdebuginfo file
+  - S8020085: Linux ARM build failure for 7u45
+  - S8020088: Increment minor version of HSx for 7u45 and initialize the build 
number
+  - S8020551: increment hsx build 

commit java-1_7_0-openjdk for openSUSE:12.3:Update

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package java-1_7_0-openjdk for 
openSUSE:12.3:Update checked in at 2013-12-04 12:48:44

Comparing /work/SRC/openSUSE:12.3:Update/java-1_7_0-openjdk (Old)
 and  /work/SRC/openSUSE:12.3:Update/.java-1_7_0-openjdk.new (New)


Package is java-1_7_0-openjdk

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Gwr5Bu/_old  2013-12-04 12:48:47.0 +0100
+++ /var/tmp/diff_new_pack.Gwr5Bu/_new  2013-12-04 12:48:47.0 +0100
@@ -1 +1 @@
-link package='java-1_7_0-openjdk.2126' cicount='copy' /
+link package='java-1_7_0-openjdk.2260' cicount='copy' /

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



commit ibus.2302 for openSUSE:13.1:Update

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package ibus.2302 for openSUSE:13.1:Update 
checked in at 2013-12-04 12:53:02

Comparing /work/SRC/openSUSE:13.1:Update/ibus.2302 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.ibus.2302.new (New)


Package is ibus.2302

Changes:

New Changes file:

--- /dev/null   2013-11-25 01:44:08.036031256 +0100
+++ /work/SRC/openSUSE:13.1:Update/.ibus.2302.new/ibus.changes  2013-12-04 
12:53:03.0 +0100
@@ -0,0 +1,382 @@
+---
+Mon Nov 25 21:50:12 CST 2013 - hillw...@linuxfans.org
+
+- Better way to fix cursor following problem (on_the_spot bug) 
+  under libreoffice-kde4 (bnc#851982).
+
+---
+Sat Nov 16 06:57:33 UTC 2013 - jeng...@inai.de
+
+- Add missing python-gobject dependency (bnc#850792)
+
+---
+Thu Oct 31 14:46:37 CET 2013 - ti...@suse.de
+
+- Always-save-the-content-type-cache-for-gnome-shell-p.patch:
+  This is an additional fix patch for ibus to avoid the wrong
+  IBus.InputPurpose.PASSWORD advertisement, which leads to the
+  password text appearance on GNOME3 (bnc#847718)
+
+---
+Thu Oct 17 07:13:31 UTC 2013 - i...@marguerite.su
+
+- add a branding-openSUSE-KDE subpackage.
+  * provides kde monochrome icons for 13.1 default KDE theme.
+- port fix for bnc#820218 here
+  * ibus qt tray icon is not in keeping with KDE monochrome icon look.
+
+---
+Mon Oct 14 09:22:41 CST 2013 - hillw...@linuxfans.org
+
+- Obsoletes libibus-1_0-0
+
+---
+Thu Oct 10 17:50:08 UTC 2013 - ft...@geeko.jp
+
+- Update show-input-mode-icon.patch
+  * fix ibus-ui-gtk3 hangs up 
+  * fix icons are cropped on KDE 
+
+---
+Sun Oct  6 13:43:39 UTC 2013 - ft...@geeko.jp
+
+- Update to 1.5.4
+  * Add address command to command line interface
+  * Support content-type of input context
+  * Replace ibus-config with gsettings
+  * Support using a different IM engine state for each window
+  * Support show-icon-on-systray in ibus-ui-gtk3
+  * Fix no output when ibus-daemon is runnin on another display
+  * Update translations and fix build errors
+- Add show-input-mode-icon.patch
+  * workaround for the current input mode is not shown on DEs
+other than GNOME
+- Rename and refresh patches
+  * add-libgnomekbd-and-load-preload-engines.patch
+  * reload-preload-engines-until-users-customize-the-list.patch
+- Fix ibus-lang is not installed
+- Fix warning by touch /etc/dconf/db/ibus for 12.3 and later
+
+---
+Fri Sep 13 13:49:44 UTC 2013 - ft...@geeko.jp
+
+- Fix dconf schema was not updated for automatic configuration
+- Fix 00-upstream-settings was wrongly marked as %config
+- Fix /etc/dconf/db/ibus was not owned by package
+- Add %if %endif for automatic configuration 
+
+---
+Thu Sep 12 17:29:24 UTC 2013 - ft...@geeko.jp
+
+- Add patches to configure ibus automatically according to the
+  current environment at the first login
+  * Add reload-preload-engines-until-users-customize-the-list-95fd937e.patch
+  * Add add-libgnomekbd-and-load-preload-engines-69171c9c.patch
+- Enable the surrounding text feature
+
+---
+Tue Jul 30 17:19:47 UTC 2013 - ft...@geeko.jp
+
+- Update to 1.5.3
+  * Add embed_preedit_text
+  * Disable IM on lock screen
+  * Change defalut triggers key to Superspace
+  * Add man files
+  * Delete ibus.desktop
+  * Add Norwegian keyboard
+  * Update UI, improve performance, fix build problems
+
+---
+Tue Jul  9 22:23:47 CST 2013 - hillw...@linuxfans.org
+
+- Fix cursor following problem in KDE4 for libreoffice
+
+---
+Thu Jul  4 15:41:12 UTC 2013 - ft...@geeko.jp
+
+- Merge branches on M17N:Devel and home:dimstar:branches:GNOME:Factory
+  * Merge changelog and spec written by dims...@opensuse.org
+- Update to 1.5.2 by hillw...@linuxfans.org
+  * Implement use-system-keyboard-layout
+  * Fix crash of ibus-setup
+- Update to 1.5.1 by hillw...@linuxfans.org
+  * Add fr(bepo) XKB engine
+  * Fix crash 
+- Update to 1.5.0 by dougla...@outlook.com 
+  * Renew IM-switch UI, logic, and shortcut customization
+  * Integrate XKB keyboard layouts into IME. Now ibus can manage both
+IME and XKB layouts seamlessly
+  * Improve ibus performance by replace some python 

commit ibus for openSUSE:13.1:Update

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package ibus for openSUSE:13.1:Update 
checked in at 2013-12-04 12:53:07

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


Package is ibus

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.MXNbOh/_old  2013-12-04 12:53:07.0 +0100
+++ /var/tmp/diff_new_pack.MXNbOh/_new  2013-12-04 12:53:07.0 +0100
@@ -1 +1 @@
-link package='ibus.2187' cicount='copy' /
+link package='ibus.2302' cicount='copy' /

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



commit patchinfo.2299 for openSUSE:13.1:Update

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.2299 for 
openSUSE:13.1:Update checked in at 2013-12-04 12:57:53

Comparing /work/SRC/openSUSE:13.1:Update/patchinfo.2299 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.patchinfo.2299.new (New)


Package is patchinfo.2299

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++
patchinfo incident=2299
  categoryrecommended/category
  ratinglow/rating
  packagersumski/packager
  summarykscreen, libkscreen: Update to latest bugfix release/summary
  descriptionThis update provides the current bugfix release of kscreen 
(1.0.2.1 kde#327877) and libkscreen (1.0.2)/description
  issue tracker=kde id=327877/
/patchinfo
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit btrfsprogs.2295 for openSUSE:12.3:Update

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package btrfsprogs.2295 for 
openSUSE:12.3:Update checked in at 2013-12-04 12:58:49

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


Package is btrfsprogs.2295

Changes:

New Changes file:

--- /dev/null   2013-11-25 01:44:08.036031256 +0100
+++ /work/SRC/openSUSE:12.3:Update/.btrfsprogs.2295.new/btrfsprogs.changes  
2013-12-04 12:58:50.0 +0100
@@ -0,0 +1,250 @@
+---
+Tue Nov 26 18:13:57 CET 2013 - dste...@suse.cz
+
+- update to version 3.12 (bnc#813231)
+  - update tarball and remove upstreamed patches
+  - remove stale btrfs-dev-clear-sb utility
+- mkfs:
+  - extrefs (aka. hardlink limitation) feature is set by default
+  - fs options can be specified via -O option
+- fsck, btrfs-image: various improvements and fixes
+- restore:
+  - recover extended attributes
+  - able to sanitize filenames and xattrs
+- fi df: size units are printed in powers of two
+- fi defrag: -r recursively processes directories
+- qgroup show: improved output
+- subvol list: able to show deleted subvolumes
+- new subcommand rescue for last-resort rescue operations
+  - chunk tree recovery
+  - super block recovery
+- btrfs-calc-size prints more stats
+- more manpages, help text updates
+- device detection uses blkid cache
+- code passed through static checkers
+- build libbtrfs
+- other people's changes pulled from factory package
+  - do not package obsolete utilities
+  - set correct file mode if writing replacement fsck
+  - initrd support: add module (bnc#750185, bnc#727383)
+  - Simplify checks in mkinitrd scripts.
+- Added patches:
+  - 0162-btrfs-progs-fix-loop-device-mount-checks.patch
+  - 0163-btrfs-progs-fsck-fix-segfault.patch
+  - 0164-btrfs-progs-convert-set-label-or-copy-from-origin.patch
+  - 0165-Revert-btrfs-progs-update-options-in-find-root.c.patch
+  - 0166-Btrfs-progs-add-some-verbose-output-to-find-root.patch
+  - 0167-Btrfs-progs-make-find_and_setup_root-return-an-error.patch
+  - 0168-Btrfs-progs-don-t-bug-out-if-we-can-t-find-the-last-.patch
+  - 0169-btrfs-progs-Check-metadata-mirrors-in-find-root.patch
+  - 0170-btrfs-progs-In-find-root-dump-bytenr-for-every-slot.patch
+
+---
+Fri Mar  9 16:26:20 UTC 2012 - rschweik...@suse.com
+
+- place binaries in /usr tree (UsrMerge project)
+- adjust mkinitrd scrippt accordingly
+
+---
+Mon Mar  5 13:06:43 CET 2012 - dste...@suse.cz
+
+- add btrfsck repair options for:
+  - rebuild extent records
+  - fix block group accounting
+  - reset csums for rescue nodatasum mount
+  - prune corrupt extent allocation tree blocks
+- device scanning fixes for dm and multipath
+- initrd support: move btrfs device scan after block device setup
+- documentation updates
+- add csize for file commpressed size
+- updated restore utility
+
+---
+Mon Feb 13 10:44:43 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---
+Mon Dec 12 15:44:48 CET 2011 - dkuka...@suse.de
+
+- btrfs-progs-fix-open_ctree_usage_segfaults.patch: fix
+  segfaults from bnc#710486 due to unchecked usage of return
+  value of open_ctree()
+  [fixed compilation warnings]
+
+---
+Mon Dec 12 14:50:07 CET 2011 - dste...@suse.cz
+
+- pull upstream, replace existing patches, spec update
+- update 'restore' utility
+  - lzo support
+  - tools may now take earlies superblock when opening the fs
+  - other fixes
+- pull integration-20111030 branch
+  - mkfs: force mkfs if desired
+  - other fixes
+- add btrfs-dump-super to mkinitrd
+- other fixes
+  - skip non-existent devices or without media
+  - documentation updates
+  - scrubbing single device
+  - graceful error handling when opening fs fails
+
+---
+Fri Dec  9 00:43:08 CET 2011 - dste...@suse.cz
+
+- updated mkinitrd script to scan devices before mount (bnc#727383)
+
+---
+
+Wed Nov  9 14:34:56 CET 2011 - dste...@suse.cz
+
+- add several tools to mkinitrd if root fs is btrfs
+- pull upstream branch and delete local patches
+
+---
+Tue Oct  4 02:08:54 CEST 2011 - dste...@suse.cz
+
+- btrfsck: ignore -a (bnc#655906)
+- btrfsck: fix strerror value
+
+---
+Sat Sep 17 20:58:20 UTC 2011 - jeng...@medozas.de
+
+- Remove 

commit perl-Nagios-Plugin for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package perl-Nagios-Plugin for 
openSUSE:Factory checked in at 2013-12-04 13:12:21

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


Package is perl-Nagios-Plugin

Changes:

--- /work/SRC/openSUSE:Factory/perl-Nagios-Plugin/perl-Nagios-Plugin.changes
2013-01-21 17:43:59.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Nagios-Plugin.new/perl-Nagios-Plugin.changes   
2013-12-04 13:12:22.0 +0100
@@ -1,0 +2,5 @@
+Tue Mar 26 09:40:55 UTC 2013 - co...@suse.com
+
+- fix license
+
+---



Other differences:
--
++ perl-Nagios-Plugin.spec ++
--- /var/tmp/diff_new_pack.UZ5LSg/_old  2013-12-04 13:12:22.0 +0100
+++ /var/tmp/diff_new_pack.UZ5LSg/_new  2013-12-04 13:12:22.0 +0100
@@ -22,7 +22,7 @@
 Version:0.36
 Release:0
 Summary:A family of perl modules to streamline writing Nagios plugins
-License:Artistic-1.0 and GPL-2.0+
+License:Artistic-1.0 or GPL-2.0+
 Group:  Development/Languages/Perl
 Url:http://www.perl.org/
 Source: %cpan_name-%{version}.tar.gz

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



commit Test-DVD-x86_64 for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package Test-DVD-x86_64 for openSUSE:Factory 
checked in at 2013-12-04 18:16:24

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


Package is Test-DVD-x86_64

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ PRODUCT-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.C1kEeU/_old  2013-12-04 18:16:26.0 +0100
+++ /var/tmp/diff_new_pack.C1kEeU/_new  2013-12-04 18:16:26.0 +0100
@@ -75,7 +75,6 @@
   repopackage name=adjtimex/
   repopackage name=attr/
   repopackage name=augeas-lenses/
-  repopackage name=autoyast2-installation/
   repopackage name=bash/
   repopackage name=bash-lang/
   repopackage name=bind-libs/
@@ -174,11 +173,9 @@
   repopackage name=hwinfo/
   repopackage name=iceauth/
   repopackage name=info/
-  repopackage name=initviocons/
   repopackage name=insserv-compat/
   repopackage name=intlfonts-euro-bitmap-fonts/
   repopackage name=iproute2/
-  repopackage name=iptables/
   repopackage name=iputils/
   repopackage name=kbd/
   repopackage name=kernel-desktop/
@@ -219,7 +216,6 @@
   repopackage name=libXxf86vm1/
   repopackage name=libacl1/
   repopackage name=libadns1/
-  repopackage name=libaio1/
   repopackage name=libasm1/
   repopackage name=libasound2/
   repopackage name=libassuan0/
@@ -278,7 +274,6 @@
   repopackage name=libharfbuzz0/
   repopackage name=libhogweed2/
   repopackage name=libidn11/
-  repopackage name=libiptc0/
   repopackage name=libisl10/
   repopackage name=libiw30/
   repopackage name=libjbig2/
@@ -288,14 +283,12 @@
   repopackage name=libksba8/
   repopackage name=liblcms1/
   repopackage name=libldap-2_4-2/
-  repopackage name=libldapcpp1/
   repopackage name=libldb1/
   repopackage name=liblua5_1/
   repopackage name=liblzma5/
   repopackage name=liblzo2-2/
   repopackage name=libmagic1/
   repopackage name=libmng1/
-  repopackage name=libmnl0/
   repopackage name=libmodman1/
   repopackage name=libmount1/
   repopackage name=libmozjs-17_0/
@@ -309,9 +302,7 @@
   repopackage name=libndr-standard0/
   repopackage name=libndr0/
   repopackage name=libnetapi0/
-  repopackage name=libnetfilter_conntrack3/
   repopackage name=libnettle4/
-  repopackage name=libnfnetlink0/
   repopackage name=libnl-config/
   repopackage name=libnl3-200/
   repopackage name=libntfs-3g84/
@@ -344,7 +335,6 @@
   repopackage name=libqt4-sql/
   repopackage name=libqt4-x11/
   repopackage name=libreadline6/
-  repopackage name=libregistry0/
   repopackage name=libreiserfs-0_3-0/
   repopackage name=libsamba-credentials0/
   repopackage name=libsamba-hostconfig0/
@@ -356,7 +346,6 @@
   repopackage name=libsepol1/
   repopackage name=libsgutils2-2/
   repopackage name=libsmbclient-raw0/
-  repopackage name=libsmbclient0/
   repopackage name=libsmbconf0/
   repopackage name=libsmbldap0/
   repopackage name=libsmputils1-1/
@@ -365,8 +354,6 @@
   repopackage name=libsqlite3-0/
   repopackage name=libssh2-1/
   repopackage name=libstdc++6/
-  repopackage name=libstorage-ruby/
-  repopackage name=libstorage4/
   repopackage name=libtalloc2/
   repopackage name=libtasn1/
   repopackage name=libtasn1-6/
@@ -400,7 +387,6 @@
   repopackage name=libxml2-2/
   repopackage name=libxtables10/
   repopackage name=libyaml-0-2/
-  repopackage name=libyui-ncurses-pkg5/
   repopackage name=libyui-ncurses5/
   repopackage name=libyui-qt-pkg5/
   repopackage name=libyui-qt5/
@@ -422,7 +408,6 @@
   repopackage name=module-init-tools/
   repopackage name=mozilla-nspr/
   repopackage name=mtools/
-  repopackage name=multipath-tools/
   repopackage name=ncurses-utils/
   repopackage name=net-tools/
   repopackage name=netcat-openbsd/
@@ -459,13 +444,8 @@
   repopackage name=pciutils-ids/
   repopackage name=perl/
   repopackage name=perl-Bootloader/
-  repopackage name=perl-Bootloader-YAML/
   repopackage name=perl-Config-Crontab/
-  repopackage name=perl-Crypt-SmbHash/
   repopackage name=perl-Data-Dump/
-  repopackage name=perl-Digest-HMAC/
-  repopackage name=perl-Digest-MD4/
-  repopackage name=perl-Digest-SHA1/
   repopackage name=perl-Encode-Locale/
   repopackage name=perl-File-Listing/
   repopackage name=perl-HTML-Parser/
@@ -483,16 +463,12 @@
   repopackage name=perl-Net-DBus/
   

commit ack for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package ack for openSUSE:Factory checked in 
at 2013-12-04 19:48:52

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


Package is ack

Changes:

--- /work/SRC/openSUSE:Factory/ack/ack.changes  2013-08-15 20:01:58.0 
+0200
+++ /work/SRC/openSUSE:Factory/.ack.new/ack.changes 2013-12-04 
19:48:53.0 +0100
@@ -1,0 +2,50 @@
+Tue Oct 29 20:46:34 UTC 2013 - andreas.stie...@gmx.de
+
+- fix SLE build: File::Next does not have the required version. It
+  is only used in regression tests - skip them for SLE
+
+---
+Thu Oct 17 21:03:44 UTC 2013 - andreas.stie...@gmx.de
+
+- update to 2.10:
+  * Add --perltest for *.t files
+  * Added Matlab support
+  * More compatibility fixes for Perl 5.8.8.
+- includes changes from 2.08
+  * ack now ignores CMake's build/cache directories by default
+  * Add shebang matching for --lua files
+  * Add documentation for --ackrc
+  * Add Elixir filetype
+  * Add --cathy option
+  * Add some helpful debugging tips when an invalid option is found
+  * Ignore PDF files by default, because Perl will detect them as text
+  * Ignore .gif, .jpg, .jpeg and .png files.  They won't normally be
+selected, but this is an optimization so that ack doesn't have to
+open them to know
+  * Ack's colorizing of output would get confused with multiple sets
+of parentheses
+  * Ack would get confused when trying to colorize the output in
+DOS-format files
+- includes changes from 2.05_01
+  * We now ignore the node_modules directories created by npm
+  * --pager without an argument implies --pager=$PAGER
+  * --perl now recognizes Plack-style .psgi files
+  * Added filetypes for Coffescript, JSON, LESS, and Sass.
+  * Command-line options now override options set in ackrc files
+  * ACK_PAGER and ACK_PAGER_COLOR now work as advertised.
+  * Fix a bug resulting in uninitialized variable warnings when more
+than one capture group was specified in the search pattern
+  * Make sure ack is happy to build and test under cron and other
+console-less environments.
+- packaging changes:
+  * run more rests with IO::Pty
+  * refresh ack-ignore-osc.patch for upstream changes
+  * update project URL
+- port changes from devel:languages:perl ack by da...@cpan.org:
+  * correct metadata: licence, CPAN download, homepage
+  * unset forced prefix - let Perl configuration and toolchain
+determine the prefix/install_base which will DTRT
+  * bash completion is gone, remove dead code
+
+---
+

Old:

  ack-2.04.tar.gz

New:

  ack-2.10.tar.gz



Other differences:
--
++ ack.spec ++
--- /var/tmp/diff_new_pack.oexCn8/_old  2013-12-04 19:48:54.0 +0100
+++ /var/tmp/diff_new_pack.oexCn8/_new  2013-12-04 19:48:54.0 +0100
@@ -15,6 +15,8 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
+
 %{!?perl_make_install:  %global perl_make_install make DESTDIR=$RPM_BUILD_ROOT 
install_vendor}
 
 %if 0%{?suse_version} = 1100 || 0%{?fedora} = 13
@@ -23,24 +25,30 @@
 %define with_pod 0
 %endif
 
+%definerun_tests 0%{?suse_version} = 1210
+
 Name:   ack
-Version:2.04
+Version:2.10
 Release:0
 Summary:Grep-Like Text Finder
-License:Artistic-1.0 or GPL-1.0+
+License:Artistic-2.0
 Group:  Productivity/Text/Utilities
-Source: 
http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/ack-%{version}.tar.gz
+Source: 
http://cpan.metacpan.org/authors/id/P/PE/PETDANCE/ack-%{version}.tar.gz
 Patch1: ack-ignore-osc.patch
 Patch2: ack-fix_smartcase_test_for_old_perl.patch
 Patch3: ack-add_spec.patch
-Url:http://petdance.com/ack/
+Url:http://beyondgrep.com/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   perl
 BuildRequires:  make
-BuildRequires:  perl
-BuildRequires:  perl-File-Next
+BuildRequires:  perl = 5.8.8
+BuildRequires:  perl(File::Next) = 1.10
+%if %run_tests
+BuildRequires:  perl(File::Temp) = 0.19
+BuildRequires:  perl(IO::Pty)
+%endif
 %if %with_pod
-BuildRequires:  perl(Test::Pod)
+BuildRequires:  perl(Test::Pod) = 1.14
 %endif
 BuildArch:  noarch
 Requires:   perl-App-Ack = %{version}-%{release}
@@ -52,8 +60,8 @@
 %package -n perl-App-Ack
 Summary:Grep-Like Text Finder Perl Module
 Group:  Development/Libraries/Perl
-Requires:   perl-File-Next
 Requires:   perl-base = %{perl_version}
+Requires:   perl(File::Next) = 1.10
 
 %description -n perl-App-Ack
 App::Ack is a grep-like tool 

commit python-seacucumber for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package python-seacucumber for 
openSUSE:Factory checked in at 2013-12-04 19:49:19

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


Package is python-seacucumber

Changes:

--- /work/SRC/openSUSE:Factory/python-seacucumber/python-seacucumber.changes
2013-10-25 11:31:17.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-seacucumber.new/python-seacucumber.changes   
2013-12-04 19:49:21.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 19 20:04:51 UTC 2013 - p.drou...@gmail.com
+
+- Update to version 1.5.1
+  + No changelog available
+
+---

Old:

  seacucumber-1.5.tar.gz

New:

  seacucumber-1.5.1.tar.gz



Other differences:
--
++ python-seacucumber.spec ++
--- /var/tmp/diff_new_pack.lPXc66/_old  2013-12-04 19:49:21.0 +0100
+++ /var/tmp/diff_new_pack.lPXc66/_new  2013-12-04 19:49:21.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-seacucumber
-Version:1.5
+Version:1.5.1
 Release:0
 Url:https://github.com/duointeractive/sea-cucumber/
 Summary:A Django email backend for Amazon Simple Email Service, backed 
by celery

++ seacucumber-1.5.tar.gz - seacucumber-1.5.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seacucumber-1.5/PKG-INFO 
new/seacucumber-1.5.1/PKG-INFO
--- old/seacucumber-1.5/PKG-INFO2012-07-16 17:04:09.0 +0200
+++ new/seacucumber-1.5.1/PKG-INFO  2013-08-30 20:05:38.0 +0200
@@ -1,14 +1,14 @@
 Metadata-Version: 1.1
 Name: seacucumber
-Version: 1.5
+Version: 1.5.1
 Summary: A Django email backend for Amazon Simple Email Service, backed by 
celery.
 Home-page: https://github.com/duointeractive/sea-cucumber/
 Author: Gregory Taylor
 Author-email: gtay...@duointeractive.com
 License: MIT
-Description: 
-Sea Cucumber 1.5
-
+Description: ==
+Sea Cucumber 1.5.1
+==
 :Info: A Django email backend for Amazon Simple Email Service, backed 
by django-celery_
 :Author: DUO Interactive, LLC
 :Inspired by: Harry Marr's django-ses_.
@@ -120,6 +120,43 @@
 sent some emails. You'll need to manually bump up your rate settings in
 ``settings.py``.
 
+DKIM
+
+
+Using DomainKeys_ is entirely optional, however it is recommended by 
Amazon for
+authenticating your email address and improving delivery success rate. 
 See
+http://docs.amazonwebservices.com/ses/latest/DeveloperGuide/DKIM.html.
+Besides authentication, you might also want to consider using DKIM in 
order to
+remove the `via email-bounces.amazonses.com` message shown to gmail 
users - 
+see http://support.google.com/mail/bin/answer.py?hl=enanswer=1311182.
+
+To enable DKIM signing you should install the pydkim_ package and 
specify values
+for the ``DKIM_PRIVATE_KEY`` and ``DKIM_DOMAIN`` settings.  You can 
generate a
+private key with a command such as ``openssl genrsa 1024`` and get the 
public key
+portion with ``openssl rsa -pubout private.key``.  The public key 
should be
+published to ``ses._domainkey.example.com`` if your domain is 
example.com.  You 
+can use a different name instead of ``ses`` by changing the 
``DKIM_SELECTOR``
+setting.
+
+The SES relay will modify email headers such as `Date` and 
`Message-Id` so by
+default only the `From`, `To`, `Cc`, `Subject` headers are signed, not 
the full
+set of headers.  This is sufficient for most DKIM validators but can 
be overridden
+with the ``DKIM_HEADERS`` setting.
+
+
+Example settings.py::
+
+   DKIM_DOMAIN = 'example.com'
+   DKIM_PRIVATE_KEY = '''
+   -BEGIN RSA PRIVATE KEY-
+   xxx
+   -END RSA PRIVATE KEY-
+   '''
+
+Example DNS record published to Route53 with boto:
+
+   route53 add_record ZONEID ses._domainkey.example.com. TXT 
'v=DKIM1; p=xxx' 86400
+
 Django Builtin-in Error Emails
 ==
 
@@ -149,6 +186,9 @@
 .. _Boto: http://boto.cloudhackers.com/
 .. _SES: http://aws.amazon.com/ses/
 .. _issue tracker: 
https://github.com/duointeractive/django-athumb/issues
+.. _DomainKeys: http://dkim.org/
+.. _pydkim: http://hewgill.com/pydkim/
+  

commit python-django-auth-ldap for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2013-12-04 19:49:14

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


Package is python-django-auth-ldap

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2013-06-07 07:07:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new/python-django-auth-ldap.changes
 2013-12-04 19:49:15.0 +0100
@@ -1,0 +2,5 @@
+Thu Nov 21 07:49:23 UTC 2013 - mci...@suse.cz
+
+- add missing dependency on python-ldap
+
+---



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.WweUD8/_old  2013-12-04 19:49:15.0 +0100
+++ /var/tmp/diff_new_pack.WweUD8/_new  2013-12-04 19:49:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-auth-ldap
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -11,10 +11,11 @@
 # 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/
 #
 
+
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib(1))}
 
@@ -29,6 +30,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 Requires:   python-django
+Requires:   python-ldap
 %if 0%{?suse_version}
 %py_requires
 %if 0%{?suse_version}  1110
@@ -36,7 +38,6 @@
 %endif
 %endif
 
-
 %description
 This is a Django authentication backend that authenticates against an LDAP 
service.
 Configuration can be as simple as a single distinguished name template, but 
there

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



commit courier-imap for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package courier-imap for openSUSE:Factory 
checked in at 2013-12-04 19:49:05

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


Package is courier-imap

Changes:

--- /work/SRC/openSUSE:Factory/courier-imap/courier-imap.changes
2013-01-17 15:09:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.courier-imap.new/courier-imap.changes   
2013-12-04 19:49:07.0 +0100
@@ -1,0 +2,16 @@
+Mon Nov 11 21:11:56 UTC 2013 - ch...@computersalat.de
+
+- update to 4.14.0
+  * Autotool chain update.
+  * imapd.c (mddelete): Reject DELETE folder if the maildir is a symlink.
+  * imapd.c (doId): Implement the IMAP ID EXTENSION.
+- 4.13.0
+  * imap: add explicit mkdirs on PIDFILE directories to startup scripts.
+  * rfc822: workaround for invalid utf-8 input making libidn go off the
+rails.
+- fix License
+  * GPL-3.0 - GPL-3.0+
+- rebase patches
+  * imap-sbindir, imap-ulimit_conf
+
+---

Old:

  courier-imap-4.12.0.tar.bz2
  courier-imap-4.12.0.tar.bz2.sig

New:

  courier-imap-4.14.tar.bz2
  courier-imap-4.14.tar.bz2.sig



Other differences:
--
++ courier-imap.spec ++
--- /var/tmp/diff_new_pack.yuy9aH/_old  2013-12-04 19:49:08.0 +0100
+++ /var/tmp/diff_new_pack.yuy9aH/_new  2013-12-04 19:49:08.0 +0100
@@ -18,9 +18,9 @@
 
 Name:   courier-imap
 Summary:An IMAP and POP3 Server for Maildir MTAs
-License:GPL-3.0
+License:GPL-3.0+
 Group:  Productivity/Networking/Email/Servers
-Version:4.12.0
+Version:4.14
 Release:0
 Url:http://www.courier-mta.org/imap/
 Source0:%{name}-%{version}.tar.bz2
@@ -138,11 +138,11 @@
 %{__sed} -i -e 's/^POP3DSSLSTART=.*/POP3DSSLSTART=YES/' 
$RPM_BUILD_ROOT%{_sysconfdir}/courier/pop3d-ssl.dist
 %{__sed} -i -e 's/^#\ \+\(TLS_CIPHER_LIST=.*\)/\1/' 
$RPM_BUILD_ROOT%{_sysconfdir}/courier/pop3d-ssl.dist
 # For %doc macro
-%{__install} -m 0644 imap/ChangeLog ChangeLog
-%{__install} -m 0644 imap/README README.imap
-%{__install} -m 0644 imap/README.proxy README.proxy
-%{__install} -m 0644 maildir/README.maildirquota.txt README.maildirquota
-%{__install} -m 0644 maildir/README.sharedfolders.txt README.sharedfolders
+%{__install} -m 0644 libs/imap/ChangeLog ChangeLog
+%{__install} -m 0644 libs/imap/README README.imap
+%{__install} -m 0644 libs/imap/README.proxy README.proxy
+%{__install} -m 0644 libs/maildir/README.maildirquota.txt README.maildirquota
+%{__install} -m 0644 libs/maildir/README.sharedfolders.txt README.sharedfolders
 %{__install} -D -m 0755 sysconftool 
$RPM_BUILD_ROOT%{_datadir}/%{name}/sysconftool
 %{__chmod} 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/sysconftool
 %{__cat} $RPM_BUILD_ROOT%{_datadir}/%{name}/configlist EOF
@@ -185,7 +185,7 @@
 
 %files
 %defattr(-,root,root,755)
-%doc AUTHORS imap/ChangeLog COPYING* imap/BUGS README README.imap 
README.maildirquota README.proxy
+%doc AUTHORS libs/imap/ChangeLog COPYING* libs/imap/BUGS README README.imap 
README.maildirquota README.proxy
 %doc README.sharedfolders
 %attr(755,root,root) /etc/init.d/courier-*
 %config %attr(644,root,root) /etc/pam.d/imap

++ courier-imap-4.12.0.tar.bz2 - courier-imap-4.14.tar.bz2 ++
 1195969 lines of diff (skipped)

++ courier-imap-sbindir.patch ++
--- /var/tmp/diff_new_pack.yuy9aH/_old  2013-12-04 19:49:10.0 +0100
+++ /var/tmp/diff_new_pack.yuy9aH/_new  2013-12-04 19:49:10.0 +0100
@@ -1,8 +1,8 @@
-Index: imap/imapd.8.in
+Index: libs/imap/imapd.8.in
 ===
 imap/imapd.8.in.orig
-+++ imap/imapd.8.in
-@@ -24,9 +24,9 @@
+--- libs/imap/imapd.8.in.orig
 libs/imap/imapd.8.in
+@@ -33,9 +33,9 @@
  imapd \- The Courier IMAP server
  .SH SYNOPSIS
  .HP \w'\fB@libexecdir@/couriertcpd\fR\ 'u
@@ -14,11 +14,11 @@
 +\fB@sbindir@/imapd\fR {\./Maildir}
  .SH DESCRIPTION
  .PP
- 
-Index: imap/imapd-ssl.dist.in
+ \fBimapd\fR
+Index: libs/imap/imapd-ssl.dist.in
 ===
 imap/imapd-ssl.dist.in.orig
-+++ imap/imapd-ssl.dist.in
+--- libs/imap/imapd-ssl.dist.in.orig
 libs/imap/imapd-ssl.dist.in
 @@ -102,7 +102,7 @@ IMAP_TLS_REQUIRED=0
  ##NAME: COURIERTLS:0
  #
@@ -28,10 +28,10 @@
  
  ##NAME: TLS_PRIORITY:0
  #
-Index: imap/pop3d-ssl.dist.in
+Index: libs/imap/pop3d-ssl.dist.in
 ===
 imap/pop3d-ssl.dist.in.orig
-+++ imap/pop3d-ssl.dist.in
+--- libs/imap/pop3d-ssl.dist.in.orig
 libs/imap/pop3d-ssl.dist.in
 @@ -87,7 +87,7 @@ POP3_TLS_REQUIRED=0
  # 

commit ibus-pinyin.2277 for openSUSE:13.1:Update

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package ibus-pinyin.2277 for 
openSUSE:13.1:Update checked in at 2013-12-04 20:59:06

Comparing /work/SRC/openSUSE:13.1:Update/ibus-pinyin.2277 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.ibus-pinyin.2277.new (New)


Package is ibus-pinyin.2277

Changes:

New Changes file:

--- /dev/null   2013-11-25 01:44:08.036031256 +0100
+++ /work/SRC/openSUSE:13.1:Update/.ibus-pinyin.2277.new/ibus-pinyin.changes
2013-12-04 20:59:07.0 +0100
@@ -0,0 +1,117 @@
+---
+Thu Nov 21 08:32:02 CET 2013 - ti...@suse.de
+
+- ibus-pinyin-support-set-content-type-method.patch:
+  Fix visible password entry in GNOME lock screen (CVE-2013-4509,
+  bnc#847718); taken from Fedora package
+
+---
+Wed Oct 30 00:00:37 CST 2013 - hillw...@linuxfans.org
+
+- add python-xdg as Requires
+
+---
+Fri Jul 12 12:06:14 CST 2013 - hillw...@linuxfans.org
+
+- enable lua support
+
+---
+Thu Dec 20 23:35:11 CST 2012 - hillw...@linuxfans.org
+
+- update to 1.5.0
+  * Add setup tag.
+  * Quote $@ in autogen.sh
+  * Fixes pinyin.xml
+Change the keyboard layout from us to default
+Update the symbols same as the icons
+
+---
+Thu Sep  6 00:02:17 CST 2012 - hillw...@linuxfans.org
+
+- update to 1.4.99.20120808
+  Integrates pyzy 
+  Fix make dist  rpm errors.
+
+---
+Tue Jul 24 21:20:21 CST 2012 - hillw...@linuxfans.org
+
+- add a .desktop file for ibus-setup-pinyin from upstream
+
+---
+Wed Jul  4 21:31:27 CST 2012 - hillw...@linuxfans.org
+
+- add a requires package, opencc is needed by ibus-pinyin
+
+---
+Mon Jul  1 09:44:31 CST 2012 - hillw...@linuxfans.org
+
+- add a .desktop file
+
+---
+Fri Jun  1 23:09:14 CST 2012 - hillw...@linuxfans.org
+
+- enable opencc support
+- fix build in Factory
+
+---
+Tue Mar 20 22:24:17 CST 2012 - hillw...@linuxfans.org
+
+- Update to 1.4.0
+- Fix FSF-address warnings in RPMLINT report
+
+---
+Wed Oct 12 12:38:49 CEST 2011 - ti...@suse.de
+
+- Fix build with ibus-1.4 (bnc#723591)
+
+---
+Fri Jul 22 16:59:16 CEST 2011 - ti...@suse.de
+
+- Add locale-specific provides tag (bnc#707712)
+
+---
+Tue Jun 14 04:33:57 UTC 2011 - swy...@gmail.com
+
+- Update to 1.3.11;
+  including fixes for new ibus
+
+---
+Mon Jul 12 08:54:56 UTC 2010 - m...@novell.com
+
+- Upgrade to 1.3.8:
+  * Fix config problem
+  * Fix punct editor problem 
+  * Add Ctrl + Shift + F to switch between Simplified Chinese and Traditional 
Chinese.
+  * Reset Pinyin properties when enable input method.
+  * Add ZhuYin (Bopomofo) input method setup UI
+  * Add Several ZhuYin keyboard mappings (Standard GinYieh Eten IBM). 
+  * Add Chinese ZhuYin input method, contributed by BYVoid more information
+  * Add punct input mode. Press '`' could switch punct input mode.
+  * Fix crash in pinyin parser.
+
+---
+Wed May 12 09:12:22 UTC 2010 - m...@novell.com
+
+- Upgrade to 1.3.5 -
+* Fix double pinyin parse problem
+* Remove dependence library sigc++
+* Fix half full punct problem
+* Clear preedit text, when user presses Shift to switch En/Ch mode
+* Support auto correct: v=u, ve=ue, van=uan, vn=un, ven=un, vang=uang
+* Refine pinyin parser to split pinyin more accuracy.
+* Fix build problems in BSD
+* Support user custom phrases phrases.txt
+* Do not prefetch data to save several seconds during start
+* Optimize database query method for better performance
+* Several bug fixing
+
+---
+Wed Mar 24 14:21:10 CET 2010 - ti...@suse.de
+
+- fix file list
+
+---
+Thu Jan 28 07:39:45 UTC 2010 - m...@novell.com
+
+- Initial import 
+

New:

  ibus-pinyin-1.5.0.tar.gz
  ibus-pinyin-support-set-content-type-method.patch
  ibus-pinyin.changes
  ibus-pinyin.spec




commit ant for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package ant for openSUSE:Factory checked in 
at 2013-12-05 06:45:43

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


Package is ant

Changes:

--- /work/SRC/openSUSE:Factory/ant/ant-antlr.changes2013-10-02 
14:47:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.ant.new/ant-antlr.changes   2013-12-05 
06:45:45.0 +0100
@@ -1,0 +2,5 @@
+Wed Dec  4 14:58:13 UTC 2013 - mvysko...@suse.com
+
+- use requires_eq instead of manual call of rpm -q 
+
+---
ant.changes: same change



Other differences:
--
++ ant-antlr.spec ++
--- /var/tmp/diff_new_pack.2MpSRP/_old  2013-12-05 06:45:46.0 +0100
+++ /var/tmp/diff_new_pack.2MpSRP/_new  2013-12-05 06:45:46.0 +0100
@@ -92,7 +92,7 @@
 %else
 # ant-antlr requires
 Requires:   antlr
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 Provides:   ant-antlr = %{version}-%{release}
 %endif
 BuildArch:  noarch
@@ -192,7 +192,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   bsf
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  bsf
 Provides:   ant-apache-bsf = %{version}-%{release}
 
@@ -208,7 +208,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   xml-commons-resolver
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  xml-commons-resolver
 Provides:   ant-apache-resolver = %{version}-%{release}
 
@@ -224,7 +224,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   jakarta-commons-logging
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  jakarta-commons-logging
 Provides:   ant-commons-logging = %{version}-%{release}
 
@@ -240,7 +240,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   jakarta-commons-net
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  jakarta-commons-net
 Provides:   ant-commons-net = %{version}-%{release}
 
@@ -260,7 +260,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   jai
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  jai
 Provides:   ant-jai = %{version}-%{release}
 
@@ -273,7 +273,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   bcel
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  bcel
 Provides:   ant-apache-bcel = %{version}
 Provides:   ant-jakarta-bcel = %{version}
@@ -291,7 +291,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   log4j
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  log4j-mini
 Provides:   ant-apache-log4j = %{version}
 Provides:   ant-jakarta-log4j = %{version}
@@ -309,7 +309,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   oro
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  oro
 Provides:   ant-apache-oro = %{version}
 Provides:   ant-jakarta-oro = %{version}
@@ -327,7 +327,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   regexp
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  regexp
 Provides:   ant-apache-regexp = %{version}
 Provides:   ant-jakarta-regexp = %{version}
@@ -344,7 +344,7 @@
 Group:  Development/Tools/Building
 BuildRequires:  regexp
 Requires:   regexp
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 Provides:   ant-apache-xalan2 = %{version}
 
 %description -n ant-apache-xalan2
@@ -357,7 +357,7 @@
 Group:  Development/Tools/Building
 BuildRequires:  javamail = 1.2-5jpp
 Requires:   javamail = 1.2-5jpp
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 Provides:   ant-javamail = %{version}
 
 %description -n ant-javamail
@@ -372,7 +372,7 @@
 License:Apache-2.0
 Group:  Development/Tools/Building
 Requires:   jdepend
-Requires:   ant = %(echo `rpm -q --queryformat '%{VERSION}' ant`)
+%requires_eq ant
 BuildRequires:  jdepend
 Provides:   ant-jdepend = 

commit audit for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package audit for openSUSE:Factory checked 
in at 2013-12-05 06:48:07

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


Package is audit

Changes:

--- /work/SRC/openSUSE:Factory/audit/audit-secondary.changes2013-10-11 
11:03:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.audit.new/audit-secondary.changes   
2013-12-05 06:48:08.0 +0100
@@ -1,0 +2,13 @@
+Tue Nov 26 18:28:58 UTC 2013 - to...@suse.com
+
+- Update to version 2.3.2. See audit.spec (libaudit1) for upstream 
+  changelog
+- Drop patch 'audit-fix-implicit-defn.patch' (upstream)
+- Add patch 'audit-allow-manual-stop.patch' to reinstate service 
+  stop/restart.
+- /etc/sysconfig/audit still existed but was no longer referenced
+  by systemd, so remove
+- Delete audit-no_plugins.patch, it was stale (no longer referenced
+  by specfiles) but had not been removed.
+
+---
--- /work/SRC/openSUSE:Factory/audit/audit.changes  2013-06-29 
19:36:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.audit.new/audit.changes 2013-12-05 
06:48:08.0 +0100
@@ -1,0 +2,53 @@
+Tue Nov 26 18:26:57 UTC 2013 - to...@suse.com
+
+- Update to version 2.3.2
+
+ Changelog 2.3.2
+ - Put RefuseManualStop in the right systemd section (#969345)
+ - Add legacy restart scripts for systemd support
+ - Add more syscall argument interpretations
+ - Add 'unset' keyword for uid  gid values in auditctl
+ - In ausearch, parse obj in IPC records
+ - In ausearch, parse subj in DAEMON_ROTATE records
+ - Fix interpretation of MQ_OPEN and MQ_NOTIFY events
+ - In auditd, restart dispatcher on SIGHUP if it had previously exited
+ - In audispd, exit when no active plugins are detected on reconfigure
+ - In audispd, clear signal mask set by libev so that SIGHUP works again
+ - In audispd, track binary plugins and restart if binary was updated
+ - In audispd, make sure we send signals to the correct process
+ - In auditd, clear signal mask when spawning any child process
+ - In audispd, make builtin plugins respond to SIGHUP
+ - In auparse, interpret mode flags of open syscall if O_CREAT is passed
+ - In audisp-remote, don't make address lookup always a permanent failure
+ - In audisp-remote, remove EOE events more efficiently
+ - In auditd, log the reason when email account is not valid
+ - In audisp-remote, change default remote_ending action to reconnect
+ - Add support for Aarch64 processors
+ 
+ Changelog 2.3.1
+ - Rearrange auditd setting enabled and pid to avoid a race (#910568)
+ - Interpret the ocomm field from OBJ_PID records 
+ - Fix missing 'then' statement in sysvinit script
+ - Switch ausearch to use libauparse for interpretting fields
+ - In libauparse, interpret prctl arg0, sched_setscheduler arg1
+ - In auparse, check source_list isn't NULL when opening next file (Liequan 
Che)
+ - In libauparse, interpret send* flags argument
+ - In libauparse, interpret level and name options for set/getsockopt
+ - In ausearch/report, don't flush events until last file (Burn Alting)
+ - Don't use systemctl to stop the audit daemon
+ 
+ Changelog 2.3
+ - The clone(2) man page is really clone(3), fix interpretation of clone 
syscall
+ - Add systemd support for reload (#901533)
+ - Allow -F msgtype on the user filter
+ - Add legacy support for resuming logging under systemd (#830780)
+ - Add legacy support for rotating logs under systemd (#916611)
+ - In auditd, collect SIGUSR2 info for DAEMON_RESUME events
+ - Updated man pages
+ - Update libev to 4.15
+ - Update syscall tables for 3.9 kernel
+ - Interpret MQ_OPEN events
+ - Add augenrules support (Burn Alting)
+ - Consume less stack sending audit events
+
+---

Old:

  audit-2.2.3.tar.gz
  audit-fix-implicit-defn.patch
  audit-no_plugins.patch
  auditd.sysconfig

New:

  audit-2.3.2.tar.gz
  audit-allow-manual-stop.patch



Other differences:
--
++ audit-secondary.spec ++
--- /var/tmp/diff_new_pack.vNf069/_old  2013-12-05 06:48:09.0 +0100
+++ /var/tmp/diff_new_pack.vNf069/_new  2013-12-05 06:48:09.0 +0100
@@ -30,17 +30,15 @@
 Summary:Secondary packages for audit
 License:GPL-2.0+
 Group:  System/Monitoring
-Version:2.2.3
+Version:2.3.2
 Release:0
 Url:http://people.redhat.com/sgrubb/audit/
 Source0:
http://people.redhat.com/sgrubb/audit/%{_name}-%{version}.tar.gz
-Source2:auditd.sysconfig
 Patch1: audit-plugins-path.patch
 Patch2: audit-no-gss.patch
 Patch3: audit-no_m4_dir.patch
-Patch4: 

commit cross-m68k-binutils for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package cross-m68k-binutils for 
openSUSE:Factory checked in at 2013-12-05 06:48:41

Comparing /work/SRC/openSUSE:Factory/cross-m68k-binutils (Old)
 and  /work/SRC/openSUSE:Factory/.cross-m68k-binutils.new (New)


Package is cross-m68k-binutils

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



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



commit cross-ppc64le-binutils for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package cross-ppc64le-binutils for 
openSUSE:Factory checked in at 2013-12-05 06:48:49

Comparing /work/SRC/openSUSE:Factory/cross-ppc64le-binutils (Old)
 and  /work/SRC/openSUSE:Factory/.cross-ppc64le-binutils.new (New)


Package is cross-ppc64le-binutils

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



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



commit corosync for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package corosync for openSUSE:Factory 
checked in at 2013-12-05 06:51:12

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


Package is corosync

Changes:

--- /work/SRC/openSUSE:Factory/corosync/corosync.changes2013-09-25 
17:07:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.corosync.new/corosync.changes   2013-12-05 
06:51:13.0 +0100
@@ -1,0 +2,6 @@
+Fri Nov 29 21:49:07 UTC 2013 - l...@suse.com
+
+- Obsolete openais so that updates work automatically and uninstall the
+  openais package.
+
+---



Other differences:
--
++ corosync.spec ++
--- /var/tmp/diff_new_pack.MfVUDL/_old  2013-12-05 06:51:14.0 +0100
+++ /var/tmp/diff_new_pack.MfVUDL/_new  2013-12-05 06:51:14.0 +0100
@@ -51,6 +51,10 @@
 Source2:baselibs.conf
 Patch1: corosync-init-lockfile-path-error.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# openais is indeed gone and should be uninstalled. No, we do not
+# provide openais on purpose, the package has been deleted.
+Obsoletes:  openais
+Conflicts:  openais
 # Runtime bits
 Requires:   libcorosync4 = %{version}-%{release}
 #Requires(pre): /usr/sbin/useradd

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



commit file for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package file for openSUSE:Factory checked in 
at 2013-12-05 06:54:33

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


Package is file

Changes:

--- /work/SRC/openSUSE:Factory/file/file.changes2013-11-05 
13:52:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.file.new/file.changes   2013-12-05 
06:54:34.0 +0100
@@ -1,0 +2,11 @@
+Mon Dec  2 11:29:44 UTC 2013 - wer...@suse.de
+
+- Update to file version 5.16 (bug fix release)
+  * always leave magic file loaded, don't unload for magic_check, etc.
+  * fix default encoding to binary instead of unknown which broke recently
+  * handle empty and one byte files, less specially so that
+--mime-encoding does not break completely.
+  * fix erroneous non-zero exit code from non-existant file and message
+  * add CDF MSI file detection (Guy Helmer)
+
+---
--- /work/SRC/openSUSE:Factory/file/python-magic.changes2013-10-02 
08:48:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.file.new/python-magic.changes   2013-12-05 
06:54:34.0 +0100
@@ -1,0 +2,5 @@
+Mon Dec  2 11:31:12 UTC 2013 - wer...@suse.de
+
+- Make it ready for file 5.16
+
+---
@@ -4 +9 @@
-- Make if ready for file 5.15 
+- Make it ready for file 5.15 

Old:

  file-5.12-ocloexec.patch
  file-5.15.dif
  file-5.15.tar.gz

New:

  file-5.16-ocloexec.patch
  file-5.16.dif
  file-5.16.tar.gz



Other differences:
--
++ file.spec ++
--- /var/tmp/diff_new_pack.LBRQq9/_old  2013-12-05 06:54:35.0 +0100
+++ /var/tmp/diff_new_pack.LBRQq9/_new  2013-12-05 06:54:35.0 +0100
@@ -30,14 +30,14 @@
 %endif
 #
 # Set Version also in python-magic.spec
-Version:5.15
+Version:5.16
 Release:0
 Summary:A Tool to Determine File Types
 License:BSD-2-Clause
 Group:  Productivity/File utilities
 Source: ftp://ftp.astron.com/pub/file/file-%{version}.tar.gz
 Source2:baselibs.conf
-Patch:  file-5.15.dif
+Patch:  file-5.16.dif
 Patch1: file-5.14-misc.dif
 Patch4: file-4.24-autoconf.dif
 Patch5: file-5.14-tex.dif
@@ -57,7 +57,7 @@
 Patch28:file-5.07-iso9660.dif
 Patch31:file-5.07-biorad.dif
 Patch32:file-5.07-clicfs.dif
-Patch33:file-5.12-ocloexec.patch
+Patch33:file-5.16-ocloexec.patch
 Patch34:file-5.12-endian.patch
 Patch35:file-5.12-nitpick.dif
 Patch36:file-5.15-clear-invalid.patch

++ python-magic.spec ++
--- /var/tmp/diff_new_pack.LBRQq9/_old  2013-12-05 06:54:35.0 +0100
+++ /var/tmp/diff_new_pack.LBRQq9/_new  2013-12-05 06:54:35.0 +0100
@@ -23,7 +23,7 @@
 BuildRequires:  python-devel
 BuildRequires:  zlib-devel
 Url:http://www.darwinsys.com/file/
-Version:5.15
+Version:5.16
 Release:0
 Summary:Python module to use libmagic
 License:BSD-3-Clause and BSD-4-Clause

++ file-5.12-ocloexec.patch - file-5.16-ocloexec.patch ++
--- /work/SRC/openSUSE:Factory/file/file-5.12-ocloexec.patch2013-10-02 
08:48:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.file.new/file-5.16-ocloexec.patch   
2013-12-05 06:54:34.0 +0100
@@ -1,6 +1,6 @@
 --- src/apprentice.c
 +++ src/apprentice.c   2013-09-30 00:00:00.0 +
-@@ -938,7 +938,7 @@ load_1(struct magic_set *ms, int action,
+@@ -944,7 +944,7 @@ load_1(struct magic_set *ms, int action,
ssize_t len;
struct magic_entry me;
  
@@ -9,7 +9,7 @@
if (f == NULL) {
if (errno != ENOENT)
file_error(ms, errno, cannot read magic file `%s',
-@@ -2599,7 +2599,7 @@ apprentice_map(struct magic_set *ms, con
+@@ -2605,7 +2605,7 @@ apprentice_map(struct magic_set *ms, con
if (dbname == NULL)
goto error;
  
@@ -18,7 +18,7 @@
goto error;
  
if (fstat(fd, st) == -1) {
-@@ -2711,7 +2711,7 @@ apprentice_compile(struct magic_set *ms,
+@@ -2717,7 +2717,7 @@ apprentice_compile(struct magic_set *ms,
if (dbname == NULL) 
goto out;
  
@@ -50,13 +50,13 @@
progname, fn, strerror(errno));
return 1;
 --- src/magic.c
-+++ src/magic.c2013-09-30 00:00:00.0 +
 src/magic.c2013-12-02 10:36:33.334786103 +
 @@ -372,7 +372,7 @@ file_or_fd(struct magic_set *ms, const c
else
pos = lseek(fd, (off_t)0, SEEK_CUR);
} else {
 -  int flags = O_RDONLY|O_BINARY;
 + 

commit filesystem for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package filesystem for openSUSE:Factory 
checked in at 2013-12-05 06:59:06

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


Package is filesystem

Changes:

--- /work/SRC/openSUSE:Factory/filesystem/filesystem.changes2013-10-02 
08:48:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.filesystem.new/filesystem.changes   
2013-12-05 06:59:07.0 +0100
@@ -1,0 +2,5 @@
+Wed Dec  4 09:41:24 UTC 2013 - adr...@suse.de
+
+- add ppc64le definition
+
+---



Other differences:
--
++ filesystem.spec ++
--- /var/tmp/diff_new_pack.txSOde/_old  2013-12-05 06:59:08.0 +0100
+++ /var/tmp/diff_new_pack.txSOde/_new  2013-12-05 06:59:08.0 +0100
@@ -61,7 +61,7 @@
 echo %%defattr(-,root,root)  filesystem.list
 {
 cat %{SOURCE0}
-%ifarch s390x %sparc x86_64 ppc64 ppc aarch64
+%ifarch s390x %sparc x86_64 ppc64 ppc aarch64 ppc64le
 cat %{SOURCE64}
 %endif
 } | while read MOD OWN GRP NAME ; do
@@ -90,6 +90,9 @@
 %ifarch ppc64
 powerpc64-suse-linux \
 %else
+%ifarch ppc64le
+powerpc64le-suse-linux \
+%else
 %ifarch %arm
 %{_target_cpu}-suse-linux-gnueabi \
 %else
@@ -97,6 +100,7 @@
 %endif
 %endif
 %endif
+%endif
 %endif
 %endif
   ; do

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



commit gcc for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package gcc for openSUSE:Factory checked in 
at 2013-12-05 06:59:17

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


Package is gcc

Changes:

--- /work/SRC/openSUSE:Factory/gcc/gcc.changes  2013-07-05 15:51:41.0 
+0200
+++ /work/SRC/openSUSE:Factory/.gcc.new/gcc.changes 2013-12-05 
06:59:18.0 +0100
@@ -1,0 +2,6 @@
+Mon Dec  2 15:34:27 UTC 2013 - rguent...@suse.com
+
+- Move gcc-ar, gcc-nm and gcc-ranlib to the gcc package instead
+  of packaging them separately.
+
+---



Other differences:
--
++ gcc.spec ++
--- /var/tmp/diff_new_pack.ysQjYI/_old  2013-12-05 06:59:18.0 +0100
+++ /var/tmp/diff_new_pack.ysQjYI/_new  2013-12-05 06:59:18.0 +0100
@@ -43,7 +43,10 @@
 License:GPL-3.0+
 Group:  Development/Languages/C and C++
 Provides:   c_compiler
+Obsoletes:  gcc-ar
 Obsoletes:  gcc-mudflap
+Obsoletes:  gcc-nm
+Obsoletes:  gcc-ranlib
 Requires:   cpp
 Requires:   gcc%{gcc_version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -341,36 +344,6 @@
 The system GNU C Compiler.
 
 
-%package -n gcc-ar
-Summary:Plugin aware AR utility
-License:GPL-3.0+
-Group:  Development/Languages/C and C++
-Requires:   gcc
-
-%description -n gcc-ar
-Linker plugin aware AR utility.
-
-
-%package -n gcc-nm
-Summary:Plugin aware NM utility
-License:GPL-3.0+
-Group:  Development/Languages/C and C++
-Requires:   gcc
-
-%description -n gcc-nm
-Linker plugin aware NM utility.
-
-
-%package -n gcc-ranlib
-Summary:Plugin aware RANLIB utility
-License:GPL-3.0+
-Group:  Development/Languages/C and C++
-Requires:   gcc
-
-%description -n gcc-ranlib
-Linker plugin aware RANLIB utility.
-
-
 %prep 
 
 %build
@@ -451,6 +424,9 @@
 %{_prefix}/bin/gcc
 %{_prefix}/bin/cc
 %{_prefix}/bin/gcov
+%{_prefix}/bin/gcc-ar
+%{_prefix}/bin/gcc-nm
+%{_prefix}/bin/gcc-ranlib
 %doc %{_mandir}/man1/gcc.1.gz
 %doc %{_mandir}/man1/cc.1.gz
 %doc %{_mandir}/man1/gcov.1.gz
@@ -632,16 +608,4 @@
 /usr/lib*/gcc/*-suse-linux/*/defaults.spec
 %endif
 
-%files -n gcc-ar
-%defattr(-,root,root)
-%{_prefix}/bin/gcc-ar
-
-%files -n gcc-nm
-%defattr(-,root,root)
-%{_prefix}/bin/gcc-nm
-
-%files -n gcc-ranlib
-%defattr(-,root,root)
-%{_prefix}/bin/gcc-ranlib
-
 %changelog

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



commit jakarta-commons-dbcp-src for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package jakarta-commons-dbcp-src for 
openSUSE:Factory checked in at 2013-12-05 06:59:30

Comparing /work/SRC/openSUSE:Factory/jakarta-commons-dbcp-src (Old)
 and  /work/SRC/openSUSE:Factory/.jakarta-commons-dbcp-src.new (New)


Package is jakarta-commons-dbcp-src

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



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



commit jakarta-commons-dbcp for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package jakarta-commons-dbcp for 
openSUSE:Factory checked in at 2013-12-05 06:59:25

Comparing /work/SRC/openSUSE:Factory/jakarta-commons-dbcp (Old)
 and  /work/SRC/openSUSE:Factory/.jakarta-commons-dbcp.new (New)


Package is jakarta-commons-dbcp

Changes:

New Changes file:

--- /dev/null   2013-11-25 01:44:08.036031256 +0100
+++ 
/work/SRC/openSUSE:Factory/.jakarta-commons-dbcp.new/jakarta-commons-dbcp-src.changes
   2013-12-05 06:59:26.0 +0100
@@ -0,0 +1,6 @@
+---
+Tue Nov 26 14:12:42 UTC 2013 - mvysko...@suse.com
+
+- Drop -src package into separate spec file in order to really
+  break a build cycle between tomcat and dbcp
+
--- 
/work/SRC/openSUSE:Factory/jakarta-commons-dbcp/jakarta-commons-dbcp.changes
2013-09-11 13:38:59.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.jakarta-commons-dbcp.new/jakarta-commons-dbcp.changes
   2013-12-05 06:59:26.0 +0100
@@ -1,0 +2,11 @@
+Tue Nov 26 14:56:21 UTC 2013 - mvysko...@suse.com
+
+- Move -src subpackage to extra spec file
+
+---
+Wed Oct 30 14:54:34 UTC 2013 - mvysko...@suse.com
+
+- Create -src subpackage in order to create tomcat-dbcp.jar without
+  build cycles (bnc#847505)
+
+---

Old:

  dbcp-tomcat5-build.xml

New:

  jakarta-commons-dbcp-src.changes
  jakarta-commons-dbcp-src.spec



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

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


%define base_name   dbcp
%define short_name  commons-%{base_name}

Name:   jakarta-commons-dbcp-src
Version:1.2.2
Release:0
Summary:Jakarta Commons DataBase Pooling Package src
License:Apache-2.0
Group:  Development/Libraries/Java
Source0:commons-dbcp-1.2.2-src.tar.bz2
Source5:commons-build.tar.bz2
Patch0: commons-dbcp-1.2.2-project_xml.patch
#improved from https://issues.apache.org/jira/browse/DBCP-191
Patch1: java6-compatibility.patch
Patch2: jakarta-commons-dbcp-target15.patch
#http://pkgs.fedoraproject.org/gitweb/?p=apache-commons-dbcp.git;a=blob_plain;f=jdbc41.patch;hb=HEAD
Patch3: jdbc41.patch
Url:http://jakarta.apache.org/commons/dbcp/
BuildArch:  noarch

%description
The DBCP package creates and maintains a database connection pool
package written in the Java language to be distributed under the ASF
license. The package is available as a pseudo-JDBC driver and via a
DataSource interface. The package also supports multiple logins to
multiple database systems, reclamation of stale or dead connections,
testing for valid connections, PreparedStatement pooling, and other
features.

This package contains a source code, which is intended to break some
bootstrap issues between commons-dbcp and tomcat.

%prep
%setup -q -n %{short_name}-%{version}-src
# quick hack
cp LICENSE.txt ../LICENSE
# remove all binary libs
find . -name *.jar -exec rm -f {} \;
bzip2 -dc %{SOURCE5} | tar xf -
%patch0 -b .sav
%patch1 -b .sav1
%patch2 -b .target15
%patch3 -p0

%build
# nope

%install
# source code
install -d -m 0755 %{buildroot}%{_usrsrc}/%{short_name}/
cp -pr src/java %{buildroot}%{_usrsrc}/%{short_name}/

%files
%defattr(0644,root,root,0755)
%doc LICENSE.txt
%{_usrsrc}/%{short_name}

%changelog
++ jakarta-commons-dbcp.spec ++
--- /var/tmp/diff_new_pack.J1mPT7/_old  2013-12-05 06:59:27.0 +0100
+++ /var/tmp/diff_new_pack.J1mPT7/_new  2013-12-05 06:59:27.0 +0100
@@ -33,12 +33,11 @@
 Source3:pom-maven2jpp-mapdeps.xsl
 Source4:%{base_name}-%{version}-jpp-depmap.xml
 Source5:commons-build.tar.bz2
-Source6:dbcp-tomcat5-build.xml
 Source7:commons-dbcp-1.2.2.pom
 Patch0: commons-dbcp-1.2.2-project_xml.patch
 #improved from https://issues.apache.org/jira/browse/DBCP-191
 Patch1: 

commit latex2html for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package latex2html for openSUSE:Factory 
checked in at 2013-12-05 07:13:37

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


Package is latex2html

Changes:

--- /work/SRC/openSUSE:Factory/latex2html/latex2html.changes2013-09-11 
12:17:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.latex2html.new/latex2html.changes   
2013-12-05 07:13:38.0 +0100
@@ -1,0 +2,13 @@
+Mon Nov 25 14:59:53 UTC 2013 - pgaj...@suse.com
+
+- updated to version 2012:
+  * fix warnings in perl 5.14
+  * build fixes
+- latex2html-2008.diff was split to share-dir.patch, local.pm 
+  (source) and latex2html.1 (source)
+- buildroot.diff was renamed to dest-dir.diff and that was extended
+  to install icons properly
+- fix-defined.patch was removed (upstreamed)
+- manual.ps.gz was removed
+
+---

Old:

  latex2html-2008-binmode.diff
  latex2html-2008-buildroot.diff
  latex2html-2008-gsout.diff
  latex2html-2008-match-multiline.patch
  latex2html-2008-perl-bindir.diff
  latex2html-2008.diff
  latex2html-2008.tar.gz
  latex2html-README.SuSE
  latex2html-backref-workaround.diff
  latex2html-fix-defined.patch
  latex2html-manual.ps.gz

New:

  latex2html-2012-backref-workaround.diff
  latex2html-2012-binmode.diff
  latex2html-2012-dest-dir.diff
  latex2html-2012-gsout.diff
  latex2html-2012-match-multiline.diff
  latex2html-2012-perl-bindir.diff
  latex2html-2012-share-dir.diff
  latex2html-2012.tgz
  latex2html-README.SUSE
  latex2html.1
  local.pm



Other differences:
--
++ latex2html.spec ++
--- /var/tmp/diff_new_pack.YwJifv/_old  2013-12-05 07:13:40.0 +0100
+++ /var/tmp/diff_new_pack.YwJifv/_new  2013-12-05 07:13:40.0 +0100
@@ -21,40 +21,39 @@
 BuildRequires:  ghostscript-fonts-std
 BuildRequires:  ghostscript-x11
 BuildRequires:  netpbm
+BuildRequires:  texlive-dvips
 BuildRequires:  texlive-kpathsea
 BuildRequires:  texlive-latex
 BuildRequires:  xorg-x11
 BuildRequires:  xorg-x11-devel
 %{expand: %%global _texmfmaindir %(kpsewhich -expand-var='$TEXMFMAIN')}
 %define share_dir /usr/share/latex2html
-Obsoletes:  l2h
-Provides:   l2h
 Url:http://www.latex2html.org/
-Provides:   l2h99_1
 Requires:   ghostscript_any
 Requires:   latex2html-pngicons
 Requires:   netpbm
 Requires:   perl
+Requires:   texlive-dvips
 Requires:   texlive-latex
-Version:2008
+Version:2012
 Release:0
-Summary:LaTeX2HTML Converter
+Summary:LaTeX to HTML Converter
 License:GPL-2.0+
 Group:  Productivity/Publishing/TeX/Utilities
 BuildArch:  noarch
-Source: 
http://www.latex2html.org/~latex2ht/current/%{name}-%{version}.tar.gz
-Source1:latex2html-manual.ps.gz
-Source2:latex2html-manual.tar.bz2
-Source3:latex2html-README.SuSE
-Source4:testfile.tex
-Patch:  latex2html-%{version}.diff
-Patch1: latex2html-%{version}-binmode.diff
-Patch2: latex2html-%{version}-gsout.diff
-Patch3: latex2html-%{version}-buildroot.diff
-Patch4: latex2html-%{version}-perl-bindir.diff
-Patch5: latex2html-%{version}-match-multiline.patch
-Patch6: 
http://patch-tracker.debian.org/patch/series/dl/latex2html/2008-debian1-9/latex2html-fix-defined.patch
-Patch7: latex2html-backref-workaround.diff
+Source0:
http://mirrors.ctan.org/support/latex2html/latex2html-%{version}.tgz
+Source1:latex2html-manual.tar.bz2
+Source2:latex2html-README.SUSE
+Source3:testfile.tex
+Source4:local.pm
+Source5:latex2html.1
+Patch0: latex2html-%{version}-share-dir.diff
+Patch1: latex2html-%{version}-perl-bindir.diff
+Patch2: latex2html-%{version}-dest-dir.diff
+Patch3: latex2html-%{version}-binmode.diff
+Patch4: latex2html-%{version}-gsout.diff
+Patch5: latex2html-%{version}-match-multiline.diff
+Patch6: latex2html-%{version}-backref-workaround.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -62,12 +61,8 @@
 format. This allows both a written and online version even of older
 LaTeX texts.
 
-Find documentation in /usr/share/doc/packages/latex2html.
-
 %package pngicons
-Provides:   l2h-pngicons
-Obsoletes:  l2h-pngicons
-Summary:Icons in the PNG format for the LaTeX to HTML Converter
+Summary:Icons in the PNG format for LateX2HTML
 License:GPL-2.0+
 Group:  Productivity/Publishing/TeX/Utilities
 
@@ -75,7 +70,7 @@
 Icons in the PNG format for the LaTeX to HTML Converter.
 
 

commit pacemaker for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package pacemaker for openSUSE:Factory 
checked in at 2013-12-05 07:17:55

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


Package is pacemaker

Changes:

--- /work/SRC/openSUSE:Factory/pacemaker/pacemaker.changes  2013-11-17 
20:20:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.pacemaker.new/pacemaker.changes 2013-12-05 
07:17:56.0 +0100
@@ -1,0 +2,42 @@
+Thu Nov 28 13:06:59 UTC 2013 - y...@suse.com
+
+- crmd: Memory leak
+- Upstream version cs: ce5d77c6038a0a0294d4cae238169c458ba03b72
+
+---
+Mon Nov 25 15:21:14 UTC 2013 - y...@suse.com
+
+- pengine: Recover unexpectedly running container nodes.
+- pengine: Disable container node probes due to constraint conflicts
+- ipc: Have the ipc server enforce a minimum buffer size all clients must use.
+- Bug cl#5181 - corosync: Ensure node IDs are written to the CIB as unsigned 
integers
+- Upstream version cs: f57ad6c17624c0cbfc58c46f0bad7e28453506bb
+
+---
+Tue Nov 19 14:12:00 UTC 2013 - y...@suse.com
+
+- Update pacemaker-colocated-utilization.patch
+  * pengine: Do not check the allocation of resources during a colocation 
preview (bnc#849595)
+
+---
+Tue Nov 19 13:45:56 UTC 2013 - y...@suse.com
+
+- election: Correctly hook up the timeout callback
+- crmd: Improve throttling response on clusters of single core machines 
(bnc#838358)
+- fencing: Wait until all possible replies are recieved before continuing with 
unverified devices
+- Bug cl#5179 - Corosync: Attempt to retrieve a peer's node name if it is not 
already known
+- Core: Allow blackbox logging to be disabled with SIGUSR2
+- PE: Correctly handle demotion of grouped masters that are partially demoted
+- crmd: When the DC gracefully shuts down, record the new expected state into 
the cib
+- crmd: When a peer expectedly shuts down, record the new join and expected 
states into the cib
+- attrd: Memory leak
+- attrd: Do something sane when older non-atomic versions send us messages
+- crmd: Correctly observe the configured batch-limit (bnc#838358)
+- attrd: Improve compatibility with older attrd versions
+- controld: Use the correct variant of dlm_controld for corosync-2 clusters
+- lrmd: Correctly calculate metadata for the 'service' class
+- crmd: Prevent over-polling of throttle inputs (bnc#838358)
+- crmd: Enable cluster-wide throttling when the cib heavily exceeds its target 
load (bnc#838358)
+- Upstream version cs: 5a69be5ff56ec7fa66bcf9c2069af6211e4ebc98
+
+---
@@ -4 +46 @@
-- crmd: Send the first throttle update
+- crmd: Send the first throttle update (bnc#838358)
@@ -23,8 +65,8 @@
-- crmd: A more reliable method of looking up migration options
-- crmd: Allow non-CIB based throttling to be disabled
-- crmd: Honor load thresholds lower than the cib maximum
-- crmd: Tell the DC our job limit instead of the number of cores
-- crmd: Track the CIB's CPU usage
-- crmd: Fold the enforcement of migration-limit into the throttling code
-- crmd: Don't start throttling until we're over the target threshold
-- crmd: Do not send throttle updates to versions that don't support them
+- crmd: A more reliable method of looking up migration options (bnc#838358)
+- crmd: Allow non-CIB based throttling to be disabled (bnc#838358)
+- crmd: Honor load thresholds lower than the cib maximum (bnc#838358)
+- crmd: Tell the DC our job limit instead of the number of cores (bnc#838358)
+- crmd: Track the CIB's CPU usage (bnc#838358)
+- crmd: Fold the enforcement of migration-limit into the throttling code 
(bnc#838358)
+- crmd: Don't start throttling until we're over the target threshold 
(bnc#838358)
+- crmd: Do not send throttle updates to versions that don't support them 
(bnc#838358)
@@ -32,4 +74,4 @@
-- crmd: Tweak the throttling threshold multipliers
-- crmd: Simplify option processing for throttling options
-- crmd: Simplify the logic for calculating the number of available cores
-- crmd: Make the per-node action limit directly configurable in the CIB
+- crmd: Tweak the throttling threshold multipliers (bnc#838358)
+- crmd: Simplify option processing for throttling options (bnc#838358)
+- crmd: Simplify the logic for calculating the number of available cores 
(bnc#838358)
+- crmd: Make the per-node action limit directly configurable in the CIB 
(bnc#838358)
@@ -37,4 +79,4 @@
-- crmd: Slow down recovery on nodes with IO load
-- crmd: Make the utilization limit configurable
-- crmd: Use the load on our peers to know how many jobs to send them
-- crmd: Notify peers of our relative load

commit rubygem-i18n for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package rubygem-i18n for openSUSE:Factory 
checked in at 2013-12-05 07:18:12

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


Package is rubygem-i18n

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-i18n/rubygem-i18n.changes
2013-10-06 14:59:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-i18n.new/rubygem-i18n.changes   
2013-12-05 07:18:13.0 +0100
@@ -1,0 +2,10 @@
+Wed Dec  4 11:31:19 UTC 2013 - co...@suse.com
+
+- updated to version 0.6.9, no changelog
+
+---
+Tue Dec  3 20:02:35 UTC 2013 - co...@suse.com
+
+- updated to version 0.6.8, no changelog
+
+---

Old:

  i18n-0.6.5.gem

New:

  i18n-0.6.9.gem



Other differences:
--
++ rubygem-i18n.spec ++
--- /var/tmp/diff_new_pack.K7kh01/_old  2013-12-05 07:18:13.0 +0100
+++ /var/tmp/diff_new_pack.K7kh01/_new  2013-12-05 07:18:13.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-i18n
-Version:0.6.5
+Version:0.6.9
 Release:0
 %define mod_name i18n
 %define mod_full_name %{mod_name}-%{version}

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



commit mokutil for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package mokutil for openSUSE:Factory checked 
in at 2013-12-05 07:17:49

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


Package is mokutil

Changes:

--- /work/SRC/openSUSE:Factory/mokutil/mokutil.changes  2013-07-25 
14:35:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.mokutil.new/mokutil.changes 2013-12-05 
07:17:50.0 +0100
@@ -1,0 +2,8 @@
+Thu Dec  5 02:11:40 UTC 2013 - g...@suse.com
+
+- Add mokutil-upstream-fixes.patch to include upstream fixes for
+  db signature check, gcc warnings, and error handling
+- Add mokutil-mokx-support.patch to support the MOK blacklist
+  (FATE#316531)
+
+---

New:

  mokutil-mokx-support.patch
  mokutil-upstream-fixes.patch



Other differences:
--
++ mokutil.spec ++
--- /var/tmp/diff_new_pack.PHzUbF/_old  2013-12-05 07:17:51.0 +0100
+++ /var/tmp/diff_new_pack.PHzUbF/_new  2013-12-05 07:17:51.0 +0100
@@ -24,6 +24,10 @@
 Group:  Productivity/Security
 Url:https://github.com/lcp/mokutil
 Source: %{name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM mokutil-upstream-fixes.patch g...@suse.com -- Include 
upstream fixes for db signature check, gcc warnings, error handling
+Patch1: mokutil-upstream-fixes.patch
+# PATCH-FIX-UPSTREAM mokutil-mokx-support.patch g...@suse.com -- Support the 
MOK blacklist
+Patch2: mokutil-mokx-support.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libopenssl-devel = 0.9.8
@@ -43,6 +47,8 @@
 
 %prep
 %setup -q
+%patch1 -p1
+%patch2 -p1
 
 %build
 %configure

++ mokutil-mokx-support.patch ++
 2917 lines (skipped)

++ mokutil-upstream-fixes.patch ++
 853 lines (skipped)

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



commit libpfm for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package libpfm for openSUSE:Factory checked 
in at 2013-12-05 07:17:36

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


Package is libpfm

Changes:

--- /work/SRC/openSUSE:Factory/libpfm/libpfm.changes2013-01-29 
14:16:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.libpfm.new/libpfm.changes   2013-12-05 
07:17:38.0 +0100
@@ -1,0 +2,15 @@
+Wed Dec  4 19:25:33 UTC 2013 - to...@suse.com
+
+- Update to version 4.4.
+- Changelog:
+  - Intel SandyBridge-EP uncore PMU support (all boxes)
+  - Intel IvyBridge desktop core and uncore PMU support
+  - Intel IvyBridge-EP core PMU support
+  - newer Intel Haswell desktop core PMU support
+  - newer Intel Atom
+  - Intel Knigts Corner
+  - Intel Nehalem, Westmere, SandyBridge, IvyBridge, Haswell PEBS Load Latency 
+modifier (ldlat)
+  - many bug fixes and other minor improvements 
+
+---

Old:

  libpfm-4.3.0.tar.bz2

New:

  libpfm-4.4.0.tar.gz



Other differences:
--
++ libpfm.spec ++
--- /var/tmp/diff_new_pack.EEDmfa/_old  2013-12-05 07:17:38.0 +0100
+++ /var/tmp/diff_new_pack.EEDmfa/_new  2013-12-05 07:17:38.0 +0100
@@ -19,14 +19,14 @@
 %{!?with_python: %global with_python 1}
 
 Name:   libpfm
-Version:4.3.0
+Version:4.4.0
 Release:0
 %define vname   libpfm4
 Summary:Library to encode performance events
 License:MIT
 Group:  Development/Libraries/C and C++
 Url:http://perfmon2.sourceforge.net/
-Source: %{name}-%{version}.tar.bz2
+Source: 
http://downloads.sourceforge.net/project/perfmon2/libpfm4/%{name}-%{version}.tar.gz
 Source1:baselibs.conf
 %if %{with_python}
 BuildRequires:  python-devel

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



commit python-PyGithub for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package python-PyGithub for openSUSE:Factory 
checked in at 2013-12-05 07:18:03

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


Package is python-PyGithub

Changes:

--- /work/SRC/openSUSE:Factory/python-PyGithub/python-PyGithub.changes  
2013-10-25 11:27:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-PyGithub.new/python-PyGithub.changes 
2013-12-05 07:18:04.0 +0100
@@ -1,0 +2,8 @@
+Wed Dec  4 09:47:50 UTC 2013 - speili...@suse.com
+
+- Update to version 1.21.0:
+  + No changelog, but 
https://github.com/jacquev6/PyGithub/issues?milestone=33state=closed
+- Add PyGithub-drop-network-tests.patch: Drop tests that need network access
+  during build
+
+---

Old:

  PyGithub-1.13.1.tar.gz

New:

  PyGithub-1.21.0.tar.gz
  PyGithub-drop-network-tests.patch



Other differences:
--
++ python-PyGithub.spec ++
--- /var/tmp/diff_new_pack.uKvNOc/_old  2013-12-05 07:18:05.0 +0100
+++ /var/tmp/diff_new_pack.uKvNOc/_new  2013-12-05 07:18:05.0 +0100
@@ -17,13 +17,15 @@
 
 
 Name:   python-PyGithub
-Version:1.13.1
+Version:1.21.0
 Release:0
 Summary:Use the full Github API v3
 License:LGPL-3.0+
 Group:  Development/Languages/Python
 Url:http://jacquev6.github.com/PyGithub
 Source: 
http://pypi.python.org/packages/source/P/PyGithub/PyGithub-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE speili...@suse.com -- Remove tests that need network 
access during build
+Patch0: PyGithub-drop-network-tests.patch
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -40,7 +42,7 @@
 
 %prep
 %setup -q -n PyGithub-%{version}
-chmod -x README.rst github/COPYING{,.LESSER}
+%patch0 -p1
 
 %build
 python setup.py build
@@ -49,12 +51,13 @@
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 rm -r %{buildroot}%{python_sitelib}/github/tests # Don't ship testsuite
 
-#%%check
-#python setup.py test
+%check
+python setup.py test
 
 %files
 %defattr(-,root,root,-)
 %doc README.rst github/COPYING github/COPYING.LESSER
-%{python_sitelib}/*
+%{python_sitelib}/github
+%{python_sitelib}/PyGithub-%{version}-py%{py_ver}.egg-info
 
 %changelog

++ PyGithub-1.13.1.tar.gz - PyGithub-1.21.0.tar.gz ++
 28671 lines of diff (skipped)

++ PyGithub-drop-network-tests.patch ++
diff -ruN a/github/tests/AllTests.py b/github/tests/AllTests.py
--- a/github/tests/AllTests.py  2013-11-17 22:45:12.0 +0100
+++ b/github/tests/AllTests.py  2013-12-04 10:43:20.695062438 +0100
@@ -83,6 +83,5 @@
 from Issue134 import *
 from Issue139 import *
 from Issue140 import *
-from Issue142 import *
 from Issue158 import *
 from Issue174 import *
diff -ruN a/github/tests/Issue142.py b/github/tests/Issue142.py
--- a/github/tests/Issue142.py  2013-11-08 03:07:08.0 +0100
+++ b/github/tests/Issue142.py  1970-01-01 01:00:00.0 +0100
@@ -1,32 +0,0 @@
-# -*- coding: utf-8 -*-
-
- Copyrights and license 

-#  
#
-# Copyright 2013 Vincent Jacques vinc...@vincent-jacques.net 
#
-#  
#
-# This file is part of PyGithub. http://jacquev6.github.com/PyGithub/  
#
-#  
#
-# PyGithub is free software: you can redistribute it and/or modify it under
#
-# the terms of the GNU Lesser General Public License as published by the Free  
#
-# Software Foundation, either version 3 of the License, or (at your option)
#
-# any later version.   
#
-#  
#
-# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY  
#
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
#
-# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 
#
-# details. 
#
-#  
#
-# You should have received a copy of the GNU Lesser General Public License 
#
-# along with PyGithub. If not, see http://www.gnu.org/licenses/. 
#
-#  

commit yast2-storage for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory 
checked in at 2013-12-05 07:18:30

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


Package is yast2-storage

Changes:

--- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes  
2013-11-28 19:10:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 
2013-12-05 07:18:31.0 +0100
@@ -1,0 +2,11 @@
+Tue Dec 03 17:40:26 CET 2013 - aschn...@suse.de
+
+- import complete used-by list from libstorage in target-map
+
+---
+Mon Dec 02 14:00:23 CET 2013 - aschn...@suse.de
+
+- change default filesystem to btrfs (fate#315901)
+- change default filesystem for /home to xfs (fate#316637)
+
+---

Old:

  yast2-storage-3.1.2.tar.bz2

New:

  yast2-storage-3.1.3.tar.bz2



Other differences:
--
++ yast2-storage.spec ++
--- /var/tmp/diff_new_pack.T4yeJk/_old  2013-12-05 07:18:31.0 +0100
+++ /var/tmp/diff_new_pack.T4yeJk/_new  2013-12-05 07:18:31.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-storage
-Version:3.1.2
+Version:3.1.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -26,8 +26,8 @@
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  gcc-c++
-BuildRequires:  libstorage-devel = 2.25.3
-BuildRequires:  libstorage-ruby = 2.25.2
+BuildRequires:  libstorage-devel = 2.25.4
+BuildRequires:  libstorage-ruby = 2.25.4
 BuildRequires:  libtool
 BuildRequires:  libxslt
 BuildRequires:  perl-XML-Writer
@@ -38,8 +38,8 @@
 BuildRequires:  yast2-core-devel = 2.23.1
 BuildRequires:  yast2-devtools = 3.0.6
 BuildRequires:  yast2-testsuite = 2.19.0
-Requires:   libstorage-ruby = 2.25.2
-Requires:   libstorage4 = 2.25.2
+Requires:   libstorage-ruby = 2.25.4
+Requires:   libstorage5 = 2.25.4
 Requires:   rubygem-ruby-dbus
 Requires:   yast2 = 2.19.4
 Requires:   yast2-core = 2.18.3

++ yast2-storage-3.1.2.tar.bz2 - yast2-storage-3.1.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.2/VERSION 
new/yast2-storage-3.1.3/VERSION
--- old/yast2-storage-3.1.2/VERSION 2013-11-26 17:29:50.0 +0100
+++ new/yast2-storage-3.1.3/VERSION 2013-12-04 10:21:37.0 +0100
@@ -1 +1 @@
-3.1.2
+3.1.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.2/package/yast2-storage.changes 
new/yast2-storage-3.1.3/package/yast2-storage.changes
--- old/yast2-storage-3.1.2/package/yast2-storage.changes   2013-11-26 
17:29:50.0 +0100
+++ new/yast2-storage-3.1.3/package/yast2-storage.changes   2013-12-04 
10:21:37.0 +0100
@@ -1,4 +1,15 @@
 ---
+Tue Dec 03 17:40:26 CET 2013 - aschn...@suse.de
+
+- import complete used-by list from libstorage in target-map
+
+---
+Mon Dec 02 14:00:23 CET 2013 - aschn...@suse.de
+
+- change default filesystem to btrfs (fate#315901)
+- change default filesystem for /home to xfs (fate#316637)
+
+---
 Tue Nov 26 15:11:04 CET 2013 - aschn...@suse.de
 
 - disable btrfs multivolume support (bnc#832196)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.2/package/yast2-storage.spec 
new/yast2-storage-3.1.3/package/yast2-storage.spec
--- old/yast2-storage-3.1.2/package/yast2-storage.spec  2013-11-26 
17:29:50.0 +0100
+++ new/yast2-storage-3.1.3/package/yast2-storage.spec  2013-12-04 
10:21:37.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-storage
-Version:3.1.2
+Version:3.1.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -28,15 +28,15 @@
 
 BuildRequires: gcc-c++ libtool
 BuildRequires: docbook-xsl-stylesheets doxygen libxslt perl-XML-Writer 
sgml-skel update-desktop-files
-BuildRequires: libstorage-devel = 2.25.3
+BuildRequires: libstorage-devel = 2.25.4
 BuildRequires:  yast2 = 2.19.4
 BuildRequires:  yast2-core-devel = 2.23.1
 BuildRequires:  yast2-devtools = 3.0.6
 BuildRequires: yast2-testsuite = 2.19.0
 BuildRequires: rubygem-ruby-dbus
-BuildRequires: libstorage-ruby = 2.25.2
-Requires:  libstorage4 = 2.25.2
-Requires:  libstorage-ruby = 2.25.2
+BuildRequires: libstorage-ruby = 2.25.4
+Requires:  

commit yast2 for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2013-12-05 07:18:21

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


Package is yast2

Changes:

--- /work/SRC/openSUSE:Factory/yast2/yast2.changes  2013-12-03 
16:57:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2013-12-05 
07:18:22.0 +0100
@@ -1,0 +2,8 @@
+Wed Dec  4 12:39:02 UTC 2013 - jreidin...@suse.com
+
+- deprecate yast --install, --upgrade and --remove and use zypper
+  instead. Suggest using zypper directly from command line.
+  (FATE#316458)
+- 3.1.8
+
+---

Old:

  yast2-3.1.7.tar.bz2

New:

  yast2-3.1.8.tar.bz2



Other differences:
--
++ yast2.spec ++
--- /var/tmp/diff_new_pack.PRH76q/_old  2013-12-05 07:18:23.0 +0100
+++ /var/tmp/diff_new_pack.PRH76q/_new  2013-12-05 07:18:23.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2
-Version:3.1.7
+Version:3.1.8
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-3.1.7.tar.bz2 - yast2-3.1.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.7/VERSION new/yast2-3.1.8/VERSION
--- old/yast2-3.1.7/VERSION 2013-12-03 14:37:01.0 +0100
+++ new/yast2-3.1.8/VERSION 2013-12-04 14:36:46.0 +0100
@@ -1 +1 @@
-3.1.7
+3.1.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.7/package/yast2.changes 
new/yast2-3.1.8/package/yast2.changes
--- old/yast2-3.1.7/package/yast2.changes   2013-12-03 14:37:02.0 
+0100
+++ new/yast2-3.1.8/package/yast2.changes   2013-12-04 14:36:46.0 
+0100
@@ -1,4 +1,12 @@
 ---
+Wed Dec  4 12:39:02 UTC 2013 - jreidin...@suse.com
+
+- deprecate yast --install, --upgrade and --remove and use zypper
+  instead. Suggest using zypper directly from command line.
+  (FATE#316458)
+- 3.1.8
+
+---
 Tue Dec  3 13:34:50 UTC 2013 - vmora...@suse.com
 
 - Update hooks
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.7/package/yast2.spec 
new/yast2-3.1.8/package/yast2.spec
--- old/yast2-3.1.7/package/yast2.spec  2013-12-03 14:37:02.0 +0100
+++ new/yast2-3.1.8/package/yast2.spec  2013-12-04 14:36:46.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2
-Version:3.1.7
+Version:3.1.8
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.7/scripts/yast2 
new/yast2-3.1.8/scripts/yast2
--- old/yast2-3.1.7/scripts/yast2   2013-12-03 14:37:02.0 +0100
+++ new/yast2-3.1.8/scripts/yast2   2013-12-04 14:36:46.0 +0100
@@ -201,9 +201,9 @@
-h|--help) if test $2 = '--' -a -n $3 ; then 
CMDLINE_HELP=help ; else printhelp  exit 0 ; fi ; shift ;;
-l|--list) listmodules; exit 0 ;;
-g|--geometry) Y2_GEOMETRY=-geometry $2; shift 2; ;;
-   -i|--install) Y2_INSTALL_PACKAGES=true; shift ;;
-   --update) Y2_INSTALL_PACKAGES=true; Y2_INSTALL_ACTION=--update; 
shift ;;
-   --remove) Y2_INSTALL_PACKAGES=true; Y2_INSTALL_ACTION=--remove; 
shift ;;
+   -i|--install) Y2_INSTALL_PACKAGES=true; 
Y2_INSTALL_ACTION=install; shift ;;
+   --update) Y2_INSTALL_PACKAGES=true; Y2_INSTALL_ACTION=update; 
shift ;;
+   --remove) Y2_INSTALL_PACKAGES=true; Y2_INSTALL_ACTION=remove; 
shift ;;
 --fullscreen) Y2UI_ARGS=$Y2UI_ARGS --fullscreen; shift ;;
--noborder)   Y2UI_ARGS=$Y2UI_ARGS --noborder  ; shift ;;
--kcontrol)   Y2UI_ARGS=$Y2UI_ARGS --kcontrol_id YaST ; shift 
;;
@@ -218,11 +218,25 @@
esac
 done
 
+# deprecated, drop after SLE12
 if [ $Y2_INSTALL_PACKAGES = true ]; then
-   export module=sw_single
-   # #222757
-   # prepend an additional argument if necessary
-   set -- $Y2_INSTALL_ACTION $@
+if [ $# -eq 0 ]; then
+echo DEPRECATED. Use sw_single directly: $0 sw_single 2
+export module=sw_single
+else
+# support passing text files with packages
+# any ycp file support is dropped
+if [[ -f $1  ! $1 == *rpm ]] ; then
+  cmd=zypper --non-interactive $Y2_INSTALL_ACTION \`cat \$1\\`
+else
+  cmd=zypper --non-interactive