commit rubygem-ffi for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package rubygem-ffi for openSUSE:Factory 
checked in at 2015-06-30 10:17:52

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


Package is rubygem-ffi

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-ffi/rubygem-ffi.changes  2015-03-19 
21:17:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-ffi.new/rubygem-ffi.changes 
2015-06-30 10:17:53.0 +0200
@@ -1,0 +2,6 @@
+Sat Jun 27 04:30:12 UTC 2015 - co...@suse.com
+
+- updated to version 1.9.9
+ see installed ChangeLog
+
+---

Old:

  ffi-1.9.8.gem

New:

  ffi-1.9.9.gem



Other differences:
--
++ rubygem-ffi.spec ++
--- /var/tmp/diff_new_pack.C7eHCw/_old  2015-06-30 10:17:54.0 +0200
+++ /var/tmp/diff_new_pack.C7eHCw/_new  2015-06-30 10:17:54.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-ffi
-Version:1.9.8
+Version:1.9.9
 Release:0
 %define mod_name ffi
 %define mod_full_name %{mod_name}-%{version}

++ ffi-1.9.8.gem - ffi-1.9.9.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2015-03-15 03:46:02.0 +0100
+++ new/Rakefile2015-06-26 22:18:25.0 +0200
@@ -1,6 +1,7 @@
 require 'rubygems/tasks'
 require 'rbconfig'
 require 'rake/clean'
+require File.expand_path(./lib/ffi/version)
 
 USE_RAKE_COMPILER = (RUBY_PLATFORM =~ /java/) ? false : true
 if USE_RAKE_COMPILER
@@ -13,11 +14,6 @@
 require 'rspec/core/rake_task'
 require 'rubygems/package_task'
 
-RSpec::Core::RakeTask.new(:spec = :compile) do |config|
-  config.rspec_opts = YAML.load_file 'spec/spec.opts'
-end
-
-
 LIBEXT = case RbConfig::CONFIG['host_os'].downcase
   when /darwin/
 dylib
@@ -81,38 +77,31 @@
 
 TEST_DEPS = [ LIBTEST ]
 if RUBY_PLATFORM == java
-  desc Run all specs
-  task :specs, [:options] = TEST_DEPS do |t, args|
-sh %{#{Gem.ruby} -w -S rspec #{args.options || 
Dir[spec/ffi/*_spec.rb].join( )} -fs --color}
-  end
-  desc Run rubinius specs
-  task :rbxspecs = TEST_DEPS do
-sh %{#{Gem.ruby} -w -S rspec #{Dir[spec/ffi/rbx/*_spec.rb].join( )} 
-fs --color}
+  RSpec::Core::RakeTask.new(:spec) do |config|
+config.rspec_opts = YAML.load_file 'spec/spec.opts'
   end
 else
-  TEST_DEPS.unshift :compile
-  desc Run all specs
-  task :specs, [:options] = TEST_DEPS do |t, args|
-ENV[MRI_FFI] = 1
-sh %{#{Gem.ruby} -w -Ilib -I#{BUILD_EXT_DIR} -S rspec #{args.options || 
Dir[spec/ffi/*_spec.rb].join( )} -fs --color}
-  end
-  desc Run rubinius specs
-  task :rbxspecs = TEST_DEPS do
-ENV[MRI_FFI] = 1
-sh %{#{Gem.ruby} -w -Ilib -I#{BUILD_EXT_DIR} -S rspec 
#{Dir[spec/ffi/rbx/*_spec.rb].join( )} -fs --color}
+  RSpec::Core::RakeTask.new(:spec = :compile) do |config|
+config.rspec_opts = YAML.load_file 'spec/spec.opts'
   end
+
+  TEST_DEPS.unshift :compile
 end
 
 desc Build all packages
 task :package = 'gem:package'
 
-CLOBBER.include 'build'
-CLOBBER.include FileList['lib/**/ffi_c.so']
-CLOBBER.include FileList[lib/**/ffi_c.#{RbConfig::CONFIG['DLEXT']}]
 CLOBBER.include 'lib/ffi/types.conf'
-CLOBBER.include 'conftest.dSYM'
 CLOBBER.include 'pkg'
-CLOBBER.include 'spec/ffi/fixtures/libtest.dylib'
+
+CLEAN.include 'build'
+CLEAN.include 'conftest.dSYM'
+CLEAN.include 'spec/ffi/fixtures/libtest.dylib'
+CLEAN.include FileList[pkg/ffi-#{FFI::VERSION}-*-mingw32]
+CLEAN.include FileList[pkg/ffi-#{FFI::VERSION}-java]
+CLEAN.include FileList['lib/1.*']
+CLEAN.include FileList['lib/2.*']
+CLEAN.include 'bin'
 
 task :distclean = :clobber
 
@@ -185,27 +174,23 @@
 ext.cross_platform = %w[i386-mingw32 x64-mingw32] # 
forces the Windows platform instead of the default one
   end
 
-  task 'gem:win32' = ['gem:win32-x64', 'gem:win32-i386']
+  ENV['RUBY_CC_VERSION'] ||= '1.8.7:1.9.3:2.0.0:2.1.5:2.2.1'
 
-  task 'gem:win32-i386' do
-sh(rake cross native:i386-mingw32 gem 
RUBY_CC_VERSION='1.8.7:1.9.3:2.0.0:2.1.5:2.2.1') || raise(win32-i386 build 
failed!)
-  end
-
-  task 'gem:win32-x64' do
-sh(rake cross native:x64-mingw32 gem 
RUBY_CC_VERSION='2.0.0:2.1.5:2.2.1') || raise(win32-x64 build failed!)
-  end
-
-  (ENV['RUBY_CC_VERSION'] || '1.8.7:1.9.3:2.0.0:2.1.5:2.2.1' 
).to_s.split(':').each do |ruby_version|
+  ENV['RUBY_CC_VERSION'].to_s.split(':').each do |ruby_version|
 task copy:ffi_c:i386-mingw32:#{ruby_version} do |t|
   sh i686-w64-mingw32-strip -S 
#{BUILD_DIR}/i386-mingw32/stage/lib/#{ruby_version[/^\d+\.\d+/]}/ffi_c.so
 end
-  end
 
-  (ENV['RUBY_CC_VERSION'] || '2.0.0:2.1.5:2.2.1' ).to_s.split(':').each do 

commit nodejs-mime-db for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-mime-db for openSUSE:Factory 
checked in at 2015-06-30 10:17:45

Comparing /work/SRC/openSUSE:Factory/nodejs-mime-db (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-mime-db.new (New)


Package is nodejs-mime-db

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-mime-db/nodejs-mime-db.changes
2015-04-27 13:01:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-mime-db.new/nodejs-mime-db.changes   
2015-06-30 10:17:47.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 06:01:55 UTC 2015 - i...@marguerite.su
+
+- update version 1.10.0
+
+---

Old:

  mime-db-1.0.1.tgz

New:

  mime-db-1.10.0.tgz



Other differences:
--
++ nodejs-mime-db.spec ++
--- /var/tmp/diff_new_pack.BeJG1W/_old  2015-06-30 10:17:48.0 +0200
+++ /var/tmp/diff_new_pack.BeJG1W/_new  2015-06-30 10:17:48.0 +0200
@@ -19,7 +19,7 @@
 %define base_name mime-db
 
 Name:   nodejs-mime-db
-Version:1.0.1
+Version:1.10.0
 Release:0
 Summary:Media Type Database
 License:MIT
@@ -49,7 +49,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc README.md LICENSE
+%doc README.md LICENSE HISTORY.md
 %{nodejs_modulesdir}/%{base_name}
 
 %changelog

++ mime-db-1.0.1.tgz - mime-db-1.10.0.tgz ++
 1619 lines of diff (skipped)




commit rubygem-bundler for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package rubygem-bundler for openSUSE:Factory 
checked in at 2015-06-30 10:17:49

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


Package is rubygem-bundler

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bundler/rubygem-bundler.changes  
2015-05-18 22:32:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-bundler.new/rubygem-bundler.changes 
2015-06-30 10:17:51.0 +0200
@@ -1,0 +2,77 @@
+Fri Jun 26 13:13:27 UTC 2015 - mrueck...@suse.de
+
+- update to 1.10.5
+  - don't add or update BUNDLED WITH during `install` with no
+changes (@segiddins)
+  - fix sorting of mixed DependencyLists with RubyGems = 2.23
+(#3762, @tony-spataro-rs)
+  - speed up resolver for path and git gems (@segiddins)
+  - fix `install --force` to not reinstall Bundler (#3743,
+@karlo57)
+- changes from 1.10.4
+  - don't add BUNDLED WITH to the lock when Spring runs `check`
+over and over (@indirect)
+  - display with native extensions log output correctly
+(@ivantsepp)
+  - alias `i` to `install`, `c` to `check`, and `e` to `exec`
+(@indirect)
+
+---
+Fri Jun  5 18:43:16 UTC 2015 - mrueck...@suse.de
+
+- update to 1.10.3
+  - allow missing gemspec files when validating path and git gems
+(#3686, #3698, @segiddins)
+  - fix regression in `rake install` (#3701, #3705, @segiddins)
+  - fix regression when calling `gem` with `bundle exec` or
+`-rbundler/setup` (#3699, @segiddins)
+  - fix `bundler/inline` requiring a newly-installed gem (#3693,
+@indirect, @segiddins)
+- changes from 1.10.2 (2015-05-29)
+  - fix regression in `bundle update GEM` performance introduced in
+1.10.0 (#3687, @segiddins)
+- changes from 1.10.1 (2015-05-28)
+  - silence ruby warning when running CLI commands (@segiddins)
+  - validate gemspecs in non-packaging mode (#3681, @segiddins)
+  - ensure the same chdir mutex as RubyGems is used (#3680, @segiddins)
+- changes from 1.10.0 (2015-05-28)
+  - dramatically speed up resolving some slow Gemfiles (#3635,
+@segiddins)
+  - track CI platforms running Bundler (#3646, @fotanus)
+  - allow `viz` to work with prereleases (#3621, #3217, @aprescott)
+  - validate gemspecs used in path and git gems (#3639, @segiddins,
+@indirect)
+  - stop printing config warnings when config is unchanged (#3649,
+@fotanus, @indirect)
+  - make BUNDLED WITH backwards compatible (#3623, @segiddins)
+  - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
+  - support gem extensions built into any directory on RubyGems
+2.2+ (#3582, @voxik)
+  - add 'bundler/inline' which provides a `gemfile` method (#3440,
+@segiddins)
+  - improved error reports for Gemfile errors (#3480, @segiddins)
+  - `lock` command (#3437, @segiddins)
+  - add `ignore_messages` config to suppress post-install text
+(#3510, @pducks32)
+  - improve `gem` minitest template (#3513, #3515, @arthurnn)
+  - add `install --force` to re-install installed gems (#3519,
+@segiddins)
+  - show more `outdated` information, including groups (@smlance,
+@indirect)
+  - add optional groups to the Gemfile (#3531, @jhass)
+  - accept glob argument to `gemspec` in Gemfile (#3464, @pjump)
+  - make timeouts and retries configurable via `config` (#3601,
+@pducks32)
+  - add `install_if` Gemfile method for conditional installs
+(#3611, @segiddins)
+  - standalone mode now uses builtin gems correctly (#3610,
+@segiddins)
+  - fix `rake spec:deps` on MinGW Ruby 2.0+ (#3487, @marutosi)
+  - remember all y/n answers when generating gems (#3579,
+@pducks32)
+  - use RubyGems stub specifications when possible (#3580,
+@segiddins)
+  - deprecated the (never enabled) `bundle_ruby` binary (@smlance)
+- refreshed gemspec_remove_pem.patch to apply cleanly again
+
+---

Old:

  bundler-1.9.9.gem

New:

  bundler-1.10.5.gem



Other differences:
--
++ rubygem-bundler.spec ++
--- /var/tmp/diff_new_pack.fBiNoU/_old  2015-06-30 10:17:52.0 +0200
+++ /var/tmp/diff_new_pack.fBiNoU/_new  2015-06-30 10:17:52.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-bundler
-Version:1.9.9
+Version:1.10.5
 Release:0
 %define mod_name bundler
 %define mod_full_name %{mod_name}-%{version}

++ bundler-1.9.9.gem - bundler-1.10.5.gem ++
 4788 lines of diff (skipped)

++ gemspec_remove_pem.patch ++
--- /var/tmp/diff_new_pack.fBiNoU/_old  2015-06-30 10:17:52.0 +0200
+++ /var/tmp/diff_new_pack.fBiNoU/_new  2015-06-30 

commit nodejs-is-relative for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-is-relative for 
openSUSE:Factory checked in at 2015-06-30 10:17:34

Comparing /work/SRC/openSUSE:Factory/nodejs-is-relative (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-is-relative.new (New)


Package is nodejs-is-relative

Changes:

New Changes file:

--- /dev/null   2015-06-25 09:04:34.320025005 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-is-relative.new/nodejs-is-relative.changes   
2015-06-30 10:17:35.0 +0200
@@ -0,0 +1,5 @@
+---
+Sat Jun  6 13:05:53 UTC 2015 - i...@marguerite.su
+
+- initial version 0.1.3
+

New:

  is-relative-0.1.3.tgz
  nodejs-is-relative.changes
  nodejs-is-relative.spec



Other differences:
--
++ nodejs-is-relative.spec ++
#
# spec file for package nodejs-is-relative
#
# Copyright (c) 2015 SUSE LINUX 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 is-relative

Name:   nodejs-is-relative
Version:0.1.3
Release:0
Summary:Returns true if the path appears to be relative
License:MIT
Group:  Development/Languages/Other
Url:https://github.com/jonschlinkert/is-relative
Source: 
http://registry.npmjs.org/%{base_name}/-/%{base_name}-%{version}.tgz
BuildRequires:  nodejs-packaging
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch

%nodejs_find_provides_and_requires

%description
This module returns true if the path appears to be relative.

%prep
%setup -q -n package

%build

%install
mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
cp -pr package.json index.js \
%{buildroot}%{nodejs_modulesdir}/%{base_name}/

%files
%defattr(-,root,root,-)
%doc LICENSE-MIT README.md
%{nodejs_modulesdir}/%{base_name}

%changelog



commit nodejs-qs for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-qs for openSUSE:Factory 
checked in at 2015-06-30 10:17:56

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


Package is nodejs-qs

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-qs/nodejs-qs.changes  2015-04-27 
13:02:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-qs.new/nodejs-qs.changes 2015-06-30 
10:17:56.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 06:48:20 UTC 2015 - i...@marguerite.su
+
+- update version 3.1.0
+
+---

Old:

  qs-2.2.4.tgz

New:

  qs-3.1.0.tgz



Other differences:
--
++ nodejs-qs.spec ++
--- /var/tmp/diff_new_pack.88MgMY/_old  2015-06-30 10:17:57.0 +0200
+++ /var/tmp/diff_new_pack.88MgMY/_new  2015-06-30 10:17:57.0 +0200
@@ -19,7 +19,7 @@
 %define base_name qs
 
 Name:   nodejs-qs
-Version:2.2.4
+Version:3.1.0
 Release:0
 Summary:A querystring parsing and stringifying library with some added 
security
 License:BSD-2-Clause
@@ -37,13 +37,12 @@
 
 %prep
 %setup -q -n package
-chmod 0644 package.json index.js lib/*js README.md LICENSE
 
 %build
 
 %install
 mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
-cp -pr package.json index.js lib \
+cp -pr bower.json package.json index.js lib \
 %{buildroot}%{nodejs_modulesdir}/%{base_name}/
 
 %files

++ qs-2.2.4.tgz - qs-3.1.0.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.eslintignore new/package/.eslintignore
--- old/package/.eslintignore   1970-01-01 01:00:00.0 +0100
+++ new/package/.eslintignore   2015-05-22 21:40:29.0 +0200
@@ -0,0 +1 @@
+dist
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.npmignore new/package/.npmignore
--- old/package/.npmignore  2014-08-05 00:17:36.0 +0200
+++ new/package/.npmignore  2015-05-22 21:28:05.0 +0200
@@ -16,3 +16,4 @@
 coverage.*
 lib-cov
 complexity.md
+dist
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.travis.yml new/package/.travis.yml
--- old/package/.travis.yml 2014-07-31 22:30:14.0 +0200
+++ new/package/.travis.yml 2015-03-12 18:22:27.0 +0100
@@ -1,4 +1,6 @@
 language: node_js
 
 node_js:
-  - 0.10
\ No newline at end of file
+  - 0.10
+  - 0.12
+  - iojs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/CHANGELOG.md new/package/CHANGELOG.md
--- old/package/CHANGELOG.md2014-09-05 20:43:09.0 +0200
+++ new/package/CHANGELOG.md2015-05-27 18:11:17.0 +0200
@@ -1,4 +1,46 @@
 
+## [**3.1.0**](https://github.com/hapijs/qs/issues?milestone=24state=open)
+- [**#89**](https://github.com/hapijs/qs/issues/89) Add option to disable 
Transform dot notation to bracket notation
+
+## [**3.0.0**](https://github.com/hapijs/qs/issues?milestone=23state=closed)
+- [**#77**](https://github.com/hapijs/qs/issues/77) Perf boost
+- [**#60**](https://github.com/hapijs/qs/issues/60) Add explicit option to 
disable array parsing
+- [**#80**](https://github.com/hapijs/qs/issues/80) qs.parse silently drops 
properties
+- [**#74**](https://github.com/hapijs/qs/issues/74) Bad parse when turning 
array into object
+- [**#81**](https://github.com/hapijs/qs/issues/81) Add a `filter` option
+- [**#68**](https://github.com/hapijs/qs/issues/68) Fixed issue with recursion 
and passing strings into objects.
+- [**#66**](https://github.com/hapijs/qs/issues/66) Add mixed array and object 
dot notation support Closes: #47
+- [**#76**](https://github.com/hapijs/qs/issues/76) RFC 3986
+- [**#85**](https://github.com/hapijs/qs/issues/85) No equal sign
+- [**#84**](https://github.com/hapijs/qs/issues/84) update license attribute
+
+## [**2.4.1**](https://github.com/hapijs/qs/issues?milestone=20state=closed)
+- [**#73**](https://github.com/hapijs/qs/issues/73) Property 'hasOwnProperty' 
of object #Object is not a function
+
+## [**2.4.0**](https://github.com/hapijs/qs/issues?milestone=19state=closed)
+- [**#70**](https://github.com/hapijs/qs/issues/70) Add arrayFormat option
+
+## [**2.3.3**](https://github.com/hapijs/qs/issues?milestone=18state=closed)
+- [**#59**](https://github.com/hapijs/qs/issues/59) make sure array indexes 
are = 0, closes #57
+- [**#58**](https://github.com/hapijs/qs/issues/58) make qs usable for browser 
loader
+
+## [**2.3.2**](https://github.com/hapijs/qs/issues?milestone=17state=closed)
+- [**#55**](https://github.com/hapijs/qs/issues/55) allow merging a string 
into 

commit Rivet for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package Rivet for openSUSE:Factory checked 
in at 2015-06-30 10:17:44

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


Package is Rivet

Changes:

--- /work/SRC/openSUSE:Factory/Rivet/Rivet.changes  2014-10-29 
21:10:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.Rivet.new/Rivet.changes 2015-06-30 
10:17:45.0 +0200
@@ -1,0 +2,7 @@
+Thu Jun 25 05:45:33 UTC 2015 - badshah...@gmail.com
+
+- Add Rivet-boost-configure-for-GCC5.patch to fix autoconf
+  boost macros lookup with GCC5; patch taken from boost.m4
+  upstream [https://github.com/tsuna/boost.m4].
+
+---

New:

  Rivet-boost-configure-for-GCC5.patch



Other differences:
--
++ Rivet.spec ++
--- /var/tmp/diff_new_pack.DJbwg2/_old  2015-06-30 10:17:45.0 +0200
+++ /var/tmp/diff_new_pack.DJbwg2/_new  2015-06-30 10:17:46.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package Rivet
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,14 +30,19 @@
 Patch0: Rivet-compatibility-with-old-boost.patch
 # PATCH-FIX-UPSTREAM 0001-fix_YODA_Histo1D_includes.patch sfal...@opensuse.org 
-- Fix buildfailure in MathHeader.hh by updating for YODA changing from mean 
and stdDev to xMean and xStdDev
 Patch1: 0001-fix_YODA_Histo1D_includes.patch   
+# PATCH-FIX-UPSTREAM Rivet-boost-configure-for-GCC5.patch badshah...@gmail.com 
-- Fix autoconf's boost lookup with GCC5; patch taken from boost.m4 upstream
+Patch2: Rivet-boost-configure-for-GCC5.patch
 BuildRequires:  HepMC-devel
 BuildRequires:  YODA-devel = 1.0.6
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  boost-devel
 BuildRequires:  doxygen
 BuildRequires:  fastjet-devel
 BuildRequires:  fastjet-plugin-siscone-devel
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
+BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
 BuildRequires:  texlive-latex-bin
@@ -110,6 +115,10 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
+# GCC5 used only for openSUSE  13.2
+%if 0%{?suse_version}  1320
+%patch2 -p1
+%endif
 
 # REMOVE EXISTING rivet.pc FILE, ALLOW make TO GENERATE rivet.pc FROM 
rivet.pc.in
 rm -f rivet.pc
@@ -118,6 +127,10 @@
 sed -i s| -L@GSLLIBPATH@||g rivet.pc.in
 
 %build
+# GCC5 used only for openSUSE  13.2
+%if 0%{?suse_version}  1320
+autoreconf -i
+%endif
 %configure --docdir=%{_docdir}/%{name}/
 make %{?_smp_mflags}
 

++ Rivet-boost-configure-for-GCC5.patch ++
 824 lines (skipped)




commit LHAPDF for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package LHAPDF for openSUSE:Factory checked 
in at 2015-06-30 10:17:40

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


Package is LHAPDF

Changes:

--- /work/SRC/openSUSE:Factory/LHAPDF/LHAPDF.changes2015-03-23 
12:18:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.LHAPDF.new/LHAPDF.changes   2015-06-30 
10:17:41.0 +0200
@@ -1,0 +2,7 @@
+Thu Jun 25 04:56:40 UTC 2015 - badshah...@gmail.com
+
+- Add LHAPDF-boost-configure-for-GCC5.patch to fix autoconf
+  boost macros lookup with GCC5; patch taken from boost.m4
+  upstream [https://github.com/tsuna/boost.m4].
+
+---

New:

  LHAPDF-boost-configure-for-GCC5.patch



Other differences:
--
++ LHAPDF.spec ++
--- /var/tmp/diff_new_pack.aEt64k/_old  2015-06-30 10:17:41.0 +0200
+++ /var/tmp/diff_new_pack.aEt64k/_new  2015-06-30 10:17:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package LHAPDF
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,12 +27,18 @@
 Group:  Development/Libraries/C and C++
 Url:http://lhapdf.hepforge.org
 Source: 
http://www.hepforge.org/archive/lhapdf/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM LHAPDF-boost-configure-for-GCC5.patch 
badshah...@gmail.com -- Fix autoconf's boost lookup with GCC5; patch taken from 
boost.m4 upstream
+Patch0: LHAPDF-boost-configure-for-GCC5.patch
 BuildRequires:  boost-devel = 1.53.0
 BuildRequires:  doxygen
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
 BuildRequires:  texlive-latex-bin
+# For patch0, which modifies autobuild files
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libtool
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -109,7 +115,16 @@
 %prep
 %setup -q
 
+# GCC5 used only for openSUSE  13.2
+%if 0%{?suse_version}  1320
+%patch0 -p1
+%endif
+
 %build
+# GCC5 used only for openSUSE  13.2
+%if 0%{?suse_version}  1320
+autoreconf -i
+%endif
 %configure --disable-static --docdir=%{_docdir}/%{name}/
 make %{?_smp_mflags}
 

++ LHAPDF-boost-configure-for-GCC5.patch ++
 824 lines (skipped)




commit nodejs-hoek for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-hoek for openSUSE:Factory 
checked in at 2015-06-30 10:17:32

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


Package is nodejs-hoek

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-hoek/nodejs-hoek.changes  2015-04-27 
13:01:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-hoek.new/nodejs-hoek.changes 
2015-06-30 10:17:33.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 04:39:16 UTC 2015 - i...@marguerite.su
+
+- update version 2.14.0
+
+---

Old:

  hoek-2.4.1.tgz

New:

  hoek-2.14.0.tgz



Other differences:
--
++ nodejs-hoek.spec ++
--- /var/tmp/diff_new_pack.UbVcLY/_old  2015-06-30 10:17:34.0 +0200
+++ /var/tmp/diff_new_pack.UbVcLY/_new  2015-06-30 10:17:34.0 +0200
@@ -19,7 +19,7 @@
 %define base_name hoek
 
 Name:   nodejs-hoek
-Version:2.4.1
+Version:2.14.0
 Release:0
 Summary:General purpose node utilities
 License:BSD-2-Clause
@@ -37,7 +37,7 @@
 
 %prep
 %setup -q -n package
-chmod 0644 package.json index.js lib/*.js AUTHORS README.md LICENSE 
images/*.png
+chmod 0644 index.js lib/*.js README.md LICENSE lib/*.js images/*.png
 
 %build
 
@@ -48,7 +48,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc README.md LICENSE AUTHORS
+%doc README.md LICENSE CONTRIBUTING.md
 %{nodejs_modulesdir}/%{base_name}
 
 %changelog

++ hoek-2.4.1.tgz - hoek-2.14.0.tgz ++
 4670 lines of diff (skipped)




commit nodejs-json-stringify-safe for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-json-stringify-safe for 
openSUSE:Factory checked in at 2015-06-30 10:17:38

Comparing /work/SRC/openSUSE:Factory/nodejs-json-stringify-safe (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-json-stringify-safe.new (New)


Package is nodejs-json-stringify-safe

Changes:

--- 
/work/SRC/openSUSE:Factory/nodejs-json-stringify-safe/nodejs-json-stringify-safe.changes
2015-04-27 13:01:33.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-json-stringify-safe.new/nodejs-json-stringify-safe.changes
   2015-06-30 10:17:39.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 05:28:13 UTC 2015 - i...@marguerite.su
+
+- update version 5.0.1
+
+---

Old:

  json-stringify-safe-5.0.0.tgz

New:

  json-stringify-safe-5.0.1.tgz



Other differences:
--
++ nodejs-json-stringify-safe.spec ++
--- /var/tmp/diff_new_pack.B2uzQz/_old  2015-06-30 10:17:39.0 +0200
+++ /var/tmp/diff_new_pack.B2uzQz/_new  2015-06-30 10:17:39.0 +0200
@@ -19,7 +19,7 @@
 %define base_name json-stringify-safe
 
 Name:   nodejs-json-stringify-safe
-Version:5.0.0
+Version:5.0.1
 Release:0
 Summary:Like JSON.stringify, but doesn't throw on circular references
 License:BSD-2-Clause
@@ -47,7 +47,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc README.md LICENSE
+%doc README.md LICENSE CHANGELOG.md
 %{nodejs_modulesdir}/%{base_name}
 
 %changelog

++ json-stringify-safe-5.0.0.tgz - json-stringify-safe-5.0.1.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.npmignore new/package/.npmignore
--- old/package/.npmignore  1970-01-01 01:00:00.0 +0100
+++ new/package/.npmignore  2015-05-19 03:41:30.0 +0200
@@ -0,0 +1 @@
+/*.tgz
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/CHANGELOG.md new/package/CHANGELOG.md
--- old/package/CHANGELOG.md1970-01-01 01:00:00.0 +0100
+++ new/package/CHANGELOG.md2015-05-19 03:41:30.0 +0200
@@ -0,0 +1,14 @@
+## Unreleased
+- Fixes stringify to only take ancestors into account when checking
+  circularity.  
+  It previously assumed every visited object was circular which led to [false
+  positives][issue9].  
+  Uses the tiny serializer I wrote for [Must.js][must] a year and a half ago.
+- Fixes calling the `replacer` function in the proper context (`thisArg`).
+- Fixes calling the `cycleReplacer` function in the proper context (`thisArg`).
+- Speeds serializing by a factor of
+  Big-O(h-my-god-it-linearly-searched-every-object) it had ever seen. Searching
+  only the ancestors for a circular references speeds up things considerably.
+
+[must]: https://github.com/moll/js-must
+[issue9]: https://github.com/isaacs/json-stringify-safe/issues/9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/LICENSE new/package/LICENSE
--- old/package/LICENSE 2013-02-19 20:00:08.0 +0100
+++ new/package/LICENSE 2015-05-19 03:41:59.0 +0200
@@ -1,27 +1,15 @@
-Copyright (c) Isaac Z. Schlueter (Author)
-All rights reserved.
+The ISC License
 
-The BSD License
+Copyright (c) Isaac Z. Schlueter and Contributors
 
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
 
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
-BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
-OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 

commit nodejs-write-file-atomic for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-write-file-atomic for 
openSUSE:Factory checked in at 2015-06-30 10:18:00

Comparing /work/SRC/openSUSE:Factory/nodejs-write-file-atomic (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-write-file-atomic.new (New)


Package is nodejs-write-file-atomic

Changes:

--- 
/work/SRC/openSUSE:Factory/nodejs-write-file-atomic/nodejs-write-file-atomic.changes
2015-04-27 13:02:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-write-file-atomic.new/nodejs-write-file-atomic.changes
   2015-06-30 10:18:01.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 07:24:36 UTC 2015 - i...@marguerite.su
+
+- update version 1.1.2
+
+---

Old:

  write-file-atomic-1.1.0.tgz

New:

  write-file-atomic-1.1.2.tgz



Other differences:
--
++ nodejs-write-file-atomic.spec ++
--- /var/tmp/diff_new_pack.KTdJk2/_old  2015-06-30 10:18:01.0 +0200
+++ /var/tmp/diff_new_pack.KTdJk2/_new  2015-06-30 10:18:01.0 +0200
@@ -19,7 +19,7 @@
 %define base_name write-file-atomic
 
 Name:   nodejs-%{base_name}
-Version:1.1.0
+Version:1.1.2
 Release:0
 Summary:Write files in an atomic fashion w/configurable ownership
 License:ISC
@@ -45,12 +45,9 @@
 cp -pr package.json index.js \
 %{buildroot}%{nodejs_modulesdir}/%{base_name}/
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root,-)
-%doc  README.md
+%doc LICENSE README.md
 %{nodejs_modulesdir}/%{base_name}
 
 %changelog

++ write-file-atomic-1.1.0.tgz - write-file-atomic-1.1.2.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/LICENSE new/package/LICENSE
--- old/package/LICENSE 1970-01-01 01:00:00.0 +0100
+++ new/package/LICENSE 2015-05-22 03:40:28.0 +0200
@@ -0,0 +1,6 @@
+Copyright (c) 2015, Rebecca Turner
+
+Permission to use, copy, modify, and/or distribute this software for any 
purpose with or without fee is hereby granted, provided that the above 
copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED AS IS AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 
PERFORMANCE OF THIS SOFTWARE.
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json2014-09-20 01:34:53.0 +0200
+++ new/package/package.json2015-05-22 03:53:10.0 +0200
@@ -1,6 +1,6 @@
 {
   name: write-file-atomic,
-  version: 1.1.0,
+  version: 1.1.2,
   description: Write files in an atomic fashion w/configurable ownership,
   main: index.js,
   scripts: {




commit nodejs-tough-cookie for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-tough-cookie for 
openSUSE:Factory checked in at 2015-06-30 10:17:57

Comparing /work/SRC/openSUSE:Factory/nodejs-tough-cookie (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-tough-cookie.new (New)


Package is nodejs-tough-cookie

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-tough-cookie/nodejs-tough-cookie.changes  
2015-04-27 13:04:03.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-tough-cookie.new/nodejs-tough-cookie.changes 
2015-06-30 10:17:59.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 07:22:36 UTC 2015 - i...@marguerite.su
+
+- update version 1.2.0
+
+---

Old:

  tough-cookie-0.12.1.tgz

New:

  tough-cookie-1.2.0.tgz



Other differences:
--
++ nodejs-tough-cookie.spec ++
--- /var/tmp/diff_new_pack.LoTtLc/_old  2015-06-30 10:17:59.0 +0200
+++ /var/tmp/diff_new_pack.LoTtLc/_new  2015-06-30 10:17:59.0 +0200
@@ -19,7 +19,7 @@
 %define base_name tough-cookie
 
 Name:   nodejs-tough-cookie
-Version:0.12.1
+Version:1.2.0
 Release:0
 Summary:RFC6265 Cookies and Cookie Jar for node.js
 License:MIT and MPL-1.1

++ tough-cookie-0.12.1.tgz - tough-cookie-1.2.0.tgz ++
 14627 lines of diff (skipped)




commit YODA for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package YODA for openSUSE:Factory checked in 
at 2015-06-30 10:17:42

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


Package is YODA

Changes:

--- /work/SRC/openSUSE:Factory/YODA/YODA.changes2014-10-29 
21:10:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.YODA.new/YODA.changes   2015-06-30 
10:17:43.0 +0200
@@ -1,0 +2,45 @@
+Thu Jun 25 06:28:15 UTC 2015 - badshah...@gmail.com
+
+- Add YODA-boost-configure-for-GCC5.patch to fix autoconf
+  boost macros lookup with GCC5; patch taken from boost.m4
+  upstream [https://github.com/tsuna/boost.m4].
+- Clean up some further remnants of %buildroot in python
+  byte-compiled files.
+
+---
+Thu Jun 25 06:12:08 UTC 2015 - badshah...@gmail.com
+
+- Update to version 1.3.1:
+  + Adding usefocus optional argument to some mkScatter functions,
+plus the Python bindings.
+  + Cleaning up some Python mappings of 2D histogram bin classes.
+  + Removing mappings of bin-level fill and scale operations in
+Python.
+  + Fix formatting and error handling in Python Bin and Dbn
+__repr__ methods.
+  + Add a -i/--in-place option pair on yodascale.
+  + Convert script matching options to use re search rather than
+match.
+  + Adding matching options and verbose option to yodals.
+  + Improvements and additions to ROOTCnv.h routines, particularly
+to TProfile creation: thanks to Roman Lysak for advice.
+  + Add convenience YODA/YODA.h header.
+  + yodascale now uses PointMatcher and can normalize or multiply
+to abs values or ref histos/bin ranges.
+  + Adding yoda.matcher Python sub-package with PointMatcher
+functionality. To be used in Professor 2.0 and in yodascale.
+  + Adding 'scat2' type to yodahist.
+  + Add match/unmatch args to all conversion scripts, via a new
+Python yoda.script_helpers function.
+  + Script updates, improved docstrings, and improved tab
+completion.
+  + Add a yoda.plotting sub-module, based on matplotlib.
+  + Small build improvements.
+  + Handle overflow filling in binned types without invoking an
+exception.
+  + Change inRange to have non-fuzzy comparison behaviour.
+  + Improving/adding __div__ functions in Python for all binned
+types.
+  + Add std:: prefix to isinf() calls in BinSearcher.h.
+
+---

Old:

  YODA-1.3.0.tar.bz2

New:

  YODA-1.3.1.tar.bz2
  YODA-boost-configure-for-GCC5.patch



Other differences:
--
++ YODA.spec ++
--- /var/tmp/diff_new_pack.DKfPQ6/_old  2015-06-30 10:17:44.0 +0200
+++ /var/tmp/diff_new_pack.DKfPQ6/_new  2015-06-30 10:17:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package YODA
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,18 +19,24 @@
 %define so_name lib%{name}
 
 Name:   YODA
-Version:1.3.0
+Version:1.3.1
 Release:0
 Summary:A small set of data analysis classes for MC event generator 
validation analyses
 License:GPL-2.0
 Group:  Development/Libraries/C and C++
 Url:http://yoda.hepforge.org/
 Source: http://www.hepforge.org/archive/yoda/%{name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM YODA-boost-configure-for-GCC5.patch badshah...@gmail.com 
-- Fix autoconf's boost lookup with GCC5; patch taken from boost.m4 upstream
+Patch0: YODA-boost-configure-for-GCC5.patch
 BuildRequires:  boost-devel
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
 BuildRequires:  python-Cython
 BuildRequires:  python-devel
+# For patch0, which modifies autobuild files
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libtool
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -99,8 +105,16 @@
 
 %prep
 %setup -q
+# GCC5 used only for openSUSE  13.2
+%if 0%{?suse_version}  1320
+%patch0 -p1
+%endif
 
 %build
+# GCC5 used only for openSUSE  13.2
+%if 0%{?suse_version}  1320
+autoreconf -i
+%endif
 %configure
 make %{?_smp_mflags}
 
@@ -110,7 +124,7 @@
 find %{buildroot}%{_libdir}/ -name *.la -delete
 
 # Remove traces of BUILDROOT from files
-sed -i s|%{buildroot}|| %{buildroot}%{python_sitearch}/yoda/*.pyc
+sed -i s|%{buildroot}||g %{buildroot}%{python_sitearch}/yoda/*.pyc
 
 %post -n %{so_name}
 /sbin/ldconfig
@@ -132,6 +146,7 @@
 %{_bindir}/yoda2flat
 %{_bindir}/yoda-config
 %{_bindir}/yodamerge

commit octave-forge-cgi for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package octave-forge-cgi for 
openSUSE:Factory checked in at 2015-06-30 10:18:08

Comparing /work/SRC/openSUSE:Factory/octave-forge-cgi (Old)
 and  /work/SRC/openSUSE:Factory/.octave-forge-cgi.new (New)


Package is octave-forge-cgi

Changes:

--- /work/SRC/openSUSE:Factory/octave-forge-cgi/octave-forge-cgi.changes
2015-06-16 15:10:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.octave-forge-cgi.new/octave-forge-cgi.changes   
2015-06-30 10:18:09.0 +0200
@@ -1,0 +2,6 @@
+Sat Jun 27 07:46:00 UTC 2015 - dmitr...@opensuse.org
+
+- Update to version 0.1.1
+  * Implement semicolon as parameter separator
+
+---

Old:

  cgi-0.1.0.tar.gz

New:

  cgi-0.1.1.tar.gz



Other differences:
--
++ octave-forge-cgi.spec ++
--- /var/tmp/diff_new_pack.txTWeJ/_old  2015-06-30 10:18:09.0 +0200
+++ /var/tmp/diff_new_pack.txTWeJ/_new  2015-06-30 10:18:09.0 +0200
@@ -18,7 +18,7 @@
 
 %define octpkg  cgi
 Name:   octave-forge-%{octpkg}
-Version:0.1.0
+Version:0.1.1
 Release:0
 Summary:Common Gataway Interface for Octave
 License:GPL-2.0+
@@ -27,7 +27,7 @@
 Source0:
http://downloads.sourceforge.net/octave/%{octpkg}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRequires:  octave-devel
-Requires:   octave-cli = 3.4.0
+Requires:   octave-cli = 3.8.0
 
 %description
 Common Gateway Interface for Octave.

++ cgi-0.1.0.tar.gz - cgi-0.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi/DESCRIPTION new/cgi/DESCRIPTION
--- old/cgi/DESCRIPTION 2012-11-20 20:57:24.0 +0100
+++ new/cgi/DESCRIPTION 2015-06-22 22:33:12.0 +0200
@@ -1,11 +1,11 @@
 Name: cgi
-Version: 0.1.0
-Date: 2012-11-20
+Version: 0.1.1
+Date: 2015-06-22
 Author: Alexander Barth barth.alexan...@gmail.com
 Maintainer: Alexander Barth barth.alexan...@gmail.com
 Title: cgi
 Description: Common Gatway Interface for Octave
 Categories: Web development
-Depends: octave (= 3.4.0)
+Depends: octave (= 3.8.0)
 License: GPLv2+
 Url: http://octave.sf.net, 
http://modb.oce.ulg.ac.be/mediawiki/index.php/CGI_programming_with_Octave
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi/NEWS new/cgi/NEWS
--- old/cgi/NEWS2012-11-20 20:23:59.0 +0100
+++ new/cgi/NEWS2015-06-22 22:33:12.0 +0200
@@ -1,3 +1,8 @@
+Summary of important user-visible changes for cgi 0.1.1:
+---
+
+ ** Implement semicolon as parameter separator
+
 Summary of important user-visible changes for cgi 0.1.0:
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi/doc/test_cgi.sh new/cgi/doc/test_cgi.sh
--- old/cgi/doc/test_cgi.sh 2012-11-20 20:23:59.0 +0100
+++ new/cgi/doc/test_cgi.sh 2015-06-22 22:33:12.0 +0200
@@ -1,8 +1,35 @@
+
 export DOCUMENT_ROOT=/var/www 
 export REQUEST_METHOD=GET
 export QUERY_STRING=x=50%2C1,2y=1,2,3len=10name=testfield=random_field 
 
+echo Test GET request
+octave -q EOF
+CGI = cgi();
+disp(CGI.form.y)
+assert(strcmp(CGI.form.y,'1,2,3'))
+assert(strcmp(CGI.form.field,'random_field'))
+disp('All tests passed');
+EOF
+
+echo Test GET request (with semicolon)
+
+export QUERY_STRING=x=50%2C1,2;y=1,2,3;len=10;name=test;field=random_field 
+
 octave -q EOF
 CGI = cgi();
-disp(cgi.form.y)
-EOF
\ No newline at end of file
+assert(strcmp(CGI.form.y,'1,2,3'))
+assert(strcmp(CGI.form.field,'random_field'))
+disp('All tests passed');
+EOF
+
+echo Test POST request
+
+export DOCUMENT_ROOT=/var/www 
+export REQUEST_METHOD=POST 
+export CONTENT_TYPE=application/x-www-form-urlencoded
+export CONTENT_LENGTH=54
+
+echo x=50%2C1,2y=1,2,3len=10name=testfield=random_field | \
+octave -qH --eval CGI = cgi(); assert(strcmp(CGI.form.y,'1,2,3')); 
disp('All tests passed');;
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi/doc/test_cgi_post.m new/cgi/doc/test_cgi_post.m
--- old/cgi/doc/test_cgi_post.m 2012-11-20 20:23:59.0 +0100
+++ new/cgi/doc/test_cgi_post.m 1970-01-01 01:00:00.0 +0100
@@ -1,5 +0,0 @@
-#!/usr/bin/octave -qH
-
-
-CGI = cgi();
-CGI.form.y
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi/doc/test_cgi_post.sh new/cgi/doc/test_cgi_post.sh
--- old/cgi/doc/test_cgi_post.sh2012-11-20 20:23:59.0 +0100
+++ new/cgi/doc/test_cgi_post.sh1970-01-01 

commit bitlbee for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package bitlbee for openSUSE:Factory checked 
in at 2015-06-30 10:18:10

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


Package is bitlbee

Changes:

--- /work/SRC/openSUSE:Factory/bitlbee/bitlbee.changes  2015-06-16 
14:06:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.bitlbee.new/bitlbee.changes 2015-06-30 
10:18:11.0 +0200
@@ -1,0 +2,29 @@
+Fri Jun 26 17:33:25 UTC 2015 - lmue...@suse.com
+
+- update to 3.4.1:
+  msn:
+  + Upgraded protocol to MSNP21, works again (dx)
+  + Contact list management, groupchats and skype username logins won't work.
+Next release!
+ jabber:
+  + Add hipchat protocol, for smoother login. Takes the same username as the
+official client. Note that unlike the 'hip-cat' branch, this doesn't
+preload channels. https://wiki.bitlbee.org/HowtoHipchat for details (dx)
+  + Fixed a bug when receiving topics set by people who left the channel (dx)
+  + Create fake users instead of showing unknown participant errors (dx)
+  + Gmail mail notifications support (Artem Savkov)
+  + Lowering xmpp presence priority on away (Artem Savkov)
+  twitter:
+  + Show quoted tweets/RTs with comment inline (wilmer)
+  + Added url command, can be used to quote tweets (wilmer)
+  + Make replies to self work (wilmer)
+  Building documentation is now done with a python script (both 2.x/3.x work)
+  Asciidoc/xsltproc/xmlto are no longer build dependencies (dx)
+- Require w3m at built time to generate the userguide in html format.
+
+---
+Thu Jun 25 08:43:47 UTC 2015 - vmik...@vmiklos.hu
+
+- Fix typo in systemd service
+
+---

Old:

  bitlbee-3.4.tar.gz

New:

  bitlbee-3.4.1.tar.gz



Other differences:
--
++ bitlbee.spec ++
--- /var/tmp/diff_new_pack.pnFdfc/_old  2015-06-30 10:18:12.0 +0200
+++ /var/tmp/diff_new_pack.pnFdfc/_new  2015-06-30 10:18:12.0 +0200
@@ -37,7 +37,7 @@
  %define daemon_piddir %{_localstatedir}/run/%{name}
 %endif
 Name:   bitlbee
-Version:3.4
+Version:3.4.1
 Release:0
 Summary:IRC to other Chat Networks Gateway
 License:GPL-2.0
@@ -55,6 +55,7 @@
 BuildRequires:  lzo-devel
 BuildRequires:  make
 BuildRequires:  pkgconfig
+BuildRequires:  w3m
 BuildRequires:  zlib-devel
 Requires:   logrotate
 Requires:   xinetd
@@ -203,6 +204,9 @@
 echo %doc %{_docdir}/%{name}/$b $LM
 done
 
+pushd doc/user-guide
+make user-guide.html user-guide.txt
+popd
 install -d %{buildroot}%{_docdir}/%{name}/user-guide
 cp -a doc/user-guide/*.{txt,html} %{buildroot}%{_docdir}/%{name}/user-guide/
 

++ bitlbee-3.4.tar.gz - bitlbee-3.4.1.tar.gz ++
 11826 lines of diff (skipped)

++ bitlbee.service-suse.in ++
--- /var/tmp/diff_new_pack.pnFdfc/_old  2015-06-30 10:18:12.0 +0200
+++ /var/tmp/diff_new_pack.pnFdfc/_new  2015-06-30 10:18:12.0 +0200
@@ -10,7 +10,7 @@
 # /usr/sbin/rcbitlbee
 
 [Unit]
-Description=Bitblee Daemonm the IM to IRC gateway
+Description=Bitblee Daemon the IM to IRC gateway
 After=network.target
 
 [Service]




commit nodejs-caseless for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-caseless for openSUSE:Factory 
checked in at 2015-06-30 10:17:05

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


Package is nodejs-caseless

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-caseless/nodejs-caseless.changes  
2015-04-27 13:00:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-caseless.new/nodejs-caseless.changes 
2015-06-30 10:17:06.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 26 17:37:25 UTC 2015 - i...@marguerite.su
+
+- update version 0.10.0
+
+---

Old:

  caseless-0.6.0.tgz

New:

  caseless-0.10.0.tgz



Other differences:
--
++ nodejs-caseless.spec ++
--- /var/tmp/diff_new_pack.39Okbx/_old  2015-06-30 10:17:07.0 +0200
+++ /var/tmp/diff_new_pack.39Okbx/_new  2015-06-30 10:17:07.0 +0200
@@ -19,7 +19,7 @@
 %define base_name caseless
 
 Name:   nodejs-caseless
-Version:0.6.0
+Version:0.10.0
 Release:0
 Summary:Caseless object set/get/has
 License:BSD-2-Clause

++ caseless-0.6.0.tgz - caseless-0.10.0.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/README.md new/package/README.md
--- old/package/README.md   2014-03-19 01:24:53.0 +0100
+++ new/package/README.md   2015-01-12 14:13:34.0 +0100
@@ -1,6 +1,6 @@
 ## Caseless -- wrap an object to set and get property with caseless semantics 
but also preserve caseing.
 
-This library is incredibly useful when working with HTTP headers. It allows 
you to get/set/check for headers in a caseless manor while also preserving the 
caseing of headers the first time they are set.
+This library is incredibly useful when working with HTTP headers. It allows 
you to get/set/check for headers in a caseless manner while also preserving the 
caseing of headers the first time they are set.
 
 ## Usage
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/index.js new/package/index.js
--- old/package/index.js2014-08-12 00:11:57.0 +0200
+++ new/package/index.js2015-01-12 14:13:34.0 +0100
@@ -1,5 +1,5 @@
 function Caseless (dict) {
-  this.dict = dict
+  this.dict = dict || {}
 }
 Caseless.prototype.set = function (name, value, clobber) {
   if (typeof name === 'object') {
@@ -25,12 +25,12 @@
   return false
 }
 Caseless.prototype.get = function (name) {
-  var result, re, match
+  name = name.toLowerCase()
+  var result, _key
   var headers = this.dict
   Object.keys(headers).forEach(function (key) {
-re = new RegExp(name, 'i')
-match = key.match(re)
-if (match) result = headers[key]
+_key = key.toLowerCase()
+if (name === _key) result = headers[key]
   })
   return result
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json2014-08-12 00:12:27.0 +0200
+++ new/package/package.json2015-03-13 17:44:28.0 +0100
@@ -1,6 +1,6 @@
 {
   name: caseless,
-  version: 0.6.0,
+  version: 0.10.0,
   description: Caseless object set/get/has, very useful when working with 
HTTP headers.,
   main: index.js,
   scripts: {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/test.js new/package/test.js
--- old/package/test.js 2014-07-24 04:21:17.0 +0200
+++ new/package/test.js 2015-01-12 14:13:34.0 +0100
@@ -6,7 +6,7 @@
   var headers = {}
 , c = caseless(headers)
 ;
-  t.plan(14)
+  t.plan(17)
   c.set('a-Header', 'asdf')
   t.equal(c.get('a-header'), 'asdf')
   t.equal(c.has('a-header'), 'a-Header')
@@ -30,4 +30,11 @@
   t.notOk(c.has('idonotexist'))
   t.ok(c.del('idonotexist'))
 
+  c.set('tva', 'test1')
+  c.set('tva-header', 'test2')
+  t.equal(c.has('tva'), 'tva')
+  t.notOk(c.has('header'))
+
+  t.equal(c.get('tva'), 'test1')
+
 })




commit nodejs-oauth-sign for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-oauth-sign for 
openSUSE:Factory checked in at 2015-06-30 10:17:54

Comparing /work/SRC/openSUSE:Factory/nodejs-oauth-sign (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-oauth-sign.new (New)


Package is nodejs-oauth-sign

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-oauth-sign/nodejs-oauth-sign.changes  
2015-04-27 13:03:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-oauth-sign.new/nodejs-oauth-sign.changes 
2015-06-30 10:17:56.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 06:42:32 UTC 2015 - i...@marguerite.su
+
+- update version 0.8.0
+
+---

Old:

  oauth-sign-0.4.0.tgz

New:

  oauth-sign-0.8.0.tgz



Other differences:
--
++ nodejs-oauth-sign.spec ++
--- /var/tmp/diff_new_pack.1pTsTe/_old  2015-06-30 10:17:56.0 +0200
+++ /var/tmp/diff_new_pack.1pTsTe/_new  2015-06-30 10:17:56.0 +0200
@@ -19,7 +19,7 @@
 %define base_name oauth-sign
 
 Name:   nodejs-oauth-sign
-Version:0.4.0
+Version:0.8.0
 Release:0
 Summary:OAuth 1 signing
 License:Apache-2.0

++ oauth-sign-0.4.0.tgz - oauth-sign-0.8.0.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/index.js new/package/index.js
--- old/package/index.js2013-09-24 00:58:43.0 +0200
+++ new/package/index.js2015-05-28 12:33:40.0 +0200
@@ -6,6 +6,10 @@
   return crypto.createHmac('sha1', key).update(body).digest('base64')
 }
 
+function rsa (key, body) {
+  return crypto.createSign(RSA-SHA1).update(body).sign(key, 'base64');
+}
+
 function rfc3986 (str) {
   return encodeURIComponent(str)
 .replace(/!/g,'%21')
@@ -26,6 +30,9 @@
 if (Array.isArray(val))
   for (var i = 0; i  val.length; i++)
 arr.push([key, val[i]])
+else if (typeof val === object)
+  for (var prop in val)
+arr.push([key + '[' + prop + ']', val[prop]]);
 else
   arr.push([key, val])
   }
@@ -37,7 +44,7 @@
   return a  b ? 1 : a  b ? -1 : 0
 }
 
-function hmacsign (httpMethod, base_uri, params, consumer_secret, 
token_secret) {
+function generateBase (httpMethod, base_uri, params) {
   // adapted from https://dev.twitter.com/docs/auth/oauth and 
   // https://dev.twitter.com/docs/auth/creating-signature
 
@@ -69,6 +76,11 @@
 rfc3986(normalized)
   ].join('')
 
+  return base
+}
+
+function hmacsign (httpMethod, base_uri, params, consumer_secret, 
token_secret) {
+  var base = generateBase(httpMethod, base_uri, params)
   var key = [
 consumer_secret || '',
 token_secret || ''
@@ -77,5 +89,46 @@
   return sha1(key, base)
 }
 
+function rsasign (httpMethod, base_uri, params, private_key, token_secret) {
+  var base = generateBase(httpMethod, base_uri, params)
+  var key = private_key || ''
+
+  return rsa(key, base)
+}
+
+function plaintext (consumer_secret, token_secret) {
+  var key = [
+consumer_secret || '',
+token_secret || ''
+  ].map(rfc3986).join('')
+
+  return key
+}
+
+function sign (signMethod, httpMethod, base_uri, params, consumer_secret, 
token_secret) {
+  var method
+  var skipArgs = 1
+
+  switch (signMethod) {
+case 'RSA-SHA1':
+  method = rsasign
+  break
+case 'HMAC-SHA1':
+  method = hmacsign
+  break
+case 'PLAINTEXT':
+  method = plaintext
+  skipArgs = 4
+  break
+default:
+ throw new Error(Signature method not supported:  + signMethod)
+  }
+
+  return method.apply(null, [].slice.call(arguments, skipArgs))
+}
+
 exports.hmacsign = hmacsign
+exports.rsasign = rsasign
+exports.plaintext = plaintext
+exports.sign = sign
 exports.rfc3986 = rfc3986
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json2013-09-24 00:58:45.0 +0200
+++ new/package/package.json2015-05-28 12:41:43.0 +0200
@@ -2,7 +2,8 @@
   author: Mikeal Rogers mikeal.rog...@gmail.com 
(http://www.futurealoof.com),
   name: oauth-sign,
   description: OAuth 1 signing. Formerly a vendor lib in mikeal/request, 
now a standalone module.,
-  version: 0.4.0,
+  version: 0.8.0,
+  license: Apache-2.0,
   repository: {
 url: https://github.com/mikeal/oauth-sign;
   },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/test.js new/package/test.js
--- old/package/test.js 2013-09-24 00:58:43.0 +0200
+++ new/package/test.js 2015-05-28 12:33:40.0 +0200
@@ -1,4 +1,5 @@
-var hmacsign = require('./index').hmacsign
+var oauth = require('./index')
+  , hmacsign = 

commit wine for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package wine for openSUSE:Factory checked in 
at 2015-06-30 10:18:02

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


Package is wine

Changes:

--- /work/SRC/openSUSE:Factory/wine/wine.changes2015-06-24 
20:55:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.wine.new/wine.changes   2015-06-30 
10:18:03.0 +0200
@@ -1,0 +2,11 @@
+Fri Jun 26 12:18:00 UTC 2015 - meiss...@suse.com
+
+- Updated to 1.7.46 development snapshot 
+  - Improvements in the BITS file transfer service.
+  - Still more progress on DirectWrite implementation.
+  - Support for shared user data on 64-bit.
+  - Various C++ runtime improvements.
+  - Some more support for the 64-bit ARM platform.
+  - Various bug fixes.
+
+---

Old:

  wine-1.7.45.tar.bz2
  wine-1.7.45.tar.bz2.sign

New:

  wine-1.7.46.tar.bz2
  wine-1.7.46.tar.bz2.sign



Other differences:
--
++ wine.spec ++
--- /var/tmp/diff_new_pack.RzHU5H/_old  2015-06-30 10:18:05.0 +0200
+++ /var/tmp/diff_new_pack.RzHU5H/_new  2015-06-30 10:18:05.0 +0200
@@ -56,7 +56,7 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  valgrind-devel
 BuildRequires:  xorg-x11-devel
-Version:1.7.45
+Version:1.7.46
 Release:0
 Summary:An MS Windows Emulator
 License:LGPL-2.1+

++ wine-1.7.45.tar.bz2 - wine-1.7.46.tar.bz2 ++
/work/SRC/openSUSE:Factory/wine/wine-1.7.45.tar.bz2 
/work/SRC/openSUSE:Factory/.wine.new/wine-1.7.46.tar.bz2 differ: char 11, line 1





commit nodejs-node-uuid for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-node-uuid for 
openSUSE:Factory checked in at 2015-06-30 10:17:47

Comparing /work/SRC/openSUSE:Factory/nodejs-node-uuid (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-node-uuid.new (New)


Package is nodejs-node-uuid

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-node-uuid/nodejs-node-uuid.changes
2015-04-27 13:03:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-node-uuid.new/nodejs-node-uuid.changes   
2015-06-30 10:17:48.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 06:18:23 UTC 2015 - i...@marguerite.su
+
+- update version 1.4.3
+
+---

Old:

  node-uuid-1.4.1.tgz

New:

  node-uuid-1.4.3.tgz



Other differences:
--
++ nodejs-node-uuid.spec ++
--- /var/tmp/diff_new_pack.REsnyE/_old  2015-06-30 10:17:49.0 +0200
+++ /var/tmp/diff_new_pack.REsnyE/_new  2015-06-30 10:17:49.0 +0200
@@ -19,7 +19,7 @@
 %define base_name node-uuid
 
 Name:   nodejs-node-uuid
-Version:1.4.1
+Version:1.4.3
 Release:0
 Summary:Generate RFC-compliant UUIDs in JavaScript
 License:MIT
@@ -42,7 +42,7 @@
 
 %install
 mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
-cp -pr *.json uuid.js benchmark \
+cp -pr *.json uuid.js benchmark bin \
 %{buildroot}%{nodejs_modulesdir}/%{base_name}/
 
 %files

++ node-uuid-1.4.1.tgz - node-uuid-1.4.3.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/LICENSE.md new/package/LICENSE.md
--- old/package/LICENSE.md  2012-10-22 19:34:32.0 +0200
+++ new/package/LICENSE.md  2015-03-05 20:29:36.0 +0100
@@ -1,2 +1,21 @@
-Copyright (c) 2010-2012 Robert Kieffer
-MIT License - http://opensource.org/licenses/mit-license.php
+The MIT License (MIT)
+
+Copyright (c)  2010-2012 Robert Kieffer 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/README.md new/package/README.md
--- old/package/README.md   2013-08-17 14:49:57.0 +0200
+++ new/package/README.md   2015-03-05 20:29:36.0 +0100
@@ -10,6 +10,7 @@
 * Cryptographically strong random # generation on supporting platforms
 * 1.1K minified and gzip'ed  (Want something smaller?  Check this [crazy 
shit](https://gist.github.com/982883) out! )
 * [Annotated source code](http://broofa.github.com/node-uuid/docs/uuid.html)
+* Comes with a Command Line Interface for generating uuids on the command line
 
 ## Getting Started
 
@@ -160,13 +161,48 @@
 
 The class of container created when generating binary uuid data if no buffer 
argument is specified.  This is expected to go away, with no replacement API.
 
+## Command Line Interface
+
+To use the executable, it's probably best to install this library globally.
+
+`npm install -g node-uuid`
+
+Usage:
+
+```
+USAGE: uuid [version] [options]
+
+
+options:
+
+--help Display this message and exit
+```
+
+`version` must be an RFC4122 version that is supported by this library, which 
is currently version 1 and version 4 (denoted by v1 and v4, respectively). 
`version` defaults to version 4 when not supplied.
+
+### Examples
+
+```
+ uuid
+3a91f950-dec8-4688-ba14-5b7bbfc7a563
+```
+
+```
+ uuid v1
+9d0b43e0-7696-11e3-964b-250efa37a98e
+```
+
+```
+ uuid v4
+6790ac7c-24ac-4f98-8464-42f6d98a53ae
+```
+
 ## Testing
 
 In node.js
 
 ```
- cd test
- node test.js
+npm test
 ```
 
 In Browser
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/bin/uuid new/package/bin/uuid
--- old/package/bin/uuid

commit nodejs-hawk for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-hawk for openSUSE:Factory 
checked in at 2015-06-30 10:17:30

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


Package is nodejs-hawk

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-hawk/nodejs-hawk.changes  2015-04-27 
13:01:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-hawk.new/nodejs-hawk.changes 
2015-06-30 10:17:32.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 04:36:17 UTC 2015 - i...@marguerite.su
+
+- update version 2.3.1
+
+---

Old:

  hawk-2.3.0.tgz

New:

  hawk-2.3.1.tgz



Other differences:
--
++ nodejs-hawk.spec ++
--- /var/tmp/diff_new_pack.N1yT3a/_old  2015-06-30 10:17:33.0 +0200
+++ /var/tmp/diff_new_pack.N1yT3a/_new  2015-06-30 10:17:33.0 +0200
@@ -19,7 +19,7 @@
 %define base_name hawk
 
 Name:   nodejs-hawk
-Version:2.3.0
+Version:2.3.1
 Release:0
 Summary:HTTP Hawk Authentication Scheme
 License:BSD-2-Clause

++ hawk-2.3.0.tgz - hawk-2.3.1.tgz ++
 1674 lines of diff (skipped)




commit nodejs-forever-agent for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-forever-agent for 
openSUSE:Factory checked in at 2015-06-30 10:17:19

Comparing /work/SRC/openSUSE:Factory/nodejs-forever-agent (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-forever-agent.new (New)


Package is nodejs-forever-agent

Changes:

--- 
/work/SRC/openSUSE:Factory/nodejs-forever-agent/nodejs-forever-agent.changes
2015-04-27 13:00:57.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-forever-agent.new/nodejs-forever-agent.changes
   2015-06-30 10:17:20.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun 27 03:23:34 UTC 2015 - i...@marguerite.su
+
+- update version 0.6.1
+
+---

Old:

  forever-agent-0.5.2.tgz

New:

  forever-agent-0.6.1.tgz



Other differences:
--
++ nodejs-forever-agent.spec ++
--- /var/tmp/diff_new_pack.A5mTsb/_old  2015-06-30 10:17:20.0 +0200
+++ /var/tmp/diff_new_pack.A5mTsb/_new  2015-06-30 10:17:20.0 +0200
@@ -19,7 +19,7 @@
 %define base_name forever-agent
 
 Name:   nodejs-forever-agent
-Version:0.5.2
+Version:0.6.1
 Release:0
 Summary:HTTP Agent that keeps socket connections alive
 License:Apache-2.0

++ forever-agent-0.5.2.tgz - forever-agent-0.6.1.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/index.js new/package/index.js
--- old/package/index.js2014-02-04 23:54:09.0 +0100
+++ new/package/index.js2015-04-07 19:02:26.0 +0200
@@ -6,6 +6,17 @@
   , net = require('net')
   , tls = require('tls')
   , AgentSSL = require('https').Agent
+  
+function getConnectionName(host, port) {  
+  var name = ''
+  if (typeof host === 'string') {
+name = host + ':' + port
+  } else {
+// For node.js v012.0 and iojs-v1.5.1, host is an object. And any existing 
localAddress is part of the connection name.
+name = host.host + ':' + host.port + ':' + (host.localAddress ? 
(host.localAddress + ':') : ':')
+  }
+  return name
+}
 
 function ForeverAgent(options) {
   var self = this
@@ -16,7 +27,8 @@
   self.maxSockets = self.options.maxSockets || Agent.defaultMaxSockets
   self.minSockets = self.options.minSockets || ForeverAgent.defaultMinSockets
   self.on('free', function(socket, host, port) {
-var name = host + ':' + port
+var name = getConnectionName(host, port)
+
 if (self.requests[name]  self.requests[name].length) {
   self.requests[name].shift().onSocket(socket)
 } else if (self.sockets[name].length  self.minSockets) {
@@ -47,7 +59,14 @@
 ForeverAgent.prototype.createConnection = net.createConnection
 ForeverAgent.prototype.addRequestNoreuse = Agent.prototype.addRequest
 ForeverAgent.prototype.addRequest = function(req, host, port) {
-  var name = host + ':' + port
+  var name = getConnectionName(host, port)
+  
+  if (typeof host !== 'string') {
+var options = host
+port = options.port
+host = options.host
+  }
+
   if (this.freeSockets[name]  this.freeSockets[name].length  0  
!req.useChunkedEncodingByDefault) {
 var idleSocket = this.freeSockets[name].pop()
 idleSocket.removeListener('error', idleSocket._onIdleError)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json2014-02-04 23:54:58.0 +0100
+++ new/package/package.json2015-04-07 19:03:23.0 +0200
@@ -2,7 +2,8 @@
   author: Mikeal Rogers mikeal.rog...@gmail.com 
(http://www.futurealoof.com),
   name: forever-agent,
   description: HTTP Agent that keeps socket connections alive between 
keep-alive requests. Formerly part of mikeal/request, now a standalone module.,
-  version: 0.5.2,
+  version: 0.6.1,
+  license: Apache-2.0,
   repository: {
 url: https://github.com/mikeal/forever-agent;
   },




commit nodejs-delegates for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-delegates for 
openSUSE:Factory checked in at 2015-06-30 10:17:17

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


Package is nodejs-delegates

Changes:

New Changes file:

--- /dev/null   2015-06-25 09:04:34.320025005 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-delegates.new/nodejs-delegates.changes   
2015-06-30 10:17:18.0 +0200
@@ -0,0 +1,5 @@
+---
+Fri Jun 26 18:13:41 UTC 2015 - i...@marguerite.su
+
+- initial version 0.1.0
+

New:

  delegates-0.1.0.tgz
  nodejs-delegates.changes
  nodejs-delegates.spec



Other differences:
--
++ nodejs-delegates.spec ++
#
# spec file for package nodejs-delegates
#
# Copyright (c) 2015 SUSE LINUX 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 delegates

Name:   nodejs-delegates
Version:0.1.0
Release:0
Summary:Node method and accessor delegation utilty
License:MIT
Group:  Development/Languages/Other
Url:https://github.com/visionmedia/node-delegates
Source: 
http://registry.npmjs.org/%{base_name}/-/%{base_name}-%{version}.tgz
BuildRequires:  nodejs-packaging
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch

%nodejs_find_provides_and_requires

%description
delegate methods and accessors to another property

%prep
%setup -q -n package

%build

%install
mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
cp -pr package.json index.js \
%{buildroot}%{nodejs_modulesdir}/%{base_name}/

%files
%defattr(-,root,root,-)
%doc Readme.md History.md
%{nodejs_modulesdir}/%{base_name}

%changelog



commit rubygem-daemons for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package rubygem-daemons for openSUSE:Factory 
checked in at 2015-06-30 10:16:37

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


Package is rubygem-daemons

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-daemons/rubygem-daemons.changes  
2015-03-25 10:01:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-daemons.new/rubygem-daemons.changes 
2015-06-30 10:16:37.0 +0200
@@ -1,0 +2,6 @@
+Fri Jun 26 04:33:13 UTC 2015 - co...@suse.com
+
+- updated to version 1.2.3
+  no changelog found
+
+---

Old:

  daemons-1.2.2.gem

New:

  daemons-1.2.3.gem



Other differences:
--
++ rubygem-daemons.spec ++
--- /var/tmp/diff_new_pack.5iT6XY/_old  2015-06-30 10:16:38.0 +0200
+++ /var/tmp/diff_new_pack.5iT6XY/_new  2015-06-30 10:16:38.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-daemons
-Version:1.2.2
+Version:1.2.3
 Release:0
 %define mod_name daemons
 %define mod_full_name %{mod_name}-%{version}

++ daemons-1.2.2.gem - daemons-1.2.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Releases new/Releases
--- old/Releases2015-03-17 20:35:46.0 +0100
+++ new/Releases2015-06-25 22:24:19.0 +0200
@@ -1,5 +1,9 @@
 = Daemons Release History
 
+== Release 1.2.3: June 25, 2015
+
+* fix: ApplicationGroup now waits on subprocesses in start_all (thanks to 
tobithiel)
+
 == Release 1.2.2: March 17, 2015
 
 * fix 100% CPU usage bug when using monitor mode.
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/examples/run/ctrl_monitor_nocrash.rb 
new/examples/run/ctrl_monitor_nocrash.rb
--- old/examples/run/ctrl_monitor_nocrash.rb1970-01-01 01:00:00.0 
+0100
+++ new/examples/run/ctrl_monitor_nocrash.rb2015-06-25 22:24:19.0 
+0200
@@ -0,0 +1,15 @@
+lib_dir = File.expand_path(File.join(File.dirname(__FILE__), '../../lib'))
+
+if File.exist?(File.join(lib_dir, 'daemons.rb'))
+  $LOAD_PATH.unshift lib_dir
+else
+  begin; require 'rubygems'; rescue ::Exception; end
+end
+
+require 'daemons'
+
+options = {
+  :monitor = true
+}
+
+Daemons.run(File.join(File.dirname(__FILE__), 'myserver.rb'), options)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/daemons/application_group.rb 
new/lib/daemons/application_group.rb
--- old/lib/daemons/application_group.rb2015-03-17 20:35:46.0 
+0100
+++ new/lib/daemons/application_group.rb2015-06-25 22:24:19.0 
+0200
@@ -146,11 +146,13 @@
   @monitor.stop if @monitor
   @monitor = nil
 
+  pids = []
   @applications.each do |a|
-fork do
+pids  fork do
   a.start
 end
   end
+  pids.each { |pid| Process.waitpid(pid) }
 end
 
 def stop_all(no_wait = false)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/daemons/version.rb new/lib/daemons/version.rb
--- old/lib/daemons/version.rb  2015-03-17 20:35:46.0 +0100
+++ new/lib/daemons/version.rb  2015-06-25 22:24:19.0 +0200
@@ -1,3 +1,3 @@
 module Daemons
-  VERSION = '1.2.2'
+  VERSION = '1.2.3'
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2015-03-17 20:35:46.0 +0100
+++ new/metadata2015-06-25 22:24:19.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: daemons
 version: !ruby/object:Gem::Version
-  version: 1.2.2
+  version: 1.2.3
 platform: ruby
 authors:
 - Thomas Uehlinger
@@ -40,6 +40,7 @@
 - examples/run/ctrl_keep_pid_files.rb
 - examples/run/ctrl_monitor.rb
 - examples/run/ctrl_monitor_multiple.rb
+- examples/run/ctrl_monitor_nocrash.rb
 - examples/run/ctrl_multiple.rb
 - examples/run/ctrl_normal.rb
 - examples/run/ctrl_ontop.rb




commit sblim-cim-client2 for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package sblim-cim-client2 for 
openSUSE:Factory checked in at 2015-06-30 10:16:30

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


Package is sblim-cim-client2

Changes:

--- /work/SRC/openSUSE:Factory/sblim-cim-client2/sblim-cim-client2.changes  
2015-06-24 20:56:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.sblim-cim-client2.new/sblim-cim-client2.changes 
2015-06-30 10:16:31.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 25 13:10:52 UTC 2015 - mvet...@suse.com
+
+- Update URL
+
+---



Other differences:
--
++ sblim-cim-client2.spec ++
--- /var/tmp/diff_new_pack.coqymx/_old  2015-06-30 10:16:31.0 +0200
+++ /var/tmp/diff_new_pack.coqymx/_new  2015-06-30 10:16:31.0 +0200
@@ -24,7 +24,7 @@
 Summary:Java CIM Client library
 License:EPL-1.0
 Group:  Development/Libraries/Java
-Url:http://sblim.sourceforge.net/
+Url:http://sourceforge.net/projects/sblim/
 Source: 
http://downloads.sourceforge.net/project/sblim/%{name}/%{version}/%{name}-%{version}-src.zip
 Source1:
http://downloads.sourceforge.net/project/sblim/%{name}/%{version}/%{name}-%{version}-doc.zip
 BuildRequires:  ant = 1.6






commit nodejs-bl for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-bl for openSUSE:Factory 
checked in at 2015-06-30 10:16:55

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


Package is nodejs-bl

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-bl/nodejs-bl.changes  2015-04-27 
13:00:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-bl.new/nodejs-bl.changes 2015-06-30 
10:16:56.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 26 17:16:52 UTC 2015 - i...@marguerite.su
+
+- update version 0.9.4
+
+---

Old:

  bl-0.9.3.tgz

New:

  bl-0.9.4.tgz



Other differences:
--
++ nodejs-bl.spec ++
--- /var/tmp/diff_new_pack.xpL7PQ/_old  2015-06-30 10:16:56.0 +0200
+++ /var/tmp/diff_new_pack.xpL7PQ/_new  2015-06-30 10:16:56.0 +0200
@@ -19,7 +19,7 @@
 %define base_name bl
 
 Name:   nodejs-bl
-Version:0.9.3
+Version:0.9.4
 Release:0
 Summary:A Node.js Buffer list collector, reader and streamer thingy
 License:MIT

++ bl-0.9.3.tgz - bl-0.9.4.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/README.md new/package/README.md
--- old/package/README.md   2014-09-10 03:56:01.0 +0200
+++ new/package/README.md   2014-09-10 03:58:03.0 +0200
@@ -190,6 +190,9 @@
 
 ===
 
-## License
+a name=license/a
+## License amp; copyright
 
-**bl** is Copyright (c) 2013 Rod Vagg [@rvagg](https://twitter.com/rvagg) and 
licenced under the MIT licence. All rights not explicitly granted in the MIT 
license are reserved. See the included LICENSE.md file for more details.
+Copyright (c) 2013-2014 bl contributors (listed above).
+
+bl is licensed under the MIT license. All rights not explicitly granted in the 
MIT license are reserved. See the included LICENSE.md file for more details.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/bl.js new/package/bl.js
--- old/package/bl.js   2014-07-22 14:27:44.0 +0200
+++ new/package/bl.js   2015-01-20 00:49:48.0 +0100
@@ -1,4 +1,4 @@
-var DuplexStream = require('readable-stream').Duplex
+var DuplexStream = require('readable-stream/duplex')
   , util = require('util')
 
 function BufferList (callback) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json2014-09-10 03:56:35.0 +0200
+++ new/package/package.json2015-01-20 00:49:59.0 +0100
@@ -1,6 +1,6 @@
 {
   name: bl,
-  version: 0.9.3,
+  version: 0.9.4,
   description: Buffer List: collect buffers and access with a standard 
readable Buffer interface, streamable too!,
   main: bl.js,
   scripts: {




commit seamonkey for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package seamonkey for openSUSE:Factory 
checked in at 2015-06-30 10:42:40

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


Package is seamonkey

Changes:

--- /work/SRC/openSUSE:Factory/seamonkey/seamonkey.changes  2015-03-23 
12:19:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.seamonkey.new/seamonkey.changes 2015-06-30 
10:42:41.0 +0200
@@ -1,0 +2,10 @@
+Sat Jun 27 08:13:54 UTC 2015 - antoine.belv...@laposte.net
+
+- Fix compilation issues:
+  * Add mozilla-add-D_GLIBCXX_USE_CXX11_ABI-0-to-CXXFLAG.patch (bmo#1153109)
+  * Add mozilla-reintroduce-pixman-code-path.patch (bmo#1136958)
+  * Add mozilla-visitSubstr.patch (bmo#1108834)
+  * Add mozilla-undef-CONST.patch (bmo#395)
+  * Add mozilla-disable-JEMALLOC_STATIC_SIZES-on-ppc.patch
+
+---

New:

  mozilla-add-D_GLIBCXX_USE_CXX11_ABI-0-to-CXXFLAG.patch
  mozilla-disable-JEMALLOC_STATIC_SIZES-on-ppc.patch
  mozilla-reintroduce-pixman-code-path.patch
  mozilla-undef-CONST.patch
  mozilla-visitSubstr.patch



Other differences:
--
++ seamonkey.spec ++
--- /var/tmp/diff_new_pack.5TBqpY/_old  2015-06-30 10:42:46.0 +0200
+++ /var/tmp/diff_new_pack.5TBqpY/_new  2015-06-30 10:42:46.0 +0200
@@ -87,6 +87,16 @@
 Patch11:mozilla-icu-strncat.patch
 Patch12:mozilla-openaes-decl.patch
 Patch13:mozilla-fix-prototype.patch
+# PATCH-FIX-UPSTREAM mozilla-add-D_GLIBCXX_USE_CXX11_ABI-0-to-CXXFLAG.patch -- 
fix build with GCC 5 (bmo#1153109)
+Patch14:mozilla-add-D_GLIBCXX_USE_CXX11_ABI-0-to-CXXFLAG.patch
+# PATCH-FIX-UPSTREAM mozilla-reintroduce-pixman-code-path.patch -- fix build 
on ppc (bmo#1136958)
+Patch15:mozilla-reintroduce-pixman-code-path.patch
+# PATCH-FIX-UPSTREAM mozilla-visitSubstr.patch -- fix build on ppc 
(bmo#1108834)
+Patch16:mozilla-visitSubstr.patch
+# PATCH-FIX-UPSTREAM mozilla-undef-CONST.patch -- fix build on ppc 
(bmo#395)
+Patch17:mozilla-undef-CONST.patch
+# PATCH-FIX-UPSTREAM mozilla-disable-JEMALLOC_STATIC_SIZES-on-ppc.patch -- fix 
build on ppc (from deb#763900)
+Patch18:mozilla-disable-JEMALLOC_STATIC_SIZES-on-ppc.patch
 Patch100:   seamonkey-ua-locale.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: /bin/sh coreutils
@@ -194,6 +204,11 @@
 %patch11 -p1
 %patch12 -p1
 %patch13 -p1
+%patch14 -p1
+%patch15 -p1
+%patch16 -p1
+%patch17 -p1
+%patch18 -p1
 popd
 # comm patches
 %patch100 -p1


++ mozilla-add-D_GLIBCXX_USE_CXX11_ABI-0-to-CXXFLAG.patch ++
From 32b9943e0d2c7c28d9d113c0e83d121c356fe5d5 Mon Sep 17 00:00:00 2001
From: Mike Hommey mh+mozi...@glandium.org
Date: Fri, 10 Apr 2015 16:53:05 +0900
Subject: [PATCH] Bug 1153109 - Add -D_GLIBCXX_USE_CXX11_ABI=0 to CXXFLAGS when
 building with --enable-stdcxx-compat

---
 configure.in | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configure.in b/configure.in
index 95d2a70..6c858b3 100644
--- a/configure.in
+++ b/configure.in
@@ -7375,16 +7375,18 @@ STDCXX_COMPAT=
 MOZ_ARG_ENABLE_BOOL(stdcxx-compat,
 [  --enable-stdcxx-compat  Enable compatibility with older libstdc++],
 STDCXX_COMPAT=1)
 
 if test -n $STDCXX_COMPAT; then
eval $(CXX=$CXX HOST_CXX=$HOST_CXX $PYTHON -m 
mozbuild.configure.libstdcxx)
AC_SUBST(MOZ_LIBSTDCXX_TARGET_VERSION)
AC_SUBST(MOZ_LIBSTDCXX_HOST_VERSION)
+   CXXFLAGS=$CXXFLAGS -D_GLIBCXX_USE_CXX11_ABI=0
+   HOST_CXXFLAGS=$HOST_CXXFLAGS -D_GLIBCXX_USE_CXX11_ABI=0
 fi
 
 dnl 
 dnl =
 dnl = Profiling and Instrumenting
 dnl =
 dnl 
 MOZ_ARG_HEADER(Profiling and Instrumenting)
-- 
2.3.5.1.g2355df5

++ mozilla-disable-JEMALLOC_STATIC_SIZES-on-ppc.patch ++
--- a/memory/mozjemalloc/jemalloc.c 2014-08-25 15:17:22.0 +0200
+++ b/memory/mozjemalloc/jemalloc.c 2014-10-03 11:30:51.183346370 +0200
@@ -1088,7 +1088,7 @@
  * controlling the malloc behavior are defined as compile-time constants
  * for best performance and cannot be altered at runtime.
  */
-#if !defined(__ia64__)  !defined(__sparc__)  !defined(__mips__)
+#if !defined(__ia64__)  !defined(__sparc__)  !defined(__mips__)  
!defined(__powerpc__)
 #define MALLOC_STATIC_SIZES 1
 #endif
++ mozilla-reintroduce-pixman-code-path.patch ++

# HG changeset patch
# User Mike Hommey m...@glandium.org
# Date 1425858139 -32400
# Node ID 48e130d698364f246d9ab870044617fbf9e21f20
# Parent  08d7c1951e618f91863d34bddfdffe880bf78bf6
Bug 1136958 - Reintroduce pixman code path removed in bug 1097776 for 
--disable-skia builds. 

commit yast2-auth-client for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package yast2-auth-client for 
openSUSE:Factory checked in at 2015-06-30 10:15:46

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


Package is yast2-auth-client

Changes:

--- /work/SRC/openSUSE:Factory/yast2-auth-client/yast2-auth-client.changes  
2015-04-21 10:53:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-auth-client.new/yast2-auth-client.changes 
2015-06-30 10:15:47.0 +0200
@@ -1,0 +2,26 @@
+Tue Jun 16 09:31:17 UTC 2015 - h...@suse.com
+
+- Upgrade to version 3.3.1:
+  * Simply the UI of the Initial Customisation dialog.
+  * Fix a typo on main screen.
+  * Fix a regression in delete parameter feature.
+  * Fix incorrect value defaults of several provider options.
+  (Implements part of fate#316349)
+
+---
+Wed May 27 08:37:01 UTC 2015 - h...@suse.com
+
+- Upgrade to version 3.3.0:
+  Introduction of new features, bug fixes, and improved user experience -
+  * Add ability to disable SSSD daemon along with its configuration.
+  * Add ability to remove customisation from an optional parameter.
+  * New diaglog Initial Customisation helps with customising important 
parameters
+for joining a new domain.
+  * Prompt user when sssd or autofs daemon fail to be started.
+  * Fix several parameter descriptions and value defaults.
+  * Fix configuration of autofs and sudo NSS databases.
+  * Fix relevant parameters not showing up in More Parameters list.
+  * Other cosmetic fixes on UI labels and layout.
+  (Implements part of fate#316349)
+
+---

Old:

  yast2-auth-client-3.2.1.tar.bz2

New:

  yast2-auth-client-3.3.1.tar.bz2



Other differences:
--
++ yast2-auth-client.spec ++
--- /var/tmp/diff_new_pack.W9lchI/_old  2015-06-30 10:15:48.0 +0200
+++ /var/tmp/diff_new_pack.W9lchI/_new  2015-06-30 10:15:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-auth-client
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-auth-client
-Version:3.2.1
+Version:3.3.1
 Release:0
 Summary:YaST2 - Network Authentication Configuration
 License:GPL-2.0
@@ -66,7 +66,6 @@
 %{yast_desktopdir}/auth-client.desktop
 %{yast_moduledir}/AuthClient.rb
 %{yast_clientdir}/auth-client*.rb
-%{yast_scrconfdir}/*.scr
 %{yast_schemadir}/autoyast/rnc/auth-client.rnc
 %dir %{yast_libdir}/yauthclient
 %{yast_libdir}/yauthclient/*

++ yast2-auth-client-3.2.1.tar.bz2 - yast2-auth-client-3.3.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-auth-client-3.2.1/package/yast2-auth-client.changes 
new/yast2-auth-client-3.3.1/package/yast2-auth-client.changes
--- old/yast2-auth-client-3.2.1/package/yast2-auth-client.changes   
2015-04-20 14:37:09.0 +0200
+++ new/yast2-auth-client-3.3.1/package/yast2-auth-client.changes   
2015-06-24 15:29:02.0 +0200
@@ -1,4 +1,30 @@
 ---
+Tue Jun 16 09:31:17 UTC 2015 - h...@suse.com
+
+- Upgrade to version 3.3.1:
+  * Simply the UI of the Initial Customisation dialog.
+  * Fix a typo on main screen.
+  * Fix a regression in delete parameter feature.
+  * Fix incorrect value defaults of several provider options.
+  (Implements part of fate#316349)
+
+---
+Wed May 27 08:37:01 UTC 2015 - h...@suse.com
+
+- Upgrade to version 3.3.0:
+  Introduction of new features, bug fixes, and improved user experience -
+  * Add ability to disable SSSD daemon along with its configuration.
+  * Add ability to remove customisation from an optional parameter.
+  * New diaglog Initial Customisation helps with customising important 
parameters
+for joining a new domain.
+  * Prompt user when sssd or autofs daemon fail to be started.
+  * Fix several parameter descriptions and value defaults.
+  * Fix configuration of autofs and sudo NSS databases.
+  * Fix relevant parameters not showing up in More Parameters list.
+  * Other cosmetic fixes on UI labels and layout.
+  (Implements part of fate#316349)
+
+---
 Mon Apr 20 11:30:36 UTC 2015 - h...@suse.com
 
 - Fix the handling of boolean 

commit cups for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package cups for openSUSE:Factory checked in 
at 2015-06-30 10:15:24

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


Package is cups

Changes:

--- /work/SRC/openSUSE:Factory/cups/cups.changes2015-06-11 
09:09:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.cups.new/cups.changes   2015-06-30 
10:15:26.0 +0200
@@ -1,0 +2,12 @@
+Thu Jun 25 08:00:20 UTC 2015 - tchva...@suse.com
+
+- Fix the previous commit by using direct systemd call and ensuring we
+  work even on older distros
+
+---
+Mon Jun 22 12:22:42 UTC 2015 - tchva...@suse.com
+
+- Fix postin-without-tmpfile-creation and run %tmpfiles_create
+  macro on our cups.conf
+
+---



Other differences:
--
++ cups.spec ++
--- /var/tmp/diff_new_pack.Dt2IzO/_old  2015-06-30 10:15:27.0 +0200
+++ /var/tmp/diff_new_pack.Dt2IzO/_new  2015-06-30 10:15:27.0 +0200
@@ -435,6 +435,8 @@
 
 %post
 %service_add_post cups.service cups-lpd@.service cups-lpd.socket cups.socket
+# Use %tmpfiles_create when 13.2 is oldest in support scope
+/usr/bin/systemd-tmpfiles --create %{_tmpfilesdir}/cups.conf || :
 
 %preun
 %service_del_preun cups.service cups-lpd@.service cups-lpd.socket cups.socket







commit mozilla-nss for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package mozilla-nss for openSUSE:Factory 
checked in at 2015-06-30 10:15:18

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


Package is mozilla-nss

Changes:

--- /work/SRC/openSUSE:Factory/mozilla-nss/mozilla-nss.changes  2015-06-03 
08:21:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.mozilla-nss.new/mozilla-nss.changes 
2015-06-30 10:15:20.0 +0200
@@ -1,0 +2,25 @@
+Wed Jun 24 12:45:09 UTC 2015 - meiss...@suse.com
+
+- as the .chk files are contained in libfreebl3 and libsoftokn
+  directly, provide the -hmac alias names to help :42 building.
+
+---
+Tue Jun 23 06:00:13 UTC 2015 - w...@rosenauer.org
+
+- update to 3.19.2
+  * required for Firefox 39.0
+  * No new functionality is introduced in this release. This release
+addresses a backwards compatibility issue with the NSS 3.19.1
+release.
+  * In NSS 3.19.1, the minimum key sizes that the freebl cryptographic
+implementation (part of the softoken cryptographic module used
+by default by NSS) was willing to generate or use was increased
+- for RSA keys, to 512 bits, and for DH keys, 1023 bits. This
+was done as part of a security fix for Bug 1138554 / CVE-2015-4000.
+Applications that requested or attempted to use keys smaller
+then the minimum size would fail. However,  this change in behaviour
+unintentionally broke existing NSS applications that need to
+generate or use such keys, via APIs such as
+SECKEY_CreateRSAPrivateKey or SECKEY_CreateDHPrivateKey.
+
+---

Old:

  nss-3.19.1.tar.gz

New:

  nss-3.19.2.tar.gz



Other differences:
--
++ mozilla-nss.spec ++
--- /var/tmp/diff_new_pack.UNPSco/_old  2015-06-30 10:15:21.0 +0200
+++ /var/tmp/diff_new_pack.UNPSco/_new  2015-06-30 10:15:21.0 +0200
@@ -25,7 +25,7 @@
 BuildRequires:  pkg-config
 BuildRequires:  sqlite-devel
 BuildRequires:  zlib-devel
-Version:3.19.1
+Version:3.19.2
 Release:0
 # bug437293
 %ifarch ppc64
@@ -36,8 +36,8 @@
 License:MPL-2.0
 Group:  System/Libraries
 Url:http://www.mozilla.org/projects/security/pki/nss/
-Source: 
https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_19_1_RTM/src/nss-%{version}.tar.gz
-# hg clone https://hg.mozilla.org/projects/nss nss-3.19.1/nss ; cd 
nss-3.19.1/nss ; hg up NSS_3_19_1_RTM
+Source: 
https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_19_2_RTM/src/nss-%{version}.tar.gz
+# hg clone https://hg.mozilla.org/projects/nss nss-3.19.2/nss ; cd 
nss-3.19.2/nss ; hg up NSS_3_19_2_RTM
 #Source: nss-%{version}.tar.gz
 Source1:nss.pc.in
 Source3:nss-config.in
@@ -126,6 +126,7 @@
 %package -n libfreebl3
 Summary:Freebl library for the Network Security Services
 Group:  System/Libraries
+Provides:   libfreebl3-hmac
 
 %description -n libfreebl3
 Network Security Services (NSS) is a set of libraries designed to
@@ -141,6 +142,7 @@
 Summary:Network Security Services Softoken Module
 Group:  System/Libraries
 Requires:   libfreebl3 = %{version}-%{release}
+Provides:   libsoftokn3-hmac
 
 %description -n libsoftokn3
 Network Security Services (NSS) is a set of libraries designed to



++ nss-3.19.1.tar.gz - nss-3.19.2.tar.gz ++
/work/SRC/openSUSE:Factory/mozilla-nss/nss-3.19.1.tar.gz 
/work/SRC/openSUSE:Factory/.mozilla-nss.new/nss-3.19.2.tar.gz differ: char 5, 
line 1




commit hdparm for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package hdparm for openSUSE:Factory checked 
in at 2015-06-30 10:15:13

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


Package is hdparm

Changes:

--- /work/SRC/openSUSE:Factory/hdparm/hdparm.changes2015-01-21 
21:54:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.hdparm.new/hdparm.changes   2015-06-30 
10:15:15.0 +0200
@@ -1,0 +2,13 @@
+Mon Jun 22 12:17:05 UTC 2015 - kstreit...@suse.com
+
+- update to version 9.48
+  * 9.48 - fixed a number of output bugs due to the devslp patch 
+  * 9.47 - added devslp patch (IDENTIFY word 76) from David Woodhouse.
+ - help and manpage fixes from Michal Minar.
+  * 9.46 - fix compilation with musl libc.
+ - added hex:aabbcc.. for binary security passwords.
+ - return EIO when read_big_block() fails
+ - use llabs() rather than abs() in identify.c
+- use spec-cleaner
+
+---

Old:

  hdparm-9.45.tar.gz

New:

  hdparm-9.48.tar.gz



Other differences:
--
++ hdparm.spec ++
--- /var/tmp/diff_new_pack.xxVy62/_old  2015-06-30 10:15:15.0 +0200
+++ /var/tmp/diff_new_pack.xxVy62/_new  2015-06-30 10:15:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package hdparm
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,16 +16,16 @@
 #
 
 
+%{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }
+%{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
 Name:   hdparm
-PreReq: %fillup_prereq coreutils
-Provides:   base:/sbin/hdparm
-Version:9.45
+Version:9.48
 Release:0
 Summary:A Program to get and set hard disk parameters
 License:SUSE-Permissive
 Group:  Hardware/Other
-
-Source: http://downloads.sf.net/hdparm/%name-%version.tar.gz
+Url:http://sourceforge.net/projects/hdparm/
+Source: http://downloads.sf.net/hdparm/%{name}-%{version}.tar.gz
 Source1:56-idedma.rules
 Source2:sysconfig.ide
 Source3:udev.idedma.sh
@@ -35,12 +35,10 @@
 Patch4: hdparm-9.43-fix-bashisms.patch
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(udev)
-Url:http://sourceforge.net/projects/hdparm/
+Requires(post): %fillup_prereq coreutils
+Provides:   base:/sbin/hdparm
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
-%{!?_udevdir: %global _udevdir %(pkg-config --variable=udevdir udev) }
-%{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
-
 %description
 A shell utility to access and tune the ioctl features of the Linux IDE
 driver and IDE drives.
@@ -53,27 +51,27 @@
 %patch4 -p1
 
 %build
-make CFLAGS=%optflags -Wall -Wstrict-prototypes LDFLAGS= CC=%{__cc}
+make %{?_smp_mflags} CFLAGS=%{optflags} -Wall -Wstrict-prototypes LDFLAGS= 
CC=gcc
 cp -p wiper/README.txt README.wiper
 
 %install
-mkdir -p %buildroot/usr/share/man/man8
-install -d %buildroot/%_sbindir
-%make_install binprefix=%_prefix
+mkdir -p %{buildroot}%{_mandir}/man8
+install -d %{buildroot}/%{_sbindir}
+%make_install binprefix=%{_prefix}
 mv contrib/README contrib/README.contrib
-install -d %buildroot/%_udevrulesdir
-install -m 644 %{S:1} %buildroot/%_udevrulesdir
-install -d %buildroot/var/adm/fillup-templates
-install -m 644 %{S:2} %buildroot/var/adm/fillup-templates
-install -m 755 %{S:3} %buildroot/%_udevdir/idedma.sh
-install -d %buildroot/usr/lib/hdparm
-install -m 755 contrib/idectl %buildroot/usr/lib/hdparm
-install -m 755 contrib/ultrabayd %buildroot/usr/lib/hdparm
-install -m 755 wiper/wiper.sh %buildroot/%_sbindir
+install -d %{buildroot}/%{_udevrulesdir}
+install -m 644 %{SOURCE1} %{buildroot}/%{_udevrulesdir}
+install -d %{buildroot}%{_localstatedir}/adm/fillup-templates
+install -m 644 %{SOURCE2} %{buildroot}%{_localstatedir}/adm/fillup-templates
+install -m 755 %{SOURCE3} %{buildroot}/%{_udevdir}/idedma.sh
+install -d %{buildroot}%{_libexecdir}/hdparm
+install -m 755 contrib/idectl %{buildroot}%{_libexecdir}/hdparm
+install -m 755 contrib/ultrabayd %{buildroot}%{_libexecdir}/hdparm
+install -m 755 wiper/wiper.sh %{buildroot}/%{_sbindir}
 #UsrMerge
-mkdir -p %buildroot/sbin
-ln -sf %{_sbindir}/wiper.sh %buildroot/sbin
-ln -sf %{_sbindir}/hdparm %buildroot/sbin
+mkdir -p %{buildroot}/sbin
+ln -sf %{_sbindir}/wiper.sh %{buildroot}/sbin
+ln -sf %{_sbindir}/hdparm 

commit selinux-policy for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package selinux-policy for openSUSE:Factory 
checked in at 2015-06-30 10:15:56

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


Package is selinux-policy

Changes:

--- /work/SRC/openSUSE:Factory/selinux-policy/selinux-policy.changes
2015-01-29 09:57:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.selinux-policy.new/selinux-policy.changes   
2015-06-30 10:15:57.0 +0200
@@ -1,0 +2,28 @@
+Wed Jun 24 08:27:30 UTC 2015 - jseg...@novell.com
+
+- Transition from unconfined user to cron admin type
+- Allow systemd_timedated_t to talk to unconfined dbus for minimal
+  policy (bsc#932826)
+- Allow hostnamectl to set the hostname (bsc#933764)
+
+---
+Wed May 20 14:05:04 UTC 2015 - jseg...@novell.com
+
+- Removed ability of staff_t and user_t to use svirt. Will reenable
+  this later on with a policy upgrade
+  Added suse_modifications_staff.patch
+
+---
+Wed Feb 25 11:38:44 UTC 2015 - jseg...@novell.com
+
+- Added dont_use_xmllint_in_make_conf.patch to remove xmllint usage
+  in make conf. This currently breaks manual builds. 
+- Added BuildRequires for libxml2-tools to enable xmllint checks 
+  once the issue mentioned above is solved
+
+---
+Thu Jan 29 09:56:40 UTC 2015 - jseg...@novell.com
+
+- adjusted suse_modifications_ntp to match SUSE chroot paths
+
+---

New:

  dont_use_xmllint_in_make_conf.patch
  suse_modifications_staff.patch



Other differences:
--
++ selinux-policy.spec ++
--- /var/tmp/diff_new_pack.J303Bz/_old  2015-06-30 10:15:59.0 +0200
+++ /var/tmp/diff_new_pack.J303Bz/_new  2015-06-30 10:15:59.0 +0200
@@ -97,6 +97,8 @@
 Patch0018:  suse_modifications_ssh.patch
 Patch0019:  suse_modifications_usermanage.patch
 Patch0020:  suse_modifications_unprivuser.patch
+Patch0021:  dont_use_xmllint_in_make_conf.patch
+Patch0022:  suse_modifications_staff.patch
 
 # contrib patches
 Patch1000:  policy-rawhide-contrib.patch
@@ -120,6 +122,7 @@
 BuildRequires:  bzip2
 BuildRequires:  checkpolicy = %{CHECKPOLICYVER}
 BuildRequires:  gawk
+BuildRequires:  libxml2-tools
 BuildRequires:  m4
 BuildRequires:  policycoreutils = %{POLICYCOREUTILSVER}
 BuildRequires:  policycoreutils-python = %{POLICYCOREUTILSVER}
@@ -362,6 +365,8 @@
 %patch0018 -p1
 %patch0019 -p1
 %patch0020 -p1
+%patch0021 -p1
+%patch0022 -p1
 refpolicy_path=`pwd`
 cp $contrib_path/* $refpolicy_path/policy/modules/contrib
 # we use distro=redhat to get all the redhat modifications but we'll still 
need everything that is defined for suse

++ dont_use_xmllint_in_make_conf.patch ++
Index: serefpolicy-20140730/Makefile
===
--- serefpolicy-20140730.orig/Makefile  2014-07-30 16:48:48.379896000 +0200
+++ serefpolicy-20140730/Makefile   2015-02-25 12:37:11.262844720 +0100
@@ -431,9 +431,6 @@ $(polxml): $(layerxml) $(tunxml) $(boolx
$(verbose) for i in $(basename $(notdir $(layerxml))); do echo layer 
name=\$$i\  $@; cat $(tmpdir)/$$i.xml  $@; echo /layer  $@; done
$(verbose) cat $(tunxml) $(boolxml)  $@
$(verbose) echo '/policy'  $@
-   $(verbose) if test -x $(XMLLINT)  test -f $(xmldtd); then \
-   $(XMLLINT) --noout --path $(dir $(xmldtd)) --dtdvalid $(xmldtd) 
$@ ;\
-   fi
 
 xml: $(polxml)
 
++ suse_modifications_cron.patch ++
--- /var/tmp/diff_new_pack.J303Bz/_old  2015-06-30 10:16:00.0 +0200
+++ /var/tmp/diff_new_pack.J303Bz/_new  2015-06-30 10:16:00.0 +0200
@@ -1,7 +1,7 @@
 Index: serefpolicy-contrib-20140730/cron.fc
 ===
 serefpolicy-contrib-20140730.orig/cron.fc
-+++ serefpolicy-contrib-20140730/cron.fc
+--- serefpolicy-contrib-20140730.orig/cron.fc  2015-06-24 10:48:23.073675837 
+0200
 serefpolicy-contrib-20140730/cron.fc   2015-06-24 10:48:26.477726111 
+0200
 @@ -55,6 +55,8 @@ ifdef(`distro_suse', `
  /var/spool/cron/lastrun   -d  
gen_context(system_u:object_r:crond_tmp_t,s0)
  /var/spool/cron/lastrun/[^/]* --  none
@@ -13,8 +13,8 @@
  ifdef(`distro_debian',`
 Index: serefpolicy-contrib-20140730/cron.te
 ===
 serefpolicy-contrib-20140730.orig/cron.te
-+++ serefpolicy-contrib-20140730/cron.te
+--- serefpolicy-contrib-20140730.orig/cron.te  2015-06-24 

commit novnc for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package novnc for openSUSE:Factory checked 
in at 2015-06-30 10:15:43

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


Package is novnc

Changes:

--- /work/SRC/openSUSE:Factory/novnc/novnc.changes  2013-09-26 
07:09:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.novnc.new/novnc.changes 2015-06-30 
10:15:44.0 +0200
@@ -1,0 +2,28 @@
+Mon Feb 16 23:59:26 UTC 2015 - vu...@suse.com
+
+- Update to 0.5.1:
+  + Improved keyboard support via use of keysyms.js
+  + Fix HEXTILE blank tile support
+  + lower minimum width to accommodate smaller screens
+  + Fix issue causing true-color cursors to not be changed
+  + Fix subprotocol support for the TIGHT encoding
+- Changes from 0.5.0:
+  + General Fixes/Improvements:
+- Use Object.defineProperty on Array prototype to prevent
+  issues with enumeration
+- Internal Refactor for improved testability
+- Improved parsing of query string parameters
+- Support container page scrolling
+- Fixed IE10 keyboard support
+- Fixes for mobile keyboards (Android and iOS)
+- Improved foreign keyboard support
+- dynamic script loading without document.write
+  + Protocol Support:
+- TightVNC support (we support choosing the NOTUNNEL type if
+  tunnels are requested)
+- XVP Support
+- Update license tag to MPL-2.0; LGPL-3.0, following relicensing.
+- Drop novnc-0.3-call-websockify.patch,
+  novnc-0.3-nova-wsproxy.patch: not needed anymore.
+
+---

Old:

  noVNC-0.4.tar.gz
  novnc-0.3-call-websockify.patch
  novnc-0.3-nova-wsproxy.patch

New:

  noVNC-0.5.1.tar.gz



Other differences:
--
++ novnc.spec ++
--- /var/tmp/diff_new_pack.cN95fT/_old  2015-06-30 10:15:45.0 +0200
+++ /var/tmp/diff_new_pack.cN95fT/_new  2015-06-30 10:15:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package novnc
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -17,18 +17,16 @@
 
 
 Name:   novnc
-Version:0.4
+Version:0.5.1
 Release:0
 Summary:VNC client using HTML5 (Web Sockets, Canvas) with encryption 
support
-License:GPL-3.0
+License:MPL-2.0 and LGPL-3.0
 Group:  System/Daemons
 
 Url:https://github.com/kanaka/noVNC
 Source0:noVNC-%{version}.tar.gz
 
-Patch0: novnc-0.3-nova-wsproxy.patch
 Patch1: novnc-0.3-manpage.patch
-Patch2: novnc-0.3-call-websockify.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
@@ -40,9 +38,7 @@
 
 %prep
 %setup -q -n noVNC-%{version}
-%patch0 -p1
 %patch1 -p1
-%patch2 -p1
 
 %build
 
@@ -65,14 +61,8 @@
 %files
 %defattr(-,root,root,-)
 %doc README.md LICENSE.txt
-
-%dir %{_usr}/share/novnc
-%{_usr}/share/novnc/*.*
-%dir %{_usr}/share/novnc/include
-%{_usr}/share/novnc/include/*
-%dir %{_usr}/share/novnc/images
-%{_usr}/share/novnc/images/*
 %{_bindir}/novnc_server
+%{_datadir}/novnc/
 %{_mandir}/man1/novnc_server.1*
 
 %changelog

++ noVNC-0.4.tar.gz - noVNC-0.5.1.tar.gz ++
 21841 lines of diff (skipped)




commit vala-panel for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package vala-panel for openSUSE:Factory 
checked in at 2015-06-30 10:15:48

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


Package is vala-panel

Changes:

New Changes file:

--- /dev/null   2015-06-25 09:04:34.320025005 +0200
+++ /work/SRC/openSUSE:Factory/.vala-panel.new/vala-panel.changes   
2015-06-30 10:15:48.0 +0200
@@ -0,0 +1,9 @@
+---
+Wed Jun 24 13:48:32 UTC 2015 - cdenic...@suse.com
+
+- correct license is GPL-3.0+, see LICENSE-file
+
+---
+Fri Jun 19 12:43:17 UTC 2015 - sor.ale...@meowr.ru
+
+- Initial package.

New:

  vala-panel-0.3.5.tar.gz
  vala-panel.changes
  vala-panel.spec



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

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


Name:   vala-panel
Version:0.3.5
Release:0
Summary:A Gtk3 desktop panel based on Vala
License:GPL-3.0+
Group:  System/GUI/Other
Url:https://github.com/rilian-la-te/vala-panel
Source: 
https://github.com/rilian-la-te/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
BuildRequires:  cmake = 2.8
BuildRequires:  fdupes
BuildRequires:  gettext
BuildRequires:  vala = 0.24
BuildRequires:  pkgconfig(gtk+-3.0) = 3.12.0
BuildRequires:  pkgconfig(libpeas-1.0) = 1.2.0
BuildRequires:  pkgconfig(libwnck-3.0) = 3.4.0
Recommends: %{name}-lang = %{version}
Recommends: %{name}-plugins-base = %{version}
Recommends: %{name}-sntray = %{version}
Suggests:   %{name}-appmenu = %{version}
Suggests:   %{name}-plugins-wnck = %{version}

%description
Vala Panel is a desktop panel written in Vala and Gtk3.
Initially it was a fork of LXPanel but 0.2.0 is completely
rewritten in Vala. It offers same functionality as LXPanel but:
 * It has a slightly bigger memory usage.
 * X11 dependency is stripped from panel core (but it is not tested
   on another display servers, such as Wayland and Mir, right now).
 * Some of former LXPanel plugins are separate binaries now
   and live in another packages (volume applet for example).

%lang_package

%package devel
Summary:Development files for vala-panel
Group:  Development/Libraries/Other
Requires:   %{name} = %{version}
Requires:   pkgconfig(gtk+-3.0) = 3.12.0
Requires:   pkgconfig(libpeas-1.0) = 1.2.0
Requires:   pkgconfig(libwnck-3.0) = 3.4.0

%description devel
Vala Panel is a desktop panel written in Vala and Gtk3.

This is a development package for vala-panel.

%package plugins-base
Summary:Plugins for vala-panel -- non-X11 plugins
Group:  System/GUI/Other

%description plugins-base
This package contains main plugins for vala-panel: clock,
launchbar, applications menu and so on.

%package plugins-wnck
Summary:Plugins for vala-panel -- X11 plugins
Group:  System/GUI/Other

%description plugins-wnck
This package contains X11 plugins for vala-panel: tasklist,
system tray, and others.

%prep
%setup -q

%build
%cmake \
  -DCMAKE_INSTALL_SYSCONFDIR=%{_sysconfdir} \
  -DGSETTINGS_COMPILE=OFF
make %{?_smp_mflags}

%install
%cmake_install
%find_lang %{name}
%fdupes %{buildroot}%{_datadir}

%post
%icon_theme_cache_post
%glib2_gsettings_schema_post
/sbin/ldconfig

%postun
%icon_theme_cache_postun
%glib2_gsettings_schema_postun
/sbin/ldconfig

%post plugins-base
%glib2_gsettings_schema_post

%postun plugins-base
%glib2_gsettings_schema_postun

%post plugins-wnck
%glib2_gsettings_schema_post

%postun plugins-wnck
%glib2_gsettings_schema_postun

%files
%defattr(-,root,root)
%doc LICENSE README.md
%config %{_sysconfdir}/xdg/vala-panel/
%{_mandir}/man?/vala-panel.?%{?ext_man}
%{_bindir}/vala-panel
%{_datadir}/glib-2.0/schemas/org.valapanel.gschema.xml
%{_libdir}/libvalapanel.so.*
%{_datadir}/vala/
%{_datadir}/vala-panel/
%{_datadir}/glib-2.0/schemas/org.valapanel.toplevel.gschema.xml

commit libhugetlbfs for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package libhugetlbfs for openSUSE:Factory 
checked in at 2015-06-30 10:15:59

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


Package is libhugetlbfs

Changes:

--- /work/SRC/openSUSE:Factory/libhugetlbfs/libhugetlbfs.changes
2015-02-22 17:26:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.libhugetlbfs.new/libhugetlbfs.changes   
2015-06-30 10:16:00.0 +0200
@@ -1,0 +2,7 @@
+Tue Jun 23 22:35:32 UTC 2015 - antoine.belv...@laposte.net
+
+- Add libhugelbfs-2.18-restrict-is-a-reserved-word.patch which
+  fixes compilation with GCC 5 (and C99/C11 in general).
+* Add libhugetlbfs-2.18-restrict-is-a-reserved-word.patch
+
+---

New:

  libhugetlbfs-2.18-restrict-is-a-reserved-word.patch



Other differences:
--
++ libhugetlbfs.spec ++
--- /var/tmp/diff_new_pack.5OnWab/_old  2015-06-30 10:16:01.0 +0200
+++ /var/tmp/diff_new_pack.5OnWab/_new  2015-06-30 10:16:01.0 +0200
@@ -45,6 +45,8 @@
 Patch13:ignore-perl-modules.diff
 Patch14:disable-rw-on-non-ldscripts.diff
 Patch15:fix_plt_extrasz_always_returning_0_on_ppc64le.patch
+# PATCH-FIX-UPSTREAM libhugetlbfs-2.18-restrict-is-a-reserved-word.patch -- 
Fix compilation with GCC 5 (and C99/C11 in general)
+Patch16:libhugetlbfs-2.18-restrict-is-a-reserved-word.patch
 
 %description
 The libhugetlbfs package interacts with the Linux hugetlbfs to
@@ -67,6 +69,7 @@
 %patch13
 %patch14
 %patch15 -p1
+%patch16 -p1
 
 %build
 make %{my_make_flags}

++ libhugetlbfs-2.18-restrict-is-a-reserved-word.patch ++
diff -up libhugetlbfs-2.18/hugeutils.c.orig libhugetlbfs-2.18/hugeutils.c
--- libhugetlbfs-2.18/hugeutils.c.orig  2015-06-24 00:23:09.374535669 +0200
+++ libhugetlbfs-2.18/hugeutils.c   2015-06-24 00:23:45.536534148 +0200
@@ -301,14 +301,14 @@ void hugetlbfs_setup_env()
 
env = getenv(HUGETLB_RESTRICT_EXE);
if (env) {
-   char *p, *tok, *exe, buf[MAX_EXE+1], restrict[MAX_EXE];
+   char *p, *tok, *exe, buf[MAX_EXE+1], restriction[MAX_EXE];
int found = 0;
 
exe = get_exe_name(buf, sizeof buf);
DEBUG(Found HUGETLB_RESTRICT_EXE, this exe is \%s\\n, exe);
-   strncpy(restrict, env, sizeof restrict);
-   restrict[sizeof(restrict)-1] = 0;
-   for (p = restrict; (tok = strtok(p, :)) != NULL; p = NULL) {
+   strncpy(restriction, env, sizeof restriction);
+   restriction[sizeof(restriction)-1] = 0;
+   for (p = restriction; (tok = strtok(p, :)) != NULL; p = NULL) 
{
DEBUG(  ...check exe match for \%s\\n,  tok);
if (strcmp(tok, exe) == 0) {
found = 1;



commit python-pecan for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package python-pecan for openSUSE:Factory 
checked in at 2015-06-30 10:15:41

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


Package is python-pecan

Changes:

--- /work/SRC/openSUSE:Factory/python-pecan/python-pecan.changes
2015-02-25 02:18:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-pecan.new/python-pecan.changes   
2015-06-30 10:15:42.0 +0200
@@ -1,0 +2,26 @@
+Mon Jun 22 15:08:36 UTC 2015 - tbecht...@suse.com
+
+- update to 0.9.0:
+  * Require orderddict for Python 2.6 support.
+  * Version increment.
+  * Add tox environments to gate pecan against openstack/gnocchi
+  * Add tox environments to gate pecan against openstack/magnum
+  * Gate against latest stable projects.
+  * Properly raise HTTP 405 (and specify Allow headers) for RestController
+  * Update the `rest-api` scaffold to use generic controllers, *not* 
RestController Closes-Bug #1413038
+  * Allow users to specify custom path segments for routing.
+  * Fix broken wsme-stable tests.
+  * Replace ci.o.o links with docs.o.o/infra
+  * Fix unquoting of positional args with plus sign
+  * Add more emphasis to the need for debug=False in deployment documentation.
+  * Properly handle Python3 Unicode path segments in pecan routing.
+  * make_app() now uses the debugger param in DebugMiddleware()
+  * Drop support for Python 3.2.
+  * Prevent @expose(generic=True) on special methods (_route, _lookup, 
_default).
+  * core: do not assume controller is a method
+  * Fix broken wsme-stable job and pep8 failures.
+  * Document how to serve static files (with an iterable, not in-memory).
+  * Default the `pecan` log level to DEBUG for development.
+- Add python-ordereddict Requires for SLE11SP3
+
+---

Old:

  pecan-0.8.3.tar.gz

New:

  pecan-0.9.0.tar.gz



Other differences:
--
++ python-pecan.spec ++
--- /var/tmp/diff_new_pack.mDpKIs/_old  2015-06-30 10:15:43.0 +0200
+++ /var/tmp/diff_new_pack.mDpKIs/_new  2015-06-30 10:15:43.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-pecan
-Version:0.8.3
+Version:0.9.0
 Release:0
 Summary:A WSGI object-dispatching web framework, designed to be lean 
and fast
 License:BSD-3-Clause
@@ -41,6 +41,9 @@
 BuildRequires:  python-virtualenv
 %endif
 BuildRequires:  python-six
+%if 0%{?suse_version}  0%{?suse_version} = 1110
+Requires:   python-ordereddict
+%endif
 Requires:   python-Mako = 0.4.0
 Requires:   python-WebOb = 1.2dev
 Requires:   python-WebTest = 1.3.1

++ pecan-0.8.3.tar.gz - pecan-0.9.0.tar.gz ++
 1755 lines of diff (skipped)




commit libpcap for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package libpcap for openSUSE:Factory checked 
in at 2015-06-30 10:15:06

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


Package is libpcap

Changes:

--- /work/SRC/openSUSE:Factory/libpcap/libpcap.changes  2015-04-28 
20:42:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.libpcap.new/libpcap.changes 2015-06-30 
10:15:07.0 +0200
@@ -1,0 +2,9 @@
+Sun Jun 21 04:41:13 UTC 2015 - crrodrig...@opensuse.org
+
+- remove dependency on libusb-devel, only libusb-1.0 is used for
+  build.
+- split a -devel-static subpackage that contains the static
+  libraries and all the extra dependencies which are not needed
+  for dynamic linking.
+
+---



Other differences:
--
++ libpcap.spec ++
--- /var/tmp/diff_new_pack.cpvLua/_old  2015-06-30 10:15:08.0 +0200
+++ /var/tmp/diff_new_pack.cpvLua/_new  2015-06-30 10:15:08.0 +0200
@@ -39,11 +39,9 @@
 BuildRequires:  bison
 BuildRequires:  dbus-1-devel
 BuildRequires:  flex
-BuildRequires:  libusb-devel
-BuildRequires:  pkg-config
-%if %{?suse_version} = 1210
 BuildRequires:  libnl3-devel
-%endif
+BuildRequires:  pkg-config
+BuildRequires:  pkgconfig(libusb-1.0)
 %if %{with bluetooth}
 BuildRequires:  bluez-devel
 %endif
@@ -77,12 +75,8 @@
 %package devel
 Summary:A Library for Network Sniffers
 Group:  Development/Libraries/C and C++
-Requires:   bluez-devel
+Requires:   glibc-devel
 Requires:   libpcap1 = %{version}
-Requires:   libusb-devel
-%if %{?suse_version} = 1210
-Requires:   libnl3-devel
-%endif
 
 %description devel
 libpcap is a library used by packet sniffer programs. It provides an
@@ -90,6 +84,20 @@
 This package is only needed if you plan to compile or write such a
 program yourself.
 
+%package devel-static
+Summary:A Library for Network Sniffers
+Group:  Development/Libraries/C and C++ 
+Requires:   %{name}-devel = %{version}
+Requires:   dbus-1-devel
+Requires:   libnl3-devel
+Requires:   pkgconfig(libusb-1.0)
+%if %{with bluetooth}
+Requires:   bluez-devel
+%endif
+
+%description devel-static
+libpcap static libraries
+
 %prep
 %setup -q
 %patch0 -p1
@@ -128,12 +136,15 @@
 %{_libdir}/*.so.*
 %doc %{_mandir}/man7/*
 
+%files devel-static
+%defattr(-, root, root)
+%{_libdir}/*.*a
+
 %files devel
 %defattr(-, root, root)
 %doc %{_mandir}/man[1-6]/*
 %{_includedir}/*
 %{_bindir}/pcap-config
 %{_libdir}/*.so
-%{_libdir}/*.*a
 
 %changelog






commit SuSEfirewall2 for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package SuSEfirewall2 for openSUSE:Factory 
checked in at 2015-06-30 10:15:00

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


Package is SuSEfirewall2

Changes:

--- /work/SRC/openSUSE:Factory/SuSEfirewall2/SuSEfirewall2.changes  
2014-08-20 10:51:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.SuSEfirewall2.new/SuSEfirewall2.changes 
2015-06-30 10:15:01.0 +0200
@@ -1,0 +2,8 @@
+Wed Jun 24 12:07:08 UTC 2015 - meiss...@suse.com
+
+- reduce amount of setprocinfo set values, adjusted to existence and
+  also current kernel defaults.
+- missing IPv6 commands to enable broadcast (e.g.: avahi over ipv6) 
+  (bsc#935716)
+
+---

Old:

  SuSEfirewall2-3.6.312.tar.bz2

New:

  SuSEfirewall2-3.6.315.tar.bz2



Other differences:
--
++ SuSEfirewall2.spec ++
--- /var/tmp/diff_new_pack.aKcojP/_old  2015-06-30 10:15:02.0 +0200
+++ /var/tmp/diff_new_pack.aKcojP/_new  2015-06-30 10:15:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package SuSEfirewall2
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 
 Name:   SuSEfirewall2
-Version:3.6.312
+Version:3.6.315
 Release:0
 Url:http://en.opensuse.org/SuSEfirewall2
 PreReq: %fillup_prereq %insserv_prereq /bin/sed textutils fileutils 
grep filesystem

++ SuSEfirewall2-3.6.312.tar.bz2 - SuSEfirewall2-3.6.315.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SuSEfirewall2-3.6.312/SuSEfirewall2 
new/SuSEfirewall2-3.6.315/SuSEfirewall2
--- old/SuSEfirewall2-3.6.312/SuSEfirewall2 2014-08-15 18:02:23.0 
+0200
+++ new/SuSEfirewall2-3.6.315/SuSEfirewall2 2015-06-24 14:06:41.0 
+0200
@@ -1181,24 +1181,24 @@
 set_proc_stuff()
 {
 if [ $FW_KERNEL_SECURITY != no ]; then
-   setproc 1 /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts 
+   # kernel default 1: setproc 1 
/proc/sys/net/ipv4/icmp_echo_ignore_broadcasts 
 # test $FW_ALLOW_PING_FW = yes || setproc 1 
/proc/sys/net/ipv4/icmp_echo_ignore_all  # XXX
-   setproc 1 /proc/sys/net/ipv4/ip_always_defrag  # XXX not there?
-   setproc 1 /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses 
-   setproc 5 /proc/sys/net/ipv4/icmp_echoreply_rate 
-   setproc 5 /proc/sys/net/ipv4/icmp_destunreach_rate 
-   setproc 5 /proc/sys/net/ipv4/icmp_paramprob_rate 
-   setproc 6 /proc/sys/net/ipv4/icmp_timeexceed_rate 
-   setproc 20 /proc/sys/net/ipv4/ipfrag_time 
+   # gone? setproc 1 /proc/sys/net/ipv4/ip_always_defrag  # XXX not there?
+   # kernel default 1: setproc 1 
/proc/sys/net/ipv4/icmp_ignore_bogus_error_responses 
+   # gone? setproc 5 /proc/sys/net/ipv4/icmp_echoreply_rate 
+   # gone? setproc 5 /proc/sys/net/ipv4/icmp_destunreach_rate 
+   # gone? setproc 5 /proc/sys/net/ipv4/icmp_paramprob_rate 
+   # gone? setproc 6 /proc/sys/net/ipv4/icmp_timeexceed_rate 
+   # 30*HZ in the kernel, setproc 20 /proc/sys/net/ipv4/ipfrag_time 
for i in /proc/sys/net/ipv4/conf/*; do
-   setproc 1 $i/log_martians 
-   setproc 0 $i/bootp_relay 
-   [ $FW_ROUTE != yes ]  setproc 0 $i/forwarding
-   setproc 0 $i/proxy_arp 
-   setproc 1 $i/secure_redirects 
+   setproc 1 $i/log_martians   # default is 0 in the kernel
+   #kernel default 0: setproc 0 $i/bootp_relay 
+   [ $FW_ROUTE != yes ]  setproc 0 $i/forwarding   # should stay
+   # kernel default 0: setproc 0 $i/proxy_arp 
+   # kernel default 1: setproc 1 $i/secure_redirects 
#setproc 0 $i/accept_redirects # let kernel decide this
-   setproc 0 $i/accept_source_route 
-   setproc 1 $i/rp_filter 
+   setproc 0 $i/accept_source_route# default is 1, should stay?
+   setproc 1 $i/rp_filter  # default is 0, should stay?
done
setproc 1 /proc/sys/net/ipv4/route/flush
 fi
@@ -1324,21 +1324,26 @@
[ $port = no -o $port = yes ]  continue
$LAA $IPTABLES $match -p udp --dport $port 
${LOG}-ACC-BCAST${zone:0:1} 
$IPTABLES $match -p udp --dport $port -j $ACCEPT
+   $LAA $IP6TABLES $match -p udp --dport $port 
${LOG}-ACC-BCAST${zone:0:1} 
+   $IP6TABLES $match -p udp --dport 

commit cv for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package cv for openSUSE:Factory checked in 
at 2015-06-30 10:16:27

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


Package is cv

Changes:

--- /work/SRC/openSUSE:Factory/cv/cv.changes2014-09-15 18:24:28.0 
+0200
+++ /work/SRC/openSUSE:Factory/.cv.new/cv.changes   2015-06-30 
10:16:29.0 +0200
@@ -1,0 +2,14 @@
+Fri Jun 26 05:58:02 UTC 2015 - b...@vdm-design.de
+
+- Update to version 0.7.1
+  * Updated Mac OSX support 
+
+---
+Fri Dec 26 11:07:44 UTC 2014 - b...@vdm-design.de
+
+- Update to version 0.6
+  * Add support for xz, md5sum, sha1sum, sha256sum, sha224sum,
+sha384sum, sha512sum
+  * Added -p support for PID monitoring
+
+---

Old:

  v0.5.1.tar.gz

New:

  v0.7.1.tar.gz



Other differences:
--
++ cv.spec ++
--- /var/tmp/diff_new_pack.SuzAFR/_old  2015-06-30 10:16:30.0 +0200
+++ /var/tmp/diff_new_pack.SuzAFR/_new  2015-06-30 10:16:30.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package cv
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   cv
-Version:0.5.1
+Version:0.7.1
 Release:0
 Summary:Coreutils Viewer
 License:GPL-3.0+

++ v0.5.1.tar.gz - v0.7.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cv-0.5.1/.travis.yml new/cv-0.7.1/.travis.yml
--- old/cv-0.5.1/.travis.yml1970-01-01 01:00:00.0 +0100
+++ new/cv-0.7.1/.travis.yml2015-06-24 16:20:08.0 +0200
@@ -0,0 +1,11 @@
+os:
+  - linux
+  - osx
+
+language: c
+
+compiler:
+  - gcc
+  - clang
+
+script: make
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cv-0.5.1/README.md new/cv-0.7.1/README.md
--- old/cv-0.5.1/README.md  2014-09-02 11:46:54.0 +0200
+++ new/cv-0.7.1/README.md  2015-06-24 16:20:08.0 +0200
@@ -1,68 +1,66 @@
 cv - Coreutils Viewer
 =
 
-What is it ?
-
+What is it?
+---
 
-This tool can be described as a **Tiny** Dirty Linux Only* C command that looks
-for coreutils basic commands (cp, mv, dd, tar, gzip/gunzip, cat, ...) currently
-running on your system and displays the percentage of copied data.
+This tool can be described as a **Tiny**, Dirty, Linux-and-OSX-Only C command
+that looks for coreutils basic commands (cp, mv, dd, tar, gzip/gunzip,
+cat, etc.) currently running on your system and displays the
+percentage of copied data.
 
-It can now also display an estimated throughput (using -w flag).
+It can now also estimate throughput (using flag `-w`).
 
 ![cv screenshot with cp and 
mv](https://raw.github.com/Xfennec/cv/master/capture.png)
 
-_(After many requests: the colors in the shell comes from 
[powerline-shell](https://github.com/milkbikis/powerline-shell). Try it, it's 
cool.)_
+_(After many requests: the colors in the shell come from 
[powerline-shell](https://github.com/milkbikis/powerline-shell). Try it, it's 
cool.)_
 
-It's probably easy to add a progress, show estimated time, and with a bit more 
work,
-provide a top-like mode with more accurate informations.
+It's probably easy to add a progress, show estimated time, and, with a
+bit more work, provide a top-like mode with more accurate
+information.
 
-* Note: a [Mac OSX port is available](https://github.com/BestPig/cv) until we
-merge the support upstream.
+How do you build it?
+
 
-How do you build it ?
--
+make  make install
 
-```
-make  make install
-```
+It depends on library ncurses, you may have to install corresponding packages 
(may be something like 'libncurses5-dev' or 'ncurses-devel').
 
-It depends on ncurses library, you may have to install corresponding packages.
+How do you run it?
+--
 
-How do you run it ?

+Just launch the binary, `cv`.
 
-Just launch the binary, « cv ».
 
+What can I do with it?
+--
 
-What can I do with it ?

+A few examples. You can:
 
-A few examples. You can …
+* monitor all current and upcoming instances of coreutils commands in
+  a simple window:
 
-… monitor all current and upcoming instances of coreutils 

commit nodejs-assert-plus for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-assert-plus for 
openSUSE:Factory checked in at 2015-06-30 10:16:50

Comparing /work/SRC/openSUSE:Factory/nodejs-assert-plus (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-assert-plus.new (New)


Package is nodejs-assert-plus

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-assert-plus/nodejs-assert-plus.changes
2015-04-27 13:00:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-assert-plus.new/nodejs-assert-plus.changes   
2015-06-30 10:16:52.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 26 17:06:49 UTC 2015 - i...@marguerite.su
+
+- update version 0.1.5
+
+---

Old:

  assert-plus-0.1.2.tgz

New:

  assert-plus-0.1.5.tgz



Other differences:
--
++ nodejs-assert-plus.spec ++
--- /var/tmp/diff_new_pack.j98Bzw/_old  2015-06-30 10:16:52.0 +0200
+++ /var/tmp/diff_new_pack.j98Bzw/_new  2015-06-30 10:16:52.0 +0200
@@ -19,7 +19,7 @@
 %define base_name assert-plus
 
 Name:   nodejs-assert-plus
-Version:0.1.2
+Version:0.1.5
 Release:0
 Summary:Extra assertions on top of node's assert module
 License:MIT

++ assert-plus-0.1.2.tgz - assert-plus-0.1.5.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/assert.js new/package/assert.js
--- old/package/assert.js   2012-09-18 23:44:03.0 +0200
+++ new/package/assert.js   2013-11-25 18:14:41.0 +0100
@@ -9,6 +9,7 @@
 ///--- Globals
 
 var NDEBUG = process.env.NODE_NDEBUG || false;
+var UUID_REGEXP = 
/^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;
 
 
 
@@ -53,6 +54,28 @@
 }
 
 
+function _instanceof(arg, type, name, stackFunc) {
+if (!NDEBUG) {
+name = name || type;
+stackFunc = stackFunc || _instanceof.caller;
+
+if (!(arg instanceof type)) {
+throw new assert.AssertionError({
+message: _(TYPE_REQUIRED, name, type.name),
+actual: _getClass(arg),
+expected: type.name,
+operator: 'instanceof',
+stackStartFunction: stackFunc
+});
+}
+}
+}
+
+function _getClass(object) {
+return (Object.prototype.toString.call(object).slice(8, -1));
+};
+
+
 
 ///--- API
 
@@ -85,7 +108,7 @@
 function buffer(arg, name) {
 if (!Buffer.isBuffer(arg)) {
 throw new assert.AssertionError({
-message: _(TYPE_REQUIRED, name, type),
+message: _(TYPE_REQUIRED, name || '', 'Buffer'),
 actual: typeof (arg),
 expected: 'buffer',
 operator: 'Buffer.isBuffer',
@@ -102,6 +125,15 @@
 
 function number(arg, name) {
 _assert(arg, 'number', name);
+if (!NDEBUG  (isNaN(arg) || !isFinite(arg))) {
+throw new assert.AssertionError({
+message: _(TYPE_REQUIRED, name, 'number'),
+actual: arg,
+expected: 'number',
+operator: 'isNaN',
+stackStartFunction: number
+});
+}
 }
 
 
@@ -111,15 +143,16 @@
 
 
 function stream(arg, name) {
-if (!(arg instanceof Stream)) {
-throw new assert.AssertionError({
-message: _(TYPE_REQUIRED, name, type),
-actual: typeof (arg),
-expected: 'Stream',
-operator: 'instanceof',
-stackStartFunction: buffer
-});
-}
+_instanceof(arg, Stream, name);
+}
+
+
+function date(arg, name) {
+_instanceof(arg, Date, name);
+}
+
+function regexp(arg, name) {
+_instanceof(arg, RegExp, name);
 }
 
 
@@ -128,17 +161,33 @@
 }
 
 
+function uuid(arg, name) {
+string(arg, name);
+if (!NDEBUG  !UUID_REGEXP.test(arg)) {
+throw new assert.AssertionError({
+message: _(TYPE_REQUIRED, name, 'uuid'),
+actual: 'string',
+expected: 'uuid',
+operator: 'test',
+stackStartFunction: uuid
+});
+}
+}
+
 
 ///--- Exports
 
 module.exports = {
 bool: bool,
 buffer: buffer,
+date: date,
 func: func,
 number: number,
 object: object,
+  

commit tgt for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package tgt for openSUSE:Factory checked in 
at 2015-06-30 10:16:46

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


Package is tgt

Changes:

--- /work/SRC/openSUSE:Factory/tgt/tgt.changes  2014-09-06 12:18:10.0 
+0200
+++ /work/SRC/openSUSE:Factory/.tgt.new/tgt.changes 2015-06-30 
10:16:48.0 +0200
@@ -1,0 +2,6 @@
+Fri Jun 26 06:14:44 UTC 2015 - bwiedem...@suse.com
+
+- fix tgtd start by giving tgtd time to open the socket (bnc#934642)
+  and use bash to run multiple programs in ExecStartPost
+
+---



Other differences:
--
++ tgt.spec ++
--- /var/tmp/diff_new_pack.9GcDck/_old  2015-06-30 10:16:48.0 +0200
+++ /var/tmp/diff_new_pack.9GcDck/_new  2015-06-30 10:16:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package tgt
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -70,7 +70,7 @@
 
 %install
 %{__make} DESTDIR=%{buildroot} docdir=%_docdir/%{name} install
-install -vD -m 755 %{S:1} %{buildroot}/%{_unitdir}/%{name}d.service
+install -vD -m 644 %{S:1} %{buildroot}/%{_unitdir}/%{name}d.service
 install -vD %{S:3} %{buildroot}/etc/sysconfig/SuSEfirewall2.d/services/tgt
 ln -sf service %{buildroot}/usr/sbin/rc%{name}
 

++ tgtd.service ++
--- /var/tmp/diff_new_pack.9GcDck/_old  2015-06-30 10:16:48.0 +0200
+++ /var/tmp/diff_new_pack.9GcDck/_new  2015-06-30 10:16:48.0 +0200
@@ -6,7 +6,7 @@
 Type=forking
 User=root
 ExecStart=/usr/sbin/tgtd
-ExecStartPost=/usr/sbin/tgtadm --op update --mode sys --name State -v offline 
; /usr/sbin/tgt-admin -e -c /etc/tgt/targets.conf ; /usr/sbin/tgtadm --op 
update --mode sys --name State -v ready
+ExecStartPost=/bin/bash -c sleep 0.5 ; /usr/sbin/tgtadm --op update --mode 
sys --name State -v offline ; /usr/sbin/tgt-admin -e -c /etc/tgt/targets.conf ; 
/usr/sbin/tgtadm --op update --mode sys --name State -v ready
 ExecStopPre=/usr/sbin/tgt-admin --update ALL -c /dev/null
 ExecStop=-/usr/sbin/tgtadm --op delete --mode system 
 




commit crmsh for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2015-06-30 10:16:24

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


Package is crmsh

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2015-06-15 
17:49:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2015-06-30 
10:16:26.0 +0200
@@ -1,0 +2,13 @@
+Thu Jun 25 20:50:46 UTC 2015 - kgronl...@suse.com
+
+- Update to version 2.2.0~rc3+git.1435265407.2865580:
+  + high: hb_report: find utility scripts after move (bsc#936026)
+  + high: ui_report: Move hb_report to subdirectory (bsc#936026)
+  + high: scripts: subscript values not required if subscript has no 
parameters / all defaults (fate#318211)
+  + high: Makefile: Don't unstall hb_report using data-manifest (bsc#936026)
+  + medium: scripts: Fix name override for subscripts (fate#318211)
+  + medium: scripts: stop inserting comments as values
+  + medium: report: Fall back to cluster-glue hb_report if necessary 
(bsc#936026)
+  + low: scripts: Clean up generated CIB (fate#318211)
+
+---

Old:

  crmsh-2.2.0~rc3+git.1434151485.7365522.tar.bz2

New:

  crmsh-2.2.0~rc3+git.1435265407.2865580.tar.bz2



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.zEnbpX/_old  2015-06-30 10:16:27.0 +0200
+++ /var/tmp/diff_new_pack.zEnbpX/_new  2015-06-30 10:16:27.0 +0200
@@ -36,7 +36,7 @@
 Summary:High Availability cluster command-line interface
 License:GPL-2.0+
 Group:  %{pkg_group}
-Version:2.2.0~rc3+git.1434151485.7365522
+Version:2.2.0~rc3+git.1435265407.2865580
 Release:0%{?crmsh_release}%{?dist}
 Url:http://crmsh.github.io
 Source0:%{name}-%{version}.tar.bz2

++ _servicedata ++
--- /var/tmp/diff_new_pack.zEnbpX/_old  2015-06-30 10:16:27.0 +0200
+++ /var/tmp/diff_new_pack.zEnbpX/_new  2015-06-30 10:16:27.0 +0200
@@ -1,4 +1,4 @@
 servicedata
 service name=tar_scm
 param name=urlgit://github.com/ClusterLabs/crmsh.git/param
-  param 
name=changesrevision7365522b9d445ea0721f4fce8d1e4c3d8ef7655f/param/service/servicedata
\ No newline at end of file
+  param 
name=changesrevision28655806b302aeeaf76f9634446580aed42fe8ba/param/service/servicedata
\ No newline at end of file

++ crmsh-2.2.0~rc3+git.1434151485.7365522.tar.bz2 - 
crmsh-2.2.0~rc3+git.1435265407.2865580.tar.bz2 ++
/work/SRC/openSUSE:Factory/crmsh/crmsh-2.2.0~rc3+git.1434151485.7365522.tar.bz2 
/work/SRC/openSUSE:Factory/.crmsh.new/crmsh-2.2.0~rc3+git.1435265407.2865580.tar.bz2
 differ: char 11, line 1




commit tog-pegasus for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package tog-pegasus for openSUSE:Factory 
checked in at 2015-06-30 10:16:25

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


Package is tog-pegasus

Changes:

--- /work/SRC/openSUSE:Factory/tog-pegasus/tog-pegasus.changes  2015-06-11 
08:22:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.tog-pegasus.new/tog-pegasus.changes 
2015-06-30 10:16:27.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 19 07:03:42 UTC 2015 - kkae...@suse.com
+
+- Fix SLE 11 build
+
+---



Other differences:
--
++ tog-pegasus.spec ++
--- /var/tmp/diff_new_pack.P61yj0/_old  2015-06-30 10:16:29.0 +0200
+++ /var/tmp/diff_new_pack.P61yj0/_new  2015-06-30 10:16:29.0 +0200
@@ -16,6 +16,12 @@
 #
 
 
+%if 0%{?suse_version}  1140 || 0%{?fedora_version}  14
+%define has_systemd 1
+%else
+%define has_systemd 0
+%endif
+
 %{?!PEGASUS_BUILD_TEST_RPM: %global PEGASUS_BUILD_TEST_RPM1}
 # do rpmbuild --define 'PEGASUS_BUILD_TEST_RPM 1' to build test RPM.
 
@@ -149,21 +155,23 @@
 BuildRequires:  openslp-devel
 BuildRequires:  openssl-devel
 BuildRequires:  pam-devel
-%if 0%{?suse_version}
+%if 0%{?has_systemd}
 BuildRequires:  systemd
+%if 0%{?suse_version}
 %{?systemd_requires}
 %else
 BuildRequires:  systemd-units
 Requires:   net-snmp-libs
 %endif
+%endif
 %if 0%{?suse_version}
 Requires:   %{name}-libs = %{version}-%{release}
 %else
 Requires:   %{name}-libs = %{version}-%{release}
 %endif
-Requires:   ca-certificates
 Requires:   openssl
-%if 0%{?suse_version}
+%if 0%{?suse_version}  1130
+Requires:   ca-certificates
 BuildRequires:  ca-certificates
 # for restorecon(8)
 BuildRequires:  policycoreutils





commit cfengine for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package cfengine for openSUSE:Factory 
checked in at 2015-06-30 10:16:03

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


Package is cfengine

Changes:

--- /work/SRC/openSUSE:Factory/cfengine/cfengine.changes2015-04-02 
16:03:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.cfengine.new/cfengine.changes   2015-06-30 
10:16:04.0 +0200
@@ -1,0 +2,5 @@
+Wed Jun 17 13:09:09 UTC 2015 - kkae...@suse.com
+
+- Fix Fedora/RHEL builds
+
+---



Other differences:
--
++ cfengine.spec ++
--- /var/tmp/diff_new_pack.RLqKdI/_old  2015-06-30 10:16:05.0 +0200
+++ /var/tmp/diff_new_pack.RLqKdI/_new  2015-06-30 10:16:05.0 +0200
@@ -69,7 +69,6 @@
 Patch8: 0001-Do-not-use-insecure-MD5-but-rather-SHA256.patch
 BuildRequires:  bison
 BuildRequires:  db-devel
-BuildRequires:  fdupes
 BuildRequires:  flex
 BuildRequires:  libacl-devel
 BuildRequires:  libtool
@@ -78,6 +77,10 @@
 BuildRequires:  openssl-devel
 BuildRequires:  pam-devel
 BuildRequires:  pcre-devel
+%if 0%{?suse_version} == 0
+# for testing on RHEL/Fedora
+BuildRequires:  fakeroot
+%endif
 Requires:   %{libsoname} = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{have_systemd}
@@ -104,12 +107,20 @@
 %else
 # Without systemd we require cron
 Requires:   cron
+%if 0%{?suse_version}
 Requires(post): %insserv_prereq %fillup_prereq
 %endif
+%endif
 # FHS was a hit with sle11 so it dies out otherwise
 %if 0%{?suse_version} = 1110
 BuildRequires:  -post-build-checks
 %endif
+%if 0%{?suse_version}  1020
+BuildRequires:  fdupes
+%endif
+%if 0%{?fedora_version} == 20
+BuildRequires:  perl-Exporter
+%endif
 
 %description
 CFEngine is the core of a configuration management system: ensuring
@@ -205,7 +216,11 @@
 %endif
   --with-libacl \
   --with-libxml2 \
+%if 0%{?rhel_version}  0  0%{?rhel_version}  700
+  --docdir=%{_docdir}/%{name}-%{version} \
+%else
   --docdir=%{_docdir}/%{name} \
+%endif
   --with-pam
 
 make %{?_smp_mflags}
@@ -245,7 +260,7 @@
 ln -s -f service %{buildroot}/%{_sbindir}/rccf-serverd
 %else
 # install init scripts
-install -d %{buildroot}%{_sysconfdir}/init.d
+install -d %{buildroot}%{_initddir}
 install -m 0755 %{SOURCE7} %{SOURCE8} %{SOURCE9} %{buildroot}%{_initddir}/
 ln -s -f ../..%{_initddir}/cf-monitord %{buildroot}/%{_sbindir}/rccf-monitord
 ln -s -f ../..%{_initddir}/cf-execd %{buildroot}/%{_sbindir}/rccf-execd
@@ -281,7 +296,9 @@
 install -D -m 644 %{SOURCE1} 
%{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/cfengine
 
 # Ckeabyo dyoes
+%if 0%{?suse_version}  1020
 %fdupes %{buildroot}%{_datadir}/cfengine
+%endif
 
 %pre
 %if %{have_systemd}




commit nodejs-clone for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-clone for openSUSE:Factory 
checked in at 2015-06-30 10:15:53

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


Package is nodejs-clone

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-clone/nodejs-clone.changes
2015-04-27 13:00:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-clone.new/nodejs-clone.changes   
2015-06-30 10:15:55.0 +0200
@@ -1,0 +2,11 @@
+Wed Jun 24 14:15:00 UTC 2015 - i...@marguerite.su
+
+- revert to version 0.1.5
+- nodejs-defaults can't handle version  0.1.5
+
+---
+Fri Jun  5 19:24:39 UTC 2015 - i...@marguerite.su
+
+- update version 1.0.2
+
+---

Old:

  clone-0.1.18.tgz

New:

  clone-0.1.5.tgz



Other differences:
--
++ nodejs-clone.spec ++
--- /var/tmp/diff_new_pack.3jWPG6/_old  2015-06-30 10:15:55.0 +0200
+++ /var/tmp/diff_new_pack.3jWPG6/_new  2015-06-30 10:15:55.0 +0200
@@ -19,7 +19,7 @@
 %define base_name clone
 
 Name:   nodejs-clone
-Version:0.1.18
+Version:0.1.5
 Release:0
 Summary:Deep cloning of objects and arrays
 License:MIT
@@ -42,7 +42,7 @@
 
 %install
 mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
-cp -pr package.json clone.js \
+cp -pr package.json *.js \
 %{buildroot}%{nodejs_modulesdir}/%{base_name}/
 
 %files

++ clone-0.1.18.tgz - clone-0.1.5.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.travis.yml new/package/.travis.yml
--- old/package/.travis.yml 2013-05-12 20:24:20.0 +0200
+++ new/package/.travis.yml 2013-02-06 01:09:11.0 +0100
@@ -1,5 +1,4 @@
 language: node_js
 node_js:
   - 0.6
-  - 0.8
-  - 0.10
+  - 0.8
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/LICENSE new/package/LICENSE
--- old/package/LICENSE 2014-06-29 12:54:27.0 +0200
+++ new/package/LICENSE 2013-02-06 01:09:11.0 +0100
@@ -1,4 +1,4 @@
-Copyright © 2011-2014 Paul Vorbach p...@vorba.ch
+Copyright © 2011-2013 Paul Vorbach p...@vorb.de
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the “Software”), to deal in
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/README.md new/package/README.md
--- old/package/README.md   2014-06-29 12:57:13.0 +0200
+++ new/package/README.md   2013-02-06 01:09:11.0 +0100
@@ -44,7 +44,7 @@
 
 ## API
 
-`clone(val, circular, depth)`
+`clone(val, circular)`
 
   * `val` -- the value that you want to clone, any type allowed
   * `circular` -- boolean
@@ -52,8 +52,6 @@
 Call `clone` with `circular` set to `false` if you are certain that `obj`
 contains no circular references. This will give better performance if 
needed.
 There is no error if `undefined` or `null` is passed as `obj`.
-  * `depth` -- depth to wich the object is to be cloned (optional,
-defaults to infinity)
 
 `clone.clonePrototype(obj)`
 
@@ -99,14 +97,14 @@
 
 ## Bugs and Issues
 
-If you encounter any bugs or issues, feel free to [open an issue at
-github](https://github.com/pvorb/node-clone/issues) or send me an email to
-p...@vorba.ch. I also always like to hear from you, if you’re using my code.
+If you encounter any bugs or issues, feel free to
+[open an issue at github](https://github.com/pvorb/node-clone/issues) or send 
me
+an email to p...@vorb.de. I also always like to hear from you, if you’re 
using
+my code.
 
 ## License
 
-Copyright © 2011-2014 [Paul Vorbach](http://paul.vorba.ch/) and
-[contributors](https://github.com/pvorb/node-clone/graphs/contributors).
+Copyright © 2011-2013 Paul Vorbach
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the “Software”), to deal in
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/clone.js new/package/clone.js
--- old/package/clone.js2014-06-29 12:44:01.0 +0200
+++ new/package/clone.js2013-02-06 01:09:11.0 +0100
@@ -1,33 +1,6 @@
-'use strict';
+var util = require('util');
 
-function objectToString(o) {
-  return Object.prototype.toString.call(o);
-}
-
-// shim for Node's 'util' package
-// DO NOT REMOVE THIS! It is required for compatibility with EnderJS 
(http://enderjs.com/).
-var util = {
-  isArray: 

commit cfengine-masterfiles for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package cfengine-masterfiles for 
openSUSE:Factory checked in at 2015-06-30 10:16:21

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


Package is cfengine-masterfiles

Changes:

--- 
/work/SRC/openSUSE:Factory/cfengine-masterfiles/cfengine-masterfiles.changes
2015-03-16 07:00:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.cfengine-masterfiles.new/cfengine-masterfiles.changes
   2015-06-30 10:16:22.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 18 15:38:04 UTC 2015 - kkae...@suse.com
+
+- fix Fedora/RHEL builds - add perl-Exporter to BuildRequires
+
+---



Other differences:
--
++ cfengine-masterfiles.spec ++
--- /var/tmp/diff_new_pack.QSNolk/_old  2015-06-30 10:16:22.0 +0200
+++ /var/tmp/diff_new_pack.QSNolk/_new  2015-06-30 10:16:22.0 +0200
@@ -47,6 +47,9 @@
 %if 0%{?suse_version} = 1130
 BuildRequires:  -post-build-checks
 %endif
+%if (0%{?fedora_version} == 20) || (0%{?rhel_version} = 700)
+BuildRequires:  perl-Exporter
+%endif
 
 %description
 Masterfiles are the pristine version of the CFEngine promises. These




commit mksusecd for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package mksusecd for openSUSE:Factory 
checked in at 2015-06-30 10:16:14

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


Package is mksusecd

Changes:

--- /work/SRC/openSUSE:Factory/mksusecd/mksusecd.changes2015-06-23 
11:58:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.mksusecd.new/mksusecd.changes   2015-06-30 
10:16:16.0 +0200
@@ -1,0 +2,6 @@
+Thu Jun 25 13:06:04 CEST 2015 - snw...@suse.com
+
+- keep /content file up-to-date even when new files are added to the iso
+- 1.25
+
+---

Old:

  mksusecd-1.24.tar.xz

New:

  mksusecd-1.25.tar.xz



Other differences:
--
++ mksusecd.spec ++
--- /var/tmp/diff_new_pack.k8yHzd/_old  2015-06-30 10:16:17.0 +0200
+++ /var/tmp/diff_new_pack.k8yHzd/_new  2015-06-30 10:16:17.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   mksusecd
-Version:1.24
+Version:1.25
 Release:0
 Summary:Create SUSE Linux installation ISOs
 License:GPL-3.0+

++ mksusecd-1.24.tar.xz - mksusecd-1.25.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.24/VERSION new/mksusecd-1.25/VERSION
--- old/mksusecd-1.24/VERSION   2015-06-19 15:09:28.0 +0200
+++ new/mksusecd-1.25/VERSION   2015-06-25 13:03:04.0 +0200
@@ -1 +1 @@
-1.24
+1.25
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.24/changelog new/mksusecd-1.25/changelog
--- old/mksusecd-1.24/changelog 2015-06-19 15:09:28.0 +0200
+++ new/mksusecd-1.25/changelog 2015-06-25 13:03:04.0 +0200
@@ -1,3 +1,6 @@
+2015-06-25:1.25
+   - keep /content file up-to-date even when new files are added to the iso
+
 2015-06-19:1.24
- ensure '/content' is re-signed when necessary
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.24/mksusecd new/mksusecd-1.25/mksusecd
--- old/mksusecd-1.24/mksusecd  2015-06-19 15:09:28.0 +0200
+++ new/mksusecd-1.25/mksusecd  2015-06-25 13:03:04.0 +0200
@@ -174,6 +174,7 @@
 sub prepare_nano;
 sub prepare_pico;
 sub set_mkisofs_metadata;
+sub add_to_content_file;
 sub update_content;
 sub create_sign_key;
 sub add_sign_key;
@@ -2129,6 +2130,37 @@
 
 
 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# Add a file's check sum to /content.
+#
+# add_to_content_file($content, $type, $file_name, $pattern)
+#
+sub add_to_content_file
+{
+  my $cont = shift;
+  my $type = shift;
+  my $name = shift;
+  my $pattern = shift;
+
+  my $match = $name;
+  $name =~ s#.*/## if $type eq META;
+
+  if($match =~ m#$pattern#  !$cont-{$type}{$name}{new}) {
+my $digest = Digest::SHA-new($cont-{bits});
+my $f = fname($type eq META ? suse/setup/descr/$name : $name);
+if(-f $f) {
+  # print $name\n;
+  $digest-addfile($f);
+  my $sum = $digest-hexdigest;
+  $cont-{$type}{$name}{new} = $cont-{bits} $sum;
+}
+  }
+}
+
+
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# Create a new /content file and return 1 if it is different from the
+# existing one.
+#
 sub update_content
 {
   my $changed = 0;
@@ -2136,46 +2168,76 @@
   # don't modify content if we're not going to re-sign it
   return $changed if !$opt_sign;
 
-  my $content = fname content;
+  my $content_file = fname content;
 
-  return unless defined $content;
+  return unless defined $content_file;
 
-  my $content_old;
-  my $content_new;
+  my $cont;
 
-  if(open(my $f, $content)) {
+  # first, read file
+  if(open(my $f, $content_file)) {
 while($f) {
-  $content_old .= $_;
+  next if /^\s*$/;
   if(/^((META|HASH|KEY)\s+SHA(\d+)\s+)(\S+)(\s+(\S+))/) {
-my $bits  = \L$3;
-my $val = \L$4;
-my $name = $6;
-my $part1 = $1;
-my $part2 = $5;
-# print bits = $bits, val = $val, name = $name\n;
-# print ($part1)($part2)\n;
-my $digest = Digest::SHA-new($bits);
-my $f = fname $name;
-if(defined $f) {
-  $digest-addfile($f);
-  $val = $digest-hexdigest;
-}
-$content_new .= $part1$val$part2\n;
+my $type = $2;
+my $bits = $3;
+my $sum = \L$4;
+my $name = $6;
+$cont-{bits} = $bits if !$cont-{bits};
+$cont-{$type}{$name}{old} = $bits $sum;
+
+add_to_content_file $cont, $type, $name, '^';
   }
   else {
-$content_new .= $_;
+$cont-{head} .= $_;
   }
 }
 close 

commit openvpn for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package openvpn for openSUSE:Factory checked 
in at 2015-06-30 10:16:16

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


Package is openvpn

Changes:

--- /work/SRC/openSUSE:Factory/openvpn/openvpn.changes  2015-03-11 
09:58:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.openvpn.new/openvpn.changes 2015-06-30 
10:16:18.0 +0200
@@ -1,0 +2,35 @@
+Tue Jun  9 15:51:06 UTC 2015 - idon...@suse.com
+
+- Update to version 2.3.7
+  * down-root plugin: Replaced system() calls with execve()
+  * sockets: Remove the limitation of --tcp-nodelay to be server-only
+  * pkcs11: Load p11-kit-proxy.so module by default
+  * New approach to handle peer-id related changes to link-mtu
+  * Fix incorrect use of get_ipv6_addr() for iroute options
+  * Print helpful error message on --mktun/--rmtun if not available
+  * Explain effect of --topology subnet on --ifconfig
+  * Add note about file permissions and --crl-verify to manpage
+  * Repair --dev null breakage caused by db950be85d37
+  * Correct note about DNS randomization in openvpn.8
+  * Disallow usage of --server-poll-timeout in --secret key mode
+  * Slightly enhance documentation about --cipher
+  * On signal reception, return EAI_SYSTEM from openvpn_getaddrinfo()
+  * Use EAI_AGAIN instead of EAI_SYSTEM for openvpn_getaddrinfo()
+  * Fix --redirect-private in --dev tap mode
+  * Updated manpage for --rport and --lport
+  * Properly escape dashes on the man-page
+  * Improve documentation in --script-security section of the man-page
+  * Really fix '--cipher none' regression
+  * Set tls-version-max to 1.1 if cryptoapicert is used
+  * Account for peer-id in frame size calculation
+  * Disable SSL compression
+  * Fix frame size calculation for non-CBC modes.
+  * Allow for CN/username of 64 characters (fixes off-by-one)
+  * Re-enable TLS version negotiation by default
+  * Remove size limit for files inlined in config
+  * Improve --tls-cipher and --show-tls man page description
+  * Re-read auth-user-pass file on (re)connect if required
+  * Clarify --capath option in manpage
+  * Call daemon() before initializing crypto library
+
+---

Old:

  openvpn-2.3.6.tar.gz
  openvpn-2.3.6.tar.gz.asc

New:

  openvpn-2.3.7.tar.gz
  openvpn-2.3.7.tar.gz.asc



Other differences:
--
++ openvpn.spec ++
--- /var/tmp/diff_new_pack.afNh9b/_old  2015-06-30 10:16:19.0 +0200
+++ /var/tmp/diff_new_pack.afNh9b/_new  2015-06-30 10:16:19.0 +0200
@@ -32,7 +32,7 @@
 %else
 PreReq: %insserv_prereq %fillup_prereq
 %endif
-Version:2.3.6
+Version:2.3.7
 Release:0
 Summary:Full-featured SSL VPN solution using a TUN/TAP Interface
 License:SUSE-GPL-2.0-with-openssl-exception and LGPL-2.1

++ openvpn-2.3.6.tar.gz - openvpn-2.3.7.tar.gz ++
 8142 lines of diff (skipped)





commit kde3-amarok for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package kde3-amarok for openSUSE:Factory 
checked in at 2015-06-30 10:16:33

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


Package is kde3-amarok

Changes:

--- /work/SRC/openSUSE:Factory/kde3-amarok/kde3-amarok.changes  2012-06-18 
16:31:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.kde3-amarok.new/kde3-amarok.changes 
2015-06-30 10:16:35.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 26 09:59:19 UTC 2015 - an...@opensuse.org
+
+- use RbConfig
+
+---



Other differences:
--
++ kde3-amarok.spec ++
--- /var/tmp/diff_new_pack.7cYZ5w/_old  2015-06-30 10:16:36.0 +0200
+++ /var/tmp/diff_new_pack.7cYZ5w/_new  2015-06-30 10:16:36.0 +0200
@@ -173,7 +173,8 @@
 %build
 . /etc/opt/kde3/common_options
 export CXXFLAGS=$CXXFLAGS -fPIC
-
+sed -i 's/Config::MAKEFILE_CONFIG/RbConfig::MAKEFILE_CONFIG/g' configure
+sed -i 's/Config.expand/RbConfig.expand/g' configure
 ./configure $configkde \
--without-included-sqlite \
--with-gstreamer10 \
@@ -206,9 +207,6 @@
 
 %fdupes $RPM_BUILD_ROOT
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig




commit yast2-docker for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package yast2-docker for openSUSE:Factory 
checked in at 2015-06-30 10:16:09

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


Package is yast2-docker

Changes:

--- /work/SRC/openSUSE:Factory/yast2-docker/yast2-docker.changes
2015-05-07 08:29:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-docker.new/yast2-docker.changes   
2015-06-30 10:16:11.0 +0200
@@ -1,0 +2,11 @@
+Thu Jun 25 09:05:11 UTC 2015 - fcaste...@suse.com
+
+- Release 3.1.6
+  - ensure untagged images can be removed (bnc#935929)
+
+---
+Tue Jun 23 14:21:42 UTC 2015 - fcaste...@suse.com
+
+- Ensure yast2-storage is required at runtime
+
+---

Old:

  yast2-docker-3.1.5.tar.bz2

New:

  yast2-docker-3.1.6.tar.bz2



Other differences:
--
++ yast2-docker.spec ++
--- /var/tmp/diff_new_pack.6wH61H/_old  2015-06-30 10:16:12.0 +0200
+++ /var/tmp/diff_new_pack.6wH61H/_new  2015-06-30 10:16:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-docker
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 ##
 
 Name:   yast2-docker
-Version:3.1.5
+Version:3.1.6
 Release:0
 BuildArch:  noarch
 
@@ -34,6 +34,7 @@
 Requires:   docker = 1.3
 Requires:   yast2 = 3.1.0
 Requires:   yast2-ruby-bindings = 1.2.0
+Requires:   yast2-storage
 Requires:   rubygem(%{rb_default_ruby_abi}:docker-api)
 
 BuildRequires:  update-desktop-files

++ yast2-docker-3.1.5.tar.bz2 - yast2-docker-3.1.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-docker-3.1.5/package/yast2-docker.changes 
new/yast2-docker-3.1.6/package/yast2-docker.changes
--- old/yast2-docker-3.1.5/package/yast2-docker.changes 2015-05-06 
16:37:07.0 +0200
+++ new/yast2-docker-3.1.6/package/yast2-docker.changes 2015-06-25 
11:37:30.0 +0200
@@ -1,4 +1,15 @@
 ---
+Thu Jun 25 09:05:11 UTC 2015 - fcaste...@suse.com
+
+- Release 3.1.6
+  - ensure untagged images can be removed (bnc#935929)
+
+---
+Tue Jun 23 14:21:42 UTC 2015 - fcaste...@suse.com
+
+- Ensure yast2-storage is required at runtime
+
+---
 Wed May 06 16:30:11 CEST 2015 - aschn...@suse.de
 
 - Release 3.1.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-docker-3.1.5/package/yast2-docker.spec 
new/yast2-docker-3.1.6/package/yast2-docker.spec
--- old/yast2-docker-3.1.5/package/yast2-docker.spec2015-05-06 
16:37:07.0 +0200
+++ new/yast2-docker-3.1.6/package/yast2-docker.spec2015-06-25 
11:37:30.0 +0200
@@ -24,7 +24,7 @@
 ##
 
 Name:   yast2-docker
-Version:3.1.5
+Version:3.1.6
 Release:0
 BuildArch:  noarch
 
@@ -33,6 +33,7 @@
 
 Requires:   yast2 = 3.1.0
 Requires:   yast2-ruby-bindings = 1.2.0
+Requires:   yast2-storage
 Requires:   rubygem(%{rb_default_ruby_abi}:docker-api)
 Requires:   docker = 1.3
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-docker-3.1.5/src/lib/ydocker/main_dialog.rb 
new/yast2-docker-3.1.6/src/lib/ydocker/main_dialog.rb
--- old/yast2-docker-3.1.5/src/lib/ydocker/main_dialog.rb   2015-05-06 
16:37:07.0 +0200
+++ new/yast2-docker-3.1.6/src/lib/ydocker/main_dialog.rb   2015-06-25 
11:37:30.0 +0200
@@ -312,7 +312,12 @@
   image, label = selected_image
   return unless (Yast::Popup.YesNo(_(Do you really want to delete image 
\%s\?) % label))
 
-  image.connection.delete(/images/#{label}, {})
+  if label == 'none:none'
+image.remove
+  else
+image.connection.delete(/images/#{label}, {})
+  end
+
   redraw_images
 end
 




commit erlang for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package erlang for openSUSE:Factory checked 
in at 2015-06-30 10:16:07

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


Package is erlang

Changes:

--- /work/SRC/openSUSE:Factory/erlang/erlang.changes2015-06-23 
11:58:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.erlang.new/erlang.changes   2015-06-30 
10:16:09.0 +0200
@@ -1,0 +2,8 @@
+Thu Jun 25 08:41:52 UTC 2015 - dmuel...@suse.com
+
+- update to 17.5.6:
+  * Fix broken relay counters
+  * Fix diameter_sctp listener race
+- fix build for SLE_12
+
+---
@@ -4,0 +13,6 @@
+
+---
+Mon May  4 10:01:30 UTC 2015 - dmuel...@suse.com
+
+- fix systemd service files for epmd:
+  * fix stop of epmd (epmd -kill is deprecated and ignored, so stop hangs)

Old:

  OTP-17.5.4.tar.gz

New:

  OTP-17.5.6.tar.gz



Other differences:
--
++ erlang.spec ++
--- /var/tmp/diff_new_pack.wTd5xp/_old  2015-06-30 10:16:11.0 +0200
+++ /var/tmp/diff_new_pack.wTd5xp/_new  2015-06-30 10:16:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   erlang
-Version:17.5.4
+Version:17.5.6
 Release:0
 Summary:General-purpose programming language and runtime environment
 License:ErlPL-1.1
@@ -59,9 +59,12 @@
 %endif
 Requires:   erlang-epmd
 
-%if 0%{?suse_version} = 1315
+%if 0%{?suse_version} = 1320
 BuildRequires:  wxWidgets-devel = 3
 %else
+%if 0%{?suse_version} = 1315
+BuildRequires:  wxWidgets-devel
+%else
 %if 0%{?suse_version} = 1140
 BuildRequires:  wxWidgets
 BuildRequires:  wxWidgets-wxcontainer-devel
@@ -71,6 +74,7 @@
 BuildRequires:  wxGTK-devel = 2.8
 %endif
 %endif
+%endif
 
 %if 0%{?suse_version} =1230
 BuildRequires:  systemd-devel

++ OTP-17.5.4.tar.gz - OTP-17.5.6.tar.gz ++
/work/SRC/openSUSE:Factory/erlang/OTP-17.5.4.tar.gz 
/work/SRC/openSUSE:Factory/.erlang.new/OTP-17.5.6.tar.gz differ: char 26, line 1

++ epmd.service ++
--- /var/tmp/diff_new_pack.wTd5xp/_old  2015-06-30 10:16:11.0 +0200
+++ /var/tmp/diff_new_pack.wTd5xp/_new  2015-06-30 10:16:11.0 +0200
@@ -5,10 +5,13 @@
 
 [Service]
 ExecStart=/usr/bin/epmd -systemd
-ExecStop=/usr/bin/epmd -kill
+#ExecStop=/usr/bin/epmd -kill
 Type=simple
 StandardOutput=journal
 StandardError=journal
+Restart=always
+LimitNPROC=1
+LimitFSIZE=0
 User=epmd
 Group=epmd
 




commit vtk for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package vtk for openSUSE:Factory checked in 
at 2015-06-30 10:16:10

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


Package is vtk

Changes:

--- /work/SRC/openSUSE:Factory/vtk/vtk.changes  2015-06-24 20:49:34.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vtk.new/vtk.changes 2015-06-30 
10:16:13.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 25 08:17:04 UTC 2015 - alinm.el...@gmail.com
+
+- use qt5 for factory 
+
+---



Other differences:
--
++ vtk.spec ++
--- /var/tmp/diff_new_pack.2vIUJR/_old  2015-06-30 10:16:14.0 +0200
+++ /var/tmp/diff_new_pack.2vIUJR/_new  2015-06-30 10:16:14.0 +0200
@@ -55,17 +55,27 @@
 BuildRequires:  libmysqlclient-devel
 BuildRequires:  libnetcdf_c++-devel
 BuildRequires:  libpng-devel
-BuildRequires:  libqt4-devel
 BuildRequires:  libtheora-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  netcdf-devel
 BuildRequires:  openmpi-devel
 BuildRequires:  python-devel
-BuildRequires:  python-qt4-devel
+
 BuildRequires:  tcl-devel
 BuildRequires:  tk-devel
 BuildRequires:  wget
 BuildRequires:  zlib-devel
+%if 0%{?suse_version}  1320
+BuildRequires:  python-qt5-devel
+BuildRequires:  pkgconfig(Qt5OpenGL)
+BuildRequires:  pkgconfig(Qt5OpenGLExtensions)
+BuildRequires:  pkgconfig(Qt5Sql)
+BuildRequires:  pkgconfig(Qt5WebKitWidgets)
+BuildRequires:  pkgconfig(Qt5Widgets)
+%else
+BuildRequires:  libqt4-devel
+BuildRequires:  python-qt4-devel
+%endif
 %if %{?sles_version}
 BuildRequires:  libxml2-devel
 %else
@@ -76,7 +86,11 @@
 BuildRequires:  jsoncpp-devel
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version}  1320
+%define qtdir   %{_lib}/qt5
+%else
 %define qtdir   %{_lib}/qt4
+%endif
 
 %description
 VTK is an open-source software system for image processing, 3D
@@ -106,7 +120,6 @@
 Requires:   libnetcdf_c++-devel
 Requires:   libogg-devel
 Requires:   libpng-devel
-Requires:   libqt4-devel
 Requires:   libtheora-devel
 Requires:   libtiff-devel
 Requires:   libxml2-devel
@@ -160,7 +173,17 @@
 Requires:   %{name} = %{version}
 Requires:   %{name}-qt = %{version}
 Requires:   python-%{name} = %{version}
+%if 0%{?suse_version}  1320
+Requires:   libQt5OpenGL-devel
+Requires:   libQt5OpenGLExtensions-devel-static
+Requires:   libQt5Sql-devel
+Requires:   libQt5WebKitWidgets-devel
+Requires:   libQt5Widgets-devel
+Requires:   python-qt5
+%else
+Requires:   libqt4-devel
 Requires:   python-qt4
+%endif
 %{py_requires}
 
 %description -n python-%{name}-qt
@@ -260,6 +283,9 @@
 -DVTK_INSTALL_LIBRARY_DIR:PATH=%{_lib}/%{name}\
 -DVTK_INSTALL_PACKAGE_DIR:PATH=%{_lib}/cmake/%{name} \
 -DVTK_INSTALL_TCL_DIR:PATH=share/tcl/%{name} \
+%if 0%{?suse_version}  1320
+-DVTK_QT_VERSION=5 \
+%endif
 -DVTK_INSTALL_QT_DIR:STRING=/%{qtdir}/plugins/designer \
 -DVTK_USE_OGGTHEORA_ENCODER:BOOL=ON \
 -DVTK_USE_RENDERING:BOOL=ON \




commit daps for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package daps for openSUSE:Factory checked in 
at 2015-06-30 10:16:40

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


Package is daps

Changes:

--- /work/SRC/openSUSE:Factory/daps/daps.changes2015-06-18 
06:37:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.daps.new/daps.changes   2015-06-30 
10:16:43.0 +0200
@@ -1,0 +2,13 @@
+Fri Jun 19 09:21:31 UTC 2015 - fsunderme...@opensuse.org
+
+Stable release DAPS 2.0:
+
+- supporting rng _and_ rnc schemas for validation with jing
+- added a --debug switch and error reporting to daps_autobuild
+- moved a --meta related warning so it does not get displayed
+  when running a *-name subcommand
+- fixed a quoting issue in daps-migrate and daps_functions
+- fixed an error in the DB4-DB5 migration stylesheet (formatting
+  was lost on term tags)
+
+---

Old:

  daps-2.0~rc7.tar.bz2

New:

  daps-2.0.tar.bz2



Other differences:
--
++ daps.spec ++
--- /var/tmp/diff_new_pack.L0pLZf/_old  2015-06-30 10:16:44.0 +0200
+++ /var/tmp/diff_new_pack.L0pLZf/_new  2015-06-30 10:16:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   daps
-Version:2.0~rc7
+Version:2.0
 Release:0
 
 ###

++ daps-2.0~rc7.tar.bz2 - daps-2.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/daps/ChangeLog new/daps/ChangeLog
--- old/daps/ChangeLog  2015-06-10 15:59:32.0 +0200
+++ new/daps/ChangeLog  2015-06-19 12:14:00.0 +0200
@@ -1,4 +1,17 @@
 ---
+Fri Jun 19 09:21:31 UTC 2015 - fsunderme...@opensuse.org
+
+Stable release DAPS 2.0:
+
+- supporting rng _and_ rnc schemas for validation with jing
+- added a --debug switch and error reporting to daps_autobuild
+- moved a --meta related warning so it does not get displayed
+  when running a *-name subcommand
+- fixed a quoting issue in daps-migrate and daps_functions
+- fixed an error in the DB4-DB5 migration stylesheet (formatting
+  was lost on term tags)
+   
+---
 Tue Jun 10 13:50:00 UTC 2015 - f...@opensuse.org
 
 New release DAPS 2.0~rc7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/daps/autobuild/daps_autobuild.in 
new/daps/autobuild/daps_autobuild.in
--- old/daps/autobuild/daps_autobuild.in2015-06-10 15:59:32.0 
+0200
+++ new/daps/autobuild/daps_autobuild.in2015-06-19 12:14:00.0 
+0200
@@ -13,6 +13,7 @@
 
 #VERBOSE=1
 CHECK_VCS=1
+DEBUG=0
 DO_RSYNC=1
 RSYNC_DELETE=
 SECTIONS=
@@ -57,6 +58,10 @@
 Path to config file. Can be specified relative or absolute.
 Default: unset
 
+  --debug
+In case of a build failure, show a verbose DAPS log.
+Default: disabled
+
   --force
 Manuals will only be rebuild when the git/svn repository has changed
 since the last build. Use this option to force a rebuild even when the
@@ -227,7 +232,7 @@
 git pull -q || return 1
 echo   * Updated git branch $GITBRANCH
 if [[ 1 -eq $CHECK_VCS ]]; then
-   NEWREV=$(git git rev-parse HEAD) || return 2
+   NEWREV=$(git rev-parse HEAD) || return 2
[[ $NEWREV != $_LASTREV ]]  REBUILD=1
 fi
 return 0
@@ -253,7 +258,7 @@
 
 
 function run_daps {
-local BUILDDIR DCFILE NAME RESULT _SET SUBCMD
+local BUILDDIR DAPS_BASE_CMD DCFILE _FORMAT NAME NAME_CMD_ARGS ORIG_IFS 
RESULT RUNDAPS _SET SUBCMD
 #
 # Create the DAPS command and run DAPS
 # Expects 4 Arguments:
@@ -269,12 +274,14 @@
 [[ -z $2 ]]  exit_on_error Function run_daps must be called with a 
DC-FILE
 [[ -z $3 ]]  exit_on_error Function run_daps must be called with a set 
ID
 
-SUBCMD=$1
+_FORMAT=$1
 DCFILE=$2
 _SET=$3
 
-if [[ single-html = $SUBCMD ]]; then
+if [[ single-html = $_FORMAT ]]; then
 SUBCMD=html --single
+else
+SUBCMD=$_FORMAT
 fi
   
 NAME=${DCFILE//DC-/}
@@ -282,9 +289,11 @@
 
 # build the DAPS command
 #
-RUNDAPS=${_DAPSROOT}/bin/daps --dapsroot $_DAPSROOT --builddir $BUILDDIR 
-d $DCFILE
-[[ -n $_STYLEROOT ]] RUNDAPS=$RUNDAPS --styleroot=$_STYLEROOT
-[[ -n $_FB_STYLEROOT ]]  RUNDAPS=$RUNDAPS --fb_styleroot=$_FB_STYLEROOT
+DAPS_BASE_CMD=${_DAPSROOT}/bin/daps --dapsroot $_DAPSROOT --builddir 
$BUILDDIR -d $DCFILE
+[[ -n $_STYLEROOT ]] DAPS_BASE_CMD=$DAPS_BASE_CMD 
--styleroot=$_STYLEROOT
+[[ -n $_FB_STYLEROOT ]]  

commit nodejs-boom for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-boom for openSUSE:Factory 
checked in at 2015-06-30 10:16:59

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


Package is nodejs-boom

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-boom/nodejs-boom.changes  2015-04-27 
13:00:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-boom.new/nodejs-boom.changes 
2015-06-30 10:17:01.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 26 17:29:09 UTC 2015 - i...@marguerite.su
+
+- update version 2.7.2
+
+---

Old:

  boom-2.5.1.tgz

New:

  boom-2.7.2.tgz



Other differences:
--
++ nodejs-boom.spec ++
--- /var/tmp/diff_new_pack.RrtX8l/_old  2015-06-30 10:17:02.0 +0200
+++ /var/tmp/diff_new_pack.RrtX8l/_new  2015-06-30 10:17:02.0 +0200
@@ -19,7 +19,7 @@
 %define base_name boom
 
 Name:   nodejs-boom
-Version:2.5.1
+Version:2.7.2
 Release:0
 Summary:HTTP-friendly error objects
 License:BSD-2-Clause
@@ -37,7 +37,7 @@
 
 %prep
 %setup -q -n package
-chmod 0644 package.json index.js lib/*.js AUTHORS README.md LICENSE 
images/*.png
+chmod 0644 index.js lib/*.js README.md LICENSE images/*.png
 
 %build
 
@@ -48,7 +48,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc README.md LICENSE AUTHORS
+%doc README.md LICENSE CONTRIBUTING.md
 %{nodejs_modulesdir}/%{base_name}
 
 %changelog

++ boom-2.5.1.tgz - boom-2.7.2.tgz ++
 1724 lines of diff (skipped)




commit sanlock for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package sanlock for openSUSE:Factory checked 
in at 2015-06-30 10:17:10

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


Package is sanlock

Changes:

--- /work/SRC/openSUSE:Factory/sanlock/sanlock.changes  2015-03-27 
09:40:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.sanlock.new/sanlock.changes 2015-06-30 
10:17:12.0 +0200
@@ -1,0 +2,9 @@
+Fri Jun 19 10:48:55 MDT 2015 - jfeh...@suse.com
+
+- Update to sanlock 3.2.4
+  - Add conf file sanlock.conf
+  - Add pkgconfig files
+  - Numerous improvements and bug fixes.  For details, see
+https://git.fedorahosted.org/cgit/sanlock.git/log/
+
+---

Old:

  sanlock-3.2.2.tar.xz

New:

  sanlock-3.2.4.tar.xz



Other differences:
--
++ sanlock.spec ++
--- /var/tmp/diff_new_pack.orsgFy/_old  2015-06-30 10:17:13.0 +0200
+++ /var/tmp/diff_new_pack.orsgFy/_new  2015-06-30 10:17:13.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sanlock
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 %endif
 
 Name:   sanlock
-Version:3.2.2
+Version:3.2.4
 Release:0
 Summary:A shared disk lock manager
 License:GPL-2.0 and GPL-2.0+ and LGPL-2.1+
@@ -144,6 +144,7 @@
 install LIBDIR=%{_libdir} \
 DESTDIR=$RPM_BUILD_ROOT
 %endif
+install -D -m 755 src/sanlock.conf 
$RPM_BUILD_ROOT/%{_sysconfdir}/sanlock/sanlock.conf
 install -D -m 755 %SOURCE2 
$RPM_BUILD_ROOT/%{_localstatedir}/adm/fillup-templates/sysconfig.sanlock
 install -D -m 755 %SOURCE4 
$RPM_BUILD_ROOT/%{_localstatedir}/adm/fillup-templates/sysconfig.wdmd
 %if %{with_systemd}
@@ -239,6 +240,8 @@
 
 %files
 %defattr(-,root,root,-)
+%dir %attr(0700, root, root) %{_sysconfdir}/sanlock/
+%config(noreplace) %{_sysconfdir}/sanlock/sanlock.conf
 %{_sbindir}/rcsanlock
 %{_localstatedir}/adm/fillup-templates/sysconfig.sanlock
 %{_sbindir}/rcwdmd
@@ -278,6 +281,8 @@
 %{_includedir}/sanlock_admin.h
 %{_includedir}/sanlock_resource.h
 %{_includedir}/sanlock_direct.h
+%{_libdir}/pkgconfig/libsanlock.pc
+%{_libdir}/pkgconfig/libsanlock_client.pc
 
 %if %{with_fence_sanlockd}
 %files -n fence-sanlock

++ sanlock-3.2.2.tar.xz - sanlock-3.2.4.tar.xz ++
 2588 lines of diff (skipped)

++ sanlock-SCHED_RESET_ON_FORK-undefined.patch ++
--- /var/tmp/diff_new_pack.orsgFy/_old  2015-06-30 10:17:13.0 +0200
+++ /var/tmp/diff_new_pack.orsgFy/_new  2015-06-30 10:17:13.0 +0200
@@ -2,7 +2,7 @@
 ===
 --- src/main.c.orig
 +++ src/main.c
-@@ -58,6 +58,10 @@
+@@ -59,6 +59,10 @@
  
  #define SIGRUNPATH 100 /* anything that's not SIGTERM/SIGKILL */
  

++ suse-no-date-time.patch ++
--- /var/tmp/diff_new_pack.orsgFy/_old  2015-06-30 10:17:13.0 +0200
+++ /var/tmp/diff_new_pack.orsgFy/_new  2015-06-30 10:17:13.0 +0200
@@ -1,8 +1,8 @@
-Index: sanlock-3.1.0/src/main.c
+Index: sanlock-3.2.4/src/main.c
 ===
 sanlock-3.1.0.orig/src/main.c
-+++ sanlock-3.1.0/src/main.c
-@@ -1913,8 +1913,8 @@
+--- sanlock-3.2.4.orig/src/main.c
 sanlock-3.2.4/src/main.c
+@@ -1920,8 +1920,8 @@ static int read_command_line(int argc, c
}
  
if (!strcmp(arg1, --version) || !strcmp(arg1, -V)) {

++ suse-systemd.patch ++
--- /var/tmp/diff_new_pack.orsgFy/_old  2015-06-30 10:17:13.0 +0200
+++ /var/tmp/diff_new_pack.orsgFy/_new  2015-06-30 10:17:13.0 +0200
@@ -1,8 +1,9 @@
-Index: sanlock-3.1.0/init.d/sanlock.service
+Index: sanlock-3.2.4/init.d/sanlock.service
 ===
 sanlock-3.1.0.orig/init.d/sanlock.service
-+++ sanlock-3.1.0/init.d/sanlock.service
-@@ -6,8 +6,10 @@ Wants=wdmd.service
+--- sanlock-3.2.4.orig/init.d/sanlock.service
 sanlock-3.2.4/init.d/sanlock.service
+@@ -5,8 +5,10 @@ Wants=wdmd.service
+ 
  [Service]
  Type=forking
 -ExecStart=/lib/systemd/systemd-sanlock start
@@ -14,12 +15,12 @@
  
  [Install]
  WantedBy=multi-user.target
- 
-Index: sanlock-3.1.0/init.d/wdmd.service
+Index: sanlock-3.2.4/init.d/wdmd.service
 ===
 sanlock-3.1.0.orig/init.d/wdmd.service
-+++ sanlock-3.1.0/init.d/wdmd.service
-@@ -5,8 +5,10 @@ After=syslog.target
+--- 

commit nodejs-builtins for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-builtins for openSUSE:Factory 
checked in at 2015-06-30 10:17:02

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


Package is nodejs-builtins

Changes:

New Changes file:

--- /dev/null   2015-06-25 09:04:34.320025005 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-builtins.new/nodejs-builtins.changes 
2015-06-30 10:17:03.0 +0200
@@ -0,0 +1,10 @@
+---
+Fri Jun 26 17:32:48 UTC 2015 - i...@marguerite.su
+
+- revert back to 0.0.7
+
+---
+Sat Jun  6 09:34:36 UTC 2015 - i...@marguerite.su
+
+- initial version 1.0.1
+

New:

  builtins-0.0.7.tgz
  nodejs-builtins.changes
  nodejs-builtins.spec



Other differences:
--
++ nodejs-builtins.spec ++
#
# spec file for package nodejs-builtins
#
# Copyright (c) 2015 SUSE LINUX 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 builtins

Name:   nodejs-builtins
Version:0.0.7
Release:0
Summary:List of node.js builtin modules
License:MIT
Group:  Development/Languages/Other
Url:https://github.com/juliangruber/builtins
Source: 
http://registry.npmjs.org/%{base_name}/-/%{base_name}-%{version}.tgz
BuildRequires:  nodejs-packaging
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch

%nodejs_find_provides_and_requires

%description
List of node.js builtin modules.

%prep
%setup -q -n package

%build

%install
mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
cp -pr package.json builtins.json \
%{buildroot}%{nodejs_modulesdir}/%{base_name}/

%files
%defattr(-,root,root,-)
%doc Readme.md History.md
%dir %{nodejs_modulesdir}
%{nodejs_modulesdir}/%{base_name}

%changelog



commit mysql-community-server for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package mysql-community-server for 
openSUSE:Factory checked in at 2015-06-30 10:16:38

Comparing /work/SRC/openSUSE:Factory/mysql-community-server (Old)
 and  /work/SRC/openSUSE:Factory/.mysql-community-server.new (New)


Package is mysql-community-server

Changes:

--- 
/work/SRC/openSUSE:Factory/mysql-community-server/mysql-community-server.changes
2015-06-24 20:57:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.mysql-community-server.new/mysql-community-server.changes
   2015-06-30 10:16:40.0 +0200
@@ -1,0 +2,11 @@
+Fri Jun 26 10:04:02 UTC 2015 - tchva...@suse.com
+
+- Enable testsuite
+
+---
+Thu Jun 25 13:52:45 UTC 2015 - tchva...@suse.com
+
+- Update again to git state now with reshaped initscript
+  now better supporting initialization/migration
+
+---

Old:

  install.inc
  rc.mysql.systemd
  rc.mysql.sysvinit

New:

  mysql-systemd-helper
  mysql.target
  mysql@.service



Other differences:
--
++ mysql-community-server.spec ++
 620 lines (skipped)
 between 
/work/SRC/openSUSE:Factory/mysql-community-server/mysql-community-server.spec
 and 
/work/SRC/openSUSE:Factory/.mysql-community-server.new/mysql-community-server.spec

++ README.debug ++
--- /var/tmp/diff_new_pack.5mcFdE/_old  2015-06-30 10:16:42.0 +0200
+++ /var/tmp/diff_new_pack.5mcFdE/_new  2015-06-30 10:16:42.0 +0200
@@ -45,14 +45,6 @@
 
 core-file
 
-  Note: this unfortunatelly doesn't work in SUSE Linux 10.1 and older.
-  On these systems, you need to run safe_mysqld directly under user
-  mysql:
-
-su - mysql
-mysqld_safe --socket=/var/lib/mysql/mysql.sock \
---datadir=/var/lib/mysql --core-file 
-
 The core file will be written to the /var/lib/mysql/ directory. I
 suggest setting the kernel variable kernel.core_uses_pid to 1
 
@@ -64,31 +56,19 @@
 After you got the core file, install the gdb and mysql-debuginfo
 packages and run
 
-gdb /usr/sbin/mysqld /var/lib/mysql/core
+gdb /usr/sbin/mysqld /var/lib/mysql/core
 (gdb) bt
 
-Replace mysqld with the mysqld version you used (mysqld, mysqld-max)
-and core with the actual name of the coredump.
+Replace the core with the actual name of the coredump.
 
 3) Trace files
 --
-Start mysqld using following command:
-
-$ MYSQLD_DEBUG=yes rcmysql start
-
-The init script will then start mysqld and add the --core-file,
---log and --debug options for you. The query log will be stored in
-
-/var/lib/mysql/myqld-query.log
-
-and the trace file in
-
-/var/lib/mysql/mysqld.trace
-
-If you don't like the options set by the init script, just put your own
-into /etc/my.cnf and the init script will honor them.
-
 The trace file will contain various debug information and function
 calls/returns and will become _extremly_ huge after a while, so don't
 attach it to bugzilla unless requested.
 
+Add the following line to your /etc/my.cnf into section [mysqld]:
+
+stack-trace
+
+The trace file will be then written to /var/lib/mysql directory.
\ No newline at end of file

++ README.install ++
--- /var/tmp/diff_new_pack.5mcFdE/_old  2015-06-30 10:16:42.0 +0200
+++ /var/tmp/diff_new_pack.5mcFdE/_new  2015-06-30 10:16:42.0 +0200
@@ -9,7 +9,7 @@
 To do so, start the server, then issue the following commands:
 
 '/usr/bin/mysqladmin' -u root password 'new-password'
-'/usr/bin/mysqladmin' -u root -h misibook password 'new-password'
+'/usr/bin/mysqladmin' -u root -h hostname password 'new-password'
 
 Alternatively you can run:
 '/usr/bin/mysql_secure_installation'

++ configuration-tweaks.tar.bz2 ++

++ mysql-patches.tar.bz2 ++

++ mysql-systemd-helper ++
#!/bin/bash
die() {
echo $1
exit 1
}

# Read options from config file
read_config() {
# Initial settings
MYSQLVER=$(echo @MYSQLVER@ | sed 's|\.[0-9]\+$||')
mysql_daemon_user=mysql
mysql_daemon_group=mysql
if [[ -z $INSTANCE || x$INSTANCE = xdefault ]]; then
datadir=/var/lib/mysql
socket=/var/run/mysql/mysql.sock
else
datadir=/var/lib/mysql-$INSTANCE
socket=/var/run/mysql/mysql.${INSTANCE}.sock
fi

# Read options - important for multi setup
if [[ -n $INSTANCE  x$INSTANCE != xdefault ]]; then
opts=$(/usr/bin/my_print_defaults --mysqld mysqld_multi 
$INSTANCE)
tmp_opts=$opts
else
opts=$(/usr/bin/my_print_defaults --mysqld)
tmp_opts=$opts
fi

   

commit libxmp for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package libxmp for openSUSE:Factory checked 
in at 2015-06-30 10:16:35

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


Package is libxmp

Changes:

--- /work/SRC/openSUSE:Factory/libxmp/libxmp.changes2015-04-15 
16:22:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.libxmp.new/libxmp.changes   2015-06-30 
10:16:36.0 +0200
@@ -1,0 +2,15 @@
+Thu Jun 25 20:16:57 UTC 2015 - jeng...@inai.de
+
+- Update to new upstream release 4.3.9
+* Fix bugs caught in the OpenMPT test cases:
+* fix IT tone portamento on sample change and NNA
+* fix IT tone portamento with offset
+* fix memory leak in vorbis decoder
+* detect Amiga frequency limits in MOD
+* fix problems in Amiga split channels
+* fix global volume on restart to invalid row
+* fix Oktalyzer note slide effect
+* fix Oktalyzer volume setting in split channels
+* allow short sample reads
+
+---

Old:

  libxmp-4.3.8.tar.gz

New:

  libxmp-4.3.9.tar.gz



Other differences:
--
++ libxmp.spec ++
--- /var/tmp/diff_new_pack.fcH7w5/_old  2015-06-30 10:16:37.0 +0200
+++ /var/tmp/diff_new_pack.fcH7w5/_new  2015-06-30 10:16:37.0 +0200
@@ -18,13 +18,14 @@
 
 Name:   libxmp
 %define lname  libxmp4
-Version:4.3.8
+Version:4.3.9
 Release:0
 Summary:Module Player library for MOD, S3M, IT and others
 License:LGPL-2.1
 Group:  Development/Libraries/C and C++
 Url:http://xmp.sf.net/
 
+#Freshcode-URL:https://freshcode.club/projects/libxmp
 #Git-Clone:git://git.code.sf.net/p/xmp/libxmp
 Source: http://downloads.sf.net/xmp/%name-%version.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ libxmp-4.3.8.tar.gz - libxmp-4.3.9.tar.gz ++
 2066 lines of diff (skipped)




commit libdevil for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package libdevil for openSUSE:Factory 
checked in at 2015-06-30 10:17:07

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


Package is libdevil

Changes:

--- /work/SRC/openSUSE:Factory/libdevil/libdevil.changes2013-10-04 
07:25:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.libdevil.new/libdevil.changes   2015-06-30 
10:17:07.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 26 15:44:59 UTC 2015 - antoine.belv...@laposte.net
+
+- Fix compilation with GCC 5: add DevIL-1.7.8-gcc5.patch. 
+
+---

New:

  DevIL-1.7.8-gcc5.patch



Other differences:
--
++ libdevil.spec ++
--- /var/tmp/diff_new_pack.AYdmlV/_old  2015-06-30 10:17:08.0 +0200
+++ /var/tmp/diff_new_pack.AYdmlV/_new  2015-06-30 10:17:08.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libdevil
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -33,6 +33,8 @@
 Patch1: DevIL-%{version}-CVE-2009-3994.patch
 # From Gentoo
 Patch2: DevIL-%{version}-libpng14.patch
+# From Fedora
+Patch3: DevIL-%{version}-gcc5.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  OpenEXR-devel
 BuildRequires:  SDL-devel
@@ -144,6 +146,7 @@
 %patch0
 %patch1
 %patch2 -p1
+%patch3 -p1
 # FIXME: src-IL/src/il_wdp.c unclear license: https://jxrlib.codeplex.com can 
stand as replacement
 # make sure we don't compile this accidentally
  src-IL/src/il_wdp.c

++ DevIL-1.7.8-gcc5.patch ++
diff -up devil-1.7.8/include/IL/il.h~ devil-1.7.8/include/IL/il.h
--- devil-1.7.8/include/IL/il.h~2009-03-08 08:10:08.0 +0100
+++ devil-1.7.8/include/IL/il.h 2015-06-18 12:34:38.656310094 +0200
@@ -65,7 +65,7 @@ extern C {
 
 #ifdef RESTRICT_KEYWORD
 #define RESTRICT restrict
-#define CONST_RESTRICT const restrict
+#define CONST_RESTRICT const __restrict
 #else
 #define RESTRICT
 #define CONST_RESTRICT const



commit nodejs-combined-stream for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-combined-stream for 
openSUSE:Factory checked in at 2015-06-30 10:17:09

Comparing /work/SRC/openSUSE:Factory/nodejs-combined-stream (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-combined-stream.new (New)


Package is nodejs-combined-stream

Changes:

--- 
/work/SRC/openSUSE:Factory/nodejs-combined-stream/nodejs-combined-stream.changes
2015-04-27 13:00:36.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-combined-stream.new/nodejs-combined-stream.changes
   2015-06-30 10:17:10.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 26 17:54:43 UTC 2015 - i...@marguerite.su
+
+- update version 0.0.7
+
+---

Old:

  combined-stream-0.0.5.tgz

New:

  combined-stream-0.0.7.tgz



Other differences:
--
++ nodejs-combined-stream.spec ++
--- /var/tmp/diff_new_pack.kiKgRP/_old  2015-06-30 10:17:10.0 +0200
+++ /var/tmp/diff_new_pack.kiKgRP/_new  2015-06-30 10:17:10.0 +0200
@@ -19,7 +19,7 @@
 %define base_name combined-stream
 
 Name:   nodejs-combined-stream
-Version:0.0.5
+Version:0.0.7
 Release:0
 Summary:A stream that emits multiple other streams one after another
 License:MIT

++ combined-stream-0.0.5.tgz - combined-stream-0.0.7.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/lib/combined_stream.js 
new/package/lib/combined_stream.js
--- old/package/lib/combined_stream.js  2014-06-24 09:29:21.0 +0200
+++ new/package/lib/combined_stream.js  2014-10-31 11:16:07.0 +0100
@@ -30,7 +30,7 @@
 CombinedStream.isStreamLike = function(stream) {
   return (typeof stream !== 'function')
  (typeof stream !== 'string')
- (typeof stream !== 'boolean')
+ (typeof stream !== 'boolean')
  (typeof stream !== 'number')
  (!Buffer.isBuffer(stream));
 };
@@ -40,12 +40,12 @@
 
   if (isStreamLike) {
 if (!(stream instanceof DelayedStream)) {
-  stream.on('data', this._checkDataSize.bind(this));
-
-  stream = DelayedStream.create(stream, {
+  var newStream = DelayedStream.create(stream, {
 maxDataSize: Infinity,
 pauseStream: this.pauseStreams,
   });
+  stream.on('data', this._checkDataSize.bind(this));
+  stream = newStream;
 }
 
 this._handleErrors(stream);
@@ -97,7 +97,7 @@
 
   var isStreamLike = CombinedStream.isStreamLike(stream);
   if (isStreamLike) {
-stream.on('end', this._getNext.bind(this))
+stream.on('end', this._getNext.bind(this));
 stream.pipe(this, {end: false});
 return;
   }
@@ -123,6 +123,7 @@
 return;
   }
 
+  if(this.pauseStreams  this._currentStream  
typeof(this._currentStream.pause) == 'function') this._currentStream.pause();
   this.emit('pause');
 };
 
@@ -133,6 +134,7 @@
 this._getNext();
   }
 
+  if(this.pauseStreams  this._currentStream  
typeof(this._currentStream.resume) == 'function') this._currentStream.resume();
   this.emit('resume');
 };
 
@@ -159,7 +161,7 @@
   }
 
   var message =
-'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.'
+'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.';
   this._emitError(new Error(message));
 };
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json2014-06-24 10:20:51.0 +0200
+++ new/package/package.json2014-10-31 11:17:09.0 +0100
@@ -2,7 +2,7 @@
   author: Felix Geisendörfer fe...@debuggable.com 
(http://debuggable.com/),
   name: combined-stream,
   description: A stream that emits multiple other streams one after 
another.,
-  version: 0.0.5,
+  version: 0.0.7,
   homepage: https://github.com/felixge/node-combined-stream;,
   repository: {
 type: git,




commit nodejs-async for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-async for openSUSE:Factory 
checked in at 2015-06-30 10:16:52

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


Package is nodejs-async

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-async/nodejs-async.changes
2015-04-27 13:00:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-async.new/nodejs-async.changes   
2015-06-30 10:16:54.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 26 17:10:12 UTC 2015 - i...@marguerite.su
+
+- update version 0.9.2
+
+---

Old:

  async-0.9.0.tgz

New:

  async-0.9.2.tgz



Other differences:
--
++ nodejs-async.spec ++
--- /var/tmp/diff_new_pack.5jJxuI/_old  2015-06-30 10:16:55.0 +0200
+++ /var/tmp/diff_new_pack.5jJxuI/_new  2015-06-30 10:16:55.0 +0200
@@ -19,7 +19,7 @@
 %define base_name async
 
 Name:   nodejs-async
-Version:0.9.0
+Version:0.9.2
 Release:0
 Summary:Higher-order functions and common patterns for asynchronous 
code
 License:MIT
@@ -43,7 +43,7 @@
 
 %install
 mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
-cp -pr *.json lib \
+cp -pr *.json lib support \
 %{buildroot}%{nodejs_modulesdir}/%{base_name}/
 
 %files

++ async-0.9.0.tgz - async-0.9.2.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.travis.yml new/package/.travis.yml
--- old/package/.travis.yml 2014-03-30 12:42:31.0 +0200
+++ new/package/.travis.yml 2015-05-19 10:44:23.0 +0200
@@ -1,3 +1,5 @@
 language: node_js
 node_js:
   - 0.10
+  - 0.12
+  - iojs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/README.md new/package/README.md
--- old/package/README.md   2014-05-16 12:20:03.0 +0200
+++ new/package/README.md   2015-05-19 10:44:23.0 +0200
@@ -5,8 +5,16 @@
 
 Async is a utility module which provides straight-forward, powerful functions
 for working with asynchronous JavaScript. Although originally designed for
-use with [Node.js](http://nodejs.org), it can also be used directly in the
-browser. Also supports [component](https://github.com/component/component).
+use with [Node.js](http://nodejs.org) and installable via `npm install async`,
+it can also be used directly in the browser.
+
+Async is also installable via:
+
+- [bower](http://bower.io/): `bower install async`
+- [component](https://github.com/component/component): `component install
+  caolan/async`
+- [jam](http://jamjs.org/): `jam install async`
+- [spm](http://spmjs.io/): `spm install async`
 
 Async provides around 20 functions that include the usual 'functional'
 suspects (`map`, `reduce`, `filter`, `each`…) as well as some common patterns
@@ -182,7 +190,7 @@
 * `arr` - An array to iterate over.
 * `iterator(item, callback)` - A function to apply to each item in `arr`.
   The iterator is passed a `callback(err)` which must be called once it has 
-  completed. If no error has occured, the `callback` should be run without 
+  completed. If no error has occurred, the `callback` should be run without 
   arguments or with an explicit `null` argument.
 * `callback(err)` - A callback which is called when all `iterator` functions
   have finished, or an error occurs.
@@ -202,7 +210,7 @@
 ```js
 // assuming openFiles is an array of file names 
 
-async.each(openFiles, function( file, callback) {
+async.each(openFiles, function(file, callback) {
   
   // Perform operation on file here.
   console.log('Processing file ' + file);
@@ -256,7 +264,7 @@
 * `limit` - The maximum number of `iterator`s to run at any time.
 * `iterator(item, callback)` - A function to apply to each item in `arr`.
   The iterator is passed a `callback(err)` which must be called once it has 
-  completed. If no error has occured, the callback should be run without 
+  completed. If no error has occurred, the callback should be run without 
   arguments or with an explicit `null` argument.
 * `callback(err)` - A callback which is called when all `iterator` functions
   have finished, or an error occurs.
@@ -280,7 +288,7 @@
 Produces a new array of values by mapping each value in `arr` through
 the `iterator` function. The `iterator` is called with an item from `arr` and a
 callback for when it has finished processing. Each of these callback takes 2 
arguments: 
-an `error`, and the transformed item from `arr`. If `iterator` passes an error 
to this 
+an `error`, and the transformed item from `arr`. If `iterator` passes an error 
to his 
 callback, the main `callback` 

commit libvirt-glib for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package libvirt-glib for openSUSE:Factory 
checked in at 2015-06-30 10:16:18

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


Package is libvirt-glib

Changes:

--- /work/SRC/openSUSE:Factory/libvirt-glib/libvirt-glib.changes
2014-12-21 12:04:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.libvirt-glib.new/libvirt-glib.changes   
2015-06-30 10:16:19.0 +0200
@@ -1,0 +2,13 @@
+Thu Jun 25 10:12:36 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.2.1:
+  + Fix libtoolize detection in autogen.sh.
+  + Allow storage volume format compatibility level to be set.
+  + Add pre-condition checks to more public API entry points.
+  + Don't try to return a value from void functions.
+  + Add API for controlling storage pool autostart flag.
+  + Add API for filesystem image format.
+  + Add loop, nbd and ploop filesystem types.
+  + Fix setting of driver type when called more than once.
+
+---

Old:

  libvirt-glib-0.2.0.tar.gz

New:

  libvirt-glib-0.2.1.tar.gz



Other differences:
--
++ libvirt-glib.spec ++
--- /var/tmp/diff_new_pack.Z9FSq5/_old  2015-06-30 10:16:20.0 +0200
+++ /var/tmp/diff_new_pack.Z9FSq5/_new  2015-06-30 10:16:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libvirt-glib
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 Dominique Leuenberger, Amsterdam, The Netherlands.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   libvirt-glib
-Version:0.2.0
+Version:0.2.1
 Release:0
 Summary:GLib and GObject mapping of libvirt
 License:LGPL-2.1+

++ libvirt-glib-0.2.0.tar.gz - libvirt-glib-0.2.1.tar.gz ++
 12528 lines of diff (skipped)




commit boinc-client for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package boinc-client for openSUSE:Factory 
checked in at 2015-06-30 10:16:44

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


Package is boinc-client

Changes:

--- /work/SRC/openSUSE:Factory/boinc-client/boinc-client.changes
2015-03-23 12:18:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.boinc-client.new/boinc-client.changes   
2015-06-30 10:16:45.0 +0200
@@ -1,0 +2,11 @@
+Wed Jun 24 10:53:06 UTC 2015 - jeng...@inai.de
+
+- boinc-client.service: replace ControlGroup= by Slice=, since
+  ControlGroup is gone since systemd-205 already. We now use the
+  background.slice. Configuration of the background.slice is
+  left to the administrator since it may be shared by other
+  packages, and is subject to preferences. If you need some default
+  to begin with for the first time,  use
+  `systemctl set-property background.slice CPUShares=2`.
+
+---



Other differences:
--
++ boinc-client.service ++
--- /var/tmp/diff_new_pack.Sb069t/_old  2015-06-30 10:16:46.0 +0200
+++ /var/tmp/diff_new_pack.Sb069t/_new  2015-06-30 10:16:46.0 +0200
@@ -5,8 +5,8 @@
 [Service]
 Nice=10
 User=boinc
-CPUShares=2
-ControlGroup=cpu:/background
+CPUSchedulingPolicy=batch
+Slice=background.slice
 PermissionsStartOnly=yes
 ExecStartPre=/bin/sleep 1
 ExecStartPre=/usr/bin/touch /var/log/boinc.log /var/log/boincerr.log




commit rxvt-unicode for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package rxvt-unicode for openSUSE:Factory 
checked in at 2015-06-30 10:16:00

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


Package is rxvt-unicode

Changes:

--- /work/SRC/openSUSE:Factory/rxvt-unicode/rxvt-unicode.changes
2014-11-06 16:51:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.rxvt-unicode.new/rxvt-unicode.changes   
2015-06-30 10:16:01.0 +0200
@@ -1,0 +2,91 @@
+Wed Jun 24 16:19:43 UTC 2015 - meiss...@suse.com
+
+- install COPYING
+
+---
+Tue Jun 23 14:37:52 UTC 2015 - mimi...@gmail.com
+
+- remove %{_terminfo}/r/rxvt-unicode 
+
+---
+Tue Jun 23 11:18:45 UTC 2015 - meiss...@suse.com
+
+- %clean section removed, moved makeinstall to %install
+
+---
+Thu Jun 18 20:46:55 UTC 2015 - mimi...@gmail.com
+
+- update to 9.21
+- fix pixel droppings on overdraw when a secondary core font has the
+  same height but different ascent.
+- implement cvvis in terminfo as blinking cursor, to distinguish it
+  from cnorm (emacs uses cvvis which is commonly a blinking cursor).
+- when xft support was compiled in, colour queries erroneously returned
+  premultiplied values, this also affected internal queries, for 
example
+  when calculating faded colour. alpha is now divided out when 
possible,
+  which is more correct but loses colour resolution.
+- add DECSCUSR xterm extension to set the cursor to a vertical bar.
+- add 'extension:string' action, and associated on_action perl
+  hook, for keysym resources that invokes actions provided by
+  perl extensions. The 'perl:string' action and
+  on_user_command hook are deprecated but still supported.
+- add 'builtin-string' action for keysym resources that restores string
+  mappings for keys that have predefined actions in urxvt.
+- add -k option to urxvtc for killing the daemon process.
+- document urxvtd's -e/--eval option that was implemented in 9.16,
+  but not documented.
+- add -dockapp option to make the wm treat urxvt as a dockapp.
+- add -mc option and multiClickTime resource to set the maximum time
+  between multi-click select events (patch by Joe Peterson).
+- new 'eval' extension to evaluate arbitrary perl code with keysym
+  bindings. The extension also provides methods that implement basic
+  actions, such as pasting selections and scrolling.
+- the macosx-clipboard and macosx-clipboard-native extensions have been 
removed.
+- kuake extension now uses the kuake.hotkey resource to specify the hotkey.
+- new 'matcher:select' mode of matcher to iterate over the matches with 
the keyboard.
+- the 'matcher:list' feature of matcher now honours the launcher
+  associated to a matched pattern.
+- speed-up matcher underlining on very long lines (reported by Edward Z. 
Yang).
+- fix up/down commands of searchable-scrollback so that they always move
+  to the previous/next logical line with a match, if any.
+- searchable-scrollback resource has been deprecated (use keysym instead).
+- extension parameter passing is deprecated (use resource mechanism 
instead).
+- upgrade to GPLv3 (see COPYING).
+- compile out of the box on Solaris 10, again.
+- fix height and position of the stippled area in next scrollbar (patch
+  by Thomas Otto).
+- fix off-by-one bug causing the iso14755 window not to jump out of the
+  way properly.
+- fix crash that may happen if a lib to which urxvt is linked to calls 
setenv.
+- fix memory leak in special_{encode,decode} perl methods.
+- fix refresh bug that occurs when reverse video is set on a cell
+  containing a space and with the same bg and fg colour, red hat bug
+  #830236.
+- fix crash that may happen if an x error is received after a terminal
+  window/popup has been destroyed already.
+- removed superfluous 0 digit from sgr terminfo sequence.
+- greatly improve colour allocation on colour-starved pseudocolour
+  displays to avoid read-write cells instead of simply failing
+  (this is only relevant for antique 8bpp frame buffers).
+- do not free fade colours when not doing fading (this is likely
+  only relevant for antique 8bpp frame buffers).
+- do not specialcase 2 or 4 colour visuals, leading to
+  simpler and actually more correct code.
+- hopefully no longer leak colours on !truecolour visuals.
+- use consistent 

commit gf2x for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package gf2x for openSUSE:Factory checked in 
at 2015-06-30 10:16:31

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


Package is gf2x

Changes:

--- /work/SRC/openSUSE:Factory/gf2x/gf2x.changes2012-12-05 
13:52:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.gf2x.new/gf2x.changes   2015-06-30 
10:16:33.0 +0200
@@ -1,0 +2,6 @@
+Fri Jun 26 08:55:11 UTC 2015 - jeng...@inai.de
+
+- Disable SSE2 on x86 because it is not necessarily present
+- Add gf2x-memset.diff
+
+---

New:

  gf2x-memset.diff



Other differences:
--
++ gf2x.spec ++
--- /var/tmp/diff_new_pack.SBdZQ6/_old  2015-06-30 10:16:33.0 +0200
+++ /var/tmp/diff_new_pack.SBdZQ6/_new  2015-06-30 10:16:33.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gf2x
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,17 +16,17 @@
 #
 
 
-
 Name:   gf2x
 %define lname  libgf2x1
 Version:1.1
 Release:0
-Group:  Productivity/Scientific/Math
 Summary:Library for multiplication over the GF(2) field
 License:GPL-2.0+
-URL:https://gforge.inria.fr/projects/gf2x/
+Group:  Productivity/Scientific/Math
+Url:https://gforge.inria.fr/projects/gf2x/
 
 Source:
https://gforge.inria.fr/frs/download.php/30873/%name-%version.tar.gz
+Patch1: gf2x-memset.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -54,10 +54,16 @@
  
 %prep
 %setup -q
+%patch -P 1 -p1
 
 %build
-# PCLMUL may not be available on all machines
-%configure --disable-static --disable-pclmul
+# SSE2 may not be available on all x86_32 machines.
+# PCLMUL may not be available on all machines.
+%configure --disable-static \
+%ifarch %ix86
+   --disable-sse2 \
+%endif
+   --disable-pclmul
 make %{?_smp_mflags};
 
 %check

++ gf2x-memset.diff ++
From: Jan Engelhardt jeng...@inai.de
Date: 2015-06-26 10:35:59.446493341 +0200

build: resolve compiler warning

gf2x.c:82:24: warning: 'sizeof' on array function parameter 'p' will return 
size of 'struct gf2x_mul_pool_s *' [-Wsizeof-array-argument]
memset(p, 0, sizeof(p));
---
 gf2x.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: gf2x-1.1/gf2x.c
===
--- gf2x-1.1.orig/gf2x.c
+++ gf2x-1.1/gf2x.c
@@ -79,7 +79,7 @@ static gf2x_mul_pool_t global_pool;
 
 void gf2x_mul_pool_init(gf2x_mul_pool_t p)
 {
-memset(p, 0, sizeof(p));
+memset(p, 0, sizeof(*p));
 }
 
 void gf2x_mul_pool_clear(gf2x_mul_pool_t p)



commit xtables-geoip for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package xtables-geoip for openSUSE:Factory 
checked in at 2015-06-30 10:16:13

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


Package is xtables-geoip

Changes:

--- /work/SRC/openSUSE:Factory/xtables-geoip/xtables-geoip.changes  
2015-03-30 19:33:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.xtables-geoip.new/xtables-geoip.changes 
2015-06-30 10:16:14.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 25 10:09:08 UTC 2015 - jeng...@inai.de
+
+- Update database files to 2015.06
+
+---



Other differences:
--
++ xtables-geoip.spec ++
--- /var/tmp/diff_new_pack.hWycBJ/_old  2015-06-30 10:16:15.0 +0200
+++ /var/tmp/diff_new_pack.hWycBJ/_new  2015-06-30 10:16:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   xtables-geoip
-Version:2015.03
+Version:2015.06
 Release:0
 Summary:Geolocation database files for xt_geoip
 License:CC-BY-SA-3.0

++ GeoIPCountryWhois.csv.xz ++
 39808 lines (skipped)
 between GeoIPCountryWhois.csv.xz
 and /work/SRC/openSUSE:Factory/.xtables-geoip.new/GeoIPCountryWhois.csv.xz

++ GeoIPv6.csv.xz ++
 4032 lines (skipped)
 between GeoIPv6.csv.xz
 and /work/SRC/openSUSE:Factory/.xtables-geoip.new/GeoIPv6.csv.xz




commit freeipmi for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package freeipmi for openSUSE:Factory 
checked in at 2015-06-30 10:16:05

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


Package is freeipmi

Changes:

--- /work/SRC/openSUSE:Factory/freeipmi/freeipmi.changes2015-06-10 
09:16:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.freeipmi.new/freeipmi.changes   2015-06-30 
10:16:06.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 18 07:37:27 UTC 2015 - kkae...@suse.com
+
+- fix Fedora/RHEL builds
+
+---



Other differences:
--
++ freeipmi.spec ++
--- /var/tmp/diff_new_pack.zPb0tl/_old  2015-06-30 10:16:07.0 +0200
+++ /var/tmp/diff_new_pack.zPb0tl/_new  2015-06-30 10:16:07.0 +0200
@@ -52,6 +52,9 @@
 %if 0%{?suse_version} =1230
 BuildRequires:  pkgconfig(systemd)
 %endif
+%if 0%{?fedora_version} == 20 || 0%{?rhel_version} = 700
+BuildRequires:  perl-Exporter
+%endif
 
 Obsoletes:  freeipmi-ipmimonitoring  %{version}
 Provides:   freeipmi-ipmimonitoring = %{version}
@@ -124,7 +127,7 @@
 autoconf
 automake --gnu --include-deps --copy --add-missing
 %endif
-%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} || 
0%{?fedora} || 0%{?rhel}
+%if (0%{?fedora_version}  0  0%{?fedora_version}  21) || 
0%{?centos_version} || 0%{?rhel_version}
 %define docpath %{_docdir}/%{name}-%{version}
 %else
 %define docpath %{_docdir}/%{name}
@@ -324,9 +327,9 @@
 %doc doc/freeipmi-libraries.txt
 %doc doc/freeipmi-bugs-issues-and-workarounds.txt
 #%dir %{_docdir}
-#%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} || 
0%{?fedora} || 0%{?rhel}
-#%{_docdir}
-#%endif
+%if 0%{?fedora_version} == 20
+%{docpath}
+%endif
 %config %{_sysconfdir}/freeipmi/ipmiseld.conf
 %if 0%{?suse_version} =1230
 %{_unitdir}/ipmiseld.service






commit open-vm-tools for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package open-vm-tools for openSUSE:Factory 
checked in at 2015-06-30 10:44:45

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


Package is open-vm-tools

Changes:

--- /work/SRC/openSUSE:Factory/open-vm-tools/open-vm-tools-KMP.changes  
2015-06-06 09:54:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.open-vm-tools.new/open-vm-tools-KMP.changes 
2015-06-30 10:44:46.0 +0200
@@ -1,0 +2,7 @@
+Sun Jun 28 10:56:24 UTC 2015 - antoine.belv...@laposte.net
+
+- Fix compilation issues with GCC 5:
+  * Add toolboxcmd-fix-logic.patch
+  * Add asm_x86.patch
+
+---
--- /work/SRC/openSUSE:Factory/open-vm-tools/open-vm-tools.changes  
2015-06-06 09:54:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.open-vm-tools.new/open-vm-tools.changes 
2015-06-30 10:44:46.0 +0200
@@ -1,0 +2,7 @@
+Sun Jun 28 10:56:24 UTC 2015 - antoine.belv...@laposte.net
+
+- Fix compilation issues with GCC 5:
+  * Add toolboxcmd-fix-logic.patch
+  * Add asm_x86.patch 
+
+---

New:

  asm_x86.patch
  toolboxcmd-fix-logic.patch



Other differences:
--
++ open-vm-tools-KMP.spec ++
--- /var/tmp/diff_new_pack.KRzW80/_old  2015-06-30 10:44:47.0 +0200
+++ /var/tmp/diff_new_pack.KRzW80/_new  2015-06-30 10:44:47.0 +0200
@@ -130,6 +130,10 @@
 Patch3: 0002-Fix-d_alias-to-d_u.d_alias-for-kernel-3.18.patch
 Patch4: 0003-Fix-f_dentry-msghdr-kernel-3.19.patch
 Patch5: 0004-vmhgfs-bdi-kernel-4.0.patch
+# PATCH-FIX-UPSTREAM toolboxcmd-fix-logic.patch -- fix build with gcc5 (from 
Fedora)
+Patch6: toolboxcmd-fix-logic.patch
+# PATCH-FIX-UPSTREAM asm_x86.patch -- fix build with gcc 5 on i586 (from 
Fedora)
+Patch7: asm_x86.patch
 
 %if %{KMP}
 %suse_kernel_module_package -n vmware-guest -p %{SOURCE98} xen um
@@ -236,6 +240,8 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
+%patch7 -p1
 
 %build
 %if ! %{KMP}

open-vm-tools.spec: same change
++ asm_x86.patch ++
--- open-vm-tools-9.10.0-2476743/lib/include/vm_basic_asm_x86.h.orig
2015-04-30 20:27:54.197056616 -0700
+++ open-vm-tools-9.10.0-2476743/lib/include/vm_basic_asm_x86.h 2015-04-30 
20:47:22.916480187 -0700
@@ -352,7 +352,9 @@
  *-
  */
 
-#if defined(__GNUC__)  (__GNUC__ = 4)  (__GNUC_MINOR__ = 4)  
!defined(MUL64_NO_ASM)
+#if defined(__GNUC__)  \
+   (__GNUC__  4 || (__GNUC__ == 4  __GNUC_MINOR__ = 4))  \
+   !defined(MUL64_NO_ASM)
 
 static INLINE uint64
 Mul64x3264(uint64 multiplicand, uint32 multiplier, uint32 shift)
@@ -457,7 +459,9 @@
  *-
  */
 
-#if defined(__GNUC__)  (__GNUC__ = 4)  (__GNUC_MINOR__ = 4)  
!defined(MUL64_NO_ASM)
+#if defined(__GNUC__)  \
+   (__GNUC__  4 || (__GNUC__ == 4  __GNUC_MINOR__ = 4))  \
+   !defined(MUL64_NO_ASM)
 
 static INLINE int64
 Muls64x32s64(int64 multiplicand, uint32 multiplier, uint32 shift)
++ toolboxcmd-fix-logic.patch ++
--- open-vm-tools-9.10.0-2476743.orig/toolbox/toolboxcmd-shrink.c   
2015-03-19 15:53:25.0 -0700
+++ open-vm-tools-9.10.0-2476743/toolbox/toolboxcmd-shrink.c2015-04-29 
17:35:12.190392096 -0700
@@ -391,7 +391,7 @@
 * Verify that wiping/shrinking are permitted before going through with the
 * wiping operation.
 */
-   if (!ShrinkGetWiperState() == WIPER_ENABLED  
!Wiper_IsWipeSupported(part)) {
+   if (ShrinkGetWiperState() != WIPER_ENABLED  !Wiper_IsWipeSupported(part)) 
{
   g_debug(%s cannot be wiped / shrunk\n, mountPoint);
   ToolsCmd_PrintErr(%s,
 SU_(disk.shrink.disabled, SHRINK_DISABLED_ERR));



commit zlib for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package zlib for openSUSE:Factory checked in 
at 2015-06-30 10:14:15

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


Package is zlib

Changes:

--- /work/SRC/openSUSE:Factory/zlib/zlib.changes2014-10-15 
16:19:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.zlib.new/zlib.changes   2015-06-30 
10:14:16.0 +0200
@@ -1,0 +2,7 @@
+Wed Jun 24 09:01:59 UTC 2015 - tchva...@suse.com
+
+- Remove zlib-devel-static, nothing should use libz.a anyway.
+- Package minizip library, everything using it should now pull
+  minizip-devel and unbundle it bnc#935864
+
+---



Other differences:
--
++ zlib.spec ++
--- /var/tmp/diff_new_pack.uVVO6t/_old  2015-06-30 10:14:16.0 +0200
+++ /var/tmp/diff_new_pack.uVVO6t/_new  2015-06-30 10:14:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package zlib
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -32,12 +32,11 @@
 Patch0: zlib-1.2.7-improve-longest_match-performance.patch
 #PATCH-FIX-SUSE: compiler check of varguments passed to gzprintf
 Patch1: zlib-format.patch
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# bug437293
-%ifarch ppc64
-Obsoletes:  zlib-64bit
-%endif
 
 %description
 zlib is designed to be a free, general-purpose, legally unencumbered -- that
@@ -51,7 +50,7 @@
 
 %package -n libz1
 Summary:Include Files and Libraries mandatory for Development
-Group:  Development/Languages/C and C++
+Group:  System/Libraries
 Provides:   %{name} = %{version}-%{release}
 Obsoletes:  %{name}  %{version}-%{release}
 
@@ -70,28 +69,29 @@
 Group:  Development/Languages/C and C++
 Requires:   glibc-devel
 Requires:   libz1 = %{version}
-Provides:   libz:%{_includedir}/zlib.h
-# bug437293
-%ifarch ppc64
-Obsoletes:  zlib-devel-64bit
-%endif
-#
 
 %description devel
 This package contains all necessary include files and libraries needed
 to develop applications that require the provided includes and
 libraries.
 
-%package devel-static
-Summary:Include Files and Libraries mandatory for Development
+%package -n libminizip1
+Summary:Library for manipulation with .zip archives
+Group:  System/Libraries
+
+%description -n libminizip1
+Minizip is a library for manipulation with files from .zip archives.
+
+%package -n minizip-devel
+Summary:Development files for the minizip library
 Group:  Development/Languages/C and C++
 Requires:   %{name}-devel = %{version}
-Provides:   %{name}-devel:%{_libdir}/libz.a
+Requires:   libminizip1 = %{version}
+Requires:   pkgconfig
 
-%description devel-static
-This package contains all necessary include files and libraries needed
-to develop applications that require the provided includes and
-libraries.
+%description -n minizip-devel
+This package contains the libraries and header files needed for
+developing applications which use minizip.
 
 %prep
 %setup -q
@@ -101,31 +101,44 @@
 %build
 export LDFLAGS=-Wl,-z,relro,-z,now
 
+export CFLAGS=%{optflags}
+# For sure not autotools build
+CC=cc ./configure \
+--shared \
+--prefix=%{_prefix} \
+--libdir=/%{_lib}
+
 # Marcus: breaks example64 in 32bit builds, so it's disabled by default
 %if %{with profiling}
 profiledir=$(mktemp -d)
 trap rm -rf $profiledir EXIT
-CC=gcc ./configure --shared --prefix=%{_prefix} --libdir=/%{_lib}
 make CFLAGS=%{optflags} %{cflags_profile_generate}=$profiledir 
%{?_smp_mflags}
 time make check %{?_smp_mflags} 
-make clean
+make %{?_smp_mflags} clean
 make CFLAGS=%{optflags} %{cflags_profile_feedback}=$profiledir 
%{?_smp_mflags}
 %else
-export CFLAGS=%{optflags}
-CC=gcc ./configure --shared --prefix=%{_prefix} --libdir=/%{_lib}
 make %{?_smp_mflags}
 %endif
 
+# And build minizip
+cd contrib/minizip
+autoreconf -fvi
+%configure \
+--disable-static \
+--disable-silent-rules
+make %{?_smp_mflags}
+
 %check
 time make check %{?_smp_mflags}
 
 %install
 mkdir -p %{buildroot}%{_libdir}
 make DESTDIR=%{buildroot} install %{?_smp_mflags}
+# Fix shared library placement/symlinks
 ln -s -v /%{_lib}/$(readlink %{buildroot}/%{_lib}/libz.so) 
%{buildroot}%{_libdir}/libz.so
 rm -v %{buildroot}/%{_lib}/libz.so
-# static lib
-mv %{buildroot}/%{_lib}/libz.a 

commit efivar for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package efivar for openSUSE:Factory checked 
in at 2015-06-30 10:14:20

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


Package is efivar

Changes:

--- /work/SRC/openSUSE:Factory/efivar/efivar.changes2014-11-12 
00:21:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.efivar.new/efivar.changes   2015-06-30 
10:14:21.0 +0200
@@ -1,0 +2,48 @@
+Wed Jun 24 09:58:16 UTC 2015 - g...@suse.com
+
+- Add efivar-fix-vars_del_variable.patch to fix the deletion of
+  the variable with the old efivar kernel modules
+
+---
+Tue Jun 16 07:30:20 UTC 2015 - g...@suse.com
+
+- Add efivar-revert-linker-order.patch to adjust the linker order
+  which caused the compilation error in pesign
+
+---
+Thu Jun 11 06:59:41 UTC 2015 - mplus...@suse.com
+
+- Use default CFLAGS
+
+---
+Wed Jun  3 07:46:58 UTC 2015 - mplus...@suse.com
+
+- Update to 0.20
+  * Make sure tester is build with the right link order for 
+libraries.
+  * Adjust linker order for pkg-config
+  * Work around LocateDevicePath() not grokking PcieRoot() devices
+properly.
+  * Rectify some missing changelog entries
+- Changes for 0.19
+  * Lots of debugging in this release, as well as some of the 
+documentation that's planned. There's more of that to come.
+- Changes for 0.18
+  * This release is mostly about adding the efidp and libefiboot 
+APIs available.Next release will feature documentation for 
+them, verification that various different device path types 
+work, etc. Right now efi device path generation is basically 
+limited to:
++ full file paths on sata devices
++ full file paths on sas devices
++ HD() paths for SATA and SAS devices
++ ipv4 dhcp device paths that don't specify their own 
+  filenames
+- Drop upstreamed patche
+  * efivar-correct-license-header.patch
+- Drop as Makefiles have been restructured, CFLAGS no longer
+  defined in them
+  * efivar-suse-build.patch
+- Use fdupes to reduce amount of duplicate files
+
+---

Old:

  efivar-0.15.tar.bz2
  efivar-correct-license-header.patch
  efivar-suse-build.patch

New:

  efivar-0.20.tar.bz2
  efivar-fix-vars_del_variable.patch
  efivar-revert-linker-order.patch



Other differences:
--
++ efivar.spec ++
--- /var/tmp/diff_new_pack.URdtzR/_old  2015-06-30 10:14:22.0 +0200
+++ /var/tmp/diff_new_pack.URdtzR/_new  2015-06-30 10:14:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package efivar
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,16 @@
 
 
 Name:   efivar
-Version:0.15
+Version:0.20
 Release:0
 Summary:Tools to manage UEFI variables
 License:LGPL-2.1
 Group:  Development/Libraries/Other
 Url:https://github.com/vathpela/efivar
 Source0:
https://github.com/vathpela/efivar/releases/download/%{version}/%{name}-%{version}.tar.bz2
-Patch0: efivar-suse-build.patch
-Patch1: efivar-correct-license-header.patch
+Patch1: efivar-revert-linker-order.patch
+Patch2: efivar-fix-vars_del_variable.patch
+BuildRequires:  fdupes
 BuildRequires:  pkg-config
 BuildRequires:  popt-devel
 Requires:   libefivar0 = %{version}-%{release}
@@ -50,14 +51,19 @@
 
 %prep
 %setup -q
-%patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
-make %{?_smp_mflags} libdir=%{_libdir} bindir=%{_bindir} 
OPT_FLAGS=%{optflags}
+export CFLAGS=%{optflags}
+make \
+  %{?_smp_mflags} \
+  libdir=%{_libdir} \
+  bindir=%{_bindir}
 
 %install
 make DESTDIR=%{buildroot} libdir=%{_libdir} install
+%fdupes -s %{buildroot}
 
 %post -n libefivar0 -p /sbin/ldconfig
 

++ efivar-0.15.tar.bz2 - efivar-0.20.tar.bz2 ++
 8823 lines of diff (skipped)

++ efivar-fix-vars_del_variable.patch ++
From 734994cb0b66020277f9972baa9fa211a85aa582 Mon Sep 17 00:00:00 2001
From: Gary Ching-Pang Lin g...@suse.com
Date: Wed, 24 Jun 2015 17:51:44 +0800
Subject: [PATCH] Exclude the padded NULL when comparing the file size

In vars_del_variable(), this if statement always failed because
read_file() returned the actual file size +1.

if (rc  0 || (buf_size != sizeof(efi_kernel_variable_64_t) 
   

commit linuxrc for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package linuxrc for openSUSE:Factory checked 
in at 2015-06-30 10:14:32

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


Package is linuxrc

Changes:

--- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes  2015-06-04 
08:51:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.linuxrc.new/linuxrc.changes 2015-06-30 
10:14:34.0 +0200
@@ -1,0 +2,15 @@
+Thu Jun 25 15:41:03 CEST 2015 - snw...@suse.com
+
+- avoid any interactive dialogs when checking the digest of files during
+  an 'extend' command (bsc#936068)
+- 5.0.46
+
+---
+Wed Jun 24 10:11:04 CEST 2015 - snw...@suse.com
+
+- re-arrange code a bit and fix typo
+- changed 'media not found' message into a dialog letting the user select
+  the URL to retry (bsc#923918)
+- 5.0.45
+
+---

Old:

  linuxrc-5.0.44.tar.xz

New:

  linuxrc-5.0.46.tar.xz



Other differences:
--
++ linuxrc.spec ++
--- /var/tmp/diff_new_pack.OkO5f7/_old  2015-06-30 10:14:35.0 +0200
+++ /var/tmp/diff_new_pack.OkO5f7/_new  2015-06-30 10:14:35.0 +0200
@@ -25,7 +25,7 @@
 Summary:SUSE Installation Program
 License:GPL-3.0+
 Group:  System/Boot
-Version:5.0.44
+Version:5.0.46
 Release:0
 Source: %{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ linuxrc-5.0.44.tar.xz - linuxrc-5.0.46.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.44/VERSION new/linuxrc-5.0.46/VERSION
--- old/linuxrc-5.0.44/VERSION  2015-06-03 11:01:55.0 +0200
+++ new/linuxrc-5.0.46/VERSION  2015-06-25 15:40:33.0 +0200
@@ -1 +1 @@
-5.0.44
+5.0.46
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.44/changelog new/linuxrc-5.0.46/changelog
--- old/linuxrc-5.0.44/changelog2015-06-03 11:01:55.0 +0200
+++ new/linuxrc-5.0.46/changelog2015-06-25 15:40:33.0 +0200
@@ -1,3 +1,12 @@
+2015-06-25:5.0.46
+   - avoid any interactive dialogs when checking the digest of files during
+ an 'extend' command (bsc #936068)
+
+2015-06-24:5.0.45
+   - re-arrange code a bit and fix typo
+   - changed 'media not found' message into a dialog letting the user 
select
+ the URL to retry (bsc #923918)
+
 2015-06-03:5.0.44
- some minor corrections
- added comments  prototypes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.44/global.h new/linuxrc-5.0.46/global.h
--- old/linuxrc-5.0.44/global.h 2015-06-03 11:01:55.0 +0200
+++ new/linuxrc-5.0.46/global.h 2015-06-25 15:40:33.0 +0200
@@ -374,6 +374,7 @@
   char *zenconfig; /* zenworks config file */
   unsigned ntfs_3g:1;  /* use ntfs-3g */
   unsigned secure:1;   /* secure mode (check digest of all downloaded 
files) */
+  unsigned secure_always_fail:1;   /* in secure mode: never ask the user 
but always fail directly */
   unsigned sslcerts:1; /* whether to check ssl certificates */
   unsigned sig_failed:2;   /* signature check failed (1: not signed, 2: 
wrong signature) */
   unsigned kexec:1;/* kexec to kernel  initrd from repo */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.44/linuxrc.c new/linuxrc-5.0.46/linuxrc.c
--- old/linuxrc-5.0.44/linuxrc.c2015-06-03 11:01:55.0 +0200
+++ new/linuxrc-5.0.46/linuxrc.c2015-06-25 15:40:33.0 +0200
@@ -84,7 +84,7 @@
 #if SWISS_ARMY_KNIFE 
 static void lxrc_makelinks(char *name);
 #endif
-// static void config_rescue(char *mp);
+static void select_repo_url(char *msg, char **repo);
 
 #if SWISS_ARMY_KNIFE
 int probe_main(int argc, char **argv);
@@ -668,8 +668,7 @@
 
 void lxrc_init()
 {
-  int i, j;
-  char buf[256];
+  int i;
 
   siginterrupt(SIGALRM, 1);
   signal(SIGHUP, SIG_IGN);
@@ -1148,53 +1147,72 @@
   if(config.braille.check) run_braille();
 
   if(!config.manual  !auto2_init()) {
+char *buf = NULL, *repo = NULL;
+
 fprintf(stderr, Automatic setup not possible.\n);
 
-util_disp_init();
+// ok, we failed to find a suitable repo
+// do something about it
 
-i = 0;
-j = 1;
+// If the file '/nextmedia' exists, get the message to show from there
+// and retry the default repo settings if the user is ready.
+// Otherwise, present the user the list of repos we have tried so 

commit virtualbox for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package virtualbox for openSUSE:Factory 
checked in at 2015-06-30 10:14:52

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


Package is virtualbox

Changes:

--- /work/SRC/openSUSE:Factory/virtualbox/virtualbox.changes2015-06-12 
20:27:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.virtualbox.new/virtualbox.changes   
2015-06-30 10:14:53.0 +0200
@@ -29 +29 @@
-- Version bump to 4.3.28:
+- Version bump to 4.3.28 bnc#935900 CVE-2015-3456:
@@ -217 +217,3 @@
-- update to version 4.3.20:
+- update to version 4.3.20 (bnc#914447):
+  + CVE-2014-0224 CVE-2015-0377 CVE-2014-6595 CVE-2014-6588 CVE-2014-6589
+  + CVE-2014-6590 CVE-2015-0427 CVE-2015-0418



Other differences:
--





commit suse-module-tools for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package suse-module-tools for 
openSUSE:Factory checked in at 2015-06-30 10:14:26

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


Package is suse-module-tools

Changes:

--- /work/SRC/openSUSE:Factory/suse-module-tools/suse-module-tools.changes  
2014-09-09 18:59:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.suse-module-tools.new/suse-module-tools.changes 
2015-06-30 10:14:28.0 +0200
@@ -1,0 +2,5 @@
+Tue Jun 23 14:39:46 UTC 2015 - mma...@suse.cz
+
+- Use absolute path to mkinitrd (bsc#935566)
+
+---



Other differences:
--
++ suse-module-tools.spec ++
--- /var/tmp/diff_new_pack.R6kq2s/_old  2015-06-30 10:14:28.0 +0200
+++ /var/tmp/diff_new_pack.R6kq2s/_new  2015-06-30 10:14:28.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package suse-module-tools
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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

++ regenerate-initrd-posttrans ++
--- /var/tmp/diff_new_pack.R6kq2s/_old  2015-06-30 10:14:29.0 +0200
+++ /var/tmp/diff_new_pack.R6kq2s/_new  2015-06-30 10:14:29.0 +0200
@@ -43,7 +43,7 @@
 if test -e $dir/all; then
rm $dir/*
run_mkinitrd_setup
-   mkinitrd
+   /sbin/mkinitrd
exit
 fi
 err=0
@@ -56,7 +56,7 @@
continue
fi
run_mkinitrd_setup
-   if ! mkinitrd -k /boot/$image -i /boot/$initrd; then
+   if ! /sbin/mkinitrd -k /boot/$image -i /boot/$initrd; then
err=$?
fi
 done




commit pesign for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package pesign for openSUSE:Factory checked 
in at 2015-06-30 10:13:56

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


Package is pesign

Changes:

--- /work/SRC/openSUSE:Factory/pesign/pesign.changes2014-11-28 
08:44:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.pesign.new/pesign.changes   2015-06-30 
10:13:57.0 +0200
@@ -1,0 +2,8 @@
+Tue Jun 16 06:52:21 UTC 2015 - g...@suse.com
+
+- Add pesign-efivar-pkgconfig.patch to get the efivar compiler
+  parameters from pkg-confg
+- Add pesign-make-efi_guid_t-const.patch to avoid the error from
+  gcc
+
+---

New:

  pesign-efivar-pkgconfig.patch
  pesign-make-efi_guid_t-const.patch



Other differences:
--
++ pesign.spec ++
--- /var/tmp/diff_new_pack.rnyFR3/_old  2015-06-30 10:13:58.0 +0200
+++ /var/tmp/diff_new_pack.rnyFR3/_new  2015-06-30 10:13:58.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pesign
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -40,6 +40,10 @@
 Patch7: pesign-install-supplementary-programs.patch
 # PATCH-FIX-UPSTREAM pesign-fix-import-sig-check.patch g...@suse.com -- Fix 
the signature size check while importing a signature
 Patch8: pesign-fix-import-sig-check.patch
+# PATCH-FIX-UPSTREAM pesign-efivar-pkgconfig.patch g...@suse.com -- Make 
efivar compiler parameters come from pkg-config
+Patch9: pesign-efivar-pkgconfig.patch
+# PATCH-FIX-UPSTREAM pesign-make-efi_guid_t-const.patch g...@suse.com -- make 
efi_guid_t's const
+Patch10:pesign-make-efi_guid_t-const.patch
 BuildRequires:  efivar-devel
 BuildRequires:  libuuid-devel
 BuildRequires:  mozilla-nss-devel
@@ -70,6 +74,8 @@
 %patch6 -p1
 %patch7 -p1
 %patch8 -p1
+%patch9 -p1
+%patch10 -p1
 
 %build
 make %{?_smp_mflags} OPTFLAGS=%{optflags}

++ pesign-efivar-pkgconfig.patch ++
From 2a1de2b6535161b1bd600ec2262e81e9f7aeffcc Mon Sep 17 00:00:00 2001
From: Peter Jones pjo...@redhat.com
Date: Tue, 26 May 2015 09:43:10 -0400
Subject: [PATCH] Make efivar compiler parameters come from pkg-config.

Signed-off-by: Peter Jones pjo...@redhat.com
---
 src/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Makefile b/src/Makefile
index 007505c..dd69425 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -3,8 +3,8 @@ TOPDIR = $(SRCDIR)/..
 
 include $(TOPDIR)/Make.defaults
 
-PKLIBS = nss
-LIBS = popt uuid efivar
+PKLIBS = nss efivar
+LIBS = popt uuid
 STATIC_LIBS = $(TOPDIR)/libdpe/libdpe.a
 LDFLAGS =
 CCLDFLAGS = -L../libdpe $(foreach pklib,$(PKLIBS), $(shell pkg-config 
--libs-only-L $(pklib))) -pie -fPIE -Wl,-z,relro,-z,now
-- 
2.1.4

++ pesign-make-efi_guid_t-const.patch ++
From 727f93f8ea3dc467694d541d28ba4f1ed0e0a671 Mon Sep 17 00:00:00 2001
From: Peter Jones pjo...@redhat.com
Date: Fri, 7 Nov 2014 14:09:41 -0500
Subject: [PATCH] make efi_guid_t's const.

Signed-off-by: Peter Jones pjo...@redhat.com
---
 src/cms_common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cms_common.c b/src/cms_common.c
index a360961..7e032c8 100644
--- a/src/cms_common.c
+++ b/src/cms_common.c
@@ -45,7 +45,7 @@ struct digest_param {
SECOidTag digest_tag;
SECOidTag signature_tag;
SECOidTag digest_encryption_tag;
-   efi_guid_t *efi_guid;
+   const efi_guid_t *efi_guid;
int size;
 };
 
-- 
2.1.4

From ac9de615112114e222527b2eabc9b7f2642f01fe Mon Sep 17 00:00:00 2001
From: Peter Jones pjo...@redhat.com
Date: Tue, 26 May 2015 09:42:32 -0400
Subject: [PATCH] Propogate some const declarations better.

Signed-off-by: Peter Jones pjo...@redhat.com
---
 src/efisiglist.c | 2 +-
 src/siglist.c| 8 
 src/siglist.h| 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/efisiglist.c b/src/efisiglist.c
index aedfc4c..a078640 100644
--- a/src/efisiglist.c
+++ b/src/efisiglist.c
@@ -32,7 +32,7 @@
 
 struct hash_param {
char *name;
-   efi_guid_t *guid;
+   const efi_guid_t *guid;
int size;
 };
 
diff --git a/src/siglist.c b/src/siglist.c
index 38a9a2a..a7154aa 100644
--- a/src/siglist.c
+++ b/src/siglist.c
@@ -51,7 +51,7 @@ struct efi_signature_list {
 };
 
 struct signature_list {
-   efi_guid_t  *SignatureType;
+   const efi_guid_t*SignatureType;
uint32_t

commit efibootmgr for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package efibootmgr for openSUSE:Factory 
checked in at 2015-06-30 10:13:50

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


Package is efibootmgr

Changes:

--- /work/SRC/openSUSE:Factory/efibootmgr/efibootmgr.changes2014-12-25 
23:20:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.efibootmgr.new/efibootmgr.changes   
2015-06-30 10:13:52.0 +0200
@@ -1,0 +2,15 @@
+Fri Jun 12 07:45:20 UTC 2015 - mplus...@suse.com
+
+- Update to 0.12
+  * This release is mostly a maintenance release that uses 
+libefivar's new library API for creating device paths and load 
+options.
+  * Also DHCPv4 network boot entries are now something you can 
+create without knowing an awful lot about ACPI.
+- Refresh patches
+  efibootmgr-0.11.0-derhat.diff as efibootmgr-derhat.diff
+  efibootmgr-0.11.0-check-boot-order.diff as 
+  efibootmgr-check-boot-order.diff
+- Update project and download url
+
+---

Old:

  efibootmgr-0.11.0-check-boot-order.diff
  efibootmgr-0.11.0-derhat.diff
  efibootmgr-0.11.0.tar.gz

New:

  efibootmgr-0.12.tar.bz2
  efibootmgr-check-boot-order.diff
  efibootmgr-derhat.diff



Other differences:
--
++ efibootmgr.spec ++
--- /var/tmp/diff_new_pack.vkgj9m/_old  2015-06-30 10:13:53.0 +0200
+++ /var/tmp/diff_new_pack.vkgj9m/_new  2015-06-30 10:13:53.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package efibootmgr
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,20 +17,20 @@
 
 
 Name:   efibootmgr
+Version:0.12
+Release:0
 Summary:EFI Boot Manager
 License:GPL-2.0+
 Group:  System/Boot
-Version:0.11.0
-Release:0
-Url:https://github.com/vathpela/efibootmgr
-Source: 
https://github.com/vathpela/efibootmgr/releases/download/efibootmgr-%{version}/efibootmgr-%{version}.tar.gz
-Patch1: %{name}-0.11.0-derhat.diff
-Patch2: %{name}-0.11.0-check-boot-order.diff
-
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Url:https://github.com/rhinstaller/efibootmgr
+Source: 
https://github.com/rhinstaller/efibootmgr/releases/download/efibootmgr-%{version}/efibootmgr-%{version}.tar.bz2
+Patch1: %{name}-derhat.diff
+Patch2: %{name}-check-boot-order.diff
 BuildRequires:  efivar-devel
 BuildRequires:  pciutils-devel
+BuildRequires:  pkg-config
 BuildRequires:  zlib-devel
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  ia64 x86_64 i586 aarch64
 
 %description
@@ -54,14 +54,14 @@
 (SUSE*|SLE*)  VENDOR=SUSE;;
 (*)   VENDOR=linux;;
 esac
-make %{?_smp_mflags} EXTRA_CFLAGS=$RPM_OPT_FLAGS \
+make %{?_smp_mflags} EXTRA_CFLAGS=%{optflags} \
OS_VENDOR=$VENDOR EFI_LOADER=$LOADER
 
 %install
-install -d $RPM_BUILD_ROOT%{_sbindir}
-make install BINDIR=$RPM_BUILD_ROOT%{_sbindir}
-install -d $RPM_BUILD_ROOT%{_mandir}/man8
-install -m 644 src/man/man8/efibootmgr.8 $RPM_BUILD_ROOT%{_mandir}/man8
+install -d %{buildroot}%{_sbindir}
+make install BINDIR=%{buildroot}%{_sbindir}
+install -d %{buildroot}%{_mandir}/man8
+install -m 644 src/man/man8/efibootmgr.8 %{buildroot}%{_mandir}/man8
 
 %files
 %defattr(-, root, root)

++ efibootmgr-0.11.0.tar.gz - efibootmgr-0.12.tar.bz2 ++
 5210 lines of diff (skipped)

++ efibootmgr-check-boot-order.diff ++
---
 src/efibootmgr/efibootmgr.c |3 +++
 1 file changed, 3 insertions(+)

Index: efibootmgr-0.12/src/efibootmgr/efibootmgr.c
===
--- efibootmgr-0.12.orig/src/efibootmgr/efibootmgr.c
+++ efibootmgr-0.12/src/efibootmgr/efibootmgr.c
@@ -451,6 +451,9 @@ remove_dupes_from_boot_order(void)
/* Adjust the size if we didn't copy everything. */
new_data_size = sizeof(new_data[0]) * new_i;
 
+   if (new_i == 0)
+   return efi_del_variable(EFI_GLOBAL_GUID, BootOrder);
+
/* Now new_data has what we need */
free(boot_order-data);
boot_order-data = (uint8_t *)new_data;
++ efibootmgr-derhat.diff ++
From: Raymund Will r...@suse.com
Subject: Make default '--loader' build-time configurable.

Each distribution uses a specific 'vendor'-directory in the
'efi' directory on the EFI System Partition to store their
EFI loader.  There's little use in hardcoding the value
for just one in 

commit libzypp for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory checked 
in at 2015-06-30 10:14:21

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


Package is libzypp

Changes:

--- /work/SRC/openSUSE:Factory/libzypp/libzypp.changes  2015-06-18 
06:36:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.libzypp.new/libzypp.changes 2015-06-30 
10:14:23.0 +0200
@@ -1,0 +2,13 @@
+Mon Jun 29 17:43:00 CEST 2015 - m...@suse.de
+
+- Fix lost pathname when importing repo keys (bnc#936373)
+- Disable code swig does not understand
+- version 15.6.0 (5)
+
+---
+Sat Jun 27 17:07:32 CEST 2015 - m...@suse.de
+
+- Patch: fixup testing Category and Severity flags (FATE#318760)
+- version 15.5.0 (5)
+
+---

Old:

  libzypp-15.4.1.tar.bz2

New:

  libzypp-15.6.0.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.st5Gfb/_old  2015-06-30 10:14:23.0 +0200
+++ /var/tmp/diff_new_pack.st5Gfb/_new  2015-06-30 10:14:23.0 +0200
@@ -19,7 +19,7 @@
 %define force_gcc_46 0
 
 Name:   libzypp
-Version:15.4.1
+Version:15.6.0
 Release:0
 Url:git://gitorious.org/opensuse/libzypp.git
 Summary:Package, Patch, Pattern, and Product Management

++ libzypp-15.4.1.tar.bz2 - libzypp-15.6.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.4.1/VERSION.cmake 
new/libzypp-15.6.0/VERSION.cmake
--- old/libzypp-15.4.1/VERSION.cmake2015-06-12 12:17:07.0 +0200
+++ new/libzypp-15.6.0/VERSION.cmake2015-06-29 17:43:40.0 +0200
@@ -59,10 +59,10 @@
 #   See './mkChangelog -h' for help.
 #
 SET(LIBZYPP_MAJOR 15)
-SET(LIBZYPP_COMPATMINOR 3)
-SET(LIBZYPP_MINOR 4)
-SET(LIBZYPP_PATCH 1)
+SET(LIBZYPP_COMPATMINOR 5)
+SET(LIBZYPP_MINOR 6)
+SET(LIBZYPP_PATCH 0)
 #
-# LAST RELEASED: 15.4.1 (3)
+# LAST RELEASED: 15.6.0 (5)
 # (The number in parenthesis is LIBZYPP_COMPATMINOR)
 #===
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.4.1/package/libzypp.changes 
new/libzypp-15.6.0/package/libzypp.changes
--- old/libzypp-15.4.1/package/libzypp.changes  2015-06-12 12:17:07.0 
+0200
+++ new/libzypp-15.6.0/package/libzypp.changes  2015-06-29 17:43:40.0 
+0200
@@ -1,4 +1,17 @@
 ---
+Mon Jun 29 17:43:00 CEST 2015 - m...@suse.de
+
+- Fix lost pathname when importing repo keys (bnc#936373)
+- Disable code swig does not understand
+- version 15.6.0 (5)
+
+---
+Sat Jun 27 17:07:32 CEST 2015 - m...@suse.de
+
+- Patch: fixup testing Category and Severity flags (FATE#318760)
+- version 15.5.0 (5)
+
+---
 Fri Jun 12 12:14:04 CEST 2015 - m...@suse.de
 
 - Add details to the default signature verification problem report
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.4.1/tests/zypp/Flags_test.cc 
new/libzypp-15.6.0/tests/zypp/Flags_test.cc
--- old/libzypp-15.4.1/tests/zypp/Flags_test.cc 2014-07-01 11:30:28.0 
+0200
+++ new/libzypp-15.6.0/tests/zypp/Flags_test.cc 2015-06-26 09:00:26.0 
+0200
@@ -75,10 +75,11 @@
 
 
   t = T_3;
+  BOOST_CHECK( ! t.testFlag( T_0 ) );  // fails as T_3 != 0
   BOOST_CHECK( t.testFlag( T_1 ) );
   BOOST_CHECK( t.testFlag( T_2 ) );
   BOOST_CHECK( t.testFlag( T_3 ) );
   t.unsetFlag( T_2 );  BOOST_CHECK( t.testFlag( T_1 ) );
-  t.setFlag( T_1, false ); BOOST_CHECK( t.testFlag( T_0 ) );
+  t.setFlag( T_1, false ); BOOST_CHECK( t.testFlag( T_0 ) );   
// succeed as T_3 == 0
   t.setFlag( T_3, true );  BOOST_CHECK( t.testFlag( T_3 ) );
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.4.1/zypp/FileChecker.cc 
new/libzypp-15.6.0/zypp/FileChecker.cc
--- old/libzypp-15.4.1/zypp/FileChecker.cc  2015-05-18 11:08:12.0 
+0200
+++ new/libzypp-15.6.0/zypp/FileChecker.cc  2015-06-26 09:00:26.0 
+0200
@@ -52,6 +52,7 @@
   CheckSum real_checksum( _checksum.type(), filesystem::checksum( file, 
_checksum.type() ));
   if ( (real_checksum != _checksum) )
   {
+   WAR  Filefile   has wrong checksum   real_checksum   
(expected   _checksum  )  endl;
 if ( report-askUserToAcceptWrongDigest( file, _checksum.checksum(), 
real_checksum.checksum() ) )
   

commit kbuild for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package kbuild for openSUSE:Factory checked 
in at 2015-06-30 10:14:38

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


Package is kbuild

Changes:

--- /work/SRC/openSUSE:Factory/kbuild/kbuild.changes2015-06-16 
14:10:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.kbuild.new/kbuild.changes   2015-06-30 
10:14:40.0 +0200
@@ -1,0 +2,15 @@
+Fri Jun 26 14:50:13 UTC 2015 - norm...@linux.vnet.ibm.com
+
+- Update to version 0.1.9998svn2784:
+  many changes detailed in upstream url from svn 2720 to 2784.
+  http://trac.netlabs.org/kbuild/timeline?from=2015-06-26daysback=365
+  
http://trac.netlabs.org/kbuild/changeset?old_path=%2Fold=2784new_path=%2Fnew=2720
+- Dropped patches:
+  kbuild-kmk-makefile-am.patch
+- Rebased patches:
+  kbuild-glob.patch
+  ppc64le.patch
+  kbuild-timestamps.diff
+  kbuild-pthread.diff
+- All above changes allow to build package for ppc64/ppc64le archs
+---

Old:

  kbuild-0.1.9998svn2720.tar.bz2
  kbuild-kmk-makefile-am.patch

New:

  kbuild-0.1.9998svn2784.tar.bz2



Other differences:
--
++ kbuild.spec ++
--- /var/tmp/diff_new_pack.rUMUVc/_old  2015-06-30 10:14:41.0 +0200
+++ /var/tmp/diff_new_pack.rUMUVc/_new  2015-06-30 10:14:41.0 +0200
@@ -29,7 +29,7 @@
 Summary:Framework for writing simple makefiles for complex tasks
 License:GPL-2.0+
 Group:  Development/Tools/Building
-%define _svnrev 2720
+%define _svnrev 2784
 Version:0.1.9998svn%{_svnrev}
 Release:0
 Source0:%{name}-%{version}.tar.bz2
@@ -37,8 +37,6 @@
 # PATCH-FIX-UPSTREAM speili...@suse.com: Import local implementation if KMK
 Patch1: kbuild-glob.patch
 Patch2: kbuild-dummy_noreturn.diff
-# PATCH-FIX-UPSTREAM speili...@suse.com: Fix filelist
-Patch3: kbuild-kmk-makefile-am.patch
 Patch5: kbuild-pthread.diff
 Patch6: kbuild-timestamps.diff
 Patch7: kbuild-armv7l.diff
@@ -64,7 +62,6 @@
 %patch0
 %patch1 -p1
 %patch2
-%patch3 -p1
 %patch5 -p1
 %patch6 -p1
 %patch7 -p1

++ kbuild-0.1.9998svn2720.tar.bz2 - kbuild-0.1.9998svn2784.tar.bz2 ++
/work/SRC/openSUSE:Factory/kbuild/kbuild-0.1.9998svn2720.tar.bz2 
/work/SRC/openSUSE:Factory/.kbuild.new/kbuild-0.1.9998svn2784.tar.bz2 differ: 
char 11, line 1

++ kbuild-glob.patch ++
--- /var/tmp/diff_new_pack.rUMUVc/_old  2015-06-30 10:14:41.0 +0200
+++ /var/tmp/diff_new_pack.rUMUVc/_new  2015-06-30 10:14:41.0 +0200
@@ -1,14 +1,26 @@
 a/src/kmk/dir.c2013-12-06 18:40:31.882478000 +0100
-+++ b/src/kmk/dir.c2014-01-17 10:09:40.546258127 +0100
-@@ -1310,7 +1310,11 @@
+---
+ src/kmk/dir.c |4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+Index: kbuild-0.1.9998svn2784/src/kmk/dir.c
+===
+--- kbuild-0.1.9998svn2784.orig/src/kmk/dir.c
 kbuild-0.1.9998svn2784/src/kmk/dir.c
+@@ -1310,7 +1310,7 @@ print_dir_data_base (void)
  
  /* Hooks for globbing.  */
  
-+#ifdef KMK
-+#include glob/glob.h
-+#else
+-#if defined(KMK)  !defined(__OS2__)
++#if defined(KMK)  !defined(__GLIBC__)
+ # include glob/glob.h
+ #else
  #include glob.h
-+#endif
- 
- /* Structure describing state of iterating through a directory hash table.  */
- 
+@@ -1449,7 +1449,7 @@ dir_setup_glob (glob_t *gl)
+ #ifdef __EMX__ /* The FreeBSD implementation actually uses gl_lstat!! */
+   gl-gl_lstat = local_stat;
+ #endif
+-#if defined(KMK)  !defined(__OS2__)
++#if defined(KMK)  !defined(__GLIBC__)
+   gl-gl_exists = file_exists_p;
+   gl-gl_isdir = dir_exists_p;
+ #endif

++ kbuild-pthread.diff ++
--- /var/tmp/diff_new_pack.rUMUVc/_old  2015-06-30 10:14:41.0 +0200
+++ /var/tmp/diff_new_pack.rUMUVc/_new  2015-06-30 10:14:41.0 +0200
@@ -1,8 +1,12 @@
-Index: kbuild-0.1.9998svn2720/Config.kmk
+---
+ Config.kmk |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: kbuild-0.1.9998svn2784/Config.kmk
 ===
 kbuild-0.1.9998svn2720.orig/Config.kmk
-+++ kbuild-0.1.9998svn2720/Config.kmk
-@@ -314,7 +314,7 @@ ifndef TEMPLATE_BIN_TOOL
+--- kbuild-0.1.9998svn2784.orig/Config.kmk
 kbuild-0.1.9998svn2784/Config.kmk
+@@ -330,7 +330,7 @@ ifndef TEMPLATE_BIN_TOOL
TEMPLATE_BIN_INCS+= $(PATH_GNUMAKE_SRC)/glob /usr/local/include
   endif
   ifeq ($(KBUILD_TARGET),linux)

++ kbuild-timestamps.diff ++
--- /var/tmp/diff_new_pack.rUMUVc/_old  2015-06-30 10:14:41.0 +0200
+++ /var/tmp/diff_new_pack.rUMUVc/_new  2015-06-30 10:14:41.0 +0200

commit patterns-openSUSE for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package patterns-openSUSE for 
openSUSE:Factory checked in at 2015-06-30 10:14:05

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


Package is patterns-openSUSE

Changes:

--- /work/SRC/openSUSE:Factory/patterns-openSUSE/patterns-openSUSE.changes  
2015-06-25 16:18:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.patterns-openSUSE.new/patterns-openSUSE.changes 
2015-06-30 10:14:06.0 +0200
@@ -1,0 +2,6 @@
+Mon Jun 29 09:41:59 UTC 2015 - dims...@opensuse.org
+
+- Recommend NTP at least until boo#936378 is fixed and YaST is not
+  trying to configure a service that's not there.
+
+---



Other differences:
--
++ patterns-openSUSE.spec ++
--- /var/tmp/diff_new_pack.4TNMyJ/_old  2015-06-30 10:14:07.0 +0200
+++ /var/tmp/diff_new_pack.4TNMyJ/_new  2015-06-30 10:14:07.0 +0200
@@ -4126,6 +4126,8 @@
 Recommends: lukemftp
 Recommends: netcat-openbsd
 Recommends: nfs-client
+# Recommend NTP at least until boo#936378 is fixed and YaST is not trying to 
configure a service that's not there
+Recommends: ntp
 Recommends: prctl
 Recommends: rsync
 Recommends: strace




commit netpbm for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package netpbm for openSUSE:Factory checked 
in at 2015-06-30 10:14:02

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


Package is netpbm

Changes:

--- /work/SRC/openSUSE:Factory/netpbm/netpbm.changes2015-05-20 
23:34:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.netpbm.new/netpbm.changes   2015-06-30 
10:14:03.0 +0200
@@ -1,0 +2,5 @@
+Tue Jun 23 14:00:50 UTC 2015 - mvysko...@opensuse.org
+
+- Drop all libp?m.so symlinks 
+
+---



Other differences:
--
++ netpbm.spec ++
--- /var/tmp/diff_new_pack.BtHCKS/_old  2015-06-30 10:14:04.0 +0200
+++ /var/tmp/diff_new_pack.BtHCKS/_new  2015-06-30 10:14:04.0 +0200
@@ -146,10 +146,6 @@
 cp -pd  package/bin/*  $RPM_BUILD_ROOT%{_bindir}
 cp -pd  package/lib/*.so*  $RPM_BUILD_ROOT%{_libdir}
 ln -s   libnetpbm.so.%{libver} $RPM_BUILD_ROOT%{_libdir}/libnetpbm.so
-ln -s   libnetpbm.so   $RPM_BUILD_ROOT%{_libdir}/libpbm.so
-ln -s   libnetpbm.so   $RPM_BUILD_ROOT%{_libdir}/libpgm.so
-ln -s   libnetpbm.so   $RPM_BUILD_ROOT%{_libdir}/libpnm.so
-ln -s   libnetpbm.so   $RPM_BUILD_ROOT%{_libdir}/libppm.so
 cp -prd package/include/netpbm $RPM_BUILD_ROOT%{_includedir}
 cp -prd man/*  $RPM_BUILD_ROOT%{_mandir}
 install -m 644 converter/other/pnmtopalm/*.map \




commit rpmlint for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory checked 
in at 2015-06-30 10:14:07

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


Package is rpmlint

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes  2015-05-23 
13:19:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes 2015-06-30 
10:14:08.0 +0200
@@ -1,0 +2,5 @@
+Wed Jun 24 08:04:06 UTC 2015 - tchva...@suse.com
+
+- Add mysql group to the known groups
+
+---



Other differences:
--
rpmlint.spec: same change
++ config ++
--- /var/tmp/diff_new_pack.6v0rKo/_old  2015-06-30 10:14:10.0 +0200
+++ /var/tmp/diff_new_pack.6v0rKo/_new  2015-06-30 10:14:10.0 +0200
@@ -151,6 +151,7 @@
 'mktex',
 'modem',
 'mumble-server',
+'mysql',
 'nagcmd',
 'nagios',
 'named',




commit python3-jedi for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package python3-jedi for openSUSE:Factory 
checked in at 2015-06-30 10:19:32

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


Package is python3-jedi

Changes:

--- /work/SRC/openSUSE:Factory/python3-jedi/python3-jedi.changes
2014-08-14 14:58:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-jedi.new/python3-jedi.changes   
2015-06-30 10:19:35.0 +0200
@@ -1,0 +2,20 @@
+Wed May  6 16:34:44 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 0.9.0:
+  * The import logic has been rewritten to look more like Python's.
+There is now an Evaluator.modules import cache, which resembles
+sys.modules.
+  * Integrated the parser of 2to3. This will make refactoring
+possible. It will also be possible to check for error messages
+(like compiling an AST would give) in the future.
+  * With the new parser, the evaluation also completely changed.
+It's now simpler and more readable.
+  * Completely rewritten REPL completion.
+  * Added jedi.names, a command to do static analysis. Thanks to
+that sourcegraph guys for sponsoring this!
+  * Alpha version of the linter.
+- remove -final0 appended to source version
+- add python-unittest2 as a test dependency for SLE11
+- skip failing tests in test_integration_import.py
+
+---

Old:

  jedi-0.8.1-final0.tar.gz

New:

  jedi-0.9.0.tar.gz



Other differences:
--
++ python3-jedi.spec ++
--- /var/tmp/diff_new_pack.x7Lyl4/_old  2015-06-30 10:19:36.0 +0200
+++ /var/tmp/diff_new_pack.x7Lyl4/_new  2015-06-30 10:19:36.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-jedi
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,17 +16,17 @@
 #
 
 Name:   python3-jedi
-Version:0.8.1
+Version:0.9.0
 Release:0
 Summary:An autocompletion tool for Python
 License:MIT
 Group:  Development/Languages/Python
 Url:https://jedi.readthedocs.org/en/latest/index.html
-Source0:
https://pypi.python.org/packages/source/j/jedi/jedi-%{version}-final0.tar.gz
+Source0:
https://pypi.python.org/packages/source/j/jedi/jedi-%{version}.tar.gz
 BuildRequires:  python3-devel
 BuildRequires:  python3-docopt
-BuildRequires:  python3-setuptools
 BuildRequires:  python3-pytest
+BuildRequires:  python3-setuptools
 Requires:   python3-docopt
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
@@ -46,7 +46,7 @@
 licensing, just contact me.
 
 %prep
-%setup -q -n jedi-%{version}-final0
+%setup -q -n jedi-%{version}
 # fix unicode issues
 sed -i s/).read()/, encoding='utf-8').read()/g setup.py
 
@@ -61,7 +61,8 @@
 # fix unicode issues
 sed -i s/open(path).read()/open(path, encoding='utf-8').read()/g test/run.py
 # we don't care about the speed, just that it works
-py.test  -k not test_speed
+# skip failing import tests on 0.9.0
+py.test -k not test_speed --ignore=test/test_integration_import.py
 
 %files
 %defattr(0644,root,root,0755)

++ jedi-0.8.1-final0.tar.gz - jedi-0.9.0.tar.gz ++
 23831 lines of diff (skipped)




commit python3-matplotlib for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package python3-matplotlib for 
openSUSE:Factory checked in at 2015-06-30 10:19:44

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


Package is python3-matplotlib

Changes:

--- /work/SRC/openSUSE:Factory/python3-matplotlib/python3-matplotlib.changes
2015-02-18 12:09:28.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-matplotlib.new/python3-matplotlib.changes   
2015-06-30 10:19:47.0 +0200
@@ -1,0 +2,11 @@
+Mon Jun 29 14:29:00 UTC 2015 - toddrme2...@gmail.com
+
+- Disable qt5 on ppc
+
+---
+Mon Jun 29 13:07:32 UTC 2015 - toddrme2...@gmail.com
+
+- Disable qt5 and tk on SLE 12
+- Don't require texlive-sfmath on SLE 12
+
+---



Other differences:
--
++ python3-matplotlib.spec ++
--- /var/tmp/diff_new_pack.8RYcpV/_old  2015-06-30 10:19:48.0 +0200
+++ /var/tmp/diff_new_pack.8RYcpV/_new  2015-06-30 10:19:48.0 +0200
@@ -36,6 +36,7 @@
 BuildRequires:  libxml2-tools
 BuildRequires:  pkg-config
 BuildRequires:  poppler-tools
+BuildRequires:  python3
 BuildRequires:  python3-CXX-devel = 6.2.4
 BuildRequires:  python3-Pillow
 BuildRequires:  python3-dateutil = 1.1
@@ -62,17 +63,21 @@
 # latex dependencies
 BuildRequires:  texlive-dvipng
 BuildRequires:  texlive-latex
-BuildRequires:  texlive-sfmath
 BuildRequires:  texlive-tex
+%if 0%{?suse_version} != 1315
+BuildRequires:  texlive-sfmath
+%endif
 # Qt4 dependencies
 # BuildRequires:  python3-pyside
 BuildRequires:  python3-qt4
 BuildRequires:  python3-qt4-devel
 # Qt5 dependencies
-%if 0%{?suse_version}  1310
+%ifnarch ppc64 ppc64le
+%if 0%{?suse_version}  1315
 BuildRequires:  python3-qt5
 BuildRequires:  python3-qt5-devel
 %endif
+%endif
 # tk dependencies
 BuildRequires:  python3-tk
 BuildRequires:  tcl
@@ -146,8 +151,10 @@
 Requires:   %{name} = %{version}
 Requires:   texlive-dvipng
 Requires:   texlive-latex
-Requires:   texlive-sfmath
 Requires:   texlive-tex
+%if 0%{?suse_version} != 1315
+Requires:   texlive-sfmath
+%endif
 
 %description latex
 This package allows %{name} to display latex in plots
@@ -337,7 +344,8 @@
 %{python3_sitearch}/matplotlib/backends/backend_qt4.*
 %{python3_sitearch}/matplotlib/backends/backend_qt4agg.*
 
-%if 0%{?suse_version}  1310
+%ifnarch ppc64 ppc64le
+%if 0%{?suse_version}  1315
 %files qt5
 %defattr(-,root,root,-)
 # IMPORTANT: the qt4 backend makes use of the qt5 backend, 
@@ -347,12 +355,15 @@
 # python-qt5 dependency.
 %doc README.rst
 %endif
+%endif
 
+%if 0%{?suse_version} != 1315
 %files tk
 %defattr(-,root,root,-)
 %{python3_sitearch}/matplotlib/backends/backend_tkagg.*
 %{python3_sitearch}/matplotlib/backends/tkagg.*
 # %{python3_sitearch}/matplotlib/backends/_tkagg.so
+%endif
 
 %files web
 %defattr(-,root,root,-)

++ matplotlib-setup.cfg ++
--- /var/tmp/diff_new_pack.8RYcpV/_old  2015-06-30 10:19:48.0 +0200
+++ /var/tmp/diff_new_pack.8RYcpV/_new  2015-06-30 10:19:48.0 +0200
@@ -76,7 +76,7 @@
 gtkagg = Auto
 pyside = Auto
 qt4agg = Auto
-tkagg = True
+tkagg = Auto
 wxagg = Auto
 macosx = False
 windowing = False




commit squirrelmail-beta for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package squirrelmail-beta for 
openSUSE:Factory checked in at 2015-06-30 10:19:35

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


Package is squirrelmail-beta

Changes:

--- /work/SRC/openSUSE:Factory/squirrelmail-beta/squirrelmail-beta.changes  
2012-02-20 16:18:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.squirrelmail-beta.new/squirrelmail-beta.changes 
2015-06-30 10:19:39.0 +0200
@@ -1,0 +2,14 @@
+Mon Jun 15 10:51:18 UTC 2015 - jeng...@inai.de
+
+- Update to new snapshot 20150615
+* Replace invalid characters with a symbol instead of returning
+  empty string for the entire to be encoded string.
+* Make sure the correct identity is used for list command mailto
+  actions Prevent session lock-up caused by filters plugin trying
+  to move messages in an account that is over quota.
+* Don't allow TO field to be blank; adjust auto-detection of FROM
+  for reply-all actions as well.
+* When using reply-all to reply to single-recipient message, make
+  sure we still use the original recipient.
+
+---

Old:

  squirrelmail-20120215_0200-SVN.devel.tar.xz
  squirrelmail-20120215_0200-SVN.locales.tar.xz

New:

  squirrelmail-20150615_0200-SVN.devel.tar.bz2
  squirrelmail-20150615_0200-SVN.locales.tar.bz2



Other differences:
--
++ squirrelmail-beta.spec ++
--- /var/tmp/diff_new_pack.rGC0yq/_old  2015-06-30 10:19:40.0 +0200
+++ /var/tmp/diff_new_pack.rGC0yq/_new  2015-06-30 10:19:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package squirrelmail-beta
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,20 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   squirrelmail-beta
 Version:1.5.2
 Release:0
-Requires:   mod_php_any
-Requires:   php-ctype
-Requires:   php-gettext
-Requires:   php-iconv
-Requires:   php-mbstring
-Requires:   php-mcrypt
-Requires:   php-hash
-Requires:   php-openssl
-Requires:   php-posix
-Requires:   php-session
-Requires:   php-sockets
 Url:http://www.squirrelmail.org
 Summary:A web-mailer written in php
 License:GPL-2.0+
@@ -39,15 +29,28 @@
 %define b_sqm_doc  %buidroot%sqm_doc
 
 #DL-URL:   http://squirrelmail.org/download.php
-#Source:   
http://snapshots.squirrelmail.org/squirrelmail-20110719_0200-SVN.devel.tar.bz2
-Source: squirrelmail-20120215_0200-SVN.devel.tar.xz
-Source2:squirrelmail-20120215_0200-SVN.locales.tar.xz
+#Source: 
http://snapshots.squirrelmail.org/squirrelmail-20150615_0200-SVN.devel.tar.bz2
+#Source2:
http://snapshots.squirrelmail.org/squirrelmail-20150615_0200-SVN.locales.tar.bz2
+#Files get replaced each day :/
+Source: squirrelmail-20150615_0200-SVN.devel.tar.bz2
+Source2:squirrelmail-20150615_0200-SVN.locales.tar.bz2
 Source3:config.php
 Source5:squirrelmail.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 BuildRequires:  fdupes
 BuildRequires:  xz
+Requires:   mod_php_any
+Requires:   php-ctype
+Requires:   php-gettext
+Requires:   php-hash
+Requires:   php-iconv
+Requires:   php-mbstring
+Requires:   php-mcrypt
+Requires:   php-openssl
+Requires:   php-posix
+Requires:   php-session
+Requires:   php-sockets
 
 %define with_lang 1
 

++ squirrelmail-20120215_0200-SVN.devel.tar.xz - 
squirrelmail-20150615_0200-SVN.devel.tar.bz2 ++
 12710 lines of diff (skipped)

++ squirrelmail-20120215_0200-SVN.locales.tar.xz - 
squirrelmail-20150615_0200-SVN.locales.tar.bz2 ++
 19976 lines of diff (skipped)




commit haproxy for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package haproxy for openSUSE:Factory checked 
in at 2015-06-30 10:19:18

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


Package is haproxy

Changes:

--- /work/SRC/openSUSE:Factory/haproxy/haproxy.changes  2015-06-02 
10:08:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.haproxy.new/haproxy.changes 2015-06-30 
10:19:19.0 +0200
@@ -1,0 +2,85 @@
+Fri Jun 26 11:45:33 UTC 2015 - kgronl...@suse.com
+
+- Update to 1.5.13
+  - Dropped all patches backported from git, no further changes
+than those patches provided.
+
+- Removed patches:
+  + Remove 0001-BUG-MEDIUM-stats-properly-initialize-the-scope-befor.patch
+  + Remove 0002-BUG-MEDIUM-http-don-t-forward-client-shutdown-withou.patch
+  + Remove 0003-BUG-MINOR-check-fix-tcpcheck-error-message.patch
+  + Remove 0004-CLEANUP-checks-fix-double-usage-of-cur-current_step-.patch
+  + Remove 0005-BUG-MEDIUM-checks-do-not-dereference-head-of-a-tcp-c.patch
+  + Remove 0006-CLEANUP-checks-simplify-the-loop-processing-of-tcp-c.patch
+  + Remove 0007-BUG-MAJOR-checks-always-check-for-end-of-list-before.patch
+  + Remove 0008-BUG-MEDIUM-checks-do-not-dereference-a-list-as-a-tcp.patch
+  + Remove 0009-BUG-MEDIUM-peers-apply-a-random-reconnection-timeout.patch
+  + Remove 0010-DOC-Update-doc-about-weight-act-and-bck-fields-in-th.patch
+  + Remove 0011-MINOR-ssl-add-a-destructor-to-free-allocated-SSL-res.patch
+  + Remove 0012-BUG-MEDIUM-ssl-fix-tune.ssl.default-dh-param-value-b.patch
+  + Remove 0013-BUG-MINOR-cfgparse-fix-typo-in-option-httplog-error-.patch
+  + Remove 0014-BUG-MEDIUM-cfgparse-segfault-when-userlist-is-misuse.patch
+  + Remove 0015-MEDIUM-ssl-replace-standards-DH-groups-with-custom-o.patch
+  + Remove 0016-BUG-MINOR-debug-display-null-in-place-of-meth.patch
+  + Remove 0017-CLEANUP-deinit-remove-codes-for-cleaning-p-block_rul.patch
+  + Remove 0018-BUG-MINOR-ssl-fix-smp_fetch_ssl_fc_session_id.patch
+  + Remove 0019-MEDIUM-init-don-t-stop-proxies-in-parent-process-whe.patch
+  + Remove 0020-MINOR-peers-store-the-pointer-to-the-signal-handler.patch
+  + Remove 0021-MEDIUM-peers-unregister-peers-that-were-never-starte.patch
+  + Remove 0022-MEDIUM-config-propagate-the-table-s-process-list-to-.patch
+  + Remove 0023-MEDIUM-init-stop-any-peers-section-not-bound-to-the-.patch
+  + Remove 0024-MEDIUM-config-validate-that-peers-sections-are-bound.patch
+  + Remove 0025-MAJOR-peers-allow-peers-section-to-be-used-with-nbpr.patch
+  + Remove 0026-DOC-relax-the-peers-restriction-to-single-process.patch
+  + Remove 0027-CLEANUP-config-fix-misleading-information-in-error-m.patch
+  + Remove 0028-MINOR-config-report-the-number-of-processes-using-a-.patch
+  + Remove 0029-BUG-MEDIUM-config-properly-compute-the-default-numbe.patch
+
+---
+Thu Jun 25 15:01:34 UTC 2015 - kgronl...@suse.com
+
+- Backport upstream patches:
+  + DOC: Update doc about weight, act and bck fields in the statistics
+  + MINOR: ssl: add a destructor to free allocated SSL ressources
+  + BUG/MEDIUM: ssl: fix tune.ssl.default-dh-param value being overwritten
+  + BUG/MINOR: cfgparse: fix typo in 'option httplog' error message
+  + BUG/MEDIUM: cfgparse: segfault when userlist is misused
+  + MEDIUM: ssl: replace standards DH groups with custom ones
+  + BUG/MINOR: debug: display (null) in place of meth
+  + CLEANUP: deinit: remove codes for cleaning p-block_rules
+  + BUG/MINOR: ssl: fix smp_fetch_ssl_fc_session_id
+  + MEDIUM: init: don't stop proxies in parent process when exiting
+  + MINOR: peers: store the pointer to the signal handler
+  + MEDIUM: peers: unregister peers that were never started
+  + MEDIUM: config: propagate the table's process list to the peers sections
+  + MEDIUM: init: stop any peers section not bound to the correct process
+  + MEDIUM: config: validate that peers sections are bound to exactly one 
process
+  + MAJOR: peers: allow peers section to be used with nbproc  1
+  + DOC: relax the peers restriction to single-process
+  + CLEANUP: config: fix misleading information in error message.
+  + MINOR: config: report the number of processes using a peers section in the 
error case
+  + BUG/MEDIUM: config: properly compute the default number of processes for a 
proxy
+
+- Added patches:
+  + Add 0010-DOC-Update-doc-about-weight-act-and-bck-fields-in-th.patch
+  + Add 0011-MINOR-ssl-add-a-destructor-to-free-allocated-SSL-res.patch
+  + Add 0012-BUG-MEDIUM-ssl-fix-tune.ssl.default-dh-param-value-b.patch
+  + Add 0013-BUG-MINOR-cfgparse-fix-typo-in-option-httplog-error-.patch
+  + Add 0014-BUG-MEDIUM-cfgparse-segfault-when-userlist-is-misuse.patch
+  + Add 0015-MEDIUM-ssl-replace-standards-DH-groups-with-custom-o.patch
+  + Add 

commit spyder3 for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package spyder3 for openSUSE:Factory checked 
in at 2015-06-30 10:19:26

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


Package is spyder3

Changes:

--- /work/SRC/openSUSE:Factory/spyder3/spyder3.changes  2015-03-25 
10:01:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.spyder3.new/spyder3.changes 2015-06-30 
10:19:28.0 +0200
@@ -1,0 +2,47 @@
+Mon Jun 29 11:12:38 UTC 2015 - toddrme2...@gmail.com
+
+- Update to 2.3.5.2
+  * Note: Versions 2.3.5 and 2.3.5.1 have serious startup bugs on
+Windows and Mac respectively. Hence they are not listed here.
+  * New features
+- Editor
+  + Add support for Jedi 0.9
+- IPython Console
+  + Add initial support for IPython/Jupyter 4.0
+- Main Window
+  + Improve how Spyder looks in MacOS X
+  + Several fixes to prevent startup crashes
+  * Bug fixes
+- Issue 2468 - 'Connect to existing kernel' fails if json file not in PWD
+- Issue 2466 - No Notification of Running Instance
+- Issue 2463 - Failure to preserve Matplotlib backend when using symbolic 
math
+- Issue 2456 - Launching IPython console fails because of errors importing 
Pandas or Matplotlib
+- Issue 2452 - os.system causes TypeError in Python 3
+- Issue 2448 - Spyder crashes using Variable Explorer with BeautifulSoup
+- Issue 2446 - When importing putting two periods in a row produces an 
error in a Python console
+- Issue 2363 - Spyder fails to start because of problems with lockfile
+- Issue 2356 - Block comment incorporating whitespace excludes last line
+- Issue 2341 - IPython console: sre_constants.error: unbalanced 
parenthesis while typing
+- Issue 2314 - Cell highlighting not updated after closing the FindReplace 
widget
+- Issue 2302 - Closing all files in editor shouldn't leave it empty
+- Issue 2299 - IPython preference Automatically load Pylab and Numpy 
Modules not followed
+- Issue 2298 - Cannot stop executing when runing a flask app with 
debug=True
+- Issue 2285 - Copying from Spyder and pasting into LibreOffice displays 
strange comments
+- Issue 2228 - Shortcut to run cells on Mac is not working
+- Issue 2188 - can't run win_post_install from pip
+- Issue 2171 - Spyder Mac apps (for Python 2 and 3) hang on startup with 
OSX 10.9.5
+- Issue 2028 - Background color of theme is not set properly on Mac OSX
+- Issue 1957 - Python 3 Mac app can't start Python or IPython consoles
+- Issue 1844 - Set as current console's working directory button not 
working on Python 3
+- Issue 1615 - Mac app - Matplotlib does not work with Canopy
+  * Pull requests
+- PR 2486 - Stop using IPython.lib.kernel 0.13.2 shim and add initial 
support for Jupyter
+- PR 2484 - Remove unnecessary changes to detected kernel json file when 
connecting to external kernels
+- PR 2434 - Match for pylint when parsing pylint version
+- PR 2411 - Improve github issue template
+- PR 2377 - Fix the fact that spyder_win_post_install.py can't be run from 
pip
+- PR 2293 - Hide menu icons on Mac OS X
+- PR 2247 - Add support to run Python programs on xfce and xterm external 
terminals
+- PR 2216 - Fix broken png files: libpng 1.6.2 and newer has stricter iCCP 
rules
+
+---

Old:

  spyder-2.3.4.zip

New:

  spyder-2.3.5.2.zip



Other differences:
--
++ spyder3.spec ++
--- /var/tmp/diff_new_pack.1r78xj/_old  2015-06-30 10:19:29.0 +0200
+++ /var/tmp/diff_new_pack.1r78xj/_new  2015-06-30 10:19:29.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   spyder3
-Version:2.3.4
+Version:2.3.5.2
 Release:0
 Url:http://spyderlib.googlecode.com
 Summary:Scientific PYthon Development EnviRonment




commit python-psutil for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package python-psutil for openSUSE:Factory 
checked in at 2015-06-30 10:19:28

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


Package is python-psutil

Changes:

--- /work/SRC/openSUSE:Factory/python-psutil/python-psutil.changes  
2015-02-05 11:00:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-psutil.new/python-psutil.changes 
2015-06-30 10:19:29.0 +0200
@@ -1,0 +2,55 @@
+Mon Jun 29 11:08:33 UTC 2015 - toddrme2...@gmail.com
+
+- update to version 3.0.1:
+  * #632: [Linux] better error message if cannot parse process UNIX
+ connections.
+  * #634: [Linux] Proces.cmdline() does not include empty string
+ arguments.
+  * #635: [UNIX] crash on module import if 'enum' package is installed
+ on python  3.4.
+- update to version 3.0.0:
+  * Enhancements
++ #250: new psutil.net_if_stats() returning NIC statistics (isup,
+  duplex, speed, MTU).
++ #376: new psutil.net_if_addrs() returning all NIC addresses a-la
+  ifconfig.
++ #469: on Python = 3.4 IOPRIO_CLASS_* and *_PRIORITY_CLASS
+  constants returned by psutil.Process' ionice() and nice()
+  methods are enums instead of plain integers.
++ #581: add .gitignore. (patch by Gabi Davar)
++ #582: connection constants returned by psutil.net_connections()
+  and psutil.Process.connections() were turned from int to enums
+  on Python  3.4.
++ #587: Move native extension into the package.
++ #589: Process.cpu_affinity() accepts any kind of iterable (set,
+  tuple, ...), not only lists.
++ #594: all deprecated APIs were removed.
++ #599: [Windows] process name() can now be determined for all
+  processes even when running as a limited user.
++ #602: pre-commit GIT hook.
++ #629: enhanced support for py.test and nose test discovery and
+  tests run.
++ #616: [Windows] Add inet_ntop function for Windows XP.
+  * Bug fixes
++ #428: [all UNIXes except Linux] correct handling of zombie
+  processes; introduced new ZombieProcess exception class.
++ #512: [BSD] fix segfault in net_connections().
++ #555: [Linux] psutil.users() correctly handles :0 as an alias
+  for localhost
++ #579: [Windows] Fixed open_files() for PID64K.
++ #579: [Windows] fixed many compiler warnings.
++ #585: [FreeBSD] net_connections() may raise KeyError.
++ #586: [FreeBSD] cpu_affinity() segfaults on set in case an
+  invalid CPU number is provided.
++ #593: [FreeBSD] Process().memory_maps() segfaults.
++ #606: Process.parent() may swallow NoSuchProcess exceptions.
++ #611: [SunOS] net_io_counters has send and received swapped
++ #614: [Linux]: cpu_count(logical=False) return the number of
+  physical CPUs instead of physical cores.
++ #618: [SunOS] swap tests fail on Solaris when run as normal user
++ #628: [Linux] Process.name() truncates process name in case it
+  contains spaces or parentheses.
+- specfile:
+  * location of .so files changes to subdir psutil
+
+---

Old:

  psutil-2.2.1.tar.gz

New:

  psutil-3.0.1.tar.gz



Other differences:
--
++ python-psutil.spec ++
--- /var/tmp/diff_new_pack.qg0vNh/_old  2015-06-30 10:19:30.0 +0200
+++ /var/tmp/diff_new_pack.qg0vNh/_new  2015-06-30 10:19:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-psutil
-Version:2.2.1
+Version:3.0.1
 Release:0
 Summary:A process utilities module for Python
 License:BSD-3-Clause
@@ -58,7 +58,7 @@
 %defattr(-,root,root,-)
 %doc CREDITS examples HISTORY.rst LICENSE README.rst TODO
 %{python_sitearch}/psutil/
-%{python_sitearch}/_psutil_*.so
+%{python_sitearch}/psutil/_psutil_*.so
 %{python_sitearch}/psutil-%{version}-py*.egg-info
 
 %changelog

++ psutil-2.2.1.tar.gz - psutil-3.0.1.tar.gz ++
 10793 lines of diff (skipped)




commit john for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package john for openSUSE:Factory checked in 
at 2015-06-30 10:19:52

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


Package is john

Changes:

--- /work/SRC/openSUSE:Factory/john/john.changes2014-12-23 
11:49:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.john.new/john.changes   2015-06-30 
10:19:54.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 25 14:12:06 UTC 2015 - astie...@suse.com
+
+- fix SLE 11 SP3 build
+
+---



Other differences:
--
++ john.spec ++
--- /var/tmp/diff_new_pack.iRTMFw/_old  2015-06-30 10:19:56.0 +0200
+++ /var/tmp/diff_new_pack.iRTMFw/_new  2015-06-30 10:19:56.0 +0200
@@ -35,6 +35,9 @@
 Source9:%{jumboversion}.tar.bz2.sign
 Patch0: ppc64le.patch
 BuildRequires:  openssl-devel
+%if 0%{?suse_version} == 1110 
+BuildRequires:  xz
+%endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define johndir /var/lib/john
 %define cflags CFLAGS=-c %{optflags} -DJOHN_SYSTEMWIDE=1 -finline-limit=2000 
--param inline-unit-growth=2000 LDFLAGS=-lcrypto








commit python3-polib for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package python3-polib for openSUSE:Factory 
checked in at 2015-06-30 10:19:37

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


Package is python3-polib

Changes:

--- /work/SRC/openSUSE:Factory/python3-polib/python3-polib.changes  
2015-01-08 23:03:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-polib.new/python3-polib.changes 
2015-06-30 10:19:43.0 +0200
@@ -1,0 +2,7 @@
+Mon Jun 29 12:53:48 UTC 2015 - toddrme2...@gmail.com
+
+- Use python3-Sphinx
+- Use setuptools instead of distribute
+- Use nose for testing
+
+---



Other differences:
--
++ python3-polib.spec ++
--- /var/tmp/diff_new_pack.7uEHQa/_old  2015-06-30 10:19:44.0 +0200
+++ /var/tmp/diff_new_pack.7uEHQa/_new  2015-06-30 10:19:44.0 +0200
@@ -24,9 +24,10 @@
 Group:  Development/Languages/Python
 Url:http://bitbucket.org/izi/polib/
 Source0:
https://pypi.python.org/packages/source/p/polib/polib-%{version}.tar.gz
-BuildRequires:  python-Sphinx
+BuildRequires:  python3-Sphinx
 BuildRequires:  python3-devel
-BuildRequires:  python3-distribute
+BuildRequires:  python3-nose
+BuildRequires:  python3-setuptools
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -65,7 +66,7 @@
 --root=%{buildroot}
 
 %check
-./runtests.sh
+PYTHONPATH=%{buildroot}%{python3_sitelib} nosetests
 
 %files
 %defattr(-,root,root,-)




commit python3-cairocffi for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package python3-cairocffi for 
openSUSE:Factory checked in at 2015-06-30 10:19:41

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


Package is python3-cairocffi

Changes:

--- /work/SRC/openSUSE:Factory/python3-cairocffi/python3-cairocffi.changes  
2015-06-08 08:30:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-cairocffi.new/python3-cairocffi.changes 
2015-06-30 10:19:45.0 +0200
@@ -1,0 +2,5 @@
+Mon Jun 29 13:05:38 UTC 2015 - toddrme2...@gmail.com
+
+- Depend on cairo
+
+---



Other differences:
--
++ python3-cairocffi.spec ++
--- /var/tmp/diff_new_pack.HPGaHB/_old  2015-06-30 10:19:45.0 +0200
+++ /var/tmp/diff_new_pack.HPGaHB/_new  2015-06-30 10:19:45.0 +0200
@@ -24,12 +24,12 @@
 Group:  Development/Languages/Python
 Url:https://github.com/SimonSapin/cairocffi
 Source: 
https://pypi.python.org/packages/source/c/cairocffi/cairocffi-%{version}.tar.gz
-BuildRequires:  cairo-tools
+BuildRequires:  cairo
 BuildRequires:  gdk-pixbuf
 BuildRequires:  python3-cffi = 0.6
 BuildRequires:  python3-devel
 BuildRequires:  python3-setuptools
-Requires:   cairo-tools
+Requires:   cairo
 Requires:   python3-cffi = 0.6
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch




commit spyder for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package spyder for openSUSE:Factory checked 
in at 2015-06-30 10:19:24

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


Package is spyder

Changes:

--- /work/SRC/openSUSE:Factory/spyder/spyder.changes2015-03-25 
10:01:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.spyder.new/spyder.changes   2015-06-30 
10:19:25.0 +0200
@@ -1,0 +2,47 @@
+Mon Jun 29 11:12:38 UTC 2015 - toddrme2...@gmail.com
+
+- Update to 2.3.5.2
+  * Note: Versions 2.3.5 and 2.3.5.1 have serious startup bugs on
+Windows and Mac respectively. Hence they are not listed here.
+  * New features
+- Editor
+  + Add support for Jedi 0.9
+- IPython Console
+  + Add initial support for IPython/Jupyter 4.0
+- Main Window
+  + Improve how Spyder looks in MacOS X
+  + Several fixes to prevent startup crashes
+  * Bug fixes
+- Issue 2468 - 'Connect to existing kernel' fails if json file not in PWD
+- Issue 2466 - No Notification of Running Instance
+- Issue 2463 - Failure to preserve Matplotlib backend when using symbolic 
math
+- Issue 2456 - Launching IPython console fails because of errors importing 
Pandas or Matplotlib
+- Issue 2452 - os.system causes TypeError in Python 3
+- Issue 2448 - Spyder crashes using Variable Explorer with BeautifulSoup
+- Issue 2446 - When importing putting two periods in a row produces an 
error in a Python console
+- Issue 2363 - Spyder fails to start because of problems with lockfile
+- Issue 2356 - Block comment incorporating whitespace excludes last line
+- Issue 2341 - IPython console: sre_constants.error: unbalanced 
parenthesis while typing
+- Issue 2314 - Cell highlighting not updated after closing the FindReplace 
widget
+- Issue 2302 - Closing all files in editor shouldn't leave it empty
+- Issue 2299 - IPython preference Automatically load Pylab and Numpy 
Modules not followed
+- Issue 2298 - Cannot stop executing when runing a flask app with 
debug=True
+- Issue 2285 - Copying from Spyder and pasting into LibreOffice displays 
strange comments
+- Issue 2228 - Shortcut to run cells on Mac is not working
+- Issue 2188 - can't run win_post_install from pip
+- Issue 2171 - Spyder Mac apps (for Python 2 and 3) hang on startup with 
OSX 10.9.5
+- Issue 2028 - Background color of theme is not set properly on Mac OSX
+- Issue 1957 - Python 3 Mac app can't start Python or IPython consoles
+- Issue 1844 - Set as current console's working directory button not 
working on Python 3
+- Issue 1615 - Mac app - Matplotlib does not work with Canopy
+  * Pull requests
+- PR 2486 - Stop using IPython.lib.kernel 0.13.2 shim and add initial 
support for Jupyter
+- PR 2484 - Remove unnecessary changes to detected kernel json file when 
connecting to external kernels
+- PR 2434 - Match for pylint when parsing pylint version
+- PR 2411 - Improve github issue template
+- PR 2377 - Fix the fact that spyder_win_post_install.py can't be run from 
pip
+- PR 2293 - Hide menu icons on Mac OS X
+- PR 2247 - Add support to run Python programs on xfce and xterm external 
terminals
+- PR 2216 - Fix broken png files: libpng 1.6.2 and newer has stricter iCCP 
rules
+
+---

Old:

  spyder-2.3.4.zip

New:

  spyder-2.3.5.2.zip



Other differences:
--
++ spyder.spec ++
--- /var/tmp/diff_new_pack.sWpMn5/_old  2015-06-30 10:19:26.0 +0200
+++ /var/tmp/diff_new_pack.sWpMn5/_new  2015-06-30 10:19:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   spyder
-Version:2.3.4
+Version:2.3.5.2
 Release:0
 Url:http://spyderlib.googlecode.com
 Summary:Scientific PYthon Development EnviRonment




commit csync for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package csync for openSUSE:Factory checked 
in at 2015-06-30 10:19:45

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


Package is csync

Changes:

--- /work/SRC/openSUSE:Factory/csync/csync.changes  2015-03-19 
21:15:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.csync.new/csync.changes 2015-06-30 
10:19:48.0 +0200
@@ -1,0 +2,6 @@
+Mon Jun 29 15:01:58 UTC 2015 - t...@physics.org
+
+- Fix build break by changing __FUNCTION__ to __func__
+  * csync_log.h.patch 
+
+---

New:

  csync_log.h.patch



Other differences:
--
++ csync.spec ++
--- /var/tmp/diff_new_pack.ssEop9/_old  2015-06-30 10:19:49.0 +0200
+++ /var/tmp/diff_new_pack.ssEop9/_new  2015-06-30 10:19:49.0 +0200
@@ -38,6 +38,7 @@
 Source1:baselibs.conf
 # PATCH-FIX-OPENSUSE fix-cmake-on-pre-12.patch
 Patch0: fix-cmake-on-pre-12.patch
+Patch1: csync_log.h.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -124,6 +125,7 @@
 %if 0%{?suse_version}  1200
 %patch0 -p1
 %endif
+%patch1 -p1
 
 %build
 if test ! -e build; then

++ csync_log.h.patch ++
--- csync-0.50.0/src/csync_log.h.orig   2015-06-29 15:57:08.826492622 +0100
+++ csync-0.50.0/src/csync_log.h2015-06-29 15:57:44.362460929 +0100
@@ -55,7 +55,7 @@
 };
 
 #define CSYNC_LOG(priority, ...) \
-  csync_log(priority, __FUNCTION__, __VA_ARGS__)
+  csync_log(priority, __func__, __VA_ARGS__)
 
 void csync_log(int verbosity,
const char *function,



commit opera for openSUSE:Factory:NonFree

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package opera for openSUSE:Factory:NonFree 
checked in at 2015-06-30 10:19:56

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


Package is opera

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/opera/opera.changes  2015-06-23 
12:01:14.0 +0200
+++ /work/SRC/openSUSE:Factory:NonFree/.opera.new/opera.changes 2015-06-30 
10:20:02.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 25 13:45:03 UTC 2015 - baiduzhyi.de...@gmail.com
+
+- Update to version 30.0.1835.88.
+
+---

Old:

  opera-stable_30.0.1835.59_amd64.deb

New:

  opera-stable_30.0.1835.88_amd64.deb



Other differences:
--
++ opera.spec ++
--- /var/tmp/diff_new_pack.CahJ1h/_old  2015-06-30 10:20:03.0 +0200
+++ /var/tmp/diff_new_pack.CahJ1h/_new  2015-06-30 10:20:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   opera
-Version:30.0.1835.59
+Version:30.0.1835.88
 Release:0
 Summary:Proprietary web browser
 License:SUSE-NonFree




commit darktable for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package darktable for openSUSE:Factory 
checked in at 2015-06-30 10:19:54

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


Package is darktable

Changes:

--- /work/SRC/openSUSE:Factory/darktable/darktable.changes  2015-05-05 
00:56:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.darktable.new/darktable.changes 2015-06-30 
10:19:56.0 +0200
@@ -1,0 +2,51 @@
+Tue Jun 30 00:20:08 UTC 2015 - mrueck...@suse.de
+
+- Update to version 1.6.7 (boo #930683)
+  - security
+- libraw CVE-2015-3885: fix integer overflow in ljpeg_start()
+  - miscellaneous
+- improvements to facebook export
+- interpolation fixups
+- demosaic code cleanups
+- slideshow should handle very small images better
+- improve Olympus lens detection
+- various minor memory leak fixes
+- various other fixes
+- Pentax (K-x) DNG old embedded preview left over is now
+  removed
+- modern OSX display profile handling
+  - camera support
+- Nikon D7200 (both 12bit and 14bit compressed NEFs)
+- Nikon Coolpix P340
+- Canon EOS 750D
+- Canon EOS 760D
+- Canon EOS M2
+- Panasonic DMC-CM1
+- Panasonic DMC-GF7 (4:3 only)
+- Olympus XZ-10
+- Olympus SP570UZ
+- Samsung NX500
+- Fuji F600EXR
+  - aspect ratios
+- Pansonic DMC-G5
+- Panasonic DMC-GM5
+- Panasonic FZ200
+  - white balance presets
+- Nikon D7200
+- Nikon Coolpix P340
+- Panasonic DMC-GM1
+- Panasonic DMC-GM5
+- Olympus E-M10 (updated)
+- Olympus E-PL7
+- Olympus XZ-10
+  - noise profiles
+- Canon Powershot G9
+- Sony A350
+  - basecurves
+- Nikon D7200
+- Nikon D7000
+- Nikon D750
+- Nikon D90
+  - translations updates: Catalan German Spanish Swedish
+
+---

Old:

  darktable-1.6.6-nopatents.tar.xz

New:

  darktable-1.6.7-nopatents.tar.xz



Other differences:
--
++ darktable.spec ++
--- /var/tmp/diff_new_pack.eerymd/_old  2015-06-30 10:19:58.0 +0200
+++ /var/tmp/diff_new_pack.eerymd/_new  2015-06-30 10:19:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   darktable
-Version:1.6.6
+Version:1.6.7
 Release:0
 Url:http://darktable.sourceforge.net
 # darktable contains patented code that we cannot ship.  Therefore we use

++ darktable-1.6.6-nopatents.tar.xz - darktable-1.6.7-nopatents.tar.xz 
++
 20478 lines of diff (skipped)




commit perl-Params-Validate for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package perl-Params-Validate for 
openSUSE:Factory checked in at 2015-06-30 10:19:09

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


Package is perl-Params-Validate

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Params-Validate/perl-Params-Validate.changes
2015-06-15 17:50:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Params-Validate.new/perl-Params-Validate.changes
   2015-06-30 10:19:10.0 +0200
@@ -1,0 +2,22 @@
+Mon Jun 29 01:27:01 UTC 2015 - co...@suse.com
+
+- updated to 1.20
+   see /usr/share/doc/packages/perl-Params-Validate/Changes
+
+  1.202015-06-28
+  
+  - Fixed a bug with stack handling in the XS code. If a callback sub caused
+Perl to reallocate the stack this could trigger weird errors of the form
+Bizarre copy of ARRAY from Perl itself. Fixed by Noel Maddy. GH #5.
+  
+  - Fixed use of inlining in the XS code to work when gcc -std=c89 is
+specified. Fixed by Vincent Pit. GH #6.
+  
+  - Previously, Params::Validate would eagerly stringify all values it was
+validating, even though this stringification was only needed for error
+messages that are used when a parameter fails. For objects which overload
+stringification and do real work, this added an unnecessary
+slowdown. Stringification is now delayed until it is needed. Reported by
+Klaus. RT #105326.
+
+---

Old:

  Params-Validate-1.19.tar.gz

New:

  Params-Validate-1.20.tar.gz



Other differences:
--
++ perl-Params-Validate.spec ++
--- /var/tmp/diff_new_pack.LDzxtv/_old  2015-06-30 10:19:11.0 +0200
+++ /var/tmp/diff_new_pack.LDzxtv/_new  2015-06-30 10:19:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Params-Validate
-Version:1.19
+Version:1.20
 Release:0
 %define cpan_name Params-Validate
 Summary:Validate method/function parameters

++ Params-Validate-1.19.tar.gz - Params-Validate-1.20.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Params-Validate-1.19/Build.PL 
new/Params-Validate-1.20/Build.PL
--- old/Params-Validate-1.19/Build.PL   2015-06-13 05:49:43.0 +0200
+++ new/Params-Validate-1.20/Build.PL   2015-06-28 16:34:36.0 +0200
@@ -20,7 +20,7 @@
 Ilya Martynov ilya\@martynov.org
   ],
   dist_name = Params-Validate,
-  dist_version = 1.19,
+  dist_version = 1.20,
   license = artistic_2,
   module_name = Params::Validate,
   recommends = {},
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Params-Validate-1.19/Changes 
new/Params-Validate-1.20/Changes
--- old/Params-Validate-1.19/Changes2015-06-13 05:49:43.0 +0200
+++ new/Params-Validate-1.20/Changes2015-06-28 16:34:36.0 +0200
@@ -1,3 +1,20 @@
+1.202015-06-28
+
+- Fixed a bug with stack handling in the XS code. If a callback sub caused
+  Perl to reallocate the stack this could trigger weird errors of the form
+  Bizarre copy of ARRAY from Perl itself. Fixed by Noel Maddy. GH #5.
+
+- Fixed use of inlining in the XS code to work when gcc -std=c89 is
+  specified. Fixed by Vincent Pit. GH #6.
+
+- Previously, Params::Validate would eagerly stringify all values it was
+  validating, even though this stringification was only needed for error
+  messages that are used when a parameter fails. For objects which overload
+  stringification and do real work, this added an unnecessary
+  slowdown. Stringification is now delayed until it is needed. Reported by
+  Klaus. RT #105326.
+
+
 1.192015-06-12
 
 - Fixed an uninitialized value warning from the pure Perl implementation under
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Params-Validate-1.19/MANIFEST 
new/Params-Validate-1.20/MANIFEST
--- old/Params-Validate-1.19/MANIFEST   2015-06-13 05:49:43.0 +0200
+++ new/Params-Validate-1.20/MANIFEST   2015-06-28 16:34:36.0 +0200
@@ -120,5 +120,6 @@
 t/release-synopsis.t
 t/release-xs-is-loaded.t
 t/release-xs-segfault.t
+t/release-xs-stack-realloc.t
 tidyall.ini
 weaver.ini
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Params-Validate-1.19/META.json 
new/Params-Validate-1.20/META.json
--- old/Params-Validate-1.19/META.json  2015-06-13 05:49:43.0 +0200
+++ new/Params-Validate-1.20/META.json  2015-06-28 16:34:36.0 +0200
@@ -85,23 +85,23 @@
provides : {
   Attribute::Params::Validate : {
  file : lib/Attribute/Params/Validate.pm,

commit perl-Path-Tiny for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package perl-Path-Tiny for openSUSE:Factory 
checked in at 2015-06-30 10:19:11

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


Package is perl-Path-Tiny

Changes:

--- /work/SRC/openSUSE:Factory/perl-Path-Tiny/perl-Path-Tiny.changes
2015-04-15 16:23:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Path-Tiny.new/perl-Path-Tiny.changes   
2015-06-30 10:19:12.0 +0200
@@ -1,0 +2,21 @@
+Mon Jun 29 01:27:23 UTC 2015 - co...@suse.com
+
+- updated to 0.070
+   see /usr/share/doc/packages/perl-Path-Tiny/Changes
+
+  0.070 2015-06-28 13:50:16-04:00 America/New_York
+  
+  - No changes from 0.069
+  
+  0.069 2015-06-18 18:09:44-04:00 America/New_York (TRIAL RELEASE)
+  
+  [CHANGED]
+  
+  - The 'copy' menthod now returns the object for the copied file
+  
+  [FIXED]
+  
+  - The 'visit' method only dereferences the callback return value
+for scalar refs, avoiding some common bugs
+
+---

Old:

  Path-Tiny-0.068.tar.gz

New:

  Path-Tiny-0.070.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Path-Tiny.spec ++
--- /var/tmp/diff_new_pack.82GXie/_old  2015-06-30 10:19:13.0 +0200
+++ /var/tmp/diff_new_pack.82GXie/_new  2015-06-30 10:19:13.0 +0200
@@ -17,14 +17,15 @@
 
 
 Name:   perl-Path-Tiny
-Version:0.068
+Version:0.070
 Release:0
 %define cpan_name Path-Tiny
 Summary:File path utility
 License:Apache-2.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Path-Tiny/
-Source: 
http://www.cpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -81,6 +82,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING.mkdn LICENSE perlcritic.rc README
+%doc Changes CONTRIBUTING.mkdn LICENSE README
 
 %changelog

++ Path-Tiny-0.068.tar.gz - Path-Tiny-0.070.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Path-Tiny-0.068/Changes new/Path-Tiny-0.070/Changes
--- old/Path-Tiny-0.068/Changes 2015-03-24 01:43:17.0 +0100
+++ new/Path-Tiny-0.070/Changes 2015-06-28 19:50:34.0 +0200
@@ -1,5 +1,20 @@
 Revision history for Path-Tiny
 
+0.070 2015-06-28 13:50:16-04:00 America/New_York
+
+- No changes from 0.069
+
+0.069 2015-06-18 18:09:44-04:00 America/New_York (TRIAL RELEASE)
+
+[CHANGED]
+
+- The 'copy' menthod now returns the object for the copied file
+
+[FIXED]
+
+- The 'visit' method only dereferences the callback return value
+  for scalar refs, avoiding some common bugs
+
 0.068 2015-03-23 20:42:56-04:00 America/New_York
 
 [META]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Path-Tiny-0.068/MANIFEST new/Path-Tiny-0.070/MANIFEST
--- old/Path-Tiny-0.068/MANIFEST2015-03-24 01:43:17.0 +0100
+++ new/Path-Tiny-0.070/MANIFEST2015-06-28 19:50:34.0 +0200
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.034.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.037.
 CONTRIBUTING.mkdn
 Changes
 LICENSE
@@ -36,6 +36,7 @@
 t/rel-abs.t
 t/subsumes.t
 t/temp.t
+t/visit.t
 t/zz-atomic.t
 t/zzz-spec.t
 tidyall.ini
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Path-Tiny-0.068/META.json 
new/Path-Tiny-0.070/META.json
--- old/Path-Tiny-0.068/META.json   2015-03-24 01:43:17.0 +0100
+++ new/Path-Tiny-0.070/META.json   2015-06-28 19:50:34.0 +0200
@@ -4,7 +4,7 @@
   David Golden dagol...@cpan.org
],
dynamic_config : 0,
-   generated_by : Dist::Zilla version 5.034, CPAN::Meta::Converter version 
2.150001,
+   generated_by : Dist::Zilla version 5.037, CPAN::Meta::Converter version 
2.150005,
license : [
   apache_2_0
],
@@ -100,11 +100,11 @@
provides : {
   Path::Tiny : {
  file : lib/Path/Tiny.pm,
- version : 0.068
+ version : 0.070
   },
   Path::Tiny::Error : {
  file : lib/Path/Tiny.pm,
- version : 0.068
+ version : 0.070
   }
},
release_status : stable,
@@ -119,7 +119,7 @@
  web : https://github.com/dagolden/Path-Tiny;
   }
},
-   

commit mate-icon-theme for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package mate-icon-theme for openSUSE:Factory 
checked in at 2015-06-30 10:18:49

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


Package is mate-icon-theme

Changes:

--- /work/SRC/openSUSE:Factory/mate-icon-theme/mate-icon-theme.changes  
2014-03-22 18:01:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.mate-icon-theme.new/mate-icon-theme.changes 
2015-06-30 10:18:51.0 +0200
@@ -1,0 +2,26 @@
+Tue Jun  9 10:47:32 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 1.10.1:
+  * Add more regular icons.
+  * Update symbolic icons.
+- Spec cleanup.
+
+---
+Wed Apr 15 12:44:57 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 1.10.0
+  * No changes since version 1.9.1
+
+---
+Thu Jan 22 10:10:13 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 1.9.1 (unstable)
+  * Add symbolic icons for GTK3 compatibility
+
+---
+Sun Oct 26 14:39:52 UTC 2014 - p.drou...@gmail.com
+
+- Update to version 1.9.0 (unstable)
+  + no changes since version 1.8.0
+
+---

Old:

  mate-icon-theme-1.8.0.tar.xz

New:

  mate-icon-theme-1.10.1.tar.xz



Other differences:
--
++ mate-icon-theme.spec ++
--- /var/tmp/diff_new_pack.DYBqR4/_old  2015-06-30 10:18:52.0 +0200
+++ /var/tmp/diff_new_pack.DYBqR4/_new  2015-06-30 10:18:52.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for mate-icon-theme
+# spec file for package mate-icon-theme
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,24 +13,25 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
+%define _version 1.10
 Name:   mate-icon-theme
-Version:1.8.0
+Version:1.10.1
 Release:0
-License:LGPL-3.0 and CC-BY-3.0
 Summary:MATE icon theme
-Url:http://mate-desktop.org/
+License:LGPL-3.0 and CC-BY-3.0
 Group:  System/GUI/Other
-Source0:
http://pub.mate-desktop.org/releases/1.8/%{name}-%{version}.tar.xz
-BuildArch:  noarch
-Provides:   mate-icon-theme-devel = %{version}
-
+Url:http://mate-desktop.org/
+Source: 
http://pub.mate-desktop.org/releases/%{_version}/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  icon-naming-utils
-BuildRequires:  mate-common
+BuildRequires:  mate-common = 1.9.0
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(gtk+-2.0)
+Provides:   mate-icon-theme-devel = %{version}
+BuildArch:  noarch
 
 %description
 This package contains the default icon theme used by the MATE desktop.
@@ -46,15 +47,15 @@
 make %{?_smp_mflags}
 
 %install
-%makeinstall
-%fdupes -s %{buildroot}%{_datadir}/icons/mate
-%fdupes -s %{buildroot}%{_datadir}/icons/menta
+%make_install
+%fdupes %{buildroot}%{_datadir}/icons/mate/
+%fdupes %{buildroot}%{_datadir}/icons/menta/
 
 %files
-%defattr(-,root,root,-)
-%doc AUTHORS COPYING
-%{_datadir}/icons/mate
-%{_datadir}/icons/menta
+%defattr(-,root,root)
+%doc AUTHORS ChangeLog COPYING
+%{_datadir}/icons/mate/
+%{_datadir}/icons/menta/
 %{_datadir}/pkgconfig/mate-icon-theme.pc
 
 %changelog

++ mate-icon-theme-1.8.0.tar.xz - mate-icon-theme-1.10.1.tar.xz ++
/work/SRC/openSUSE:Factory/mate-icon-theme/mate-icon-theme-1.8.0.tar.xz 
/work/SRC/openSUSE:Factory/.mate-icon-theme.new/mate-icon-theme-1.10.1.tar.xz 
differ: char 25, line 1




commit ksh for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package ksh for openSUSE:Factory checked in 
at 2015-06-30 10:19:21

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


Package is ksh

Changes:

--- /work/SRC/openSUSE:Factory/ksh/ksh.changes  2014-08-03 15:36:20.0 
+0200
+++ /work/SRC/openSUSE:Factory/.ksh.new/ksh.changes 2015-06-30 
10:19:23.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 11 10:42:59 UTC 2015 - sch...@suse.de
+
+- cpp.patch: fix use of cc -E without -P
+
+---

New:

  cpp.patch



Other differences:
--
++ ksh.spec ++
--- /var/tmp/diff_new_pack.FO0P2B/_old  2015-06-30 10:19:24.0 +0200
+++ /var/tmp/diff_new_pack.FO0P2B/_new  2015-06-30 10:19:24.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ksh
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -134,6 +134,8 @@
 Patch37:ksh93-crashes.dif
 # PATCH-FIX-SUSE Strings in backticks cannot be longer than 65536 characters 
bnc#887320
 Patch38:ksh93-backticks.dif
+# PATCH-FIX-UPSTREAM fix use of cc -E without -P
+Patch39:cpp.patch
 Patch42:ksh-locale.patch
 
 %description
@@ -219,6 +221,7 @@
 %patch36
 %patch37
 #%patch38
+%patch39 -p1
 %patch42
 
 %build

++ cpp.patch ++
iffe depends on cc -E not inserting newlines between tokens

Index: ksh93/src/cmd/INIT/iffe.sh
===
--- ksh93.orig/src/cmd/INIT/iffe.sh
+++ ksh93/src/cmd/INIT/iffe.sh
@@ -3427,7 +3427,7 @@ $src
(eval $src) $nullin || e=1
;;
mac*|nomac*)
-   if  compile $cc -E $tmp.c 
$nullin $tmp.i
+   if  compile $cc -E -P 
$tmp.c $nullin $tmp.i
thensed -e '/[]*.*[ 
]*/!d' -e 's/[  ]*//g' -e 's/[]*//g' $tmp.i
elsee=1
fi
@@ -3718,7 +3718,7 @@ $inc
 \#define $v\ $v  \/* native $v */\
 \#endif\
 #endif  $tmp.c
-   if  compile $cc -E $tmp.c $nullin 
$tmp.i
+   if  compile $cc -E -P $tmp.c 
$nullin $tmp.i
thensed -e '/[]*.*[ 
]*/!d' -e 's/[  ]*//g' -e 's/[]*//g' $tmp.i  $tmp.t
if  test -s $tmp.t
thensuccess



commit calibre for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package calibre for openSUSE:Factory checked 
in at 2015-06-30 10:19:04

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


Package is calibre

Changes:

--- /work/SRC/openSUSE:Factory/calibre/calibre.changes  2015-06-06 
09:54:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.calibre.new/calibre.changes 2015-06-30 
10:19:06.0 +0200
@@ -1,0 +2,39 @@
+Sun Jun 28 17:23:35 UTC 2015 - corne...@solcon.nl
+
+- Update to version 2.31.0:
+  * New Features:
+- E-book viewer: Make the search engine used for searching for
+  selected text configurable (in the Miscellaneous section of
+  the viewer preferences).
+  * Bug Fixes:
+- E-book viewer: Fix dragging to select text with the mouse
+  causing the page to slide sideways in paged mode, if the
+  mouse leaves the text area.
+- E-book viewer: Fix transitioning between full screen mode and
+  normal mode sometimes causing current position to not be
+  preserved.
+- AZW3 Input: Ignore incorrect text encoding (incorrectly
+  encoded bytes are now replaced by placeholders) instead of
+  erroring out.
+- Get Books: Update Legimi and CDP store plugins for website
+  changes.
+- Fix Cybook Nolimbook not being detected in linux and OS X.
+- DOCX Output: Fix internal hyperlinks being ignored when they
+  point to a HTML file whose body element has an id.
+- Edit Book: Fix groups in replace template being interpreted
+  backwards when search direction is up.
+- Searching: When search as you type is active, do not change
+  automatically change focus to the book list when searching,
+  unless the user presses Enter.
+- Font subsetting: Fix subsetting removing some needed
+  ligatures when subsetting some Arabic fonts.
+- Prevent errors when testing email sending even if stderr on
+  the host machine is broken.
+  * New news sources:
+- Various Ukranian news sources by rpalyvoda
+  * Improved news sources:
+- Baltimore Sun
+- El Mercurio Chile
+- Sydney Morning Herald
+
+---

Old:

  calibre-2.30.0.tar.xz

New:

  calibre-2.31.0.tar.xz



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.kVA0Rg/_old  2015-06-30 10:19:08.0 +0200
+++ /var/tmp/diff_new_pack.kVA0Rg/_new  2015-06-30 10:19:08.0 +0200
@@ -20,7 +20,7 @@
 License:GPL-3.0
 Group:  Productivity/Other
 Name:   calibre
-Version:2.30.0
+Version:2.31.0
 Release:0
 Url:http://calibre-ebook.com
 Source0:
http://download.calibre-ebook.com/%{version}/calibre-%{version}.tar.xz

++ calibre-2.30.0.tar.xz - calibre-2.31.0.tar.xz ++
/work/SRC/openSUSE:Factory/calibre/calibre-2.30.0.tar.xz 
/work/SRC/openSUSE:Factory/.calibre.new/calibre-2.31.0.tar.xz differ: char 26, 
line 1





commit ghc-hashable for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package ghc-hashable for openSUSE:Factory 
checked in at 2015-06-30 10:19:02

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


Package is ghc-hashable

Changes:

--- /work/SRC/openSUSE:Factory/ghc-hashable/ghc-hashable.changes
2015-05-21 08:11:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-hashable.new/ghc-hashable.changes   
2015-06-30 10:19:04.0 +0200
@@ -1,0 +2,6 @@
+Sun Jun 28 16:43:54 UTC 2015 - mimi...@gmail.com
+
+- update to 1.2.3.3
+* Support integer-simple.
+
+---

Old:

  _service
  hashable-1.2.3.2.tar.gz

New:

  hashable-1.2.3.3.tar.gz



Other differences:
--
++ ghc-hashable.spec ++
--- /var/tmp/diff_new_pack.EKsAFl/_old  2015-06-30 10:19:05.0 +0200
+++ /var/tmp/diff_new_pack.EKsAFl/_new  2015-06-30 10:19:05.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name hashable
 
 Name:   ghc-hashable
-Version:1.2.3.2
+Version:1.2.3.3
 Release:0
 Summary:A class for types that can be converted to a hash value
 License:BSD-3-Clause

++ hashable-1.2.3.2.tar.gz - hashable-1.2.3.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hashable-1.2.3.2/CHANGES.md 
new/hashable-1.2.3.3/CHANGES.md
--- old/hashable-1.2.3.2/CHANGES.md 2015-03-16 07:12:09.0 +0100
+++ new/hashable-1.2.3.3/CHANGES.md 2015-06-26 08:04:55.0 +0200
@@ -1,3 +1,7 @@
+## Version 1.2.3.3
+
+ * Support integer-simple.
+
 ## Version 1.2.3.2
 
  * Add support for GHC 7.10 typeRepFingerprint
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hashable-1.2.3.2/Data/Hashable/Class.hs 
new/hashable-1.2.3.3/Data/Hashable/Class.hs
--- old/hashable-1.2.3.2/Data/Hashable/Class.hs 2015-03-16 07:12:09.0 
+0100
+++ new/hashable-1.2.3.3/Data/Hashable/Class.hs 2015-06-26 08:04:55.0 
+0200
@@ -90,9 +90,14 @@
 #endif
 
 #ifdef VERSION_integer_gmp
+
+# if MIN_VERSION_integer_gmp(1,0,0)
+#  define MIN_VERSION_integer_gmp_1_0_0
+# endif
+
 import GHC.Exts (Int(..))
 import GHC.Integer.GMP.Internals (Integer(..))
-# if MIN_VERSION_integer_gmp(1,0,0)
+# if defined(MIN_VERSION_integer_gmp_1_0_0)
 import GHC.Exts (sizeofByteArray#)
 import GHC.Integer.GMP.Internals (BigNat(BN#))
 # endif
@@ -253,20 +258,18 @@
 hash = fromEnum
 hashWithSalt = defaultHashWithSalt
 
-#if defined(VERSION_integer_gmp)
-# if MIN_VERSION_integer_gmp(1,0,0)
+#if defined(MIN_VERSION_integer_gmp_1_0_0)
 instance Hashable BigNat where
 hashWithSalt salt (BN# ba) = hashByteArrayWithSalt ba 0 numBytes salt
  `hashWithSalt` size
   where
 size = numBytes `quot` SIZEOF_HSWORD
 numBytes = I# (sizeofByteArray# ba)
-# endif
 #endif
 
 #if MIN_VERSION_base(4,8,0)
 instance Hashable Natural where
-# if MIN_VERSION_integer_gmp(1,0,0)
+# if defined(MIN_VERSION_integer_gmp_1_0_0)
 hash (NatS# n)   = hash (W# n)
 hash (NatJ# bn)  = hash bn
 
@@ -281,7 +284,7 @@
 
 instance Hashable Integer where
 #if defined(VERSION_integer_gmp)
-# if MIN_VERSION_integer_gmp(1,0,0)
+# if defined(MIN_VERSION_integer_gmp_1_0_0)
 hash (S# n)   = (I# n)
 hash (Jp# bn) = hash bn
 hash (Jn# bn) = negate (hash bn)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hashable-1.2.3.2/hashable.cabal 
new/hashable-1.2.3.3/hashable.cabal
--- old/hashable-1.2.3.2/hashable.cabal 2015-03-16 07:12:09.0 +0100
+++ new/hashable-1.2.3.3/hashable.cabal 2015-06-26 08:04:55.0 +0200
@@ -1,5 +1,5 @@
 Name:hashable
-Version: 1.2.3.2
+Version: 1.2.3.3
 Synopsis:A class for types that can be converted to a hash value
 Description: This package defines a class, 'Hashable', for types that
  can be converted to a hash value.  This class




commit rubygem-activesupport-4_2 for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activesupport-4_2 for 
openSUSE:Factory checked in at 2015-06-30 10:19:06

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


Package is rubygem-activesupport-4_2

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activesupport-4_2/rubygem-activesupport-4_2.changes
  2015-06-23 11:56:09.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activesupport-4_2.new/rubygem-activesupport-4_2.changes
 2015-06-30 10:19:08.0 +0200
@@ -1,0 +2,16 @@
+Fri Jun 26 04:32:28 UTC 2015 - co...@suse.com
+
+- updated to version 4.2.3
+ see installed CHANGELOG.md
+
+  ## Rails 4.2.3 (June 25, 2015) ##
+  
+  *   Fix a range of values for parameters of the Time#change
+  
+  *Nikolay Kondratyev*
+  
+  *   Add some missing `require 'active_support/deprecation'`
+  
+  *Akira Matsuda*
+
+---

Old:

  activesupport-4.2.2.gem

New:

  activesupport-4.2.3.gem



Other differences:
--
++ rubygem-activesupport-4_2.spec ++
--- /var/tmp/diff_new_pack.7xyWxW/_old  2015-06-30 10:19:09.0 +0200
+++ /var/tmp/diff_new_pack.7xyWxW/_new  2015-06-30 10:19:09.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-activesupport-4_2
-Version:4.2.2
+Version:4.2.3
 Release:0
 %define mod_name activesupport
 %define mod_full_name %{mod_name}-%{version}

++ activesupport-4.2.2.gem - activesupport-4.2.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2015-06-16 20:01:34.0 +0200
+++ new/CHANGELOG.md2015-06-25 23:28:54.0 +0200
@@ -1,3 +1,14 @@
+## Rails 4.2.3 (June 25, 2015) ##
+
+*   Fix a range of values for parameters of the Time#change
+
+*Nikolay Kondratyev*
+
+*   Add some missing `require 'active_support/deprecation'`
+
+*Akira Matsuda*
+
+
 ## Rails 4.2.2 (June 16, 2015) ##
 
 *   Fix XSS vulnerability in `ActiveSupport::JSON.encode` method.
@@ -13,7 +24,7 @@
 *Aaron Patterson*
 
 
-## Rails 4.2.1 (March 19, 2014) ##
+## Rails 4.2.1 (March 19, 2015) ##
 
 *   Fixed a problem where String#truncate_words would get stuck with a complex
 string.
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_support/cache.rb 
new/lib/active_support/cache.rb
--- old/lib/active_support/cache.rb 2015-06-16 20:01:34.0 +0200
+++ new/lib/active_support/cache.rb 2015-06-25 23:28:54.0 +0200
@@ -562,7 +562,7 @@
 def handle_expired_entry(entry, key, options)
   if entry  entry.expired?
 race_ttl = options[:race_condition_ttl].to_i
-if race_ttl  (Time.now.to_f - entry.expires_at = race_ttl)
+if (race_ttl  0)  (Time.now.to_f - entry.expires_at = race_ttl)
   # When an entry has :race_condition_ttl defined, put the stale 
entry back into the cache
   # for a brief period while the entry is begin recalculated.
   entry.expires_at = Time.now + race_ttl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_support/callbacks.rb 
new/lib/active_support/callbacks.rb
--- old/lib/active_support/callbacks.rb 2015-06-16 20:01:34.0 +0200
+++ new/lib/active_support/callbacks.rb 2015-06-25 23:28:54.0 +0200
@@ -78,14 +78,10 @@
 # save
 #   end
 def run_callbacks(kind, block)
-  send _run_#{kind}_callbacks, block
-end
-
-private
+  callbacks = send(_#{kind}_callbacks)
 
-def _run_callbacks(callbacks, block)
   if callbacks.empty?
-block.call if block
+yield if block_given?
   else
 runner = callbacks.compile
 e = Filters::Environment.new(self, false, nil, block)
@@ -93,6 +89,8 @@
   end
 end
 
+private
+
 # A hook invoked every time a before callback is halted.
 # This can be overridden in AS::Callback implementors in order
 # to provide better debugging/logging.
@@ -636,10 +634,12 @@
   #
   # = Options
   #
-  # * tt:if/tt - A symbol naming an instance method or a proc; the
-  #   callback will be called only when it returns a +true+ value.
-  # * tt:unless/tt - A symbol naming an instance method or a proc; the
-  #   callback will be called only when it returns a +false+ value.
+  # * tt:if/tt - A symbol, a string or an array of symbols and strings,
+  #   each naming an 

commit perl-Number-Format for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package perl-Number-Format for 
openSUSE:Factory checked in at 2015-06-30 10:19:16

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


Package is perl-Number-Format

Changes:

--- /work/SRC/openSUSE:Factory/perl-Number-Format/perl-Number-Format.changes
2013-04-22 14:31:19.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Number-Format.new/perl-Number-Format.changes   
2015-06-30 10:19:18.0 +0200
@@ -1,0 +2,27 @@
+Mon Jun 29 01:24:48 UTC 2015 - co...@suse.com
+
+- updated to 1.75
+   see /usr/share/doc/packages/perl-Number-Format/CHANGES
+
+  Changes for version 1.75 (June 25, 2015)
+  
+- Export only necessary from POSIX (RT#99970, thanks Alexandr Ciornii)
+- Upgrade Makefile.PL (thanks Alexandr Ciornii)
+- Fix testing issue with missing locales (RT 97607, 97766, thanks to KHW)
+  (thanks David Solimano)
+- Fix testing issue with bad Russian data on some platforms (RT 92666)
+  (thanks David Solimano)
+- Add t/bigfloat.t (thanks Paul Miller / Alexandr Ciornii)
+  
+  Changes for version 1.74 (April 19, 2011)
+  
+- Only Perl 5.10.0 and newer supported
+- Allow multi-character (e.g. nbsp; for thousands_sep) (thanks
+  Nick Patch; RT 65489)
+- Strip out illegal negative values returned by localeconv(),
+  observed on Windows - see @IGNORE_NEGATIVE (thanks Adam Kennedy;
+  RT 56802)
+- Manage warnings when undef is passed to methods (RT 48038)
+- Fix round() for Math::BigFloat objects (RT 62059)
+
+---

Old:

  Number-Format-1.73.tar.gz

New:

  Number-Format-1.75.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Number-Format.spec ++
--- /var/tmp/diff_new_pack.RTsYFC/_old  2015-06-30 10:19:18.0 +0200
+++ /var/tmp/diff_new_pack.RTsYFC/_new  2015-06-30 10:19:18.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Number-Format
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,20 +17,19 @@
 
 
 Name:   perl-Number-Format
-Version:1.73
+Version:1.75
 Release:0
 %define cpan_name Number-Format
 Summary:Perl extension for formatting numbers
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Number-Format/
-Source: 
http://www.cpan.org/authors/id/W/WR/WRW/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/W/WR/WRW/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
-%if 0%{?suse_version} = 1130
 BuildRequires:  perl-macros
-%endif
 %{perl_requires}
 
 %description
@@ -40,7 +39,26 @@
 There are two ways to use this package. One is to declare an object of type
 Number::Format, which you can think of as a formatting engine. The various
 functions defined here are provided as object methods. The constructor
-'new()' can be used to set the parameters of the formatting engine. 
+'new()' can be used to set the parameters of the formatting engine. Valid
+parameters are:
+
+  THOUSANDS_SEP - character inserted between groups of 3 digits
+  DECIMAL_POINT - character separating integer and fractional parts
+  MON_THOUSANDS_SEP - like THOUSANDS_SEP, but used for format_price
+  MON_DECIMAL_POINT - like DECIMAL_POINT, but used for format_price
+  INT_CURR_SYMBOL   - character(s) denoting currency (see format_price())
+  DECIMAL_DIGITS- number of digits to the right of dec point (def 2)
+  DECIMAL_FILL  - boolean; whether to add zeroes to fill out decimal
+  NEG_FORMAT- format to display negative numbers (def ``-x'')
+  KILO_SUFFIX   - suffix to add when format_bytes formats kilobytes (trad)
+  MEGA_SUFFIX   -   megabytes (trad)
+  GIGA_SUFFIX   -   gigabytes (trad)
+  KIBI_SUFFIX   - suffix to add when format_bytes formats kibibytes (iec)
+  MEBI_SUFFIX   -   mebibytes (iec)
+  GIBI_SUFFIX   -   gibibytes (iec)
+
+They may be specified in upper or lower case, with or without a leading
+hyphen ( - ).
 
 %prep
 %setup -q -n %{cpan_name}-%{version}

++ 

commit mozc for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package mozc for openSUSE:Factory checked in 
at 2015-06-30 10:18:55

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


Package is mozc

Changes:

--- /work/SRC/openSUSE:Factory/mozc/mozc.changes2015-03-05 
18:17:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.mozc.new/mozc.changes   2015-06-30 
10:18:56.0 +0200
@@ -1,0 +2,9 @@
+Sun Jun 28 09:32:07 UTC 2015 - i...@marguerite.su
+
+- add fcitx-mozc-2.16.2037.102.2.patch
+- add mozc-ninja-verbose-build.patch
+- update gyp 20150628
+- use-libprotobuf=0 for internal protobuf to workaround system
+  one's symbol undefined errors caused by gcc-5
+
+---

Old:

  fcitx-mozc-20140713.tar.bz2
  gyp-r2012.tar.xz

New:

  fcitx-mozc-2.16.2037.102.2.patch
  gyp-20150628.tar.xz
  mozc-ninja-verbose-build.patch



Other differences:
--
++ mozc.spec ++
--- /var/tmp/diff_new_pack.Qb9YoS/_old  2015-06-30 10:18:57.0 +0200
+++ /var/tmp/diff_new_pack.Qb9YoS/_new  2015-06-30 10:18:57.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mozc
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -43,8 +43,8 @@
 
 # gyp is not included from 1.11.1522.102
 # License: BSD-3-Clause
-# svn export http://gyp.googlecode.com/svn/trunk/@r2012 gyp
-Source3:gyp-r2012.tar.xz
+# git clone https://chromium.googlesource.com/external/gyp
+Source3:gyp-20150628.tar.xz
 #
 Source4:ibus-setup-mozc-jp.desktop.in
 #
@@ -62,14 +62,16 @@
 %if %{with_fcitx}
 # add fcitx as mozc module
 # License: BSD-3-Clause
-Source20:   fcitx-mozc-20140713.tar.bz2
+Patch:  fcitx-mozc-2.16.2037.102.2.patch
 Source21:   fcitx-mozc-icons.tar.gz
 %endif
 
 # PATCH-FEATURE-OPENSUSE ft...@geeko.jp
-Patch3: ibus-provide-layout-variations.patch
-
+Patch1: ibus-provide-layout-variations.patch
+# PATCH-FIX-UPSTREAM marguer...@opensuse.org
+Patch2: mozc-ninja-verbose-build.patch
 
+BuildRequires:  llvm-clang
 BuildRequires:  ninja = 1.4
 BuildRequires:  pkgconfig
 BuildRequires:  protobuf-devel
@@ -77,7 +79,6 @@
 BuildRequires:  unzip
 BuildRequires:  update-desktop-files
 BuildRequires:  zlib-devel
-BuildRequires:  llvm-clang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -140,7 +141,13 @@
 %prep
 %setup -q
 
-%patch3 -p0
+# extract fcitx-mozc
+%if %{with_fcitx}
+%patch -p2
+%endif
+
+%patch1 -p0
+%patch2 -p1
 
 cp %{SOURCE1} .
 
@@ -152,13 +159,6 @@
 tar xvf %{SOURCE5}
 popd
 
-# extract fcitx-mozc
-%if %{with_fcitx}
-pushd unix
-tar xvf %{SOURCE20}
-popd
-%endif
-
 # fix installation path
 sed -e 's|@libdir@|%{_libdir}|g' %{SOURCE4}  ibus-setup-mozc-jp.desktop
 
@@ -177,7 +177,7 @@
 # gyp inserts -Wall to the head of release_extra_flags.
 flags=${RPM_OPT_FLAGS/-Wall/}
 
-export GYP_DEFINES='ibus_mozc_path=%{ibus_mozc_path} 
ibus_mozc_icon_path=%{ibus_mozc_icon_path} use_libprotobuf=1 
document_dir=%{document_dir} zinnia_model_file=%{zinnia_model_path} 
release_extra_cflags='$flags''
+export GYP_DEFINES='ibus_mozc_path=%{ibus_mozc_path} 
ibus_mozc_icon_path=%{ibus_mozc_icon_path} use_libprotobuf=0 
document_dir=%{document_dir} zinnia_model_file=%{zinnia_model_path} 
release_extra_cflags='$flags''
 
 python build_mozc.py gyp --server_dir=%{_libdir}/mozc
 python build_mozc.py build -c %{target}  %{?_smp_mflags} \

++ fcitx-mozc-2.16.2037.102.2.patch ++
 3951 lines (skipped)

++ gyp-r2012.tar.xz - gyp-20150628.tar.xz ++
 11421 lines of diff (skipped)



++ mozc-ninja-verbose-build.patch ++
Index: mozc-2.16.2037.102/build_mozc.py
===
--- mozc-2.16.2037.102.orig/build_mozc.py
+++ mozc-2.16.2037.102/build_mozc.py
@@ -1022,7 +1022,7 @@ def BuildOnLinux(options, targets, unuse
  GetMozcVersion().GetTargetPlatform())
   make_command = ninja
   build_args = ['-j %s' % options.jobs,
-'-C', '%s/%s' % (short_basename, options.configuration)]
+'-C', '%s/%s' % (short_basename, options.configuration), '-v']
   RunOrDie([make_command] + build_args + target_names)
 
 



  1   2   >