commit fail2ban for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package fail2ban for openSUSE:13.1:Update 
checked in at 2014-12-02 07:35:52

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


Package is "fail2ban"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.TYTNLi/_old  2014-12-02 07:35:53.0 +0100
+++ /var/tmp/diff_new_pack.TYTNLi/_new  2014-12-02 07:35:53.0 +0100
@@ -1 +1 @@
-
+

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



commit python3-Markdown for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python3-Markdown for 
openSUSE:Factory checked in at 2014-12-01 14:01:41

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


Package is "python3-Markdown"

Changes:

--- /work/SRC/openSUSE:Factory/python3-Markdown/python3-Markdown.changes
2014-10-05 20:33:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-Markdown.new/python3-Markdown.changes   
2014-12-01 14:02:09.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 24 17:38:26 UTC 2014 - benoit.mo...@gmx.fr
+
+- update to version 2.5.2: bugfix release
+
+---

Old:

  Markdown-2.5.1.tar.gz

New:

  Markdown-2.5.2.tar.gz



Other differences:
--
++ python3-Markdown.spec ++
--- /var/tmp/diff_new_pack.Us5mdJ/_old  2014-12-01 14:02:10.0 +0100
+++ /var/tmp/diff_new_pack.Us5mdJ/_new  2014-12-01 14:02:10.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-Markdown
-Version:2.5.1
+Version:2.5.2
 Release:0
 Summary:Python implementation of Markdown
 License:BSD-3-Clause

++ Markdown-2.5.1.tar.gz -> Markdown-2.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Markdown-2.5.1/PKG-INFO new/Markdown-2.5.2/PKG-INFO
--- old/Markdown-2.5.1/PKG-INFO 2014-09-27 00:40:21.0 +0200
+++ new/Markdown-2.5.2/PKG-INFO 2014-11-20 03:13:55.0 +0100
@@ -1,12 +1,12 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: Markdown
-Version: 2.5.1
+Version: 2.5.2
 Summary: Python implementation of Markdown.
 Home-page: https://pythonhosted.org/Markdown/
 Author: Waylan Limberg
 Author-email: waylan [at] gmail.com
 License: BSD License
-Download-URL: 
http://pypi.python.org/packages/source/M/Markdown/Markdown-2.5.1.tar.gz
+Download-URL: 
http://pypi.python.org/packages/source/M/Markdown/Markdown-2.5.2.tar.gz
 Description: This is a Python implementation of John Gruber's Markdown_. 
 It is almost completely compliant with the reference implementation,
 though there are a few known issues. See Features_ for information 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Markdown-2.5.1/docs/extensions/nl2br.txt 
new/Markdown-2.5.2/docs/extensions/nl2br.txt
--- old/Markdown-2.5.1/docs/extensions/nl2br.txt2014-09-13 
02:32:11.0 +0200
+++ new/Markdown-2.5.2/docs/extensions/nl2br.txt2014-11-03 
05:43:58.0 +0100
@@ -23,7 +23,7 @@
 ... Line 1
 ... Line 2
 ... """
->>> html = markdown.markdown(text, extensions=['nl2br'])
+>>> html = markdown.markdown(text, 
extensions=['markdown.extensions.nl2br'])
 >>> print html
 Line 1
 Line 2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Markdown-2.5.1/markdown/__init__.py 
new/Markdown-2.5.2/markdown/__init__.py
--- old/Markdown-2.5.1/markdown/__init__.py 2014-09-26 04:31:04.0 
+0200
+++ new/Markdown-2.5.2/markdown/__init__.py 2014-11-14 04:18:21.0 
+0100
@@ -180,7 +180,7 @@
 ext = self.build_extension(ext, configs.get(ext, {}))
 if isinstance(ext, Extension):
 ext.extendMarkdown(self, globals())
-logger.info('Successfully loaded extension "%s.%s".' 
+logger.debug('Successfully loaded extension "%s.%s".' 
 % (ext.__class__.__module__, 
ext.__class__.__name__))
 elif ext is not None:
 raise TypeError(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Markdown-2.5.1/markdown/__version__.py 
new/Markdown-2.5.2/markdown/__version__.py
--- old/Markdown-2.5.1/markdown/__version__.py  2014-09-27 00:31:53.0 
+0200
+++ new/Markdown-2.5.2/markdown/__version__.py  2014-11-20 03:04:29.0 
+0100
@@ -5,7 +5,7 @@
 # (major, minor, micro, alpha/beta/rc/final, #)
 # (1, 1, 2, 'alpha', 0) => "1.1.2.dev"
 # (1, 2, 0, 'beta', 2) => "1.2b2"
-version_info = (2, 5, 1, 'final', 0)
+version_info = (2, 5, 2, 'final', 0)
 
 def _get_version():
 " Returns a PEP 386-compliant version number from version_info. "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Markdown-2.5.1/markdown/extensions/codehilite.py 
new/Markdown-2.5.2/markdown/extensions/codehilite.py
--- old/Markdown-2.5.1/markdown/extensions/codehilite.py2014-08-26 
03:30:47.0 +0200
+++ new/Markdown-2.5.2/markdown/extensions/codehilite.py2014-11-03 
05:43:58.0 +0100
@@ -22,8 +22,8 @

commit eric5 for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package eric5 for openSUSE:Factory checked 
in at 2014-12-01 14:01:35

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


Package is "eric5"

Changes:

--- /work/SRC/openSUSE:Factory/eric5/eric5.changes  2014-11-02 
16:46:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.eric5.new/eric5.changes 2014-12-01 
14:02:02.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov 30 22:05:00 UTC 2014 - ter...@gmail.com
+
+- Update to 5.5.1
+  - bug fixes
+- add eric5-desktop_encoding.patch 
+
+---

Old:

  eric5-5.5.0.tar.gz
  eric5-i18n-cs-5.5.0.tar.gz
  eric5-i18n-de-5.5.0.tar.gz
  eric5-i18n-en-5.5.0.tar.gz
  eric5-i18n-es-5.5.0.tar.gz
  eric5-i18n-fr-5.5.0.tar.gz
  eric5-i18n-it-5.5.0.tar.gz
  eric5-i18n-ru-5.5.0.tar.gz
  eric5-i18n-tr-5.5.0.tar.gz
  eric5-i18n-zh_CN.GB2312-5.5.0.tar.gz

New:

  eric5-5.5.1.tar.gz
  eric5-desktop_encoding.patch
  eric5-i18n-cs-5.5.1.tar.gz
  eric5-i18n-de-5.5.1.tar.gz
  eric5-i18n-en-5.5.1.tar.gz
  eric5-i18n-es-5.5.1.tar.gz
  eric5-i18n-fr-5.5.1.tar.gz
  eric5-i18n-it-5.5.1.tar.gz
  eric5-i18n-ru-5.5.1.tar.gz
  eric5-i18n-tr-5.5.1.tar.gz
  eric5-i18n-zh_CN.GB2312-5.5.1.tar.gz



Other differences:
--
++ eric5.spec ++
--- /var/tmp/diff_new_pack.VrRVoS/_old  2014-12-01 14:02:04.0 +0100
+++ /var/tmp/diff_new_pack.VrRVoS/_new  2014-12-01 14:02:04.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   eric5
-Version:5.5.0
+Version:5.5.1
 Release:0
 Summary:Python IDE based on Qt4
 License:GPL-3.0+
@@ -34,6 +34,7 @@
 Source17:   %{name}-i18n-tr-%{version}.tar.gz
 Source18:   %{name}-i18n-zh_CN.GB2312-%{version}.tar.gz
 Patch0: %{name}-build_compare.patch
+Patch1: %{name}-desktop_encoding.patch
 BuildRequires:  fdupes
 BuildRequires:  python3-qscintilla
 BuildRequires:  python3-qt4
@@ -65,6 +66,7 @@
 %prep
 %setup -q -b 10 -b 11 -b 12 -b 13 -b 14 -b 15 -b 16 -b 17 -b 18 -n 
%{name}-%{version}
 %patch0
+%patch1
 # Fix non-executable scripts:
 sed -i "s|#!/usr/bin/env python3||" 
eric/{eric5_sqlbrowser,eric5_uipreviewer,Examples/rhallo,eric5_plugininstall,eric5_tray,eric5_pluginrepository,eric5_unittest,eric5_api,eric5,compileUiFiles,eric5_editor,eric5_trpreviewer,eric5_diff,install-i18n,uninstall,eric5_re,install,eric5_webbrowser,eric5_configure,eric5_iconeditor,Examples/hallo,eric5_qregexp,eric5_pluginuninstall,Utilities/crypto/py3AES,eric5_compare,eric5_doc,cleanupSource,eric5_snap,eric5_qregularexpression,Plugins/CheckerPlugins/CodeStyleChecker/pep8,ThirdParty/CharDet/chardet/chardetect}.py
 
@@ -73,7 +75,6 @@
 
 %install
 python3 install.py -b /usr/bin -d %python3_sitelib -i %{buildroot} -x
-%suse_update_desktop_file -i %{name} Development IDE
 %fdupes %{buildroot}/%{python3_sitelib}/%{name}
 # fix rpmlint warning
 chmod +x %{buildroot}/%{python3_sitelib}/%{name}/Utilities/crypto/py3AES.py

++ eric5-5.5.0.tar.gz -> eric5-5.5.1.tar.gz ++
/work/SRC/openSUSE:Factory/eric5/eric5-5.5.0.tar.gz 
/work/SRC/openSUSE:Factory/.eric5.new/eric5-5.5.1.tar.gz differ: char 5, line 1

++ eric5-build_compare.patch ++
--- /var/tmp/diff_new_pack.VrRVoS/_old  2014-12-01 14:02:04.0 +0100
+++ /var/tmp/diff_new_pack.VrRVoS/_new  2014-12-01 14:02:04.0 +0100
@@ -1,57 +1,57 @@
 install.py.orig2014-10-28 20:32:46.0 -0400
-+++ install.py 2014-10-29 21:18:32.0 -0400
-@@ -665,28 +665,28 @@
- apidir = os.path.join(cfg['apidir'], progLanguage.lower())
- if not os.path.exists(apidir):
- os.makedirs(apidir)
--for apiName in glob.glob(os.path.join(sourceDir, "APIs",
--  progLanguage, "*.api")):
-+for apiName in sorted(glob.glob(os.path.join(sourceDir, "APIs",
-+  progLanguage, "*.api"))):
- try:
- shutilCopy(apiName, apidir)
- except EnvironmentError:
- print("Could not install '{0}'.".format(apiName))
--for apiName in glob.glob(os.path.join(sourceDir, "APIs",
--  progLanguage, "*.bas")):
-+for apiName in sorted(glob.glob(os.path.join(sourceDir, "APIs",
-+  progLanguage, "*.bas"))):
- try:
- shutilCopy(apiName, apidir)
- except EnvironmentError:
- print("Could not install '{0}'.".format(apiName))
- if progLanguage == "Python":
- # copy Python3 API files to the same destination
+--- install.py.orig2014-11-30 17:13:39.6

commit yast2-reipl for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package yast2-reipl for openSUSE:Factory 
checked in at 2014-12-01 14:01:38

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


Package is "yast2-reipl"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-reipl/yast2-reipl.changes  2014-05-21 
16:32:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-reipl.new/yast2-reipl.changes 
2014-12-01 14:02:06.0 +0100
@@ -1,0 +2,6 @@
+Thu Nov  6 12:41:25 CET 2014 - sch...@suse.de
+
+- Fixed parsing of lsreipl output (bnc#902094)
+- 3.1.5
+
+---

Old:

  yast2-reipl-3.1.4.tar.bz2

New:

  yast2-reipl-3.1.5.tar.bz2



Other differences:
--
++ yast2-reipl.spec ++
--- /var/tmp/diff_new_pack.JaNDax/_old  2014-12-01 14:02:07.0 +0100
+++ /var/tmp/diff_new_pack.JaNDax/_new  2014-12-01 14:02:07.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-reipl
-Version:3.1.4
+Version:3.1.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -34,6 +34,7 @@
 BuildRequires:  yast2-devtools >= 3.1.10
 BuildRequires:  yast2-storage
 BuildRequires:  yast2-testsuite
+BuildRequires:  rubygem(rspec)
 
 Requires:   yast2-bootloader
 Requires:   yast2-storage

++ yast2-reipl-3.1.4.tar.bz2 -> yast2-reipl-3.1.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-reipl-3.1.4/.travis.yml 
new/yast2-reipl-3.1.5/.travis.yml
--- old/yast2-reipl-3.1.4/.travis.yml   1970-01-01 01:00:00.0 +0100
+++ new/yast2-reipl-3.1.5/.travis.yml   2014-12-01 11:03:30.0 +0100
@@ -0,0 +1,16 @@
+language: cpp
+compiler:
+- gcc
+before_install:
+# disable rvm, use system Ruby
+- rvm reset
+- wget 
https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh
+- sh ./travis_setup.sh -p "rake yast2-devtools yast2-testsuite yast2 
yast2-storage" -g "yast-rake gettext  rspec:2.14.1"
+script:
+- rake check:syntax
+- rake check:pot
+- make -f Makefile.cvs
+- make
+- sudo make install
+- make check
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-reipl-3.1.4/MAINTAINER 
new/yast2-reipl-3.1.5/MAINTAINER
--- old/yast2-reipl-3.1.4/MAINTAINER2014-05-21 13:19:21.0 +0200
+++ new/yast2-reipl-3.1.5/MAINTAINER2014-12-01 11:03:30.0 +0100
@@ -1 +1 @@
-Steffen Winterfeldt 
+Deprecated file. Use `osc maintainer yast2-reipl` instead.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-reipl-3.1.4/README new/yast2-reipl-3.1.5/README
--- old/yast2-reipl-3.1.4/README2014-05-21 13:19:21.0 +0200
+++ new/yast2-reipl-3.1.5/README1970-01-01 01:00:00.0 +0100
@@ -1,2 +0,0 @@
-This program/library is part of YaST2
-See the file COPYRIGHT.english for license terms
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-reipl-3.1.4/README.md 
new/yast2-reipl-3.1.5/README.md
--- old/yast2-reipl-3.1.4/README.md 1970-01-01 01:00:00.0 +0100
+++ new/yast2-reipl-3.1.5/README.md 2014-12-01 11:03:30.0 +0100
@@ -0,0 +1,5 @@
+# YaST - The REIPL Module #
+
+[![Travis 
Build](https://travis-ci.org/yast/yast-reipl.svg?branch=master)](https://travis-ci.org/yast/yast-reipl)
+[![Jenkins 
Build](http://img.shields.io/jenkins/s/https/ci.opensuse.org/yast-reipl-master.svg)](https://ci.opensuse.org/view/Yast/job/yast-reipl-master/)
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-reipl-3.1.4/package/yast2-reipl.changes 
new/yast2-reipl-3.1.5/package/yast2-reipl.changes
--- old/yast2-reipl-3.1.4/package/yast2-reipl.changes   2014-05-21 
13:19:21.0 +0200
+++ new/yast2-reipl-3.1.5/package/yast2-reipl.changes   2014-12-01 
11:03:30.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Nov  6 12:41:25 CET 2014 - sch...@suse.de
+
+- Fixed parsing of lsreipl output (bnc#902094)
+- 3.1.5
+
+---
 Wed May 21 09:46:40 UTC 2014 - jreidin...@suse.com
 
 - do not call reipl mutliple time during installation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-reipl-3.1.4/package/yast2-reipl.spec 
new/yast2-reipl-3.1.5/package/yast2-reipl.spec
--- old/yast2-reipl-3.1.4/package/yast2-reipl.spec  2014-05-21 
13:19:21.0 +0200
+++ new/yast2-reipl-3.1.5/package/yast2-reipl.spec

commit epplet-base for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package epplet-base for openSUSE:Factory 
checked in at 2014-12-01 14:01:39

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


Package is "epplet-base"

Changes:

--- /work/SRC/openSUSE:Factory/epplet-base/epplet-base.changes  2014-08-20 
10:51:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.epplet-base.new/epplet-base.changes 
2014-12-01 14:02:07.0 +0100
@@ -1,0 +2,6 @@
+Mon Nov 24 03:23:53 UTC 2014 - si...@simotek.net
+
+- Update summary and description to indicate that this package only 
+  works for enlightenment DR16, it won't run on e17 and later
+
+---



Other differences:
--
++ epplet-base.spec ++
--- /var/tmp/diff_new_pack.XzDRIf/_old  2014-12-01 14:02:09.0 +0100
+++ /var/tmp/diff_new_pack.XzDRIf/_new  2014-12-01 14:02:09.0 +0100
@@ -26,7 +26,7 @@
 BuildRequires:  imlib2-devel >= 1.2.0
 BuildRequires:  libtool
 BuildRequires:  pkg-config >= 0.9.0
-Summary:Applets for the Enlightenment Window Manager
+Summary:Applets for the Enlightenment DR16 Window Manager
 License:GPL-2.0+
 Group:  System/GUI/Other
 Version:0.10
@@ -38,7 +38,7 @@
 
 %description
 Epplets are programs designed to work with the Enlightenment Window
-Manager Versions 0.16 and above.  Generally they are quite small and
+Manager Version 0.16.  Generally they are quite small and
 provide a quick way for a user to perform simple tasks or view
 information.
 

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



commit lxc for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package lxc for openSUSE:Factory checked in 
at 2014-12-01 14:01:36

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


Package is "lxc"

Changes:

--- /work/SRC/openSUSE:Factory/lxc/lxc.changes  2014-11-20 18:43:22.0 
+0100
+++ /work/SRC/openSUSE:Factory/.lxc.new/lxc.changes 2014-12-01 
14:02:05.0 +0100
@@ -1,0 +2,13 @@
+Sat Nov 29 20:28:21 UTC 2014 - opensuse_buildserv...@ojkastl.de
+
+- changed patch 0002 to work on newer Tumbleweed snapshots, where os-release 
does not contain 'Harlequin' anymore 
+
+---
+Wed Nov 26 20:39:13 UTC 2014 - opensuse_buildserv...@ojkastl.de
+
+- backported the patches from upstream, so that the opensuse template now 
accepts releases as arguments, and it is possible to install 12.3, 13.1 or 13.2
+  * 0003-lxc-opensuse-template-now-understands-release-argume.patch
+  * 0004-lxc-opensuse.in-Added-explanation-on-how-to-use-the-.patch
+  * 0005-lxc-opensuse.in-Check-if-given-argument-is-a-valid-r.patch
+
+---

New:

  0003-lxc-opensuse-template-now-understands-release-argume.patch
  0004-lxc-opensuse.in-Added-explanation-on-how-to-use-the-.patch
  0005-lxc-opensuse.in-Check-if-given-argument-is-a-valid-r.patch



Other differences:
--
++ lxc.spec ++
--- /var/tmp/diff_new_pack.KIrcQk/_old  2014-12-01 14:02:06.0 +0100
+++ /var/tmp/diff_new_pack.KIrcQk/_new  2014-12-01 14:02:06.0 +0100
@@ -28,6 +28,9 @@
 Source2:lxc-createconfig.in
 Patch1: 0001-added-upstream-action-fallback-create-directory-loca.patch
 Patch2: 0002-Disable-building-opensuse-containers-on-openSUSE13.2.patch
+Patch4: 0003-lxc-opensuse-template-now-understands-release-argume.patch
+Patch3: 0004-lxc-opensuse.in-Added-explanation-on-how-to-use-the-.patch
+Patch5: 0005-lxc-opensuse.in-Check-if-given-argument-is-a-valid-r.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -78,6 +81,9 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch5 -p1
 
 %build
 chmod 755 configure

++ 0001-added-upstream-action-fallback-create-directory-loca.patch ++
--- /var/tmp/diff_new_pack.KIrcQk/_old  2014-12-01 14:02:06.0 +0100
+++ /var/tmp/diff_new_pack.KIrcQk/_new  2014-12-01 14:02:06.0 +0100
@@ -1,19 +1,20 @@
-From f420d885feb1ef84e52cd6bdaccfc63741e19bf8 Mon Sep 17 00:00:00 2001
+From b6ca9c44b351bde22f9503fe1b5200a9eac6a01e Mon Sep 17 00:00:00 2001
 From: Johannes Kastl 
 Date: Mon, 27 Oct 2014 20:59:47 +0100
 Subject: [PATCH] added upstream action fallback; create directory
  "$localstatedir"/lock/subsys/ when necessary
 
 Signed-off-by: Johannes Kastl 
+Signed-off-by: Johannes Kastl 
 ---
- config/init/sysvinit/lxc.in | 16 +++-
- 1 file changed, 15 insertions(+), 1 deletion(-)
+ config/init/sysvinit/lxc.in | 14 ++
+ 1 file changed, 14 insertions(+)
 
 diff --git a/config/init/sysvinit/lxc.in b/config/init/sysvinit/lxc.in
-index 19c102e..291fa7b 100644
+index 19c102e..6eaf47b 100644
 --- a/config/init/sysvinit/lxc.in
 +++ b/config/init/sysvinit/lxc.in
-@@ -42,10 +42,24 @@ OPTIONS=
+@@ -45,10 +45,24 @@ STOPOPTS="-a -s"
  test ! -r "$sysconfdir"/rc.d/init.d/functions ||
  . "$sysconfdir"/rc.d/init.d/functions
  
@@ -39,5 +40,5 @@
  [ -x "$bindir"/lxc-autostart ] || exit 1
  
 -- 
-2.1.2
+2.1.3
 

++ 0002-Disable-building-opensuse-containers-on-openSUSE13.2.patch ++
--- /var/tmp/diff_new_pack.KIrcQk/_old  2014-12-01 14:02:06.0 +0100
+++ /var/tmp/diff_new_pack.KIrcQk/_new  2014-12-01 14:02:06.0 +0100
@@ -1,8 +1,8 @@
-From 777d55ae5258c99c9fd2a8740fac8ce4d0b02ec8 Mon Sep 17 00:00:00 2001
+From 0ece372b9c6050aff0da41e4a8a264fe3a679aed Mon Sep 17 00:00:00 2001
 From: Johannes Kastl 
 Date: Wed, 19 Nov 2014 11:05:15 +0100
-Subject: [PATCH] Disable building opensuse containers on openSUSE 13.2 due to
- changed build behaviour
+Subject: [PATCH] Disable building opensuse containers on openSUSE 13.2 or
+ Tumbleweed due to changed build behaviour
 
 Signed-off-by: Johannes Kastl 
 ---
@@ -10,7 +10,7 @@
  1 file changed, 6 insertions(+)
 
 diff --git a/templates/lxc-opensuse.in b/templates/lxc-opensuse.in
-index 3999df6..ee7233b 100644
+index 3999df6..decf8c5 100644
 --- a/templates/lxc-opensuse.in
 +++ b/templates/lxc-opensuse.in
 @@ -10,6 +10,7 @@
@@ -25,7 +25,7 @@
  exit 1
  fi
  
-+if grep -q Harlequin /etc/os-release ; then
++if grep -q Harlequin /etc/os-release || grep -q Tumbleweed /etc/os-release; 
then
 +echo "Building containers on openSUSE 13.2 or Tumbleweed 

commit phpMyAdmin for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package phpMyAdmin for openSUSE:Factory 
checked in at 2014-12-01 14:01:33

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


Package is "phpMyAdmin"

Changes:

--- /work/SRC/openSUSE:Factory/phpMyAdmin/phpMyAdmin.changes2014-11-24 
11:09:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.phpMyAdmin.new/phpMyAdmin.changes   
2014-12-01 14:01:59.0 +0100
@@ -1,0 +2,12 @@
+Sun Nov 30 22:47:22 UTC 2014 - ec...@opensuse.org
+
+- update to 4.2.13 (2014-11-30)
+  - sf#4604 Query history not being deleted
+  - sf#4057 db/table query string parameters no longer work
+  - sf#4605 Unseen messages in tracking
+  - sf#4606 Tracking report export as SQL dump does not work
+  - sf#4607 Syntax error during db_copy operation
+  - sf#4608 SELECT permission issues with relations and restricted 
+access
+
+---

Old:

  phpMyAdmin-4.2.12-all-languages.tar.bz2

New:

  phpMyAdmin-4.2.13-all-languages.tar.bz2



Other differences:
--
++ phpMyAdmin.spec ++
--- /var/tmp/diff_new_pack.CxatSV/_old  2014-12-01 14:02:00.0 +0100
+++ /var/tmp/diff_new_pack.CxatSV/_new  2014-12-01 14:02:00.0 +0100
@@ -34,7 +34,7 @@
 Summary:Administration of MySQL over the web
 License:GPL-2.0+
 Group:  Productivity/Networking/Web/Frontends
-Version:4.2.12
+Version:4.2.13
 Release:0
 Url:http://www.phpMyAdmin.net
 Source0:
http://sourceforge.net/projects/phpmyadmin/files/%{name}-%{version}-all-languages.tar.bz2

++ phpMyAdmin-4.2.12-all-languages.tar.bz2 -> 
phpMyAdmin-4.2.13-all-languages.tar.bz2 ++
/work/SRC/openSUSE:Factory/phpMyAdmin/phpMyAdmin-4.2.12-all-languages.tar.bz2 
/work/SRC/openSUSE:Factory/.phpMyAdmin.new/phpMyAdmin-4.2.13-all-languages.tar.bz2
 differ: char 11, line 1

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



commit calibre for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package calibre for openSUSE:Factory checked 
in at 2014-12-01 14:01:31

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  2014-11-26 
10:33:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.calibre.new/calibre.changes 2014-12-01 
14:01:56.0 +0100
@@ -1,0 +2,13 @@
+Fri Nov 28 21:59:31 UTC 2014 - corne...@solcon.nl
+
+- Update to version 2.12.0:
+  * Edit Book: Automatically complete the closing tag in HTML/XML files when 
typing http://calibre-ebook.com/whats-new
+
+---

Old:

  calibre-2.11.0.tar.xz

New:

  calibre-2.12.0.tar.xz



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.MCKndM/_old  2014-12-01 14:01:58.0 +0100
+++ /var/tmp/diff_new_pack.MCKndM/_new  2014-12-01 14:01:58.0 +0100
@@ -22,7 +22,7 @@
 License:GPL-3.0
 Group:  Productivity/Other
 Name:   calibre
-Version:2.11.0
+Version:2.12.0
 Release:0
 Url:http://calibre-ebook.com
 Source0:
http://download.calibre-ebook.com/%{version}/calibre-%{version}.tar.xz

++ calibre-2.11.0.tar.xz -> calibre-2.12.0.tar.xz ++
/work/SRC/openSUSE:Factory/calibre/calibre-2.11.0.tar.xz 
/work/SRC/openSUSE:Factory/.calibre.new/calibre-2.12.0.tar.xz differ: char 26, 
line 1


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



commit python3-pyzmq for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python3-pyzmq for openSUSE:Factory 
checked in at 2014-12-01 14:01:29

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


Package is "python3-pyzmq"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pyzmq/python3-pyzmq.changes  
2014-10-02 14:14:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pyzmq.new/python3-pyzmq.changes 
2014-12-01 14:01:50.0 +0100
@@ -1,0 +2,20 @@
+Sat Nov 29 19:51:55 UTC 2014 - a...@gmx.de
+
+- Update to version 14.4.1
+  * Bugfixes for 14.4
+- SyntaxError on Python 2.6 in zmq.ssh
+- Handle possible bug in garbage collection after fork
+- Changes from vesion 14.4.0
+  * New features:
+- Experimental support for libzmq-4.1.0 rc (new constants, plus zmq.has()).
+- Update bundled libzmq to 4.0.5
+- Update bundled libsodium to 1.0.0
+- Fixes for SSH dialogs when using zmq.ssh to create tunnels
+- More build/link/load fixes on OS X and Solaris
+- Get Frame metadata via dict access (libzmq 4)
+- Contexts and Sockets are context managers (term/close on __exit__)
+- Add zmq.utils.win32.allow_interrupt context manager for catching SIGINT 
on Windows
+  * Bugs fixed:
+- Bundled libzmq should not trigger recompilation after install on PyPy
+
+---
@@ -10 +30 @@
-- Update to 14.3.0
+- Changes from vesion 14.3.0

Old:

  pyzmq-14.3.1.tar.gz

New:

  pyzmq-14.4.1.tar.gz



Other differences:
--
++ python3-pyzmq.spec ++
--- /var/tmp/diff_new_pack.uxDz42/_old  2014-12-01 14:01:51.0 +0100
+++ /var/tmp/diff_new_pack.uxDz42/_new  2014-12-01 14:01:51.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pyzmq
-Version:14.3.1
+Version:14.4.1
 Release:0
 Summary:Python bindings for 0MQ
 License:LGPL-3.0+

++ pyzmq-14.3.1.tar.gz -> pyzmq-14.4.1.tar.gz ++
 47521 lines of diff (skipped)

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



commit u-boot for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package u-boot for openSUSE:Factory checked 
in at 2014-12-01 14:01:24

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


Package is "u-boot"

Changes:

--- /work/SRC/openSUSE:Factory/u-boot/u-boot-am335xevm.changes  2014-11-20 
18:43:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.u-boot.new/u-boot-am335xevm.changes 
2014-12-01 14:01:42.0 +0100
@@ -1,0 +2,12 @@
+Tue Nov 25 08:29:14 UTC 2014 - guilla...@opensuse.org
+
+- Update to 2015.01-rc2
+- Update patch fix_omap_boot_mode.patch to be upstreamable and 
+rename it to boot_mode_fallback.patch
+- Drop obsolete patch: arndale.patch
+- Add patches:
+  * fix_arm_hf_toolchain.patch: fix build with hard float toolchain
+  * fix_spl_ext.patch: fix SPL EXT error checks
+  * fix_sata.patch: fix sata support and fix also mx53loco build
+
+---
u-boot-arndale.changes: same change
u-boot-colibrit20iris.changes: same change
u-boot-cubieboard.changes: same change
u-boot-cubieboard2.changes: same change
u-boot-cubietruck.changes: same change
u-boot-highbank.changes: same change
u-boot-melea1000.changes: same change
u-boot-mx53loco.changes: same change
u-boot-mx6qsabrelite.changes: same change
u-boot-omap3beagle.changes: same change
u-boot-omap4panda.changes: same change
u-boot-paz00.changes: same change
u-boot-rpib.changes: same change
u-boot-snow.changes: same change
u-boot-vexpressaemv8a.changes: same change
u-boot.changes: same change

Old:

  arndale.patch
  fix_omap_boot_mode.patch
  u-boot-2015.01-rc1.tar.bz2

New:

  boot_mode_fallback.patch
  fix_arm_hf_toolchain.patch
  fix_sata.patch
  fix_spl_ext.patch
  u-boot-2015.01-rc2.tar.bz2



Other differences:
--
++ u-boot-am335xevm.spec ++
--- /var/tmp/diff_new_pack.YcWmnN/_old  2014-12-01 14:01:47.0 +0100
+++ /var/tmp/diff_new_pack.YcWmnN/_new  2014-12-01 14:01:47.0 +0100
@@ -25,22 +25,24 @@
 %define cuboxi_spl 0
 
 Name:   u-boot-am335xevm
-Version:2015.01~rc1
+Version:2015.01~rc2
 Release:0
 Summary:The u-boot firmware for the am335xevm arm platform
 License:GPL-2.0
 Group:  System/Boot
 Url:http://www.denx.de/wiki/U-Boot
 #Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
-Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc1.tar.bz2
+Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc2.tar.bz2
 Source2:arndale-bl1.img
 Source300:  u-boot-rpmlintrc
 Patch1: enable_spl_ext_support_for_ti_armv7.patch
 Patch2: fix_beagle_spl_build.patch
-Patch3: fix_omap_boot_mode.patch
-Patch5: mx53loco-bootscr.patch
-Patch6: origen-ext2.patch
-Patch7: arndale.patch
+Patch3: boot_mode_fallback.patch
+Patch4: mx53loco-bootscr.patch
+Patch5: origen-ext2.patch
+Patch10:fix_arm_hf_toolchain.patch
+Patch11:fix_spl_ext.patch
+Patch12:fix_sata.patch
 Patch20:fix_exynos5_text_base.patch
 Patch21:fix_snow_config.patch
 Patch22:fix_snow_extra_env_settings.patch
@@ -72,19 +74,18 @@
 
 %prep
 #%setup -q -n u-boot-%{version}
-%setup -q -n u-boot-2015.01-rc1
+%setup -q -n u-boot-2015.01-rc2
 # is non-free licensed, and we don't need it (bnc#773824)
 rm -rf board/Marvell
 # Any custom patches to be applied on top of mainline u-boot
 %patch1
 %patch2 -p1
-# Fix SPL boot mode for OMAP3 and OMAP4 boards only
-%if "%{name}" == "u-boot-omap4panda" || "%{name}" == "u-boot-omap3beagle"
-%patch3
-%endif
+%patch3 -p1
+%patch4
 %patch5
-%patch6
-%patch7
+%patch10 -p1
+%patch11 -p1
+%patch12 -p1
 %if "%{name}" == "u-boot-snow"
 # Still WIP, so only apply Chromebook ARM (snow) patches for u-boot-snow to 
avoid to break other boards (Arndale board)
 %patch20

u-boot-arndale.spec: same change
u-boot-colibrit20iris.spec: same change
u-boot-cubieboard.spec: same change
u-boot-cubieboard2.spec: same change
u-boot-cubietruck.spec: same change
u-boot-highbank.spec: same change
u-boot-melea1000.spec: same change
u-boot-mx53loco.spec: same change
u-boot-mx6qsabrelite.spec: same change
++ u-boot-omap3beagle.spec ++
--- /var/tmp/diff_new_pack.YcWmnN/_old  2014-12-01 14:01:47.0 +0100
+++ /var/tmp/diff_new_pack.YcWmnN/_new  2014-12-01 14:01:47.0 +0100
@@ -25,22 +25,24 @@
 %define cuboxi_spl 0
 
 Name:   u-boot-omap3beagle
-Version:2015.01~rc1
+Version:2015.01~rc2
 Release:0
 Summary:The u-boot firmware for the omap3beagle arm platform
 License:GPL-2.0
 Group:  System/Boot
 Url:http://www.de

commit python3-sympy for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python3-sympy for openSUSE:Factory 
checked in at 2014-12-01 14:01:29

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


Package is "python3-sympy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-sympy/python3-sympy.changes  
2014-11-18 22:46:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-sympy.new/python3-sympy.changes 
2014-12-01 14:01:53.0 +0100
@@ -1,0 +2,178 @@
+Sat Nov 29 08:20:26 UTC 2014 - a...@gmx.de
+
+- update to version 0.7.6
+
+  Major changes
+   * New module "calculus.finite_diff" for generating finite difference
+ formulae approximating derivatives of arbitrary order on arbitrarily
+ spaced grids.
+   * New module "physics.optics" for symbolic computations related to
+ optics.
+   * "geometry" module now supports 3D geometry.
+   * Support for series expansions at a point other then 0 or oo.  See PR
+ [#2427](https://github.com/sympy/sympy/pull/2427).
+   * Rules for the intersection of integer ImageSets were added. See PR
+ [#7587](https://github.com/sympy/sympy/pull/7587). We can now do
+ things like `{2⋅m | m ∊ ℤ} ∩ {3⋅n | n ∊ ℤ} = {6⋅t | t ∊ ℤ}` and `{2⋅m
+ | m ∊ ℤ} ∩ {2⋅n + 1 | n ∊ ℤ} = ∅ `
+   * "dsolve" module now supports system of ODEs including linear
+ system of ODEs of 1st order for 2 and 3 equations and of 2nd order
+ for 2 equations. It also supports homogeneous linear system of `n`
+ equations.
+   * New support for continued fractions, including iterators for partial
+ quotients and convergents, and reducing a continued fraction to a
+ Rational or a quadratic irrational.
+   * Support for Egyptian fraction expansions, using several different
+ algorithms.
+   * Addition of generalized linearization methods to
+ 'physics.mechanics'.
+   * Use an LRU cache by default instead of an unbounded one. See PR
+ [#7464] (https://github.com/sympy/sympy/pull/7464).  Control cache
+ size by the environment variable 'SYMPY_CACHE_SIZE' (default is
+ 500).  'SYMPY_CACHE_SIZE=None' restores the unbounded cache.
+   * Added 'fastcache' as an optional dependency.  Requires v0.4 or
+ newer.  Control via 'SYMPY_CACHE_SIZE'.  May result in significant
+ speedup. See PR [#7737] (https://github.com/sympy/sympy/pull/7737).
+   * New experimental module 'physics.unitsystems' for computation with
+ dimensions, units and quantities gathered into systems. This opens
+ the way to dimensional analysis and better quantity calculus. The
+ old module 'physics.units' will stay available until the new one
+ reaches a mature state. See PR
+ [#2628](https://github.com/sympy/sympy/pull/2628).
+   * New 'Complement' class to represent relative complements of two
+ sets. See Pr [#7462](https://github.com/sympy/sympy/pull/7462).
+   * New trigonometric functions (asec, acsc), many enhancements for
+ other trigonometric functions (PR
+ [#7500](https://github.com/sympy/sympy/pull/7500)).
+   * New 'Contains' class to represent the relation "is an element of"
+ (see PR [#7989](https://github.com/sympy/sympy/pull/7989)).
+   * The code generation tools (code printers, 'codegen', 'autowrap', and
+ 'ufuncify') have been updated to support a wider variety of
+ constructs, and do so in a more robust way. Major changes include
+ added support for matrices as inputs/outputs, and more robust
+ handling of conditional ('Piecewise') statements.
+   * 'ufuncify' now uses a backend that generates actual 'numpy.ufuncs'
+ by default through the use of the 'numpy' C api. This allows
+ broadcasting on *all* arguments. The previous 'cython' and 'f2py'
+ backends are still accessible through the use of the 'backend'
+ kwarg.
+   * 'CodeGen' now generates code for Octave and Matlab from SymPy
+ expressions.  This is supported by a new CodePrinter with interface
+ 'octave_code'.  For example 'octave_code(Matrix([[x**2, sin(pi*x*y),
+ ceiling(x)]]))' gives the string '[x.^2 sin(pi*x.*y) ceil(x)]'.
+   * New general 3D vector package at 'sympy.vector'. This package
+ provides a 3D vector object with the Del, gradient, divergence,
+ curl, and operators. It supports arbitrary rotations of Cartesian
+ coordinate systems and arbitrary locations of points.
+
+  Backwards compatibility breaks and deprecations
+   * All usage of inequalities ('>', '>=', '<', '<=') on SymPy objects
+ will now return SymPy's 'S.true' or 'S.false' singletons instead of
+ Python's 'True' or 'False' singletons.  Code that checks for, e.g.,
+ '(a < b) is True' should be changed to '(a < b) == True' or '(a < b)
+ == S.true'.  Use of 'is' is not recommended here.
+   * The 'subset()' met

commit rubygem-hiera for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package rubygem-hiera for openSUSE:Factory 
checked in at 2014-12-01 14:01:26

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


Package is "rubygem-hiera"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-hiera/rubygem-hiera.changes  
2014-10-23 14:20:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-hiera.new/rubygem-hiera.changes 
2014-12-01 14:01:48.0 +0100
@@ -1,0 +2,11 @@
+Sat Nov 29 20:11:55 UTC 2014 - tampak...@opensuse.org
+
+- Move the Provides to the versioned package
+- Fix the requirements between the versioned and unversioned packages
+
+---
+Wed Nov 26 21:53:54 UTC 2014 - tampak...@opensuse.org
+
+- Convert to the new ruby packaging schema
+
+---

Old:

  hiera.yaml

New:

  gem2rpm.yml



Other differences:
--
++ rubygem-hiera.spec ++
--- /var/tmp/diff_new_pack.MuNRKf/_old  2014-12-01 14:01:49.0 +0100
+++ /var/tmp/diff_new_pack.MuNRKf/_new  2014-12-01 14:01:49.0 +0100
@@ -16,90 +16,55 @@
 #
 
 
-%define mod_name hiera
-%define mod_full_name %{mod_name}-%{version}
-%define mod_branch -%{version}
-%define mod_weight 1
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-hiera
 Version:1.3.4
 Release:0
+%define mod_name hiera
+%define mod_full_name %{mod_name}-%{version}
+# MANUAL
+PreReq: rubygem(%{mod_name})
+# /MANUAL
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
+BuildRequires:  update-alternatives
+Url:https://github.com/puppetlabs/hiera
+Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:%{mod_name}.1
+Source2:gem2rpm.yml
 Summary:Light weight hierarchical data store
 License:Apache-2.0
 Group:  Development/Languages/Ruby
-Url:https://github.com/puppetlabs/hiera
-Source0:http://rubygems.org/gems/%{mod_full_name}.gem
-Source1:hiera.1
-Source2:hiera.yaml
-BuildRequires:  ruby-macros >= 1
-# FIXME: use proper Requires(pre/post/preun/...)
 PreReq: update-alternatives
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-A pluggable data store for hierarcical data
-
-%package doc
-Summary:RDoc documentation for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description doc
-Documentation generated at gem installation time.
-Usually in RDoc and RI formats.
-
-%package testsuite
-Summary:Test suite for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description testsuite
-Test::Unit or RSpec files, useful for developers.
+A pluggable data store for hierarcical data.
 
 %prep
-#gem_unpack
-#if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
-#gem_build
 
 %build
 
 %install
-%{gem_install} -f
-install -Dm0644 %{SOURCE1} %{buildroot}%{_mandir}/man1/hiera.1
-install -Dm0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/hiera.yaml
-mv %{buildroot}%{_bindir}/hiera{,%{mod_branch}}
-ln -s hiera%{mod_branch} %{buildroot}%{_bindir}/hiera
-mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/COPYING 
%{buildroot}/%{_docdir}/%{name}/COPYING
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%{buildroot}/%{_docdir}/%{name}/README.md
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE 
%{buildroot}/%{_docdir}/%{name}/LICENSE
-
-%post
-%{_sbindir}/update-alternatives --install \
-%{_bindir}/hiera hiera %{_bindir}/hiera%{mod_branch} %{mod_weight}
-
-%preun
-if [ "$1" = 0 ] ; then
-%{_sbindir}/update-alternatives --remove hiera 
%{_bindir}/hiera%{mod_branch}
-fi
+%gem_install \
+  --symlink-binaries \
+  --doc-files="COPYING LICENSE README.md" \
+  -f
+# MANUAL
+install -Dm0644 %{SOURCE1} %{buildroot}%{_mandir}/man1/%{mod_name}.1
+# /MANUAL
 
 %files
 %defattr(-,root,root,-)
-%config(noreplace) %{_sysconfdir}/hiera.yaml
-%{_docdir}/%{name}
-%{_bindir}/hiera%{mod_branch}
-%ghost %{_bindir}/hiera
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mo

commit dynamips for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package dynamips for openSUSE:Factory 
checked in at 2014-12-01 14:01:27

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


Package is "dynamips"

Changes:

--- /work/SRC/openSUSE:Factory/dynamips/dynamips.changes2014-09-26 
11:21:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.dynamips.new/dynamips.changes   2014-12-01 
14:01:49.0 +0100
@@ -1,0 +2,6 @@
+Sun Nov 30 13:35:30 UTC 2014 - and...@opensuse.org
+
+- added dynamips-0.2.14_fix_hanging_ethsw_add_nio.patch
+  to fix upstream bug 59 https://github.com/GNS3/dynamips/issues/59
+
+---

New:

  dynamips-0.2.14_fix_hanging_ethsw_add_nio.patch



Other differences:
--
++ dynamips.spec ++
--- /var/tmp/diff_new_pack.ZtA5JU/_old  2014-12-01 14:01:50.0 +0100
+++ /var/tmp/diff_new_pack.ZtA5JU/_new  2014-12-01 14:01:50.0 +0100
@@ -20,11 +20,11 @@
 Version:0.2.14
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  cmake
 BuildRequires:  dos2unix
 BuildRequires:  libelf-devel
 BuildRequires:  libpcap-devel
 BuildRequires:  libuuid-devel
-BuildRequires:  cmake
 Url:http://www.gns3.net
 %ifarch x86_64
 %if %{undefined fedora}
@@ -33,6 +33,7 @@
 %endif
 %endif
 Source: %{name}-%{version}.tar.gz
+Patch0: dynamips-0.2.14_fix_hanging_ethsw_add_nio.patch
 Summary:Cisco router Emulator
 License:GPL-2.0+
 Group:  System/Emulators/Other
@@ -48,6 +49,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 mkdir build

++ dynamips-0.2.14_fix_hanging_ethsw_add_nio.patch ++
diff -uNr 0ld-dynamips-0.2.14/common/eth_switch.c 
dynamips-0.2.14/common/eth_switch.c
--- 0ld-dynamips-0.2.14/common/eth_switch.c 2014-11-30 15:11:02.417554374 
+0100
+++ dynamips-0.2.14/common/eth_switch.c 2014-11-30 15:11:22.916554628 +0100
@@ -359,9 +359,10 @@
 static int ethsw_recv_pkt(netio_desc_t *nio,u_char *pkt,ssize_t pkt_len,
   ethsw_table_t *t)
 {
-   ETHSW_LOCK(t);
-   ethsw_receive(t,nio,pkt,pkt_len);
-   ETHSW_UNLOCK(t);
+   if (ETHSW_TRYLOCK(t) == 0) {
+  ethsw_receive(t,nio,pkt,pkt_len);
+  ETHSW_UNLOCK(t);
+   }
return(0);
 }
 
diff -uNr 0ld-dynamips-0.2.14/common/eth_switch.h 
dynamips-0.2.14/common/eth_switch.h
--- 0ld-dynamips-0.2.14/common/eth_switch.h 2014-11-30 15:11:02.417554374 
+0100
+++ dynamips-0.2.14/common/eth_switch.h 2014-11-30 15:11:22.916554628 +0100
@@ -74,6 +74,7 @@
 
 #define ETHSW_LOCK(t)   pthread_mutex_lock(&(t)->lock)
 #define ETHSW_UNLOCK(t) pthread_mutex_unlock(&(t)->lock)
+#define ETHSW_TRYLOCK(t) pthread_mutex_trylock(&(t)->lock)
 
 /* Acquire a reference to an Ethernet switch (increment reference count) */
 ethsw_table_t *ethsw_acquire(char *name);
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit poedit for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package poedit for openSUSE:Factory checked 
in at 2014-12-01 14:01:19

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


Package is "poedit"

Changes:

--- /work/SRC/openSUSE:Factory/poedit/poedit.changes2014-10-29 
21:09:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.poedit.new/poedit.changes   2014-12-01 
14:01:37.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov 29 20:54:31 UTC 2014 - andreas.stie...@gmx.de
+
+- poedit 1.6.11:
+  * fix MO compilation for extensionless PO files
+  * translations updates and fixes
+
+---

Old:

  poedit-1.6.10.tar.gz

New:

  poedit-1.6.11.tar.gz



Other differences:
--
++ poedit.spec ++
--- /var/tmp/diff_new_pack.0SrzGf/_old  2014-12-01 14:01:38.0 +0100
+++ /var/tmp/diff_new_pack.0SrzGf/_new  2014-12-01 14:01:38.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   poedit
-Version:1.6.10
+Version:1.6.11
 Release:0
 Summary:Cross-platform Gettext Catalogs Editing Tool
 License:MIT

++ poedit-1.6.10.tar.gz -> poedit-1.6.11.tar.gz ++
 18485 lines of diff (skipped)

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



commit lxsession for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package lxsession for openSUSE:Factory 
checked in at 2014-12-01 14:01:22

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


Package is "lxsession"

Changes:

--- /work/SRC/openSUSE:Factory/lxsession/lxsession.changes  2014-10-25 
11:13:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.lxsession.new/lxsession.changes 2014-12-01 
14:01:39.0 +0100
@@ -1,0 +2,29 @@
+Sun Nov 30 09:08:33 UTC 2014 - t...@gmx.com
+
+- New upstream version 0.5.2
+  * Use _CPPFLAGS instead of _CFLAGS
+  * If .c files are in CLEANFILES then .stamp files should be there 
+too
+  * Fix FSF address (fix #697)
+  * Fix lock in lxsession-default and add lock_manager option in 
+lxsession-default (fix #705)
+  * Fix gtk3 compilation, and merge patches #454 and #453
+  * Add .c files generated by vala, to be able to pass --enable 
+flags
+  * Create lock file to prevent more than one logout dialog (patch 
+from Martin Thornton #456)
+  * Added ESCAPE key to close the lxsession-logout menu
+  * Add some environment variables for LXQt and Qt
+  * Fix duplicate lxpolkit invocation by setting Hidden=true in 
+lxpolkit.desktop.
+  * Correctly connect and emit signals for lxsession-db (should
+really fix #692)
+  * Translation updates
+  * patches removed since now in upstream code
++ lxsession-0.5.1-duplicate-lxpolkit-invocation-fix.patch
++ lxsession-0.5.1-lxsession-db-SF692-fix.patch 
+  * Raise VALAC version requirement, it doesn't compile with 0.14,
+needs 0.16
+  * Applied spec-clean
+
+---

Old:

  lxsession-0.5.1-duplicate-lxpolkit-invocation-fix.patch
  lxsession-0.5.1-lxsession-db-SF692-fix.patch
  lxsession-0.5.1.tar.xz

New:

  lxsession-0.5.2.tar.xz



Other differences:
--
++ lxsession.spec ++
--- /var/tmp/diff_new_pack.UFEzpH/_old  2014-12-01 14:01:41.0 +0100
+++ /var/tmp/diff_new_pack.UFEzpH/_new  2014-12-01 14:01:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lxsession
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,15 +17,13 @@
 
 
 Name:   lxsession
-Version:0.5.1
+Version:0.5.2
 Release:0
 Summary:LXDE Session Manager, required for running the desktop 
environment
 License:GPL-2.0
 Group:  System/GUI/LXDE
 Url:http://www.lxde.org/
 Source: %{name}-%{version}.tar.xz
-Patch0:
lxsession-0.5.1-duplicate-lxpolkit-invocation-fix.patch
-Patch1:lxsession-0.5.1-lxsession-db-SF692-fix.patch
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  docbook-utils
 BuildRequires:  docbook-xsl-stylesheets
@@ -34,10 +32,11 @@
 BuildRequires:  intltool
 BuildRequires:  libgee-devel
 BuildRequires:  libtool
+BuildRequires:  libunique1-devel
 BuildRequires:  libxslt
 BuildRequires:  pkg-config
 BuildRequires:  polkit-devel
-BuildRequires:  vala >= 0.14
+BuildRequires:  vala >= 0.16
 Obsoletes: lxsession-edit <= 0.2.0
 Obsoletes: lxpolkit <= 0.1.0
 Provides:  lxsession-edit > 0.2.0
@@ -52,8 +51,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 
 %build
 %configure \

++ lxsession-0.5.1.tar.xz -> lxsession-0.5.2.tar.xz ++
 6268 lines of diff (skipped)

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



commit kdesdk3 for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdesdk3 for openSUSE:Factory checked 
in at 2014-12-01 14:01:17

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


Package is "kdesdk3"

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk3/kdesdk3.changes  2012-05-12 
08:51:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdesdk3.new/kdesdk3.changes 2014-12-01 
14:01:34.0 +0100
@@ -1,0 +2,15 @@
+Sun Nov 30 01:39:00 UTC 2014 - Led 
+
+- fix 'echo -e' in cvs.sh script that may be unsupported in some
+  POSIX-complete shells
+- update patches:
+  * kdesdk-3.5.10-fix-bashisms.patch
+
+---
+Sat Nov 29 21:01:00 UTC 2014 - Led 
+
+- fix bashisms in scripts
+- add patches:
+  * kdesdk-3.5.10-fix-bashisms.patch
+
+---

New:

  kdesdk-3.5.10-fix-bashisms.patch



Other differences:
--
++ kdesdk3.spec ++
--- /var/tmp/diff_new_pack.kk92bH/_old  2014-12-01 14:01:36.0 +0100
+++ /var/tmp/diff_new_pack.kk92bH/_new  2014-12-01 14:01:36.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdesdk3
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -13,6 +13,8 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
 
 Name:   kdesdk3
 %define _mandir /opt/kde3/share/man
@@ -34,6 +36,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:kdesdk-%{version}.tar.bz2
 Patch0: 3_5_BRANCH.diff
+Patch1: kdesdk-3.5.10-fix-bashisms.patch
 
 %description
 This is a collection of applications and tools used by KDE developers.
@@ -78,7 +81,8 @@
 poxml: translate DocBook files using translated PO files.
 
 %package devel
-Requires:   kdesdk3 kdelibs3-devel
+Requires:   kdelibs3-devel
+Requires:   kdesdk3
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Libraries/C and C++
 
@@ -89,6 +93,7 @@
 %prep
 %setup -q -n kdesdk-%{version}
 %patch0
+%patch1 -p1
 # kmtrace does not work with glibc 2.3 anymore and valgrind is way better
 rm -rf kmtrace
 . /etc/opt/kde3/common_options

++ kdesdk-3.5.10-fix-bashisms.patch ++
diff -Ndur kdesdk-3.5.10/admin/cvs.sh kdesdk-3.5.10-fix-bashisms/admin/cvs.sh
--- kdesdk-3.5.10/admin/cvs.sh  2008-08-19 23:23:58.0 +0300
+++ kdesdk-3.5.10-fix-bashisms/admin/cvs.sh 2014-11-30 03:37:09.086560745 
+0200
@@ -549,7 +549,12 @@
fi
fi
if find . -name \*.c\* -o -name \*.h\* | fgrep -v ".svn" | xargs fgrep -s 
-q KAboutData ; then
-   echo -e 'i18n("_: NAME OF TRANSLATORS\\n"\n"Your names")\ni18n("_: 
EMAIL OF TRANSLATORS\\n"\n"Your emails")' > _translatorinfo.cpp
+   cat > _translatorinfo.cpp <<-EOF
+   i18n("_: NAME OF TRANSLATORS\n"
+   "Your names")
+   i18n("_: EMAIL OF TRANSLATORS\n"
+   "Your emails")
+   EOF
else echo " " > _translatorinfo.cpp
fi
perl -e '$mes=0; while () { next if (/^(if\s|else\s|endif)/); if 
(/^messages:/) { $mes=1; print $_; next; } if ($mes) { if (/$\\(XGETTEXT\)/ && 
/ -o/) { s/ -o \$\(podir\)/ _translatorinfo.cpp -o \$\(podir\)/ } print $_; } 
else { print $_; } }' < Makefile.am | egrep -v '^include ' > _transMakefile
diff -Ndur kdesdk-3.5.10/kapptemplate/admin/cvs.sh 
kdesdk-3.5.10-fix-bashisms/kapptemplate/admin/cvs.sh
--- kdesdk-3.5.10/kapptemplate/admin/cvs.sh 2008-08-19 23:23:58.0 
+0300
+++ kdesdk-3.5.10-fix-bashisms/kapptemplate/admin/cvs.sh2014-11-30 
03:36:42.274562559 +0200
@@ -549,7 +549,12 @@
fi
fi
if find . -name \*.c\* -o -name \*.h\* | fgrep -v ".svn" | xargs fgrep -s 
-q KAboutData ; then
-   echo -e 'i18n("_: NAME OF TRANSLATORS\\n"\n"Your names")\ni18n("_: 
EMAIL OF TRANSLATORS\\n"\n"Your emails")' > _translatorinfo.cpp
+   cat > _translatorinfo.cpp <<-EOF
+   i18n("_: NAME OF TRANSLATORS\n"
+   "Your names")
+   i18n("_: EMAIL OF TRANSLATORS\n"
+   "Your emails")
+   EOF
else echo " " > _translatorinfo.cpp
fi
perl -e '$mes=0; while () { next if (/^(if\s|else\s|endif)/); if 
(/^messages:/) { $mes=1; print $_; next; } if ($mes) { if (/$\\(XGETTEXT\)/ && 
/ -o/) { s/ -o \$\(podir\)/ _translatorinfo.cpp -o \$\(podir\)/ } print $_; } 
else { print $_; } }' < Makefile.am | egrep -v '^include ' > _transMakefile
diff -Ndur kdesdk-3.5.10/scripts/build-progre

commit kdebase3-SuSE for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdebase3-SuSE for openSUSE:Factory 
checked in at 2014-12-01 14:01:16

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


Package is "kdebase3-SuSE"

Changes:

--- /work/SRC/openSUSE:Factory/kdebase3-SuSE/kdebase3-SuSE.changes  
2014-03-09 18:26:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdebase3-SuSE.new/kdebase3-SuSE.changes 
2014-12-01 14:01:32.0 +0100
@@ -1,0 +2,12 @@
+Sat Nov 29 22:18:00 UTC 2014 - Led 
+
+- fix duplicate License entries in package
+  kdebase3-SuSE-branding-openSUSE
+
+---
+Fri Nov 21 00:12:00 UTC 2014 - Led 
+
+- fix bashisms in scripts
+  kdebase-SuSE-fix-bashisms.patch
+
+---

New:

  kdebase-SuSE-fix-bashisms.patch



Other differences:
--
++ kdebase3-SuSE.spec ++
--- /var/tmp/diff_new_pack.3Kmilw/_old  2014-12-01 14:01:33.0 +0100
+++ /var/tmp/diff_new_pack.3Kmilw/_new  2014-12-01 14:01:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdebase3-SuSE
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -13,6 +13,8 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
 
 %if %suse_version > 1140
 %define with_hal 0
@@ -21,9 +23,18 @@
 %endif
 
 Name:   kdebase3-SuSE
-BuildRequires:  ImageMagick db-devel dbus-1-qt3-devel desktop-data-openSUSE
-BuildRequires:  hwinfo-devel kdebase3-devel libelf-devel lzma-alpha-devel 
rpm-devel yast2 yast2-theme-openSUSE
+BuildRequires:  ImageMagick
+BuildRequires:  db-devel
+BuildRequires:  dbus-1-qt3-devel
+BuildRequires:  desktop-data-openSUSE
+BuildRequires:  hwinfo-devel
 BuildRequires:  kdebase3 > 3.5.1
+BuildRequires:  kdebase3-devel
+BuildRequires:  libelf-devel
+BuildRequires:  lzma-alpha-devel
+BuildRequires:  rpm-devel
+BuildRequires:  yast2
+BuildRequires:  yast2-theme-openSUSE
 %if %suse_version <= 1210
 BuildRequires:  libpng14-compat-devel
 %endif
@@ -32,15 +43,31 @@
 Requires:   kde3-kio_sysinfo
 %endif
 BuildRequires:  unsermake
+Summary:SUSE KDE Extension
 License:GPL-2.0
 Group:  System/GUI/KDE
-Summary:SUSE KDE Extension
-Obsoletes:  kdebase-SuSE kdebase3-BILD
-Provides:   kdebase-SuSE kdebase3-BILD
-Obsoletes:  kdebase-yast2, susehelpcenter, SuSE-Wizard, susewm-kcmyast, 
kdebase3-NLD
-Provides:   kdebase-yast2, susehelpcenter, suse_help_viewer, base3-theme, 
SuSE-Wizard, susewm-kcmyast, kdebase3-NLD
-Requires:   kdebase3 yast2_theme susehelp zypper kde-susetranslations
+Obsoletes:  kdebase-SuSE
+Obsoletes:  kdebase3-BILD
+Provides:   kdebase-SuSE
+Provides:   kdebase3-BILD
+Obsoletes:  SuSE-Wizard
+Obsoletes:  kdebase-yast2
+Obsoletes:  kdebase3-NLD
+Obsoletes:  susehelpcenter
+Obsoletes:  susewm-kcmyast
+Provides:   SuSE-Wizard
+Provides:   base3-theme
+Provides:   kdebase-yast2
+Provides:   kdebase3-NLD
+Provides:   suse_help_viewer
+Provides:   susehelpcenter
+Provides:   susewm-kcmyast
+Requires:   kde-susetranslations
+Requires:   kdebase3
+Requires:   susehelp
 Requires:   xdpyinfo
+Requires:   yast2_theme
+Requires:   zypper
 # opened by suseplugger
 Suggests:   
yast2-bluetooth,yast2-country,yast2-mouse,yast2-network,yast2-printer,yast2-scanner,yast2-sound,yast2-storage,yast2-tv,yast2-x11
 Obsoletes:  kdebase3-Personal
@@ -48,14 +75,14 @@
 PreReq: %fillup_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Version:11.3
-Release:1
+Release:0
 Source0:kdebase-SuSE-%{version}.tar.bz2
 Source2:kdebase3-SuSE-displaymanager.fillup
 Source3:kdebase3-SuSE-windowmanager.fillup
 Source4:media.desktop
-Requires:   desktop-branding
-Requires:   %{name}-lang
 Requires:   %{name}-branding
+Requires:   %{name}-lang
+Requires:   desktop-branding
 Recommends: kde3-gtk-qt-engine kde3-knemo
 Patch0: adjust-settings.patch
 Patch1: branding-12_1.patch
@@ -63,6 +90,7 @@
 Patch3:kdebase3-suse-libpng14.patch
 Patch4: enable-shadows.patch
 Patch5: libreoffice-desktop.patch
+Patch6: kdebase-SuSE-fix-bashisms.patch
 
 %description
 This package contains the standard SUSE desktop and menu extensio

commit kdebase3 for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdebase3 for openSUSE:Factory 
checked in at 2014-12-01 14:01:13

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


Package is "kdebase3"

Changes:

--- /work/SRC/openSUSE:Factory/kdebase3/kdebase3.changes2014-10-25 
11:12:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdebase3.new/kdebase3.changes   2014-12-01 
14:01:24.0 +0100
@@ -1,0 +2,10 @@
+Sat Nov 29 21:47:00 UTC 2014 - Led 
+
+- fix bashisms kde3 and startkde scripts
+- update patches:
+  * startkde.diff
+  * kde3-session-restore.diff
+- add patches:
+  * kdebase-3.5.10-fix-bashisms.patch
+
+---

New:

  kdebase-3.5.10-fix-bashisms.patch



Other differences:
--
++ kdebase3.spec ++
--- /var/tmp/diff_new_pack.MrNdsp/_old  2014-12-01 14:01:27.0 +0100
+++ /var/tmp/diff_new_pack.MrNdsp/_new  2014-12-01 14:01:27.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdebase3
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -129,6 +129,7 @@
 Source25:   kdm3
 Patch0: kdebase-svn-merge-diff.patch
 Patch3: startkde.diff
+Patch4: kdebase-3.5.10-fix-bashisms.patch
 Patch5: media-iPod.diff
 Patch6: ksysguardd-openslp.diff
 Patch7: fix-kio-smb-auth.diff
@@ -491,6 +492,7 @@
 %setup -q -b 8 -b 13 -n kdebase-%{kde_version}
 %patch0 -p1
 %patch3
+%patch4 -p1
 %patch5
 %if 0%{?with_hal} == 0
 %patch280 -p1




++ kde3-session-restore.diff ++
--- /var/tmp/diff_new_pack.MrNdsp/_old  2014-12-01 14:01:28.0 +0100
+++ /var/tmp/diff_new_pack.MrNdsp/_new  2014-12-01 14:01:28.0 +0100
@@ -6,7 +6,7 @@
  #  and make sure this script is in $PATH (e.g. make a symlink if necessary).
  #
  
-+PATH=/opt/kde3/bin:${PATH/:\/opt\/kde3\/bin}
++PATH=/opt/kde3/bin:$((echo "$PATH" | sed 's|:/opt/kde3/bin||g))
 +export PATH
 +
  exec "$@"

++ kdebase-3.5.10-fix-bashisms.patch ++
diff -Ndur kdebase-3.5.10/startkde kdebase-3.5.10-fix-bashisms/startkde
--- kdebase-3.5.10/startkde 2008-08-19 22:56:42.0 +0300
+++ kdebase-3.5.10-fix-bashisms/startkde2014-11-29 23:43:54.429507492 
+0200
@@ -337,6 +337,7 @@
 KDE_FULL_SESSION=true
 export KDE_FULL_SESSION
 xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true
+[ -n "$UID" ] || UID="$(id -ru)"
 KDE_SESSION_UID=$UID
 export KDE_SESSION_UID
 
++ startkde.diff ++
--- /var/tmp/diff_new_pack.MrNdsp/_old  2014-12-01 14:01:28.0 +0100
+++ /var/tmp/diff_new_pack.MrNdsp/_new  2014-12-01 14:01:28.0 +0100
@@ -6,7 +6,7 @@
  #  DEFAULT KDE STARTUP SCRIPT ( KDE-3.5.10 )
  #
  
-+PATH=/opt/kde3/bin:${PATH/:\/opt\/kde3\/bin}
++PATH=/opt/kde3/bin:$((echo "$PATH" | sed 's|:/opt/kde3/bin||g))
 +export PATH
 +test -x /usr/bin/xrandr && /usr/bin/xrandr --auto
  # When the X server dies we get a HUP signal from xinit. We must ignore it



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



commit kdelibs3 for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2014-12-01 14:01:15

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2014-06-19 
13:20:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2014-12-01 
14:01:28.0 +0100
@@ -1,0 +2,8 @@
+Sat Nov 29 21:56:00 UTC 2014 - Led 
+
+- fix 'echo -e' in cvs.sh script that may be unsupported in some
+  POSIX-complete shells
+- add patches:
+  * kdelibs-3.5.10-fix-bashisms.patch
+
+---

New:

  kdelibs-3.5.10-fix-bashisms.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.V2CCfB/_old  2014-12-01 14:01:31.0 +0100
+++ /var/tmp/diff_new_pack.V2CCfB/_new  2014-12-01 14:01:31.0 +0100
@@ -100,6 +100,7 @@
 Patch1: kdeversion.diff
 Patch2: admin.diff
 Patch3: show-distribution.diff
+Patch4: kdelibs-3.5.10-fix-bashisms.patch
 Patch5: applications.menu-fallback.diff
 Patch7: stat-on-media.diff
 Patch8: kmimelist.diff
@@ -293,6 +294,7 @@
 %patch228 -p1
 %patch1
 %patch3
+%patch4 -p1
 %patch5
 %patch7
 %patch10


++ kdelibs-3.5.10-fix-bashisms.patch ++
diff -Ndur kdelibs-3.5.10/admin/cvs.sh kdelibs-3.5.10-fix-bashisms/admin/cvs.sh
--- kdelibs-3.5.10/admin/cvs.sh 2008-08-19 23:28:39.0 +0300
+++ kdelibs-3.5.10-fix-bashisms/admin/cvs.sh2014-11-29 23:54:33.155464281 
+0200
@@ -549,7 +549,12 @@
fi
fi
if find . -name \*.c\* -o -name \*.h\* | fgrep -v ".svn" | xargs fgrep -s 
-q KAboutData ; then
-   echo -e 'i18n("_: NAME OF TRANSLATORS\\n"\n"Your names")\ni18n("_: 
EMAIL OF TRANSLATORS\\n"\n"Your emails")' > _translatorinfo.cpp
+   cat > _translatorinfo.cpp <<-EOF
+   i18n("_: NAME OF TRANSLATORS\n"
+   "Your names")
+   i18n("_: EMAIL OF TRANSLATORS\n"
+   "Your emails")
+   EOF
else echo " " > _translatorinfo.cpp
fi
perl -e '$mes=0; while () { next if (/^(if\s|else\s|endif)/); if 
(/^messages:/) { $mes=1; print $_; next; } if ($mes) { if (/$\\(XGETTEXT\)/ && 
/ -o/) { s/ -o \$\(podir\)/ _translatorinfo.cpp -o \$\(podir\)/ } print $_; } 
else { print $_; } }' < Makefile.am | egrep -v '^include ' > _transMakefile
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit trinity for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package trinity for openSUSE:Factory checked 
in at 2014-12-01 14:01:04

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


Package is "trinity"

Changes:

--- /work/SRC/openSUSE:Factory/trinity/trinity.changes  2014-11-12 
00:22:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.trinity.new/trinity.changes 2014-12-01 
14:01:13.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov 22 13:00:16 UTC 2014 - mplus...@suse.com
+
+- Update to 20141117
+
+---

Old:

  trinity-20141110.tar.xz

New:

  trinity-20141117.tar.xz



Other differences:
--
++ trinity.spec ++
--- /var/tmp/diff_new_pack.26CQKo/_old  2014-12-01 14:01:14.0 +0100
+++ /var/tmp/diff_new_pack.26CQKo/_new  2014-12-01 14:01:14.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   trinity
-Version:20141110
+Version:20141117
 Release:0
 Summary:A Linux System call fuzz tester
 License:GPL-2.0

++ trinity-20141110.tar.xz -> trinity-20141117.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trinity-20141110/include/syscalls-parisc.h 
new/trinity-20141117/include/syscalls-parisc.h
--- old/trinity-20141110/include/syscalls-parisc.h  2014-11-11 
09:25:52.0 +0100
+++ new/trinity-20141117/include/syscalls-parisc.h  2014-11-22 
13:59:00.0 +0100
@@ -1,6 +1,6 @@
 #pragma once
 
-/* Syscalls from arch/parisc/kernel/syscall_table.S as of 3.16+ */
+/* Syscalls from arch/parisc/kernel/syscall_table.S */
 
 #include "sanitise.h"
 #include "syscall.h"
@@ -348,4 +348,5 @@
{ .entry = &syscall_seccomp },
{ .entry = &syscall_getrandom },
{ .entry = &syscall_memfd_create },
+   { .entry = &syscall_bpf },
 };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trinity-20141110/ioctls/dm.c 
new/trinity-20141117/ioctls/dm.c
--- old/trinity-20141110/ioctls/dm.c2014-11-11 09:25:52.0 +0100
+++ new/trinity-20141117/ioctls/dm.c2014-11-22 13:59:00.0 +0100
@@ -37,7 +37,7 @@
 
pick_random_ioctl(grp, rec);
 
-   rec->a3 = (unsigned long) get_address();
+   rec->a3 = (unsigned long) get_writable_address(sizeof(struct dm_ioctl));
dm = (struct dm_ioctl *) rec->a3;
 
/* set a sensible version to get past the initial checks */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trinity-20141110/patches/silence-fuzz-testing-noise.patch 
new/trinity-20141117/patches/silence-fuzz-testing-noise.patch
--- old/trinity-20141110/patches/silence-fuzz-testing-noise.patch   
2014-11-11 09:25:52.0 +0100
+++ new/trinity-20141117/patches/silence-fuzz-testing-noise.patch   
2014-11-22 13:59:00.0 +0100
@@ -292,6 +292,18 @@
return -ENOSYS;
}
sctp_sk(sk)->hmac = tfm;
--- 
-1.9.0
-
+diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
+index c603b20356ad..2ce54858002e 100644
+--- a/security/selinux/hooks.c
 b/security/selinux/hooks.c
+@@ -4725,10 +4725,6 @@ static int selinux_nlmsg_perm(struct sock *sk, struct 
sk_buff *skb)
+   err = selinux_nlmsg_lookup(sksec->sclass, nlh->nlmsg_type, &perm);
+   if (err) {
+   if (err == -EINVAL) {
+-  printk(KERN_WARNING
+- "SELinux: unrecognized netlink message:"
+- " protocol=%hu nlmsg_type=%hu sclass=%hu\n",
+- sk->sk_protocol, nlh->nlmsg_type, sksec->sclass);
+   if (!selinux_enforcing || security_get_allow_unknown())
+   err = 0;
+   }

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



commit python3-simplejson for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python3-simplejson for 
openSUSE:Factory checked in at 2014-12-01 14:01:05

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


Package is "python3-simplejson"

Changes:

--- /work/SRC/openSUSE:Factory/python3-simplejson/python3-simplejson.changes
2014-05-21 16:22:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-simplejson.new/python3-simplejson.changes   
2014-12-01 14:01:14.0 +0100
@@ -1,0 +2,35 @@
+Sat Nov 29 08:29:03 UTC 2014 - a...@gmx.de
+
+- Update to version 3.6.5
+  * Importing bug fix for reference leak when an error occurs during
+dict encoding https://github.com/simplejson/simplejson/issues/109
+- Changes from version.6.4
+  * Important bug fix for dump when only sort_keys is set
+https://github.com/simplejson/simplejson/issues/106
+- Changes from version 3.6.3
+  * Documentation updates
+https://github.com/simplejson/simplejson/issues/103
+- Changes from version 3.6.2
+  * Documentation updates
+http://bugs.python.org/issue21514
+-Changes from version 3.6.1
+  * Documentation updates
+https://github.com/simplejson/simplejson/issues/102
+- Changes from version 3.6.0
+  * Automatically strip any UTF-8 BOM from input to more closely
+follow the latest specs https://github.com/simplejson/simplejson/pull/101
+- Changes from version 3.5.3
+  * Fix lower bound checking in scan_once / raw_decode API
+https://github.com/simplejson/simplejson/issues/98
+- Changes from version 3.5.2
+  * Fix Windows build with VS2008
+https://github.com/simplejson/simplejson/pull/97
+- Changes from version 3.5.1
+  * Consistently reject int_as_string_bitcount settings that are not
+positive integers
+- Changes from version 3.5.0
+  * Added int_as_string_bitcount encoder option
+https://github.com/simplejson/pull/96
+  * Fixed potential crash when encoder created with incorrect options
+
+---

Old:

  simplejson-3.4.1.tar.gz

New:

  simplejson-3.6.5.tar.gz



Other differences:
--
++ python3-simplejson.spec ++
--- /var/tmp/diff_new_pack.q3lGHn/_old  2014-12-01 14:01:16.0 +0100
+++ /var/tmp/diff_new_pack.q3lGHn/_new  2014-12-01 14:01:16.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-simplejson
-Version:3.4.1
+Version:3.6.5
 Release:0
 Url:http://github.com/simplejson/simplejson
 Summary:Simple, fast, extensible JSON encoder/decoder for Python

++ simplejson-3.4.1.tar.gz -> simplejson-3.6.5.tar.gz ++
 1879 lines of diff (skipped)

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



commit youtube-dl for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package youtube-dl for openSUSE:Factory 
checked in at 2014-12-01 14:01:09

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


Package is "youtube-dl"

Changes:

--- /work/SRC/openSUSE:Factory/youtube-dl/youtube-dl.changes2014-11-20 
18:43:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.youtube-dl.new/youtube-dl.changes   
2014-12-01 14:01:21.0 +0100
@@ -1,0 +2,10 @@
+Sat Nov 22 23:35:25 UTC 2014 - jeng...@inai.de
+
+- Update to new upstream release 2014.11.21.1
+* Update handlers for vh1, comedycentral, stanfordoc
+* correct OptionGroup invocation for Python 3
+* Fix writing to paths with unicode characters
+* rtlxl: Use m3u8 streams instead of f4m
+* youtube: Add webm audio formats
+
+---

Old:

  youtube-dl-2014.11.16.tar.gz
  youtube-dl-2014.11.16.tar.gz.sig

New:

  youtube-dl-2014.11.21.1.tar.gz
  youtube-dl-2014.11.21.1.tar.gz.sig



Other differences:
--
++ youtube-dl.spec ++
--- /var/tmp/diff_new_pack.RosFUR/_old  2014-12-01 14:01:22.0 +0100
+++ /var/tmp/diff_new_pack.RosFUR/_new  2014-12-01 14:01:22.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   youtube-dl
-Version:2014.11.16
+Version:2014.11.21.1
 Release:0
 Summary:A tool for downloading from Youtube
 License:SUSE-Public-Domain and CC-BY-SA-3.0

++ youtube-dl-2014.11.16.tar.gz -> youtube-dl-2014.11.21.1.tar.gz ++
 2427 lines of diff (skipped)

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



commit kdenetwork3 for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package kdenetwork3 for openSUSE:Factory 
checked in at 2014-12-01 14:01:11

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


Package is "kdenetwork3"

Changes:

--- /work/SRC/openSUSE:Factory/kdenetwork3/kdenetwork3.changes  2013-10-02 
13:27:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdenetwork3.new/kdenetwork3.changes 
2014-12-01 14:01:22.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov 29 21:17:00 UTC 2014 - Led 
+
+- fix bashisms in scripts
+- add patches:
+  * kdenetwork-3.5.10-fix-bashisms.patch
+
+---

New:

  kdenetwork-3.5.10-fix-bashisms.patch



Other differences:
--
++ kdenetwork3.spec ++
--- /var/tmp/diff_new_pack.en7DQO/_old  2014-12-01 14:01:24.0 +0100
+++ /var/tmp/diff_new_pack.en7DQO/_new  2014-12-01 14:01:24.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdenetwork3
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -50,6 +50,7 @@
 Source7:kppp.peers
 Patch0: 3_5_BRANCH.diff
 Patch1: kppp-security.diff
+Patch2: kdenetwork-3.5.10-fix-bashisms.patch
 Patch4: external-qca.diff
 Patch11:kpf-slp.diff
 Patch12:relabel-zeroconf.diff
@@ -213,6 +214,7 @@
 %patch0
 %patch111 -p1
 %patch1
+%patch2 -p1
 %patch4
 rm -rf kopete/plugins/statistics
 %patch11

++ kdenetwork-3.5.10-fix-bashisms.patch ++
diff -Ndur kdenetwork-3.5.10/kopete/plugins/latex/kopete_latexconvert.sh 
kdenetwork-3.5.10-fix-bashisms/kopete/plugins/latex/kopete_latexconvert.sh
--- kdenetwork-3.5.10/kopete/plugins/latex/kopete_latexconvert.sh   
2005-09-10 11:20:16.0 +0300
+++ kdenetwork-3.5.10-fix-bashisms/kopete/plugins/latex/kopete_latexconvert.sh  
2014-11-29 23:13:18.959631662 +0200
@@ -27,7 +27,7 @@
 extra_header="$HOME/.tex2im_header"
 
 if [ -f ~/.tex2imrc ]; then
-   source ~/.tex2imrc
+   . ~/.tex2imrc
 fi
 
 OPTERR=0
@@ -222,7 +222,7 @@
mv $tmpdir/out.$format.0 $outfile
 fi
 
-let OPTIND=$OPTIND+1
+OPTIND=$((OPTIND + 1))
 outfile=""
 done
 
diff -Ndur kdenetwork-3.5.10/kopete/protocols/winpopup/winpopup-send.sh 
kdenetwork-3.5.10-fix-bashisms/kopete/protocols/winpopup/winpopup-send.sh
--- kdenetwork-3.5.10/kopete/protocols/winpopup/winpopup-send.sh
2006-10-01 20:26:38.0 +0300
+++ kdenetwork-3.5.10-fix-bashisms/kopete/protocols/winpopup/winpopup-send.sh   
2014-11-29 23:15:35.590622419 +0200
@@ -18,7 +18,8 @@
 fi
 
 if [ "$2" != "$THIS_SERVER" ]; then
-echo -e "Kopete is currently not running.\nYour message was not 
delivered!" \
+echo "Kopete is currently not running.
+Your message was not delivered!" \
 | smbclient -N -M $2
 fi
 
@@ -34,7 +35,9 @@
 MESSAGE=`cat "$1"`
 
 # Put it into the file
-echo -e "$2\n$TIME\n$MESSAGE" > $filename
+echo "$2
+$TIME
+$MESSAGE" > $filename
 
 
 fi
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rubygem-jquery-rails for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package rubygem-jquery-rails for 
openSUSE:Factory checked in at 2014-12-01 14:01:00

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


Package is "rubygem-jquery-rails"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-jquery-rails/rubygem-jquery-rails.changes
2014-10-14 07:11:59.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-jquery-rails.new/rubygem-jquery-rails.changes
   2014-12-01 14:01:11.0 +0100
@@ -1,0 +2,5 @@
+Wed Nov 26 14:00:59 UTC 2014 - tboer...@suse.com
+
+- Added last missing new macro bits with gem2rpm
+
+---



Other differences:
--
++ rubygem-jquery-rails.spec ++
--- /var/tmp/diff_new_pack.nLj0PT/_old  2014-12-01 14:01:11.0 +0100
+++ /var/tmp/diff_new_pack.nLj0PT/_new  2014-12-01 14:01:11.0 +0100
@@ -21,8 +21,9 @@
 Release:0
 %define mod_name jquery-rails
 %define mod_full_name %{mod_name}-%{version}
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
 Url:http://rubygems.org/gems/jquery-rails
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
@@ -34,14 +35,12 @@
 This gem provides jQuery and the jQuery-ujs driver for your Rails 3+
 application.
 
-
 %prep
 
 %build
 
 %install
 %gem_install \
-  --symlink-binaries \
   --doc-files="CHANGELOG.md LICENSE README.md" \
   -f
 

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



commit ding for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package ding for openSUSE:Factory checked in 
at 2014-12-01 14:01:02

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


Package is "ding"

Changes:

--- /work/SRC/openSUSE:Factory/ding/ding.changes2011-09-23 
01:55:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.ding.new/ding.changes   2014-12-01 
14:01:12.0 +0100
@@ -1,0 +2,6 @@
+Sun Sep 18 17:17:12 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+  (cf. packaging guidelines)
+
+---



Other differences:
--
++ ding.spec ++
--- /var/tmp/diff_new_pack.Vve2bG/_old  2014-12-01 14:01:12.0 +0100
+++ /var/tmp/diff_new_pack.Vve2bG/_new  2014-12-01 14:01:12.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package ding (Version 1.7)
+# spec file for package ding
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   ding
@@ -23,7 +22,6 @@
 License:GPL-2.0+
 Group:  Productivity/Office/Dictionary
 Requires:   tcl tk ispell-ngerman ispell-american
-AutoReqProv:on
 Summary:An X Window System Dictionary Tool
 Version:1.7
 Release:1
@@ -40,12 +38,6 @@
 with a local database file. For full functionality, agrep should be
 installed.
 
-
-
-Authors:
-
-Frank Richter 
-
 %prep
 %setup -q
 %patch -p1

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



commit monit for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package monit for openSUSE:Factory checked 
in at 2014-12-01 14:01:08

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


Package is "monit"

Changes:

--- /work/SRC/openSUSE:Factory/monit/monit.changes  2014-07-31 
21:50:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.monit.new/monit.changes 2014-12-01 
14:01:18.0 +0100
@@ -1,0 +2,68 @@
+Sat Nov 29 16:42:21 UTC 2014 - lmue...@suse.com
+
+- update to 5.10:
+  + New: Redis protocol test added.
+  + New: MongoDB protocol test added.
+  + New: Changes due to vulnerabilities in SSLv2 and SSLv3.
+ See CVE-2014-3566 aka "POODLE".
+  + Fixed: Issue #101: Manual-mode monitored services state may not be restored
+if the monitoring state was changed by user right before the system died.
+  + Fixed: Issue #104: Keep umask Monit was started with when executing
+start/stop/restart programs, check programs and creating files.
+  + Fixed: Issue #107: Support multi-line response in the LMTP protocol test.
+  + Fixed: Support TLSv1.1 and TLSv1.2 when FIPS is enabled.
+- update to 5.9:
+  + New: Output from your check program script is now displayed in Monit’s UI.
+  + New: Aggregate and use human friendly units for memory, swap and space
+ usage values in the User Interface.
+  + New: Support monitoring of filesystems by generic device strings such as
+ sshfs on Linux or ZFS filesystems on Solaris.
+  + New: You can now send HTTP headers with the HTTP protocol test.
+  + New: Program check now supports exit status change monitoring.
+  + New: Added option to run check program as a different user and/or group.
+  + New: Changed name of ICMP ECHO statement to Ping which is the more common
+ name used for a network ping.
+  + New: Simplified HTTP and SMTP protocol test with SSL.
+  + Fixed: Issue #59, Issue #88: Some systems with upstart (e.g. RHEL/CentOS)
+   had problems with Monit's restart action which consists of a
+   stop/start sequence.
+  + Fixed: Issue #54: MySQL protocol test.
+  + Fixed: Issue #64: Resets counter once a service has successfully restarted
+  + New: Issue #84. You can now test for '\0' in an expect string.
+  + Fixed: Issue #55: Only run cron style checks once per minute.
+  + Fixed: Issue #78: Include open slots in Apache status check calculations
+  + Fixed: Issue #57: Inode usage check and space usage check now show correct
+   result for large filesystems on 32-bit platforms.
+  + Fixed: Issue #70: Removed newline in Monit's $ENV strings
+  + Fixed: Issue #72: Monit no longer requires a start, stop or restart
+   program defined for a check.
+  + Fixed: P.R. #17: Bug fix, missing "check file" target files result in error
+   "Invalid checksum" sha1 has a string length of 40.
+  + Fixed: P.R. #18: Add missing space in the timeout text in UI.
+  + Fixed: Issue #71: Subtract SLAB reclaimable memory from the system memory
+   usage on Linux
+  + Fixed: Support TLSv1.1 and TLSv1.2 in "set mailserver"
+  + Fixed: Sporadic "PPID changed from 0 to ..." alert after process restart
+  + Fixed: PID/PPID changed events were sometimes triggered after program
+   restart
+  + Fixed: Linux: filesystem space usage on some network based filesystems
+   such as sshfs
+  + Fixed: Automatically reload Monit if ID was reset using --resetid CLI
+   option.
+  + Fixed: Improved speed of send/expect protocol test
+  + Fixed: Fixed SMTP protocol test to check the response code
+
+---
+Sat Nov 29 15:57:18 UTC 2014 - lmue...@suse.com
+
+- Remove /var from path in rpmlintrc of the .monit.id file.
+- Package /run only on post-11.1 systems.
+
+---
+Sat Nov 29 14:47:53 UTC 2014 - lmue...@suse.com
+
+- Modify shebang to point to bash where bash is required in
+  vendor-files/tools/monit-modifyinittab.tmpl
+- Align used SUSE trade name in the vendor-files.
+
+---

Old:

  monit-5.8.1.tar.gz

New:

  monit-5.10.tar.gz
  monit-5.10.tar.gz.sha256



Other differences:
--
++ monit.spec ++
--- /var/tmp/diff_new_pack.wnsjJU/_old  2014-12-01 14:01:20.0 +0100
+++ /var/tmp/diff_new_pack.wnsjJU/_new  2014-12-01 14:01:20.0 +0100
@@ -18,12 +18,13 @@
 
 
 Name:   monit
-Version:5.8.1
+Version:5.10
 Release:0
 Summary:Service Manager and Monitor System
 License:AGPL-3.0
 Group:  System/Monitoring
 Source: http://mmonit.com/monit/dist/monit-%{ve

commit rubygem-hub for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package rubygem-hub for openSUSE:Factory 
checked in at 2014-12-01 14:01:07

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


Package is "rubygem-hub"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-hub/rubygem-hub.changes  2014-11-24 
11:08:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-hub.new/rubygem-hub.changes 
2014-12-01 14:01:16.0 +0100
@@ -1,0 +2,16 @@
+Sat Nov 29 12:39:56 UTC 2014 - tampak...@opensuse.org
+
+- Install the manpage under %{_mandir}
+- Version bump 1.12.3:
+  * Fix hub --noop clone output for repos user has push access to
+  * Fix hub browse help output when not in any repo
+  * Tweak URI implementation for compatibility with stdlib
+  * Ensure branch names with funky characters are shell-escaped
+
+---
+Fri Nov 28 16:31:51 UTC 2014 - tampak...@opensuse.org
+
+- Fix the requires between the versioned and unversion packages
+- Move the Provides to the versioned pkg
+
+---

Old:

  hub-1.12.2.gem

New:

  hub-1.12.3.gem



Other differences:
--
++ rubygem-hub.spec ++
--- /var/tmp/diff_new_pack.NKJfBT/_old  2014-12-01 14:01:17.0 +0100
+++ /var/tmp/diff_new_pack.NKJfBT/_new  2014-12-01 14:01:17.0 +0100
@@ -24,13 +24,12 @@
 #
 
 Name:   rubygem-hub
-Version:1.12.2
+Version:1.12.3
 Release:0
 %define mod_name hub
 %define mod_full_name %{mod_name}-%{version}
 # MANUAL
-Requires: rubygem(hub)
-Provides: hub = %{version}-%{release}
+PreReq: rubygem(%{mod_name})
 # /MANUAL
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ruby-macros >= 5
@@ -71,6 +70,8 @@
 # MANUAL
 install -Dm0644 %{SOURCE1} 
%{buildroot}%{_datadir}/bash-completion/completions/%{mod_name}
 install -Dm0644 %{SOURCE2} 
%{buildroot}%{_datadir}/zsh/site-functions/_%{mod_name}
+gemdir="$(gem env gemdir)"
+install -Dm444 $gemdir/gems/%{mod_full_name}/man/%{mod_name}.1 
%{buildroot}%{_mandir}/man1/%{mod_name}.1
 # /MANUAL
 
 
@@ -81,6 +82,7 @@
 %dir %{_datadir}/zsh/site-functions
 %{_datadir}/bash-completion/completions/%{mod_name}
 %{_datadir}/zsh/site-functions/_%{mod_name}
+%{_mandir}/man1/%{mod_name}.1.gz
 
 %gem_packages
 

++ gem2rpm.yml ++
--- /var/tmp/diff_new_pack.NKJfBT/_old  2014-12-01 14:01:17.0 +0100
+++ /var/tmp/diff_new_pack.NKJfBT/_new  2014-12-01 14:01:17.0 +0100
@@ -1,15 +1,22 @@
+:main:
+  :preamble: |-
+Provides:   %{mod_name} = %{version}-%{release}
+Requires:   rubygem-%{mod_name}
+Recommends: rubygem(%{rb_default_ruby_abi}:%{mod_name})
+:preamble: |-
+  PreReq: rubygem(%{mod_name})
 :sources:
   - '%{mod_name}.bash_completion.sh'
   - '%{mod_name}.zsh_completion'
 :post_install: |-
   install -Dm0644 %{SOURCE1} 
%{buildroot}%{_datadir}/bash-completion/completions/%{mod_name}
   install -Dm0644 %{SOURCE2} 
%{buildroot}%{_datadir}/zsh/site-functions/_%{mod_name}
-:preamble: |-
-  Requires: rubygem(hub)
-  Provides: hub = %{version}-%{release}
+  gemdir="$(gem env gemdir)"
+  install -Dm444 $gemdir/gems/%{mod_full_name}/man/%{mod_name}.1 
%{buildroot}%{_mandir}/man1/%{mod_name}.1
 :filelist: |-
   %dir %{_datadir}/bash-completion/completions
   %dir %{_datadir}/zsh
   %dir %{_datadir}/zsh/site-functions
   %{_datadir}/bash-completion/completions/%{mod_name}
   %{_datadir}/zsh/site-functions/_%{mod_name}
+  %{_mandir}/man1/%{mod_name}.1.gz

++ hub-1.12.2.gem -> hub-1.12.3.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/hub/commands.rb new/lib/hub/commands.rb
--- old/lib/hub/commands.rb 2014-07-11 21:05:58.0 +0200
+++ new/lib/hub/commands.rb 2014-11-28 01:34:21.0 +0100
@@ -86,7 +86,7 @@
 abort "Aborted: the origin remote doesn't point to a GitHub 
repository."
   end
 
-  unless sha = local_repo.git_command("rev-parse -q #{ref}")
+  unless sha = local_repo.git_command("rev-parse -q '%s'" % ref.gsub("'", 
"\\'"))
 abort "Aborted: no revision could be determined from '#{ref}'"
   end
 
@@ -228,8 +228,11 @@
 else
   format = '%h (%aN, %ar)%n%w(78,3,3)%s%n%+b'
   default_message = nil
-  commit_summary = git_command "log --no-color --format='%s' --cherry 
%s...%s" %
-[format, base_branch, remote_branch]
+  commit_summary = git_command "log --no-color --format='%s' --cherry 
'%s...%s'" % [
+format,
+base_branch.to_s.gsub("'", "\\'"),
+  

commit privoxy for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package privoxy for openSUSE:Factory checked 
in at 2014-12-01 14:00:58

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


Package is "privoxy"

Changes:

--- /work/SRC/openSUSE:Factory/privoxy/privoxy.changes  2014-11-14 
09:19:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.privoxy.new/privoxy.changes 2014-12-01 
14:01:09.0 +0100
@@ -1,0 +2,37 @@
+Fri Nov 28 23:16:40 UTC 2014 - andreas.stie...@gmx.de
+
+- Privoxy 3.0.22 [boo#907675]
+- Bug fixes:
+  - Fixed a memory leak when rejecting client connections
+  - Fixed an immediate-use-after-free bug and two additional
+unconfirmed use-after-free complaints
+  - Actually show the FORCE_PREFIX value on the show-status page.
+  - Properly deal with Keep-Alive headers with timeout= parameters
+  - Not using any filter files no longer results in warning messages
+unless an action file is referencing header taggers or filters.
+  - Fixed a bug that prevented Privoxy from reusing some reusable
+connections.
+- General improvements:
+  - Introduced NO-REQUEST-TAG and NO-RESPONSE-TAG.
+  - Add support for the 'PATCH' method as defined in RFC5789.
+  - Reject requests with unsupported Expect header values.
+  - Normalize the HTTP-version in forwarded requests and responses.
+  - Server 'Keep-Alive' headers are no longer forwarded.
+  - Change declared template file encoding to UTF-8.
+  - Do not pass rejected keep-alive timeouts to the server.
+  - CGI templates no longer enforce new windows for some links.
+  - Documentation improvements
+  - Build system improvements
+- Action file improvements:
+  - The pattern 'promotions.' is no longer being blocked.
+  - Various updated filter rules and exceptions.
+- Filter file improvements & bug fixes:
+  - Decrease the chances that js-annoyances creates invalid JavaScript.
+  - Let the msn filter hide 'related' ads again.
+  - Prevent img-reorder from messing up img tags with empty src
+attributes.
+- add source URL
+- fix self-obsoletion
+- clean up spec file
+
+---

Old:

  privoxy-3.0.21-stable-src.tar.gz

New:

  privoxy-3.0.22-stable-src.tar.gz



Other differences:
--
++ privoxy.spec ++
--- /var/tmp/diff_new_pack.mdsYY5/_old  2014-12-01 14:01:10.0 +0100
+++ /var/tmp/diff_new_pack.mdsYY5/_new  2014-12-01 14:01:10.0 +0100
@@ -16,64 +16,64 @@
 #
 
 
+%define chroot %{_localstatedir}/lib/privoxy
 %if 0%{?suse_version} > 1210
 %define with_systemd 1
 %else
 %define with_systemd 0
 %endif
-
 %if %{with_systemd}
 %if 0%{?suse_version} < 1230
 %define _unitdir /lib/systemd/system
 %else
-%define _unitdir /usr/lib/systemd/system
+%define _unitdir %{_libexecdir}/systemd/system
 %endif
 %endif
-
 Name:   privoxy
+Version:3.0.22
+Release:0
+Summary:The Internet Junkbuster - HTTP Proxy Server
+License:GPL-2.0+
+Group:  Productivity/Networking/Web/Proxy
+Url:http://www.privoxy.org/
+Source: 
http://sourceforge.net/projects/ijbswa/files/Sources/%{version}%%20%%28stable%%29/%{name}-%{version}-stable-src.tar.gz
+Source2:%{name}-3.0.16-init.suse
+Source3:%{name}.service
+Source4:%{name}.firewall
+Patch1: %{name}-3.0.21-config.patch
+Patch2: %{name}-3.0.17-utf8.patch
 BuildRequires:  automake
 BuildRequires:  pcre-devel
 BuildRequires:  w3m
 BuildRequires:  zlib-devel
+Requires:   cron
+Requires:   logrotate
+Provides:   ijb = %{version}
+Obsoletes:  ijb < %{version}
+Provides:   junkbuster = %{version}
+Obsoletes:  junkbuster < %{version}
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with_systemd}
 BuildRequires:  systemd
 %endif
-Url:http://www.privoxy.org/
-Provides:   ijb
-Provides:   junkbuster
-Obsoletes:  ijb
-Obsoletes:  junkbuster
 %if %{with_systemd}
+# FIXME: use proper Requires(pre/post/preun/...)
+PreReq: %{_sbindir}/useradd %{_sbindir}/groupadd
 %{?systemd_requires}
-PreReq: /usr/sbin/useradd /usr/sbin/groupadd
 %else
-PreReq: %fillup_prereq %insserv_prereq /usr/sbin/useradd 
/usr/sbin/groupadd
+# FIXME: use proper Requires(pre/post/preun/...)
+PreReq: %fillup_prereq %insserv_prereq %{_sbindir}/useradd 
%{_sbindir}/groupadd
 %endif
-Version:3.0.21
-Release:0
-Summary:The Internet Junkbuster - HTTP Proxy Server
-License:GPL-2.0+
-Group:  Productivity/Networking/Web/Proxy
-Source: %{name}-%{version}-stable-src.tar.gz
 %if %{with_systemd}
 Source1:%{name}.logrotate.systemd
 %else
 Source1:%

commit screenfetch for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package screenfetch for openSUSE:Factory 
checked in at 2014-12-01 14:00:55

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


Package is "screenfetch"

Changes:

--- /work/SRC/openSUSE:Factory/screenfetch/screenfetch.changes  2014-11-15 
12:28:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.screenfetch.new/screenfetch.changes 
2014-12-01 14:01:03.0 +0100
@@ -1,0 +2,47 @@
+Fri Nov 28 18:41:17 UTC 2014 - mplus...@suse.com
+
+- Update to 3.6.5:
+   - Added missing Evolve OS package detection.
+   - Added Evolve OS detection. No ASCII yet.
+   - Added imgur to configured upload hosts
+   - Fine tuned more of the upload function.
+ +v3.6.2
+   - Added upload support via -u flag
+   - Added pre-configured hosts for -u uploading: teknik, pomf, hmp, and 
mediacrush
+   - Added a configurable section for an scp upload to a specified 
destination
+   - Removed -m flag
+ +v3.6.0
+   - Added PowerPC support for OS X
+   - Added support for Korora and Void Linux
+   - Readme: added installation instruction for Debian
+
+ +v3.5.0
+   - update list of supported systems
+   - Fix Parabola pkg detection.
+   - Adding support for the echinus (dwm fork) WM.
+   - Add 2bwm support.
+   - Various Parabola GNU/Linux-libre aesthetic fixes.
+   - Adding NetBSD to supported distros in --help.
+   - Fix OpenBSD total RAM output.
+   - Un-camelCase the *box WMs, matching the documentation for the *box 
WMs.
+   - Added support for Windows 8.1 (Cygwin)
+   - Removed resolution from screenfetch when resolution cannot be found 
(Win8.1 cygwin)
+   - Fix detection of PowerPC G3 to be more exact instead of triggering on 
UltraSparcs
+   - Fixing shrx's URL.
+   - add manpage
+   - update header license text to GPLv3
+   - Red Hat Linux -> Red Hat Enterprise Linux
+   - Fix Parabola in --help.
+   - improved GPU detection formatting, fixed dual GPU detection formatting
+   - Fixes for OS X
+   - Fix Arch Linux detection for updated lsb_release
+   - Fix for Debian
+   - Added support for Raspbian, Antergos and KaOS
+   - Fixes for Cinnamon
+   - Fix for Android being detected if getprop exists. Disabling Android 
support until I figure out a better detection method.
+   - Redirect STDERR to function to make errors prettier.
+   - Commenting gsettings usage for GTK3 theme detection. Causes glib core 
dump in some places. Removed until I figure out why.
+- Add missing dependencies (xdpyinfo and xprop)
+ 
+
+---

Old:

  screenfetch-3.2.2.tar.bz2

New:

  v3.6.5.tar.gz



Other differences:
--
++ screenfetch.spec ++
--- /var/tmp/diff_new_pack.RNBKXN/_old  2014-12-01 14:01:04.0 +0100
+++ /var/tmp/diff_new_pack.RNBKXN/_new  2014-12-01 14:01:04.0 +0100
@@ -17,14 +17,16 @@
 
 
 Name:   screenfetch
-Version:3.2.2
+Version:3.6.5
 Release:0
 Summary:Fetches system/theme information in terminal for Linux desktop 
screenshots
 License:GPL-3.0
 Group:  Monitoring
 Url:https://github.com/KittyKatt/screenFetch
-Source: 
http://git.silverirc.com/cgit.cgi/screenfetch.git/snapshot/%{name}-%{version}.tar.bz2
+Source: 
https://github.com/KittyKatt/screenFetch/archive/v%{version}.tar.gz
 Requires:   bash
+Requires:   xdpyinfo
+Requires:   xprop
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -39,16 +41,18 @@
 command! This script is very easy to add to and can be easily extended.
 
 %prep
-%setup -q
+%setup -q -n screenFetch-%{version}
 
 %build
 
 %install
 install -D -m 0755 %{name}-dev %{buildroot}%{_bindir}/%{name}
+install -D -m 0644 %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
 
 %files
 %defattr(-,root,root)
 %doc COPYING README.mkdn CHANGELOG TODO
 %{_bindir}/%{name}
+%{_mandir}/man1/%{name}.1*
 
 %changelog

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



commit wine for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package wine for openSUSE:Factory checked in 
at 2014-12-01 14:00:57

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.changes2014-11-18 
22:48:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.wine.new/wine.changes   2014-12-01 
14:01:06.0 +0100
@@ -1,0 +2,11 @@
+Fri Nov 28 20:42:30 UTC 2014 - meiss...@suse.com
+
+- Updated to 1.7.32 development snapshot
+  - New version of the Mono engine.
+  - A few more functions implemented in MSHTML.
+  - Improved support for restoring display mode.
+  - Font metrics improvements in DirectWrite.
+  - Various bug fixes.
+- updated winetricks to current version
+
+---

Old:

  wine-1.7.31.tar.bz2
  wine-1.7.31.tar.bz2.sign

New:

  wine-1.7.32.tar.bz2
  wine-1.7.32.tar.bz2.sign



Other differences:
--
++ wine.spec ++
--- /var/tmp/diff_new_pack.cH8H0R/_old  2014-12-01 14:01:08.0 +0100
+++ /var/tmp/diff_new_pack.cH8H0R/_new  2014-12-01 14:01:08.0 +0100
@@ -56,7 +56,7 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  valgrind-devel
 BuildRequires:  xorg-x11-devel
-Version:1.7.31
+Version:1.7.32
 Release:0
 Summary:An MS Windows Emulator
 License:LGPL-2.1+

++ wine-1.7.31.tar.bz2 -> wine-1.7.32.tar.bz2 ++
/work/SRC/openSUSE:Factory/wine/wine-1.7.31.tar.bz2 
/work/SRC/openSUSE:Factory/.wine.new/wine-1.7.32.tar.bz2 differ: char 11, line 1


++ winetricks ++
--- /var/tmp/diff_new_pack.cH8H0R/_old  2014-12-01 14:01:08.0 +0100
+++ /var/tmp/diff_new_pack.cH8H0R/_new  2014-12-01 14:01:08.0 +0100
@@ -2,7 +2,7 @@
 
 # Name of this version of winetricks (MMDD)
 # (This doesn't change often, use the sha1sum of the file when reporting 
problems)
-WINETRICKS_VERSION=20140817
+WINETRICKS_VERSION=20141125
 
 # This is a utf-8 file
 # You should see an o with two dots over it here [ö]
@@ -1986,6 +1986,7 @@
 load_vd $arg
 _W_status=$?
 test "$W_OPT_NOCLEAN" = 1 || rm -rf "$W_TMP"
+mkdir -p "$W_TMP"
 return $_W_status
 fi
 
@@ -2018,6 +2019,7 @@
 w_override_dlls $cmd $arg
 _W_status=$?
 test "$W_OPT_NOCLEAN" = 1 || rm -rf "$W_TMP"
+mkdir -p "$W_TMP"
 return $_W_status
 else
 w_die "No such verb $1"
@@ -2091,6 +2093,7 @@
 
 # Clean up after this verb
 test "$W_OPT_NOCLEAN" = 1 || rm -rf "$W_TMP"
+mkdir -p "$W_TMP"
 
 # Calling subshell must explicitly propagate error code with exit $?
 ) || exit $?
@@ -3688,13 +3691,7 @@
 w_die "No sha1sum utility available."
 fi
 
-# Which sourceforge mirror to use.  Rotate based on time, since
-# their mirror picker sometimes persistantly sends you to a broken
-# mirror.
-case `date +%S` in
-*[3])  
WINETRICKS_SOURCEFORGE=http://surfnet.dl.sourceforge.net/sourceforge ;;
-*) WINETRICKS_SOURCEFORGE=http://downloads.sourceforge.net;;
-esac
+WINETRICKS_SOURCEFORGE=http://downloads.sourceforge.net
 
 # Public Variables 
 
@@ -4056,7 +4053,8 @@
 # 2014-03-01: 4.0   sha1sum 0034bdd4e0b2ce0fa6198b0b715fba85754d9a57
 # 
http://helpx.adobe.com/en/flash-player/release-note/fp_12_air_4_release_notes.html
 # 2014-09-30: 15.0  sha1sum 46341f1358bc6e0b9ddeae3591662a2ac68dc360
-w_download 
http://airdownload.adobe.com/air/win/download/15.0/AdobeAIRInstaller.exe 
46341f1358bc6e0b9ddeae3591662a2ac68dc360 
+# 2014-11-24: i15.0.0.356 sha1sum c0e6b8b1ed5ffa282945d21b21f8a5e03febc904
+w_download 
http://airdownload.adobe.com/air/win/download/15.0/AdobeAIRInstaller.exe 
c0e6b8b1ed5ffa282945d21b21f8a5e03febc904
 cd "$W_CACHE"/adobeair
 w_try "$WINE" AdobeAIRInstaller.exe $W_UNATTENDED_DASH_SILENT
 }
@@ -4965,7 +4963,8 @@
 # http://blogs.msdn.com/b/astebner/archive/2008/10/13/8999004.aspx
 # 2013/03/28: sha1sum 0eba832a0733cd47b7639463dd5a22a41e95ee6e
 # 2014/01/23: sha1sum 8818f3460826145e2a66bb91727afa7cd531037b
-w_download 
http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Components-PostAttachments/00-08-99-90-04/netfx_5F00_setupverifier_5F00_new.zip
 8818f3460826145e2a66bb91727afa7cd531037b
+# 2014/11/22: sha1sum 47de0b849c4c3d354df23588c709108e7816d788
+w_download 
http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Components-PostAttachments/00-08-99-90-04/netfx_5F00_setupverifier_5F00_new.zip
 47de0b849c4c3d354df23588c709108e7816d788
 
 cd "$W_CACHE"/dotnet_

commit pluma for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package pluma for openSUSE:Factory checked 
in at 2014-12-01 14:00:54

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


Package is "pluma"

Changes:

--- /work/SRC/openSUSE:Factory/pluma/pluma.changes  2014-05-02 
14:01:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.pluma.new/pluma.changes 2014-12-01 
14:01:01.0 +0100
@@ -1,0 +2,6 @@
+Fri Nov 28 16:42:11 UTC 2014 - p.drou...@gmail.com
+
+- Fix boo#906911,add mate-desktop-gsettings-schemas as a 
+  dependency
+
+---



Other differences:
--
++ pluma.spec ++
--- /var/tmp/diff_new_pack.Lh0uOu/_old  2014-12-01 14:01:03.0 +0100
+++ /var/tmp/diff_new_pack.Lh0uOu/_new  2014-12-01 14:01:03.0 +0100
@@ -38,6 +38,7 @@
 BuildRequires:  python-libxml2
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
+Requires:   mate-desktop-gsettings-schemas
 Provides:   mate-text-editor = %{version}
 Obsoletes:  mate-text-editor < %{version}
 Obsoletes:  mate-text-editor-lang < %{version}

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



commit grep for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package grep for openSUSE:Factory checked in 
at 2014-12-01 14:00:31

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


Package is "grep"

Changes:

--- /work/SRC/openSUSE:Factory/grep/grep.changes2014-06-18 
22:04:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.grep.new/grep.changes   2014-12-01 
14:00:41.0 +0100
@@ -1,0 +2,33 @@
+Fri Nov 28 15:49:19 UTC 2014 - andreas.stie...@gmx.de
+
+- GNU grep 2.21
+- Improvements:
+  * performance improved for searching files containing holes, on
+platforms where lseek's SEEK_DATA flag works efficiently.
+  * performance improved for rejecting data that cannot match even
+the first part of a nontrivial pattern.
+  * performance improved for very long strings in patterns.
+  * If a file contains data improperly encoded for the current 
+locale, and this is discovered before any of the file's contents
+are output, grep now treats the file as binary.
+  * -P no longer reports an error and exits when given invalid UTF-8
+data. Instead, it considers the data to be non-matching.
+- Bug fixes:
+  * fix issues in multibyte locales
+  * grep -F -x -o no longer prints an extra newline for each match.
+  * grep in a non-UTF8 multibyte locale could mistakenly match in
+the middle of a multibyte character when using a '^'-anchored
+alternate in a pattern, leading it to print non-matching lines.
+  * grep -F Y no longer fails to match in non-UTF8 multibyte locales 
+  * grep -E rejected unmatched ')', instead of treating it like '\)'.
+   
+- Changes in behavior:
+  * The GREP_OPTIONS environment variable is now obsolescent
+  * In locales with multibyte character encodings other than UTF-8,
+grep -P now reports an error and exits instead of misbehaving.
+  * When searching binary data, grep now may treat non-text bytes as
+line terminators.  This can boost performance significantly.
+  * grep -z no longer automatically treats the byte '\200' as
+binary data.
+
+---

Old:

  grep-2.20.tar.xz
  grep-2.20.tar.xz.sig

New:

  grep-2.21.tar.xz
  grep-2.21.tar.xz.sig



Other differences:
--
++ grep.spec ++
--- /var/tmp/diff_new_pack.cDmxOd/_old  2014-12-01 14:00:43.0 +0100
+++ /var/tmp/diff_new_pack.cDmxOd/_new  2014-12-01 14:00:43.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   grep
-Version:2.20
+Version:2.21
 Release:0
 Summary:Print lines matching a pattern
 License:GPL-3.0+

++ grep-2.20.tar.xz -> grep-2.21.tar.xz ++
 35055 lines of diff (skipped)


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



commit trojita for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package trojita for openSUSE:Factory checked 
in at 2014-12-01 14:00:47

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


Package is "trojita"

Changes:

--- /work/SRC/openSUSE:Factory/trojita/trojita.changes  2014-06-25 
21:20:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.trojita.new/trojita.changes 2014-12-01 
14:00:54.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 28 11:10:00 UTC 2014 - tchva...@suse.com
+
+- Add libqt5-sql-sqlite to BuildRequires too
+
+---



Other differences:
--
++ trojita.spec ++
--- /var/tmp/diff_new_pack.I47jCz/_old  2014-12-01 14:00:55.0 +0100
+++ /var/tmp/diff_new_pack.I47jCz/_new  2014-12-01 14:00:55.0 +0100
@@ -36,6 +36,7 @@
 BuildRequires:  cmake >= 2.8.7
 BuildRequires:  git
 BuildRequires:  libqt5-qttools-devel
+BuildRequires:  libqt5-sql-sqlite
 BuildRequires:  ragel
 BuildRequires:  update-desktop-files
 BuildRequires:  xkeyboard-config

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



commit quota for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package quota for openSUSE:Factory checked 
in at 2014-12-01 14:00:45

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


Package is "quota"

Changes:

--- /work/SRC/openSUSE:Factory/quota/quota.changes  2014-11-24 
11:08:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.quota.new/quota.changes 2014-12-01 
14:00:52.0 +0100
@@ -1,0 +2,7 @@
+Fri Nov 28 10:19:05 UTC 2014 - tchva...@suse.com
+
+- Version bump to 4.02 release
+  * Mostly few trivial fixes.
+- Properly run all systemd calls on services
+
+---

Old:

  quota-4.01_git201405011753.tar.xz

New:

  quota-4.02.tar.gz



Other differences:
--
++ quota.spec ++
--- /var/tmp/diff_new_pack.z2bkKe/_old  2014-12-01 14:00:53.0 +0100
+++ /var/tmp/diff_new_pack.z2bkKe/_new  2014-12-01 14:00:53.0 +0100
@@ -17,13 +17,13 @@
 
 
 Name:   quota
-Version:4.01_git201405011753
+Version:4.02
 Release:0
 Summary:Disk Quota System
 License:GPL-2.0 and BSD-3-Clause
 Group:  System/Filesystems
 Url:http://sourceforge.net/projects/linuxquota/
-Source0:%{name}-%{version}.tar.xz
+Source0:
http://downloads.sourceforge.net/project/linuxquota/quota-tools/%{version}/%{name}-%{version}.tar.gz
 Source1:sysconfig.nfs-quota
 Source2:quotad.service
 Source3:quotad_env.sh
@@ -61,7 +61,7 @@
 The quotad init script, which provides quota support on NFS mounts.
 
 %prep
-%setup -q
+%setup -q -n quota-tools
 %patch1
 %patch2
 
@@ -92,6 +92,9 @@
 
 %find_lang %{name}
 
+%pre nfs
+%service_add_pre quotad.service
+
 %post nfs
 %{fillup_only -an nfs}
 %service_add_post quotad.service

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



commit gnuradio for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package gnuradio for openSUSE:Factory 
checked in at 2014-12-01 14:00:52

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


Package is "gnuradio"

Changes:

--- /work/SRC/openSUSE:Factory/gnuradio/gnuradio.changes2014-11-14 
09:19:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnuradio.new/gnuradio.changes   2014-12-01 
14:00:58.0 +0100
@@ -1,0 +2,13 @@
+Fri Nov 28 13:00:16 UTC 2014 - stefan.bru...@rwth-aachen.de
+
+- split out libvolk library package
+
+---
+Tue Nov 25 23:20:41 UTC 2014 - stefan.bru...@rwth-aachen.de
+
+- split out wxWidgets dependent parts
+  The wxWidgets graphics system will be deprecated with GR 3.8,
+  and pulls in a lot of dependencies
+- adjust soname to adhere to library packaging policy
+
+---



Other differences:
--
++ gnuradio.spec ++
--- /var/tmp/diff_new_pack.DcAxOt/_old  2014-12-01 14:01:01.0 +0100
+++ /var/tmp/diff_new_pack.DcAxOt/_new  2014-12-01 14:01:01.0 +0100
@@ -19,7 +19,8 @@
 Name:   gnuradio
 Version:3.7.5.1
 Release:0
-%define soname  0
+%define soname  3_7_5_1-0_0_0
+%define soname_volk  0_0_0
 Summary:GNU software radio
 License:GPL-3.0+
 Group:  Productivity/Hamradio/Other
@@ -64,7 +65,6 @@
 Requires:   python-lxml
 Requires:   python-numpy
 Requires:   python-qt4
-Requires:   python-wxWidgets
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -74,11 +74,25 @@
 that it turns the digital modulation schemes used in today's high
 performance wireless devices into software problems.
 
-%package -n libgnuradio%{soname}
+%packagewxgui
+Summary:Libraries for GNU Radio
+Group:  System/Libraries
+Requires:   python-wxWidgets
+
+%descriptionwxgui
+GNU Radio is a collection of software that when combined with minimal
+hardware, allows the construction of radios where the actual waveforms
+transmitted and received are defined by software. What this means is
+that it turns the digital modulation schemes used in today's high
+performance wireless devices into software problems.
+
+This package contains the wxgui blocks
+
+%package -n libgnuradio-%{soname}
 Summary:Libraries for GNU Radio
 Group:  System/Libraries
 
-%description -n libgnuradio%{soname}
+%description -n libgnuradio-%{soname}
 GNU Radio is a collection of software that when combined with minimal
 hardware, allows the construction of radios where the actual waveforms
 transmitted and received are defined by software. What this means is
@@ -87,6 +101,19 @@
 
 This package contains the libraries for GNU Radio.
 
+%package -n libvolk%{soname_volk}
+Summary:Libraries for GNU Radio
+Group:  System/Libraries
+
+%description -n libvolk%{soname_volk}
+GNU Radio is a collection of software that when combined with minimal
+hardware, allows the construction of radios where the actual waveforms
+transmitted and received are defined by software. What this means is
+that it turns the digital modulation schemes used in today's high
+performance wireless devices into software problems.
+
+This package contains the Vector-Optimized Library of Kernels (VOLK)
+
 %packagedevel
 Summary:Deveopment files for GNU Radio
 Group:  Development/Libraries/Other
@@ -131,6 +158,20 @@
 
 This package contains some examples of using GNU Radio.
 
+%packageexamples-wxgui
+Summary:GNU Radio wxgui examples
+Group:  Productivity/Hamradio/Other
+Requires:   %{name}-wxgui = %{version}
+
+%descriptionexamples-wxgui
+GNU Radio is a collection of software that when combined with minimal
+hardware, allows the construction of radios where the actual waveforms
+transmitted and received are defined by software. What this means is
+that it turns the digital modulation schemes used in today's high
+performance wireless devices into software problems.
+
+This package contains the examples of using GNU Radio depending on wxWidgets.
+
 %prep
 %setup -q
 
@@ -179,9 +220,13 @@
 %fdupes -s %{buildroot}%{_includedir}
 %fdupes -s %{buildroot}%{_libdir}
 
-%post -n libgnuradio%{soname} -p /sbin/ldconfig
+%post -n libgnuradio-%{soname} -p /sbin/ldconfig
+
+%post -n libvolk%{soname_volk} -p /sbin/ldconfig
+
+%postun -n libgnuradio-%{soname} -p /sbin/ldconfig
 
-%postun -n libgnuradio%{soname} -p /sbin/ldconfig
+%postun -n libvolk%{soname_volk} -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root,-)
@@ -202,10 +247,29 @@
 %exclude %{_docdir}/%{

commit lilypond for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package lilypond for openSUSE:Factory 
checked in at 2014-12-01 14:00:49

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


Package is "lilypond"

Changes:

--- /work/SRC/openSUSE:Factory/lilypond/lilypond-doc.changes2014-04-02 
17:24:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.lilypond.new/lilypond-doc.changes   
2014-12-01 14:00:55.0 +0100
@@ -1,0 +2,5 @@
+Thu Nov 27 10:47:01 UTC 2014 - dims...@opensuse.org
+
+- Don't build documentations in parallel. It breaks occasionally.
+
+---



Other differences:
--
++ lilypond-doc.spec ++
--- /var/tmp/diff_new_pack.WCfFkQ/_old  2014-12-01 14:00:56.0 +0100
+++ /var/tmp/diff_new_pack.WCfFkQ/_new  2014-12-01 14:00:56.0 +0100
@@ -142,9 +142,9 @@
 echo "* Start the documentation build *"
 echo "*"
 pushd Documentation
-LILYPOND_EXTERNAL_BINARY="%{_bindir}/lilypond" 
LILYPOND_BINARY=$LILYPOND_EXTERNAL_BINARY make -e %{?jobs:-j%jobs 
CPU_COUNT=%jobs} doc \
+LILYPOND_EXTERNAL_BINARY="%{_bindir}/lilypond" 
LILYPOND_BINARY=$LILYPOND_EXTERNAL_BINARY make -e doc \
 || (lndir  -ignorelinks out-www/notation . && \
-LILYPOND_EXTERNAL_BINARY="%{_bindir}/lilypond" 
LILYPOND_BINARY=$LILYPOND_EXTERNAL_BINARY make %{?jobs:-j%jobs CPU_COUNT=%jobs} 
doc)
+LILYPOND_EXTERNAL_BINARY="%{_bindir}/lilypond" 
LILYPOND_BINARY=$LILYPOND_EXTERNAL_BINARY make doc)
 popd
 make out=www WWW-post
 

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



commit zeromq for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package zeromq for openSUSE:Factory checked 
in at 2014-12-01 14:00:50

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


Package is "zeromq"

Changes:

--- /work/SRC/openSUSE:Factory/zeromq/zeromq.changes2014-11-24 
11:08:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.zeromq.new/zeromq.changes   2014-12-01 
14:00:56.0 +0100
@@ -1,0 +2,6 @@
+Fri Nov 28 11:40:21 UTC 2014 - tchva...@suse.com
+
+- Split the curve-keygen binary to separate subpkg bnc#907584
+  * Add conflicts to new supackage
+
+---



Other differences:
--
++ zeromq.spec ++
--- /var/tmp/diff_new_pack.9Ld08O/_old  2014-12-01 14:00:58.0 +0100
+++ /var/tmp/diff_new_pack.9Ld08O/_new  2014-12-01 14:00:58.0 +0100
@@ -52,6 +52,7 @@
 %package -n %{lib_name}
 Summary:Shared Library for ZeroMQ
 Group:  Productivity/Networking/Web/Servers
+Recommends: %{name}-tools = %{version}
 
 %description -n %{lib_name}
 The 0MQ lightweight messaging kernel is a library which extends the
@@ -63,6 +64,24 @@
 
 This package holds the shared library part of the ZeroMQ package.
 
+%package tools
+Summary:Tools to work with ZeroMQ
+Group:  Productivity/Networking/Web/Servers
+# Conflict old libraries as we collide with them
+Conflicts:  libzmq1
+Conflicts:  libzmq2
+Conflicts:  libzmq3
+
+%description tools
+The 0MQ lightweight messaging kernel is a library which extends the
+standard socket interfaces with features traditionally provided by
+specialised messaging middleware products. 0MQ sockets provide an
+abstraction of asynchronous message queues, multiple messaging patterns,
+message filtering (subscriptions), seamless access to multiple transport
+protocols and more.
+
+This package contains the utilities to work with ZeroMQ library
+
 %package devel
 Summary:Development files for ZeroMQ
 Group:  Development/Languages/C and C++
@@ -108,6 +127,11 @@
 %defattr(-,root,root,-)
 %doc COPYING COPYING.LESSER
 %{_libdir}/libzmq.so.*
+
+%files tools
+%defattr(-,root,root)
+%doc COPYING COPYING.LESSER
+%defattr(-,root,root,-)
 %{_bindir}/curve_keygen
 
 %files devel

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



commit bc for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package bc for openSUSE:Factory checked in 
at 2014-12-01 14:00:33

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


Package is "bc"

Changes:

--- /work/SRC/openSUSE:Factory/bc/bc.changes2012-09-20 15:48:32.0 
+0200
+++ /work/SRC/openSUSE:Factory/.bc.new/bc.changes   2014-12-01 
14:00:44.0 +0100
@@ -1,0 +2,8 @@
+Fri Nov 28 20:48:58 UTC 2014 - tchva...@suse.com
+
+- Clean up with spec-cleaner
+- Add ncurses-devel as it is inherited from readline
+- Explicitely pass without-libedit if we decide to switch for
+  it at some point
+
+---



Other differences:
--
++ bc.spec ++
--- /var/tmp/diff_new_pack.N4Xwwh/_old  2014-12-01 14:00:45.0 +0100
+++ /var/tmp/diff_new_pack.N4Xwwh/_new  2014-12-01 14:00:45.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bc
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,25 +17,24 @@
 
 
 Name:   bc
-BuildRequires:  bison
-BuildRequires:  ed
-BuildRequires:  flex
-%if 0%{?suse_version} > 1220
-BuildRequires:  makeinfo
-%endif
-BuildRequires:  readline-devel
-Url:ftp://ftp.gnu.org/pub/gnu/bc
-PreReq: %{install_info_prereq}
 Version:1.06.95
 Release:0
 Summary:GNU Command Line Calculator
 License:GPL-2.0+
 Group:  Productivity/Scientific/Math
+Url:ftp://ftp.gnu.org/pub/gnu/bc
 Source: ftp://alpha.gnu.org/pub/gnu/bc/bc-%{version}.tar.bz2
 Patch1: bc-1.06-dc_ibase.patch
 Patch2: bc-1.06.95-memleak.patch
 Patch3: bc-1.06.95-matlib.patch
 Patch4: bc-1.06.95-sigintmasking.patch
+BuildRequires:  bison
+BuildRequires:  ed
+BuildRequires:  flex
+BuildRequires:  makeinfo
+BuildRequires:  ncurses-devel
+BuildRequires:  readline-devel
+Requires(post): %{install_info_prereq}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -64,17 +63,13 @@
 %patch4 -p1 -b .sigintmask
 
 %build
-./configure CFLAGS="$RPM_OPT_FLAGS" \
+%configure \
 --with-readline \
---prefix=/usr \
-   --infodir=%{_infodir} \
---mandir=%{_mandir} \
---build=%{_target_cpu}-suse-linux
-rm bc/libmath.h
-make
+--without-libedit
+make %{?_smp_mflags}
 
 %install
-make install DESTDIR=$RPM_BUILD_ROOT
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
 
 %post
 %install_info --info-dir=%{_infodir} %{_infodir}/bc.info.gz
@@ -87,8 +82,8 @@
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING ChangeLog NEWS README COPYING.LIB FAQ
-/usr/bin/bc
-/usr/bin/dc
+%{_bindir}/bc
+%{_bindir}/dc
 %{_infodir}/*.info*
 %{_mandir}/man1/*
 

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



commit java-1_7_0-openjdk for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package java-1_7_0-openjdk for 
openSUSE:Factory checked in at 2014-12-01 14:00:24

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


Package is "java-1_7_0-openjdk"

Changes:

--- 
/work/SRC/openSUSE:Factory/java-1_7_0-openjdk/java-1_7_0-openjdk-bootstrap.changes
  2014-11-24 11:14:33.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.java-1_7_0-openjdk.new/java-1_7_0-openjdk-bootstrap.changes
 2014-12-01 14:00:29.0 +0100
@@ -1,0 +2,13 @@
+Tue Nov 25 10:41:56 UTC 2014 - fst...@suse.com
+
+- Do not require tzdata-java for the bootstrap package
+  * This package is used to provide bootstrap tools for a
+controlled set of packages and does not do anything time zone
+related.
+
+---
+Sun Nov 23 13:46:44 UTC 2014 - sch...@linux-m68k.org
+
+- Define bits to %__isa_bits if defined
+
+---
java-1_7_0-openjdk.changes: same change



Other differences:
--
++ java-1_7_0-openjdk-bootstrap.spec ++
--- /var/tmp/diff_new_pack.E87SDs/_old  2014-12-01 14:00:31.0 +0100
+++ /var/tmp/diff_new_pack.E87SDs/_new  2014-12-01 14:00:31.0 +0100
@@ -95,6 +95,9 @@
 %ifarch x86_64 ia64 s390x
 %global bits 64
 %endif
+%if 0%{?__isa_bits}
+%global bits %{__isa_bits}
+%endif
 %bcond_without bootstrap
 %bcond_with zero
 # Turn on/off some features depending on openSUSE version
@@ -345,10 +348,10 @@
 %package headless
 Summary:JRE based on OpenJDK 7 and IcedTea 7 without X, audio and 
video support
 Group:  Development/Languages/Java
-# Require zoneinfo data provided by tzdata-java subpackage.
-Requires:   tzdata-java
 Requires(pre):  update-alternatives
 %if ! %{with bootstrap}
+# Require zoneinfo data provided by tzdata-java subpackage.
+Requires:   tzdata-java
 Provides:   java-headless = %{version}-%{release}
 Provides:   java-openjdk-headless = %{version}-%{release}
 Provides:   jre-%{javaver}-headless = %{version}-%{release}

++ java-1_7_0-openjdk.spec ++
--- /var/tmp/diff_new_pack.E87SDs/_old  2014-12-01 14:00:31.0 +0100
+++ /var/tmp/diff_new_pack.E87SDs/_new  2014-12-01 14:00:31.0 +0100
@@ -95,6 +95,9 @@
 %ifarch x86_64 ia64 s390x
 %global bits 64
 %endif
+%if 0%{?__isa_bits}
+%global bits %{__isa_bits}
+%endif
 %bcond_with bootstrap
 %bcond_with zero
 # Turn on/off some features depending on openSUSE version
@@ -345,10 +348,10 @@
 %package headless
 Summary:JRE based on OpenJDK 7 and IcedTea 7 without X, audio and 
video support
 Group:  Development/Languages/Java
-# Require zoneinfo data provided by tzdata-java subpackage.
-Requires:   tzdata-java
 Requires(pre):  update-alternatives
 %if ! %{with bootstrap}
+# Require zoneinfo data provided by tzdata-java subpackage.
+Requires:   tzdata-java
 Provides:   java-headless = %{version}-%{release}
 Provides:   java-openjdk-headless = %{version}-%{release}
 Provides:   jre-%{javaver}-headless = %{version}-%{release}



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



commit build-compare for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package build-compare for openSUSE:Factory 
checked in at 2014-12-01 14:00:26

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


Package is "build-compare"

Changes:

--- /work/SRC/openSUSE:Factory/build-compare/build-compare.changes  
2014-11-18 22:53:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.build-compare.new/build-compare.changes 
2014-12-01 14:00:33.0 +0100
@@ -1,0 +2,18 @@
+Wed Nov 26 08:58:45 UTC 2014 - oher...@suse.de
+
+- 2014.11.25
+- correctly handle cmp_spec return code if file checksum differs
+- handle also bz2 and xz compressed files with odd name
+
+---
+Tue Nov 18 11:58:51 UTC 2014 - oher...@suse.de
+
+- 2014.11.15
+- show sorted differences of rpmlint log (bnc#904092)
+- handle kernel and kmp packages, but support for kernel* is disabled
+- minor style fixes
+- handle cpio archives
+- handle absolute symlinks correctly
+- handle all ELF sections, not only the ones starting with dot
+
+---



Other differences:
--
++ build-compare.spec ++
--- /var/tmp/diff_new_pack.w9D07D/_old  2014-12-01 14:00:35.0 +0100
+++ /var/tmp/diff_new_pack.w9D07D/_new  2014-12-01 14:00:35.0 +0100
@@ -20,7 +20,7 @@
 Summary:Build Result Compare Script
 License:GPL-2.0+
 Group:  Development/Tools/Building
-Version:2014.07.15
+Version:2014.11.25
 Release:0
 Source1:COPYING
 Source2:same-build-result.sh
@@ -36,8 +36,7 @@
 
 
 %prep
-mkdir $RPM_BUILD_DIR/%name-%version
-%setup -T 0 -D
+%setup -q -c -T
 
 %build
 

++ functions.sh ++
--- /var/tmp/diff_new_pack.w9D07D/_old  2014-12-01 14:00:35.0 +0100
+++ /var/tmp/diff_new_pack.w9D07D/_new  2014-12-01 14:00:35.0 +0100
@@ -15,16 +15,38 @@
$RPM --qf "$QF" "$1"
 }
 
-function check_provides()
+# Trim release string:
+# - it is used as direntry below certain paths
+# - it is assigned to some variable in scripts, at the end of a line
+# - it is used in PROVIDES, at the end of a line
+function trim_release_old()
+{
+  sed -e 
"/\(\/boot\|\/lib\/modules\|\/lib\/firmware\|\/usr\/src\|$release_old\$\)/{s,-$release_old_regex_l,-@RELEASE_LONG@,g;s,-$release_old_regex_s,-@RELEASE_SHORT@,g}"
+}
+function trim_release_new()
+{
+  sed -e 
"/\(\/boot\|\/lib\/modules\|\/lib\/firmware\|\/usr\/src\|$release_new\$\)/{s,-$release_new_regex_l,-@RELEASE_LONG@,g;s,-$release_new_regex_s,-@RELEASE_SHORT@,g}"
+}
+# Get single directory or filename with long or short release string
+function grep_release_old()
+{
+  grep -E 
"(/boot|/lib/modules|/lib/firmware|/usr/src)/[^/]+(-${release_old_regex_l}(\$|[^/]+\$)|-${release_old_regex_s}(\$|[^/]+\$))"
+}
+function grep_release_new()
 {
+  grep -E 
"(/boot|/lib/modules|/lib/firmware|/usr/src)/[^/]+(-${release_new_regex_l}(\$|[^/]+\$)|-${release_new_regex_s}(\$|[^/]+\$))"
+}
 
+function check_provides()
+{
+  local pkg=$1
   # provides destroy this because at least the self-provide includes the
   # -buildnumber :-(
   QF="[%{PROVIDENAME} %{PROVIDEFLAGS} %{PROVIDEVERSION}\\n]\\n"
   QF="$QF [%{REQUIRENAME} %{REQUIREFLAGS} %{REQUIREVERSION}\\n]\\n"
   QF="$QF [%{CONFLICTNAME} %{CONFLICTFLAGS} %{CONFLICTVERSION}\\n]\\n"
   QF="$QF [%{OBSOLETENAME} %{OBSOLETEFLAGS} %{OBSOLETEVERSION}\\n]\\n"
-  check_header "$1" | sed -e "s,-$2$,-@RELEASE@,"
+  check_header "$pkg"
 }
 
 #usage unrpm  $dir
@@ -51,6 +73,11 @@
 # Sets $files with list of files that need further investigation
 function cmp_spec ()
 {
+local RES
+local file1 file2
+local f
+local sh=$1
+
 QF="%{NAME}"
 
 # don't look at RELEASE, it contains our build number
@@ -81,6 +108,7 @@
 
 # the DISTURL tag can be used as checkin ID
 #echo "$QF"
+echo "comparing rpmtags"
 if ! diff -au $file1 $file2; then
   if test -z "$check_all"; then
 rm $file1 $file2
@@ -89,19 +117,36 @@
 fi
 
 # Remember to quote the . which is in release
-release1=$($RPM --qf "%{RELEASE}" "$oldrpm"|sed -e 's/\./\\./g')
-release2=$($RPM --qf "%{RELEASE}" "$newrpm"|sed -e 's/\./\\./g')
-# This might happen with a forced rebuild of factory
-if [ "${release1%.*}" != "${release2%.*}" ] ; then
-  echo "release prefix mismatch"
-  if test -z "$check_all"; then
-return 1
-  fi
+release_old=$($RPM --qf "%{RELEASE}" "$oldrpm")
+release_new=$($RPM --qf "%{RELEASE}" "$newrpm")
+# Short version without B_CNT
+release_old_regex_s=${release_old%.*}
+release_old_regex_s=${release_old_regex_s//./\\.}
+re

commit gputils for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package gputils for openSUSE:Factory checked 
in at 2014-12-01 14:00:44

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


Package is "gputils"

Changes:

--- /work/SRC/openSUSE:Factory/gputils/gputils.changes  2014-07-29 
21:22:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.gputils.new/gputils.changes 2014-12-01 
14:00:50.0 +0100
@@ -1,0 +2,5 @@
+Thu Nov 27 21:50:12 UTC 2014 - w...@ire.pw.edu.pl
+
+- updated to 1.4.0-1
+
+---

Old:

  gputils-1.3.0.tar.gz

New:

  gputils-1.4.0-1.tar.gz



Other differences:
--
++ gputils.spec ++
--- /var/tmp/diff_new_pack.2N7yia/_old  2014-12-01 14:00:52.0 +0100
+++ /var/tmp/diff_new_pack.2N7yia/_new  2014-12-01 14:00:52.0 +0100
@@ -15,15 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+%define ver 1.4.0
+%define version %{ver}.1
+%define src_ver %{ver}-1
 
 Name:   gputils
-Version:1.3.0
+Version:%{version}
 Release:0
 Summary:Development utilities for Microchip (TM) PIC (TM) 
microcontrollers
 License:GPL-2.0+
 Group:  Development/Tools/Other
 Url:http://gputils.sourceforge.net
-Source: 
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
+Source: 
http://downloads.sourceforge.net/%{name}/%{name}-%{src_ver}.tar.gz
 # PATCH-FIX-OPENSUSE gputils-no-build-time.patch -- fix W: 
file-contains-current-date
 Patch1: gputils-no-build-time.patch
 BuildRequires:  bison
@@ -52,7 +55,7 @@
 Documentation for gputils and supported PIC MCUs.
 
 %prep
-%setup -q
+%setup -q -n %{name}-%{src_ver}
 %patch1 -p1
 
 %build
@@ -66,8 +69,8 @@
 
 # documentation
 install -d %{buildroot}%{_docdir}/%{name}
-mv %{buildroot}%{_datadir}/doc/%{name}-%{version}/html 
%{buildroot}%{_docdir}/%{name}
-rm -r %{buildroot}%{_datadir}/doc/%{name}-%{version}
+mv %{buildroot}%{_datadir}/doc/%{name}-%{ver}/html 
%{buildroot}%{_docdir}/%{name}
+rm -r %{buildroot}%{_datadir}/doc/%{name}-%{ver}
 install -Dm 644 doc/gputils.pdf %{buildroot}%{_docdir}/%{name}
 
 %files
@@ -86,9 +89,11 @@
 %exclude %{_docdir}/%{name}/html/
 %exclude %{_docdir}/%{name}/gputils.pdf
 
+%if 0%{?suse_version} >= 1200
 %files doc
 %defattr(-,root,root)
 %{_docdir}/%{name}/html/
 %{_docdir}/%{name}/gputils.pdf
+%endif
 
 %changelog

++ gputils-no-build-time.patch ++
--- /var/tmp/diff_new_pack.2N7yia/_old  2014-12-01 14:00:52.0 +0100
+++ /var/tmp/diff_new_pack.2N7yia/_new  2014-12-01 14:00:52.0 +0100
@@ -1,7 +1,6 @@
-Index: gputils-1.3.0/gpasm/gpasm.h.in
-===
 gputils-1.3.0.orig/gpasm/gpasm.h.in
-+++ gputils-1.3.0/gpasm/gpasm.h.in
+diff -up gputils-1.4.0-1/gpasm/gpasm.h.in.date gputils-1.4.0-1/gpasm/gpasm.h.in
+--- gputils-1.4.0-1/gpasm/gpasm.h.in.date  2014-08-28 15:26:05.0 
+0200
 gputils-1.4.0-1/gpasm/gpasm.h.in   2014-11-15 23:54:21.0 +0100
 @@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA.  */
  #ifndef __GPASM_H__
  #define __GPASM_H__
@@ -11,10 +10,9 @@
  
  /* This symbol will get placed into the symbol table for the 16bit cores
   * and thus allow compile-time selection of the proper macro set */
-Index: gputils-1.3.0/gplink/gplink.h.in
-===
 gputils-1.3.0.orig/gplink/gplink.h.in
-+++ gputils-1.3.0/gplink/gplink.h.in
+diff -up gputils-1.4.0-1/gplink/gplink.h.in.date 
gputils-1.4.0-1/gplink/gplink.h.in
+--- gputils-1.4.0-1/gplink/gplink.h.in.date2014-06-25 10:26:58.0 
+0200
 gputils-1.4.0-1/gplink/gplink.h.in 2014-11-15 23:54:21.0 +0100
 @@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA.  */
  #ifndef GPLINK_H
  #define GPLINK_H
@@ -24,23 +22,21 @@
  
  #define MAX_PATHS 100
  
-Index: gputils-1.3.0/gputils/gpdasm.h.in
-===
 gputils-1.3.0.orig/gputils/gpdasm.h.in
-+++ gputils-1.3.0/gputils/gpdasm.h.in
-@@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA.  */
- #ifndef __GPDASM_H__
- #define __GPDASM_H__
+diff -up gputils-1.4.0-1/gputils/gpdasm.h.in.date 
gputils-1.4.0-1/gputils/gpdasm.h.in
+--- gputils-1.4.0-1/gputils/gpdasm.h.in.date   2014-11-15 23:54:21.0 
+0100
 gputils-1.4.0-1/gputils/gpdasm.h.in2014-11-15 23:55:43.0 
+0100
+@@ -24,7 +24,7 @@ Boston, MA 02111-1307, USA.  */
+ 
+ #include "labelset.h"
  
 -#define GPDASM_VERSION_STRING ("gpdasm-" VERSION " #" @REVISION@ " (" 
__DATE__ ")")
 +#define GPDASM_VERSION_STRING ("gpdasm-" VERSION " #" @REVISI

commit sblim-sfcb for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package sblim-sfcb for openSUSE:Factory 
checked in at 2014-12-01 14:00:42

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


Package is "sblim-sfcb"

Changes:

--- /work/SRC/openSUSE:Factory/sblim-sfcb/sblim-sfcb.changes2014-09-17 
21:25:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.sblim-sfcb.new/sblim-sfcb.changes   
2014-12-01 14:00:47.0 +0100
@@ -1,0 +2,7 @@
+Wed Nov 19 23:37:00 UTC 2014 - Led 
+
+- fix bashisms in scripts
+- add patches:
+  * sblim-sfcb-1.4.8-fix-bashisms.patch
+
+---

New:

  sblim-sfcb-1.4.8-fix-bashisms.patch



Other differences:
--
++ sblim-sfcb.spec ++
--- /var/tmp/diff_new_pack.5t1kOf/_old  2014-12-01 14:00:49.0 +0100
+++ /var/tmp/diff_new_pack.5t1kOf/_new  2014-12-01 14:00:49.0 +0100
@@ -52,6 +52,8 @@
 Patch8: 0008-Increase-max-trace-msg-len-to-4096.patch
 Patch10:0010-Properly-shut-down-if-provider-crashed.patch
 
+Patch11:sblim-sfcb-1.4.8-fix-bashisms.patch
+
 Provides:   cim-server
 Provides:   cimserver
 BuildRequires:  cmpi-devel
@@ -122,6 +124,7 @@
 %patch7 -p1
 %patch8 -p1
 %patch10 -p1
+%patch11 -p1
 
 export PATCH_GET=0
 

++ sblim-sfcb-1.4.8-fix-bashisms.patch ++
diff -Ndur sblim-sfcb-1.4.8/sfcbrepos.sh.in 
sblim-sfcb-1.4.8-fix-bashisms/sfcbrepos.sh.in
--- sblim-sfcb-1.4.8/sfcbrepos.sh.in2014-03-27 01:46:32.0 +0200
+++ sblim-sfcb-1.4.8-fix-bashisms/sfcbrepos.sh.in   2014-11-20 
01:29:30.682816110 +0200
@@ -53,15 +53,15 @@
 if [ "$help" = "1" ]
 then
 usage
-echo -e "\t-h display help message"
-echo -e "\t-f force repository creation"
-echo -e "\t-i do not migrate instances from previous repository 
(default=do migrate)"
-echo -e "\t-X create repository in non-native format as specifed by 
argument"
-echo -e "\t-s specify staging directory [@localstatedir@/lib/sfcb/stage]"
-echo -e "\t-r specify repository directory 
[@localstatedir@/lib/sfcb/registration]"
-echo -e "\t-c specify directory containing CIM Schema MOFs 
[@datadir@/sfcb/CIM]"
-echo -e "\t-t create tiny class repository by omitting inheritance 
information"
-echo -e "\t-z compress repository with gzip"
+echo " -h display help message"
+echo " -f force repository creation"
+echo " -i do not migrate instances from previous repository 
(default=do migrate)"
+echo " -X create repository in non-native format as specifed by 
argument"
+echo " -s specify staging directory [@localstatedir@/lib/sfcb/stage]"
+echo " -r specify repository directory 
[@localstatedir@/lib/sfcb/registration]"
+echo " -c specify directory containing CIM Schema MOFs 
[@datadir@/sfcb/CIM]"
+echo " -t create tiny class repository by omitting inheritance 
information"
+echo " -z compress repository with gzip"
 echo
 echo "Use to create sfcb provider registration and class repository."
 exit 0
diff -Ndur sblim-sfcb-1.4.8/sfcbstage.sh.in 
sblim-sfcb-1.4.8-fix-bashisms/sfcbstage.sh.in
--- sblim-sfcb-1.4.8/sfcbstage.sh.in2014-03-27 01:46:32.0 +0200
+++ sblim-sfcb-1.4.8-fix-bashisms/sfcbstage.sh.in   2014-11-20 
01:30:06.980816161 +0200
@@ -40,10 +40,10 @@
 if [ "$help" = "1" ]
 then
 usage
-echo -e "\t-h display help message"
-echo -e "\t-n specify CIM namespace [root/cimv2]"
-echo -e "\t-s specify staging directory [@localstatedir@/lib/sfcb/stage]"
-echo -e "\t-r specify sfcb registration file"
+echo " -h display help message"
+echo " -n specify CIM namespace [root/cimv2]"
+echo " -s specify staging directory [@localstatedir@/lib/sfcb/stage]"
+echo " -r specify sfcb registration file"
 echo
 echo Use this command to copy registration files to the sfcb staging area.
 exit 0
diff -Ndur sblim-sfcb-1.4.8/sfcbunstage.sh.in 
sblim-sfcb-1.4.8-fix-bashisms/sfcbunstage.sh.in
--- sblim-sfcb-1.4.8/sfcbunstage.sh.in  2014-03-27 01:46:32.0 +0200
+++ sblim-sfcb-1.4.8-fix-bashisms/sfcbunstage.sh.in 2014-11-20 
01:30:37.343816203 +0200
@@ -41,10 +41,10 @@
 if [ "$help" = "1" ]
 then
 usage
-echo -e "\t-h display help message"
-echo -e "\t-n specify CIM namespace [root/cimv2]"
-echo -e "\t-s specify staging directory [@localstatedir@/lib/sfcb/stage]"
-echo -e "\t-r specify sfcb registration file "
+echo " -h display help message"
+echo " -n specify CIM namespace [root/cimv2]"
+echo " -s specify staging directory [@localstatedir@/lib/sfcb/stage]"
+echo " -r specify sfcb registratio

commit python3-IPython for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python3-IPython for openSUSE:Factory 
checked in at 2014-12-01 14:00:40

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


Package is "python3-IPython"

Changes:

--- /work/SRC/openSUSE:Factory/python3-IPython/python3-IPython.changes  
2014-10-14 07:13:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-IPython.new/python3-IPython.changes 
2014-12-01 14:00:46.0 +0100
@@ -1,0 +2,7 @@
+Wed Nov 26 01:27:07 UTC 2014 - a...@gmx.de
+
+- update to 2.3.1
+  * don’t use text mode in mkstemp
+  * Notebook.ipynb CR+LF turned into CR+CR+LF
+
+---

Old:

  ipython-2.3.0.tar.gz

New:

  ipython-2.3.1.tar.gz



Other differences:
--
++ python3-IPython.spec ++
--- /var/tmp/diff_new_pack.pMrHbh/_old  2014-12-01 14:00:47.0 +0100
+++ /var/tmp/diff_new_pack.pMrHbh/_new  2014-12-01 14:00:47.0 +0100
@@ -18,7 +18,7 @@
 
 %definemodname IPython
 Name:   python3-%{modname}
-Version:2.3.0
+Version:2.3.1
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ipython-2.3.0.tar.gz -> ipython-2.3.1.tar.gz ++
/work/SRC/openSUSE:Factory/python3-IPython/ipython-2.3.0.tar.gz 
/work/SRC/openSUSE:Factory/.python3-IPython.new/ipython-2.3.1.tar.gz differ: 
char 5, line 1

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



commit tcpd for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package tcpd for openSUSE:Factory checked in 
at 2014-12-01 14:00:29

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


Package is "tcpd"

Changes:

--- /work/SRC/openSUSE:Factory/tcpd/tcpd.changes2014-08-21 
17:24:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.tcpd.new/tcpd.changes   2014-12-01 
14:00:35.0 +0100
@@ -1,0 +2,7 @@
+Fri Nov 28 13:18:37 UTC 2014 - tchva...@suse.com
+
+- Cleanup with spec-cleaner
+- Remove obsolete sections of provides from 2k6
+- Remove static library
+
+---



Other differences:
--
++ tcpd.spec ++
--- /var/tmp/diff_new_pack.oTGdpT/_old  2014-12-01 14:00:40.0 +0100
+++ /var/tmp/diff_new_pack.oTGdpT/_new  2014-12-01 14:00:40.0 +0100
@@ -16,21 +16,14 @@
 #
 
 
-Name:   tcpd
 %define lname  libwrap0
-Url:ftp://ftp.porcupine.org/pub/security/index.html
-BuildRequires:  linux-kernel-headers
-Provides:   nkitb:/usr/sbin/tcpd
-# bug437293
-%ifarch ppc64
-Obsoletes:  tcpd-64bit
-%endif
-#
+Name:   tcpd
 Version:7.6
 Release:0
 Summary:A security wrapper for TCP daemons
 License:BSD-3-Clause
 Group:  Productivity/Networking/System
+Url:ftp://ftp.porcupine.org/pub/security/index.html
 Source: 
ftp://ftp.porcupine.org/pub/security/tcp_wrappers_%{version}.tar.gz
 Source2:baselibs.conf
 Patch0: tcp_wrappers_%{version}.diff
@@ -63,6 +56,8 @@
 Patch27:tcp_wrappers_%{version}-fedora-bug17847.diff
 Patch28:tcp_wrappers_7.6-implicit-decl.patch
 Patch29:tcpd-ocloexec.patch
+BuildRequires:  linux-kernel-headers
+Provides:   nkitb:%{_sbindir}/tcpd
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -70,24 +65,19 @@
 filter incoming requests for finger, ftp, telnet, rlogin, rsh, exec,
 tftp, talk, and other network services.
 
-%package -n %lname
+%package -n %{lname}
 Summary:The TCP wrapper library
 Group:  System/Libraries
 
-%description -n %lname
+%description -n %{lname}
 This package contains a library which implements classifying incoming
-requests (connections) based upon rule exclusion files (/etc/hosts.*).
+requests (connections) based upon rule exclusion files 
(%{_sysconfdir}/hosts.*).
 
 %package devel
 Summary:Include Files and Libraries for the TCP wrapper library
-Group:  Productivity/Networking/System
-Requires:   %lname = %{version}
+Group:  Development/Languages/C and C++
+Requires:   %{lname} = %{version}
 Requires:   glibc-devel
-# bug437293
-%ifarch ppc64
-Obsoletes:  tcpd-devel-64bit
-%endif
-#
 
 %description devel
 This package contains the library and header files, which are necessary
@@ -125,9 +115,9 @@
 %patch27
 %patch28
 %patch29
+
 %build
-# make RPM_OPT_FLAGS="%{optflags} -fPIC -DPIC -D_REENTRANT -DHAVE_STRERROR" 
LDFLAGS="-pie" MAJOR=%{LIB_MAJOR} MINOR=%{LIB_MINOR} REL=%{LIB_REL} linux
-make %{?_smp_mflags} linux CC="gcc"
+make %{?_smp_mflags} linux CC=cc
 
 %install
 install -d -m 755 %{buildroot}%{_includedir}
@@ -136,7 +126,6 @@
 install -d -m 755 %{buildroot}%{_mandir}/man{1,3,5,8}
 install -d -m 755 %{buildroot}/%{_lib}
 install -m 644 ip6utils.h tcpd.h %{buildroot}%{_includedir}
-install -m 644 libwrap.a %{buildroot}/%{_libdir}
 install -m 755 safe_finger tcpd tcpdchk tcpdmatch try-from 
%{buildroot}%{_sbindir}
 install -m 644 hosts_access.3 %{buildroot}%{_mandir}/man3
 install -m 644 hosts_access.5 hosts_options.5 %{buildroot}%{_mandir}/man5
@@ -147,26 +136,25 @@
 cd %{buildroot}%{_libdir}
 ln -sf /%{_lib}/libwrap.so.0.%{version} libwrap.so
 
-%post -n %lname -p /sbin/ldconfig
+%post -n %{lname} -p /sbin/ldconfig
 
-%postun -n %lname -p /sbin/ldconfig
+%postun -n %{lname} -p /sbin/ldconfig
 
 %files
-%defattr(644,root,root,755)
+%defattr(-,root,root)
 %doc BLURB CHANGES DISCLAIMER README README.ipv6 README.NIS
 %doc %{_mandir}/man?/*
 %attr(755,root,root) %{_sbindir}/*
 
-%files -n %lname
+%files -n %{lname}
 %defattr(-,root,root)
 %doc DISCLAIMER
 %attr(755,root,root) /%{_lib}/libwrap.so.0*
 
 %files devel
-%defattr(644,root,root,755)
+%defattr(-,root,root)
 %{_includedir}/tcpd.h
 %{_includedir}/ip6utils.h
-%{_libdir}/libwrap.a
 %{_libdir}/libwrap.so
 
 %changelog

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



commit ncurses for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-12-01 14:00:21

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


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-11-04 
17:27:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-12-01 
14:00:22.0 +0100
@@ -1,0 +2,18 @@
+Mon Nov 17 13:13:16 UTC 2014 - wer...@suse.de
+
+- Do not use new symbol versioning as some common symbols are missed
+- Add ncurses patch 20141115
+  + improve description of limits for color values and color pairs in
+curs_color.3x (prompted by patch by Tim van der Molen).
+  + add VERSION file, using first field in that to record the ABI version
+used for configure --with-libtool --disable-libtool-version
+  + add configure options for applying the ".map" and ".sym" files to
+the ncurses, form, menu and panel libraries.
+  + add ".map" and ".sym" files to show exported symbols, e.g., for
+symbol-versioning.
+- Add ncurses patch 20141101
+  + improve strict compiler-warnings by adding a cast in TRACE_RETURN
+and making a new TRACE_RETURN1 macro for cases where the cast does
+not apply.
+
+---



Other differences:
--
++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.mS9XXs/_old  2014-12-01 14:00:24.0 +0100
+++ /var/tmp/diff_new_pack.mS9XXs/_new  2014-12-01 14:00:24.0 +0100
@@ -17,9 +17,9 @@
 +++ configure  2013-09-30 09:17:52.0 +
 @@ -6526,6 +6526,7 @@ else
  fi;
- echo "$as_me:6527: result: $with_overwrite" >&5
+ echo "$as_me:6733: result: $with_overwrite" >&5
  echo "${ECHO_T}$with_overwrite" >&6
 +WITH_OVERWRITE="$with_overwrite"
  
- echo "$as_me:6530: checking if external terminfo-database is used" >&5
+ echo "$as_me:6736: checking if external terminfo-database is used" >&5
  echo $ECHO_N "checking if external terminfo-database is used... $ECHO_C" >&6

++ ncurses-5.9-patches.tar.bz2 ++
 24083 lines of diff (skipped)

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



commit systemd-rpm-macros for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package systemd-rpm-macros for 
openSUSE:Factory checked in at 2014-12-01 14:00:25

Comparing /work/SRC/openSUSE:Factory/systemd-rpm-macros (Old)
 and  /work/SRC/openSUSE:Factory/.systemd-rpm-macros.new (New)


Package is "systemd-rpm-macros"

Changes:

--- /work/SRC/openSUSE:Factory/systemd-rpm-macros/systemd-rpm-macros.changes
2014-10-19 19:27:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.systemd-rpm-macros.new/systemd-rpm-macros.changes   
2014-12-01 14:00:32.0 +0100
@@ -1,0 +2,11 @@
+Tue Nov 18 15:16:13 UTC 2014 - wer...@suse.de
+
+- Mark /etc/rpm/macros.systemd as configuration file 
+
+---
+Tue Nov 18 13:30:37 UTC 2014 - wer...@suse.de
+
+- Apply then delete patch systemd-daemon-reload-before-service-restart.patch
+- Add orignal systemd macros as well (boo#807164)
+
+---

Old:

  systemd-daemon-reload-before-service-restart.patch



Other differences:
--
++ systemd-rpm-macros.spec ++
--- /var/tmp/diff_new_pack.KOfrZU/_old  2014-12-01 14:00:33.0 +0100
+++ /var/tmp/diff_new_pack.KOfrZU/_new  2014-12-01 14:00:33.0 +0100
@@ -29,8 +29,6 @@
 Requires:   coreutils
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-# make systemd aware of changed unit file content after update
-Patch0: systemd-daemon-reload-before-service-restart.patch  
 
 %description
 Starting with openSUSE 12.1, several RPM macros must be used to package systemd
@@ -38,7 +36,6 @@
 
 %prep
 cd %{_sourcedir}
-%patch0 -p1
 
 %build
 
@@ -57,6 +54,6 @@
 
 %files -f unitdir
 %defattr(-,root,root)
-%{_sysconfdir}/rpm/macros.systemd
+%config %{_sysconfdir}/rpm/macros.systemd
 
 %changelog

++ macros.systemd ++
--- /var/tmp/diff_new_pack.KOfrZU/_old  2014-12-01 14:00:33.0 +0100
+++ /var/tmp/diff_new_pack.KOfrZU/_new  2014-12-01 14:00:33.0 +0100
@@ -29,6 +29,7 @@
 Requires(postun): systemd  
\
 
 %_unitdir /usr/lib/systemd/system
+%_userunitdir /usr/lib/systemd/user
 %_presetdir /usr/lib/systemd/system-preset
 %_udevhwdbdir /usr/lib/udev/hwdb.d
 %_udevrulesdir /usr/lib/udev/rules.d
@@ -36,6 +37,7 @@
 %_tmpfilesdir /usr/lib/tmpfiles.d
 %_sysctldir /usr/lib/sysctl.d
 %_ntpunitsdir /usr/lib/systemd/ntp-units.d
+%_binfmtdir /usr/lib/binfmt.d
 
 %service_add_pre() 
\
 test -n "$FIRST_ARG" || FIRST_ARG=$1   
\
@@ -57,7 +59,7 @@
   for service in %{?*} ; do
\
 sysv_service=${service%.*} 
\
 if [ ! -e "/var/lib/systemd/migrated/$sysv_service" ]; then
\
-   services_to_migrate="$services_to_migrate $sysv_service"
\
+  services_to_migrate="$services_to_migrate $sysv_service" 
\
 fi 
\
   done 
\
   if [ -n "$services_to_migrate" ]; then   
\
@@ -97,7 +99,7 @@
 test -n "$FIRST_ARG" || FIRST_ARG=$1   
\
 if [ $FIRST_ARG -eq 0 ]; then  
\
 # Package removal, not upgrade 
\
- /usr/bin/systemctl --no-reload disable %{?*} > /dev/null 2>&1 || :
\
+ /usr/bin/systemctl --no-reload disable %{?*} > /dev/null 2>&1 || :
\
  /usr/bin/systemctl stop %{?*} > /dev/null 2>&1 || :   
\
 fi 
\
 %{nil}
@@ -108,8 +110,9 @@
 if [ $FIRST_ARG -ge 1 ]; then  
\
 # Package upgrade, not uninstall   
\
   if test "$YAST_IS_RUNNING" != "instsys" -a "$DISABLE_RESTART_ON_UPDATE" != 
yes ; then \
-/usr/bin/systemctl try-restart %{?*} >/dev/null 2>&1 || :  
\
-  fi \
+/usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :  
\
+/usr/bin/systemctl try-restart %{?*} >/dev/null 2>&1 || :  
\
+  fi

commit elfutils for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package elfutils for openSUSE:Factory 
checked in at 2014-12-01 14:00:22

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


Package is "elfutils"

Changes:

--- /work/SRC/openSUSE:Factory/elfutils/elfutils.changes2014-09-03 
23:38:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.elfutils.new/elfutils.changes   2014-12-01 
14:00:27.0 +0100
@@ -1,0 +2,5 @@
+Wed Oct 15 15:06:23 UTC 2014 - jeng...@inai.de
+
+- Update homepage URL and improve RPM group classification
+
+---



Other differences:
--
++ elfutils.spec ++
--- /var/tmp/diff_new_pack.gbTACu/_old  2014-12-01 14:00:29.0 +0100
+++ /var/tmp/diff_new_pack.gbTACu/_new  2014-12-01 14:00:29.0 +0100
@@ -21,8 +21,10 @@
 Release:0
 Summary:Higher-level library to access ELF
 License:SUSE-GPL-2.0-with-OSI-exception
-Group:  System/Libraries
-Url:http://elfutils.fedorahosted.org
+Group:  Development/Tools/Building
+Url:http://fedorahosted.org/elfutils/
+
+#Git-Clone:git://git.fedorahosted.org/git/elfutils
 Source: 
https://fedorahosted.org/releases/e/l/%{name}/%{version}/%{name}-%{version}.tar.bz2
 Source1:README-BEFORE-ADDING-PATCHES
 Source2:baselibs.conf
@@ -49,7 +51,7 @@
 
 %package -n libasm1
 Summary:A collection of utilities and DSOs to handle compiled objects
-Group:  Development/Tools/Other
+Group:  System/Libraries
 
 %description -n libasm1
 Elfutils is a collection of utilities, including ld (a linker), nm (for
@@ -61,7 +63,7 @@
 
 %package -n libasm-devel
 Summary:A collection of utilities and DSOs to handle compiled objects
-Group:  Development/Tools/Other
+Group:  Development/Libraries/C and C++
 Requires:   glibc-devel
 Requires:   libasm1 = %{version}
 
@@ -75,7 +77,7 @@
 
 %package -n libebl1
 Summary:A collection of utilities and DSOs to handle compiled objects
-Group:  Development/Tools/Other
+Group:  System/Libraries
 Provides:   libebl = %{version}
 Obsoletes:  libebl < %{version}
 
@@ -137,7 +139,7 @@
 to develop applications that require these.
 
 %prep
-%setup -q -n elfutils-%{version}
+%setup -q
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1

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



commit tar for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package tar for openSUSE:Factory checked in 
at 2014-12-01 14:00:19

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


Package is "tar"

Changes:

--- /work/SRC/openSUSE:Factory/tar/tar.changes  2014-08-30 16:04:46.0 
+0200
+++ /work/SRC/openSUSE:Factory/.tar.new/tar.changes 2014-12-01 
14:00:19.0 +0100
@@ -1,0 +2,5 @@
+Thu Nov 20 19:13:19 UTC 2014 - andreas.stie...@gmx.de
+
+- compile in ACLs, Xattr and selinux support [boo#906413]
+
+---



Other differences:
--
++ tar.spec ++
--- /var/tmp/diff_new_pack.Pf2Yjj/_old  2014-12-01 14:00:20.0 +0100
+++ /var/tmp/diff_new_pack.Pf2Yjj/_new  2014-12-01 14:00:20.0 +0100
@@ -42,6 +42,9 @@
 Patch20:add_readme-tests.patch
 %if 0%{?suse_version} >= %min_suse_ver
 BuildRequires:  help2man
+BuildRequires:  libacl-devel
+BuildRequires:  libattr-devel
+BuildRequires:  libselinux-devel
 Recommends: tar-lang = %{version}
 Recommends: xz
 %endif



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



commit python3 for openSUSE:12.3:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python3 for openSUSE:12.3:Update 
checked in at 2014-12-01 11:04:05

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


Package is "python3"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.YOasVU/_old  2014-12-01 11:04:15.0 +0100
+++ /var/tmp/diff_new_pack.YOasVU/_new  2014-12-01 11:04:15.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-l10n for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-l10n for 
openSUSE:13.1:Update checked in at 2014-12-01 11:04:05

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-l10n (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-l10n.new (New)


Package is "libreoffice-l10n"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.w7xre0/_old  2014-12-01 11:04:06.0 +0100
+++ /var/tmp/diff_new_pack.w7xre0/_new  2014-12-01 11:04:06.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-help-group1 for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-help-group1 for 
openSUSE:13.1:Update checked in at 2014-12-01 11:03:49

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-help-group1 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-help-group1.new (New)


Package is "libreoffice-help-group1"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.ozsaVW/_old  2014-12-01 11:03:51.0 +0100
+++ /var/tmp/diff_new_pack.ozsaVW/_new  2014-12-01 11:03:51.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-help-group5 for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-help-group5 for 
openSUSE:13.1:Update checked in at 2014-12-01 11:03:59

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-help-group5 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-help-group5.new (New)


Package is "libreoffice-help-group5"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.doTUZA/_old  2014-12-01 11:04:01.0 +0100
+++ /var/tmp/diff_new_pack.doTUZA/_new  2014-12-01 11:04:01.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-help-en-US for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-help-en-US for 
openSUSE:13.1:Update checked in at 2014-12-01 11:03:45

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-help-en-US (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-help-en-US.new (New)


Package is "libreoffice-help-en-US"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.30Aj1k/_old  2014-12-01 11:03:47.0 +0100
+++ /var/tmp/diff_new_pack.30Aj1k/_new  2014-12-01 11:03:47.0 +0100
@@ -1 +1 @@
-
+

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



commit python-base for openSUSE:12.3:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python-base for openSUSE:12.3:Update 
checked in at 2014-12-01 11:03:48

Comparing /work/SRC/openSUSE:12.3:Update/python-base (Old)
 and  /work/SRC/openSUSE:12.3:Update/.python-base.new (New)


Package is "python-base"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.wwpawY/_old  2014-12-01 11:03:49.0 +0100
+++ /var/tmp/diff_new_pack.wwpawY/_new  2014-12-01 11:03:49.0 +0100
@@ -1 +1 @@
-
+

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



commit python-doc for openSUSE:12.3:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python-doc for openSUSE:12.3:Update 
checked in at 2014-12-01 11:03:50

Comparing /work/SRC/openSUSE:12.3:Update/python-doc (Old)
 and  /work/SRC/openSUSE:12.3:Update/.python-doc.new (New)


Package is "python-doc"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.E7Bj8S/_old  2014-12-01 11:03:55.0 +0100
+++ /var/tmp/diff_new_pack.E7Bj8S/_new  2014-12-01 11:03:55.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-help-group3 for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-help-group3 for 
openSUSE:13.1:Update checked in at 2014-12-01 11:03:54

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-help-group3 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-help-group3.new (New)


Package is "libreoffice-help-group3"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.ocb2ch/_old  2014-12-01 11:03:58.0 +0100
+++ /var/tmp/diff_new_pack.ocb2ch/_new  2014-12-01 11:03:58.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice for openSUSE:13.1:Update 
checked in at 2014-12-01 11:04:07

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


Package is "libreoffice"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.GyTuPs/_old  2014-12-01 11:04:15.0 +0100
+++ /var/tmp/diff_new_pack.GyTuPs/_new  2014-12-01 11:04:15.0 +0100
@@ -1 +1 @@
-
+

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



commit python-doc for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python-doc for openSUSE:13.1:Update 
checked in at 2014-12-01 11:03:50

Comparing /work/SRC/openSUSE:13.1:Update/python-doc (Old)
 and  /work/SRC/openSUSE:13.1:Update/.python-doc.new (New)


Package is "python-doc"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.08FQp0/_old  2014-12-01 11:03:52.0 +0100
+++ /var/tmp/diff_new_pack.08FQp0/_new  2014-12-01 11:03:52.0 +0100
@@ -1 +1 @@
-
+

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



commit python3-doc for openSUSE:12.3:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python3-doc for openSUSE:12.3:Update 
checked in at 2014-12-01 11:04:02

Comparing /work/SRC/openSUSE:12.3:Update/python3-doc (Old)
 and  /work/SRC/openSUSE:12.3:Update/.python3-doc.new (New)


Package is "python3-doc"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.yqv6Im/_old  2014-12-01 11:04:04.0 +0100
+++ /var/tmp/diff_new_pack.yqv6Im/_new  2014-12-01 11:04:04.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-help-en-US.3215 for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-help-en-US.3215 for 
openSUSE:13.1:Update checked in at 2014-12-01 11:03:44

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-help-en-US.3215 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-help-en-US.3215.new (New)


Package is "libreoffice-help-en-US.3215"

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



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



commit libreoffice-icon-themes for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-icon-themes for 
openSUSE:13.1:Update checked in at 2014-12-01 11:04:03

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-icon-themes (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-icon-themes.new (New)


Package is "libreoffice-icon-themes"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.RJO9YH/_old  2014-12-01 11:04:05.0 +0100
+++ /var/tmp/diff_new_pack.RJO9YH/_new  2014-12-01 11:04:05.0 +0100
@@ -1 +1 @@
-
+

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



commit python-base for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python-base for openSUSE:13.1:Update 
checked in at 2014-12-01 11:03:47

Comparing /work/SRC/openSUSE:13.1:Update/python-base (Old)
 and  /work/SRC/openSUSE:13.1:Update/.python-base.new (New)


Package is "python-base"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.nFA1qc/_old  2014-12-01 11:03:49.0 +0100
+++ /var/tmp/diff_new_pack.nFA1qc/_new  2014-12-01 11:03:49.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-help-group2 for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-help-group2 for 
openSUSE:13.1:Update checked in at 2014-12-01 11:03:52

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-help-group2 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-help-group2.new (New)


Package is "libreoffice-help-group2"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.6iIHil/_old  2014-12-01 11:03:57.0 +0100
+++ /var/tmp/diff_new_pack.6iIHil/_new  2014-12-01 11:03:57.0 +0100
@@ -1 +1 @@
-
+

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



commit python for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python for openSUSE:13.1:Update 
checked in at 2014-12-01 11:03:53

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


Package is "python"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.GsKJLO/_old  2014-12-01 11:03:57.0 +0100
+++ /var/tmp/diff_new_pack.GsKJLO/_new  2014-12-01 11:03:57.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-help-group4 for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-help-group4 for 
openSUSE:13.1:Update checked in at 2014-12-01 11:03:56

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-help-group4 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-help-group4.new (New)


Package is "libreoffice-help-group4"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.NE9hn3/_old  2014-12-01 11:03:58.0 +0100
+++ /var/tmp/diff_new_pack.NE9hn3/_new  2014-12-01 11:03:58.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-help-group1.3215 for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-help-group1.3215 for 
openSUSE:13.1:Update checked in at 2014-12-01 11:03:47

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-help-group1.3215 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-help-group1.3215.new (New)


Package is "libreoffice-help-group1.3215"

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



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



commit python for openSUSE:12.3:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python for openSUSE:12.3:Update 
checked in at 2014-12-01 11:03:54

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


Package is "python"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.k8fE9c/_old  2014-12-01 11:03:57.0 +0100
+++ /var/tmp/diff_new_pack.k8fE9c/_new  2014-12-01 11:03:57.0 +0100
@@ -1 +1 @@
-
+

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



commit libreoffice-branding-upstream for openSUSE:13.1:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package libreoffice-branding-upstream for 
openSUSE:13.1:Update checked in at 2014-12-01 11:03:40

Comparing /work/SRC/openSUSE:13.1:Update/libreoffice-branding-upstream (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libreoffice-branding-upstream.new 
(New)


Package is "libreoffice-branding-upstream"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.hhbAiG/_old  2014-12-01 11:03:43.0 +0100
+++ /var/tmp/diff_new_pack.hhbAiG/_new  2014-12-01 11:03:43.0 +0100
@@ -1 +1 @@
-
+

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



commit python3-base for openSUSE:12.3:Update

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package python3-base for 
openSUSE:12.3:Update checked in at 2014-12-01 11:03:57

Comparing /work/SRC/openSUSE:12.3:Update/python3-base (Old)
 and  /work/SRC/openSUSE:12.3:Update/.python3-base.new (New)


Package is "python3-base"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.gQNMPr/_old  2014-12-01 11:03:58.0 +0100
+++ /var/tmp/diff_new_pack.gQNMPr/_new  2014-12-01 11:03:58.0 +0100
@@ -1 +1 @@
-
+

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