commit python-cliff for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package python-cliff for openSUSE:Factory 
checked in at 2014-01-31 09:44:04

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


Package is python-cliff

Changes:

--- /work/SRC/openSUSE:Factory/python-cliff/python-cliff.changes
2013-10-01 08:26:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-cliff.new/python-cliff.changes   
2014-01-31 09:44:05.0 +0100
@@ -1,0 +2,12 @@
+Tue Jan 21 13:22:18 UTC 2014 - dmuel...@suse.com
+
+- update to 1.5.2:
+  * Fix the arguments passed to commands when they are instantiated to
+  pull out help.
+  * Add bash command completion.
+  * Use stevedore to load formatter plugins
+  * Use pbr for packaging
+- add remove-distribute-dep.patch: remove distribute dependency
+- add 0001-Fix-doc-build-with-Python-2.6.x.patch: Fix build with python 2.6
+
+---

Old:

  cliff-1.4.5.tar.gz

New:

  0001-Fix-doc-build-with-Python-2.6.x.patch
  cliff-1.5.2.tar.gz
  remove-distribute-dep.patch



Other differences:
--
++ python-cliff.spec ++
--- /var/tmp/diff_new_pack.zsDXdx/_old  2014-01-31 09:44:06.0 +0100
+++ /var/tmp/diff_new_pack.zsDXdx/_new  2014-01-31 09:44:06.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-cliff
 #
-# 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,31 +17,39 @@
 
 
 Name:   python-cliff
-Version:1.4.5
+Version:1.5.2
 Release:0
 Url:https://github.com/dreamhost/cliff
 Summary:Command Line Interface Formulation Framework
 License:Apache-2.0
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/c/cliff/cliff-%{version}.tar.gz
+Patch0: remove-distribute-dep.patch
+Patch1: 0001-Fix-doc-build-with-Python-2.6.x.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-argparse
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-BuildRequires:  python-tablib
 # Test requirements:
 BuildRequires:  python-PrettyTable
+BuildRequires:  python-Sphinx
 BuildRequires:  python-cmd2
 BuildRequires:  python-coverage
 BuildRequires:  python-mock = 1.0.1
 BuildRequires:  python-nose
+BuildRequires:  python-pbr
 BuildRequires:  python-pep8
 BuildRequires:  python-pyparsing = 2.0.1
+BuildRequires:  python-six
+BuildRequires:  python-stevedore
 Requires:   python-PrettyTable = 0.6
+%if 0%{?suse_version} = 1110
 Requires:   python-argparse
+%endif
 Requires:   python-cmd2 = 0.6.7
 Requires:   python-pyparsing = 2.0.1
-Requires:   python-tablib
+Requires:   python-six
+Requires:   python-stevedore
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
 %py_requires
@@ -64,15 +72,18 @@
 
 %prep
 %setup -q -n cliff-%{version}
+%patch0
+%patch1 -p1
 
 %build
 python setup.py build
+python setup.py build_sphinx
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
 %check
-nosetests
+python setup.py test
 
 %files
 %defattr(-,root,root,-)

++ 0001-Fix-doc-build-with-Python-2.6.x.patch ++
From 7cf3dc000b374bab2a876495ab4528dd9f51d6a2 Mon Sep 17 00:00:00 2001
From: Dirk Mueller d...@dmllr.de
Date: Thu, 30 Jan 2014 16:48:00 +0100
Subject: [PATCH] Fix doc build with Python 2.6.x

subprocess.check_output was new in Python 2.7.
Use an alternative construct via subprocess.Popen
which works on Python 2.6 as well.

Change-Id: I0b44fc19183f1c6b23fe5a9cce31de381809534d
---
 docs/source/conf.py | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/docs/source/conf.py b/docs/source/conf.py
index 131a9f9..ee6daeb 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -51,10 +51,8 @@ copyright = u'2012-%s, Doug Hellmann' % 
datetime.datetime.today().year
 # built documents.
 #
 # The short X.Y version.
-version = subprocess.check_output([
-'sh', '-c',
-'cd ../..; python setup.py --version',
-])
+version = subprocess.Popen(['sh', '-c', 'cd ../..; python setup.py --version'],
+   stdout=subprocess.PIPE).stdout.read()
 version = version.strip()
 # The full version, including alpha/beta/rc tags.
 release = version
-- 
1.8.4.1

++ cliff-1.4.5.tar.gz - cliff-1.5.2.tar.gz ++
 

commit rabbitmq-server for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package rabbitmq-server for openSUSE:Factory 
checked in at 2014-01-31 09:44:13

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


Package is rabbitmq-server

Changes:

--- /work/SRC/openSUSE:Factory/rabbitmq-server/rabbitmq-server.changes  
2014-01-10 21:22:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.rabbitmq-server.new/rabbitmq-server.changes 
2014-01-31 09:44:14.0 +0100
@@ -1,0 +2,20 @@
+Fri Jan 24 09:17:00 UTC 2014 - dmuel...@suse.com
+
+- update to 3.2.3:
+  * This release fixes a number of bugs in the broker and federation plugin
+  * Improvements to the LDAP and shovel plugins are also included
+
+---
+Thu Jan 23 12:29:39 UTC 2014 - dmuel...@suse.com
+
+- install a config file by default 
+  add fix-syntax-error-in-example-conf.patch
+
+---
+Tue Jan 21 13:03:33 UTC 2014 - dmuel...@suse.com
+
+- update to 3.2.2:
+  * federated queues and features enhanced policies for aspects of the broker
+  * This release fixes a number of bugs in the broker and plugins
+
+---

Old:

  rabbitmq-server-3.1.5.tar.gz

New:

  fix-syntax-error-in-example-conf.patch
  rabbitmq-server-3.2.3.tar.gz



Other differences:
--
++ rabbitmq-server.spec ++
--- /var/tmp/diff_new_pack.yHPFQS/_old  2014-01-31 09:44:15.0 +0100
+++ /var/tmp/diff_new_pack.yHPFQS/_new  2014-01-31 09:44:15.0 +0100
@@ -24,7 +24,7 @@
 %endif
 
 Name:   rabbitmq-server
-Version:3.1.5
+Version:3.2.3
 Release:0
 Summary:The RabbitMQ Server
 License:MPL-1.1
@@ -41,6 +41,7 @@
 Source7:rabbitmq-server.tmpfiles.d.conf
 Patch0: no-nmap.patch
 Patch1: no-remove-common.patch
+Patch2: fix-syntax-error-in-example-conf.patch
 BuildRequires:  erlang
 BuildRequires:  erlang-src
 BuildRequires:  fdupes
@@ -102,6 +103,7 @@
 %setup -q
 %patch0
 %patch1
+%patch2
 
 %build
 make all VERSION=%{version}
@@ -112,6 +114,7 @@
   TARGET_DIR=%{buildroot}%{_rabbit_erllibdir} \
   SBIN_DIR=%{buildroot}%{_rabbit_libdir}/bin \
   MAN_DIR=%{buildroot}%{_mandir} \
+  DOC_INSTALL_DIR=%{buildroot}/%{_docdir} \
   VERSION=%{version}
 
 # Install init scripts
@@ -136,6 +139,9 @@
 install -p -D -m 0755 %{_rabbit_wrapper} 
%{buildroot}%{_sbindir}/rabbitmq-plugins
 install -p -D -m 0755 %{_rabbit_server_ocf} 
%{buildroot}%{_exec_prefix}/lib/ocf/resource.d/rabbitmq/rabbitmq-server
 
+# install config files
+install -p -D -m 0644 docs/rabbitmq.config.example 
%{buildroot}/%{_sysconfdir}/rabbitmq/rabbitmq.config
+
 # Copy all necessary lib files etc.
 install -p -D -m 0644 %{SOURCE3} 
%{buildroot}%{_sysconfdir}/logrotate.d/rabbitmq-server
 
@@ -165,7 +171,7 @@
 | sed -e 's/^\.//'  %{_builddir}/filelist.%{name}.rpm)
 
 # Create hardlinks for duplicate files
-%fdupes %{buildroot}
+%fdupes %{buildroot}/usr/share
 
 %pre
 getent group rabbitmq /dev/null || groupadd -r rabbitmq
@@ -217,6 +223,7 @@
 %dir /usr/lib/ocf/resource.d
 %dir /usr/lib/ocf/resource.d/rabbitmq
 %config(noreplace) %{_sysconfdir}/logrotate.d/rabbitmq-server
+%config(noreplace) %{_sysconfdir}/rabbitmq/rabbitmq.config
 %doc LICENSE* README
 %dir %{_rabbit_erllibdir}/plugins
 %exclude %{_rabbit_erllibdir}/plugins/*

++ fix-syntax-error-in-example-conf.patch ++
--- docs/rabbitmq.config.example
+++ docs/rabbitmq.config.example
@@ -336,7 +336,7 @@
  %% {reconnect_delay, 2.5}
 
  %% ]} %% End of my_first_shovel
-]},
+]}
%% Rather than specifying some values per-shovel, you can specify
%% them for all shovels here.
%%
++ rabbitmq-server-3.1.5.tar.gz - rabbitmq-server-3.2.3.tar.gz ++
 20120 lines of diff (skipped)

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



commit resource-agents for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package resource-agents for openSUSE:Factory 
checked in at 2014-01-31 09:44:31

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


Package is resource-agents

Changes:

--- /work/SRC/openSUSE:Factory/resource-agents/resource-agents.changes  
2014-01-23 15:55:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.resource-agents.new/resource-agents.changes 
2014-01-31 09:44:32.0 +0100
@@ -1,0 +2,8 @@
+Thu Jan 23 06:23:41 UTC 2014 - kgronl...@suse.com
+
+- Remove 0001-Medium-CTDB-Default-ctdb-manages-samba-and-ctdb-mana.patch:
+  Accidentally reintroduced obsolete patch
+- Remove 0002-Medium-CTDB-Add-smb_fileid_algorithm-parameter-defau.patch:
+  Accidentally reintroduced obsolute patch
+
+---

Old:

  0001-Medium-CTDB-Default-ctdb-manages-samba-and-ctdb-mana.patch
  0002-Medium-CTDB-Add-smb_fileid_algorithm-parameter-defau.patch



Other differences:
--
++ resource-agents.spec ++
--- /var/tmp/diff_new_pack.XdBD2e/_old  2014-01-31 09:44:32.0 +0100
+++ /var/tmp/diff_new_pack.XdBD2e/_new  2014-01-31 09:44:32.0 +0100
@@ -55,16 +55,12 @@
 Patch4: no-var-lock-subsys.patch
 # PATCH-FEATURE-OPENSUSE: add sg_persist RA, lw...@suse.com
 Patch5: resource-agents-new-sg_persist.patch
-# PATCH-FIX-OPENSUSE: CTDB: Default ctdb manages samba and ctdb manages 
winbind to yes, tser...@novell.com
-Patch6: 0001-Medium-CTDB-Default-ctdb-manages-samba-and-ctdb-mana.patch
-# PATCH-FIX-OPENSUSE: CTDB: Add smb_fileid_algorithm parameter, defaults=fsid 
(bnc#696978), tser...@novell.com
-Patch7: 0002-Medium-CTDB-Add-smb_fileid_algorithm-parameter-defau.patch
 # PATCH-FIX-UPSTREAM: oracle: Create profile for OCFMON user (bnc#850589), 
kgronl...@suse.com
-Patch8: 0003-Medium-oracle-Create-profile-for-OCFMON-user-bnc-850.patch
+Patch6: 0003-Medium-oracle-Create-profile-for-OCFMON-user-bnc-850.patch
 # PATCH-FIX-UPSTREAM: oracle: Make monitoring user configurable (bnc#859683), 
kgronl...@suse.com
-Patch9: 0004-High-oracle-Make-monitoring-user-configurable-bnc-85.patch
+Patch7: 0004-High-oracle-Make-monitoring-user-configurable-bnc-85.patch
 # PATCH-FIX-OPENSUSE: Revert moving binaries to /usr/libexec
-Patch10:0006-Revert-Low-build-Move-binaries-in-usr-lib-heartbeat-.patch
+Patch8: 0006-Revert-Low-build-Move-binaries-in-usr-lib-heartbeat-.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Obsoletes:  heartbeat-resources
@@ -139,8 +135,6 @@
 %patch6 -p1
 %patch7 -p1
 %patch8 -p1
-%patch9 -p1
-%patch10 -p1
 ###
 
 %build

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



commit rpmlint for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory checked 
in at 2014-01-31 09:44:43

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


Package is rpmlint

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes  2014-01-30 
11:37:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes 2014-01-31 
09:44:45.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan 30 09:17:08 UTC 2014 - lnus...@suse.de
+
+- remove suse-rclink-check.diff and implement as separate check for
+  systemd units instead (bnc#860340).
+
+---

Old:

  suse-rclink-check.diff



Other differences:
--
++ rpmlint.spec ++
--- /var/tmp/diff_new_pack.5A9S29/_old  2014-01-31 09:44:46.0 +0100
+++ /var/tmp/diff_new_pack.5A9S29/_new  2014-01-31 09:44:46.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmlint
 #
-# 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
@@ -33,6 +33,7 @@
 Source3:config.in
 Source11:   pie.config
 Source12:   licenses.config
+Source99:   README.packaging.txt
 Source100:  syntax-validator.py
 Url:https://sourceforge.net/projects/rpmlint/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -114,7 +115,6 @@
 Patch81:suse-whitelist-opensuse.diff
 Patch84:extend-suse-conffiles-check.diff
 Patch85:suse-changelog.patch
-Patch86:suse-rclink-check.diff
 Patch87:compressed-backup-regex.diff
 # accepted upstream
 Patch88:suse-speccheck-utf8.diff
@@ -195,7 +195,6 @@
 %patch81
 %patch84
 %patch85
-%patch86
 %patch87
 %patch88
 %patch89

++ config ++
--- /var/tmp/diff_new_pack.5A9S29/_old  2014-01-31 09:44:46.0 +0100
+++ /var/tmp/diff_new_pack.5A9S29/_new  2014-01-31 09:44:46.0 +0100
@@ -39,6 +39,7 @@
 addCheck(CheckBuildDate)
 addCheck(CheckLogrotate)
 addCheck(CheckPAMModules)
+addCheck(CheckRCLinks)
 
 # stuff autobuild takes care about
 addFilter(.*invalid-version.*)

++ rpmlint-checks-master.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmlint-checks-master/CheckRCLinks.py 
new/rpmlint-checks-master/CheckRCLinks.py
--- old/rpmlint-checks-master/CheckRCLinks.py   1970-01-01 01:00:00.0 
+0100
+++ new/rpmlint-checks-master/CheckRCLinks.py   2014-01-30 10:26:12.0 
+0100
@@ -0,0 +1,66 @@
+#
+# File  : CheckRCLinks.py
+# Package   : rpmlint
+# Author: Ludwig Nussel
+# Purpose   : Check for missing rc* links and shadowed init scripts
+#
+
+from Filter import *
+import AbstractCheck
+import os
+import Config
+import stat
+
+class RCLinksCheck(AbstractCheck.AbstractCheck):
+def __init__(self):
+AbstractCheck.AbstractCheck.__init__(self, 'CheckRCLinks')
+
+def check(self, pkg ):
+if pkg.isSource():
+return
+
+rclinks = set()
+rccandidates = set()
+initscripts = set()
+
+for fname, pkgfile in pkg.files().items():
+if fname in pkg.ghostFiles():
+continue
+
+if stat.S_ISLNK(pkgfile.mode) and 
(fname.startswith('/usr/sbin/rc') \
+or fname.startswith('/sbin/rc')):
+rclinks.add(fname.partition('/rc')[2])
+elif fname.startswith('/usr/lib/systemd/system/'):
+if '@' in fname:
+continue
+if fname.endswith('.service'):
+
rccandidates.add(os.path.basename(fname).split('.service')[0])
+if fname.endswith('.target'):
+
rccandidates.add(os.path.basename(fname).split('.target')[0])
+elif fname.startswith('/etc/init.d/'):
+basename = os.path.basename(fname)
+if not basename.startswith('rc') \
+and not basename.startswith('boot.'):
+initscripts.add(basename)
+
+for fname in sorted(initscripts):
+if fname in rccandidates:
+printWarning(pkg, suse-systemd-shadowed-initscript, fname)
+else:
+rccandidates.add(fname)
+
+for fname in sorted(rccandidates):
+if fname not in sorted(rclinks):
+  

commit zypper for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package zypper for openSUSE:Factory checked 
in at 2014-01-31 09:44:48

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


Package is zypper

Changes:

--- /work/SRC/openSUSE:Factory/zypper/zypper.changes2014-01-29 
22:23:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.zypper.new/zypper.changes   2014-01-31 
09:44:49.0 +0100
@@ -1,0 +2,11 @@
+Thu Jan 30 18:52:12 CET 2014 - m...@suse.de
+
+- Fix eating all memory if stdout is not a tty.
+- version 1.10.5
+
+---
+Thu Jan 30 01:14:17 CET 2014 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---

Old:

  zypper-1.10.4.tar.bz2

New:

  zypper-1.10.5.tar.bz2



Other differences:
--
++ zypper.spec ++
--- /var/tmp/diff_new_pack.8azLuX/_old  2014-01-31 09:44:50.0 +0100
+++ /var/tmp/diff_new_pack.8azLuX/_new  2014-01-31 09:44:50.0 +0100
@@ -33,7 +33,7 @@
 Summary:Command line software manager using libzypp
 License:GPL-2.0+
 Group:  System/Packages
-Version:1.10.4
+Version:1.10.5
 Release:0
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ zypper-1.10.4.tar.bz2 - zypper-1.10.5.tar.bz2 ++
/work/SRC/openSUSE:Factory/zypper/zypper-1.10.4.tar.bz2 
/work/SRC/openSUSE:Factory/.zypper.new/zypper-1.10.5.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 Test-DVD-x86_64 for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package Test-DVD-x86_64 for openSUSE:Factory 
checked in at 2014-01-31 11:10:38

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


Package is Test-DVD-x86_64

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ PRODUCT-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.vXWRAJ/_old  2014-01-31 11:10:39.0 +0100
+++ /var/tmp/diff_new_pack.vXWRAJ/_new  2014-01-31 11:10:39.0 +0100
@@ -23,7 +23,7 @@
 productoptions
   productvar name=DISTNAMEopenSUSE/productvar
   productvar name=FLAVORdvd/productvar
-  productvar name=MEDIUM_NAMETest-66/productvar
+  productvar name=MEDIUM_NAMETest-67/productvar
   productvar name=MULTIPLE_MEDIAno/productvar
   productvar name=PRODUCT_DIR//productvar
   productvar name=PRODUCT_NAME$DISTNAME-$FLAVOR/productvar
@@ -162,7 +162,6 @@
   repopackage name=gpm/
   repopackage name=grep/
   repopackage name=groff/
-  repopackage name=grub-snapper-plugin/
   repopackage name=grub2/
   repopackage name=grub2-branding-openSUSE/
   repopackage name=grub2-i386-pc/
@@ -542,11 +541,8 @@
   repopackage name=pytalloc/
   repopackage name=python/
   repopackage name=python-base/
-  repopackage name=python-cffi/
   repopackage name=python-gobject/
   repopackage name=python-gobject-cairo/
-  repopackage name=python-pycparser/
-  repopackage name=python-xattr/
   repopackage name=python-xml/
   repopackage name=recode/
   repopackage name=rgb/


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



commit ocaml for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package ocaml for openSUSE:Factory checked 
in at 2014-01-31 11:44:50

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


Package is ocaml

Changes:

--- /work/SRC/openSUSE:Factory/ocaml/ocaml.changes  2013-12-09 
07:13:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.ocaml.new/ocaml.changes 2014-01-31 
11:44:51.0 +0100
@@ -1,0 +2,5 @@
+Thu Jan 30 11:49:10 CET 2014 - oher...@suse.de
+
+- Provide ocaml(ocaml.opt)==version if available
+
+---



Other differences:
--
++ ocaml.spec ++
--- /var/tmp/diff_new_pack.1YzD1w/_old  2014-01-31 11:44:51.0 +0100
+++ /var/tmp/diff_new_pack.1YzD1w/_new  2014-01-31 11:44:51.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ocaml
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2010 Andrew Psaltis ampsaltis at gmail dot com
 # Copyright (c) 2011 Andrew Psaltis ampsaltis at gmail dot com
 #
@@ -58,6 +58,9 @@
 BuildRequires:  tk-devel
 # This gets ocamlobjinfo to work with .cmxs files
 BuildRequires:  binutils-devel
+%if %{do_opt}
+Provides:   ocaml(ocaml.opt) = %{version}
+%endif
 Provides:   ocaml(compiler) = %{version}
 Requires:   ocaml-runtime = %{version}
 


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



commit gamin for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package gamin for openSUSE:Factory checked 
in at 2014-01-31 11:44:40

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


Package is gamin

Changes:

--- /work/SRC/openSUSE:Factory/gamin/gamin-devel.changes2014-01-23 
15:42:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.gamin.new/gamin-devel.changes   2014-01-31 
11:44:40.0 +0100
@@ -1,0 +2,5 @@
+Thu Jan 30 16:23:47 CET 2014 - fcro...@suse.com
+
+- Both library packages must require gamin-server sub-package.
+
+---



Other differences:
--
++ gamin-devel.spec ++
--- /var/tmp/diff_new_pack.0GIsrh/_old  2014-01-31 11:44:41.0 +0100
+++ /var/tmp/diff_new_pack.0GIsrh/_new  2014-01-31 11:44:41.0 +0100
@@ -57,6 +57,7 @@
 Group:  System/Libraries
 Provides:   libgamin = %{version}
 Obsoletes:  libgamin  %{version}
+Requires:   gamin-server = %{version}
 
 %description -n libgamin-%{packnum}
 This C library provides an API and ABI compatible file alteration
@@ -67,6 +68,7 @@
 Summary:Library providing the FAM File Alteration Monitor API
 Group:  System/Libraries
 Conflicts:  libfam0
+Requires:   gamin-server = %{version}
 
 %description -n libfam%{famnum}-gamin
 This C library provides an API and ABI compatible file alteration

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



commit swig for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package swig for openSUSE:Factory checked in 
at 2014-01-31 11:45:07

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


Package is swig

Changes:

--- /work/SRC/openSUSE:Factory/swig/swig.changes2013-10-02 
20:29:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.swig.new/swig.changes   2014-01-31 
11:45:07.0 +0100
@@ -1,0 +2,7 @@
+Wed Jan 29 19:57:02 UTC 2014 - badshah...@gmail.com
+
+- Add patch swig-support-octave-3.8.0.patch: adds support for
+  octave version 3.8.0 to swig; patch taken from upstream git
+  and rebased for present version. 
+
+---

New:

  swig-support-octave-3.8.0.patch



Other differences:
--
++ swig.spec ++
--- /var/tmp/diff_new_pack.lANoF2/_old  2014-01-31 11:45:08.0 +0100
+++ /var/tmp/diff_new_pack.lANoF2/_new  2014-01-31 11:45:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package swig
 #
-# 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
@@ -35,6 +35,8 @@
 Patch12:ruby-1.8.6-newobject.patch
 # PATCH-FIX-UPSTREAM swig-lua-fix-void-return-for-int-functions.patch 
bnc#843310 badshah...@gmail.com -- Fix functions returning void when int is 
expected for lua bindings
 Patch13:swig-lua-fix-void-return-for-int-functions.patch
+# PATCH-FIX-UPSTREAM swig-support-octave-3.8.0.patch badshah...@gmail.com -- 
Support octave 3.8.0 (this fixes octave 3.8.0 bindings of several packages 
failing to build in Factory such as mathgl, plplot, etc.), patch taken from 
upstream and rebased for current version.
+Patch14:swig-support-octave-3.8.0.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  boost-devel
@@ -141,6 +143,7 @@
 %endif
 %patch9
 %patch13 -p1
+%patch14 -p1
 
 %build
 %configure --disable-ccache

++ swig-support-octave-3.8.0.patch ++
https://github.com/swig/swig/commit/5b167cc12daf9ea275c17fedaefc975450613ab2

From 5b167cc12daf9ea275c17fedaefc975450613ab2 Mon Sep 17 00:00:00 2001
From: Karl Wette karl.we...@ligo.org
Date: Mon, 13 Jan 2014 18:24:17 +1300
Subject: [PATCH] octave: update support to Octave version 3.8.0

diff --git a/Lib/octave/octrun.swg b/Lib/octave/octrun.swg
index 41d1c7a..2174a0f 100644
--- a/Lib/octave/octrun.swg
+++ b/Lib/octave/octrun.swg
@@ -1,20 +1,88 @@
 
 #include octave/version.h
-#ifndef OCTAVE_API_VERSION_NUMBER
-
-  // Hack to distinguish between Octave 3.2 and earlier versions before 
OCTAVE_API_VERSION_NUMBER existed
-  #define ComplexLU __ignore
-  #include octave/CmplxLU.h
-  #undef ComplexLU
-  #ifdef octave_Complex_LU_h
-  # define OCTAVE_API_VERSION_NUMBER 36
-  #else
-  # define OCTAVE_API_VERSION_NUMBER 37
-  #endif
 
-#endif
+// Macro for enabling features which require Octave version = 
major.minor.patch
+#define SWIG_OCTAVE_PREREQ(major, minor, patch) \
+  ( (OCTAVE_MAJOR_VERSION16) + (OCTAVE_MINOR_VERSION8) + 
OCTAVE_PATCH_VERSION = ((major)16) + ((minor)8) + (patch) )
+
+// Reconstruct Octave major, minor, and patch versions for releases prior to 
3.8.1
+#if !defined(OCTAVE_MAJOR_VERSION)
+
+# if !defined(OCTAVE_API_VERSION_NUMBER)
+
+// Hack to distinguish between Octave 3.8.0, which removed 
OCTAVE_API_VERSION_NUMBER but did not yet
+// introduce OCTAVE_MAJOR_VERSION, and Octave = 3.2, which did not define 
OCTAVE_API_VERSION_NUMBER
+#  include octave/ov.h
+#  if defined(octave_ov_h)
+#   define OCTAVE_MAJOR_VERSION 3
+#   define OCTAVE_MINOR_VERSION 8
+#   define OCTAVE_PATCH_VERSION 0
+#  else
+
+// Hack to distinguish between Octave 3.2 and earlier versions, before 
OCTAVE_API_VERSION_NUMBER existed
+#   define ComplexLU __ignore
+#   include octave/CmplxLU.h
+#   undef ComplexLU
+#   if defined(octave_Complex_LU_h)
+
+// We know only that this version is prior to Octave 3.2, i.e. 
OCTAVE_API_VERSION_NUMBER  37
+#define OCTAVE_MAJOR_VERSION 3
+#define OCTAVE_MINOR_VERSION 1
+#define OCTAVE_PATCH_VERSION 99
+
+#   else
+
+// OCTAVE_API_VERSION_NUMBER == 37
+#define OCTAVE_MAJOR_VERSION 3
+#define OCTAVE_MINOR_VERSION 2
+#define OCTAVE_PATCH_VERSION 0
+
+#   endif // defined(octave_Complex_LU_h)
+
+#  endif // defined(octave_ov_h)
 
-#if OCTAVE_API_VERSION_NUMBER  37
+// Correlation between Octave API and version numbers extracted from Octave's
+// ChangeLogs; version is the *earliest* released Octave with that API number
+# elif OCTAVE_API_VERSION_NUMBER = 48
+#  define 

commit kiwi for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2014-01-31 11:44:45

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


Package is kiwi

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2014-01-30 
11:27:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2014-01-31 
11:44:46.0 +0100
@@ -1,0 +2,69 @@
+Thu Jan 30 17:32:57 CET 2014 - m...@suse.de
+
+- v5.06.24 released
+  
+---
+Wed Jan 29 15:48:49 CET 2014 - m...@suse.de
+  
+- KIWIAnalyseTemplate
+  * use single quotes for URL and Alias when setting up repos in
+the auto generated config.sh template. This is needed if the
+URL uses special characters which are evaluated in the shell
+
+---
+Tue Jan 28 23:28:01 CET 2014 - m...@suse.de
+
+- KIWIAnalyseManagedSoftware
+  * added analyser for packages to become deleted. when inspecting the
+system the code now also compares the result of the solved required
+packages list with the currently installed packages. packages
+required by the solver but not installed are treated as unwanted
+and put into a delete typed packages section
+
+---
+Tue Jan 28 19:28:13 CET 2014 - m...@suse.de
+
+- Remove desktop profile from SLE12 boot image descriptions (bnc #860792)
+  * SLES12 will not provide a kernel-desktop package
+
+---
+Tue Jan 28 19:21:07 CET 2014 - m...@suse.de
+
+- Fixed volume setup
+  * make sure non existing mount point directories are created
+  * allow the volume name .snapshot(s) to be a valid name
+
+---
+Tue Jan 28 10:56:04 CET 2014 - m...@suse.de
+
+- Added __checkHaveTypeToBuild runtime check
+  With this check the presence and selection of a build type is checked
+  
+---
+Tue Jan 28 10:36:50 CET 2014 - m...@suse.de
+  
+- Added __checkCorrectRootFSPermissons runtime check
+  With this check kiwi validates the consistency of the created
+  unpacked root tree while calling the create step. Consistency
+  means a number of LSB toplevel directories is checked for
+  their correct root/root owner and group name. Recently people
+  using NFS or ZFS as image target directory ran into the problem
+  that the filesystem stores files under the nobody user identity
+  even if the caller was root. The result is a completely broken
+  system which should be prevented by this runtime check
+  
+---
+Mon Jan 27 15:46:45 CET 2014 - rjsch...@suse.de
+  
+- generate scsi as the device type prefix for all controllers except for ide
+  in the .vmx file
+  
+---
+Mon Jan 27 08:58:16 CET 2014 - rjsch...@suse.de
+  
+- support a boottimeout value of 0
+  + at present we checked for boottimeout value to evaluate to true, but in
+Perl the string 0 evaluates to false although the string is not empty,
+thus the truth test failed an we used the default of 10
+
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.1OVXjX/_old  2014-01-31 11:44:47.0 +0100
+++ /var/tmp/diff_new_pack.1OVXjX/_new  2014-01-31 11:44:47.0 +0100
@@ -26,7 +26,7 @@
 Summary:openSUSE - KIWI Image System
 License:GPL-2.0
 Group:  System/Management
-Version:5.06.23
+Version:5.06.24
 Release:0
 # requirements to build packages
 BuildRequires:  diffutils

++ kiwi.tar.bz2 ++
/work/SRC/openSUSE:Factory/kiwi/kiwi.tar.bz2 
/work/SRC/openSUSE:Factory/.kiwi.new/kiwi.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 yast2-bootloader for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package yast2-bootloader for 
openSUSE:Factory checked in at 2014-01-31 11:51:10

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


Package is yast2-bootloader

Changes:

--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes
2014-01-14 20:01:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-bootloader.new/yast2-bootloader.changes   
2014-01-31 11:51:11.0 +0100
@@ -1,0 +2,6 @@
+Tue Jan 28 09:56:33 UTC 2014 - jreidin...@suse.com
+
+- Fix examining MBR
+- 3.1.4
+
+---

Old:

  yast2-bootloader-3.1.3.tar.bz2

New:

  yast2-bootloader-3.1.4.tar.bz2



Other differences:
--
++ yast2-bootloader.spec ++
--- /var/tmp/diff_new_pack.JbcmyV/_old  2014-01-31 11:51:11.0 +0100
+++ /var/tmp/diff_new_pack.JbcmyV/_new  2014-01-31 11:51:11.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.1.3
+Version:3.1.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-bootloader-3.1.3.tar.bz2 - yast2-bootloader-3.1.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.3/package/yast2-bootloader.changes 
new/yast2-bootloader-3.1.4/package/yast2-bootloader.changes
--- old/yast2-bootloader-3.1.3/package/yast2-bootloader.changes 2014-01-14 
13:07:45.0 +0100
+++ new/yast2-bootloader-3.1.4/package/yast2-bootloader.changes 2014-01-30 
14:13:00.0 +0100
@@ -1,4 +1,10 @@
 ---
+Tue Jan 28 09:56:33 UTC 2014 - jreidin...@suse.com
+
+- Fix examining MBR
+- 3.1.4
+
+---
 Tue Jan 14 10:37:06 UTC 2014 - jreidin...@suse.com
 
 - handle problematic conversion of perl undef in perl-json
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-3.1.3/package/yast2-bootloader.spec 
new/yast2-bootloader-3.1.4/package/yast2-bootloader.spec
--- old/yast2-bootloader-3.1.3/package/yast2-bootloader.spec2014-01-14 
13:07:45.0 +0100
+++ new/yast2-bootloader-3.1.4/package/yast2-bootloader.spec2014-01-30 
14:13:00.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.1.3
+Version:3.1.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.3/src/include/bootloader/grub/options.rb 
new/yast2-bootloader-3.1.4/src/include/bootloader/grub/options.rb
--- old/yast2-bootloader-3.1.3/src/include/bootloader/grub/options.rb   
2014-01-14 11:06:53.0 +0100
+++ new/yast2-bootloader-3.1.4/src/include/bootloader/grub/options.rb   
2014-01-30 14:13:00.0 +0100
@@ -590,8 +590,7 @@
   boot_devices = BootStorage.getPartitionList(:boot, grub)
   value = 
   if BootCommon.VerifyMDArray
-if BootCommon.enable_md_array_redundancy == nil ||
-BootCommon.enable_md_array_redundancy
+if BootCommon.enable_md_array_redundancy
   UI.ChangeWidget(Id(enable_redundancy), :Value, true)
 else
   UI.ChangeWidget(Id(enable_redundancy), :Value, false)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.3/src/include/bootloader/routines/lib_iface.rb 
new/yast2-bootloader-3.1.4/src/include/bootloader/routines/lib_iface.rb
--- old/yast2-bootloader-3.1.3/src/include/bootloader/routines/lib_iface.rb 
2014-01-14 13:07:45.0 +0100
+++ new/yast2-bootloader-3.1.4/src/include/bootloader/routines/lib_iface.rb 
2014-01-30 14:13:00.0 +0100
@@ -411,7 +411,7 @@
   device_data = TmpYAMLFile.new(device)
   ret_data = TmpYAMLFile.new
 
-  run_pbl_yaml #{ret_data.path}=ExamineMBR(#{device_data})
+  run_pbl_yaml #{ret_data.path}=ExamineMBR(#{device_data.path})
   ret = ret_data.data
 
   Builtins.y2milestone(Device: %1 includes in MBR: %2, device, ret)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-3.1.3/src/modules/BootCommon.rb 
new/yast2-bootloader-3.1.4/src/modules/BootCommon.rb
--- old/yast2-bootloader-3.1.3/src/modules/BootCommon.rb2014-01-14 
11:06:53.0 +0100
+++ new/yast2-bootloader-3.1.4/src/modules/BootCommon.rb2014-01-30 
14:13:00.0 +0100
@@ -982,6 +982,8 @@
   # detect bootloader
   

commit yast2 for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2014-01-31 11:50:47

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


Package is yast2

Changes:

--- /work/SRC/openSUSE:Factory/yast2/yast2.changes  2014-01-24 
21:42:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2014-01-31 
11:50:48.0 +0100
@@ -1,0 +2,8 @@
+Thu Jan 30 09:27:43 UTC 2014 - mfi...@suse.com
+
+- bnc#861078
+  - detected network service set properly when running in
+installation mode
+- 3.1.17
+
+---

Old:

  yast2-3.1.16.tar.bz2

New:

  yast2-3.1.17.tar.bz2



Other differences:
--
++ yast2.spec ++
--- /var/tmp/diff_new_pack.x7U0Jk/_old  2014-01-31 11:50:49.0 +0100
+++ /var/tmp/diff_new_pack.x7U0Jk/_new  2014-01-31 11:50:49.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2
-Version:3.1.16
+Version:3.1.17
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-3.1.16.tar.bz2 - yast2-3.1.17.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.16/library/general/test/Makefile.am 
new/yast2-3.1.17/library/general/test/Makefile.am
--- old/yast2-3.1.16/library/general/test/Makefile.am   2014-01-22 
12:26:53.0 +0100
+++ new/yast2-3.1.17/library/general/test/Makefile.am   2014-01-30 
16:11:59.0 +0100
@@ -1,5 +1,6 @@
 TESTS = \
-  linuxrc_test.rb
+  linuxrc_test.rb \
+   hooks_test.rb
 
 TEST_EXTENSIONS = .rb
 RB_LOG_COMPILER = rspec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.16/library/general/test/hooks_test.rb 
new/yast2-3.1.17/library/general/test/hooks_test.rb
--- old/yast2-3.1.16/library/general/test/hooks_test.rb 2014-01-22 
12:26:53.0 +0100
+++ new/yast2-3.1.17/library/general/test/hooks_test.rb 2014-01-30 
16:11:59.0 +0100
@@ -56,14 +56,14 @@
 it tracks the results of the run hook files do
   hook = Hooks.run 'before_hook'
   expect(Hooks.last.results.size).to eq(2)
-  failed_hook_file = Hooks.find('before_hook').results.first
-  expect(failed_hook_file.exit).not_to eq(0)
-  expect(failed_hook_file.stderr).to match(/failure/)
+  failed_hook_file = Hooks.find('before_hook').files.first
+  expect(failed_hook_file.result.exit).not_to eq(0)
+  expect(failed_hook_file.result.stderr).to match(/failure/)
   expect(failed_hook_file.output).to match(/failure/)
 
-  succeeded_hook_file = Hooks.find('before_hook').results.last
-  expect(succeeded_hook_file.exit).to eq(0)
-  expect(succeeded_hook_file.stdout).to match(/success/)
+  succeeded_hook_file = Hooks.find('before_hook').files.last
+  expect(succeeded_hook_file.result.exit).to eq(0)
+  expect(succeeded_hook_file.result.stdout).to match(/success/)
   expect(succeeded_hook_file.output).to match(/success/)
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.1.16/library/network/src/modules/NetworkService.rb 
new/yast2-3.1.17/library/network/src/modules/NetworkService.rb
--- old/yast2-3.1.16/library/network/src/modules/NetworkService.rb  
2014-01-22 12:26:53.0 +0100
+++ new/yast2-3.1.17/library/network/src/modules/NetworkService.rb  
2014-01-30 16:11:59.0 +0100
@@ -130,19 +130,19 @@
 # @return true  when the network is managed by an external tool, 
 #   like NetworkManager, false otherwise
 def network_manager?
-  cached_name == :network_manager
+  cached_service?(:network_manager)
 end
 
 alias_method :is_network_manager, :network_manager?
 
 def netconfig?
-  cached_name == :netconfig
+  cached_service?(:netconfig)
 end
 
 alias_method :is_netconfig, :netconfig?
 
 def wicked?
-  cached_name == :wicked
+  cached_service?(:wicked)
 end
 
 alias_method :is_wicked, :wicked?
@@ -178,8 +178,16 @@
 @current_name = :network_manager
   when wicked
 @current_name = :wicked
+  else
+if Mode.installation || Mode.config
+  Builtins.y2milestone(Running in installer, use default: wicked)
+  @current_name = :wicked
+else
+  Builtins.y2error(Cannot determine used network service.)
+  raise Cannot detect used network service
+end
 end
-  
+
 @cached_name = @current_name
 
 Builtins.y2milestone(Current backend: #{@current_name})
@@ -354,6 +362,8 @@

commit gfxboot for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package gfxboot for openSUSE:Factory checked 
in at 2014-01-31 11:50:36

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


Package is gfxboot

Changes:

--- /work/SRC/openSUSE:Factory/gfxboot/gfxboot.changes  2013-12-19 
12:08:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.gfxboot.new/gfxboot.changes 2014-01-31 
11:50:37.0 +0100
@@ -1,0 +2,8 @@
+Fri Jan 24 15:37:57 CET 2014 - snw...@suse.de
+
+- fix compiler warning
+- hrvoje.senjan: use FT_SYNTHESIS_H macro
+- set min video mode to 1024x576
+- remove use-recommended-freetype-include.patch
+
+---

Old:

  gfxboot-4.5.1.tar.bz2
  use-recommended-freetype-include.patch

New:

  gfxboot-4.5.2.tar.bz2



Other differences:
--
++ gfxboot.spec ++
--- /var/tmp/diff_new_pack.huebvD/_old  2014-01-31 11:50:38.0 +0100
+++ /var/tmp/diff_new_pack.huebvD/_new  2014-01-31 11:50:38.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gfxboot
 #
-# 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,22 +17,19 @@
 
 
 Name:   gfxboot
-Version:4.5.1
+Version:4.5.2
 Release:0
 Summary:Graphical Boot Logo for GRUB, LILO and SYSLINUX
 License:GPL-2.0+
 Group:  System/Boot
 Url:http://en.opensuse.org/SDB:Gfxboot
-Source: gfxboot-4.5.1.tar.bz2
+Source: gfxboot-4.5.2.tar.bz2
 Source1:KDE.tar.bz2
 Source2:openSUSE.tar.bz2
 Source3:SLED.tar.bz2
 Source4:SLES.tar.bz2
 Source5:upstream.tar.bz2
 Source6:examples.tar.bz2
-# PATCH-FIX-UPSTREAM use-recommended-freetype-include.patch -- Freetype 
upstream recommends using their macros together with
-# ft2build include. Positive sideeffect is that this patch makes it build with 
both freetype2 2.5.1, and older versions
-Patch0: use-recommended-freetype-include.patch
 BuildRequires:  fdupes
 BuildRequires:  freetype2-devel
 BuildRequires:  fribidi
@@ -120,7 +117,6 @@
 
 %prep
 %setup
-%patch0 -p1
 %setup -T -D -a 1
 %setup -T -D -a 2
 %setup -T -D -a 3

++ KDE.tar.bz2 ++

++ SLED.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/themes/SLED/config new/themes/SLED/config
--- old/themes/SLED/config  2012-09-06 12:07:10.0 +0200
+++ new/themes/SLED/config  2014-01-24 15:24:50.0 +0100
@@ -1,2 +1,2 @@
-product=SLED 11
+product=SLED 12
 based_on=openSUSE

++ SLES.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/themes/SLES/config new/themes/SLES/config
--- old/themes/SLES/config  2012-09-06 12:07:10.0 +0200
+++ new/themes/SLES/config  2014-01-24 15:24:42.0 +0100
@@ -1,2 +1,2 @@
-product=SLES 11
+product=SLES 12
 based_on=openSUSE

++ examples.tar.bz2 ++

++ gfxboot-4.5.1.tar.bz2 - gfxboot-4.5.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gfxboot-4.5.1/VERSION new/gfxboot-4.5.2/VERSION
--- old/gfxboot-4.5.1/VERSION   2012-10-01 10:53:30.0 +0200
+++ new/gfxboot-4.5.2/VERSION   2014-01-24 15:37:54.0 +0100
@@ -1 +1 @@
-4.5.1
+4.5.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gfxboot-4.5.1/changelog new/gfxboot-4.5.2/changelog
--- old/gfxboot-4.5.1/changelog 2012-10-01 10:53:31.0 +0200
+++ new/gfxboot-4.5.2/changelog 2014-01-24 15:37:55.0 +0100
@@ -1,4 +1,9 @@
-2012-10-01:HEAD
+2014-01-24:HEAD
+   - fix compiler warning
+   - hrvoje.senjan: use FT_SYNTHESIS_H macro
+   - set min video mode to 1024x576
+
+2012-10-01:4.5.1
- start using 'default' video entry
 
 2012-03-28:4.5.0
@@ -207,603 +212,3 @@
- implemented realloc function
- file read works with files of unknown size (-1)
 
-2008-12-03:4.1.19
-   - copy en.tlk
-
-2008-12-02:4.1.18
-   - enabled penguin theme for openSUSE
-
-2008-12-01:4.1.17
-   - new texts for speech support (bnc #391313)
-
-2008-11-20:4.1.16
-   - translations, again (bnc #445350)
-
-2008-11-20:4.1.15
-   - make lang list changes more fault tolerant
-   - updated translations (bnc #445350)
-
-2008-11-20:4.1.14
-   - updated translations
-   - removed special 

commit yast2-ldap-client for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package yast2-ldap-client for 
openSUSE:Factory checked in at 2014-01-31 11:51:17

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


Package is yast2-ldap-client

Changes:

--- /work/SRC/openSUSE:Factory/yast2-ldap-client/yast2-ldap-client.changes  
2013-12-08 19:50:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-ldap-client.new/yast2-ldap-client.changes 
2014-01-31 11:51:19.0 +0100
@@ -1,0 +2,6 @@
+Tue Jan 21 09:54:15 UTC 2014 - vmora...@suse.com
+
+- Support LDAPS FATE#316086
+- 3.1.4
+
+---

Old:

  yast2-ldap-client-3.1.3.tar.bz2

New:

  yast2-ldap-client-3.1.4.tar.bz2



Other differences:
--
++ yast2-ldap-client.spec ++
--- /var/tmp/diff_new_pack.QRlDJ5/_old  2014-01-31 11:51:19.0 +0100
+++ /var/tmp/diff_new_pack.QRlDJ5/_new  2014-01-31 11:51:19.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ldap-client
 #
-# 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,7 +17,7 @@
 
 
 Name:   yast2-ldap-client
-Version:3.1.3
+Version:3.1.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -27,7 +27,7 @@
 BuildRequires:  perl-XML-Writer
 BuildRequires:  update-desktop-files
 BuildRequires:  yast2
-BuildRequires:  yast2-devtools = 3.0.6
+BuildRequires:  yast2-devtools = 3.1.10
 BuildRequires:  yast2-network
 BuildRequires:  yast2-pam
 BuildRequires:  yast2-testsuite

++ yast2-ldap-client-3.1.3.tar.bz2 - yast2-ldap-client-3.1.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ldap-client-3.1.3/VERSION 
new/yast2-ldap-client-3.1.4/VERSION
--- old/yast2-ldap-client-3.1.3/VERSION 2013-12-05 16:55:00.0 +0100
+++ new/yast2-ldap-client-3.1.4/VERSION 1970-01-01 01:00:00.0 +0100
@@ -1 +0,0 @@
-3.1.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ldap-client-3.1.3/package/yast2-ldap-client.changes 
new/yast2-ldap-client-3.1.4/package/yast2-ldap-client.changes
--- old/yast2-ldap-client-3.1.3/package/yast2-ldap-client.changes   
2013-12-05 16:55:00.0 +0100
+++ new/yast2-ldap-client-3.1.4/package/yast2-ldap-client.changes   
2014-01-30 12:25:11.0 +0100
@@ -1,4 +1,10 @@
 ---
+Tue Jan 21 09:54:15 UTC 2014 - vmora...@suse.com
+
+- Support LDAPS FATE#316086
+- 3.1.4
+
+---
 Thu Dec  5 16:44:42 CET 2013 - jsuch...@suse.cz
 
 - remove krb5 realm and kdc from sssd config when Kerberos support
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ldap-client-3.1.3/package/yast2-ldap-client.spec 
new/yast2-ldap-client-3.1.4/package/yast2-ldap-client.spec
--- old/yast2-ldap-client-3.1.3/package/yast2-ldap-client.spec  2013-12-05 
16:55:00.0 +0100
+++ new/yast2-ldap-client-3.1.4/package/yast2-ldap-client.spec  2014-01-30 
12:25:11.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ldap-client
-Version:3.1.0
+Version:3.1.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -26,7 +26,7 @@
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires: doxygen perl-XML-Writer update-desktop-files yast2 yast2-pam 
yast2-testsuite yast2-network
-BuildRequires:  yast2-devtools = 3.0.6
+BuildRequires:  yast2-devtools = 3.1.10
 
 PreReq: %fillup_prereq
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ldap-client-3.1.3/src/autoyast-rnc/ldap_client.rnc 
new/yast2-ldap-client-3.1.4/src/autoyast-rnc/ldap_client.rnc
--- old/yast2-ldap-client-3.1.3/src/autoyast-rnc/ldap_client.rnc
2013-12-05 16:55:00.0 +0100
+++ new/yast2-ldap-client-3.1.4/src/autoyast-rnc/ldap_client.rnc
2014-01-30 12:25:11.0 +0100
@@ -9,6 +9,7 @@
 ldap_domain? 
 ldap_server? 
 ldap_tls? 
+ldaps? 
 create_ldap? 
 start_ldap? 
 member_attribute? 
@@ -43,6 +44,7 @@
 login_enabled = element login_enabled { BOOLEAN }
 file_server = element file_server { BOOLEAN }
 ldap_tls = element ldap_tls { BOOLEAN }
+ldaps = element ldaps { BOOLEAN }
 start_ldap = element start_ldap { BOOLEAN }
 

commit yast2-installation for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package yast2-installation for 
openSUSE:Factory checked in at 2014-01-31 11:51:14

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


Package is yast2-installation

Changes:

--- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes
2014-01-29 07:17:50.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-installation.new/yast2-installation.changes   
2014-01-31 11:51:14.0 +0100
@@ -1,0 +2,13 @@
+Thu Jan 30 15:43:05 UTC 2014 - jreidin...@suse.com
+
+- Remove write to non-existing /etc/sysconfig/suseconfig
+  (FATE#100011)
+- 3.1.27
+
+---
+Thu Jan 30 15:42:52 CET 2014 - aschn...@suse.de
+
+- fixed DASD detection (bnc#860398)
+- 3.1.26
+
+---

Old:

  yast2-installation-3.1.25.tar.bz2

New:

  yast2-installation-3.1.27.tar.bz2



Other differences:
--
++ yast2-installation.spec ++
--- /var/tmp/diff_new_pack.YJn2uu/_old  2014-01-31 11:51:15.0 +0100
+++ /var/tmp/diff_new_pack.YJn2uu/_new  2014-01-31 11:51:15.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-installation
-Version:3.1.25
+Version:3.1.27
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-installation-3.1.25.tar.bz2 - yast2-installation-3.1.27.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-3.1.25/package/yast2-installation.changes 
new/yast2-installation-3.1.27/package/yast2-installation.changes
--- old/yast2-installation-3.1.25/package/yast2-installation.changes
2014-01-28 17:04:55.0 +0100
+++ new/yast2-installation-3.1.27/package/yast2-installation.changes
2014-01-30 17:19:57.0 +0100
@@ -1,4 +1,17 @@
 ---
+Thu Jan 30 15:43:05 UTC 2014 - jreidin...@suse.com
+
+- Remove write to non-existing /etc/sysconfig/suseconfig
+  (FATE#100011)
+- 3.1.27
+
+---
+Thu Jan 30 15:42:52 CET 2014 - aschn...@suse.de
+
+- fixed DASD detection (bnc#860398)
+- 3.1.26
+
+---
 Tue Jan 28 15:37:15 UTC 2014 - jreidin...@suse.com
 
 - Fix exporting configuration in first stage (FATE#308539)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-3.1.25/package/yast2-installation.spec 
new/yast2-installation-3.1.27/package/yast2-installation.spec
--- old/yast2-installation-3.1.25/package/yast2-installation.spec   
2014-01-28 17:04:55.0 +0100
+++ new/yast2-installation-3.1.27/package/yast2-installation.spec   
2014-01-30 17:19:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-installation
 #
-# 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,7 +17,7 @@
 
 
 Name:   yast2-installation
-Version:3.1.25
+Version:3.1.27
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-3.1.25/src/clients/inst_disks_activate.rb 
new/yast2-installation-3.1.27/src/clients/inst_disks_activate.rb
--- old/yast2-installation-3.1.25/src/clients/inst_disks_activate.rb
2014-01-28 17:04:55.0 +0100
+++ new/yast2-installation-3.1.27/src/clients/inst_disks_activate.rb
2014-01-30 17:19:57.0 +0100
@@ -1,7 +1,7 @@
 # encoding: utf-8
 
 # 
--
-# Copyright (c) 2006-2012 Novell, Inc. All Rights Reserved.
+# Copyright (c) [2006-2014] Novell, Inc. All Rights Reserved.
 #
 #
 # This program is free software; you can redistribute it and/or modify it under
@@ -61,7 +61,7 @@
 
 # detect DASD disks
 disks = SCR.Read(path(.probe.disk))
-@have_dasd = disks.any? {|d| d[device] == dasd }
+@have_dasd = disks.any? {|d| d[device] == DASD }
 
 # detect zFCP disks
 controllers = SCR.Read(path(.probe.storage))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-3.1.25/src/clients/save_config_finish.rb 

commit yast2-network for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2014-01-31 11:51:24

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


Package is yast2-network

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2014-01-23 15:59:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2014-01-31 11:51:25.0 +0100
@@ -1,0 +2,8 @@
+Thu Jan 30 09:55:29 UTC 2014 - mfi...@suse.com
+
+- bnc#861078
+  - network configuration created during installation is copied to
+target
+- 3.1.16 
+
+---

Old:

  yast2-network-3.1.15.tar.bz2

New:

  yast2-network-3.1.16.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.GaQnhy/_old  2014-01-31 11:51:26.0 +0100
+++ /var/tmp/diff_new_pack.GaQnhy/_new  2014-01-31 11:51:26.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.15
+Version:3.1.16
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.15.tar.bz2 - yast2-network-3.1.16.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.15/README.md 
new/yast2-network-3.1.16/README.md
--- old/yast2-network-3.1.15/README.md  1970-01-01 01:00:00.0 +0100
+++ new/yast2-network-3.1.16/README.md  2014-01-30 11:52:43.0 +0100
@@ -0,0 +1,86 @@
+YaST Network Module
+==
+
+The YaST2 Network module manages network configuration including device 
configuration,
+DNS, Routing and more
+
+Features
+
+
+  * device configuration via netconfig
+  * network service selection (netconfig, NetworkManager, wicked)
+  * routing configuration
+  * DNS and hostname setup
+  * remote administration setup
+
+Some features are SuSE Linux specific.
+
+[![Code 
Climate](https://codeclimate.com/github/yast/yast-network.png)](https://codeclimate.com/github/yast/yast-network)
+
+Installation
+
+
+To install the latest stable version on openSUSE or SLE, use zypper:
+
+$ sudo zypper install yast2-network
+
+Running
+---
+
+To run the module, use the following command as root:
+
+$ yast2 lan
+
+This will start complex dialog with most of features available.
+For more options see section on [running 
YaST](https://en.opensuse.org/SDB:Starting_YaST) 
+in the YaST documentation.
+
+Documentation
+-
+
+User YaST documentation is available in [general YaST 
documentation](https://en.opensuse.org/Portal:YaST).
+
+Developer documentation specific for this module is in the [doc](doc)
+directory.
+
+Development
+---
+
+This module is developed as part of YaST. See
+[YaST development documentation](
+  https://en.opensuse.org/openSUSE:YaST_development)
+for information about [YaST architecture](
+  https://en.opensuse.org/openSUSE:YaST:_Architecture_Overview),
+[development environment](
+https://en.opensuse.org/openSUSE:YaST:_Preparing_the_Development_Environment)
+and other development-related topics.
+
+To get the source code, clone the GitHub repository:
+
+$ git clone https://github.com/yast/yast-network.git
+
+Alternatively, you can fork the repository and clone your fork. This is most
+useful if you plan to contribute into the project.
+
+Before doing anything useful with the code, you need to setup a development
+environment. Fortunately, this is quite simple:
+
+$ sudo zypper install yast2-devtools
+
+To run the module from the source code, use the `run` Rake task:
+
+$ rake run
+
+To run the testsuite, use the `test` Rake task:
+
+$ rake test
+
+For a complete list of tasks, run `rake -T`.
+
+Before submitting any change please read our [contribution
+guidelines](CONTRIBUTING.md).
+
+If you have any question, feel free to ask at the [development mailing
+list](http://lists.opensuse.org/yast-devel/) or at the
+[#yast](https://webchat.freenode.net/?channels=%23yast) IRC channel on 
freenode.
+We'll do our best to provide a timely and accurate answer.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.15/package/yast2-network.changes 
new/yast2-network-3.1.16/package/yast2-network.changes
--- old/yast2-network-3.1.15/package/yast2-network.changes  2014-01-21 
13:43:33.0 +0100
+++ new/yast2-network-3.1.16/package/yast2-network.changes  2014-01-30 
11:52:43.0 +0100
@@ -1,4 +1,12 @@
 ---
+Thu Jan 30 09:55:29 UTC 2014 

commit fonts-config for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package fonts-config for openSUSE:Factory 
checked in at 2014-01-31 13:35:18

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


Package is fonts-config

Changes:

--- /work/SRC/openSUSE:Factory/fonts-config/fonts-config.changes
2013-10-02 13:27:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.fonts-config.new/fonts-config.changes   
2014-01-31 13:35:19.0 +0100
@@ -1,0 +2,10 @@
+Thu Jan 30 12:38:10 UTC 2014 - pgaj...@suse.com
+
+- fonts-config 20131102 [bnc#860097]:
+  * do not check for font module used - fixes TTCap entries 
+generation
+  * drop generating ghostscript fontmap
+  * drop generating ooo xcu file
+  * --quiet means quiet now
+
+---

Old:

  Common.xcu.template
  suse-font-dirs.conf.template



Other differences:
--
++ fonts-config.spec ++
--- /var/tmp/diff_new_pack.seAnPD/_old  2014-01-31 13:35:20.0 +0100
+++ /var/tmp/diff_new_pack.seAnPD/_new  2014-01-31 13:35:20.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fonts-config
 #
-# 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,37 +17,34 @@
 
 
 Name:   fonts-config
-Version:20080121
+Version:20131102
 Release:0
 Summary:Configures Fonts for X Windows and other applications
 License:GPL-2.0+
 Group:  System/X11/Fonts
-Source: fonts-config
-Source2:sysconfig.fonts-config
-Source3:Common.xcu.template
-Source5:fontconfig.SuSE.properties.template
-Source6:suse-hinting.conf.template
-Source7:suse-bitmaps.conf.template
-Source8:suse-font-dirs.conf.template
+Source0:fonts-config
+Source1:sysconfig.fonts-config
+Source2:fontconfig.SuSE.properties.template
+Source3:suse-hinting.conf.template
+Source4:suse-bitmaps.conf.template
 BuildRequires:  fontconfig
 BuildRequires:  fontpackages-devel
 Requires(pre):  %fillup_prereq
-Requires(pre):  sysvinit-tools
-Requires:   fontconfig = 2.3.93.20060103
+%reconfigure_fonts_prereq
+Requires:   fontconfig
 Requires:   perl(English)
-Recommends: ft2demos
-Provides:   xf86tools:/usr/sbin/fonts-config
+Recommends: mkfontscale
+Recommends: mkfontdir
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-%reconfigure_fonts_prereq
 
 %description
 Configures Fonts for X Windows and other applications.
 
-Usually fonts-config is called automatically via SuSEconfig (SuSEconfig
---module fonts), which is usually automatically called by YaST2. You
-can also execute fonts-config directly, which is mainly useful for
-debugging it.
+Usually fonts-config is called automatically when package containing 
+font is installed, upgraded or removed. But you can also execute 
+fonts-config directly, which is mainly useful to debug it (use 
+--debug flag).
 
 %prep
 
@@ -59,39 +56,42 @@
 mkdir -p %{buildroot}%{_datadir}/fonts-config
 mkdir -p %{buildroot}/%{_mandir}/man1
 mkdir -p %{buildroot}%{_localstatedir}/adm/fillup-templates
-install -m 755 $RPM_SOURCE_DIR/fonts-config %{buildroot}%{_prefix}/sbin
-install -m 644 $RPM_SOURCE_DIR/*.template %{buildroot}%{_datadir}/fonts-config
-pod2man --section 1 --center=  $RPM_SOURCE_DIR/fonts-config  \
+install -m 755 %{SOURCE0} %{buildroot}%{_prefix}/sbin
+install -m 644 %{SOURCE2} %{SOURCE3} %{SOURCE4} 
%{buildroot}%{_datadir}/fonts-config
+pod2man --section 1 --center=  %{SOURCE0}  \
   %{buildroot}/%{_mandir}/man1/fonts-config.1
-install -m 644 $RPM_SOURCE_DIR/sysconfig.fonts-config \
+install -m 644 %{SOURCE1} \
   %{buildroot}%{_localstatedir}/adm/fillup-templates/
 #
 mkdir %{buildroot}%{_datadir}/%{name}/conf.avail/
-sed -e's/_BYTECODE_BW_MAX_PIXEL_/0/' %{SOURCE6} \
+sed -e's/_BYTECODE_BW_MAX_PIXEL_/0/' %{SOURCE3} \
%{buildroot}%{_datadir}/%{name}/conf.avail/12-suse-hinting-bc.conf
-sed -e's/_USE_EMBEDDED_BITMAPS_PLACEHOLDER_//' %{SOURCE7} \
+sed -e's/_USE_EMBEDDED_BITMAPS_PLACEHOLDER_//' %{SOURCE4} \
%{buildroot}%{_datadir}/%{name}/conf.avail/17-suse-bitmaps.conf
 #
-mkdir -p %{buildroot}%{_fontsconfddir}
-ln -s %{_datadir}/%{name}/conf.avail/12-suse-hinting-bc.conf \
-%{buildroot}%{_fontsconfddir}/12-suse-hinting-bc.conf
-ln -s %{_datadir}/%{name}/conf.avail/17-suse-bitmaps.conf \
-%{buildroot}%{_fontsconfddir}/17-suse-bitmaps.conf

commit rpcbind for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package rpcbind for openSUSE:Factory checked 
in at 2014-01-31 13:35:56

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


Package is rpcbind

Changes:

--- /work/SRC/openSUSE:Factory/rpcbind/rpcbind.changes  2014-01-23 
15:55:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpcbind.new/rpcbind.changes 2014-01-31 
13:35:57.0 +0100
@@ -2 +2,37 @@
-Mon Jan 20 12:26:55 UTC 2014 - o...@suse.com
+Thu Jan 23 16:58:25 UTC 2014 - o...@suse.com
+
+- Fixed rpc broadcast handling (bnc#857324)
+  Upgraded to upstream 0.2.1-rc4 as part of this, and rebased the
+  patch set.
+
+  Added:
+ 0001-Fix-building-one-systems-w-out-nss.h.patch
+ 0002-Rename-configure.in-to-configure.ac.patch
+ 0003-rpcbind-rpcuser-not-being-set-in-Makefile.am.patch
+  Deleted (already upstream):
+ 0003-configure-fix-the-case-when-with-rpcuser-is-not-give.patch
+  Renumbered (previous numbering shown below):
+ 0001-Silence-a-warning-about-setgroups-being-implicitly-d.patch
+ 0002-Remove-obsolete-function-in6_fillscopeid.patch
+ 0004-In-init_transport-move-creation-of-COTS-sockets-clos.patch
+ 0005-The-use-of-AI_NUMERICHOST-in-init_transport-is-broke.patch
+ 0006-First-part-of-init_transport-refactoring.patch
+ 0007-init_transport-move-the-registration-code-into-a-sep.patch
+ 0008-Fix-the-behavior-when-specifying-the-h-option.patch
+ 0009-Clean-up-the-way-we-handle-the-h-option-in-init_tran.patch
+ 0010-Support-systemd-activation.patch
+ 0011-socket-activation-Fix-rpcbind.service-to-use-separat.patch
+ 0012-When-using-systemd-redirect-syslog-calls-to-the-syst.patch
+ 0013-When-using-systemd-activation-make-rpcbind-notify-sy.patch
+ 0014-Notify-systemd-unconditionally.patch
+ 0015-Pull-the-sysconfig-file-into-rpcbind.service-and-use.patch
+ 0016-configure-check-for-nss.h.patch
+ 0018-rpcinfo-ip_ping-clean-up-client-ping-create-destroy.patch
+ 0019-rpcinfo-introduce-new-helper-function-ip_getclient.patch
+ 0020-rpcinfo-make-t-u-options-support-IPv6-addresses-too.patch
+ 0021-rpcinfo-remove-obsolete-function-clnt_com_create.patch
+ 0022-Make-rpcinfo-p-support-IPv6-addresses-too.patch
+ 0023-rpcinfo-remove-obsolete-function-get_inet_address.patch
+
+---
+Mon Jan 20 12:20:02 UTC 2014 - o...@suse.com

Old:

  0001-Silence-a-warning-about-setgroups-being-implicitly-d.patch
  0002-Remove-obsolete-function-in6_fillscopeid.patch
  0003-configure-fix-the-case-when-with-rpcuser-is-not-give.patch
  0004-In-init_transport-move-creation-of-COTS-sockets-clos.patch
  0005-The-use-of-AI_NUMERICHOST-in-init_transport-is-broke.patch
  0006-First-part-of-init_transport-refactoring.patch
  0007-init_transport-move-the-registration-code-into-a-sep.patch
  0008-Fix-the-behavior-when-specifying-the-h-option.patch
  0009-Clean-up-the-way-we-handle-the-h-option-in-init_tran.patch
  0010-Support-systemd-activation.patch
  0011-socket-activation-Fix-rpcbind.service-to-use-separat.patch
  0012-When-using-systemd-redirect-syslog-calls-to-the-syst.patch
  0013-When-using-systemd-activation-make-rpcbind-notify-sy.patch
  0014-Notify-systemd-unconditionally.patch
  0015-Pull-the-sysconfig-file-into-rpcbind.service-and-use.patch
  0016-configure-check-for-nss.h.patch
  0018-rpcinfo-ip_ping-clean-up-client-ping-create-destroy.patch
  0019-rpcinfo-introduce-new-helper-function-ip_getclient.patch
  0020-rpcinfo-make-t-u-options-support-IPv6-addresses-too.patch
  0021-rpcinfo-remove-obsolete-function-clnt_com_create.patch
  0022-Make-rpcinfo-p-support-IPv6-addresses-too.patch
  0023-rpcinfo-remove-obsolete-function-get_inet_address.patch
  rpcbind-0.2.1_git1b0fdf5.tar.bz2

New:

  0001-Fix-building-one-systems-w-out-nss.h.patch
  0002-Rename-configure.in-to-configure.ac.patch
  0003-rpcbind-rpcuser-not-being-set-in-Makefile.am.patch
  0004-Silence-a-warning-about-setgroups-being-implicitly-d.patch
  0005-Remove-obsolete-function-in6_fillscopeid.patch
  0006-In-init_transport-move-creation-of-COTS-sockets-clos.patch
  0007-The-use-of-AI_NUMERICHOST-in-init_transport-is-broke.patch
  0008-First-part-of-init_transport-refactoring.patch
  0009-init_transport-move-the-registration-code-into-a-sep.patch
  0010-Fix-the-behavior-when-specifying-the-h-option.patch
  0011-Clean-up-the-way-we-handle-the-h-option-in-init_tran.patch
  0012-Support-systemd-activation.patch
  0013-socket-activation-Fix-rpcbind.service-to-use-separat.patch
  0014-When-using-systemd-redirect-syslog-calls-to-the-syst.patch
  0015-When-using-systemd-activation-make-rpcbind-notify-sy.patch
  0016-Notify-systemd-unconditionally.patch
  

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

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package php5-pear-symfony2-Yaml for 
openSUSE:Factory checked in at 2014-01-31 16:42:19

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


Package is php5-pear-symfony2-Yaml

Changes:

New Changes file:

--- /dev/null   2013-11-25 01:44:08.036031256 +0100
+++ 
/work/SRC/openSUSE:Factory/.php5-pear-symfony2-Yaml.new/php5-pear-symfony2-Yaml.changes
 2014-01-31 16:42:19.0 +0100
@@ -0,0 +1,5 @@
+---
+Sun Aug  4 21:05:57 UTC 2013 - robert.munte...@gmail.com
+
+- Initial package at version 2.3.2 
+

New:

  Yaml-2.3.2.tgz
  php5-pear-symfony2-Yaml.changes
  php5-pear-symfony2-Yaml.spec



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

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


Name:   php5-pear-symfony2-Yaml
%define peardir %(pear config-get php_dir 2 /dev/null || echo %{_datadir}/pear)
%define xmldir  /var/lib/pear
%define pear_name  Yaml
%define pear_sname yaml
Summary:Symfony2 Yaml Component
License:MIT
Group:  Development/Libraries/PHP
Version:2.3.2
Release:0
Source0:http://pear.symfony.com/get/%{pear_name}-%{version}.tgz
Url:http://pear.symfony.com/

%if 0%{?sles_version} == 11
BuildRequires:  php53-devel
%else
BuildRequires:  php-macros
%endif

BuildRequires:  php5-pear-channel-symfony2
Requires:   php5-pear-channel-symfony2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

# Fix for renaming (package convention)
Provides:   pear-%{pear_name}
Provides:   pear-%{pear_sname} = %{version}
Provides:   php-pear-%{pear_name}
Provides:   php-pear-%{pear_sname} = %{version}
Provides:   php5-pear-%{pear_sname} = %{version}
Obsoletes:  pear-%{pear_sname}  %{version}
Obsoletes:  php-pear-%{pear_sname}  %{version}
Obsoletes:  php5-pear-%{pear_sname}  %{version}

%description
This is the Symfony YAML Component. YAML means Yet Another Markup Language and 
is your opportunity to shoot yourself into the foot if xml didn't do it for you.

%prep
%setup -c

%build

%install
%{__mv} package.xml %{pear_name}-%{version}
pushd %{pear_name}-%{version}
PHP_PEAR_PHP_BIN=$(which php) -d memory_limit=50m
%{__mkdir_p} %{buildroot}%{php_peardir}/.channels/
%{__cp} %{php_peardir}/.channels/pear.*.reg \
%{buildroot}%{php_peardir}/.channels/

%{__pear} -v \
-d doc_dir=/%{_docdir} \
-d bin_dir=%{_bindir} \
-d data_dir=%{php_peardir}/data \
install --offline --nodeps -R %{buildroot} package.xml

%{__install} -D -m 0644 package.xml 
%{buildroot}%{php_pearxmldir}/%{pear_name}.xml

%{__rm} -rf %{buildroot}/{doc,tmp}
%{__rm} -rf 
%{buildroot}/%{php_peardir}/.{filemap,lock,registry,channels,depdb,depdblock}

popd

%php_pear_gen_filelist

%post
# on `rpm -ivh` PARAM is 1
# on `rpm -Uvh` PARAM is 2
if [ $1 = 1 ]; then
  %{__pear} install --nodeps --soft --force --register-only 
%{php_pearxmldir}/%{pear_name}.xml
fi
if [ $1 = 2 ]; then
  %{__pear} upgrade --offline --register-only %{php_pearxmldir}/%{pear_name}.xml
fi

%postun
# on `rpm -e` PARAM is 0
if [ $1 = 0 ]; then
  %{__pear} uninstall --nodeps --ignore-errors --register-only 
pear.symfony.com/%{pear_name}
fi

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(-,root,root)
%doc %{_docdir}/%{pear_name}

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



commit xcb-util-wm for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package xcb-util-wm for openSUSE:Factory 
checked in at 2014-01-31 16:42:25

Comparing /work/SRC/openSUSE:Factory/xcb-util-wm (Old)
 and  /work/SRC/openSUSE:Factory/.xcb-util-wm.new (New)


Package is xcb-util-wm

Changes:

--- /work/SRC/openSUSE:Factory/xcb-util-wm/xcb-util-wm.changes  2013-03-21 
22:16:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.xcb-util-wm.new/xcb-util-wm.changes 
2014-01-31 16:42:27.0 +0100
@@ -1,0 +2,8 @@
+Thu Jan 30 11:04:18 UTC 2014 - sndir...@suse.com
+
+- update to version 0.4.0; changes since 0.3.9:
+  + Even though EWMH spec does not mandate window to be set, some
+WM expect it to be set.
+  + Check submodules before running autoconf.
+
+---

Old:

  xcb-util-wm-0.3.9.tar.bz2

New:

  xcb-util-wm-0.4.0.tar.bz2



Other differences:
--
++ xcb-util-wm.spec ++
--- /var/tmp/diff_new_pack.t9qvAd/_old  2014-01-31 16:42:28.0 +0100
+++ /var/tmp/diff_new_pack.t9qvAd/_new  2014-01-31 16:42:28.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xcb-util-wm
 #
-# 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,7 +17,7 @@
 
 
 Name:   xcb-util-wm
-Version:0.3.9
+Version:0.4.0
 Release:0
 Summary:XCB utility module for client- and WM-side ICCCM helpers
 License:MIT

++ xcb-util-wm-0.3.9.tar.bz2 - xcb-util-wm-0.4.0.tar.bz2 ++
 7221 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xcb-util-wm-0.3.9/ChangeLog new/xcb-util-wm-0.4.0/ChangeLog
--- old/xcb-util-wm-0.3.9/ChangeLog 2012-05-31 05:50:39.0 +0200
+++ new/xcb-util-wm-0.4.0/ChangeLog 2014-01-29 07:58:24.0 +0100
@@ -1,3 +1,36 @@
+commit 1ad70737e5076baf1f99cb6463e10a362f78ceee
+Author: Arnaud Fontaine ar...@debian.org
+Date:   Wed Jan 29 15:45:03 2014 +0900
+
+Release 0.4.0.
+
+Signed-off-by: Arnaud Fontaine ar...@debian.org
+
+commit c3d61ece8098ec3f1b3f5c3f8c5c95f2a5c3c0f7
+Author: Niclas Zeising zeis...@daemonic.se
+Date:   Mon Aug 12 13:53:10 2013 +0200
+
+Check submodules before running autoconf.
+
+Exit early with an informative message if the submodules are missing,
+since they are needed.  Without this autoconf throws a bunch of
+uninformative errors which does not point to the actual problem.
+This was taken from util-keysyms.
+
+Signed-off-by: Niclas Zeising zeis...@daemonic.se
+Reviewed-By: Arnaud Fontaine ar...@debian.org
+
+commit c33a20fa5876e96c5ec6ec882b681379f145a66e
+Author: Arnaud Fontaine ar...@debian.org
+Date:   Tue Jul 16 17:48:32 2013 +0900
+
+Even though EWMH spec does not mandate window to be set, some WM expect it 
to be set.
+
+For example, Awesome 3.4 with Zaphod mode checks this attribute to match 
it to
+the relevant root window.
+
+Signed-off-by: Arnaud Fontaine ar...@debian.org
+
 commit b488f4142298640f3237914a489c8eb6107922fd
 Author: Arnaud Fontaine ar...@debian.org
 Date:   Thu May 31 11:22:27 2012 +0900
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xcb-util-wm-0.3.9/NEWS new/xcb-util-wm-0.4.0/NEWS
--- old/xcb-util-wm-0.3.9/NEWS  2012-05-31 04:12:01.0 +0200
+++ new/xcb-util-wm-0.4.0/NEWS  2014-01-29 07:53:42.0 +0100
@@ -1,3 +1,8 @@
+Release 0.4.0 (2014-01-19)
+==
+
+- Set EWMH ClientMessage window to the Root, not mandated but expected by some 
WMs.
+
 Release 0.3.9 (2012-05-30)
 ==
 
@@ -17,4 +22,4 @@
 - Link with -no-undefined.
 - Validate size of wm_hints and wm_size_hints.
 - Ensure get_wm_class_from_reply returns a valid C-string.
-- Add AM_MAINTAINER_MODE for vendors
+- Add AM_MAINTAINER_MODE for vendors.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess 

commit xf86-video-ati for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-ati for openSUSE:Factory 
checked in at 2014-01-31 16:42:31

Comparing /work/SRC/openSUSE:Factory/xf86-video-ati (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-ati.new (New)


Package is xf86-video-ati

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-ati/xf86-video-ati.changes
2013-08-10 10:51:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-ati.new/xf86-video-ati.changes   
2014-01-31 16:42:32.0 +0100
@@ -1,0 +2,35 @@
+Thu Jan 30 10:42:16 UTC 2014 - sndir...@suse.com
+
+- Update to 7.3.0; changes since 7.2.0:
+radeon: disallow glamor on pre-R600 asics
+radeon/kms: add berlin pci ids
+radeon: enable glamor by default (v4)
+radeon: fix limit handling for cards with 4G of ram
+drm/radeon: fix non-glamor build
+radeon: fix the non-glamor build harder...
+radeon: enable tiling on SI by default (v2)
+radeon: add support for Hawaii
+radeon/kms: add Hawaii pci ids
+drm/radeon: fix SUMO2 pci id
+radeon/exa: Always use a scratch surface for UTS to vram
+Require glamor 0.6.0
+EXA/evergreen: Paranoia around linear tiling. (v2)
+radeon: use glamor Xv support if present.
+radeon/glamor: with new pixmap for dri2 drawable no need to
+  create new texture
+Fix shadowfb on big-endian machines
+DRI2: Install client callback only once
+dri2: Make last_vblank_seq local unsigned to match dpms_last_seq
+Don't require the glamoregl module to be pre-loaded with xserver = 1.15
+radeon: Set first parameter of drmOpen() to NULL
+radeon: Restore kernel module load on FreeBSD.
+radeon: disable 2D tiling on buffers  128 pixels
+- removed obsolete patches xf86-video-ati.diff, 
+  xf86-video-ati-bug519261-increase-virtual.diff,
+  xf86-video-ati-disable-dri-bug437651-ia64only.diff since
+  modesetting is now being done in kernel space (KMS) and IA64 is
+  no longer considered a relevant architecture for current SUSE
+  products
+- specfile cleanup
+
+---

Old:

  xf86-video-ati-7.2.0.tar.bz2
  xf86-video-ati-bug519261-increase-virtual.diff
  xf86-video-ati-disable-dri-bug437651-ia64only.diff
  xf86-video-ati.diff

New:

  xf86-video-ati-7.3.0.tar.bz2



Other differences:
--
++ xf86-video-ati.spec ++
--- /var/tmp/diff_new_pack.F8qvE6/_old  2014-01-31 16:42:33.0 +0100
+++ /var/tmp/diff_new_pack.F8qvE6/_new  2014-01-31 16:42:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-ati
 #
-# 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,16 +17,13 @@
 
 
 Name:   xf86-video-ati
-Version:7.2.0
+Version:7.3.0
 Release:0
 Summary:ATI video driver for the Xorg X server
 License:MIT
 Group:  System/X11/Servers/XF86_4
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2
-Patch0: xf86-video-ati.diff
-Patch3: xf86-video-ati-bug519261-increase-virtual.diff
-Patch4: xf86-video-ati-disable-dri-bug437651-ia64only.diff
 
 BuildRequires:  Mesa-devel
 BuildRequires:  autoconf = 2.60
@@ -66,13 +63,6 @@
 
 %prep
 %setup -q
-### File is gone (not applicable anymore?)
-#%patch0
-### File is gone (not applicable anymore?)
-#%patch3 -p1
-%ifarch ia64
-#%patch4 -p1
-%endif
 
 %build
 autoreconf -fi
@@ -87,12 +77,8 @@
 %defattr(-,root,root)
 %doc COPYING README
 %dir %{_libdir}/xorg/modules/drivers
-#%dir %{_libdir}/xorg/modules/multimedia
 %{_libdir}/xorg/modules/drivers/ati_drv.so
 %{_libdir}/xorg/modules/drivers/radeon_drv.so
-#%{_libdir}/xorg/modules/multimedia/theatre200_drv.so
-#%{_libdir}/xorg/modules/multimedia/theatre_detect_drv.so
-#%{_libdir}/xorg/modules/multimedia/theatre_drv.so
 %{_datadir}/man/man4/ati.4%{?ext_man}
 %{_datadir}/man/man4/radeon.4%{?ext_man}
 

++ xf86-video-ati-7.2.0.tar.bz2 - xf86-video-ati-7.3.0.tar.bz2 ++
 7977 lines of diff (skipped)

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



commit xkeyboard-config for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package xkeyboard-config for 
openSUSE:Factory checked in at 2014-01-31 16:42:41

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


Package is xkeyboard-config

Changes:

--- /work/SRC/openSUSE:Factory/xkeyboard-config/xkeyboard-config.changes
2013-10-08 11:08:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.xkeyboard-config.new/xkeyboard-config.changes   
2014-01-31 16:42:42.0 +0100
@@ -1,0 +2,7 @@
+Thu Jan 30 11:08:13 UTC 2014 - sndir...@suse.com
+
+- Update to version 2.11
+  + There is traditional massive code cleanup by Benno - and a
+number of other fixes and updated translations (thanks to TP)
+
+---

Old:

  xkeyboard-config-2.10.1.tar.bz2

New:

  xkeyboard-config-2.11.tar.bz2



Other differences:
--
++ xkeyboard-config.spec ++
--- /var/tmp/diff_new_pack.uXk8h7/_old  2014-01-31 16:42:42.0 +0100
+++ /var/tmp/diff_new_pack.uXk8h7/_new  2014-01-31 16:42:42.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xkeyboard-config
 #
-# 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
@@ -28,12 +28,12 @@
 Provides:   XFree86:/etc/X11/xkb/symbols/us
 Provides:   xorg-x11:/etc/X11/xkb/symbols/us
 PreReq: /bin/ln /bin/rm
-Version:2.10.1
+Version:2.11
 Release:0
 Summary:The X Keyboard Extension
 License:GPL-2.0+ and LGPL-2.1+ and MIT and CDDL-1.0
 Group:  System/X11/Utilities
-Source: 
http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/xkeyboard-config-2.10.1.tar.bz2
+Source: 
http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/xkeyboard-config-%{version}.tar.bz2
 Patch0: n_rs-cyralpha-The-key-z-on-US-keyboard-should-give-dze.patch
 Patch100:   n_suse.patch
 # PATCH-FIX-OPENSUSE disable-2xalt_2xctrl-toggle.diff fdo#4927 -- This is just 
a workaround until fdo#4927 is fixed

++ xkeyboard-config-2.10.1.tar.bz2 - xkeyboard-config-2.11.tar.bz2 ++
 69972 lines of diff (skipped)

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



commit xorg-x11-server for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2014-01-31 16:47:10

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


Package is xorg-x11-server

Changes:

--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2014-01-23 15:58:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes 
2014-01-31 16:47:11.0 +0100
@@ -1,0 +2,8 @@
+Thu Jan 30 10:33:43 UTC 2014 - lbsous...@gmail.com
+
+- Rename u_keep_non_seat0_x_server_from_touching_vts.patch to
+  U_keep_non_seat0_x_server_from_touching_vts.patch, since it's
+  now upstreamed.
+  * See: 
http://cgit.freedesktop.org/xorg/xserver/commit/?id=46cf2a60934076bf568062eb83121ce90b6ff596
+
+---

Old:

  u_keep_non_seat0_x_server_from_touching_vts.patch

New:

  U_keep_non_seat0_x_server_from_touching_vts.patch



Other differences:
--
++ xorg-x11-server.spec ++
--- /var/tmp/diff_new_pack.TkM5Y1/_old  2014-01-31 16:47:12.0 +0100
+++ /var/tmp/diff_new_pack.TkM5Y1/_new  2014-01-31 16:47:12.0 +0100
@@ -133,7 +133,7 @@
 Patch162:   b_cache-xkbcomp-output-for-fast-start-up.patch
 Patch211:   
b_0001-Prevent-XSync-Alarms-from-senslessly-calling-CheckTr.patch
 Patch222:   b_sync-fix.patch
-Patch223:   u_keep_non_seat0_x_server_from_touching_vts.patch
+Patch223:   U_keep_non_seat0_x_server_from_touching_vts.patch
 
 %description
 This package contains the X.Org Server.

++ U_keep_non_seat0_x_server_from_touching_vts.patch ++
From 405e2805d3903a8a631f01924593a227c634f05d Mon Sep 17 00:00:00 2001
From: Laércio de Sousa lbsous...@gmail.com
Date: Thu, 12 Dec 2013 16:22:48 +
Subject: xfree86: Keep a non-seat0 X server from touching VTs (#71258)

Updated patch following Hans de Goede's advice.

If -seat option is passed with a value different from seat0,
X server won't call xf86OpenConsole().

This is needed to avoid any race condition between seat0 and
non-seat0 X servers. If a non-seat0 X server opens a given VT
before a seat0 one which expects to open the same VT, one can
get an inactive systemd-logind graphical session for seat0.

This patch was first tested in a multiseat setup with multiple
video cards and works quite well.

I suppose it can also make things like DontVTSwitch and -sharevts
meaningless for non-seat0 seats, so it may fix bug #69477, too.

Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=71258
   https://bugs.freedesktop.org/show_bug.cgi?id=69477 (maybe)

See also: http://lists.x.org/archives/xorg-devel/2013-October/038391.html
  https://bugzilla.redhat.com/show_bug.cgi?id=1018196

Signed-off-by: Hans de Goede hdego...@redhat.com
---
diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c
index 91ec4c8..1e95061 100644
--- a/hw/xfree86/common/xf86Init.c
+++ b/hw/xfree86/common/xf86Init.c
@@ -544,7 +544,8 @@ InitOutput(ScreenInfo * pScreenInfo, int argc, char **argv)
 if (NEED_IO_ENABLED(flags))
 want_hw_access = TRUE;
 
-if (!(flags  HW_SKIP_CONSOLE))
+/* Non-seat0 X servers should not open console */
+if (!(flags  HW_SKIP_CONSOLE)  !ServerIsNotSeat0())
 xorgHWOpenConsole = TRUE;
 }
 
--
cgit v0.9.0.2-2-gbebe
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit Test-DVD-x86_64 for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package Test-DVD-x86_64 for openSUSE:Factory 
checked in at 2014-01-31 19:38:37

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


Package is Test-DVD-x86_64

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ PRODUCT-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.YAuLqf/_old  2014-01-31 19:38:39.0 +0100
+++ /var/tmp/diff_new_pack.YAuLqf/_new  2014-01-31 19:38:39.0 +0100
@@ -23,7 +23,7 @@
 productoptions
   productvar name=DISTNAMEopenSUSE/productvar
   productvar name=FLAVORdvd/productvar
-  productvar name=MEDIUM_NAMETest-67/productvar
+  productvar name=MEDIUM_NAMETest-68/productvar
   productvar name=MULTIPLE_MEDIAno/productvar
   productvar name=PRODUCT_DIR//productvar
   productvar name=PRODUCT_NAME$DISTNAME-$FLAVOR/productvar
@@ -74,6 +74,7 @@
   repopackage name=augeas-lenses/
   repopackage name=autoyast2-installation/
   repopackage name=bash/
+  repopackage name=bash-completion/
   repopackage name=bash-lang/
   repopackage name=bind-libs/
   repopackage name=bind-utils/


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



commit rpmlint-Factory for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package rpmlint-Factory for openSUSE:Factory 
checked in at 2014-01-31 20:11:22

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


Package is rpmlint-Factory

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint-Factory/rpmlint-Factory.changes  
2013-01-31 10:19:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpmlint-Factory.new/rpmlint-Factory.changes 
2014-01-31 20:11:23.0 +0100
@@ -1,0 +2,5 @@
+Thu Jan 30 14:43:17 UTC 2014 - dmuel...@suse.com
+
+- make anything = 1000 fatal 
+
+---



Other differences:
--
++ rpmlint-Factory.spec ++
--- /var/tmp/diff_new_pack.MLHouK/_old  2014-01-31 20:11:24.0 +0100
+++ /var/tmp/diff_new_pack.MLHouK/_new  2014-01-31 20:11:24.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmlint-Factory
 #
-# 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

++ config ++
--- /var/tmp/diff_new_pack.MLHouK/_old  2014-01-31 20:11:24.0 +0100
+++ /var/tmp/diff_new_pack.MLHouK/_new  2014-01-31 20:11:24.0 +0100
@@ -25,7 +25,7 @@
 # This line is mandatory to access the configuration functions
 from Config import *
 
-setOption(BadnessThreshold, 1000)
+setOption(BadnessThreshold, 999)
 
 # score table
 setBadness('arch-dependent-file-in-usr-share', 590)
@@ -52,15 +52,14 @@
 setBadness('executable-docs', 900)
 
 setBadness('binary-in-etc', 900)
-setBadness('non-ghost-in-var-run', 1000)
-setBadness('non-ghost-in-var-lock', 1000)
-
 # too many failures for now
 #setBadness('dir-or-file-in-tmp', 900)
 
 
 #fatal checks
 #setBadness('files-attr-not-set', 1)
+setBadness('non-ghost-in-var-run', 1)
+setBadness('non-ghost-in-var-lock', 1)
 setBadness('percent-in-dependency', 1)
 setBadness('percent-in-obsoletes', 1)
 setBadness('percent-in-provides', 1)

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



commit libqt5-qtbase.2442 for openSUSE:13.1:Update

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package libqt5-qtbase.2442 for 
openSUSE:13.1:Update checked in at 2014-01-31 21:07:35

Comparing /work/SRC/openSUSE:13.1:Update/libqt5-qtbase.2442 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.libqt5-qtbase.2442.new (New)


Package is libqt5-qtbase.2442

Changes:

New Changes file:

--- /dev/null   2013-11-25 01:44:08.036031256 +0100
+++ 
/work/SRC/openSUSE:13.1:Update/.libqt5-qtbase.2442.new/libqt5-qtbase.changes
2014-01-31 21:07:36.0 +0100
@@ -0,0 +1,136 @@
+---
+Mon Jan  6 12:39:03 UTC 2014 - hrvoje.sen...@gmail.com
+
+- added patches:
+  * disallow-deep-or-widely-nested-entity-references.patch: upstream
+fix for bnc#856832 and CVE-2013-4549: xml entity expansion attacks
+
+---
+Fri Oct 18 17:48:59 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added qtbase-opensource-src-5.1.1-bigendian.patch, also needed
+  for building on PowerPC, otherwise fromWordToBytes is
+  left undeclared
+
+---
+Fri Oct 18 12:38:19 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added qtbase-qatomic-ppc.patch, fixes PowerPC build
+
+---
+Fri Oct  4 14:23:42 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Add convenient macros for packages building against Qt5:
+  %_libqt5_qmake, %qmake5, %make_jobs and %qmake5_install
+
+---
+Thu Sep 12 19:58:38 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added missing pkgconfig(xkbcommon) BuildRequires
+- Drop checks for older openSUSE versions
+- Enable GL ES and kms only on arm for now
+
+---
+Thu Sep  5 15:09:28 UTC 2013 - d...@suse.com
+
+- enable support for opengl es2 and kms
+
+---
+Thu Aug 29 16:38:30 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Update to version 5.1.1:
+  * Bugfix release, please see
+  http://blog.qt.digia.com/blog/2013/08/28/qt-5-1-1-released/
+  http://qt.gitorious.org/qt/qtbase/blobs/release/dist/changes-5.1.1
+  and http://qt-project.org/wiki/Qt511KnownIssues for known issues
+- Small spec cleanup
+- Explicitly activate desktop openGL, and only BuildRequire
+  pkgconfig(gl) so whole Mesa stack isn't pulled
+
+---
+Sat Aug  3 07:14:30 UTC 2013 - tittiatc...@gmail.com
+
+- Adjust packaging naming conform Factory standards
+
+---
+Sun Jul  7 12:14:37 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Allow co-existance of Qt5 and Qt4:
+  * Install headers in %_includedir/qt5
+  * Install binaries in %_libdir/qt5/bin, create symlinks with -qt5
+suffixes in %_libdir/qt5/bin and %_bindir
+- Spec cleanup:
+  * Removed checks for obsolete opensuse versions
+- Add new macros.qt5, which should be utilized for other Qt5 modules
+- Added baselibs.conf
+
+---
+Sun Jul  7 07:23:51 UTC 2013 - stephan.bin...@basyskom.com
+
+- update to Qt 5.1 release
+
+---
+Tue Jun 18 20:00:00 UTC 2013 - stephan.bin...@basyskom.com
+
+- update to Qt 5.1 RC 1
+
+---
+Mon May 20 20:00:00 UTC 2013 - stephan.bin...@basyskom.com
+
+- update to Qt 5.1 Beta 1
+
+---
+Tue Apr  9 20:00:00 UTC 2013 - stephan.bin...@basyskom.com
+
+- update to Qt 5.1 Alpha 1
+
+---
+Fri Mar 29 11:58:55 UTC 2013 - stephan.bin...@basyskom.com
+
+- update to Qt 5.0.2 RC1
+
+---
+Wed Jan 30 19:00:00 UTC 2013 - stephan.bin...@basyskom.com
+
+- update to Qt 5.0.1
+
+---
+Wed Dec 19 20:40:40 UTC 2012 - stephan.bin...@basyskom.com
+
+- update to Qt 5.0 release
+
+---
+Thu Dec 13 10:50:52 UTC 2012 - stephan.bin...@basyskom.com
+
+- update to Qt 5.0 Release Candidate 2
+
+---
+Thu Dec  6 19:54:17 UTC 2012 - stephan.bin...@basyskom.com
+
+- update to Qt 5.0 Release Candidate 1
+
+---
+Thu Nov 15 12:14:39 UTC 2012 - stephan.bin...@basyskom.com
+
+- update to Qt 5.0 Beta 2
+
+---
+Thu Aug 30 

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

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package java-1_7_0-openjdk for 
openSUSE:13.1:Update checked in at 2014-01-31 21:07:52

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


Package is java-1_7_0-openjdk

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.H3nKwU/_old  2014-01-31 21:07:56.0 +0100
+++ /var/tmp/diff_new_pack.H3nKwU/_new  2014-01-31 21:07:56.0 +0100
@@ -1 +1 @@
-link package='java-1_7_0-openjdk.2260' cicount='copy' /
+link package='java-1_7_0-openjdk.2491' cicount='copy' /

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



commit installation-images for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:Factory checked in at 2014-02-01 08:43:24

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


Package is installation-images

Changes:

--- /work/SRC/openSUSE:Factory/installation-images/installation-images.changes  
2014-01-30 06:54:07.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images.new/installation-images.changes 
2014-02-01 08:43:25.0 +0100
@@ -1,0 +2,14 @@
+Fri Jan 31 13:55:24 CET 2014 - snw...@suse.de
+
+- no longer ignore certain yast2 packages
+
+---
+Thu Jan 30 13:08:55 CET 2014 - snw...@suse.de
+
+- use skelcd-control-* for yast package list
+- Merge pull request #8 from lslezak/yast_deps_and_branding
+- there can be different packages in SLES and openSUSE inst-sys
+- make some branding packages optional (SLE branding has a different
+  package set than openSUSE)
+
+---

Old:

  installation-images-14.33.tar.bz2

New:

  installation-images-14.35.tar.bz2



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.K6CrGU/_old  2014-02-01 08:43:26.0 +0100
+++ /var/tmp/diff_new_pack.K6CrGU/_new  2014-02-01 08:43:26.0 +0100
@@ -35,7 +35,6 @@
 BuildRequires:  alsa
 BuildRequires:  alsa-utils
 BuildRequires:  audit-libs
-BuildRequires:  autoyast2-installation
 BuildRequires:  bc
 BuildRequires:  bind-libs
 BuildRequires:  bind-utils
@@ -166,8 +165,6 @@
 BuildRequires:  systemd-presets-branding-openSUSE
 BuildRequires:  tunctl
 BuildRequires:  udev
-BuildRequires:  yast2-fcoe-client
-BuildRequires:  yast2-ruby-bindings
 %if %with_plymouth
 BuildRequires:  libkms1
 BuildRequires:  plymouth
@@ -236,27 +233,15 @@
 BuildRequires:  xset
 BuildRequires:  xterm
 BuildRequires:  xz
-BuildRequires:  yast2-add-on
-BuildRequires:  yast2-buildtools
 BuildRequires:  yast2-devtools
-BuildRequires:  yast2-iscsi-client
-BuildRequires:  yast2-kdump
-BuildRequires:  yast2-ldap-client
-BuildRequires:  yast2-multipath
-BuildRequires:  yast2-network
-BuildRequires:  yast2-nfs-client
-BuildRequires:  yast2-ntp-client
-BuildRequires:  yast2-pam
-BuildRequires:  yast2-proxy
-BuildRequires:  yast2-security
-BuildRequires:  yast2-services-manager
-BuildRequires:  yast2-slp
-BuildRequires:  yast2-trans-allpacks
-BuildRequires:  yast2-trans-stats
-BuildRequires:  yast2-tune
-BuildRequires:  yast2-update
-BuildRequires:  yast2-users
-BuildRequires:  yast2-x11
+
+%if %with_sles
+# used also for SLED
+BuildRequires:  skelcd-control-SLES
+%else
+BuildRequires:  skelcd-control-openSUSE
+BuildRequires:  yast2-qt-branding-openSUSE
+%endif
 %if %{with sbl}
 BuildRequires:  sbl
 %endif
@@ -327,7 +312,6 @@
 BuildRequires:  virtualbox-guest-kmp-default
 BuildRequires:  virtualbox-guest-x11
 %endif
-BuildRequires:  yast2-vm
 %endif
 %ifarch %ix86
 BuildRequires:  dos2unix
@@ -353,17 +337,16 @@
 %endif
 %ifarch s390 s390x
 BuildRequires:  kernel-installation-tapeipl
-BuildRequires:  yast2-reipl
 %endif
 %ifarch s390x
 BuildRequires:  glibc-32bit
 %endif
-BuildRequires:  yast2-qt-branding-openSUSE
 %ifarch %ix86 x86_64
-BuildRequires:  gfxboot-branding-openSUSE
 %if %with_sles
-BuildRequires:  gfxboot-branding-SLED
+# BuildRequires:  gfxboot-branding-SLED
 BuildRequires:  gfxboot-branding-SLES
+%else
+BuildRequires:  gfxboot-branding-openSUSE
 %endif
 %if %with_efi_graphics
 BuildRequires:  grub2-branding-openSUSE
@@ -375,14 +358,8 @@
 %ifarch %ix86 x86_64 ia64
 #BuildRequires:  brocade-bfa-kmp-default
 %endif
-%if %with_sles
-BuildRequires:  yast2-theme-SLE
-%endif
 BuildRequires:  desktop-data-openSUSE
 BuildRequires:  dmz-icon-theme-cursors
-BuildRequires:  yast2-theme-openSUSE
-BuildRequires:  yast2-theme-openSUSE-Oxygen
-#
 Provides:   y2image
 Obsoletes:  y2image
 AutoReqProv:off
@@ -390,9 +367,9 @@
 Summary:Installation Image Files
 License:GPL-2.0+
 Group:  Metapackages
-Version:14.33
+Version:14.35
 Release:0
-Source: installation-images-14.33.tar.bz2
+Source: installation-images-14.35.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _binary_payload w.ufdio
 
@@ -481,7 +458,7 @@
 # beta only: ignore non-critical errors
 # export debug=ignore
 %if %with_sles
-make
+make THEMES=SLES
 %else
 make THEMES=openSUSE
 %endif
@@ -489,7 +466,7 @@
 %if %with_xen
 # build xen initrd  kernel
 %if %with_sles
-image=initrd-xen kernel=kernel-xen MOD_CFG=xen make initrd+modules
+image=initrd-xen kernel=kernel-xen MOD_CFG=xen make 

commit booth for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

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

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


Package is booth

Changes:

--- /work/SRC/openSUSE:Factory/booth/booth.changes  2014-01-13 
12:00:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.booth.new/booth.changes 2014-02-01 
08:43:13.0 +0100
@@ -1,0 +2,15 @@
+Fri Jan 24 16:00:00 CET 2014 - philipp.ma...@linbit.com
+
+- Version 0.1.3
+- New (extended) version of man pages
+- First draft of unit-tests
+- Run as non-root user
+- Transmission retry counter configureable
+- Lots of fixes for the state engine
+- Improve timeout handling mechanism to make booth more robust
+  (fate#316131)
+- reconfiguration of boothd while running (fate#316126)
+- Multi-tenancy for booth (fate#316123)
+- booth should support IPv6 in full (fate#316122)
+
+---



Other differences:
--
++ booth.spec ++
--- /var/tmp/diff_new_pack.V3Y8qs/_old  2014-02-01 08:43:14.0 +0100
+++ /var/tmp/diff_new_pack.V3Y8qs/_new  2014-02-01 08:43:14.0 +0100
@@ -35,7 +35,7 @@
 Summary:The Booth Cluster Ticket Manager
 License:GPL-2.0+
 Group:  Productivity/Clustering/HA
-Version:0.1.2
+Version:0.1.3
 Release:0
 Source: booth.tar.bz2
 Source1:%name-rpmlintrc
@@ -45,7 +45,6 @@
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  glib2-devel
-BuildRequires:  help2man
 BuildRequires:  libglue-devel
 BuildRequires:  libxml2-devel
 BuildRequires:  pkgconfig
@@ -82,6 +81,10 @@
 make DESTDIR=$RPM_BUILD_ROOT install docdir=%{_defaultdocdir}/%{name}
 ln -s ../../etc/init.d/booth-arbitrator 
%{buildroot}/usr/sbin/rcbooth-arbitrator
 
+mkdir -p %{buildroot}/%{_mandir}/man8/
+gzip  docs/boothd.8  %{buildroot}/%{_mandir}/man8/booth.8.gz
+ln %{buildroot}/%{_mandir}/man8/booth.8.gz 
%{buildroot}/%{_mandir}/man8/boothd.8.gz 
+
 %check
 %if 0%{?run_build_tests}
 echo %%run_build_tests set to %run_build_tests; including tests

++ booth.tar.bz2 ++
 3161 lines of diff (skipped)

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



commit clamav for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package clamav for openSUSE:Factory checked 
in at 2014-02-01 08:43:18

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


Package is clamav

Changes:

--- /work/SRC/openSUSE:Factory/clamav/clamav.changes2013-12-30 
09:49:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.clamav.new/clamav.changes   2014-02-01 
08:43:19.0 +0100
@@ -1 +1,18 @@

+Fri Jan 24 15:40:03 UTC 2014 - m...@suse.com
+
+- Version 0.98.1:
+  * remove copy of wxWidgets (halves the size of the tarball).
+  * Decompression and scanning of files in Xz compression
+format.
+  * Extraction, decompression, and scanning of files within Apple
+Disk Image (DMG) format.
+  * Extraction, decompression, and scanning of files within
+Extensible Archive (XAR) format.  XAR format is commonly used
+for software packaging, such as PKG and RPM, as well as
+general archival.
+  * Improvements and fixes to extraction and scanning of ole
+formats.
+  * Option to force all scanned data to disk.
+  * Various improvements to ClamAV configuration, support of third
+party libraries, and unit tests.
+
@@ -8 +24,0 @@


Old:

  clamav-0.98.tar.gz
  clamav-0.98.tar.gz.sig

New:

  clamav-0.98.1.tar.gz
  clamav-0.98.1.tar.gz.sig



Other differences:
--
++ clamav.spec ++
--- /var/tmp/diff_new_pack.GN1tW4/_old  2014-02-01 08:43:20.0 +0100
+++ /var/tmp/diff_new_pack.GN1tW4/_new  2014-02-01 08:43:20.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package clamav
 #
-# 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
@@ -45,7 +45,7 @@
 Summary:Antivirus Toolkit
 License:GPL-2.0
 Group:  Productivity/Security
-Version:0.98
+Version:0.98.1
 Release:0
 Url:http://www.clamav.net
 Requires:   latex2html-pngicons

++ clamav-0.98.tar.gz - clamav-0.98.1.tar.gz ++
/work/SRC/openSUSE:Factory/clamav/clamav-0.98.tar.gz 
/work/SRC/openSUSE:Factory/.clamav.new/clamav-0.98.1.tar.gz differ: char 5, 
line 1

++ clamav-conf.patch ++
--- /var/tmp/diff_new_pack.GN1tW4/_old  2014-02-01 08:43:20.0 +0100
+++ /var/tmp/diff_new_pack.GN1tW4/_new  2014-02-01 08:43:20.0 +0100
@@ -1,6 +1,7 @@
-diff -burNE clamav-0.98_orig/etc/clamav-milter.conf.sample 
clamav-0.98/etc/clamav-milter.conf.sample
 clamav-0.98_orig/etc/clamav-milter.conf.sample 2013-09-27 
20:10:07.805516478 +0200
-+++ clamav-0.98/etc/clamav-milter.conf.sample  2013-09-27 20:10:23.890676403 
+0200
+Index: clamav-0.98.1/etc/clamav-milter.conf.sample
+===
+--- clamav-0.98.1.orig/etc/clamav-milter.conf.sample   2014-01-13 
18:02:18.0 +0100
 clamav-0.98.1/etc/clamav-milter.conf.sample2014-01-24 
16:26:53.379053521 +0100
 @@ -2,10 +2,6 @@
  ## Example config file for clamav-milter
  ##
@@ -65,9 +66,10 @@
  
  # Enable verbose logging.
  #
-diff -burNE clamav-0.98_orig/etc/clamd.conf.sample 
clamav-0.98/etc/clamd.conf.sample
 clamav-0.98_orig/etc/clamd.conf.sample 2013-09-27 20:10:07.805516478 
+0200
-+++ clamav-0.98/etc/clamd.conf.sample  2013-09-27 20:10:23.891676413 +0200
+Index: clamav-0.98.1/etc/clamd.conf.sample
+===
+--- clamav-0.98.1.orig/etc/clamd.conf.sample   2014-01-13 18:02:34.0 
+0100
 clamav-0.98.1/etc/clamd.conf.sample2014-01-24 16:26:53.380053533 
+0100
 @@ -1,12 +1,8 @@
  ##
 -## Example config file for the Clam AV daemon
@@ -142,19 +144,20 @@
  # Initialize supplementary group access (clamd must be started by root).
  # Default: no
 @@ -501,6 +497,10 @@
- # Enable Clamuko. Dazuko must be configured and running. Clamuko supports
- # both Dazuko (/dev/dazuko) and DazukoFS (/dev/dazukofs.ctrl). DazukoFS
- # is the preferred option. For more information please visit www.dazuko.org
+ ##
+ ## On-access Scan Settings
+ ##
 +#
 +# When enabling this, you most probably have to set User root above,
 +# so that clamav can access the files to be scanned.
 +#
- # Default: no
- #ClamukoScanOnAccess yes
  
-diff -burNE clamav-0.98_orig/etc/freshclam.conf.sample 
clamav-0.98/etc/freshclam.conf.sample
 clamav-0.98_orig/etc/freshclam.conf.sample 2013-09-27 20:10:07.805516478 
+0200

commit libguestfs for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package libguestfs for openSUSE:Factory 
checked in at 2014-02-01 08:43:28

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


Package is libguestfs

Changes:

--- /work/SRC/openSUSE:Factory/libguestfs/libguestfs.changes2014-01-28 
12:03:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.libguestfs.new/libguestfs.changes   
2014-02-01 08:43:29.0 +0100
@@ -1,0 +2,5 @@
+Thu Jan 30 12:10:34 CET 2014 - oher...@suse.de
+
+- add BuildRequires:  ocaml(ocaml.opt)
+
+---



Other differences:
--
++ libguestfs.spec ++
--- /var/tmp/diff_new_pack.Dtq4AM/_old  2014-02-01 08:43:30.0 +0100
+++ /var/tmp/diff_new_pack.Dtq4AM/_new  2014-02-01 08:43:30.0 +0100
@@ -134,6 +134,9 @@
 # Required to build tools, its independent from bindings
 BuildRequires:  ocaml
 BuildRequires:  ocaml-findlib
+%if %suse_version  1310
+BuildRequires:  ocaml(ocaml.opt)
+%endif
 %define _configure_ocaml --enable-ocaml
 %endif
 #

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



commit libkolabxml for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package libkolabxml for openSUSE:Factory 
checked in at 2014-02-01 08:43:46

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


Package is libkolabxml

Changes:

--- /work/SRC/openSUSE:Factory/libkolabxml/libkolabxml.changes  2014-01-03 
14:53:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.libkolabxml.new/libkolabxml.changes 
2014-02-01 08:43:47.0 +0100
@@ -1,0 +2,8 @@
+Mon Nov 25 09:58:33 UTC 2013 - a...@ajaissle.de
+
+- libkolabxml-1.0.1_no-maybe-uninitialized.patch
+  * Remove no-maybe-unititialized cxx flag from SLE builds (not supported)
+- Renamed csharp_bindings.diff to libkolabxml-1.0.1_csharp_bindings.patch
+- Renamed fix_uuid_includes_SLE.diff to 
libkolabxml-0.8.3_fix_uuid_includes_SLE.patch
+
+---

Old:

  csharp_bindings.diff
  fix_uuid_includes_SLE.diff

New:

  libkolabxml-0.8.3_fix_uuid_includes_SLE.patch
  libkolabxml-1.0.1_csharp_bindings.patch
  libkolabxml-1.0.1_no-maybe-uninitialized.patch



Other differences:
--
++ libkolabxml.spec ++
--- /var/tmp/diff_new_pack.BbjvG3/_old  2014-02-01 08:43:47.0 +0100
+++ /var/tmp/diff_new_pack.BbjvG3/_new  2014-02-01 08:43:47.0 +0100
@@ -31,10 +31,12 @@
 Group:  Development/Libraries/C and C++
 Url:https://kolab.org/about/libkolabxml
 Source: 
http://mirror.kolabsys.com/pub/releases/%{name}-%{version}.tar.gz
-# PATCH-FIX-SLE fix_uuid_includes_SLE.diff -- Fix uuid.h path on SLE* 11
-Patch0: fix_uuid_includes_SLE.diff
-# PATCH-FIX-UPSTREAM csharp_bindings.diff -- Fix csharp bindings
-Patch1: csharp_bindings.diff
+# PATCH-FIX-SLE libkolabxml-0.8.3_fix_uuid_includes_SLE.patch -- Fix uuid.h 
path on SLE 11
+Patch0: libkolabxml-0.8.3_fix_uuid_includes_SLE.patch
+# PATCH-FIX-UPSTREAM libkolabxml-1.0.1_csharp_bindings.patch -- Fix csharp 
bindings
+Patch1: libkolabxml-1.0.1_csharp_bindings.patch
+# PATCH-FIX-SLE libkolabxml-1.0.1_no-maybe-uninitialized.patch -- Fix php and 
python bindings on SLE 11
+Patch2: libkolabxml-1.0.1_no-maybe-uninitialized.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake = 2.6
 BuildRequires:  gcc-c++
@@ -186,6 +188,7 @@
 %setup -q
 %if 0%{?sles_version} == 11
 %patch0 -p0
+%patch2 -p1
 %endif
 %patch1 -p1
 

++ libkolabxml-0.8.3_fix_uuid_includes_SLE.patch ++
diff -Ppru src/utils.cpp src/utils.cpp
--- src/utils.cpp   2013-02-26 12:31:37.0 +0100
+++ src/utils.cpp   2013-04-22 16:16:20.244099388 +0200
@@ -26,7 +26,7 @@
 #include boost/uuid/uuid_io.hpp
 #include boost/uuid/uuid_generators.hpp
 #else
-#include uuid.h
+#include ossp/uuid.h
 #endif
 
 #include boost/lexical_cast.hpp
++ libkolabxml-1.0.1_csharp_bindings.patch ++
diff -Ppru a/src/csharp/CMakeLists.txt b/src/csharp/CMakeLists.txt
--- a/src/csharp/CMakeLists.txt 2013-10-30 17:48:07.0 +0100
+++ b/src/csharp/CMakeLists.txt 2013-11-21 01:15:23.552898945 +0100
@@ -44,8 +44,11 @@ set(KOLAB_SWIG_CSHARP_FILES
 ${CMAKE_CURRENT_BINARY_DIR}/Related.cs
 ${CMAKE_CURRENT_BINARY_DIR}/Relative.cs
 ${CMAKE_CURRENT_BINARY_DIR}/Role.cs
+${CMAKE_CURRENT_BINARY_DIR}/Snippet.cs
+${CMAKE_CURRENT_BINARY_DIR}/SnippetsCollection.cs
 ${CMAKE_CURRENT_BINARY_DIR}/Status.cs
 ${CMAKE_CURRENT_BINARY_DIR}/SWIGTYPE_p_Kolab__Freebusy.cs
+${CMAKE_CURRENT_BINARY_DIR}/SWIGTYPE_p_std__vectorT_Kolab__Snippet_t.cs
 ${CMAKE_CURRENT_BINARY_DIR}/SWIGTYPE_p_std__vectorT_Kolab__Todo_t.cs
 ${CMAKE_CURRENT_BINARY_DIR}/Telephone.cs
 ${CMAKE_CURRENT_BINARY_DIR}/Todo.cs
++ libkolabxml-1.0.1_no-maybe-uninitialized.patch ++
diff -Ppru a/src/php/CMakeLists.txt b/src/php/CMakeLists.txt
--- a/src/php/CMakeLists.txt2013-10-30 17:48:07.0 +0100
+++ b/src/php/CMakeLists.txt2013-11-25 10:57:06.747767369 +0100
@@ -19,7 +19,7 @@ add_custom_target(generate_php_bindings
 if (APPLE)
 set( CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -flat_namespace -undefined 
suppress )
 endif()
-set( CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -Wno-unused-variable 
-Wno-unused-label -Wno-maybe-uninitialized -Wno-unused-function )
+set( CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -Wno-unused-variable 
-Wno-unused-label -Wno-unused-function )
 
 # Try to find PHP5
 find_path(PHP_INCLUDE_DIR NAMES main/php.h PATH_SUFFIXES php php5)
diff -Ppru a/src/python/CMakeLists.txt b/src/python/CMakeLists.txt
--- a/src/python/CMakeLists.txt 2013-10-30 17:48:07.0 +0100
+++ b/src/python/CMakeLists.txt 2013-11-25 10:57:38.918321481 +0100
@@ -24,8 +24,6 @@ add_custom_command(OUTPUT ${KOLAB_SWIG_P
 
 

commit weston for openSUSE:Factory

2014-01-31 Thread h_root
Hello community,

here is the log from the commit of package weston for openSUSE:Factory checked 
in at 2014-02-01 08:43:57

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


Package is weston

Changes:

--- /work/SRC/openSUSE:Factory/weston/weston.changes2014-01-03 
19:53:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.weston.new/weston.changes   2014-02-01 
08:43:58.0 +0100
@@ -1,0 +2,23 @@
+Fri Jan 24 12:08:08 UTC 2014 - jeng...@inai.de
+
+- Update to new upstream release 1.4.0
+* Window buttons for xwayland windows and proper decorations for
+  the nested compositor
+* Make the gl-renderer a loadable module and make it possible to
+  switch from pixman to gl renderer at runtime. This lets the
+  compositor start up faster, since we can load the gl-renderer
+  and initialize EGL+GLES2 later in the startup.
+* Support framebuffer formats other than XRGB
+* Use logind for privileged access.  logind can now do the this
+  that weston-launch used to do: drm drop/set master and opening
+  input devices. With this, weston can run on KMS without the
+  weston-launch setuid helper.
+* Better output unplug handling.  We used to crash and in general
+  not handle output (monitor) unplug at all. We now clean up
+  properly and move windows back into the visible region when
+  their output is unplugged.
+* Keyboard focus animation and exposay (exposé-like window picker)
+* More touch screen support, including touch-to-move and
+  touch-to-activate for surfaces, touch screen drag-and-drop
+
+---

Old:

  weston-1.3.91.tar.xz

New:

  weston-1.4.0.tar.xz



Other differences:
--
++ weston.spec ++
--- /var/tmp/diff_new_pack.Q7911o/_old  2014-02-01 08:43:58.0 +0100
+++ /var/tmp/diff_new_pack.Q7911o/_new  2014-02-01 08:43:58.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package weston
 #
-# 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
@@ -18,12 +18,12 @@
 
 Name:   weston
 %define lname  libweston0
-Version:1.3.91
+Version:1.4.0
 Release:0
-Summary:Wayland Compositor Infrastructure
+Summary:Wayland Reference Compositor
 License:HPND and CC-BY-SA-3.0
-Group:  Development/Libraries/C and C++
-Url:http://weston.freedesktop.org/
+Group:  System/X11/Servers
+Url:http://wayland.freedesktop.org/
 
 #Git-Clone:git://anongit.freedesktop.org/wayland/weston
 #Git-Web:  http://cgit.freedesktop.org/wayland/weston/
@@ -59,7 +59,7 @@
 BuildRequires:  pkgconfig(lcms2)
 BuildRequires:  pkgconfig(libdrm) = 2.4.30
 BuildRequires:  pkgconfig(libffi)
-BuildRequires:  pkgconfig(libsystemd-login)
+BuildRequires:  pkgconfig(libsystemd-login) = 198
 BuildRequires:  pkgconfig(libudev) = 136
 BuildRequires:  pkgconfig(libunwind)
 BuildRequires:  pkgconfig(libwebp)
@@ -120,11 +120,20 @@
 
 %check
 ls -dl /proc/self || exit 0;
-mkdir -pm go-rwx xdg;
 # Ignore exit code, because the headless backend is not even in the 1.0
 # stable series. It means it will be an option starting from 1.2 of stable
 # series.
-XDG_RUNTIME_DIR=$PWD/xdg make check || :;
+# And the 1.4 tests don't use it :/
+export XDG_RUNTIME_DIR=$HOME/xdgrun
+export XDG_CONFIG_HOME=$HOME
+cat $XDG_CONFIG_HOME/weston.ini -EOF
+   [core]
+   backend=headless-backend.so
+EOF
+mkdir -pm go-rwx $XDG_RUNTIME_DIR
+if ! make check; then
+   cat tests/test-suite.log
+fi
 
 %files
 %defattr(-,root,root)

++ weston-1.3.91.tar.xz - weston-1.4.0.tar.xz ++
 4959 lines of diff (skipped)

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