commit crmsh for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2014-08-28 21:05:34

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


Package is "crmsh"

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2014-08-25 
11:05:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2014-08-28 
21:05:54.0 +0200
@@ -1,0 +2,7 @@
+Thu Aug 28 13:19:09 UTC 2014 - kgronl...@suse.com
+
+- high: constants: Add acl_target and acl_group to cib_cli_map (bnc#894041)
+- cibconfig: Clean up output from crm_verify (bnc#893138)
+- upstream: 2.1.0-38-g7d05ad6
+
+---



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.uCJeZU/_old  2014-08-28 21:05:55.0 +0200
+++ /var/tmp/diff_new_pack.uCJeZU/_new  2014-08-28 21:05:55.0 +0200
@@ -41,7 +41,7 @@
 Summary:High Availability cluster command-line interface
 License:GPL-2.0+
 Group:  %{pkg_group}
-Version:2.1+git33
+Version:2.1+git38
 Release:%{?crmsh_release}%{?dist}
 Url:http://crmsh.github.io
 Source0:crmsh.tar.bz2

++ crmsh.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/modules/Makefile.am 
new/crmsh/modules/Makefile.am
--- old/crmsh/modules/Makefile.am   2014-08-22 13:11:04.0 +0200
+++ new/crmsh/modules/Makefile.am   2014-08-28 15:12:04.0 +0200
@@ -23,6 +23,7 @@
cache.py \
cibconfig.py \
cibstatus.py \
+   cibverify.py \
clidisplay.py \
cliformat.py \
cmd_status.py \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/modules/cibconfig.py 
new/crmsh/modules/cibconfig.py
--- old/crmsh/modules/cibconfig.py  2014-08-22 13:11:04.0 +0200
+++ new/crmsh/modules/cibconfig.py  2014-08-28 15:12:04.0 +0200
@@ -59,6 +59,7 @@
 from cliformat import cli_nvpair, cli_acl_rule, rsc_set_constraint, get_kind, 
head_id_format
 from cliformat import cli_operations, simple_rsc_constraint, cli_rule, 
cli_format
 from cliformat import cli_acl_role, cli_acl_permission
+import cibverify
 
 
 def show_unrecognized_elems(cib_elem):
@@ -640,9 +641,6 @@
 return rc
 
 
-cib_verify = "crm_verify -V -p"
-
-
 class CibObjectSetRaw(CibObjectSet):
 '''
 Edit or display one or more CIB objects (XML).
@@ -702,10 +700,12 @@
 if not self.obj_set:
 return True
 clidisplay.disable_pretty()
-rc = pipe_string(cib_verify, self.repr(format=-1))
+cib = self.repr(format=-1)
 clidisplay.enable_pretty()
+rc = cibverify.verify(cib)
+
 if rc not in (0, 1):
-common_debug("verify (rc=%s): %s" % (rc, self.repr()))
+common_debug("verify (rc=%s): %s" % (rc, cib))
 return rc in (0, 1)
 
 def ptest(self, nograph, scores, utilization, actions, verbosity):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh/modules/cibverify.py 
new/crmsh/modules/cibverify.py
--- old/crmsh/modules/cibverify.py  1970-01-01 01:00:00.0 +0100
+++ new/crmsh/modules/cibverify.py  2014-08-28 15:12:04.0 +0200
@@ -0,0 +1,43 @@
+# Copyright (C) 2014 Kristoffer Gronlund 
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This software is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+#
+
+import re
+import utils
+from msg import err_buf
+
+
+cib_verify = "crm_verify --verbose -p"
+VALIDATE_RE = re.compile(r"^Entity: line (\d)+: element (\w+): " +
+ r"Relax-NG validity error : (.+)$")
+
+
+def _prettify(line, indent=0):
+m = VALIDATE_RE.match(line)
+if m:
+return "%s%s (%s): %s" % (indent*' ', m.group(2), m.group(1), 
m.group(3))
+return line
+
+
+def verify(cib):
+rc, _, stder

commit libsodium for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package libsodium for openSUSE:Factory 
checked in at 2014-08-28 21:05:35

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


Package is "libsodium"

Changes:

--- /work/SRC/openSUSE:Factory/libsodium/libsodium.changes  2014-07-17 
06:58:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsodium.new/libsodium.changes 2014-08-28 
21:05:55.0 +0200
@@ -1,0 +2,11 @@
+Thu Aug 28 15:14:29 UTC 2014 - idon...@suse.com
+
+- Update to version 0.7.0
+  * Added sodium_malloc() and sodium_allocarray() for secure memory
+allocation.
+  * ed25519 keys can be converted to curve25519 keys with
+crypto_sign_ed25519_pk_to_curve25519() and
+crypto_sign_ed25519_sk_to_curve25519().
+  * aes256 was removed.
+
+---

Old:

  libsodium-0.6.1.tar.gz

New:

  libsodium-0.7.0.tar.gz



Other differences:
--
++ libsodium.spec ++
--- /var/tmp/diff_new_pack.nF2ZRD/_old  2014-08-28 21:05:57.0 +0200
+++ /var/tmp/diff_new_pack.nF2ZRD/_new  2014-08-28 21:05:57.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define lname libsodium10
+%define lname libsodium13
 Name:   libsodium
-Version:0.6.1
+Version:0.7.0
 Release:0
 Summary:Portable NaCl-based crypto library
 License:ISC

++ libsodium-0.6.1.tar.gz -> libsodium-0.7.0.tar.gz ++
 4527 lines of diff (skipped)

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



commit perl-MIME-Types for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package perl-MIME-Types for openSUSE:Factory 
checked in at 2014-08-28 21:05:33

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


Package is "perl-MIME-Types"

Changes:

--- /work/SRC/openSUSE:Factory/perl-MIME-Types/perl-MIME-Types.changes  
2014-04-23 17:32:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-MIME-Types.new/perl-MIME-Types.changes 
2014-08-28 21:05:53.0 +0200
@@ -1,0 +2,12 @@
+Wed Aug 27 12:47:22 UTC 2014 - mar...@gmx.de
+
+- update to version 2.05:
+   Improvements:
+   - rename ::Type::isAscii() into ::Type::isText()
+   - add source table broofa
+ rt.cpan.org#98308 [Lars Dɪᴇᴄᴋᴏᴡ]
+   - add source table freedesktop
+ rt.cpan.org#98309 [Lars Dɪᴇᴄᴋᴏᴡ]
+   - update iana types
+
+---

Old:

  MIME-Types-2.04.tar.gz

New:

  MIME-Types-2.05.tar.gz



Other differences:
--
++ perl-MIME-Types.spec ++
--- /var/tmp/diff_new_pack.XzITFA/_old  2014-08-28 21:05:54.0 +0200
+++ /var/tmp/diff_new_pack.XzITFA/_new  2014-08-28 21:05:54.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-MIME-Types
-Version:2.04
+Version:2.05
 Release:0
 %define cpan_name MIME-Types
 Summary:MIME-Type Determination

++ MIME-Types-2.04.tar.gz -> MIME-Types-2.05.tar.gz ++
 3377 lines of diff (skipped)

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



commit qt-creator for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package qt-creator for openSUSE:Factory 
checked in at 2014-08-28 21:05:31

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


Package is "qt-creator"

Changes:

--- /work/SRC/openSUSE:Factory/qt-creator/qt-creator.changes2013-12-13 
12:00:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.qt-creator.new/qt-creator.changes   
2014-08-28 21:05:50.0 +0200
@@ -1,0 +2,7 @@
+Tue Aug 26 11:11:57 UTC 2014 - cgiboude...@gmx.com
+
+- Update to 3.2.0
+  See 
http://qt.gitorious.org/qt-creator/qt-creator/blobs/3.2/dist/changes-3.2.0
+  for the complete changelog
+
+---

Old:

  qt-creator-opensource-src-3.0.0.tar.gz

New:

  qt-creator-opensource-src-3.2.0.tar.gz



Other differences:
--
++ qt-creator.spec ++
--- /var/tmp/diff_new_pack.As4WaU/_old  2014-08-28 21:05:51.0 +0200
+++ /var/tmp/diff_new_pack.As4WaU/_new  2014-08-28 21:05:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qt-creator
 #
-# 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,14 +17,14 @@
 
 
 Name:   qt-creator
-Version:3.0.0
+Version:3.2.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://www.qtsoftware.com/developer/qt-creator/
-%define rversion 3.0.0
-Source: 
http://download.qt-project.org/official_releases/qtcreator/3.0/%{rversion}/%{name}-opensource-src-%{rversion}.tar.gz
+%define rversion 3.2.0
+Source: 
http://download.qt-project.org/official_releases/qtcreator/3.2/%{rversion}/%{name}-opensource-src-%{rversion}.tar.gz
 Source1:qtcreator.desktop
 Patch1: system-botan-lib.diff
 Patch2: hardcoded-runpath.diff
@@ -117,6 +117,7 @@
 %dir %{_datadir}/icons/hicolor/*/apps
 %dir %{_docdir}/libqt4/qch
 %doc %{_docdir}/libqt4/qch/qtcreator.qch
+%{_bindir}/buildoutputparser
 %{_bindir}/qmlpuppet
 %{_bindir}/qtcreator
 %{_bindir}/qtcreator_process_stub

++ hardcoded-runpath.diff ++
--- /var/tmp/diff_new_pack.As4WaU/_old  2014-08-28 21:05:51.0 +0200
+++ /var/tmp/diff_new_pack.As4WaU/_new  2014-08-28 21:05:51.0 +0200
@@ -1,15 +1,14 @@
 diff --git a/src/qtcreatorplugin.pri b/src/qtcreatorplugin.pri
-index c243fa1..f210a93 100644
+index 0fe283d..f7e04d0 100644
 --- a/src/qtcreatorplugin.pri
 +++ b/src/qtcreatorplugin.pri
-@@ -119,13 +119,7 @@ macx {
- QMAKE_LFLAGS += 
-Wl,-rpath,@loader_path/../../,-rpath,@executable_path/../
- }
+@@ -127,12 +127,7 @@ macx {
+ QMAKE_LFLAGS_SONAME = -Wl,-install_name,@rpath/PlugIns/
+ QMAKE_LFLAGS += -Wl,-rpath,@loader_path/../,-rpath,@executable_path/../
  } else:linux-* {
 -#do the rpath by hand since it's not possible to use ORIGIN in 
QMAKE_RPATHDIR
 -QMAKE_RPATHDIR += \$\$ORIGIN
 -QMAKE_RPATHDIR += \$\$ORIGIN/..
--QMAKE_RPATHDIR += \$\$ORIGIN/../..
 -IDE_PLUGIN_RPATH = $$join(QMAKE_RPATHDIR, ":")
 -QMAKE_LFLAGS += -Wl,-z,origin \'-Wl,-rpath,$${IDE_PLUGIN_RPATH}\'
 -QMAKE_RPATHDIR =

++ qbs-path.diff ++
--- /var/tmp/diff_new_pack.As4WaU/_old  2014-08-28 21:05:51.0 +0200
+++ /var/tmp/diff_new_pack.As4WaU/_new  2014-08-28 21:05:51.0 +0200
@@ -1,9 +1,11 @@
 a/src/shared/qbs/src/plugins/plugins.pri   2013-07-05 11:52:12.0 
-0300
-+++ b/src/shared/qbs/src/plugins/plugins.pri   2013-07-16 12:40:32.0 
-0300
-@@ -17,5 +17,5 @@
- installPrefix = $${QBS_RESOURCES_INSTALL_DIR}
+diff --git a/src/shared/qbs/src/plugins/plugins.pri 
b/src/shared/qbs/src/plugins/plugins.pri
+index a348d52..ac91f19 100644
+--- a/src/shared/qbs/src/plugins/plugins.pri
 b/src/shared/qbs/src/plugins/plugins.pri
+@@ -19,5 +19,5 @@ include(../library_dirname.pri)
+ installPrefix = $${QBS_PLUGINS_INSTALL_DIR}
  else: \
- installPrefix = $${QBS_INSTALL_PREFIX}
--target.path = $${installPrefix}/lib/qbs/plugins
+ installPrefix = $${QBS_INSTALL_PREFIX}/$${QBS_LIBRARY_DIRNAME}
+-target.path = $${installPrefix}/qbs/plugins
 +target.path = $$QTC_PREFIX/$${IDE_LIBRARY_BASENAME}/qtcreator/plugins/qbs/
  INSTALLS += target

++ qt-creator-opensource-src-3.0.0.tar.gz -> 
qt-creator-opensource-src-3.2.0.tar.gz ++
/work/SRC/openSUSE:Factory/qt-creator/qt-creator-opensource-src-3.0.0.tar.gz 
/work/SRC/openSUSE:Factory/.qt-creator.new/qt-creator-

commit rpmlint-tests for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package rpmlint-tests for openSUSE:Factory 
checked in at 2014-08-28 21:05:26

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


Package is "rpmlint-tests"

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint-tests/rpmlint-tests.changes  
2014-05-06 17:42:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.rpmlint-tests.new/rpmlint-tests.changes 
2014-08-28 21:05:46.0 +0200
@@ -1,0 +2,10 @@
+Thu Aug 21 15:09:10 UTC 2014 - lnus...@suse.de
+
+- fix rclink* tests by adding expected systemd macros
+
+---
+Thu Aug 21 13:12:44 UTC 2014 - lnus...@suse.de
+
+- add test cases for systemd macros
+
+---

Old:

  rpmlint-tests-13.2+git20140506.829452f.tar.xz

New:

  rpmlint-tests-13.2+git20140821.c02617a.tar.xz



Other differences:
--
++ rpmlint-tests.spec ++
--- /var/tmp/diff_new_pack.eEc3BT/_old  2014-08-28 21:05:47.0 +0200
+++ /var/tmp/diff_new_pack.eEc3BT/_new  2014-08-28 21:05:47.0 +0200
@@ -22,7 +22,7 @@
 BuildRequires:  rpmlint-mini
 
 Name:   rpmlint-tests
-Version:13.2+git20140506.829452f
+Version:13.2+git20140821.c02617a
 Release:0
 Summary:rpmlint regression tests
 License:SUSE-Public-Domain

++ rpmlint-tests-13.2+git20140506.829452f.tar.xz -> 
rpmlint-tests-13.2+git20140821.c02617a.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rpmlint-tests-13.2+git20140506.829452f/tests/rclink3.spec 
new/rpmlint-tests-13.2+git20140821.c02617a/tests/rclink3.spec
--- old/rpmlint-tests-13.2+git20140506.829452f/tests/rclink3.spec   
2014-05-06 11:12:15.0 +0200
+++ new/rpmlint-tests-13.2+git20140821.c02617a/tests/rclink3.spec   
2014-08-21 17:08:55.0 +0200
@@ -31,6 +31,18 @@
 install -m 755 blah %buildroot/etc/init.d/blah
 install -m 644 /dev/null %buildroot/usr/lib/systemd/system/blah.service
 
+%pre
+%service_add_pre blah.service
+
+%preun
+%service_del_preun blah.service
+
+%post
+%service_add_post blah.service
+
+%postun
+%service_del_postun blah.service
+
 %clean
 rm -rf %buildroot
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rpmlint-tests-13.2+git20140506.829452f/tests/rclink4.spec 
new/rpmlint-tests-13.2+git20140821.c02617a/tests/rclink4.spec
--- old/rpmlint-tests-13.2+git20140506.829452f/tests/rclink4.spec   
2014-05-06 11:12:15.0 +0200
+++ new/rpmlint-tests-13.2+git20140821.c02617a/tests/rclink4.spec   
2014-08-21 17:08:55.0 +0200
@@ -26,6 +26,18 @@
 install -d -m 755 %buildroot/usr/sbin
 install -m 644 /dev/null %buildroot/usr/lib/systemd/system/blah.service
 
+%pre
+%service_add_pre blah.service
+
+%preun
+%service_del_preun blah.service
+
+%post
+%service_add_post blah.service
+
+%postun
+%service_del_postun blah.service
+
 %clean
 rm -rf %buildroot
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rpmlint-tests-13.2+git20140506.829452f/tests/rclink5.spec 
new/rpmlint-tests-13.2+git20140821.c02617a/tests/rclink5.spec
--- old/rpmlint-tests-13.2+git20140506.829452f/tests/rclink5.spec   
2014-05-06 11:12:15.0 +0200
+++ new/rpmlint-tests-13.2+git20140821.c02617a/tests/rclink5.spec   
2014-08-21 17:08:55.0 +0200
@@ -27,6 +27,18 @@
 install -m 644 /dev/null %buildroot/usr/lib/systemd/system/blah.service
 ln -s /etc/init.d/blah %buildroot/usr/sbin/rcblah
 
+%pre
+%service_add_pre blah.service
+
+%preun
+%service_del_preun blah.service
+
+%post
+%service_add_post blah.service
+
+%postun
+%service_del_postun blah.service
+
 %clean
 rm -rf %buildroot
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rpmlint-tests-13.2+git20140506.829452f/tests/rclink6.spec 
new/rpmlint-tests-13.2+git20140821.c02617a/tests/rclink6.spec
--- old/rpmlint-tests-13.2+git20140506.829452f/tests/rclink6.spec   
2014-05-06 11:12:15.0 +0200
+++ new/rpmlint-tests-13.2+git20140821.c02617a/tests/rclink6.spec   
2014-08-21 17:08:55.0 +0200
@@ -27,6 +27,18 @@
 install -m 644 /dev/null %buildroot/usr/lib/systemd/system/blah.service
 ln -s /usr/sbin/service %buildroot%_sbindir/rcblah
 
+%pre
+%service_add_pre blah.service
+
+%preun
+%service_del_preun blah.service
+
+%post
+%service_add_post blah.service
+
+%postun
+%service_del_postun blah.service
+
 %clean
 rm -rf %buildroot
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rpmlint-tests

commit openvpn for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package openvpn for openSUSE:Factory checked 
in at 2014-08-28 21:05:32

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


Package is "openvpn"

Changes:

--- /work/SRC/openSUSE:Factory/openvpn/openvpn.changes  2014-06-10 
14:39:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.openvpn.new/openvpn.changes 2014-08-28 
21:05:51.0 +0200
@@ -1,0 +2,7 @@
+Mon Aug 25 09:12:08 UTC 2014 - idon...@suse.com
+
+- Update to version 2.3.4
+  * Add support for client-cert-not-required for PolarSSL.
+  * Introduce safety check for http proxy options.
+
+---

Old:

  openvpn-2.3.2.tar.gz
  openvpn-2.3.2.tar.gz.asc

New:

  openvpn-2.3.4.tar.gz
  openvpn-2.3.4.tar.gz.asc



Other differences:
--
++ openvpn.spec ++
--- /var/tmp/diff_new_pack.zEaw7q/_old  2014-08-28 21:05:52.0 +0200
+++ /var/tmp/diff_new_pack.zEaw7q/_new  2014-08-28 21:05:52.0 +0200
@@ -32,7 +32,7 @@
 %else
 PreReq: %insserv_prereq %fillup_prereq
 %endif
-Version:2.3.2
+Version:2.3.4
 Release:0
 Summary:Full-featured SSL VPN solution using a TUN/TAP Interface
 License:SUSE-GPL-2.0-with-openssl-exception and LGPL-2.1

++ openvpn-2.3.2.tar.gz -> openvpn-2.3.4.tar.gz ++
 13864 lines of diff (skipped)


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



commit alsa-utils for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package alsa-utils for openSUSE:Factory 
checked in at 2014-08-28 21:05:07

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


Package is "alsa-utils"

Changes:

--- /work/SRC/openSUSE:Factory/alsa-utils/alsa-utils.changes2014-08-14 
14:57:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.alsa-utils.new/alsa-utils.changes   
2014-08-28 21:05:11.0 +0200
@@ -1,0 +2,8 @@
+Tue Aug 26 12:46:20 CEST 2014 - ti...@suse.de
+
+- alsa-info.sh updates to 0.4.64: run withall also when --output
+  is given
+  0005-alsa-info-Make-sure-all-full-script-is-run-even-with.patch
+  0006-alsa-info-Refactor-withall-logic.patch
+
+---

New:

  0005-alsa-info-Make-sure-all-full-script-is-run-even-with.patch
  0006-alsa-info-Refactor-withall-logic.patch



Other differences:
--
++ alsa-utils.spec ++
--- /var/tmp/diff_new_pack.SC7NEt/_old  2014-08-28 21:05:12.0 +0200
+++ /var/tmp/diff_new_pack.SC7NEt/_new  2014-08-28 21:05:12.0 +0200
@@ -49,6 +49,8 @@
 Patch2: 0002-alsamixer-include-missing-mixer_controls.h.patch
 Patch3: 0003-Add-alsa-info.sh-to-alsa-utils-repo.patch
 Patch4: 0004-Add-missing-alsa-info-entry-to-the-root-Makefile.am.patch
+Patch5: 0005-alsa-info-Make-sure-all-full-script-is-run-even-with.patch
+Patch6: 0006-alsa-info-Refactor-withall-logic.patch
 #
 Patch99:alsa-utils-gettext-version-removal.diff
 BuildRequires:  alsa-devel
@@ -80,6 +82,8 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
+%patch6 -p1
 #
 %if 0%{?suse_version} < 1020
 %patch99 -p1

++ 0005-alsa-info-Make-sure-all-full-script-is-run-even-with.patch ++
>From 4f569affc420579a1a6e44cf51d7a1e64d6cd8d3 Mon Sep 17 00:00:00 2001
From: David Henningsson 
Date: Fri, 22 Aug 2014 10:31:40 +0200
Subject: [PATCH] alsa-info: Make sure all full script is run even with
 "output" option

For some reason, when the --output option is used, less information
is included compared to when no options are used. This is unexpected.

Fix this by running "withall" also when the output option is used.

Signed-off-by: David Henningsson 
Signed-off-by: Takashi Iwai 
---
 alsa-info/alsa-info.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/alsa-info/alsa-info.sh b/alsa-info/alsa-info.sh
index 859d7bca6b1c..47157f06b159 100755
--- a/alsa-info/alsa-info.sh
+++ b/alsa-info/alsa-info.sh
@@ -661,6 +661,7 @@ if [ -n "$1" ]; then
shift
NFILE="$1"
KEEP_OUTPUT="yes"
+   withall
;;
--debug)
echo "Debugging enabled. $FILE and $TEMPDIR will not be 
deleted"
-- 
2.1.0

++ 0006-alsa-info-Refactor-withall-logic.patch ++
>From 808af5fdb00be048b485c3ea3f5a5081b99dae30 Mon Sep 17 00:00:00 2001
From: David Henningsson 
Date: Fri, 22 Aug 2014 10:31:41 +0200
Subject: [PATCH] alsa-info: Refactor "withall" logic

Previously, using --output, --no-upload, --upload and --pastebin
switches implied the withall switch.

A more intuitive logic would be that --with-all is disabled if you
use another --with* switch, such as --withdmesg, and only then.

Also update script version to reflect the behaviour change.

Signed-off-by: David Henningsson 
Signed-off-by: Takashi Iwai 
---
 alsa-info/alsa-info.sh | 23 +++
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/alsa-info/alsa-info.sh b/alsa-info/alsa-info.sh
index 47157f06b159..acd849588141 100755
--- a/alsa-info/alsa-info.sh
+++ b/alsa-info/alsa-info.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-SCRIPT_VERSION=0.4.63
+SCRIPT_VERSION=0.4.64
 CHANGELOG="http://www.alsa-project.org/alsa-info.sh.changelog";
 
 
#
@@ -260,6 +260,7 @@ withall() {
withlsmod
withsysfs
withdmesg
+   WITHALL="no"
 }
 
 get_alsa_library_version() {
@@ -629,7 +630,6 @@ fi
 #If no command line options are specified, then run as though --with-all was 
specified
 if [ -z "$1" ]; then
update
-   withall
pbcheck 
 fi
 
@@ -642,7 +642,6 @@ if [ -n "$1" ]; then
case "$1" in
--pastebin)
update
-   withall
pbcheck
;;
--update)
@@ -651,43 +650,45 @@ if [ -n "$1" ]; then
;;
--upload)
UPLOAD="yes"
-   withall
;;
--no-uploa

commit kiwi for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2014-08-28 21:05:21

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-08-16 
15:37:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2014-08-28 
21:05:32.0 +0200
@@ -1,0 +2,113 @@
+Tue Aug 26 20:57:32 CEST 2014 - m...@suse.de
+
+- v5.06.155 released
+  
+---
+Tue Aug 26 20:55:19 CEST 2014 - m...@suse.de
+  
+- Make sure kiwi initrd creates /run/lock (bnc #893624)
+  
+  The location for /var/lock has been moved to /run/lock and /var/lock
+  is a symlink instead. /run is a tmpfs and thus the directory must be
+  created properly
+  
+---
+Tue Aug 26 19:42:42 CEST 2014 - m...@suse.de
+  
+- v5.06.154 released
+  
+---
+Tue Aug 26 19:36:19 CEST 2014 - m...@suse.de
+  
+- Don't prevent the pre-init stage if root= is set in the cmdline
+  
+  If a root= information is passed to the cmdline kiwi uses this
+  device and wrongly indicates the system has completed the first
+  boot by setting LOCAL_BOOT=yes This prevents the correct setup
+  of the bootloader device.map as well as the bootloader config
+  to be written (bnc #893368)
+  
+---
+Tue Aug 26 19:32:26 CEST 2014 - m...@suse.de
+  
+- Prevent creation of custom /etc/ImagePackages file for the
+  oem and vmx image types. The information there is created
+  at image creation time already and the call increases the
+  first boot time, related to (bnc #893368)
+  
+---
+Tue Aug 26 18:50:13 CEST 2014 - m...@suse.de
+  
+- Fixed schema validation error output
+  
+  if the schema is invalid kiwi uses jing to create good error
+  messages but the output of jing was not displayed
+  
+---
+Mon Aug 25 20:46:22 CEST 2014 - m...@suse.de
+  
+- Adapt unit test due to last XSL change
+  
+---
+Mon Aug 25 20:21:50 CEST 2014 - m...@suse.de
+  
+- Fixed xsl/convert58to59.xsl to convert old controller='scsi'
+  to controller='lsilogic' and not 'ide' which unexpectedly
+  changes the layout (bnc #893345)
+  
+---
+Mon Aug 25 19:56:15 CEST 2014 - m...@suse.de
+  
+- Fixed NFS root mount, use nolock option (bnc #892672)
+  
+---
+Mon Aug 25 19:38:45 CEST 2014 - m...@suse.de
+  
+- Fixed package update from sle11 to sle12 (bnc #893340)
+  
+  the man pages were moved from kiwi-doc to the main kiwi package
+  between sle11 and sle12. Thus the main kiwi package has to set
+  the correct file provides/obsoletes in order to avoid conflicts
+  
+---
+Mon Aug 25 15:51:18 CEST 2014 - m...@suse.de
+  
+- make sure e2fsprogs is installed explicitly in isoboot
+  boot image descriptions for openSUSE 13.1/13.2 and SLE12
+  There is no package requirement for e2fsprogs which
+  pulls it in (bnc #892087)
+  
+---
+Mon Aug 25 13:11:31 CEST 2014 - m...@suse.de
+  
+- Fixed spec file requirements
+  
+  cdrkit-cdrtools-compat is a requirement on suse in order to
+  correctly find the iso tools in the search path
+  
+---
+Mon Aug 25 09:50:39 CEST 2014 - m...@suse.de
+  
+- Fixed legacy service insert/remove using chkconfig
+  
+  suseInsertService and suseRemoveService can deal with native systemd
+  services and legacy SYS V init scripts stored in /etc/init.d/. In case
+  of legacy services a call to "chkconfig /etc/init.d/${service} on|off"
+  is issued but fails because chkconfig only expects a service name
+  and not a full path.
+  
+---
+Sun Aug 24 14:22:23 CEST 2014 - tbecht...@suse.de
+  
+- Set sudoers secure_path for vagrant examples
+  
+  secure_path is needed to find executables under i.e.
+  /sbin/ when vagrant uses sudo.
+  This fixes the problem when using vagrant-libvirt and
+  sync a folder via 9p which leads currently to:
+  
+  ==> devstack1: mounting p9 share in guest
+  modprobe 9p
+  bash: line 2: modprobe: command not found
+  
+---

++

commit mono-core for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package mono-core for openSUSE:Factory 
checked in at 2014-08-28 21:05:20

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


Package is "mono-core"

Changes:

--- /work/SRC/openSUSE:Factory/mono-core/mono-core.changes  2014-03-11 
17:27:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.mono-core.new/mono-core.changes 2014-08-28 
21:05:26.0 +0200
@@ -1,0 +2,171 @@
+Sat Aug 16 08:02:29 UTC 2014 - mailaen...@opensuse.org
+
+- Rebased patches and submitted to upstream
+- Removed ARM compatibility hacks https://github.com/mono/mono/pull/1211
+  + mono-arm-cpuinfo-v5.patch
+  + mono-arm-cpuinfo-v7.patch
+  + mono-arm-vfp.patch
+- Update to 3.6.0
+  + Runtime performance counters have been integrated into the profiler 
allowing the performance counter information to be surfaced to profiling tools 
and in particular Xamarin’s upcoming profiler.
+  + The profiler now produces backtraces for statistical mode. The profiler’s 
tracing mode now works on ARM.
+  + The debugger now support line and column ranges. pdb2mdb supports it. 
Note: the rest of our toolchain still needs to be updated.
+  + The debugger now supports changing the current line in the top frame.
+  + Lots of bugfixes and performance improvements on the profiler.
+  + The debugger now support reading simple properties without calling their 
getter, this is done by having a lightweight IL interpreter for small pieces of 
code. This allows more properties to be inspected while the process is 
completely stopped and without having to temporarily resume execution of the 
target to execute the property code.
+  + Added buffered response mode to improve network efficiency on high latency 
links such as USB.
+  + The GC bridge got a lot of performance work. There are now two new modes 
that can significantly improve some workloads.
+  + Multiple http stack improvements: some leaks in the stack have been fixed, 
as well as solving some long-standing bugs involving asynchronous operations 
and proxies. We have introduced a more comprehensive test harness to ensure 
that those bugs do not surface again.
+  + System.IO.Compression is now implemented
+  + System.Security.Claims is now implemented. It resides in the System 
assembly (existed before in the Identity stack, but now we track the new home 
from the .NET 4.5 API).
+  + Reworked locking to drop a hot lock in method lookup.
+  + Use fine grained locking instead of a big hot lock.
+  + Better hashing of some runtime internal items to avoid some corner-case 
slowdowns with generics.
+  + The profiler is now able to produces backtraces in statistical mode.
+  + Added periodical flushing that should help interactive users. This means 
that the profiling will send data over the profiling even if the application is 
not currently sending data (this is there to support the upcoming new profiler 
UI).
+  + It now collects and reports performance counter information. See 
mprof-report’s man page.
+  + Fixed the handling of the volatile. CIL prefix.
+  + We now distribute IKVM’s ikdasm tool. This is a reliable disassembler that 
does not have the limitation of monodis of requiring a complete set of 
assemblies that are compatible to disassemble. This will disassemble even files 
that do not have their dependencies available.
+  + Optimized EqualityComparer for more types.
+  + Our msbuild implementation can now build Project K and Roslyn
+  + Optimized EqualityComparer for more types.
+  + [mcs] Flow analysis of nested binary expressions inside anonymous methods 
was missing on left/right reset.
+  + [mcs] Fix betterness logic for default vs params parameters.
+  + [mcs] Flow analysis of binary expressions not using logical operators.
+  + [mcs] Emit unmanaged version info from AssemblyFileVersion.
+  + [mcs] Fix expression tree conversion type for lifted enum equality 
comparisons.
+  + [mcs] Report error when named argument for param parameter is given but 
not all formal parameters are provided.
+  + [mcs] Unify reachable label lookup.
+  + [mcs] Don’t release field address copy before it’s used.
+  + [mcs] Fix error reporting propagation for loop statements.
+  + [mcs] Emit better code for null coalescing operator with nullable return 
type.
+  + [mcs] Add explicit array conversion involving type parameters.
+  + Add System.ServiceModel.Security assembly.
+  + [sdb] Avoid clearing event requests if they reference an assembly which is 
unloaded. Instead, remove the assembly reference from the event request so it 
stays active.
+  + Rename configure.in -> configure.ac.
+  + [System] Fix parsing of IPv6 addresses.
+  + [Http] Cleanup chained async operations.
+  + [corlib] Add Guid hex format parsing with whitespaces.
+  + [System.Net.Htt

commit libexif for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package libexif for openSUSE:Factory checked 
in at 2014-08-28 21:05:03

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


Package is "libexif"

Changes:

--- /work/SRC/openSUSE:Factory/libexif/libexif.changes  2014-06-02 
07:00:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.libexif.new/libexif.changes 2014-08-28 
21:05:04.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug 26 11:37:30 UTC 2014 - fcro...@suse.com
+
+- Add obsoletes/provides to baselibs.conf.
+
+---



Other differences:
--
++ baselibs.conf ++
--- /var/tmp/diff_new_pack.fc9ysg/_old  2014-08-28 21:05:05.0 +0200
+++ /var/tmp/diff_new_pack.fc9ysg/_new  2014-08-28 21:05:05.0 +0200
@@ -1 +1,3 @@
 libexif12
+obsoletes "libexif- < "
+provides "libexif- = "

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



commit mariadb for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package mariadb for openSUSE:Factory checked 
in at 2014-08-28 21:05:23

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


Package is "mariadb"

Changes:

--- /work/SRC/openSUSE:Factory/mariadb/mariadb.changes  2014-07-13 
14:06:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.mariadb.new/mariadb.changes 2014-08-28 
21:05:43.0 +0200
@@ -1,0 +2,14 @@
+Tue Aug 19 06:42:53 UTC 2014 - michal.hruse...@opensuse.org
+
+- fix privileges as a last step of upgrade
+
+---
+Mon Aug 18 17:39:33 UTC 2014 - michal.hruse...@opensuse.org
+
+- Update to 10.0.13
+  * Release notes:
+http://kb.askmonty.org/v/mariadb-10013-release-notes
+  * Changelog:
+http://kb.askmonty.org/v/mariadb-10013-changelog
+
+---

Old:

  mariadb-10.0.12.tar.bz2

New:

  _constraints
  mariadb-10.0.13.tar.bz2



Other differences:
--
++ mariadb.spec ++
--- /var/tmp/diff_new_pack.Viq49H/_old  2014-08-28 21:05:46.0 +0200
+++ /var/tmp/diff_new_pack.Viq49H/_new  2014-08-28 21:05:46.0 +0200
@@ -40,7 +40,7 @@
 Summary:Server part of MariaDB
 License:SUSE-GPL-2.0-with-FLOSS-exception
 Group:  Productivity/Databases/Servers
-Version:10.0.12
+Version:10.0.13
 Release:0
 %define srv_vers 5.6.17
 Url:http://www.mariab.org

++ _constraints ++

  

  9

  


++ configuration-tweaks.tar.bz2 ++

++ mariadb-10.0.12.tar.bz2 -> mariadb-10.0.13.tar.bz2 ++
/work/SRC/openSUSE:Factory/mariadb/mariadb-10.0.12.tar.bz2 
/work/SRC/openSUSE:Factory/.mariadb.new/mariadb-10.0.13.tar.bz2 differ: char 
11, line 1

++ mysql-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mysql-patches/mysql-patches/mariadb-10.0.13-upgrade-datadir.patch 
new/mysql-patches/mysql-patches/mariadb-10.0.13-upgrade-datadir.patch
--- old/mysql-patches/mysql-patches/mariadb-10.0.13-upgrade-datadir.patch   
1970-01-01 01:00:00.0 +0100
+++ new/mysql-patches/mysql-patches/mariadb-10.0.13-upgrade-datadir.patch   
2014-08-19 08:08:50.0 +0200
@@ -0,0 +1,100 @@
+PATCH-P0-FEATURE-UPSTREAM: Keep datadir across multiple calls
+
+mysql_upgrade script asks for datadir multiple times during update but at some
+point privileges gets updated and if --skip-grant-tables was used (like in SUSE
+init scripts), datadir is no longer queryable. So we cache the value.
+
+Maintainer: Michal Hrusecky 
+
+Index: client/mysql_upgrade.c
+===
+--- client/mysql_upgrade.c.orig
 client/mysql_upgrade.c
+@@ -608,21 +608,37 @@ static int extract_variable_from_show(DY
+ 
+ static int get_upgrade_info_file_name(char* name)
+ {
+-  DYNAMIC_STRING ds_datadir;
+-  DBUG_ENTER("get_upgrade_info_file_name");
++  static char *data_dir = NULL;
++  static size_t len;
+ 
+-  if (init_dynamic_string(&ds_datadir, NULL, 32, 32))
+-die("Out of memory");
++  DBUG_ENTER("get_upgrade_info_file_name");
+ 
+-  if (run_query("show variables like 'datadir'",
+-&ds_datadir, FALSE) ||
+-  extract_variable_from_show(&ds_datadir, name))
++  if(data_dir==NULL)
+   {
++DYNAMIC_STRING ds_datadir;
++
++if (init_dynamic_string(&ds_datadir, NULL, 32, 32))
++  die("Out of memory");
++
++if (run_query("show variables like 'datadir'",
++  &ds_datadir, FALSE) ||
++extract_variable_from_show(&ds_datadir, name)
++)
++{
++  dynstr_free(&ds_datadir);
++  DBUG_RETURN(1); /* Query failed */
++}
+ dynstr_free(&ds_datadir);
+-DBUG_RETURN(1); /* Query failed */
+-  }
++len = strlen(name)+1;
++if ((data_dir=(char*)malloc(sizeof(char)*len))==NULL)
++{
++  die("Out of memory");
++}
++strncpy(data_dir,name,len);
+ 
+-  dynstr_free(&ds_datadir);
++  } else {
++strncpy(name, data_dir, len);
++  }
+ 
+   fn_format(name, "mysql_upgrade_info", name, "", MYF(0));
+   DBUG_PRINT("exit", ("name: %s", name));
+@@ -757,7 +773,7 @@ static int run_mysqlcheck_upgrade(const
+ 
+ static int run_mysqlcheck_fixnames(void)
+ {
+-  verbose("Phase 2/3: Fixing table and database names");
++  verbose("Phase 2/4: Fixing table and database names");
+   print_conn_args("mysqlcheck");
+   return run_tool(mysqlcheck_path,
+   NULL, /* Send output from mysqlcheck directly to screen */
+@@ -1000,7 +1016,7 @@ int main(int argc, char **argv)
+ Read the mysql_upgrade_info file to check if mysql_upg

commit libaio for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package libaio for openSUSE:Factory checked 
in at 2014-08-28 21:05:02

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


Package is "libaio"

Changes:

--- /work/SRC/openSUSE:Factory/libaio/libaio.changes2013-03-01 
11:32:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.libaio.new/libaio.changes   2014-08-28 
21:05:03.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug 26 11:33:27 UTC 2014 - fcro...@suse.com
+
+- Add obsoletes/provides to baselibs.conf.
+
+---



Other differences:
--
++ libaio.spec ++
--- /var/tmp/diff_new_pack.7f2UVA/_old  2014-08-28 21:05:04.0 +0200
+++ /var/tmp/diff_new_pack.7f2UVA/_new  2014-08-28 21:05:04.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libaio
 #
-# 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

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.7f2UVA/_old  2014-08-28 21:05:04.0 +0200
+++ /var/tmp/diff_new_pack.7f2UVA/_new  2014-08-28 21:05:04.0 +0200
@@ -1,4 +1,6 @@
 libaio1
+obsoletes "libaio- < "
+provides "libaio- = "
 libaio-devel
 requires -libaio-
 requires "libaio1- = "

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



commit samba for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package samba for openSUSE:Factory checked 
in at 2014-08-28 21:05:19

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


Package is "samba"

Changes:

--- /work/SRC/openSUSE:Factory/samba/samba.changes  2014-08-13 
17:19:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.samba.new/samba.changes 2014-08-28 
21:05:20.0 +0200
@@ -1,0 +2,15 @@
+Tue Aug 19 14:07:53 UTC 2014 - lmue...@suse.com
+
+- Remove pre-11.2 patch which by default uses the smbpasswd passdb backend.
+
+---
+Wed Aug 13 11:44:31 UTC 2014 - lmue...@suse.com
+
+- build: disable mmap on s390 systems; (bso#10765); (bnc#886193).
+
+---
+Mon Aug 11 11:55:35 UTC 2014 - lmue...@suse.com
+
+- Create the cups smb backend as sym link pointing to smbspool; (bnc#891220).
+
+---
@@ -88,0 +104,7 @@
+
+---
+Wed Jul  9 22:59:09 UTC 2014 - dd...@suse.com
+
+- Reduce printer_list.tdb lock contention during printcap update;
+  (bso#10652); (bnc#883870).
+  + Only update the printer share inventory when needed.



Other differences:
--
++ samba.spec ++
--- /var/tmp/diff_new_pack.28gvqp/_old  2014-08-28 21:05:22.0 +0200
+++ /var/tmp/diff_new_pack.28gvqp/_new  2014-08-28 21:05:22.0 +0200
@@ -131,9 +131,6 @@
 %define samba_source_signature_location 
http://ftp.samba.org/pub/samba/rc/samba-%{version}%{samba_ver_suffix}.tar.asc
 %endif
 %definesamba_ver_full %{samba_ver}%{samba_ver_suffix}
-%if 0%{?suse_version} && 0%{?suse_version} < 
-%defineguards_symbols default_passdb_backend
-%endif
 %if 0%{?suse_version} && 0%{?suse_version} < 1031
 %define libsmbclient_name libsmbclient
 %define libsmbsharemodes_name libsmbsharemodes
@@ -148,7 +145,7 @@
 %else
 %definebuild_make_smp_mflags %{?jobs:-j%jobs}
 %endif
-%define SOURCE_TIMESTAMP 3274
+%define SOURCE_TIMESTAMP 3280
 %define BRANCH %{version}
 %global with_mitkrb5 1
 %global with_dc 0
@@ -1423,7 +1420,7 @@
 done
 # cups SMB support
 mkdir  -p %{buildroot}/%{cups_lib_dir}/backend/
-touch %{buildroot}/%{cups_lib_dir}/backend/smb
+ln -s %{_bindir}/smbspool %{buildroot}/%{cups_lib_dir}/backend/smb
 # pam_smbpass is missing
 cp -a source3/pam_smbpass/samples examples/pam_smbpass
 install -m 0644 source3/pam_smbpass/CHANGELOG examples/pam_smbpass/CHANGELOG
@@ -1853,7 +1850,7 @@
 %{_bindir}/testparm
 %dir %{cups_lib_dir}
 %dir %{cups_lib_dir}/backend
-%ghost %{cups_lib_dir}/backend/smb
+%{cups_lib_dir}/backend/smb
 %{_libdir}/libnss_wins.so.*
 %dir %{_libdir}/samba
 %{_libdir}/samba/charset

++ patches.tar.bz2 ++
 1635 lines of diff (skipped)


++ vendor-files.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor-files/tools/package-data 
new/vendor-files/tools/package-data
--- old/vendor-files/tools/package-data 2014-08-01 21:12:17.0 +0200
+++ new/vendor-files/tools/package-data 2014-08-19 16:34:58.0 +0200
@@ -1,2 +1,2 @@
 # This is an autogenrated file.
-SAMBA_PACKAGE_SVN_VERSION="3274"
+SAMBA_PACKAGE_SVN_VERSION="3280"

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



commit rsh for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package rsh for openSUSE:Factory checked in 
at 2014-08-28 21:05:14

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


Package is "rsh"

Changes:

--- /work/SRC/openSUSE:Factory/rsh/rsh.changes  2013-09-28 13:40:40.0 
+0200
+++ /work/SRC/openSUSE:Factory/.rsh.new/rsh.changes 2014-08-28 
21:05:17.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 20 13:15:21 UTC 2014 - nadvor...@suse.com
+
+- fixed spelling (bnc#889008)
+
+---

Old:

  README.SuSE

New:

  README.SUSE



Other differences:
--
++ rsh.spec ++
--- /var/tmp/diff_new_pack.sf7RaF/_old  2014-08-28 21:05:18.0 +0200
+++ /var/tmp/diff_new_pack.sf7RaF/_new  2014-08-28 21:05:18.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rsh
 #
-# 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
@@ -32,7 +32,7 @@
 Source1:rlogin.xinetd
 Source2:rsh.xinetd
 Source3:rexec.xinetd
-Source4:README.SuSE
+Source4:README.SUSE
 Patch:  netkit-rsh-%{version}.diff
 Patch1: netkit-rsh-%{version}-pam.diff
 Patch2: netkit-rsh-%{version}-varargs.diff
@@ -133,7 +133,7 @@
 %config /etc/pam.d/*
 %config(noreplace) /etc/xinetd.d/*
 %{_mandir}/man8/*
-%doc BUGS ChangeLog README.SuSE
+%doc BUGS ChangeLog README.SUSE
 /usr/sbin/*
 
 %changelog

++ README.SUSE ++
The in.rexecd accepts the following options:

-r  accept the connection even if reverse host lookup fails
-R  skip the reverse lookup completely
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libwmf for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package libwmf for openSUSE:Factory checked 
in at 2014-08-28 21:05:18

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


Package is "libwmf"

Changes:

--- /work/SRC/openSUSE:Factory/libwmf/libwmf.changes2014-06-01 
18:58:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.libwmf.new/libwmf.changes   2014-08-28 
21:05:19.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug 26 11:59:16 UTC 2014 - nadvor...@suse.com
+
+- dropped libwmf-devel -> libwmf-tools dependency (bnc#892356)
+
+---



Other differences:
--
++ libwmf.spec ++
--- /var/tmp/diff_new_pack.wBoaTX/_old  2014-08-28 21:05:20.0 +0200
+++ /var/tmp/diff_new_pack.wBoaTX/_new  2014-08-28 21:05:20.0 +0200
@@ -78,7 +78,6 @@
 Requires:   %{lname} = %{version}
 Requires:   libjpeg-devel
 Requires:   libpng-devel
-Requires:   libwmf
 Requires:   libwmf-gnome = %{version}
 Requires:   xorg-x11-devel
 Provides:   mswordvd:%{_libexecdir}/libwmf.a

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



commit dpkg for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package dpkg for openSUSE:Factory checked in 
at 2014-08-28 21:05:08

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


Package is "dpkg"

Changes:

--- /work/SRC/openSUSE:Factory/dpkg/dpkg.changes2014-05-13 
20:46:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.dpkg.new/dpkg.changes   2014-08-28 
21:05:12.0 +0200
@@ -1,0 +2,10 @@
+Mon Aug 25 13:35:42 UTC 2014 - jblu...@infradead.org
+
+- Add dpkg-archive_tar_format_gnu.patch: Make Dpkg::Source::Archive use tar 
--format=gnu
+
+---
+Sat Aug 23 19:02:35 UTC 2014 - dvla...@suse.com
+
+- Update pkg-ppc64le.diff to fix Debian name for ppc64le
+
+---

New:

  dpkg-archive_tar_format_gnu.patch



Other differences:
--
++ dpkg.spec ++
--- /var/tmp/diff_new_pack.U5a15i/_old  2014-08-28 21:05:13.0 +0200
+++ /var/tmp/diff_new_pack.U5a15i/_new  2014-08-28 21:05:13.0 +0200
@@ -39,6 +39,7 @@
 Patch5: dpkg-old-Test-More.patch
 Patch6: dpkg-sparc.diff
 Patch7: dpkg-ppc64le.diff
+Patch8: dpkg-archive_tar_format_gnu.patch
 BuildRequires:  gcc-c++
 BuildRequires:  libselinux-devel
 %define use_selinux 1
@@ -119,6 +120,9 @@
 %endif
 %patch6 -p1
 %patch7 -p1
+%if 0%{?suse_version} >= 1220
+%patch8 -p1
+%endif
 
 %build
 export CFLAGS="%{optflags}"

++ dpkg-archive_tar_format_gnu.patch ++
From: Jan Blunck 
Subject: Make Dpkg::Source::Archive use tar --format=gnu

Some versions of tar (specifically on openSUSE 12.2) have different default
tar format. So lets explicitly instruct Dpkg::Source::Archive to create the
gnu tar format.

http://anonscm.debian.org/gitweb/?p=dpkg/dpkg.git;h=3f0c739bff65e6167cc91626fa77145247560fda

Signed-off-by: Jan Blunck 

Index: dpkg-1.16.10/scripts/Dpkg/Source/Archive.pm
===
--- dpkg-1.16.10.orig/scripts/Dpkg/Source/Archive.pm
+++ dpkg-1.16.10/scripts/Dpkg/Source/Archive.pm
@@ -48,7 +48,7 @@ sub create {
 # Call tar creation process
 $spawn_opts{"delete_env"} = [ "TAR_OPTIONS" ];
 $spawn_opts{'exec'} = [ 'tar', '--null', '-T', '-', '--numeric-owner',
-'--owner', '0', '--group', '0',
+'--owner', '0', '--group', '0', '--format=gnu',
 @{$opts{"options"}}, '-cf', '-' ];
 *$self->{"pid"} = spawn(%spawn_opts);
 *$self->{"cwd"} = getcwd();
++ dpkg-ppc64le.diff ++
--- /var/tmp/diff_new_pack.U5a15i/_old  2014-08-28 21:05:13.0 +0200
+++ /var/tmp/diff_new_pack.U5a15i/_new  2014-08-28 21:05:13.0 +0200
@@ -6,7 +6,7 @@
  mipselmipsel  mipsel  32  little
  powerpc   powerpc (powerpc|ppc)   32  big
  ppc64 powerpc64   (powerpc|ppc)64 64  big
-+ppc64le   powerpc64le (powerpc|ppc)64le   64  little
++ppc64el   powerpc64le (powerpc|ppc)64le   64  little
  s390  s390s39032  big
  s390x s390x   s390x   64  big
  sh3   sh3 sh3 32  little

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



commit openexr for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package openexr for openSUSE:Factory checked 
in at 2014-08-28 21:05:10

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


Package is "openexr"

Changes:

--- /work/SRC/openSUSE:Factory/openexr/openexr.changes  2014-04-26 
17:01:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.openexr.new/openexr.changes 2014-08-28 
21:05:14.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug 26 11:21:47 UTC 2014 - fcro...@suse.com
+
+- Add obsoletes to baselibs.conf.
+
+---



Other differences:
--
++ baselibs.conf ++
--- /var/tmp/diff_new_pack.rGR74q/_old  2014-08-28 21:05:15.0 +0200
+++ /var/tmp/diff_new_pack.rGR74q/_new  2014-08-28 21:05:15.0 +0200
@@ -1 +1,2 @@
 libIlmImf-Imf_2_1-21
+obsoletes "OpenEXR- < "


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



commit alsa for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package alsa for openSUSE:Factory checked in 
at 2014-08-28 21:05:05

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


Package is "alsa"

Changes:

--- /work/SRC/openSUSE:Factory/alsa/alsa.changes2014-08-14 
14:57:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.alsa.new/alsa.changes   2014-08-28 
21:05:08.0 +0200
@@ -1,0 +2,9 @@
+Tue Aug 26 12:44:29 CEST 2014 - ti...@suse.de
+
+- Yet more DSD fix, hwdep iface sync with the recent kernel, and a
+  minor documentation fix from upstream:
+  0019-Sync-enum-snd_hwdep_iface_t-with-include-asound-asou.patch
+  0020-pcm-2nd-round-of-pcm_misc-DSD-fixes.patch
+  0021-doc-fix-cross-compiling-example.patch
+
+---

New:

  0019-Sync-enum-snd_hwdep_iface_t-with-include-asound-asou.patch
  0020-pcm-2nd-round-of-pcm_misc-DSD-fixes.patch
  0021-doc-fix-cross-compiling-example.patch



Other differences:
--
++ alsa.spec ++
--- /var/tmp/diff_new_pack.iRLDZg/_old  2014-08-28 21:05:10.0 +0200
+++ /var/tmp/diff_new_pack.iRLDZg/_new  2014-08-28 21:05:10.0 +0200
@@ -67,6 +67,9 @@
 Patch16:0016-pcm-Fix-DSD-formats-userland-usability.patch
 Patch17:0017-Sync-include-sound-asound.h-with-3.17-rc1-kernel.patch
 Patch18:0018-pcm-Add-missing-signed-and-endianess-definitions-for.patch
+Patch19:0019-Sync-enum-snd_hwdep_iface_t-with-include-asound-asou.patch
+Patch20:0020-pcm-2nd-round-of-pcm_misc-DSD-fixes.patch
+Patch21:0021-doc-fix-cross-compiling-example.patch
 # rest suse patches
 Patch99:alsa-lib-doxygen-avoid-crash-for-11.3.diff
 BuildRequires:  doxygen
@@ -153,6 +156,9 @@
 %patch16 -p1
 %patch17 -p1
 %patch18 -p1
+%patch19 -p1
+%patch20 -p1
+%patch21 -p1
 %if 0%{?suse_version} == 1130
 %patch99 -p1
 %endif

++ 0019-Sync-enum-snd_hwdep_iface_t-with-include-asound-asou.patch ++
>From dfc3bf97bf45bd78d498d20fcf930541350f836d Mon Sep 17 00:00:00 2001
From: Takashi Sakamoto 
Date: Mon, 18 Aug 2014 18:45:17 +0900
Subject: [PATCH] Sync enum snd_hwdep_iface_t with include/asound/asound.h

Some members in this enumerated type has not updated for 9 years, although
kernel-drivers added them during this period. This commit adds them following
to a commit 87df9f3 'sync include/asound/asound.h with 3.17-rc1 kernel'.

Signed-off-by: Takashi Sakamoto 
Signed-off-by: Takashi Iwai 
---
 include/hwdep.h | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/include/hwdep.h b/include/hwdep.h
index ab12822cf799..6496fa2d7d87 100644
--- a/include/hwdep.h
+++ b/include/hwdep.h
@@ -68,8 +68,13 @@ typedef enum _snd_hwdep_iface {
SND_HWDEP_IFACE_USX2Y_PCM,  /**< Tascam US122, US224 & US428 raw 
USB PCM */
SND_HWDEP_IFACE_PCXHR,  /**< Digigram PCXHR */
SND_HWDEP_IFACE_SB_RC,  /**< SB Extigy/Audigy2NX remote control 
*/
-
-   SND_HWDEP_IFACE_LAST = SND_HWDEP_IFACE_SB_RC  /**< last known hwdep 
interface */
+   SND_HWDEP_IFACE_HDA,/**< HD-audio */
+   SND_HWDEP_IFACE_USB_STREAM, /**< direct access to usb stream */
+   SND_HWDEP_IFACE_FW_DICE,/**< TC DICE FireWire device */
+   SND_HWDEP_IFACE_FW_FIREWORKS,   /**< Echo Audio Fireworks based device 
*/
+   SND_HWDEP_IFACE_FW_BEBOB,   /**< BridgeCo BeBoB based device */
+
+   SND_HWDEP_IFACE_LAST = SND_HWDEP_IFACE_FW_BEBOB  /**< last known hwdep 
interface */
 } snd_hwdep_iface_t;
 
 /** open for reading */
-- 
2.1.0

++ 0020-pcm-2nd-round-of-pcm_misc-DSD-fixes.patch ++
>From b9f58dcc6f91fde42e6dd2bb831d6063855512a7 Mon Sep 17 00:00:00 2001
From: Jurgen Kramer 
Date: Fri, 22 Aug 2014 10:15:10 +0200
Subject: [PATCH] pcm: 2nd round of pcm_misc DSD fixes

Functions 'snd_pcm_format_silence_64' and 'snd_pcm_format_size' also need to be
able to handle the DSD smaple format.

Changes from v1:
- Correct silence pattern for DSD

Signed-off-by: Jurgen Kramer 
Signed-off-by: Takashi Iwai 
---
 src/pcm/pcm_misc.c | 5 +
 1 file changed, 5 insertions(+)

diff --git a/src/pcm/pcm_misc.c b/src/pcm/pcm_misc.c
index 24d52f910cb6..46fc7719978e 100644
--- a/src/pcm/pcm_misc.c
+++ b/src/pcm/pcm_misc.c
@@ -317,11 +317,13 @@ ssize_t snd_pcm_format_size(snd_pcm_format_t format, 
size_t samples)
switch (format) {
case SNDRV_PCM_FORMAT_S8:
case SNDRV_PCM_FORMAT_U8:
+   case SNDRV_PCM_FORMAT_DSD_U8:
return samples;
case SNDRV_PCM_FORMAT_S16_LE:
case SNDRV_PCM_FORMAT_S16_BE:
case SNDRV_PCM_FORMAT_U16_LE:
case SNDRV_PCM_FORMAT_U16_BE:
+   case SNDRV_PCM_

commit slang for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package slang for openSUSE:Factory checked 
in at 2014-08-28 21:05:11

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


Package is "slang"

Changes:

--- /work/SRC/openSUSE:Factory/slang/slang.changes  2014-07-15 
16:25:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.slang.new/slang.changes 2014-08-28 
21:05:15.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug 26 12:20:26 UTC 2014 - fcro...@suse.com
+
+- Add obsoletes/provides to baselibs.conf.
+
+---



Other differences:
--
++ baselibs.conf ++
--- /var/tmp/diff_new_pack.Zci4Us/_old  2014-08-28 21:05:17.0 +0200
+++ /var/tmp/diff_new_pack.Zci4Us/_new  2014-08-28 21:05:17.0 +0200
@@ -1 +1,3 @@
 libslang2
+obsoletes "slang- < "
+provides "slang- = "

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



commit libburnia for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package libburnia for openSUSE:Factory 
checked in at 2014-08-28 21:04:59

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


Package is "libburnia"

Changes:

--- /work/SRC/openSUSE:Factory/libburnia/libburnia.changes  2013-12-18 
16:54:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.libburnia.new/libburnia.changes 2014-08-28 
21:05:00.0 +0200
@@ -1,0 +2,74 @@
+Tue Aug 26 07:15:12 UTC 2014 - g...@opensuse.org
+
+- update libburn to 1.3.8:
+  * Bug fix: Wrong stack usage caused SIGBUS on sparc when compiled
+by gcc -O2
+  * Bug fix: Minimum drive buffer fill was measured by cdrskin
+before the buffer could get full
+  * Bug fix: A failed MMC BLANK command did not cause error
+indication by libburn
+  * Bug fix: A final fsync(2) was performed with stdio drives, even
+if not desired
+  * Bug fix: CD TAO with multiple tracks could cause a buffer
+overrun
+  * Bug fix: Compilation warning for unsupported systems mutated
+into an error
+  * New system adapter for NetBSD
+- update libisoburn to 1.3.8:
+  * Bug fix: -boot_image grub grub2_mbr= did not work (but -as
+mkisofs --grub2-mbr did work)
+  * Bug fix: -boot_image grub2_mbr=  prevented -boot_image
+partition_table=on
+  * Bug fix: libburn: A final fsync(2) was performed with stdio
+drives, even if -stdio_sync was set to "off".
+  * Bug fix: libburn: Wrong stack usage caused SIGBUS on sparc when
+compiled by gcc -O2
+  * Bug fix: -blank force:all on DVD+RW had no effect
+  * Enabled use of libedit as alternative to libreadline
+  * Enabled recording and restoring of extattr on NetBSD
+  * New API calls isoburn_igopt_set_stdio_endsync() and
+isoburn_igopt_get_stdio_endsync
+  * New bootspecs hppa_*, new -as mkisofs options -hppa-* for HP-PA
+via PALO
+  * New -find pseudo tests -use_pattern , -or_use_pattern
+  * New -find action report_sections
+  * New command -concat
+  * New commands -report_system_area and -report_el_torito
+  * Bug fix: Command -status produced FAILURE event if no drive was
+acquired Regression introduced by release 1.3.6
+  * Bug fix: libburn : Compilation warning for unsupported systems
+mutated into an error. Regression introduced by release 1.3.6.
+  * Bug fix: libburn : CD TAO with add-on sessions could cause a
+buffer overrun.  Introduced 7 years ago by release 0.3.2.
+  * Bug fix: libisofs: Division by zero if HFS+ was combined with
+TOC emulation for overwritable media.
+  * Bug fix: -list_speeds did not work any more with old CD drives.
+Regression introduced by release 1.3.4
+  * Bug fix: -check_media marked untested sectors in sector map as
+valid
+  * Bug fix: Paths with symbolic links preceding ".." were not
+interpreted properly
+  * New isoburn_igopt_set_relaxed() relaxation
+isoburn_igopt_joliet_utf16
+  * New -compliance rule joliet_utf16, new -as mkisofs option
+-joliet-utf16
+  * New -find test -bad_outname, new -find action print_outname
+  * New API call isoburn_conv_name_chars()
+  * libburn: New system adapter for NetBSD
+- update libisofs to 1.3.8:
+  * Bug fix: Prevent allocation of empty hash tables. Thanks
+Richard Nolde.
+  * Bug fix: Prevent allocation of empty directory children lists.
+Thanks Richard Nolde.
+  * Bug fix: The GUIDs of main GPT and backup GPT differed if more
+than one System Area was written into the ISO image.
+  * New API calls iso_image_report_el_torito() and
+iso_image_report_system_area()
+  * New API call iso_crc32_gpt()
+  * Bug fix: Division by zero if HFS+ was combined with TOC
+emulation for overwritable media.
+  * New API call iso_write_opts_set_joliet_utf16() and ability to
+read Joliet names as UTF-16BE
+  * New API call iso_conv_name_chars()
+
+---

Old:

  libburn-1.3.4.tar.gz
  libisoburn-1.3.4.tar.gz
  libisofs-1.3.4.tar.gz

New:

  libburn-1.3.8.tar.gz
  libisoburn-1.3.8.tar.gz
  libisofs-1.3.8.tar.gz



Other differences:
--
++ libburnia.spec ++
--- /var/tmp/diff_new_pack.ZQg70w/_old  2014-08-28 21:05:02.0 +0200
+++ /var/tmp/diff_new_pack.ZQg70w/_new  2014-08-28 21:05:02.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define libburn_ver1.3.4
-%define libisoburn_ver 1.3.4
-%define libisofs_ver   1.3.4
+%define libburn_ver1.3.8
+%define libisoburn_ver 1.3.8
+%define libisofs_ver   1.3.8
 
 %define libburn_so 4
 %define libisoburn_so  1

++ libburn-1.3.4.tar.gz -> libburn-1.3.8.tar.gz ++
 4718 lines of diff (skipped)

++ libisoburn-1.3.4.tar.gz -> libisoburn-1.3.8.tar.gz ++
 10970 lines 

commit cups-filters for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package cups-filters for openSUSE:Factory 
checked in at 2014-08-28 21:04:56

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


Package is "cups-filters"

Changes:

--- /work/SRC/openSUSE:Factory/cups-filters/cups-filters.changes
2014-07-31 10:04:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.cups-filters.new/cups-filters.changes   
2014-08-28 21:04:57.0 +0200
@@ -1,0 +2,74 @@
+Mon Aug 25 15:30:37 CEST 2014 - jsm...@suse.de
+
+- A /usr/bin/foomatic-rip -> /usr/lib/cups/filter/foomatic-rip 
+  symlink is added to the cups-filters-foomatic-rip sub-package
+  to make our lsb RPM installable again (bnc#892604).
+  LSB currently requires /usr/bin/foomatic-rip but future LSB
+  will require /usr/lib/cups/filter/foomatic-rip see
+  https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3900
+
+---
+Mon Aug 25 10:22:51 CEST 2014 - jsm...@suse.de
+
+- Version upgrade to 1.0.58
+  Changes in 1.0.58 (excerpt - for details see the NEWS file):
+  * pdftoraster: Changed ICC profile get function to accept a
+PPD fallback profile.
+  * pdftoraster: Fixed handling of cupsColorSpaces 18,19,20.
+  * rastertopdf: Grayscale color conversion now properly inverts
+bits.
+  * rastertopdf: Implemented basic 8bit->8bit color space
+conversions.
+  * rastertopdf: Added black point compensation.
+  * rastertopdf: Added handling of color rendering intent.
+  * gstoraster, imagetoraster, pdftoraster, rastertopclx,
+rastertopdf, foomatic-rip: Use color management functions in
+libcupsfilters.
+  * libcupsfilters: Modified code formatting and documentation in
+the color management functions.
+  * libcupsfilters: Fixed string handling and added debug log
+messages in the color management functions.
+  * libcupsfilters: Fixed Adobe RGB matrix for proper rendering
+(transpose)
+  * libcupsfilters: Moved color management functions from the
+individual filters to the libcupsfilters library.
+- Version upgrade to 1.0.57
+  Changes in 1.0.57 (excerpt - for details see the NEWS file):
+  * Build system: Explicitly link to libm as -lm was dropped
+from cups-config --libs.
+  * libcupsfilters, foomaticrip, gstoraster, imagetoraster,
+pdftoraster, rastertopclx, rastertopdf: Handle absence of
+colord or D-Bus gracefully (Ubuntu bug #1356405).
+- Version upgrade to 1.0.56
+  Changes in 1.0.56 (excerpt - for details see the NEWS file):
+  * Major regression fix in cups-browsed (introduced in 1.0.55
+by no longer creating a local queue pointing to a remote
+raw queue that causes no longer creating local queues for
+traditional CUPS Browsing remote CUPS queues):
+Do not consider a remote CUPS queue as raw if the TXT record
+is NULL as for queues broadcasted by the legacy CUPS method
+the TXT record does not exist. Now  consider a queue with
+NULL TXT record only as raw if the domain entry is not empty
+which tells that the queue is Bonjour-broadcasted
+(linuxfoundation.org bug #1223).
+  * cups-browsed: Do also not mark a discovered printer as
+already provided by another server when the other server's
+queue has "unconfirmed" status. Mark the other queue with
+"disappeared" or "unconfirmed" status as duplicate of the
+discovered printer so that the new queue for the discovered
+printer does not get removed when the entry for the other
+queue times out.
+  * rastertopdf: Some code polishing and removal of now unneeded
+functions
+  * rastertopdf: Reduced color space handling to only
+PWG-supported color spaces
+  * rastertopdf: Added colorspace calibration function; included
+optional "/Alternate" PDF key for ICC profile embedding
+  * rastertopdf: Colorspace sRGB now embeds srgb icc profile;
+implemented ICC Profile embedding (PDF 1.3 spec)
+  * rastertopdf: Added basic color calibration
+  * rastertopdf: Implemented ICC Profile creation code for IPP
+Everywhere (from PWG raster)
+  * pdftoraster: Added colord handling of ICC profiles
+
+---
@@ -5 +79 @@
-  Changes in 1.0.54 (excerpt - for details see the NEWS file):
+  Changes in 1.0.55 (excerpt - for details see the NEWS file):

Old:

  cups-filters-1.0.55.tar.gz

New:

  cups-filters-1.0.58.tar.gz



Other differences:
--
++ cups-filters.spec ++
--- /var/tmp/diff_new_pack.5f1cKT/_old  2014-08-28 21:04:59.0 +0200
+++ /var/tmp/diff_new_pack.5f1cKT/_new  2014-08-28 21:04:59.0 +0200
@@ -36,7 +36,7 @@
 #   and also run: zypper vcmp 'next version'

commit phpMyAdmin for openSUSE:12.3:Update

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package phpMyAdmin for openSUSE:12.3:Update 
checked in at 2014-08-28 10:38:38

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


Package is "phpMyAdmin"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.OnZynB/_old  2014-08-28 10:38:40.0 +0200
+++ /var/tmp/diff_new_pack.OnZynB/_new  2014-08-28 10:38:40.0 +0200
@@ -1 +1 @@
-
+

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



commit phpMyAdmin for openSUSE:13.1:Update

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package phpMyAdmin for openSUSE:13.1:Update 
checked in at 2014-08-28 10:38:40

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


Package is "phpMyAdmin"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Czd6Q1/_old  2014-08-28 10:38:42.0 +0200
+++ /var/tmp/diff_new_pack.Czd6Q1/_new  2014-08-28 10:38:42.0 +0200
@@ -1 +1 @@
-
+

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



commit python3 for openSUSE:12.3:Update

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package python3 for openSUSE:12.3:Update 
checked in at 2014-08-28 10:38:05

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


Package is "python3"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.N4sg2t/_old  2014-08-28 10:38:09.0 +0200
+++ /var/tmp/diff_new_pack.N4sg2t/_new  2014-08-28 10:38:09.0 +0200
@@ -1 +1 @@
-
+

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



commit python3-doc.2946 for openSUSE:12.3:Update

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package python3-doc.2946 for 
openSUSE:12.3:Update checked in at 2014-08-28 10:38:02

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


Package is "python3-doc.2946"

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



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



commit python3-doc for openSUSE:12.3:Update

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package python3-doc for openSUSE:12.3:Update 
checked in at 2014-08-28 10:38:03

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


Package is "python3-doc"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.lIuwHo/_old  2014-08-28 10:38:06.0 +0200
+++ /var/tmp/diff_new_pack.lIuwHo/_new  2014-08-28 10:38:06.0 +0200
@@ -1 +1 @@
-
+

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



commit python3-base for openSUSE:12.3:Update

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package python3-base for 
openSUSE:12.3:Update checked in at 2014-08-28 10:38:00

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


Package is "python3-base"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.1QZiC5/_old  2014-08-28 10:38:02.0 +0200
+++ /var/tmp/diff_new_pack.1QZiC5/_new  2014-08-28 10:38:02.0 +0200
@@ -1 +1 @@
-
+

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



commit octave for openSUSE:12.3:Update

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package octave for openSUSE:12.3:Update 
checked in at 2014-08-28 10:36:08

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


Package is "octave"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Kyjpo5/_old  2014-08-28 10:36:09.0 +0200
+++ /var/tmp/diff_new_pack.Kyjpo5/_new  2014-08-28 10:36:09.0 +0200
@@ -1 +1 @@
-
+

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



commit kexec-tools for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package kexec-tools for openSUSE:Factory 
checked in at 2014-08-28 10:01:52

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


Package is "kexec-tools"

Changes:

--- /work/SRC/openSUSE:Factory/kexec-tools/kexec-tools.changes  2014-08-20 
17:53:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.kexec-tools.new/kexec-tools.changes 
2014-08-28 10:01:54.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug 19 21:06:29 UTC 2014 - to...@suse.com
+
+- custom autoconf action was no longer setting HAVE_LIBXENCTRL (bnc#886873)
+
+---



Other differences:
--
++ kexec-tools-xen-static.patch ++
--- /var/tmp/diff_new_pack.ejgQ6I/_old  2014-08-28 10:01:55.0 +0200
+++ /var/tmp/diff_new_pack.ejgQ6I/_new  2014-08-28 10:01:55.0 +0200
@@ -20,7 +20,7 @@
AC_CHECK_HEADER(xenctrl.h,
 -  AC_CHECK_LIB(xenctrl, xc_kexec_load, ,
 +  AC_CHECK_LIB(xenctrl, xc_kexec_load,
-+  [[LIBS="$LIBS -Wl,-Bstatic -lxenctrl -Wl,-Bdynamic"]]
++  [AC_DEFINE([HAVE_LIBXENCTRL], [1], [libxenctrl]) 
[[LIBS="-Wl,-Bstatic -lxenctrl -Wl,-Bdynamic -lpthread -ldl $LIBS"]]],
AC_MSG_NOTICE([Xen support disabled])))
  fi
  

-- 
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-08-28 Thread h_root
Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2014-08-28 10:01:55

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-08-20 17:52:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes 
2014-08-28 10:01:59.0 +0200
@@ -1,0 +2,10 @@
+Mon Aug 18 17:33:34 CEST 2014 - ti...@suse.de
+
+- A better fix for 24bpp graphics problem with cirrus KMS
+  (bnc#890599); Adding a new patch:
+  U_fb-Fix-invalid-bpp-for-24bit-depth-window.patch
+  while obsoleting two patches:
+  
u_render-Don-t-generate-invalid-pixman-format-when-using-a-24bpp-framebuffer-with-a-32bit-depth-visual.patch
+  
u_fb-Correctly-implement-CopyArea-when-using-a-window-with-depth-32-and-24bpp.patch
+
+---

Old:

  
u_fb-Correctly-implement-CopyArea-when-using-a-window-with-depth-32-and-24bpp.patch
  
u_render-Don-t-generate-invalid-pixman-format-when-using-a-24bpp-framebuffer-with-a-32bit-depth-visual.patch

New:

  U_fb-Fix-invalid-bpp-for-24bit-depth-window.patch



Other differences:
--
++ xorg-x11-server.spec ++
--- /var/tmp/diff_new_pack.eIEJqk/_old  2014-08-28 10:02:00.0 +0200
+++ /var/tmp/diff_new_pack.eIEJqk/_new  2014-08-28 10:02:00.0 +0200
@@ -156,8 +156,7 @@
 Patch111:   u_CloseConsole-Don-t-report-FatalError-when-shutting-down.patch
 Patch112:   
u_render-Cast-color-masks-to-unsigned-long-before-shifting-them.patch
 Patch130:   
U_BellProc-Send-bell-event-on-core-protocol-bell-when-requested.patch
-Patch131:   
u_render-Don-t-generate-invalid-pixman-format-when-using-a-24bpp-framebuffer-with-a-32bit-depth-visual.patch
-Patch132:   
u_fb-Correctly-implement-CopyArea-when-using-a-window-with-depth-32-and-24bpp.patch
+Patch131:   U_fb-Fix-invalid-bpp-for-24bit-depth-window.patch
 
 Patch1000:  n_xserver-optimus-autoconfig-hack.patch
 
@@ -240,7 +239,6 @@
 %patch112 -p1
 %patch130 -p1
 %patch131 -p1
-%patch132 -p1
 %patch1000 -p1
 
 ### disabled for now

++ U_fb-Fix-invalid-bpp-for-24bit-depth-window.patch ++
>From fe5018e0564118a7a8198fa286186fdb9ed818c7 Mon Sep 17 00:00:00 2001
From: Takashi Iwai 
Date: Tue, 19 Aug 2014 15:57:22 -0500
Subject: [PATCH] fb: Fix invalid bpp for 24bit depth window

We have a hack in fb layer for a 24bpp screen to use 32bpp images, and
fbCreateWindow() replaces its drawable.bitsPerPixel field
appropriately.  But, the problem is that it always replaces when 32bpp
is passed.  If the depth is 32, this results in bpp < depth, which is
actually invalid.

Meanwhile, fbCreatePixmap() has a more check and it creates with 24bpp
only when the passed depth <= 24 for avoiding such a problem.

This oneliner patch just adds the similar check in fbCreateWindow().
This (hopefully) fixes the long-standing broken graphics mess of
cirrus KMS with 24bpp.

Signed-off-by: Takashi Iwai 
Reviewed-by: Keith Packard 
---
 fb/fbwindow.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fb/fbwindow.c b/fb/fbwindow.c
index 368c4b883b31..c90175faa078 100644
--- a/fb/fbwindow.c
+++ b/fb/fbwindow.c
@@ -33,7 +33,7 @@ fbCreateWindow(WindowPtr pWin)
 {
 dixSetPrivate(&pWin->devPrivates, fbGetWinPrivateKey(pWin),
   fbGetScreenPixmap(pWin->drawable.pScreen));
-if (pWin->drawable.bitsPerPixel == 32)
+if (pWin->drawable.bitsPerPixel == 32 && pWin->drawable.depth <= 24)
 pWin->drawable.bitsPerPixel =
 fbGetScreenPrivate(pWin->drawable.pScreen)->win32bpp;
 return TRUE;
-- 
2.0.4

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



commit ilmbase for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package ilmbase for openSUSE:Factory checked 
in at 2014-08-28 10:01:58

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


Package is "ilmbase"

Changes:

--- /work/SRC/openSUSE:Factory/ilmbase/ilmbase.changes  2013-11-27 
15:30:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.ilmbase.new/ilmbase.changes 2014-08-28 
10:02:02.0 +0200
@@ -1,0 +2,5 @@
+Thu Aug 21 15:59:57 UTC 2014 - fcro...@suse.com
+
+- Add obsoletes to baselibs.conf.
+
+---



Other differences:
--
++ ilmbase.spec ++
--- /var/tmp/diff_new_pack.yNxvAX/_old  2014-08-28 10:02:03.0 +0200
+++ /var/tmp/diff_new_pack.yNxvAX/_new  2014-08-28 10:02:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ilmbase
 #
-# 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

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.yNxvAX/_old  2014-08-28 10:02:03.0 +0200
+++ /var/tmp/diff_new_pack.yNxvAX/_new  2014-08-28 10:02:03.0 +0200
@@ -3,4 +3,5 @@
 libIlmThread-2_1-11
 libIexMath-2_1-11
 libIex-2_1-11
+obsoletes "IlmBase- < "
 


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



commit multipath-tools for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package multipath-tools for openSUSE:Factory 
checked in at 2014-08-28 10:01:51

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


Package is "multipath-tools"

Changes:

--- /work/SRC/openSUSE:Factory/multipath-tools/multipath-tools.changes  
2014-08-11 10:08:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.multipath-tools.new/multipath-tools.changes 
2014-08-28 10:01:52.0 +0200
@@ -1,0 +2,49 @@
+Thu Aug 21 12:16:53 CEST 2014 - h...@suse.de
+
+- Revert to ACT_RELOAD in domap() if the map exists
+- multipathd: asynchronous configuration (bnc#891189)
+- multipathd: timeout CLI commands when waiting for lock
+  (bnc#891189)
+- Remove dm_udev_XXX wrapper functions
+- uxlsnr: use typedef for trigger function
+- multipathd: lock cli client list
+- multipathd: Use standard lists for CLI handling
+
+---
+Tue Aug 19 12:33:19 CEST 2014 - h...@suse.de
+
+- Use strlen() when checking for valid wwid
+- kpartx: zero out cookie (bnc#890902)
+- multipathd: Check for empty wwid when processing events
+  (bnc#892214)
+
+---
+Mon Aug 18 16:24:05 CEST 2014 - h...@suse.de
+
+- Fixup device-mapper cookie handling yet again (bnc#890902)
+- Allow zero-sized devices during configuration
+- multipathd: issue warning on CLI command timeout (bnc#891189)
+
+---
+Wed Aug 13 20:04:34 CEST 2014 - h...@suse.de
+
+- Do not remove paths without uevent (bnc#890998)
+
+---
+Tue Aug 12 10:47:21 CEST 2014 - h...@suse.de
+
+- Fixup structure misalignment in config.h (bnc#890747)
+- Do not print empty multipaths section
+- Fixup 'uxsock_timeout' handling
+- Reload map if reinstate failed (bnc#890854)
+
+---
+Mon Aug 11 17:03:25 CEST 2014 - h...@suse.de
+
+- Close memory leak in print_multipath_topology
+- Implement 'uxsock_timeout' keyword (bnc#890551)
+- Return error when receiving CLI packet (bnc#890551)
+- multipath: do not print state 'orphan' for option '-l' (bnc#890551)
+- Fix race conditions during uevent processing (bnc#890994)
+
+---



Other differences:
--
++ multipath-tools-0.5.0-sles12.diff.bz2 ++
 2706 lines (skipped)
 between 
/work/SRC/openSUSE:Factory/multipath-tools/multipath-tools-0.5.0-sles12.diff.bz2
 and 
/work/SRC/openSUSE:Factory/.multipath-tools.new/multipath-tools-0.5.0-sles12.diff.bz2

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



commit syslogd for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package syslogd for openSUSE:Factory checked 
in at 2014-08-28 10:01:57

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


Package is "syslogd"

Changes:

--- /work/SRC/openSUSE:Factory/syslogd/syslogd.changes  2014-05-22 
20:38:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.syslogd.new/syslogd.changes 2014-08-28 
10:02:00.0 +0200
@@ -1,0 +2,11 @@
+Fri Aug 22 15:35:06 UTC 2014 - wer...@suse.de
+
+- Add syslogd-rpmlintrc to sourcelist to shut up stupid factory auto
+
+---
+Fri Aug 22 14:37:57 UTC 2014 - m...@suse.de
+
+- Stop syslog.socket in %preun to avoid the daemon we uninstall
+  gets started by a log message due to dependencies (bnc#840815).
+
+---



Other differences:
--
++ syslogd.spec ++
--- /var/tmp/diff_new_pack.XPVlbQ/_old  2014-08-28 10:02:02.0 +0200
+++ /var/tmp/diff_new_pack.XPVlbQ/_new  2014-08-28 10:02:02.0 +0200
@@ -54,6 +54,7 @@
 Source8:syslogd.service
 Source9:syslogd-service-prepare
 Source10:   rc.syslog
+Source11:   syslogd-rpmlintrc
 Patch0: sysklogd-1.4.1.dif
 Patch1: sysklogd-1.4.1-dgram.patch
 Patch2: sysklogd-1.4.1-sparc.patch
@@ -254,6 +255,7 @@
 /usr/bin/systemctl -f enable syslogd.service >/dev/null 2>&1 || :
 
 %preun
+%service_del_preun syslog.socket
 %service_del_preun syslogd.service
 
 %postun


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



commit libpng16 for openSUSE:Factory

2014-08-28 Thread h_root
Hello community,

here is the log from the commit of package libpng16 for openSUSE:Factory 
checked in at 2014-08-28 10:01:53

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


Package is "libpng16"

Changes:

--- /work/SRC/openSUSE:Factory/libpng16/libpng16.changes2014-06-18 
07:50:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.libpng16.new/libpng16.changes   2014-08-28 
10:01:56.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 22 05:55:11 UTC 2014 - pgaj...@suse.com
+
+- updated to 1.6.13: a "cleanup" release that have no security
+  fixes or new features.
+
+---

Old:

  libpng-1.6.12.tar.xz
  libpng-1.6.12.tar.xz.asc

New:

  libpng-1.6.13.tar.xz
  libpng-1.6.13.tar.xz.asc



Other differences:
--
++ libpng16.spec ++
--- /var/tmp/diff_new_pack.rsTGmW/_old  2014-08-28 10:01:57.0 +0200
+++ /var/tmp/diff_new_pack.rsTGmW/_new  2014-08-28 10:01:57.0 +0200
@@ -19,7 +19,7 @@
 #
 %define major   1
 %define minor   6
-%define micro   12
+%define micro   13
 %define branch  %{major}%{minor}
 %define libname libpng%{branch}-%{branch}
 

++ libpng-1.6.12.tar.xz -> libpng-1.6.13.tar.xz ++
 2415 lines of diff (skipped)


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