commit hwinfo for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package hwinfo for openSUSE:Factory checked 
in at 2015-06-04 08:50:10

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


Package is hwinfo

Changes:

--- /work/SRC/openSUSE:Factory/hwinfo/hwinfo.changes2015-03-03 
11:11:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.hwinfo.new/hwinfo.changes   2015-06-04 
08:50:11.0 +0200
@@ -1,0 +2,13 @@
+Wed Jun  3 10:11:00 CEST 2015 - snw...@suse.com
+
+- bugzilla for all this: bsc#913360
+- do not print anything to the console
+- Collect and print Week of Manufacture EDID data
+- increase monitor list size
+- refactor monitor detection
+- dump extra monitor data
+- initial support for detecting monitor via sysfs
+- Makefile - use /usr/lib64 by default on x86_64
+- 21.13
+
+---

Old:

  hwinfo-21.12.tar.xz

New:

  hwinfo-21.13.tar.xz



Other differences:
--
++ hwinfo.spec ++
--- /var/tmp/diff_new_pack.RMu671/_old  2015-06-04 08:50:12.0 +0200
+++ /var/tmp/diff_new_pack.RMu671/_new  2015-06-04 08:50:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package hwinfo
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -36,7 +36,7 @@
 Group:  Hardware/Other
 # Until migration to github this should be correct url
 Url:http://gitorious.org/opensuse/hwinfo
-Version:21.12
+Version:21.13
 Release:0
 Source: %{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ hwinfo-21.12.tar.xz - hwinfo-21.13.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hwinfo-21.12/Makefile new/hwinfo-21.13/Makefile
--- old/hwinfo-21.12/Makefile   2015-02-27 10:26:03.0 +0100
+++ new/hwinfo-21.13/Makefile   2015-06-03 10:06:24.0 +0200
@@ -2,8 +2,6 @@
 SUBDIRS= src
 TARGETS= hwinfo hwinfo.pc changelog
 CLEANFILES = hwinfo hwinfo.pc hwinfo.static hwscan hwscan.static hwscand 
hwscanqueue doc/libhd doc/*~
-LIBDIR = /usr/lib
-ULIBDIR= $(LIBDIR)
 LIBS   = -lhd
 SLIBS  = -lhd
 TLIBS  = -lhd_tiny
@@ -20,6 +18,13 @@
 
 include Makefile.common
 
+ifeq $(ARCH) x86_64
+LIBDIR = /usr/lib64
+else
+LIBDIR = /usr/lib
+endif
+ULIBDIR= $(LIBDIR)
+
 # ia64
 ifneq ($(filter i386 x86_64, $(ARCH)),)
 SLIBS  += -lx86emu
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hwinfo-21.12/VERSION new/hwinfo-21.13/VERSION
--- old/hwinfo-21.12/VERSION2015-02-27 10:26:03.0 +0100
+++ new/hwinfo-21.13/VERSION2015-06-03 10:06:24.0 +0200
@@ -1 +1 @@
-21.12
+21.13
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hwinfo-21.12/changelog new/hwinfo-21.13/changelog
--- old/hwinfo-21.12/changelog  2015-02-27 10:26:03.0 +0100
+++ new/hwinfo-21.13/changelog  2015-06-03 10:06:24.0 +0200
@@ -1,3 +1,12 @@
+2015-06-03:21.13
+   - do not print anything to the console
+   - Collect and print Week of Manufacture EDID data
+   - increase monitor list size
+   - refactor monitor detection
+   - dump extra monitor data
+   - initial support for detecting monitor via sysfs
+   - Makefile - use /usr/lib64 by default on x86_64
+
 2015-02-26:21.12
- Update aarch64 cpuinfo parser to handle post-3.19 format
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hwinfo-21.12/src/hd/drm.c 
new/hwinfo-21.13/src/hd/drm.c
--- old/hwinfo-21.12/src/hd/drm.c   1970-01-01 01:00:00.0 +0100
+++ new/hwinfo-21.13/src/hd/drm.c   2015-06-03 10:06:24.0 +0200
@@ -0,0 +1,14 @@
+
+
+#include fcntl.h
+
+#include hd.h
+#include hd_int.h
+
+int is_kms_active(hd_data_t *hd_data) {
+  int kms = open(/sys/class/drm/card0, O_RDONLY)  0;
+  ADD2LOG(  KMS detected: %d\n, kms);
+
+  return kms; 
+}
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hwinfo-21.12/src/hd/drm.h 
new/hwinfo-21.13/src/hd/drm.h
--- old/hwinfo-21.12/src/hd/drm.h   1970-01-01 01:00:00.0 +0100
+++ new/hwinfo-21.13/src/hd/drm.h   2015-06-03 10:06:24.0 +0200
@@ -0,0 +1,8 @@
+
+#ifndef DRM_H
+#define DRM_H
+
+int is_kms_active(hd_data_t *hd_data);
+
+#endif 

commit cmake for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package cmake for openSUSE:Factory checked 
in at 2015-06-04 08:57:34

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


Package is cmake

Changes:

--- /work/SRC/openSUSE:Factory/cmake/cmake-gui.changes  2015-04-22 
01:10:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.cmake.new/cmake-gui.changes 2015-06-04 
08:57:35.0 +0200
@@ -1,0 +2,10 @@
+Tue Jun  2 06:54:23 UTC 2015 - f...@grueninger.de
+
+- Update to 3.2.3
+  Makefile: Workaround mingw32-make trailing backslash trouble (#15546)
+  Makefile: Fix compilation after parent commit was backported  
+  InstallRequiredSystemLibraries: Update for VS 2015 (#15552)
+  Fix assertion failure on unmatched foreach in function (#15572)
+  ctest_build: Fix regression in GNU make error message matching
+
+---
--- /work/SRC/openSUSE:Factory/cmake/cmake.changes  2015-05-20 
23:40:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.cmake.new/cmake.changes 2015-06-04 
08:57:35.0 +0200
@@ -1,0 +2,10 @@
+Tue Jun  2 06:55:04 UTC 2015 - f...@grueninger.de
+
+- Update to 3.2.3
+  Makefile: Workaround mingw32-make trailing backslash trouble (#15546)
+  Makefile: Fix compilation after parent commit was backported  
+  InstallRequiredSystemLibraries: Update for VS 2015 (#15552)
+  Fix assertion failure on unmatched foreach in function (#15572)
+  ctest_build: Fix regression in GNU make error message matching
+
+---

Old:

  cmake-3.2.2.tar.gz

New:

  cmake-3.2.3.tar.gz



Other differences:
--
++ cmake-gui.spec ++
--- /var/tmp/diff_new_pack.C9WkJK/_old  2015-06-04 08:57:37.0 +0200
+++ /var/tmp/diff_new_pack.C9WkJK/_new  2015-06-04 08:57:37.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   cmake-gui
-Version:3.2.2
+Version:3.2.3
 Release:0
 Summary:CMake graphical user interface
 License:BSD-3-Clause

cmake.spec: same change
++ cmake-3.2.2.tar.gz - cmake-3.2.3.tar.gz ++
/work/SRC/openSUSE:Factory/cmake/cmake-3.2.2.tar.gz 
/work/SRC/openSUSE:Factory/.cmake.new/cmake-3.2.3.tar.gz differ: char 5, line 1




commit btrfsprogs for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package btrfsprogs for openSUSE:Factory 
checked in at 2015-06-04 08:58:52

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


Package is btrfsprogs

Changes:

--- /work/SRC/openSUSE:Factory/btrfsprogs/btrfsprogs.changes2015-05-02 
17:30:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.btrfsprogs.new/btrfsprogs.changes   
2015-06-04 08:58:53.0 +0200
@@ -1,0 +2,5 @@
+Tue Jun  2 07:57:43 UTC 2015 - antoine.belv...@laposte.net
+
+- Install bash completion for btrfs.
+
+---



Other differences:
--
++ btrfsprogs.spec ++
--- /var/tmp/diff_new_pack.0mWQRc/_old  2015-06-04 08:58:54.0 +0200
+++ /var/tmp/diff_new_pack.0mWQRc/_new  2015-06-04 08:58:54.0 +0200
@@ -123,6 +123,9 @@
 find %{buildroot} -type f -name *.la -delete -print
 # don't install .a for now
 rm -f %{buildroot}/%{_libdir}/*.a
+# bash completion
+install -m 0755 -d %{buildroot}/%{_datadir}/bash-completion/completions
+install -m 0644 btrfs-completion 
%{buildroot}/%{_datadir}/bash-completion/completions/btrfs
 
 %if 0%{!?for_debugging:1}
 DEBUG_FILES=/sbin/btrfs-find-root
@@ -202,6 +205,9 @@
 %{_mandir}/man8/btrfs-scrub.8.gz
 %{_mandir}/man8/btrfs-send.8.gz
 %{_mandir}/man8/btrfs-subvolume.8.gz
+%dir %{_datadir}/bash-completion
+%dir %{_datadir}/bash-completion/completions
+%{_datadir}/bash-completion/completions/btrfs
 
 %if 0%{?for_debugging:1}
 /sbin/btrfs-find-root




commit snapper for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package snapper for openSUSE:Factory checked 
in at 2015-06-04 09:03:13

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


Package is snapper

Changes:

--- /work/SRC/openSUSE:Factory/snapper/snapper.changes  2015-05-29 
09:54:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.snapper.new/snapper.changes 2015-06-04 
09:03:14.0 +0200
@@ -1,0 +2,5 @@
+Tue Jun 02 14:55:07 CEST 2015 - aschn...@suse.de
+
+- added error message for invalid locale setting (see bsc#933241)
+
+---



Other differences:
--
++ snapper-0.2.7.tar.bz2 ++
 25511 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/snapper-0.2.7/client/snapper.cc new/snapper-0.2.7/client/snapper.cc
--- old/snapper-0.2.7/client/snapper.cc 2015-05-27 09:59:22.0 +0200
+++ new/snapper-0.2.7/client/snapper.cc 2015-06-02 15:07:06.0 +0200
@@ -1587,7 +1587,15 @@
 int
 main(int argc, char** argv)
 {
-locale::global(locale());
+try
+{
+   locale::global(locale());
+}
+catch (const runtime_error e)
+{
+   cerr  Failed to set locale. Fix your system.  endl;
+   exit (EXIT_FAILURE);
+}
 
 setLogDo(log_do);
 setLogQuery(log_query);
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/snapper-0.2.7/compile new/snapper-0.2.7/compile
--- old/snapper-0.2.7/compile   2015-05-27 10:11:41.0 +0200
+++ new/snapper-0.2.7/compile   1970-01-01 01:00:00.0 +0100
@@ -1,347 +0,0 @@
-#! /bin/sh
-# Wrapper for compilers which do not understand '-c -o'.
-
-scriptversion=2012-10-14.11; # UTC
-
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
-# Written by Tom Tromey tro...@cygnus.com.
-#
-# 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, or (at your option)
-# any later version.
-#
-# This program 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 program.  If not, see http://www.gnu.org/licenses/.
-
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-# This file is maintained in Automake, please report
-# bugs to bug-autom...@gnu.org or send patches to
-# automake-patc...@gnu.org.
-
-nl='
-'
-
-# We need space, tab and new line, in precisely that order.  Quoting is
-# there to prevent tools from complaining about whitespace usage.
-IFS=$nl
-
-file_conv=
-
-# func_file_conv build_file lazy
-# Convert a $build file to $host form and store it in $file
-# Currently only supports Windows hosts. If the determined conversion
-# type is listed in (the comma separated) LAZY, no conversion will
-# take place.
-func_file_conv ()
-{
-  file=$1
-  case $file in
-/ | /[!/]*) # absolute file, and not a UNC file
-  if test -z $file_conv; then
-   # lazily determine how to convert abs files
-   case `uname -s` in
- MINGW*)
-   file_conv=mingw
-   ;;
- CYGWIN*)
-   file_conv=cygwin
-   ;;
- *)
-   file_conv=wine
-   ;;
-   esac
-  fi
-  case $file_conv/,$2, in
-   *,$file_conv,*)
- ;;
-   mingw/*)
- file=`cmd //C echo $file  | sed -e 's/\(.*\)  *$/\1/'`
- ;;
-   cygwin/*)
- file=`cygpath -m $file || echo $file`
- ;;
-   wine/*)
- file=`winepath -w $file || echo $file`
- ;;
-  esac
-  ;;
-  esac
-}
-
-# func_cl_dashL linkdir
-# Make cl look for libraries in LINKDIR
-func_cl_dashL ()
-{
-  func_file_conv $1
-  if 

commit datovka for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2015-06-04 09:04:49

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


Package is datovka

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2015-04-07 
09:29:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2015-06-04 
09:04:50.0 +0200
@@ -1,0 +2,6 @@
+Wed Jun  3 10:11:36 UTC 2015 - tchva...@suse.com
+
+- Version bump to 4.3.0:
+  * No obvious changelog apart from mentioning bugfixes
+
+---

Old:

  datovka-4.2.0-src.tar.xz

New:

  datovka-4.3.0-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.R88MX5/_old  2015-06-04 09:04:51.0 +0200
+++ /var/tmp/diff_new_pack.R88MX5/_new  2015-06-04 09:04:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.2.0
+Version:4.3.0
 Release:0
 Summary:Library to access Czech eGov system \Datove schranky\
 License:LGPL-2.0+

++ datovka-4.2.0-src.tar.xz - datovka-4.3.0-src.tar.xz ++
 18452 lines of diff (skipped)




commit kdelibs4 for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2015-06-04 09:50:06

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


Package is kdelibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes
2015-05-15 09:03:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2015-06-04 09:50:07.0 +0200
@@ -2 +2,9 @@
-Mon May 11 10:40:38 UTC 2015 - tittiatc...@gmail.com
+Sat May 30 13:18:20 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.9
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---
+Mon May 11 10:40:31 UTC 2015 - tittiatc...@gmail.com
@@ -10 +18,9 @@
-Sat Apr 11 14:03:06 UTC 2015 - tittiatc...@gmail.com
+Mon May 11 10:39:34 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.1
+   * KDE Applications 15.04.1
+   * https://www.kde.org/announcements/announce-applications-15.04.1.php
+
+
+---
+Sat Apr 11 14:01:47 UTC 2015 - tittiatc...@gmail.com
@@ -17 +33 @@
-Tue Mar  3 10:10:38 UTC 2015 - tittiatc...@gmail.com
+Tue Mar  3 10:10:28 UTC 2015 - tittiatc...@gmail.com
@@ -24 +40 @@
-Sun Feb  1 10:19:02 UTC 2015 - tittiatc...@gmail.com
+Sun Feb  1 10:18:53 UTC 2015 - tittiatc...@gmail.com
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes2015-05-15 
09:03:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2015-06-04 
09:50:07.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 13:18:20 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.9
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdelibs-4.14.8.tar.xz

New:

  kdelibs-4.14.9.tar.xz



Other differences:
--
++ kdelibs4-apidocs.spec ++
--- /var/tmp/diff_new_pack.SUAMLy/_old  2015-06-04 09:50:09.0 +0200
+++ /var/tmp/diff_new_pack.SUAMLy/_new  2015-06-04 09:50:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdelibs4-apidocs
-Version:4.14.8
+Version:4.14.9
 Release:0
 Summary:KDE 4 API documentation
 License:LGPL-2.1+

++ kdelibs4.spec ++
--- /var/tmp/diff_new_pack.SUAMLy/_old  2015-06-04 09:50:09.0 +0200
+++ /var/tmp/diff_new_pack.SUAMLy/_new  2015-06-04 09:50:09.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:   kdelibs4
-Version:4.14.8
+Version:4.14.9
 Release:0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4

++ kdelibs-4.14.8.tar.xz - kdelibs-4.14.9.tar.xz ++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.8.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.9.tar.xz differ: char 27, 
line 1





commit libzypp for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory checked 
in at 2015-06-04 08:53:24

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


Package is libzypp

Changes:

--- /work/SRC/openSUSE:Factory/libzypp/libzypp.changes  2015-05-25 
23:07:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.libzypp.new/libzypp.changes 2015-06-04 
08:53:25.0 +0200
@@ -1,0 +2,13 @@
+Wed Jun  3 13:00:59 CEST 2015 - m...@suse.de
+
+- Enhance solv.idx file handling to support zypper bash completion
+- Fix SSL client certificate authentication via URL option 
+  ssl_clientcert/ssl_clientkey (bnc#932393)
+- version 15.4.0 (3)
+
+---
+Thu May 28 01:13:23 CEST 2015 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---

Old:

  libzypp-15.3.0.tar.bz2

New:

  libzypp-15.4.0.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.LarlNf/_old  2015-06-04 08:53:26.0 +0200
+++ /var/tmp/diff_new_pack.LarlNf/_new  2015-06-04 08:53:26.0 +0200
@@ -19,7 +19,7 @@
 %define force_gcc_46 0
 
 Name:   libzypp
-Version:15.3.0
+Version:15.4.0
 Release:0
 Url:git://gitorious.org/opensuse/libzypp.git
 Summary:Package, Patch, Pattern, and Product Management

++ libzypp-15.3.0.tar.bz2 - libzypp-15.4.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.3.0/VERSION.cmake 
new/libzypp-15.4.0/VERSION.cmake
--- old/libzypp-15.3.0/VERSION.cmake2015-05-24 18:20:17.0 +0200
+++ new/libzypp-15.4.0/VERSION.cmake2015-06-03 13:04:17.0 +0200
@@ -60,9 +60,9 @@
 #
 SET(LIBZYPP_MAJOR 15)
 SET(LIBZYPP_COMPATMINOR 3)
-SET(LIBZYPP_MINOR 3)
+SET(LIBZYPP_MINOR 4)
 SET(LIBZYPP_PATCH 0)
 #
-# LAST RELEASED: 15.3.0 (3)
+# LAST RELEASED: 15.4.0 (3)
 # (The number in parenthesis is LIBZYPP_COMPATMINOR)
 #===
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.3.0/package/libzypp.changes 
new/libzypp-15.4.0/package/libzypp.changes
--- old/libzypp-15.3.0/package/libzypp.changes  2015-05-24 18:20:17.0 
+0200
+++ new/libzypp-15.4.0/package/libzypp.changes  2015-06-03 13:04:17.0 
+0200
@@ -1,4 +1,17 @@
 ---
+Wed Jun  3 13:00:59 CEST 2015 - m...@suse.de
+
+- Enhance solv.idx file handling to support zypper bash completion
+- Fix SSL client certificate authentication via URL option 
+  ssl_clientcert/ssl_clientkey (bnc#932393)
+- version 15.4.0 (3)
+
+---
+Thu May 28 01:13:23 CEST 2015 - m...@suse.de
+
+- Update zypp-po.tar.bz2
+
+---
 Sun May 24 18:17:38 CEST 2015 - m...@suse.de
 
 - Downloader: Accept unsigned repository if pkgGpgCheck is ON.
Files old/libzypp-15.3.0/po/zypp-po.tar.bz2 and 
new/libzypp-15.4.0/po/zypp-po.tar.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-15.3.0/zypp/RepoManager.cc 
new/libzypp-15.4.0/zypp/RepoManager.cc
--- old/libzypp-15.3.0/zypp/RepoManager.cc  2015-05-13 14:04:46.0 
+0200
+++ new/libzypp-15.4.0/zypp/RepoManager.cc  2015-06-03 13:04:17.0 
+0200
@@ -1188,8 +1188,14 @@
   if ( cache_status == raw_metadata_status )
   {
 MIL  info.alias()   cache is up to date with metadata.  endl;
-if ( policy == BuildIfNeeded ) {
-  return;
+if ( policy == BuildIfNeeded )
+   {
+ // On the fly add missing solv.idx files for bash completion.
+ const Pathname  base = solv_path_for_repoinfo( _options, info);
+ if ( ! PathInfo(base/solv.idx).isExist() )
+   sat::updateSolvFileIndex( base/solv );
+
+ return;
 }
 else {
   MIL  info.alias()   cache rebuild is forced  endl;
@@ -1776,6 +1782,14 @@
 newinfo.dumpAsIniOn(file);
   }
 
+  if ( toedit.enabled()  !newinfo.enabled() )
+  {
+   // On the fly remove solv.idx files for bash completion if a repo gets 
disabled.
+   const Pathname  solvidx = solv_path_for_repoinfo(_options, 
newinfo)/solv.idx;
+   if ( PathInfo(solvidx).isExist() )
+ filesystem::unlink( solvidx );
+  }
+
   newinfo.setFilepath(toedit.filepath());
   reposManip().erase(toedit);
   reposManip().insert(newinfo);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit patterns-openSUSE for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package patterns-openSUSE for 
openSUSE:Factory checked in at 2015-06-04 08:55:31

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


Package is patterns-openSUSE

Changes:

--- /work/SRC/openSUSE:Factory/patterns-openSUSE/patterns-openSUSE.changes  
2015-05-11 19:33:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.patterns-openSUSE.new/patterns-openSUSE.changes 
2015-06-04 08:55:33.0 +0200
@@ -1,0 +2,6 @@
+Wed Jun  3 12:15:46 UTC 2015 - tittiatc...@gmail.com
+
+- Specifically obsolete the kdebase4-workspace-devel package 
+  by the kde_plasma pattern to prevent issues during an upgrade
+
+---



Other differences:
--
++ patterns-openSUSE.spec ++
--- /var/tmp/diff_new_pack.jfZdTN/_old  2015-06-04 08:55:33.0 +0200
+++ /var/tmp/diff_new_pack.jfZdTN/_new  2015-06-04 08:55:34.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   patterns-openSUSE
-Version:20150505
+Version:20150603
 Release:0
 Summary:Patterns for Installation (full ftp tree)
 License:MIT
@@ -2765,6 +2765,8 @@
 Obsoletes:  patterns-openSUSE-kde4_pure  %{version}
 Obsoletes:  patterns-openSUSE-plasma5_basis  %{version}
 Provides:   patterns-openSUSE-plasma5_basis = %{version}
+# Obsolete the kdebase4-workspace-devel package specifically to prevent 
upgrade issues
+Obsoletes:  kdebase4-workspace-devel
 Requires:   pattern() = basesystem
 Requires:   pattern() = x11
 # from data/KDE4-BASIS




commit zypper for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package zypper for openSUSE:Factory checked 
in at 2015-06-04 08:54:27

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.changes2015-05-25 
23:08:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.zypper.new/zypper.changes   2015-06-04 
08:54:28.0 +0200
@@ -1,0 +2,20 @@
+Wed Jun  3 13:05:29 CEST 2015 - m...@suse.de
+
+- Tab completion for package names in install+remove+update 
+  commands (bnc#928650)
+- Adapt enterprise product detection (bnc#933277)
+- removerepo: Warn user that deleting a service repo is a volatile 
+  change (bnc#929990)
+- version 1.12.3
+
+---
+Sun May 31 01:13:12 CEST 2015 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---
+Thu May 28 01:14:16 CEST 2015 - m...@suse.de
+
+- Update zypper-po.tar.bz2
+
+---

Old:

  zypper-1.12.2.tar.bz2

New:

  zypper-1.12.3.tar.bz2



Other differences:
--
++ zypper.spec ++
--- /var/tmp/diff_new_pack.OLr1wx/_old  2015-06-04 08:54:29.0 +0200
+++ /var/tmp/diff_new_pack.OLr1wx/_new  2015-06-04 08:54:29.0 +0200
@@ -22,7 +22,7 @@
 BuildRequires:  cmake = 2.4.6
 BuildRequires:  gcc-c++ = 4.7
 BuildRequires:  gettext-devel = 0.15
-BuildRequires:  libzypp-devel = 15.3.0
+BuildRequires:  libzypp-devel = 15.3.1
 BuildRequires:  readline-devel = 5.1
 Requires:   procps
 %if 0%{?suse_version}
@@ -33,7 +33,7 @@
 Summary:Command line software manager using libzypp
 License:GPL-2.0+
 Group:  System/Packages
-Version:1.12.2
+Version:1.12.3
 Release:0
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ zypper-1.12.2.tar.bz2 - zypper-1.12.3.tar.bz2 ++
/work/SRC/openSUSE:Factory/zypper/zypper-1.12.2.tar.bz2 
/work/SRC/openSUSE:Factory/.zypper.new/zypper-1.12.3.tar.bz2 differ: char 11, 
line 1




commit ntfs-3g_ntfsprogs for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ntfs-3g_ntfsprogs for 
openSUSE:Factory checked in at 2015-06-04 09:02:07

Comparing /work/SRC/openSUSE:Factory/ntfs-3g_ntfsprogs (Old)
 and  /work/SRC/openSUSE:Factory/.ntfs-3g_ntfsprogs.new (New)


Package is ntfs-3g_ntfsprogs

Changes:

--- /work/SRC/openSUSE:Factory/ntfs-3g_ntfsprogs/ntfs-3g_ntfsprogs.changes  
2015-02-23 13:12:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.ntfs-3g_ntfsprogs.new/ntfs-3g_ntfsprogs.changes 
2015-06-04 09:02:08.0 +0200
@@ -1,0 +2,18 @@
+Tue Jun  2 12:19:03 UTC 2015 - idon...@suse.com
+
+- Update to STABLE Version 2015.3.14 (March 31, 2015)
+ntfs-3g: Fixed inserting a new ACL after wiping out by chkdsk
+ntfs-3g: Fixed Windows-type inheritance
+ntfs-3g: Fixed ignoring the umask mount option when permissions are used
+ntfs-3g: Fixed checking permissions when Posix ACLs are compiled in but 
not enabled
+ntfs-3g: Disabled option remove_hiberfile on read-only mounts
+ntfs-3g: Implemented an extended attribute to get/set EAs
+ntfs-3g: Avoid full runlist updating in more situations
+ntfs-3g: Update ctime after setting an ACL
+ntfs-3g: Use MFT record 15 for the first extent to MFT:DATA
+ntfs-3g: Ignore the sloppy mount option (-s)
+ntfs-3g: Implemented FITRIM (fstrim) ioctl
+ntfs-3g: Reengineered the compression algorithm
+ntfsprogs: Added manuals for ntfsdecrypt, ntfswipe, ntfstruncate and 
ntfsfallocate
+
+---

Old:

  ntfs-3g_ntfsprogs-2014.2.15.tgz

New:

  ntfs-3g_ntfsprogs-2015.3.14.tgz



Other differences:
--
++ ntfs-3g_ntfsprogs.spec ++
--- /var/tmp/diff_new_pack.USUu2R/_old  2015-06-04 09:02:09.0 +0200
+++ /var/tmp/diff_new_pack.USUu2R/_new  2015-06-04 09:02:09.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ntfs-3g_ntfsprogs
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,13 +16,13 @@
 #
 
 
-%define soname 85
+%define soname 86
 
 Name:   ntfs-3g_ntfsprogs
 Summary:NTFS Support in Userspace
 License:GPL-2.0+
 Group:  System/Filesystems
-Version:2014.2.15
+Version:2015.3.14
 Release:0
 Source: http://tuxera.com/opensource/%{name}-%{version}.tgz
 Source2:21-storage-ntfs-3g.fdi
@@ -206,17 +206,21 @@
 %{_bindir}/ntfsls
 %{_mandir}/man8/mkfs.ntfs.8%{?ext_man}
 %{_mandir}/man8/mkntfs.8%{?ext_man}
+%{_mandir}/man8/ntfsfallocate.8%{?ext_man}
 %{_mandir}/man8/ntfscat.8%{?ext_man}
 %{_mandir}/man8/ntfsclone.8%{?ext_man}
 %{_mandir}/man8/ntfscluster.8%{?ext_man}
 %{_mandir}/man8/ntfscmp.8%{?ext_man}
 %{_mandir}/man8/ntfscp.8%{?ext_man}
+%{_mandir}/man8/ntfsdecrypt.8%{?ext_man}
 %{_mandir}/man8/ntfsfix.8%{?ext_man}
 %{_mandir}/man8/ntfsinfo.8%{?ext_man}
 %{_mandir}/man8/ntfslabel.8%{?ext_man}
 %{_mandir}/man8/ntfsls.8%{?ext_man}
 %{_mandir}/man8/ntfsprogs.8%{?ext_man}
 %{_mandir}/man8/ntfsresize.8%{?ext_man}
+%{_mandir}/man8/ntfstruncate.8%{?ext_man}
 %{_mandir}/man8/ntfsundelete.8%{?ext_man}
+%{_mandir}/man8/ntfswipe.8%{?ext_man}
 
 %changelog


++ ntfs-3g_ntfsprogs-2014.2.15.tgz - ntfs-3g_ntfsprogs-2015.3.14.tgz ++
 37403 lines of diff (skipped)




commit ovmf for openSUSE:Factory:NonFree

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ovmf for openSUSE:Factory:NonFree 
checked in at 2015-06-04 09:05:40

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


Package is ovmf

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/ovmf/ovmf.changes2015-05-29 
11:45:56.0 +0200
+++ /work/SRC/openSUSE:Factory:NonFree/.ovmf.new/ovmf.changes   2015-06-04 
09:05:43.0 +0200
@@ -1,0 +2,38 @@
+Wed Jun  3 09:51:38 UTC 2015 - g...@suse.com
+
+- Update to R17553
+  + MdeModulePkg/AtaAtapiPassThru: ensure PRDT of IDE is in 64K
+boundary
+  + ArmPkg/BdsLib: Fixed TFTP when there are directories in the
+name
+  + Renamed ArmPlatformPkg/ArmVirtualizationPkg into ArmVirtPkg
+  + ArmPkg: Expand AArch64 address width to 48 bits
+  + MdeModulePkg:Support delete key
+  + MdeModulePkg/AtaAtapiPassThruDxe: Support 4K bytes block size
+HDDs
+  + MdeModulePkg: Fix potential buffer overflow issues
+  + Update for OEM reserved memory type
+- Update ArmPlatformPkg patches
+  + 0001-ArmPlatformPkg-ArmVirtualizationPkg-enable-DEBUG_VER.patch
+  + 0002-ArmPlatformPkg-Bds-generate-ESP-Image-boot-option-if.patch
+  + 0003-ArmPlatformPkg-Bds-check-for-other-defaults-too-if-u.patch
+  + 0004-ArmPlatformPkg-ArmVirtualizationPkg-auto-detect-boot.patch
+  + 0005-ArmPlatformPkg-Bds-initialize-ConIn-ConOut-ErrOut-be.patch
+  + 0006-ArmPlatformPkg-Bds-let-FindCandidate-search-all-file.patch
+  + 0007-ArmPlatformPkg-Bds-FindCandidateOnHandle-log-full-de.patch
+  + 0008-ArmPlatformPkg-Bds-fall-back-to-Boot-Menu-when-no-de.patch
+  + 0009-ArmPlatformPkg-Bds-always-connect-drivers-before-loo.patch
+  + 0010-avoid-potentially-uninitialized-variable.diff
+- Remove the prefix of the arm patches
+  + ovmf-0001-ArmPlatformPkg-ArmVirtualizationPkg-enable-DEBUG_VER.patch
+  + ovmf-0002-ArmPlatformPkg-Bds-generate-ESP-Image-boot-option-if.patch
+  + ovmf-0003-ArmPlatformPkg-Bds-check-for-other-defaults-too-if-u.patch
+  + ovmf-0004-ArmPlatformPkg-ArmVirtualizationPkg-auto-detect-boot.patch
+  + ovmf-0005-ArmPlatformPkg-Bds-initialize-ConIn-ConOut-ErrOut-be.patch
+  + ovmf-0006-ArmPlatformPkg-Bds-let-FindCandidate-search-all-file.patch
+  + ovmf-0007-ArmPlatformPkg-Bds-FindCandidateOnHandle-log-full-de.patch
+  + ovmf-0008-ArmPlatformPkg-Bds-fall-back-to-Boot-Menu-when-no-de.patch
+  + ovmf-0009-ArmPlatformPkg-Bds-always-connect-drivers-before-loo.patch
+  + ovmf-0010-avoid-potentially-uninitialized-variable.diff
+
+---

Old:

  ovmf-0.1+svn17446.tar.xz
  ovmf-0001-ArmPlatformPkg-ArmVirtualizationPkg-enable-DEBUG_VER.patch
  ovmf-0002-ArmPlatformPkg-Bds-generate-ESP-Image-boot-option-if.patch
  ovmf-0003-ArmPlatformPkg-Bds-check-for-other-defaults-too-if-u.patch
  ovmf-0004-ArmPlatformPkg-ArmVirtualizationPkg-auto-detect-boot.patch
  ovmf-0005-ArmPlatformPkg-Bds-initialize-ConIn-ConOut-ErrOut-be.patch
  ovmf-0006-ArmPlatformPkg-Bds-let-FindCandidate-search-all-file.patch
  ovmf-0007-ArmPlatformPkg-Bds-FindCandidateOnHandle-log-full-de.patch
  ovmf-0008-ArmPlatformPkg-Bds-fall-back-to-Boot-Menu-when-no-de.patch
  ovmf-0009-ArmPlatformPkg-Bds-always-connect-drivers-before-loo.patch
  ovmf-0010-avoid-potentially-uninitialized-variable.diff

New:

  0001-ArmPlatformPkg-ArmVirtualizationPkg-enable-DEBUG_VER.patch
  0002-ArmPlatformPkg-Bds-generate-ESP-Image-boot-option-if.patch
  0003-ArmPlatformPkg-Bds-check-for-other-defaults-too-if-u.patch
  0004-ArmPlatformPkg-ArmVirtualizationPkg-auto-detect-boot.patch
  0005-ArmPlatformPkg-Bds-initialize-ConIn-ConOut-ErrOut-be.patch
  0006-ArmPlatformPkg-Bds-let-FindCandidate-search-all-file.patch
  0007-ArmPlatformPkg-Bds-FindCandidateOnHandle-log-full-de.patch
  0008-ArmPlatformPkg-Bds-fall-back-to-Boot-Menu-when-no-de.patch
  0009-ArmPlatformPkg-Bds-always-connect-drivers-before-loo.patch
  0010-avoid-potentially-uninitialized-variable.diff
  ovmf-0.1+svn17553.tar.xz



Other differences:
--
++ ovmf.spec ++
--- /var/tmp/diff_new_pack.iaw2BT/_old  2015-06-04 09:05:44.0 +0200
+++ /var/tmp/diff_new_pack.iaw2BT/_new  2015-06-04 09:05:44.0 +0200
@@ -24,7 +24,7 @@
 Summary:Open Virtual Machine Firmware
 License:BSD-2-Clause
 Group:  System/Emulators/PC
-Version:0.1+svn17446
+Version:0.1+svn17553
 Release:0
 Source0:%{name}-%{version}.tar.xz
 Source1:https://www.openssl.org/source/openssl-0.9.8zf.tar.gz
@@ -46,25 +46,25 @@
 Patch2: %{name}-embed-default-keys.patch
 Patch3: %{name}-gdb-symbols.patch
 # PATCH-FIX-OPENSUSE 
0001-ArmPlatformPkg-ArmVirtualizationPkg-enable-DEBUG_VER.patch bnc#123456 

commit python-futures for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package python-futures for openSUSE:Factory 
checked in at 2015-06-04 09:05:22

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


Package is python-futures

Changes:

--- /work/SRC/openSUSE:Factory/python-futures/python-futures.changes
2015-05-19 23:47:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-futures.new/python-futures.changes   
2015-06-04 09:05:26.0 +0200
@@ -1,0 +2,5 @@
+Wed Jun  3 13:30:09 UTC 2015 - mci...@suse.cz
+
+- Disable tests for SLE 11, the testsuite uses Python 2.7 constructs
+
+---



Other differences:
--
++ python-futures.spec ++
--- /var/tmp/diff_new_pack.1s4PbZ/_old  2015-06-04 09:05:26.0 +0200
+++ /var/tmp/diff_new_pack.1s4PbZ/_new  2015-06-04 09:05:26.0 +0200
@@ -52,7 +52,9 @@
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
 %check
+%if 0%{?suse_version}  1110
 python test_futures.py
+%endif
 
 %files
 %defattr(-,root,root,-)




commit chromium for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2015-06-04 09:05:05

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


Package is chromium

Changes:

--- /work/SRC/openSUSE:Factory/chromium/chromium.changes2015-05-21 
08:39:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2015-06-04 
09:05:16.0 +0200
@@ -1,0 +2,8 @@
+Wed May 27 10:49:49 UTC 2015 - tittiatc...@gmail.com
+
+- Update to Chromium 43.0.2357.81
+  * Bug-fixes:
+- Fixed an issue where sometimes a blank page would print
+- Icons not displaying properly on Linux
+
+---

Old:

  chromium-43.0.2357.65.tar.xz

New:

  chromium-43.0.2357.81.tar.xz



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.ns0yAF/_old  2015-06-04 09:05:25.0 +0200
+++ /var/tmp/diff_new_pack.ns0yAF/_new  2015-06-04 09:05:25.0 +0200
@@ -20,7 +20,7 @@
 %define chromium_system_libs 0
 
 Name:   chromium
-Version:43.0.2357.65
+Version:43.0.2357.81
 Release:0
 Summary:Google's opens source browser project
 License:BSD-3-Clause and LGPL-2.1+


++ chromium-43.0.2357.65.tar.xz - chromium-43.0.2357.81.tar.xz ++
/work/SRC/openSUSE:Factory/chromium/chromium-43.0.2357.65.tar.xz 
/work/SRC/openSUSE:Factory/.chromium.new/chromium-43.0.2357.81.tar.xz differ: 
char 26, line 1





commit spec-cleaner for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package spec-cleaner for openSUSE:Factory 
checked in at 2015-06-04 09:04:32

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


Package is spec-cleaner

Changes:

--- /work/SRC/openSUSE:Factory/spec-cleaner/spec-cleaner.changes
2015-04-18 10:39:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.spec-cleaner.new/spec-cleaner.changes   
2015-06-04 09:04:33.0 +0200
@@ -1,0 +2,9 @@
+Wed Jun  3 09:11:19 UTC 2015 - tchva...@suse.com
+
+- Version bump to 0.7.0:
+  * Various small code cleanups and readability improvemnets
+  * Better macro detection to allow braces in macros
+  * Fix minimal mode appending empty lines in some cases
+  * Various additional bracketing excludes
+
+---

Old:

  spec-cleaner-0.6.9.tar.gz

New:

  spec-cleaner-0.7.0.tar.gz



Other differences:
--
++ spec-cleaner.spec ++
--- /var/tmp/diff_new_pack.upgVi9/_old  2015-06-04 09:04:33.0 +0200
+++ /var/tmp/diff_new_pack.upgVi9/_new  2015-06-04 09:04:33.0 +0200
@@ -20,7 +20,7 @@
 # This is used for Fedora, we need to sync this
 %{!?py3_ver: %define py3_ver %{python3_version}}
 Name:   spec-cleaner
-Version:0.6.9
+Version:0.7.0
 Release:0
 Summary:.spec file cleaner
 License:BSD-3-Clause

++ spec-cleaner-0.6.9.tar.gz - spec-cleaner-0.7.0.tar.gz ++
 2113 lines of diff (skipped)




commit kdepim4-runtime for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdepim4-runtime for openSUSE:Factory 
checked in at 2015-06-04 09:54:45

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


Package is kdepim4-runtime

Changes:

--- /work/SRC/openSUSE:Factory/kdepim4-runtime/kdepim4-runtime.changes  
2015-05-15 09:03:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdepim4-runtime.new/kdepim4-runtime.changes 
2015-06-04 09:54:46.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 13:24:30 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.9
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdepim-runtime-4.14.8.tar.xz

New:

  kdepim-runtime-4.14.9.tar.xz



Other differences:
--
++ kdepim4-runtime.spec ++
--- /var/tmp/diff_new_pack.y7ExTE/_old  2015-06-04 09:54:47.0 +0200
+++ /var/tmp/diff_new_pack.y7ExTE/_new  2015-06-04 09:54:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdepim4-runtime
-Version:4.14.8
+Version:4.14.9
 Release:0
 Summary:Base package of kdepim
 License:LGPL-2.1+

++ kdepim-runtime-4.14.8.tar.xz - kdepim-runtime-4.14.9.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdepim-runtime-4.14.8/CMakeLists.txt 
new/kdepim-runtime-4.14.9/CMakeLists.txt
--- old/kdepim-runtime-4.14.8/CMakeLists.txt2015-05-01 16:10:23.0 
+0200
+++ new/kdepim-runtime-4.14.9/CMakeLists.txt2015-05-28 10:18:16.0 
+0200
@@ -36,7 +36,7 @@
 set(KDEPIM_RUNTIME_DEV_VERSION )
 endif()
 
-set(KDEPIM_RUNTIME_VERSION 4.14.8${KDEPIM_RUNTIME_DEV_VERSION})
+set(KDEPIM_RUNTIME_VERSION 4.14.9${KDEPIM_RUNTIME_DEV_VERSION})
 
 configure_file(kdepim-runtime-version.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/kdepim-runtime-version.h @ONLY)
 
@@ -53,7 +53,7 @@
 include(KDE4Defaults)
 
 # KdepimLibs
-find_package(KdepimLibs 4.14.8)
+find_package(KdepimLibs 4.14.9)
 set_package_properties(KdepimLibs PROPERTIES DESCRIPTION The KDEPIM 
libraries URL http://www.kde.org; TYPE REQUIRED)
 
 #Boost
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdepim-runtime-4.14.8/plugins/akonadi_serializer_microblog.desktop 
new/kdepim-runtime-4.14.9/plugins/akonadi_serializer_microblog.desktop
--- old/kdepim-runtime-4.14.8/plugins/akonadi_serializer_microblog.desktop  
2015-05-01 16:10:23.0 +0200
+++ new/kdepim-runtime-4.14.9/plugins/akonadi_serializer_microblog.desktop  
2015-05-28 10:18:16.0 +0200
@@ -2,7 +2,7 @@
 Name=Microblog Serializer
 Name[ar]=مسلسل التدوين المصغر
 Name[bs]=Siralizator mikrobloga
-Name[ca]=Serialitzador de micro-blog
+Name[ca]=Serialitzador de microblog
 Name[ca@valencia]=Serialitzador de micro-blog
 Name[da]=Serieordning af microblogs
 Name[de]=Microblog-Serialisierung
@@ -48,7 +48,7 @@
 Comment=An Akonadi serializer plugin for Microblog
 Comment[ar]=ملحق مسلسل اكوندا للتدوين المصغر
 Comment[bs]=Akonadi dodatak serializatora za Microblog
-Comment[ca]=Un connector de serialització de l'Akonadi pels micro-blogs
+Comment[ca]=Un connector de serialització de l'Akonadi pels microblogs
 Comment[ca@valencia]=Un connector de serialització de l'Akonadi pels 
micro-blogs
 Comment[da]=Et Akonadi-plugin til serieordning af microblogs
 Comment[de]=Akonadi-Modul zur Serialisierung von Microblog-Objekten




commit kdebindings-smokekde for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdebindings-smokekde for 
openSUSE:Factory checked in at 2015-06-04 09:55:47

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


Package is kdebindings-smokekde

Changes:

--- 
/work/SRC/openSUSE:Factory/kdebindings-smokekde/kdebindings-smokekde.changes
2014-11-19 20:27:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdebindings-smokekde.new/kdebindings-smokekde.changes
   2015-06-04 09:55:47.0 +0200
@@ -1,0 +2,6 @@
+Sat May 30 17:03:24 UTC 2015 - tittiatc...@gmail.com
+
+- Drop the buildrequires for Kate. Kate is now KF5 based and can 
+  no longer be used for the kdebindings
+
+---



Other differences:
--
++ kdebindings-smokekde.spec ++
--- /var/tmp/diff_new_pack.58ibil/_old  2015-06-04 09:55:48.0 +0200
+++ /var/tmp/diff_new_pack.58ibil/_new  2015-06-04 09:55:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdebindings-smokekde
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,7 +26,6 @@
 Url:
https://projects.kde.org/projects/kde/kdebindings/smoke/smokekde
 Source0:smokekde-%{version}.tar.xz
 Patch1: remove_kfile.diff
-BuildRequires:  kate-devel
 BuildRequires:  libjasper-devel
 BuildRequires:  libkde4-devel
 BuildRequires:  libkdepimlibs4-devel




commit linuxrc for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package linuxrc for openSUSE:Factory checked 
in at 2015-06-04 08:51:14

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


Package is linuxrc

Changes:

--- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes  2015-06-01 
09:30:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.linuxrc.new/linuxrc.changes 2015-06-04 
08:51:16.0 +0200
@@ -1,0 +2,10 @@
+Wed Jun  3 11:05:57 CEST 2015 - snw...@suse.com
+
+- some minor corrections
+- added comments  prototypes
+- don't use --real-mode kexec option when booted via uefi
+- reimplement 'boot installed system' option (bsc#906990)
+- menu is directly reachable via systemboot=1 boot option
+- 5.0.44
+
+---

Old:

  linuxrc-5.0.43.tar.xz

New:

  linuxrc-5.0.44.tar.xz



Other differences:
--
++ linuxrc.spec ++
--- /var/tmp/diff_new_pack.z4eEz8/_old  2015-06-04 08:51:17.0 +0200
+++ /var/tmp/diff_new_pack.z4eEz8/_new  2015-06-04 08:51:17.0 +0200
@@ -25,7 +25,7 @@
 Summary:SUSE Installation Program
 License:GPL-3.0+
 Group:  System/Boot
-Version:5.0.43
+Version:5.0.44
 Release:0
 Source: %{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ linuxrc-5.0.43.tar.xz - linuxrc-5.0.44.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.43/VERSION new/linuxrc-5.0.44/VERSION
--- old/linuxrc-5.0.43/VERSION  2015-05-28 09:11:50.0 +0200
+++ new/linuxrc-5.0.44/VERSION  2015-06-03 11:01:55.0 +0200
@@ -1 +1 @@
-5.0.43
+5.0.44
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.43/auto2.c new/linuxrc-5.0.44/auto2.c
--- old/linuxrc-5.0.43/auto2.c  2015-05-28 09:11:50.0 +0200
+++ new/linuxrc-5.0.44/auto2.c  2015-06-03 11:01:55.0 +0200
@@ -24,7 +24,6 @@
 #include window.h
 #include net.h
 #include display.h
-#include rootimage.h
 #include module.h
 #include keyboard.h
 #include file.h
@@ -84,6 +83,13 @@
 while(!inst_update_cd());
   }
 
+  if(config.systemboot) {
+if(!config.win) util_disp_init();
+util_boot_system();
+config.manual = 1;
+return 1;
+  }
+
   if(config.win  !win_old) util_disp_done();
 
   ok = auto2_find_repo();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.43/changelog new/linuxrc-5.0.44/changelog
--- old/linuxrc-5.0.43/changelog2015-05-28 09:11:50.0 +0200
+++ new/linuxrc-5.0.44/changelog2015-06-03 11:01:55.0 +0200
@@ -1,3 +1,10 @@
+2015-06-03:5.0.44
+   - some minor corrections
+   - added comments  prototypes
+   - don't use --real-mode kexec option when booted via uefi
+   - reimplement 'boot installed system' option (bsc #906990)
+   - menu is directly reachable via systemboot=1 boot option
+
 2015-05-27:5.0.43
- Update README.md
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.43/file.c new/linuxrc-5.0.44/file.c
--- old/linuxrc-5.0.43/file.c   2015-05-28 09:11:50.0 +0200
+++ new/linuxrc-5.0.44/file.c   2015-06-03 11:01:55.0 +0200
@@ -31,7 +31,6 @@
 #include net.h
 #include settings.h
 #include auto2.h
-#include rootimage.h
 #include display.h
 #include keyboard.h
 #include url.h
@@ -306,6 +305,7 @@
   { key_defaultinstall, DefaultRepo,kf_cfg + kf_cmd},
   { key_nanny,  nanny,  kf_cfg + kf_cmd_early  },
   { key_vlanid, VLanID, kf_cfg + kf_cmd},
+  { key_systemboot, SystemBoot, kf_cfg + kf_cmd},
 };
 
 static struct {
@@ -1711,6 +1711,10 @@
 }
 break;
 
+  case key_systemboot:
+if(f-is.numeric) config.systemboot = f-nvalue;
+break;
+
   default:
 break;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.43/file.h new/linuxrc-5.0.44/file.h
--- old/linuxrc-5.0.43/file.h   2015-05-28 09:11:50.0 +0200
+++ new/linuxrc-5.0.44/file.h   2015-06-03 11:01:55.0 +0200
@@ -54,7 +54,7 @@
   key_namescheme, key_ptoptions, key_is_ptoption, key_withfcoe, key_digests,
   key_plymouth, key_sslcerts, key_restart, key_restarted, key_autoyast2,
   key_withipoib, key_upgrade, key_ifcfg, key_defaultinstall, key_nanny, 
key_vlanid,
-  key_sshkey
+  key_sshkey, key_systemboot
 } file_key_t;
 
 typedef enum {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit MozillaFirefox for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:Factory 
checked in at 2015-06-04 09:01:02

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


Package is MozillaFirefox

Changes:

--- /work/SRC/openSUSE:Factory/MozillaFirefox/MozillaFirefox.changes
2015-05-20 23:50:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.MozillaFirefox.new/MozillaFirefox.changes   
2015-06-04 09:01:03.0 +0200
@@ -1,0 +2,9 @@
+Sat May 23 21:13:49 UTC 2015 - w...@rosenauer.org
+
+- update to Firefox 38.0.5
+  * Keep track of articles and videos with Pocket
+  * Clean formatting for articles and blog posts with Reader View
+  * Share the active tab or window in a Hello conversation
+- add changes file as source for SRPM (bsc#932142)
+
+---

Old:

  firefox-38.0.1-source.tar.xz
  l10n-38.0.1.tar.xz

New:

  firefox-38.0.5-source.tar.xz
  l10n-38.0.5.tar.xz



Other differences:
--
++ MozillaFirefox.spec ++
--- /var/tmp/diff_new_pack.kI7EHq/_old  2015-06-04 09:01:18.0 +0200
+++ /var/tmp/diff_new_pack.kI7EHq/_new  2015-06-04 09:01:18.0 +0200
@@ -19,9 +19,9 @@
 
 # changed with every update
 %define major 38
-%define mainver %major.0.1
+%define mainver %major.0.5
 %define update_channel release
-%define releasedate 2015051400
+%define releasedate 2015052300
 
 # general build definitions
 %if %{update_channel} != aurora
@@ -131,6 +131,7 @@
 Source13:   spellcheck.js
 Source14:   create-tar.sh
 Source15:   firefox-appdata.xml
+Source16:   MozillaFirefox.changes
 # Gecko/Toolkit
 Patch1: toolkit-download-folder.patch
 Patch2: mozilla-nongnome-proxies.patch


++ compare-locales.tar.xz ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.kI7EHq/_old  2015-06-04 09:01:18.0 +0200
+++ /var/tmp/diff_new_pack.kI7EHq/_new  2015-06-04 09:01:18.0 +0200
@@ -2,8 +2,8 @@
 
 CHANNEL=release
 BRANCH=releases/mozilla-$CHANNEL
-RELEASE_TAG=FIREFOX_38_0_1_RELEASE
-VERSION=38.0.1
+RELEASE_TAG=FIREFOX_38_0_5_RELEASE
+VERSION=38.0.5
 
 # mozilla
 if [ -d mozilla ]; then

++ firefox-38.0.1-source.tar.xz - firefox-38.0.5-source.tar.xz ++
/work/SRC/openSUSE:Factory/MozillaFirefox/firefox-38.0.1-source.tar.xz 
/work/SRC/openSUSE:Factory/.MozillaFirefox.new/firefox-38.0.5-source.tar.xz 
differ: char 26, line 1


++ firefox-kde.patch ++
--- /var/tmp/diff_new_pack.kI7EHq/_old  2015-06-04 09:01:18.0 +0200
+++ /var/tmp/diff_new_pack.kI7EHq/_new  2015-06-04 09:01:18.0 +0200
@@ -1,5 +1,5 @@
 # HG changeset patch
-# Parent  a21f91aa3ed60b4e95b47f45715dfda379dab7c8
+# Parent  db8f62578ee4614fc23c628b523e2bc7ae92ea04
 
 diff --git a/browser/base/content/browser-kde.xul 
b/browser/base/content/browser-kde.xul
 new file mode 100644
@@ -1330,7 +1330,7 @@
  button id=editBookmarkPanelDeleteButton
  class=editBookmarkPanelBottomButton
  label=editBookmark.cancel.label;
-@@ -1228,17 +1228,17 @@
+@@ -1234,17 +1234,17 @@
  
hbox id=full-screen-warning-container hidden=true fadeout=true
  hbox style=width: 100%; pack=center !-- Inner hbox needed due to 
bug 579776. --
@@ -1363,14 +1363,14 @@
  *   content/browser/browser.xul   (content/browser.xul)
 +*   content/browser/browser-kde.xul   
(content/browser-kde.xul)
 +%   override chrome://browser/content/browser.xul 
chrome://browser/content/browser-kde.xul desktop=kde
+ content/browser/browser-pocket-en-US.properties 
(content/browser-pocket-en-US.properties)
+ content/browser/browser-pocket.dtd
(content/browser-pocket.dtd)
+ content/browser/browser-pocket-de.properties  
(content/browser-pocket-de.properties)
+ content/browser/browser-pocket-es-ES.properties 
(content/browser-pocket-es-ES.properties)
+ content/browser/browser-pocket-ja.properties  
(content/browser-pocket-ja.properties)
+ content/browser/browser-pocket-ru.properties  
(content/browser-pocket-ru.properties)
  *   content/browser/browser-tabPreviews.xml   
(content/browser-tabPreviews.xml)
  *   content/browser/chatWindow.xul(content/chatWindow.xul)
- content/browser/content.js(content/content.js)
- content/browser/defaultthemes/1.footer.jpg
(content/defaultthemes/1.footer.jpg)
- content/browser/defaultthemes/1.header.jpg
(content/defaultthemes/1.header.jpg)
- content/browser/defaultthemes/1.icon.jpg  
(content/defaultthemes/1.icon.jpg)
- 

commit kdepim4 for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdepim4 for openSUSE:Factory checked 
in at 2015-06-04 09:53:36

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


Package is kdepim4

Changes:

--- /work/SRC/openSUSE:Factory/kdepim4/kdepim4.changes  2015-05-15 
09:03:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdepim4.new/kdepim4.changes 2015-06-04 
09:53:37.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 13:25:20 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.9
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdepim-4.14.8.tar.xz

New:

  kdepim-4.14.9.tar.xz



Other differences:
--
++ kdepim4.spec ++
--- /var/tmp/diff_new_pack.VmbPuO/_old  2015-06-04 09:53:38.0 +0200
+++ /var/tmp/diff_new_pack.VmbPuO/_new  2015-06-04 09:53:38.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdepim4
-Version:4.14.8
+Version:4.14.9
 Release:0
 Summary:Base package of kdepim
 License:GPL-2.0+ and LGPL-2.1+

++ kdepim-4.14.8.tar.xz - kdepim-4.14.9.tar.xz ++
/work/SRC/openSUSE:Factory/kdepim4/kdepim-4.14.8.tar.xz 
/work/SRC/openSUSE:Factory/.kdepim4.new/kdepim-4.14.9.tar.xz differ: char 27, 
line 1




commit kdebase4-workspace for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-workspace for 
openSUSE:Factory checked in at 2015-06-04 09:52:30

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


Package is kdebase4-workspace

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-workspace/kdebase4-workspace.changes
2015-05-20 23:31:31.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdebase4-workspace.new/kdebase4-workspace.changes   
2015-06-04 09:52:32.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 13:23:44 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.11.20
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kde-workspace-4.11.19.tar.xz

New:

  kde-workspace-4.11.20.tar.xz



Other differences:
--
++ kdebase4-workspace.spec ++
--- /var/tmp/diff_new_pack.hLmTSi/_old  2015-06-04 09:52:33.0 +0200
+++ /var/tmp/diff_new_pack.hLmTSi/_new  2015-06-04 09:52:33.0 +0200
@@ -19,7 +19,7 @@
 %define with_multiseat 1
 
 Name:   kdebase4-workspace
-Version:4.11.19
+Version:4.11.20
 Release:0
 Summary:The KDE Workspace Components
 License:GPL-2.0+

++ kde-workspace-4.11.19.tar.xz - kde-workspace-4.11.20.tar.xz ++
/work/SRC/openSUSE:Factory/kdebase4-workspace/kde-workspace-4.11.19.tar.xz 
/work/SRC/openSUSE:Factory/.kdebase4-workspace.new/kde-workspace-4.11.20.tar.xz 
differ: char 27, line 1






commit libsolv for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package libsolv for openSUSE:Factory checked 
in at 2015-06-04 08:52:19

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


Package is libsolv

Changes:

--- /work/SRC/openSUSE:Factory/libsolv/libsolv.changes  2015-05-07 
08:28:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsolv.new/libsolv.changes 2015-06-04 
08:52:19.0 +0200
@@ -1,0 +2,10 @@
+Tue Jun  2 11:41:10 CEST 2015 - m...@suse.de
+
+- add forgotten sha-512 support to data_skip
+- speed up whatprovides lookup with a new helper array
+- fix dup with allowuninstall
+- improve alreadyinstalled handling of supplements
+- some code cleanup
+- bump version to 0.6.11
+
+---

Old:

  libsolv-0.6.10.tar.bz2

New:

  libsolv-0.6.11.tar.bz2



Other differences:
--
++ libsolv.spec ++
--- /var/tmp/diff_new_pack.7BuqUd/_old  2015-06-04 08:52:20.0 +0200
+++ /var/tmp/diff_new_pack.7BuqUd/_new  2015-06-04 08:52:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libsolv
-Version:0.6.10
+Version:0.6.11
 Release:0
 Url:https://github.com/openSUSE/libsolv
 Source: libsolv-%{version}.tar.bz2

++ libsolv-0.6.10.tar.bz2 - libsolv-0.6.11.tar.bz2 ++
 2851 lines of diff (skipped)




commit parted for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package parted for openSUSE:Factory checked 
in at 2015-06-04 08:59:57

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


Package is parted

Changes:

--- /work/SRC/openSUSE:Factory/parted/parted.changes2015-05-06 
11:18:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.parted.new/parted.changes   2015-06-04 
08:59:58.0 +0200
@@ -1,0 +2,12 @@
+Tue May 26 11:21:37 UTC 2015 - pu...@suse.com
+
+- Remove 'udevadm' from Requires; parted no longer calls 'udevadm
+  settle'
+
+---
+Thu May 21 06:42:51 UTC 2015 - pu...@suse.com
+
+- Add note to specfile to remove parted-resize-alias-to-resizepart.patch
+  compatibility patch once bnc#931765 is resolved.
+
+---



Other differences:
--
++ parted.spec ++
--- /var/tmp/diff_new_pack.EOr4Bm/_old  2015-06-04 08:59:59.0 +0200
+++ /var/tmp/diff_new_pack.EOr4Bm/_new  2015-06-04 08:59:59.0 +0200
@@ -52,11 +52,11 @@
 Patch26:lib-fs-resize-prevent-crash-resizing-FAT16.patch
 Patch27:parted-dont-crash-in-disk_set-when-disk-label-not-found.patch
 Patch28:libparted-device-mapper-uses-512b-sectors.patch
+# Remove following compatibility patch once bnc#931765 is resolved
 Patch29:parted-resize-alias-to-resizepart.patch
 Patch30:libparted-avoid-libdevice-mapper-warnings.patch
 Patch31:parted-do-not-warn-when-shrinking-in-script-mode.patch
 Patch100:   parted-fatresize-autoconf.patch
-Requires:   /sbin/udevadm
 BuildRequires:  check-devel
 BuildRequires:  device-mapper-devel = 1.02.33
 BuildRequires:  e2fsprogs-devel






commit kdepimlibs4 for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdepimlibs4 for openSUSE:Factory 
checked in at 2015-06-04 09:51:21

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


Package is kdepimlibs4

Changes:

--- /work/SRC/openSUSE:Factory/kdepimlibs4/kdepimlibs4.changes  2015-05-15 
09:03:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdepimlibs4.new/kdepimlibs4.changes 
2015-06-04 09:51:22.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 13:20:15 UTC 2015 - tittiatc...@gmail.com
+
+- Update to 4.14.9
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdepimlibs-4.14.8.tar.xz

New:

  kdepimlibs-4.14.9.tar.xz



Other differences:
--
++ kdepimlibs4.spec ++
--- /var/tmp/diff_new_pack.DJWMN7/_old  2015-06-04 09:51:23.0 +0200
+++ /var/tmp/diff_new_pack.DJWMN7/_new  2015-06-04 09:51:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdepimlibs4
-Version:4.14.8
+Version:4.14.9
 Release:0
 Summary:KDE PIM Libraries
 License:LGPL-2.1+

++ kdepimlibs-4.14.8.tar.xz - kdepimlibs-4.14.9.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdepimlibs-4.14.8/CMakeLists.txt 
new/kdepimlibs-4.14.9/CMakeLists.txt
--- old/kdepimlibs-4.14.8/CMakeLists.txt2015-05-05 07:49:31.0 
+0200
+++ new/kdepimlibs-4.14.9/CMakeLists.txt2015-05-28 23:39:40.0 
+0200
@@ -7,7 +7,7 @@
 ### The kdepimlibs version (used e.g. in KdepimLibsConfig.cmake) 
###
 set(KDEPIMLIBS_VERSION_MAJOR 4)
 set(KDEPIMLIBS_VERSION_MINOR 14)
-set(KDEPIMLIBS_VERSION_PATCH 8)
+set(KDEPIMLIBS_VERSION_PATCH 9)
 set(KDEPIMLIBS_VERSION 
${KDEPIMLIBS_VERSION_MAJOR}.${KDEPIMLIBS_VERSION_MINOR}.${KDEPIMLIBS_VERSION_PATCH})
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdepimlibs-4.14.8/akonadi/contact/contactviewer.cpp 
new/kdepimlibs-4.14.9/akonadi/contact/contactviewer.cpp
--- old/kdepimlibs-4.14.8/akonadi/contact/contactviewer.cpp 2015-05-05 
07:49:31.0 +0200
+++ new/kdepimlibs-4.14.9/akonadi/contact/contactviewer.cpp 2015-05-28 
23:39:40.0 +0200
@@ -78,13 +78,18 @@
 void updateView( const QVariantList localCustomFieldDescriptions = 
QVariantList(), const QString addressBookName = QString() )
 {
   static QPixmap defaultPixmap = KIcon( QLatin1String( user-identity ) 
).pixmap( QSize( 100, 100 ) );
-
+  static QPixmap defaultMapPixmap = KIcon( QLatin1String( 
document-open-remote ) ).pixmap( QSize( 16, 16 ) );
+  static QPixmap defaultSmsPixmap = KIcon( IMProtocols::self()-icon( 
QString::fromLatin1( messaging/sms ) ) ).pixmap( QSize( 16, 16 ) );
   mParent-setWindowTitle( i18n( Contact %1, 
mCurrentContact.assembledName() ) );
 
   if ( mCurrentContact.photo().isIntern() ) {
 mBrowser-document()-addResource( QTextDocument::ImageResource,
QUrl( QLatin1String( 
contact_photo ) ),
mCurrentContact.photo().data() );
+  } else if (!mCurrentContact.photo().url().isEmpty()) {
+mBrowser-document()-addResource( QTextDocument::ImageResource,
+   QUrl( QLatin1String( 
contact_photo ) ),
+   defaultPixmap );
   } else {
 mBrowser-document()-addResource( QTextDocument::ImageResource,
QUrl( QLatin1String( 
contact_photo ) ),
@@ -95,15 +100,17 @@
 mBrowser-document()-addResource( QTextDocument::ImageResource,
QUrl( QLatin1String( contact_logo 
) ),
mCurrentContact.logo().data() );
+  } else if (!mCurrentContact.logo().url().isEmpty()) {
+//TODO
   }
 
   mBrowser-document()-addResource( QTextDocument::ImageResource,
  QUrl( QLatin1String( map_icon ) ),
- KIcon( QLatin1String( 
document-open-remote ) ).pixmap( QSize( 16, 16 ) ) );
+ defaultMapPixmap );
 
   mBrowser-document()-addResource( QTextDocument::ImageResource,
  QUrl( QLatin1String( sms_icon ) ),
- KIcon( IMProtocols::self()-icon( 
QString::fromLatin1( messaging/sms ) ) ).pixmap( QSize( 16, 16 ) ) );
+ 

commit kspaceduel for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is kspaceduel

Changes:

--- /work/SRC/openSUSE:Factory/kspaceduel/kspaceduel.changes2015-05-15 
10:01:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.kspaceduel.new/kspaceduel.changes   
2015-06-04 11:19:21.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:27:37 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kspaceduel-15.04.1.tar.xz

New:

  kspaceduel-15.04.2.tar.xz



Other differences:
--
++ kspaceduel.spec ++
--- /var/tmp/diff_new_pack.BaeXQF/_old  2015-06-04 11:19:21.0 +0200
+++ /var/tmp/diff_new_pack.BaeXQF/_new  2015-06-04 11:19:21.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kspaceduel-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kspaceduel-15.04.1.tar.xz - kspaceduel-15.04.2.tar.xz ++




commit ksnapshot for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ksnapshot for openSUSE:Factory 
checked in at 2015-06-04 11:19:13

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


Package is ksnapshot

Changes:

--- /work/SRC/openSUSE:Factory/ksnapshot/ksnapshot.changes  2015-05-15 
10:01:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksnapshot.new/ksnapshot.changes 2015-06-04 
11:19:15.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:27:10 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ksnapshot-15.04.1.tar.xz

New:

  ksnapshot-15.04.2.tar.xz



Other differences:
--
++ ksnapshot.spec ++
--- /var/tmp/diff_new_pack.17ac08/_old  2015-06-04 11:19:16.0 +0200
+++ /var/tmp/diff_new_pack.17ac08/_new  2015-06-04 11:19:16.0 +0200
@@ -29,7 +29,7 @@
 %else
 BuildRequires:  sane-backends
 %endif
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Screen Capture Program
 License:GPL-2.0+

++ ksnapshot-15.04.1.tar.xz - ksnapshot-15.04.2.tar.xz ++




commit ksnakeduel for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ksnakeduel for openSUSE:Factory 
checked in at 2015-06-04 11:19:08

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


Package is ksnakeduel

Changes:

--- /work/SRC/openSUSE:Factory/ksnakeduel/ksnakeduel.changes2015-05-15 
10:01:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksnakeduel.new/ksnakeduel.changes   
2015-06-04 11:19:10.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:26:57 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ksnakeduel-15.04.1.tar.xz

New:

  ksnakeduel-15.04.2.tar.xz



Other differences:
--
++ ksnakeduel.spec ++
--- /var/tmp/diff_new_pack.zckTgJ/_old  2015-06-04 11:19:10.0 +0200
+++ /var/tmp/diff_new_pack.zckTgJ/_new  2015-06-04 11:19:10.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:ksnakeduel-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ksnakeduel-15.04.1.tar.xz - ksnakeduel-15.04.2.tar.xz ++




commit ksirk for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is ksirk

Changes:

--- /work/SRC/openSUSE:Factory/ksirk/ksirk.changes  2015-05-15 
10:01:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksirk.new/ksirk.changes 2015-06-04 
11:19:05.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:25:51 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ksirk-15.04.1.tar.xz

New:

  ksirk-15.04.2.tar.xz



Other differences:
--
++ ksirk.spec ++
--- /var/tmp/diff_new_pack.5Bh8OA/_old  2015-06-04 11:19:06.0 +0200
+++ /var/tmp/diff_new_pack.5Bh8OA/_new  2015-06-04 11:19:06.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+ and LGPL-2.0+
 Group:  Amusements/Games/Strategy/Turn Based
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:ksirk-%{version}.tar.xz
 BuildRequires:  libkdegames4-devel

++ ksirk-15.04.1.tar.xz - ksirk-15.04.2.tar.xz ++




commit kruler for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kruler for openSUSE:Factory checked 
in at 2015-06-04 11:18:39

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


Package is kruler

Changes:

--- /work/SRC/openSUSE:Factory/kruler/kruler.changes2015-05-15 
10:01:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.kruler.new/kruler.changes   2015-06-04 
11:18:41.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:23:31 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kruler-15.04.1.tar.xz

New:

  kruler-15.04.2.tar.xz



Other differences:
--
++ kruler.spec ++
--- /var/tmp/diff_new_pack.pM035s/_old  2015-06-04 11:18:42.0 +0200
+++ /var/tmp/diff_new_pack.pM035s/_new  2015-06-04 11:18:42.0 +0200
@@ -31,7 +31,7 @@
 License:GPL-2.0+
 Group:  Productivity/Graphics/Other
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ kruler-15.04.1.tar.xz - kruler-15.04.2.tar.xz ++




commit kscd for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kscd for openSUSE:Factory checked in 
at 2015-06-04 11:18:51

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


Package is kscd

Changes:

--- /work/SRC/openSUSE:Factory/kscd/kscd.changes2015-05-15 
10:01:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kscd.new/kscd.changes   2015-06-04 
11:18:52.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:23:49 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kscd-15.04.1.tar.xz

New:

  kscd-15.04.2.tar.xz



Other differences:
--
++ kscd.spec ++
--- /var/tmp/diff_new_pack.d2wMIP/_old  2015-06-04 11:18:53.0 +0200
+++ /var/tmp/diff_new_pack.d2wMIP/_new  2015-06-04 11:18:53.0 +0200
@@ -25,7 +25,7 @@
 License:GPL-2.0+
 Group:  Productivity/Multimedia/CD/Players
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kscd-15.04.1.tar.xz - kscd-15.04.2.tar.xz ++




commit kshisen for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kshisen for openSUSE:Factory checked 
in at 2015-06-04 11:18:59

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


Package is kshisen

Changes:

--- /work/SRC/openSUSE:Factory/kshisen/kshisen.changes  2015-05-15 
10:01:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.kshisen.new/kshisen.changes 2015-06-04 
11:18:59.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:24:07 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kshisen-15.04.1.tar.xz

New:

  kshisen-15.04.2.tar.xz



Other differences:
--
++ kshisen.spec ++
--- /var/tmp/diff_new_pack.zSUPQs/_old  2015-06-04 11:19:00.0 +0200
+++ /var/tmp/diff_new_pack.zSUPQs/_new  2015-06-04 11:19:00.0 +0200
@@ -41,7 +41,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kshisen-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ kshisen-15.04.1.tar.xz - kshisen-15.04.2.tar.xz ++




commit konquest for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package konquest for openSUSE:Factory 
checked in at 2015-06-04 11:17:51

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


Package is konquest

Changes:

--- /work/SRC/openSUSE:Factory/konquest/konquest.changes2015-05-15 
10:00:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.konquest.new/konquest.changes   2015-06-04 
11:17:52.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:18:01 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  konquest-15.04.1.tar.xz

New:

  konquest-15.04.2.tar.xz



Other differences:
--
++ konquest.spec ++
--- /var/tmp/diff_new_pack.pQZtnp/_old  2015-06-04 11:17:53.0 +0200
+++ /var/tmp/diff_new_pack.pQZtnp/_new  2015-06-04 11:17:53.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:konquest-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ konquest-15.04.1.tar.xz - konquest-15.04.2.tar.xz ++




commit kpat for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kpat for openSUSE:Factory checked in 
at 2015-06-04 11:18:05

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


Package is kpat

Changes:

--- /work/SRC/openSUSE:Factory/kpat/kpat.changes2015-05-15 
10:01:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.kpat.new/kpat.changes   2015-06-04 
11:18:05.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:20:11 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kpat-15.04.1.tar.xz

New:

  kpat-15.04.2.tar.xz



Other differences:
--
++ kpat.spec ++
--- /var/tmp/diff_new_pack.vucwLe/_old  2015-06-04 11:18:06.0 +0200
+++ /var/tmp/diff_new_pack.vucwLe/_new  2015-06-04 11:18:06.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Card
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kpat-%{version}.tar.xz
 BuildRequires:  libkdegames-devel

++ kpat-15.04.1.tar.xz - kpat-15.04.2.tar.xz ++




commit ksaneplugin for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ksaneplugin for openSUSE:Factory 
checked in at 2015-06-04 11:18:45

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


Package is ksaneplugin

Changes:

--- /work/SRC/openSUSE:Factory/ksaneplugin/ksaneplugin.changes  2015-05-15 
10:01:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksaneplugin.new/ksaneplugin.changes 
2015-06-04 11:18:46.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:23:36 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ksaneplugin-15.04.1.tar.xz

New:

  ksaneplugin-15.04.2.tar.xz



Other differences:
--
++ ksaneplugin.spec ++
--- /var/tmp/diff_new_pack.bcy7o9/_old  2015-06-04 11:18:47.0 +0200
+++ /var/tmp/diff_new_pack.bcy7o9/_new  2015-06-04 11:18:47.0 +0200
@@ -30,7 +30,7 @@
 License:LGPL-2.1+
 Group:  Productivity/Graphics/Other
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ksaneplugin-15.04.1.tar.xz - ksaneplugin-15.04.2.tar.xz ++




commit kqtquickcharts for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kqtquickcharts for openSUSE:Factory 
checked in at 2015-06-04 11:18:13

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


Package is kqtquickcharts

Changes:

--- /work/SRC/openSUSE:Factory/kqtquickcharts/kqtquickcharts.changes
2015-05-15 10:01:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.kqtquickcharts.new/kqtquickcharts.changes   
2015-06-04 11:18:14.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:22:14 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kqtquickcharts-15.04.1.tar.xz

New:

  kqtquickcharts-15.04.2.tar.xz



Other differences:
--
++ kqtquickcharts.spec ++
--- /var/tmp/diff_new_pack.iTws11/_old  2015-06-04 11:18:15.0 +0200
+++ /var/tmp/diff_new_pack.iTws11/_new  2015-06-04 11:18:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kqtquickcharts
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Plugin to render beautiful and interactive graphs
 License:LGPL-2.1+

++ kqtquickcharts-15.04.1.tar.xz - kqtquickcharts-15.04.2.tar.xz ++




commit kremotecontrol for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kremotecontrol for openSUSE:Factory 
checked in at 2015-06-04 11:18:22

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


Package is kremotecontrol

Changes:

--- /work/SRC/openSUSE:Factory/kremotecontrol/kremotecontrol.changes
2015-05-15 10:01:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.kremotecontrol.new/kremotecontrol.changes   
2015-06-04 11:18:24.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:22:40 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kremotecontrol-15.04.1.tar.xz

New:

  kremotecontrol-15.04.2.tar.xz



Other differences:
--
++ kremotecontrol.spec ++
--- /var/tmp/diff_new_pack.jQO46V/_old  2015-06-04 11:18:24.0 +0200
+++ /var/tmp/diff_new_pack.jQO46V/_new  2015-06-04 11:18:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kremotecontrol
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:KDE Frontend for the Linux Infrared Remote Control system
 License:GPL-2.0+

++ kremotecontrol-15.04.1.tar.xz - kremotecontrol-15.04.2.tar.xz ++




commit krdc for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package krdc for openSUSE:Factory checked in 
at 2015-06-04 11:18:18

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


Package is krdc

Changes:

--- /work/SRC/openSUSE:Factory/krdc/krdc.changes2015-05-15 
10:01:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.krdc.new/krdc.changes   2015-06-04 
11:18:19.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:22:33 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  krdc-15.04.1.tar.xz

New:

  krdc-15.04.2.tar.xz



Other differences:
--
++ krdc.spec ++
--- /var/tmp/diff_new_pack.tB6NOc/_old  2015-06-04 11:18:19.0 +0200
+++ /var/tmp/diff_new_pack.tB6NOc/_new  2015-06-04 11:18:19.0 +0200
@@ -25,7 +25,7 @@
 BuildRequires:  pkgconfig(TelepathyQt4)
 %endif
 BuildRequires:  oxygen-icon-theme-large
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Remote Desktop Connection
 License:GPL-2.0+

++ krdc-15.04.1.tar.xz - krdc-15.04.2.tar.xz ++




commit krfb for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package krfb for openSUSE:Factory checked in 
at 2015-06-04 11:18:33

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


Package is krfb

Changes:

--- /work/SRC/openSUSE:Factory/krfb/krfb.changes2015-05-15 
10:01:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.krfb.new/krfb.changes   2015-06-04 
11:18:34.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:23:15 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  krfb-15.04.1.tar.xz

New:

  krfb-15.04.2.tar.xz



Other differences:
--
++ krfb.spec ++
--- /var/tmp/diff_new_pack.MUVUYH/_old  2015-06-04 11:18:34.0 +0200
+++ /var/tmp/diff_new_pack.MUVUYH/_new  2015-06-04 11:18:34.0 +0200
@@ -26,7 +26,7 @@
 BuildRequires:  pkgconfig(xdamage)
 BuildRequires:  pkgconfig(xt)
 BuildRequires:  pkgconfig(xtst)
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Desktop Sharing
 License:GPL-2.0+

++ krfb-15.04.1.tar.xz - krfb-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/krfb-15.04.1/framebuffers/x11/krfb_framebuffer_x11.desktop 
new/krfb-15.04.2/framebuffers/x11/krfb_framebuffer_x11.desktop
--- old/krfb-15.04.1/framebuffers/x11/krfb_framebuffer_x11.desktop  
2015-02-21 05:45:26.0 +0100
+++ new/krfb-15.04.2/framebuffers/x11/krfb_framebuffer_x11.desktop  
2015-05-25 09:50:30.0 +0200
@@ -4,7 +4,7 @@
 Comment[ast]=Esquema de buffer pa KRfb basáu en XDamage/XShm
 Comment[bg]=Основан на X11 XDamage/XShm фреймбуфер за KRfb.
 Comment[bs]=X11 XDamage/XShm baziran framebafer za KRfb.
-Comment[ca]=«Framebuffer» basat en XDamage/XShmQt de l'X11 per al KRfb.
+Comment[ca]=«Framebuffer» basat en XDamage/XShmQt del X11 per al KRfb.
 Comment[ca@valencia]=«Framebuffer» basat en XDamage/XShmQt de l'X11 per al 
KRfb.
 Comment[cs]=Framebuffer založený na X11 XDamage/XShm pro KRfb.
 Comment[da]=X11 XDamage/XShm-baseret framebuffer til KRfb.
@@ -52,7 +52,7 @@
 Name[ast]=Buffer de X11 pa KRfb
 Name[bg]=X11 фреймбуфер за KRfb
 Name[bs]=X11 frame bafer za KRfb
-Name[ca]=«Framebuffer» de l'X11 per al KRfb.
+Name[ca]=«Framebuffer» del X11 per al KRfb.
 Name[ca@valencia]=«Framebuffer» de l'X11 per al KRfb.
 Name[cs]=X11 Framebuffer pro KRfb
 Name[da]=X11-framebuffer til KRfb




commit kolourpaint for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kolourpaint for openSUSE:Factory 
checked in at 2015-06-04 11:17:42

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


Package is kolourpaint

Changes:

--- /work/SRC/openSUSE:Factory/kolourpaint/kolourpaint.changes  2015-05-15 
10:00:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.kolourpaint.new/kolourpaint.changes 
2015-06-04 11:17:43.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:17:13 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kolourpaint-15.04.1.tar.xz

New:

  kolourpaint-15.04.2.tar.xz



Other differences:
--
++ kolourpaint.spec ++
--- /var/tmp/diff_new_pack.9QkJ6h/_old  2015-06-04 11:17:44.0 +0200
+++ /var/tmp/diff_new_pack.9QkJ6h/_new  2015-06-04 11:17:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kolourpaint
-Version:15.04.1
+Version:15.04.2
 Release:0
 # See bnc#717722 for license details
 Summary:Paint Program

++ kolourpaint-15.04.1.tar.xz - kolourpaint-15.04.2.tar.xz ++




commit ktp-desktop-applets for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-desktop-applets for 
openSUSE:Factory checked in at 2015-06-04 11:24:55

Comparing /work/SRC/openSUSE:Factory/ktp-desktop-applets (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-desktop-applets.new (New)


Package is ktp-desktop-applets

Changes:

--- /work/SRC/openSUSE:Factory/ktp-desktop-applets/ktp-desktop-applets.changes  
2015-05-15 10:05:40.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-desktop-applets.new/ktp-desktop-applets.changes 
2015-06-04 11:24:56.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:42 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-desktop-applets-15.04.1.tar.xz

New:

  ktp-desktop-applets-15.04.2.tar.xz



Other differences:
--
++ ktp-desktop-applets.spec ++
--- /var/tmp/diff_new_pack.6snlME/_old  2015-06-04 11:24:57.0 +0200
+++ /var/tmp/diff_new_pack.6snlME/_new  2015-06-04 11:24:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-desktop-applets
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Telepathy presence applet
 License:GPL-2.0+ and LGPL-2.1+

++ ktp-desktop-applets-15.04.1.tar.xz - ktp-desktop-applets-15.04.2.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-desktop-applets-15.04.1/CMakeLists.txt 
new/ktp-desktop-applets-15.04.2/CMakeLists.txt
--- old/ktp-desktop-applets-15.04.1/CMakeLists.txt  2015-05-07 
15:02:50.0 +0200
+++ new/ktp-desktop-applets-15.04.2/CMakeLists.txt  2015-05-28 
23:55:58.0 +0200
@@ -2,7 +2,7 @@
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
-set(KTP_DESKTOP_APPLETS_VERSION 15.04.1)
+set(KTP_DESKTOP_APPLETS_VERSION 15.04.2)
 
 find_package(ECM 0.0.11 REQUIRED NO_MODULE)
 set (CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktp-desktop-applets-15.04.1/contactlist/org.kde.ktp-contactlist/contents/ui/ExternalLabel.qml
 
new/ktp-desktop-applets-15.04.2/contactlist/org.kde.ktp-contactlist/contents/ui/ExternalLabel.qml
--- 
old/ktp-desktop-applets-15.04.1/contactlist/org.kde.ktp-contactlist/contents/ui/ExternalLabel.qml
   2015-05-07 15:02:50.0 +0200
+++ 
new/ktp-desktop-applets-15.04.2/contactlist/org.kde.ktp-contactlist/contents/ui/ExternalLabel.qml
   1970-01-01 01:00:00.0 +0100
@@ -1,55 +0,0 @@
-/***
- *   Copyright (C) 2011 by Francesco Nwokeka francesco.nwok...@gmail.com *
- * *
- *   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 program 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 program; if not, write to the *
- *   Free Software Foundation, Inc.,   *
- *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA*
- ***/
-
-import QtQuick 2.1
-import org.kde.plasma.core 2.0 as PlasmaCore
-import org.kde.plasma.graphicswidgets 0.1 as PlasmaWidgets
-
-Item {
-id: label;
-
-// this property holds which side the label is to be viewed. Default is 
left
-// and changes when user changes screen edge from settings ui.
-property string orientation: left;
-signal orientationChanged();
-property QtObject theme: PlasmaCore.Theme {}
-
-PlasmaWidgets.IconWidget {
-id: labelIcon;
-icon: QIcon(kde-telepathy);
-drawBackground: false;
-text: i18n(ContactList);
-orientation: QtHorizontal;
-textBackgroundColor: 

commit ktp-common-internals for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-common-internals for 
openSUSE:Factory checked in at 2015-06-04 11:24:25

Comparing /work/SRC/openSUSE:Factory/ktp-common-internals (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-common-internals.new (New)


Package is ktp-common-internals

Changes:

--- 
/work/SRC/openSUSE:Factory/ktp-common-internals/ktp-common-internals.changes
2015-05-15 10:05:19.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-common-internals.new/ktp-common-internals.changes
   2015-06-04 11:24:26.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:09 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-common-internals-15.04.1.tar.xz

New:

  ktp-common-internals-15.04.2.tar.xz



Other differences:
--
++ ktp-common-internals.spec ++
--- /var/tmp/diff_new_pack.hGDvrC/_old  2015-06-04 11:24:26.0 +0200
+++ /var/tmp/diff_new_pack.hGDvrC/_new  2015-06-04 11:24:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-common-internals
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Telepathy common module
 License:LGPL-2.1+

++ ktp-common-internals-15.04.1.tar.xz - 
ktp-common-internals-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-common-internals-15.04.1/CMakeLists.txt 
new/ktp-common-internals-15.04.2/CMakeLists.txt
--- old/ktp-common-internals-15.04.1/CMakeLists.txt 2015-05-07 
15:00:48.0 +0200
+++ new/ktp-common-internals-15.04.2/CMakeLists.txt 2015-05-28 
23:55:57.0 +0200
@@ -4,7 +4,7 @@
 
 # Bump for every 0.x release, or whenever BC changes
 set (KTP_SONUMBER 9) # SO 9 is for 15.04 release
-set (KTP_VERSION 15.04.1)
+set (KTP_VERSION 15.04.2)
 set (KTP_MESSAGE_FILTER_FRAMEWORK_VERSION 5)
 
 find_package(ECM 0.0.11 REQUIRED NO_MODULE)




commit ktp-send-file for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-send-file for openSUSE:Factory 
checked in at 2015-06-04 11:25:08

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


Package is ktp-send-file

Changes:

--- /work/SRC/openSUSE:Factory/ktp-send-file/ktp-send-file.changes  
2015-05-15 10:05:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-send-file.new/ktp-send-file.changes 
2015-06-04 11:25:09.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:56 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-send-file-15.04.1.tar.xz

New:

  ktp-send-file-15.04.2.tar.xz



Other differences:
--
++ ktp-send-file.spec ++
--- /var/tmp/diff_new_pack.caZ7tx/_old  2015-06-04 11:25:09.0 +0200
+++ /var/tmp/diff_new_pack.caZ7tx/_new  2015-06-04 11:25:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-send-file
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:File manager plugin
 License:LGPL-2.1+

++ ktp-send-file-15.04.1.tar.xz - ktp-send-file-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-send-file-15.04.1/CMakeLists.txt 
new/ktp-send-file-15.04.2/CMakeLists.txt
--- old/ktp-send-file-15.04.1/CMakeLists.txt2015-05-07 15:04:46.0 
+0200
+++ new/ktp-send-file-15.04.2/CMakeLists.txt2015-05-28 23:55:58.0 
+0200
@@ -2,7 +2,7 @@
 
 cmake_minimum_required(VERSION 2.8.12)
 
-set (KTP_SEND_FILE_VERSION 15.04.1)
+set (KTP_SEND_FILE_VERSION 15.04.2)
 
 set(IS_KTP_INTERNAL_MODULE TRUE)
 




commit ktp-auth-handler for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-auth-handler for 
openSUSE:Factory checked in at 2015-06-04 11:24:42

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


Package is ktp-auth-handler

Changes:

--- /work/SRC/openSUSE:Factory/ktp-auth-handler/ktp-auth-handler.changes
2015-05-15 10:05:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-auth-handler.new/ktp-auth-handler.changes   
2015-06-04 11:24:43.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:25 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-auth-handler-15.04.1.tar.xz

New:

  ktp-auth-handler-15.04.2.tar.xz



Other differences:
--
++ ktp-auth-handler.spec ++
--- /var/tmp/diff_new_pack.TnUJE2/_old  2015-06-04 11:24:44.0 +0200
+++ /var/tmp/diff_new_pack.TnUJE2/_new  2015-06-04 11:24:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-auth-handler
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Telepathy auth handler
 License:LGPL-2.1+

++ ktp-auth-handler-15.04.1.tar.xz - ktp-auth-handler-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-auth-handler-15.04.1/CMakeLists.txt 
new/ktp-auth-handler-15.04.2/CMakeLists.txt
--- old/ktp-auth-handler-15.04.1/CMakeLists.txt 2015-05-07 14:59:08.0 
+0200
+++ new/ktp-auth-handler-15.04.2/CMakeLists.txt 2015-05-28 23:55:57.0 
+0200
@@ -1,6 +1,6 @@
 project(ktp-auth-handler)
 
-set(KTP_AUTH_HANDLER_VERSION 15.04.1)
+set(KTP_AUTH_HANDLER_VERSION 15.04.2)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit ktp-filetransfer-handler for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-filetransfer-handler for 
openSUSE:Factory checked in at 2015-06-04 11:24:59

Comparing /work/SRC/openSUSE:Factory/ktp-filetransfer-handler (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-filetransfer-handler.new (New)


Package is ktp-filetransfer-handler

Changes:

--- 
/work/SRC/openSUSE:Factory/ktp-filetransfer-handler/ktp-filetransfer-handler.changes
2015-05-15 10:05:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-filetransfer-handler.new/ktp-filetransfer-handler.changes
   2015-06-04 11:25:00.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:47 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-filetransfer-handler-15.04.1.tar.xz

New:

  ktp-filetransfer-handler-15.04.2.tar.xz



Other differences:
--
++ ktp-filetransfer-handler.spec ++
--- /var/tmp/diff_new_pack.UKZITW/_old  2015-06-04 11:25:01.0 +0200
+++ /var/tmp/diff_new_pack.UKZITW/_new  2015-06-04 11:25:01.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-filetransfer-handler
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Telepathy filetransfer handler
 License:GPL-2.0+

++ ktp-filetransfer-handler-15.04.1.tar.xz - 
ktp-filetransfer-handler-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-filetransfer-handler-15.04.1/CMakeLists.txt 
new/ktp-filetransfer-handler-15.04.2/CMakeLists.txt
--- old/ktp-filetransfer-handler-15.04.1/CMakeLists.txt 2015-05-07 
15:03:37.0 +0200
+++ new/ktp-filetransfer-handler-15.04.2/CMakeLists.txt 2015-05-28 
23:55:58.0 +0200
@@ -2,7 +2,7 @@
 
 cmake_minimum_required(VERSION 2.8.12)
 
-set(KTP_FILETRANSFER_HANDLER_VERSION 15.04.1)
+set(KTP_FILETRANSFER_HANDLER_VERSION 15.04.2)
 
 find_package(ECM 1.3.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_MODULE_PATH})




commit kaccounts-providers for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kaccounts-providers for 
openSUSE:Factory checked in at 2015-06-04 11:24:15

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


Package is kaccounts-providers

Changes:

--- /work/SRC/openSUSE:Factory/kaccounts-providers/kaccounts-providers.changes  
2015-05-15 10:05:12.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kaccounts-providers.new/kaccounts-providers.changes 
2015-06-04 11:24:16.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:12:20 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kaccounts-providers-15.04.1.tar.xz

New:

  kaccounts-providers-15.04.2.tar.xz



Other differences:
--
++ kaccounts-providers.spec ++
--- /var/tmp/diff_new_pack.cwwidR/_old  2015-06-04 11:24:16.0 +0200
+++ /var/tmp/diff_new_pack.cwwidR/_new  2015-06-04 11:24:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kaccounts-providers
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   kaccounts-providers
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:KDE Accounts Providers
 License:GPL-2.0+

++ kaccounts-providers-15.04.1.tar.xz - kaccounts-providers-15.04.2.tar.xz 
++




commit kdenlive for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdenlive for openSUSE:Factory 
checked in at 2015-06-04 11:24:05

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


Package is kdenlive

Changes:

--- /work/SRC/openSUSE:Factory/kdenlive/kdenlive.changes2015-05-15 
10:05:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdenlive.new/kdenlive.changes   2015-06-04 
11:24:06.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:11:42 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdenlive-15.04.1.tar.xz

New:

  kdenlive-15.04.2.tar.xz



Other differences:
--
++ kdenlive.spec ++
--- /var/tmp/diff_new_pack.peVLiL/_old  2015-06-04 11:24:07.0 +0200
+++ /var/tmp/diff_new_pack.peVLiL/_new  2015-06-04 11:24:07.0 +0200
@@ -19,13 +19,13 @@
 %define mlt_version 0.9.6
 
 Name:   kdenlive
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Non-linear video editor
 License:GPL-3.0+
 Group:  Productivity/Multimedia/Video/Editors and Convertors
 Url:http://www.kdenlive.org/
-Source0:
http://download.kde.org/stable/applications/15.04.1/src/%{name}-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/applications/15.04.2/src/%{name}-%{version}.tar.xz
 Patch1: use-mlt_datadir.patch
 BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes

++ kdenlive-15.04.1.tar.xz - kdenlive-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdenlive-15.04.1/CMakeLists.txt 
new/kdenlive-15.04.2/CMakeLists.txt
--- old/kdenlive-15.04.1/CMakeLists.txt 2015-05-04 23:42:42.0 +0200
+++ new/kdenlive-15.04.2/CMakeLists.txt 2015-05-27 22:44:47.0 +0200
@@ -2,7 +2,7 @@
 
 # An odd patch version number means development version, while an even one 
means
 # stable release. An additional number can be used for bugfix-only releases.
-set(KDENLIVE_VERSION 15.04.1)
+set(KDENLIVE_VERSION 15.04.2)
 cmake_minimum_required(VERSION 2.8.12)
 # Minimum versions of main dependencies.
 set(MLT_MIN_MAJOR_VERSION 0)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdenlive-15.04.1/data/kdenlive.appdata.xml 
new/kdenlive-15.04.2/data/kdenlive.appdata.xml
--- old/kdenlive-15.04.1/data/kdenlive.appdata.xml  2015-05-04 
23:42:42.0 +0200
+++ new/kdenlive-15.04.2/data/kdenlive.appdata.xml  2015-05-27 
22:44:47.0 +0200
@@ -11,6 +11,7 @@
   name xml:lang=deKdenlive/name
   name xml:lang=en-GBKdenlive/name
   name xml:lang=esKdenlive/name
+  name xml:lang=fiKdenlive/name
   name xml:lang=itKdenlive/name
   name xml:lang=nlKdenlive/name
   name xml:lang=plKdenlive/name
@@ -32,6 +33,7 @@
   summary xml:lang=csEditor videí/summary
   summary xml:lang=deVideo-Editor/summary
   summary xml:lang=en-GBVideo Editor/summary
+  summary xml:lang=fiVideoeditori/summary
   summary xml:lang=itEditor video/summary
   summary xml:lang=nlVideobewerker/summary
   summary xml:lang=plEdytor wideo/summary
@@ -49,6 +51,7 @@
 pKdenlive is a non linear video editor. It is based on the MLT framework 
and accepts many audio and video formats, allows you to add effects, 
transitions and render into the format of your choice./p
 p xml:lang=caEl Kdenlive és un editor no lineal de vídeo. Està basat 
en l'entorn de treball MLT i accepta molts formats d'àudio i vídeo, permetent 
afegir efectes, transicions i representacions en el format de la vostra 
elecció./p
 p xml:lang=en-GBKdenlive is a non linear video editor. It is based on 
the MLT framework and accepts many audio and video formats, allows you to add 
effects, transitions and render into the format of your choice./p
+p xml:lang=fiKdenlive on epälineaarinen videoeditori. Se perustuu 
MLT-frameworkiin ja toimii monen eri ääni- ja videoformaatin kanssa. Voit 
lisätä efektejä ja siirtymiä, sekä renderöidä projektin haluamaasi 
tiedostomuotoon./p
 p xml:lang=itKdenlive è un editor video non lineare. È basato 
sull'infrastruttura MLT e accetta numerosi formati audio e video, consente di 
aggiungere effetti, transizioni e produrre il formato che si desidera./p
 p xml:lang=nlKdenlive is een niet lineaire videobewerker. Het is 
gebaseerd op het MLT-framework en accepteert vele audio- en video-formaten, 
biedt de mogelijkheid effecten en overgangen toe te voegen en om te zetten naar 
het formaat van uw keuze./p
 p 

commit ktp-contact-list for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-contact-list for 
openSUSE:Factory checked in at 2015-06-04 11:24:46

Comparing /work/SRC/openSUSE:Factory/ktp-contact-list (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-contact-list.new (New)


Package is ktp-contact-list

Changes:

--- /work/SRC/openSUSE:Factory/ktp-contact-list/ktp-contact-list.changes
2015-05-15 10:05:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-contact-list.new/ktp-contact-list.changes   
2015-06-04 11:24:48.0 +0200
@@ -1,0 +2,14 @@
+Mon Jun  1 09:25:59 UTC 2015 - tchva...@suse.com
+
+- Sort deps alphabetically
+- Require telepathy-logger, otherwise the UI would crash
+
+---
+Sat May 30 15:23:30 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-contact-list-15.04.1.tar.xz

New:

  ktp-contact-list-15.04.2.tar.xz



Other differences:
--
++ ktp-contact-list.spec ++
--- /var/tmp/diff_new_pack.9id5DJ/_old  2015-06-04 11:24:48.0 +0200
+++ /var/tmp/diff_new_pack.9id5DJ/_new  2015-06-04 11:24:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ktp-contact-list
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,15 @@
 
 
 Name:   ktp-contact-list
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Telepathy contact list
 License:LGPL-2.1+
 Group:  Productivity/Networking/Instant Messenger
 Url:
http://community.kde.org/Real-Time_Communication_and_Collaboration
 Source: %{name}-%{version}.tar.xz
-BuildRequires:  fdupes
 BuildRequires:  extra-cmake-modules = 1.3.0
+BuildRequires:  fdupes
 BuildRequires:  kcmutils-devel
 BuildRequires:  kdbusaddons-devel
 BuildRequires:  kf5-filesystem
@@ -37,13 +37,14 @@
 BuildRequires:  kpeople5-devel
 BuildRequires:  ktp-common-internals-devel
 BuildRequires:  ktp-icons
-BuildRequires:  kwindowsystem-devel
 BuildRequires:  kwallet-devel
+BuildRequires:  kwindowsystem-devel
 BuildRequires:  kxmlgui-devel
-BuildRequires:  telepathy-qt5-devel
 BuildRequires:  telepathy-logger-qt5-devel
+BuildRequires:  telepathy-qt5-devel
 BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
 BuildRequires:  pkgconfig(Qt5Xml) = 5.2.0
+Requires:   telepathy-logger
 Obsoletes:  %{name}5  %{version}
 Provides:   %{name}5 = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ktp-contact-list-15.04.1.tar.xz - ktp-contact-list-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-contact-list-15.04.1/CMakeLists.txt 
new/ktp-contact-list-15.04.2/CMakeLists.txt
--- old/ktp-contact-list-15.04.1/CMakeLists.txt 2015-05-07 15:01:38.0 
+0200
+++ new/ktp-contact-list-15.04.2/CMakeLists.txt 2015-05-28 23:55:57.0 
+0200
@@ -2,7 +2,7 @@
 
 cmake_minimum_required(VERSION 2.8.12)
 
-set(KTP_CONTACT_LIST_VERSION 15.04.1)
+set(KTP_CONTACT_LIST_VERSION 15.04.2)
 
 set(IS_KTP_INTERNAL_MODULE TRUE)
 




commit ffmpegthumbs for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ffmpegthumbs for openSUSE:Factory 
checked in at 2015-06-04 11:23:59

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


Package is ffmpegthumbs

Changes:

--- /work/SRC/openSUSE:Factory/ffmpegthumbs/ffmpegthumbs.changes
2015-05-29 10:37:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.ffmpegthumbs.new/ffmpegthumbs.changes   
2015-06-04 11:24:00.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:22:49 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ffmpegthumbs-15.04.1.tar.xz

New:

  ffmpegthumbs-15.04.2.tar.xz



Other differences:
--
++ ffmpegthumbs.spec ++
--- /var/tmp/diff_new_pack.05kepf/_old  2015-06-04 11:24:00.0 +0200
+++ /var/tmp/diff_new_pack.05kepf/_new  2015-06-04 11:24:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ffmpegthumbs
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 Summary:FFmpeg-based thumbnail creator for video files
 License:LGPL-2.0+
 Group:  System/GUI/KDE
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ffmpegthumbs-15.04.1.tar.xz - ffmpegthumbs-15.04.2.tar.xz ++




commit parley for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package parley for openSUSE:Factory checked 
in at 2015-06-04 11:23:48

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


Package is parley

Changes:

--- /work/SRC/openSUSE:Factory/parley/parley.changes2015-05-15 
10:04:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.parley.new/parley.changes   2015-06-04 
11:23:49.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:59:57 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  parley-15.04.1.tar.xz

New:

  parley-15.04.2.tar.xz



Other differences:
--
++ parley.spec ++
--- /var/tmp/diff_new_pack.G374m9/_old  2015-06-04 11:23:50.0 +0200
+++ /var/tmp/diff_new_pack.G374m9/_new  2015-06-04 11:23:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   parley
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Vocabulary Trainer
 License:GPL-2.0+

++ parley-15.04.1.tar.xz - parley-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parley-15.04.1/plugins/example.desktop 
new/parley-15.04.2/plugins/example.desktop
--- old/parley-15.04.1/plugins/example.desktop  2015-04-27 13:15:48.0 
+0200
+++ new/parley-15.04.2/plugins/example.desktop  2015-05-10 13:50:50.0 
+0200
@@ -8,7 +8,7 @@
 Name[ast]=Guión Parley d'exemplu
 Name[bg]=Примерен скрипт за Parley
 Name[bs]=Primjer skripte Parley
-Name[ca]=Exemple d'script de Parley
+Name[ca]=Exemple de script de Parley
 Name[ca@valencia]=Exemple d'script de Parley
 Name[cs]=Skript Parley jako příklad
 Name[da]=Parley script-eksempel




commit khangman for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package khangman for openSUSE:Factory 
checked in at 2015-06-04 11:23:26

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


Package is khangman

Changes:

--- /work/SRC/openSUSE:Factory/khangman/khangman.changes2015-05-15 
10:04:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.khangman.new/khangman.changes   2015-06-04 
11:23:28.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:58:57 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  khangman-15.04.1.tar.xz

New:

  khangman-15.04.2.tar.xz



Other differences:
--
++ khangman.spec ++
--- /var/tmp/diff_new_pack.GrTYYk/_old  2015-06-04 11:23:29.0 +0200
+++ /var/tmp/diff_new_pack.GrTYYk/_new  2015-06-04 11:23:29.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   khangman
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Hangman Game
 License:GPL-2.0+

++ khangman-15.04.1.tar.xz - khangman-15.04.2.tar.xz ++




commit ktp-kded-module for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-kded-module for openSUSE:Factory 
checked in at 2015-06-04 11:25:04

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


Package is ktp-kded-module

Changes:

--- /work/SRC/openSUSE:Factory/ktp-kded-module/ktp-kded-module.changes  
2015-05-15 10:05:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-kded-module.new/ktp-kded-module.changes 
2015-06-04 11:25:05.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:52 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-kded-module-15.04.1.tar.xz

New:

  ktp-kded-module-15.04.2.tar.xz



Other differences:
--
++ ktp-kded-module.spec ++
--- /var/tmp/diff_new_pack.KEZdww/_old  2015-06-04 11:25:05.0 +0200
+++ /var/tmp/diff_new_pack.KEZdww/_new  2015-06-04 11:25:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-kded-module
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:KDED module that manages the telepathy interactions with the 
KDE Desktop
 License:LGPL-2.1+

++ ktp-kded-module-15.04.1.tar.xz - ktp-kded-module-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-kded-module-15.04.1/CMakeLists.txt 
new/ktp-kded-module-15.04.2/CMakeLists.txt
--- old/ktp-kded-module-15.04.1/CMakeLists.txt  2015-05-07 15:04:10.0 
+0200
+++ new/ktp-kded-module-15.04.2/CMakeLists.txt  2015-05-28 23:55:58.0 
+0200
@@ -2,7 +2,7 @@
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 
-set(KTP_KDED_MODULE_VERSION 15.04.1)
+set(KTP_KDED_MODULE_VERSION 15.04.2)
 
 cmake_policy(SET CMP0002 OLD)
 




commit ktp-accounts-kcm for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-accounts-kcm for 
openSUSE:Factory checked in at 2015-06-04 11:24:30

Comparing /work/SRC/openSUSE:Factory/ktp-accounts-kcm (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-accounts-kcm.new (New)


Package is ktp-accounts-kcm

Changes:

--- /work/SRC/openSUSE:Factory/ktp-accounts-kcm/ktp-accounts-kcm.changes
2015-05-15 10:05:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-accounts-kcm.new/ktp-accounts-kcm.changes   
2015-06-04 11:24:31.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:15 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-accounts-kcm-15.04.1.tar.xz

New:

  ktp-accounts-kcm-15.04.2.tar.xz



Other differences:
--
++ ktp-accounts-kcm.spec ++
--- /var/tmp/diff_new_pack.SX5H5r/_old  2015-06-04 11:24:31.0 +0200
+++ /var/tmp/diff_new_pack.SX5H5r/_new  2015-06-04 11:24:31.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-accounts-kcm
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:KCM Module for configuring Telepathy Instant Messaging Accounts
 License:LGPL-2.1+

++ ktp-accounts-kcm-15.04.1.tar.xz - ktp-accounts-kcm-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-accounts-kcm-15.04.1/CMakeLists.txt 
new/ktp-accounts-kcm-15.04.2/CMakeLists.txt
--- old/ktp-accounts-kcm-15.04.1/CMakeLists.txt 2015-05-07 15:10:03.0 
+0200
+++ new/ktp-accounts-kcm-15.04.2/CMakeLists.txt 2015-05-28 23:50:55.0 
+0200
@@ -10,7 +10,7 @@
 find_package(KF5 5.0.0 REQUIRED KCMUtils KIO I18n WidgetsAddons Codecs 
CoreAddons ConfigWidgets IconThemes ItemViews)
 
 set(KTP_ACCOUNTS_KCM_SONUMBER 9)
-set(KTP_ACCOUNTS_KCM_VERSION 15.04.1)
+set(KTP_ACCOUNTS_KCM_VERSION 15.04.2)
 
 set(IS_KTP_INTERNAL_MODULE TRUE)
 




commit signon-kwallet-extension for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package signon-kwallet-extension for 
openSUSE:Factory checked in at 2015-06-04 11:24:19

Comparing /work/SRC/openSUSE:Factory/signon-kwallet-extension (Old)
 and  /work/SRC/openSUSE:Factory/.signon-kwallet-extension.new (New)


Package is signon-kwallet-extension

Changes:

--- 
/work/SRC/openSUSE:Factory/signon-kwallet-extension/signon-kwallet-extension.changes
2015-05-15 10:05:15.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.signon-kwallet-extension.new/signon-kwallet-extension.changes
   2015-06-04 11:24:20.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:12:52 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  signon-kwallet-extension-15.04.1.tar.xz

New:

  signon-kwallet-extension-15.04.2.tar.xz



Other differences:
--
++ signon-kwallet-extension.spec ++
--- /var/tmp/diff_new_pack.T5M3mh/_old  2015-06-04 11:24:21.0 +0200
+++ /var/tmp/diff_new_pack.T5M3mh/_new  2015-06-04 11:24:21.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package signon-kwallet-extension
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,19 +17,19 @@
 
 
 Name:   signon-kwallet-extension
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:KWallet integration for signon framework
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Source: %{name}-%{version}.tar.xz
-BuildRequires:  pkgconfig(Qt5DBus)
-BuildRequires:  pkgconfig(Qt5Core)
-BuildRequires:  pkgconfig(Qt5Test)
-BuildRequires:  kwallet-devel
 BuildRequires:  kf5-filesystem
+BuildRequires:  kwallet-devel
 BuildRequires:  signon-plugins-devel
 BuildRequires:  signond-libs-devel
+BuildRequires:  pkgconfig(Qt5Core)
+BuildRequires:  pkgconfig(Qt5DBus)
+BuildRequires:  pkgconfig(Qt5Test)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ signon-kwallet-extension-15.04.1.tar.xz - 
signon-kwallet-extension-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/signon-kwallet-extension-15.04.1/CMakeLists.txt 
new/signon-kwallet-extension-15.04.2/CMakeLists.txt
--- old/signon-kwallet-extension-15.04.1/CMakeLists.txt 2015-05-07 
15:11:07.0 +0200
+++ new/signon-kwallet-extension-15.04.2/CMakeLists.txt 2015-05-29 
00:06:21.0 +0200
@@ -1,8 +1,8 @@
 project(kwalletsignon5)
 set(kwalletsignon_VERSION_MAJOR 15)
 set(kwalletsignon_VERSION_MINOR 04)
-set(kwalletsignon_VERSION_RELEASE 1)
-set(kwalletsignon_VERSION 15.04.1)
+set(kwalletsignon_VERSION_RELEASE 2)
+set(kwalletsignon_VERSION 15.04.2)
 
 cmake_minimum_required(VERSION 2.8.12)
 




commit ktp-contact-runner for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-contact-runner for 
openSUSE:Factory checked in at 2015-06-04 11:24:51

Comparing /work/SRC/openSUSE:Factory/ktp-contact-runner (Old)
 and  /work/SRC/openSUSE:Factory/.ktp-contact-runner.new (New)


Package is ktp-contact-runner

Changes:

--- /work/SRC/openSUSE:Factory/ktp-contact-runner/ktp-contact-runner.changes
2015-05-15 10:05:36.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktp-contact-runner.new/ktp-contact-runner.changes   
2015-06-04 11:24:52.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:37 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-contact-runner-15.04.1.tar.xz

New:

  ktp-contact-runner-15.04.2.tar.xz



Other differences:
--
++ ktp-contact-runner.spec ++
--- /var/tmp/diff_new_pack.T0aG8C/_old  2015-06-04 11:24:52.0 +0200
+++ /var/tmp/diff_new_pack.T0aG8C/_new  2015-06-04 11:24:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-contact-runner
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Telepathy Krunner plugin
 License:LGPL-2.1+

++ ktp-contact-runner-15.04.1.tar.xz - ktp-contact-runner-15.04.2.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-contact-runner-15.04.1/CMakeLists.txt 
new/ktp-contact-runner-15.04.2/CMakeLists.txt
--- old/ktp-contact-runner-15.04.1/CMakeLists.txt   2015-05-07 
15:02:17.0 +0200
+++ new/ktp-contact-runner-15.04.2/CMakeLists.txt   2015-05-28 
23:55:58.0 +0200
@@ -2,7 +2,7 @@
 
 cmake_minimum_required(VERSION 2.8.12)
 
-set(KTP_CONTACT_RUNNER_VERSION 15.04.1)
+set(KTP_CONTACT_RUNNER_VERSION 15.04.2)
 set(IS_KTP_INTERNAL_MODULE TRUE)
 
 find_package(ECM 1.0.0 REQUIRED NO_MODULE)




commit ktp-approver for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package ktp-approver for openSUSE:Factory 
checked in at 2015-06-04 11:24:38

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


Package is ktp-approver

Changes:

--- /work/SRC/openSUSE:Factory/ktp-approver/ktp-approver.changes
2015-05-15 10:05:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-approver.new/ktp-approver.changes   
2015-06-04 11:24:39.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:20 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  ktp-approver-15.04.1.tar.xz

New:

  ktp-approver-15.04.2.tar.xz



Other differences:
--
++ ktp-approver.spec ++
--- /var/tmp/diff_new_pack.pt8H5s/_old  2015-06-04 11:24:40.0 +0200
+++ /var/tmp/diff_new_pack.pt8H5s/_new  2015-06-04 11:24:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-approver
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:KDE Channel Approver for Telepathy
 License:LGPL-2.1+

++ ktp-approver-15.04.1.tar.xz - ktp-approver-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-approver-15.04.1/CMakeLists.txt 
new/ktp-approver-15.04.2/CMakeLists.txt
--- old/ktp-approver-15.04.1/CMakeLists.txt 2015-05-07 14:58:24.0 
+0200
+++ new/ktp-approver-15.04.2/CMakeLists.txt 2015-05-28 23:55:57.0 
+0200
@@ -1,6 +1,6 @@
 project(ktp-approver)
 
-set(KTP_APPROVER_VERSION 15.04.1)
+set(KTP_APPROVER_VERSION 15.04.2)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 




commit cantor for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package cantor for openSUSE:Factory checked 
in at 2015-06-04 10:02:50

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


Package is cantor

Changes:

--- /work/SRC/openSUSE:Factory/cantor/cantor.changes2015-05-15 
09:56:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.cantor.new/cantor.changes   2015-06-04 
10:02:51.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:32:01 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  cantor-15.04.1.tar.xz

New:

  cantor-15.04.2.tar.xz



Other differences:
--
++ cantor.spec ++
--- /var/tmp/diff_new_pack.ZGqfL9/_old  2015-06-04 10:02:52.0 +0200
+++ /var/tmp/diff_new_pack.ZGqfL9/_new  2015-06-04 10:02:52.0 +0200
@@ -19,7 +19,7 @@
 %global libMAJOR 6
 
 Name:   cantor
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Worksheet GUI for mathematical software
 License:GPL-2.0+

++ cantor-15.04.1.tar.xz - cantor-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cantor-15.04.1/CMakeLists.txt 
new/cantor-15.04.2/CMakeLists.txt
--- old/cantor-15.04.1/CMakeLists.txt   2015-04-28 16:34:27.0 +0200
+++ new/cantor-15.04.2/CMakeLists.txt   2015-05-28 13:39:44.0 +0200
@@ -57,6 +57,6 @@
 add_subdirectory(src)
 add_subdirectory(icons)
 
-install(FILES cantor.appdata.xml DESTINATION ${SHARE_INSTALL_PREFIX}/appdata/)
+install(FILES org.kde.cantor.appdata.xml DESTINATION 
${SHARE_INSTALL_PREFIX}/appdata/)
 
 feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cantor-15.04.1/cantor.appdata.xml 
new/cantor-15.04.2/cantor.appdata.xml
--- old/cantor-15.04.1/cantor.appdata.xml   2015-04-28 16:34:27.0 
+0200
+++ new/cantor-15.04.2/cantor.appdata.xml   1970-01-01 01:00:00.0 
+0100
@@ -1,93 +0,0 @@
-?xml version=1.0 encoding=utf-8?
-component type=desktop
-  idorg.kde.cantor.desktop/id
-  metadata_licenseCC0-1.0/metadata_license
-  project_licenseGPL-2.0+/project_license
-  nameCantor/name
-  name xml:lang=astCantor/name
-  name xml:lang=caCantor/name
-  name xml:lang=csCantor/name
-  name xml:lang=daCantor/name
-  name xml:lang=deCantor/name
-  name xml:lang=en-GBCantor/name
-  name xml:lang=esCantor/name
-  name xml:lang=etCantor/name
-  name xml:lang=fiCantor/name
-  name xml:lang=frCantor/name
-  name xml:lang=itCantor/name
-  name xml:lang=ndsCantor/name
-  name xml:lang=nlCantor/name
-  name xml:lang=plCantor/name
-  name xml:lang=ptCantor/name
-  name xml:lang=pt-BRCantor/name
-  name xml:lang=ruCantor/name
-  name xml:lang=skCantor/name
-  name xml:lang=slCantor/name
-  name xml:lang=svCantor/name
-  name xml:lang=trCantor/name
-  name xml:lang=ukCantor/name
-  name xml:lang=x-testxxCantorxx/name
-  name xml:lang=zh-CNCantor/name
-  name xml:lang=zh-TWCantor/name
-  summaryKDE Frontend to Mathematical Software/summary
-  summary xml:lang=astFrontal KDE pa software matemáticu/summary
-  summary xml:lang=caFrontal del KDE per a programari matemàtic/summary
-  summary xml:lang=csUživatelské rozhraní matematického softwaru pro 
KDE/summary
-  summary xml:lang=deEine KDE-Oberfläche für mathematische 
Software/summary
-  summary xml:lang=en-GBKDE Frontend to Mathematical Software/summary
-  summary xml:lang=esInterfaz de KDE para software matemático/summary
-  summary xml:lang=etKDE matemaatikatarkvara kasutajaliides/summary
-  summary xml:lang=fiKDE:n käyttöliittymä matemaattisille 
ohjelmistoille/summary
-  summary xml:lang=frInterface KDE pour les logiciels de 
mathématiques/summary
-  summary xml:lang=itInterfaccia KDE per software matematico/summary
-  summary xml:lang=ndsKDE-Böversiet för Rekenprogrammen/summary
-  summary xml:lang=nlKDE-frontend voor wiskundige software/summary
-  summary xml:lang=plNakładka KDE dla oprogramowania 
matematycznego/summary
-  summary xml:lang=ptInterface para KDE de Aplicações Matemáticas/summary
-  summary xml:lang=pt-BRInterface do KDE para software matemático/summary
-  summary xml:lang=ruОболочка к системам компьютерной алгебры для 
KDE/summary
-  summary xml:lang=skKDE Frontend pre matematický softvér/summary
-  summary xml:lang=slKDE-jevo začelje za matematično programsko 
opremo/summary
-  summary xml:lang=svKDE-gränssnitt till matematisk programvara/summary
-  summary xml:lang=trMatematiksel Yazılım için bir KDE Önyüzü./summary
-  summary xml:lang=ukГрафічна оболонка KDE до математичного програмного 

commit filelight for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is filelight

Changes:

--- /work/SRC/openSUSE:Factory/filelight/filelight.changes  2015-05-15 
09:56:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.filelight.new/filelight.changes 2015-06-04 
10:06:50.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:33:37 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  filelight-15.04.1.tar.xz

New:

  filelight-15.04.2.tar.xz



Other differences:
--
++ filelight.spec ++
--- /var/tmp/diff_new_pack.DtO0Nj/_old  2015-06-04 10:06:51.0 +0200
+++ /var/tmp/diff_new_pack.DtO0Nj/_new  2015-06-04 10:06:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   filelight
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Graphical disk usage viewer
 License:GPL-2.0 or GPL-3.0

++ filelight-15.04.1.tar.xz - filelight-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/filelight-15.04.1/src/app/main.cpp 
new/filelight-15.04.2/src/app/main.cpp
--- old/filelight-15.04.1/src/app/main.cpp  2015-04-13 21:34:24.0 
+0200
+++ new/filelight-15.04.2/src/app/main.cpp  2015-05-14 23:52:55.0 
+0200
@@ -25,6 +25,7 @@
 #include QApplication
 #include QCommandLineParser
 #include QUrl
+#include QDir
 
 #include KAboutData
 #include KLocalizedString
@@ -81,7 +82,9 @@
 MainWindow *mw = new MainWindow();
 
 QStringList args = options.positionalArguments();
-if (args.count()  0) mw-scan(QUrl::fromUserInput(args.at(0)));
+if (args.count()  0) {
+mw-scan(QUrl::fromUserInput(args.at(0), QDir::currentPath(), 
QUrl::AssumeLocalFile));
+}
 
 mw-show();
 }




commit dragonplayer for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package dragonplayer for openSUSE:Factory 
checked in at 2015-06-04 10:05:50

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


Package is dragonplayer

Changes:

--- /work/SRC/openSUSE:Factory/dragonplayer/dragonplayer.changes
2015-05-15 09:56:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.dragonplayer.new/dragonplayer.changes   
2015-06-04 10:05:51.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:33:18 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  dragon-15.04.1.tar.xz

New:

  dragon-15.04.2.tar.xz



Other differences:
--
++ dragonplayer.spec ++
--- /var/tmp/diff_new_pack.q98NKg/_old  2015-06-04 10:05:52.0 +0200
+++ /var/tmp/diff_new_pack.q98NKg/_new  2015-06-04 10:05:52.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Video/Players
 Url:http://dragonplayer.org/
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:dragon-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ dragon-15.04.1.tar.xz - dragon-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dragon-15.04.1/misc/dragonplayer.appdata.xml 
new/dragon-15.04.2/misc/dragonplayer.appdata.xml
--- old/dragon-15.04.1/misc/dragonplayer.appdata.xml2015-05-01 
07:58:53.0 +0200
+++ new/dragon-15.04.2/misc/dragonplayer.appdata.xml2015-05-24 
08:02:16.0 +0200
@@ -41,7 +41,7 @@
   empower you to simply play multimedia files.
 /p
 p xml:lang=bsDragon Player  je multimedijalni plejer gdje je fokus na 
jednostavnosti, umesto funkcija. Dragon Player  radi jednu stvar, i samo jednu 
stvar, a to je izvedba multimedijalnih fajlova. Njiegov jednostavan interfejs 
je dizajniran da se ne stane na put, a umjesto toga osnaži vas da jednostavno 
reprodukujete multimedijalne fajlove./p
-p xml:lang=caEl Dragon Player és un reproductor multimèdia que se 
centra en la simplicitat, en lloc de les característiques. El Dragon Player fa 
una cosa, i només una cosa, la qual és reproduir fitxers multimèdia. Té un 
interfície senzilla, la qual està dissenyada per a que no s'interposi en el 
vostre camí i que simplement pugueu reproduir els fitxers multimèdia./p
+p xml:lang=caEl Dragon Player és un reproductor multimèdia que se 
centra en la simplicitat, en lloc de les característiques. El Dragon Player fa 
una cosa, i només una cosa, la qual és reproduir fitxers multimèdia. Té una 
interfície senzilla, la qual està dissenyada perquè no s'interposi en el vostre 
camí i que simplement pugueu reproduir els fitxers multimèdia./p
 p xml:lang=elΤο Dragon Player είναι ένας αναπαραγωγέας πολυμέσων που 
εστιάζει στην απλότητα, αντί για την πληθώρα χαρακτηριστικών. Το Dragon Player 
κάνει ένα και μόνο πράγμα, να παίζει αρχεία πολυμέσων. Η απλή διεπαφή του δεν 
έχει σχεδιαστεί για να σας εμποδίζει, αντίθετα σας αφήνει απλώς να παίξετε 
αρχεία πολυμέσων./p
 p xml:lang=en-GBDragon Player is a multimedia player where the focus 
is on simplicity, instead of features. Dragon Player does one thing, and only 
one thing, which is playing multimedia files. It's simple interface is designed 
not to get in your way and instead empower you to simply play multimedia 
files./p
 p xml:lang=esDragon Player es un reproductor multimedia centrado en la 
simplicidad en lugar de las características. Hace una cosa, y solo una cosa: 
reproducir archivos multimedia. Su sencilla interfaz no está diseñada para 
ponerse en tu camino, sino para ayudarte a reproducir archivos multimedia 
fácilmente./p
@@ -61,7 +61,7 @@
 p xml:lang=sr-ijekavianЗмајев плејер је мултимедијални плејер са 
тежиштем на једноставности уместо на могућностима. Има једну и само једну 
намену: пуштање мултимедијалних фајлова. Пружа једноставно сучеље које вас не 
замара детаљима, већ омогућава да једноставно пуштате мултимедијалне 
фајлове./p
 p xml:lang=sr-ijekavianlatinZmajev plejer je multimedijalni plejer sa 
težištem na jednostavnosti umesto na mogućnostima. Ima jednu i samo jednu 
namenu: puštanje multimedijalnih fajlova. Pruža jednostavno sučelje koje vas ne 
zamara detaljima, već omogućava da jednostavno puštate multimedijalne 
fajlove./p
 p xml:lang=svDragon videospelare är en multimediaspelare med fokus på 
enkelhet istället för funktioner. Dragon videospelare gör endast en sak, 
nämligen spela multimediafiler. Dess enkla gränssnitt är konstruerat för att 
inte vara i vägen utan istället ge dig möjlighet att enkelt 

commit kapman for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kapman for openSUSE:Factory checked 
in at 2015-06-04 10:14:51

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


Package is kapman

Changes:

--- /work/SRC/openSUSE:Factory/kapman/kapman.changes2015-05-15 
09:57:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.kapman.new/kapman.changes   2015-06-04 
10:14:52.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:35:22 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kapman-15.04.1.tar.xz

New:

  kapman-15.04.2.tar.xz



Other differences:
--
++ kapman.spec ++
--- /var/tmp/diff_new_pack.OnrN0C/_old  2015-06-04 10:14:53.0 +0200
+++ /var/tmp/diff_new_pack.OnrN0C/_new  2015-06-04 10:14:53.0 +0200
@@ -42,7 +42,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kapman-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ kapman-15.04.1.tar.xz - kapman-15.04.2.tar.xz ++




commit kbreakout for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is kbreakout

Changes:

--- /work/SRC/openSUSE:Factory/kbreakout/kbreakout.changes  2015-05-15 
09:57:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.kbreakout.new/kbreakout.changes 2015-06-04 
10:19:52.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:37:13 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kbreakout-15.04.1.tar.xz

New:

  kbreakout-15.04.2.tar.xz



Other differences:
--
++ kbreakout.spec ++
--- /var/tmp/diff_new_pack.z4kxCB/_old  2015-06-04 10:19:52.0 +0200
+++ /var/tmp/diff_new_pack.z4kxCB/_new  2015-06-04 10:19:52.0 +0200
@@ -45,7 +45,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Breakout
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kbreakout-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ kbreakout-15.04.1.tar.xz - kbreakout-15.04.2.tar.xz ++




commit kde-dev-utils for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kde-dev-utils for openSUSE:Factory 
checked in at 2015-06-04 10:41:30

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


Package is kde-dev-utils

Changes:

--- /work/SRC/openSUSE:Factory/kde-dev-utils/kde-dev-utils.changes  
2015-05-15 09:57:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.kde-dev-utils.new/kde-dev-utils.changes 
2015-06-04 10:41:31.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:37:50 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kde-dev-utils-15.04.1.tar.xz

New:

  kde-dev-utils-15.04.2.tar.xz



Other differences:
--
++ kde-dev-utils.spec ++
--- /var/tmp/diff_new_pack.NSKATf/_old  2015-06-04 10:41:32.0 +0200
+++ /var/tmp/diff_new_pack.NSKATf/_new  2015-06-04 10:41:32.0 +0200
@@ -22,7 +22,7 @@
 License:GPL-2.0 and GFDL-1.2 and LGPL-2.0
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kde-dev-utils-15.04.1.tar.xz - kde-dev-utils-15.04.2.tar.xz ++




commit kdebase4-runtime for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-runtime for 
openSUSE:Factory checked in at 2015-06-04 10:47:49

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


Package is kdebase4-runtime

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-runtime/kdebase4-runtime.changes
2015-05-15 09:58:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdebase4-runtime.new/kdebase4-runtime.changes   
2015-06-04 10:47:50.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:02:12 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kde-runtime-15.04.1.tar.xz

New:

  kde-runtime-15.04.2.tar.xz



Other differences:
--
++ kdebase4-runtime.spec ++
--- /var/tmp/diff_new_pack.UM1U35/_old  2015-06-04 10:47:51.0 +0200
+++ /var/tmp/diff_new_pack.UM1U35/_new  2015-06-04 10:47:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdebase4-runtime
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:The KDE Runtime Components
 License:GPL-2.0+


++ kde-runtime-15.04.1.tar.xz - kde-runtime-15.04.2.tar.xz ++
/work/SRC/openSUSE:Factory/kdebase4-runtime/kde-runtime-15.04.1.tar.xz 
/work/SRC/openSUSE:Factory/.kdebase4-runtime.new/kde-runtime-15.04.2.tar.xz 
differ: char 27, line 1




commit kdenetwork4-filesharing for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdenetwork4-filesharing for 
openSUSE:Factory checked in at 2015-06-04 10:54:03

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


Package is kdenetwork4-filesharing

Changes:

--- 
/work/SRC/openSUSE:Factory/kdenetwork4-filesharing/kdenetwork4-filesharing.changes
  2015-05-15 09:58:35.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdenetwork4-filesharing.new/kdenetwork4-filesharing.changes
 2015-06-04 10:54:04.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:10:05 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdenetwork-filesharing-15.04.1.tar.xz

New:

  kdenetwork-filesharing-15.04.2.tar.xz



Other differences:
--
++ kdenetwork4-filesharing.spec ++
--- /var/tmp/diff_new_pack.o76WC5/_old  2015-06-04 10:54:05.0 +0200
+++ /var/tmp/diff_new_pack.o76WC5/_new  2015-06-04 10:54:05.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   kdenetwork4-filesharing
 BuildRequires:  libkde4-devel
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:KDE Network Libraries
 License:GPL-2.0+

++ kdenetwork-filesharing-15.04.1.tar.xz - 
kdenetwork-filesharing-15.04.2.tar.xz ++




commit kdenetwork-strigi-analyzers for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdenetwork-strigi-analyzers for 
openSUSE:Factory checked in at 2015-06-04 10:52:59

Comparing /work/SRC/openSUSE:Factory/kdenetwork-strigi-analyzers (Old)
 and  /work/SRC/openSUSE:Factory/.kdenetwork-strigi-analyzers.new (New)


Package is kdenetwork-strigi-analyzers

Changes:

--- 
/work/SRC/openSUSE:Factory/kdenetwork-strigi-analyzers/kdenetwork-strigi-analyzers.changes
  2015-05-15 09:58:31.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdenetwork-strigi-analyzers.new/kdenetwork-strigi-analyzers.changes
 2015-06-04 10:53:00.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:09:40 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdenetwork-strigi-analyzers-15.04.1.tar.xz

New:

  kdenetwork-strigi-analyzers-15.04.2.tar.xz



Other differences:
--
++ kdenetwork-strigi-analyzers.spec ++
--- /var/tmp/diff_new_pack.Ugtz2T/_old  2015-06-04 10:53:01.0 +0200
+++ /var/tmp/diff_new_pack.Ugtz2T/_new  2015-06-04 10:53:01.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0+
 Group:  Productivity/Networking/Other
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kdenetwork-strigi-analyzers-15.04.1.tar.xz - 
kdenetwork-strigi-analyzers-15.04.2.tar.xz ++




commit kdf for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdf for openSUSE:Factory checked in 
at 2015-06-04 11:00:03

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


Package is kdf

Changes:

--- /work/SRC/openSUSE:Factory/kdf/kdf.changes  2015-05-15 09:59:00.0 
+0200
+++ /work/SRC/openSUSE:Factory/.kdf.new/kdf.changes 2015-06-04 
11:00:04.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:11:36 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdf-15.04.1.tar.xz

New:

  kdf-15.04.2.tar.xz



Other differences:
--
++ kdf.spec ++
--- /var/tmp/diff_new_pack.ouaSWA/_old  2015-06-04 11:00:04.0 +0200
+++ /var/tmp/diff_new_pack.ouaSWA/_new  2015-06-04 11:00:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdf
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Disk Usage Viewer
 License:GPL-2.0+

++ kdf-15.04.1.tar.xz - kdf-15.04.2.tar.xz ++




commit kfloppy for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kfloppy for openSUSE:Factory checked 
in at 2015-06-04 11:03:07

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


Package is kfloppy

Changes:

--- /work/SRC/openSUSE:Factory/kfloppy/kfloppy.changes  2015-05-15 
09:59:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.kfloppy.new/kfloppy.changes 2015-06-04 
11:03:08.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:12:00 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kfloppy-15.04.1.tar.xz

New:

  kfloppy-15.04.2.tar.xz



Other differences:
--
++ kfloppy.spec ++
--- /var/tmp/diff_new_pack.mziFnu/_old  2015-06-04 11:03:08.0 +0200
+++ /var/tmp/diff_new_pack.mziFnu/_new  2015-06-04 11:03:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kfloppy
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Floppy Formatter
 License:GPL-2.0+

++ kfloppy-15.04.1.tar.xz - kfloppy-15.04.2.tar.xz ++




commit kfourinline for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kfourinline for openSUSE:Factory 
checked in at 2015-06-04 11:04:07

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


Package is kfourinline

Changes:

--- /work/SRC/openSUSE:Factory/kfourinline/kfourinline.changes  2015-05-15 
09:59:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.kfourinline.new/kfourinline.changes 
2015-06-04 11:04:08.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:12:05 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kfourinline-15.04.1.tar.xz

New:

  kfourinline-15.04.2.tar.xz



Other differences:
--
++ kfourinline.spec ++
--- /var/tmp/diff_new_pack.SeiGp9/_old  2015-06-04 11:04:09.0 +0200
+++ /var/tmp/diff_new_pack.SeiGp9/_new  2015-06-04 11:04:09.0 +0200
@@ -45,7 +45,7 @@
 License:LGPL-2.0+
 Group:  Amusements/Toys/Other
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kfourinline-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ kfourinline-15.04.1.tar.xz - kfourinline-15.04.2.tar.xz ++




commit kgpg for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kgpg for openSUSE:Factory checked in 
at 2015-06-04 11:09:23

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


Package is kgpg

Changes:

--- /work/SRC/openSUSE:Factory/kgpg/kgpg.changes2015-05-15 
09:59:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.kgpg.new/kgpg.changes   2015-06-04 
11:09:25.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:12:48 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kgpg-15.04.1.tar.xz

New:

  kgpg-15.04.2.tar.xz



Other differences:
--
++ kgpg.spec ++
--- /var/tmp/diff_new_pack.BuEp2l/_old  2015-06-04 11:09:26.0 +0200
+++ /var/tmp/diff_new_pack.BuEp2l/_new  2015-06-04 11:09:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kgpg
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Encryption Tool
 License:GPL-2.0+

++ kgpg-15.04.1.tar.xz - kgpg-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgpg-15.04.1/editor/kgpgtextedit.cpp 
new/kgpg-15.04.2/editor/kgpgtextedit.cpp
--- old/kgpg-15.04.1/editor/kgpgtextedit.cpp2015-04-08 08:41:22.0 
+0200
+++ new/kgpg-15.04.2/editor/kgpgtextedit.cpp2015-05-26 23:14:40.0 
+0200
@@ -50,6 +50,7 @@
 setAcceptDrops(true);
 setReadOnly(false);
 setUndoRedoEnabled(true);
+setAcceptRichText(false);
 }
 
 KgpgTextEdit::~KgpgTextEdit()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgpg-15.04.1/keysmanager.cpp 
new/kgpg-15.04.2/keysmanager.cpp
--- old/kgpg-15.04.1/keysmanager.cpp2015-04-08 08:41:22.0 +0200
+++ new/kgpg-15.04.2/keysmanager.cpp2015-05-26 23:14:40.0 +0200
@@ -1031,7 +1031,7 @@
 // KABC::Key key; TODO
if (!addresseeList.isEmpty()) {
dlg = new 
Akonadi::ContactEditorDialog(Akonadi::ContactEditorDialog::EditMode, this);
-   dlg-setContact(searchJob-items().first());
+   dlg-setContact(searchJob-items().at(0));
} else {
KABC::Addressee addressee;
addressee.setNameFromString(nd-getName());
@@ -1067,7 +1067,7 @@
 
 void KeysManager::checkList()
 {
-   QListKGpgNode * exportList = iview-selectedNodes();
+   const QListKGpgNode * exportList = iview-selectedNodes();
 
switch (exportList.count()) {
case 0:
@@ -1245,10 +1245,10 @@
QPoint globpos = iview-mapToGlobal(pos);
bool sametype;
KgpgItemType itype;
-   QListKGpgNode * ndlist(iview-selectedNodes(sametype, itype));
+   const QListKGpgNode * ndlist = iview-selectedNodes(sametype, 
itype);
bool unksig = false;
QSetQString l;
-   int cnt = ndlist.count();
+   const int cnt = ndlist.count();
 
// find out if an item has unknown signatures. Only check if the item 
has been
// expanded before as expansion is very expensive and can take several 
seconds
@@ -1561,11 +1561,11 @@
 
 void KeysManager::slotShowPhoto()
 {
-   KService::List list(KMimeTypeTrader::self()-query(QLatin1String( 
image/jpeg )));
+   const KService::List list = 
KMimeTypeTrader::self()-query(QLatin1String(image/jpeg));
if (list.isEmpty()) {
-   KMessageBox::sorry(Q_NULLPTR, i18n(qtA viewer for JPEG images is not 
specified.br/Please check your installation./qt),
-   i18n(Show photo));
-   return;
+   KMessageBox::sorry(Q_NULLPTR, i18n(qtA viewer for JPEG 
images is not specified.br/Please check your installation./qt),
+   i18n(Show photo));
+   return;
}
KGpgNode *nd = iview-selectedNode();
KGpgUatNode *und = nd-toUatNode();
@@ -1709,7 +1709,7 @@
if (iview-selectionModel()-selectedIndexes().isEmpty())
return;
 
-   QModelIndex selectedNodeIndex = 
iview-selectionModel()-selectedIndexes().first();
+   QModelIndex selectedNodeIndex = 
iview-selectionModel()-selectedIndexes().at(0);
 
iview-edit(selectedNodeIndex);
 }
@@ -2149,7 +2149,7 @@
 
 bool KeysManager::importRemoteKeys(const QStringList keyIDs, const bool 
dialog)
 {
-   QStringList kservers(KeyServer::getServerList());
+   const QStringList kservers = KeyServer::getServerList();
if (kservers.isEmpty())
return false;
 
@@ -2388,7 +2388,7 @@
 
 void KeysManager::secretKeyDeleted(int 

commit kio_audiocd for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kio_audiocd for openSUSE:Factory 
checked in at 2015-06-04 11:12:26

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


Package is kio_audiocd

Changes:

--- /work/SRC/openSUSE:Factory/kio_audiocd/kio_audiocd.changes  2015-05-15 
09:59:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.kio_audiocd.new/kio_audiocd.changes 
2015-06-04 11:12:26.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:13:36 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  audiocd-kio-15.04.1.tar.xz

New:

  audiocd-kio-15.04.2.tar.xz



Other differences:
--
++ kio_audiocd.spec ++
--- /var/tmp/diff_new_pack.NG6BCW/_old  2015-06-04 11:12:27.0 +0200
+++ /var/tmp/diff_new_pack.NG6BCW/_new  2015-06-04 11:12:27.0 +0200
@@ -28,7 +28,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:audiocd-kio-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ audiocd-kio-15.04.1.tar.xz - audiocd-kio-15.04.2.tar.xz ++




commit blinken for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package blinken for openSUSE:Factory checked 
in at 2015-06-04 09:59:51

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


Package is blinken

Changes:

--- /work/SRC/openSUSE:Factory/blinken/blinken.changes  2015-05-15 
09:56:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.blinken.new/blinken.changes 2015-06-04 
09:59:52.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:31:02 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  blinken-15.04.1.tar.xz

New:

  blinken-15.04.2.tar.xz



Other differences:
--
++ blinken.spec ++
--- /var/tmp/diff_new_pack.cYbD3J/_old  2015-06-04 09:59:53.0 +0200
+++ /var/tmp/diff_new_pack.cYbD3J/_new  2015-06-04 09:59:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   blinken
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Simon Says Game
 License:GPL-2.0+

++ blinken-15.04.1.tar.xz - blinken-15.04.2.tar.xz ++




commit dolphin-plugins for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package dolphin-plugins for openSUSE:Factory 
checked in at 2015-06-04 10:04:50

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


Package is dolphin-plugins

Changes:

--- /work/SRC/openSUSE:Factory/dolphin-plugins/dolphin-plugins.changes  
2015-05-15 09:56:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.dolphin-plugins.new/dolphin-plugins.changes 
2015-06-04 10:04:51.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:32:11 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  dolphin-plugins-15.04.1.tar.xz

New:

  dolphin-plugins-15.04.2.tar.xz



Other differences:
--
++ dolphin-plugins.spec ++
--- /var/tmp/diff_new_pack.3qzn8Y/_old  2015-06-04 10:04:52.0 +0200
+++ /var/tmp/diff_new_pack.3qzn8Y/_new  2015-06-04 10:04:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   dolphin-plugins
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Version control plugins for Dolphin
 License:GPL-2.0+

++ dolphin-plugins-15.04.1.tar.xz - dolphin-plugins-15.04.2.tar.xz ++




commit granatier for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package granatier for openSUSE:Factory 
checked in at 2015-06-04 10:07:49

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


Package is granatier

Changes:

--- /work/SRC/openSUSE:Factory/granatier/granatier.changes  2015-05-15 
09:56:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.granatier.new/granatier.changes 2015-06-04 
10:07:51.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:34:07 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  granatier-15.04.1.tar.xz

New:

  granatier-15.04.2.tar.xz



Other differences:
--
++ granatier.spec ++
--- /var/tmp/diff_new_pack.F9CBEx/_old  2015-06-04 10:07:51.0 +0200
+++ /var/tmp/diff_new_pack.F9CBEx/_new  2015-06-04 10:07:51.0 +0200
@@ -41,7 +41,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:granatier-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ granatier-15.04.1.tar.xz - granatier-15.04.2.tar.xz ++




commit kamera for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is kamera

Changes:

--- /work/SRC/openSUSE:Factory/kamera/kamera.changes2015-05-15 
09:56:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.kamera.new/kamera.changes   2015-06-04 
10:13:51.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:35:14 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kamera-15.04.1.tar.xz

New:

  kamera-15.04.2.tar.xz



Other differences:
--
++ kamera.spec ++
--- /var/tmp/diff_new_pack.n98397/_old  2015-06-04 10:13:51.0 +0200
+++ /var/tmp/diff_new_pack.n98397/_new  2015-06-04 10:13:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kamera
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Base package for kdegraphics apps
 License:LGPL-2.1+

++ kamera-15.04.1.tar.xz - kamera-15.04.2.tar.xz ++




commit kalzium for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kalzium for openSUSE:Factory checked 
in at 2015-06-04 10:12:46

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


Package is kalzium

Changes:

--- /work/SRC/openSUSE:Factory/kalzium/kalzium.changes  2015-05-15 
09:56:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.kalzium.new/kalzium.changes 2015-06-04 
10:12:47.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:35:00 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kalzium-15.04.1.tar.xz

New:

  kalzium-15.04.2.tar.xz



Other differences:
--
++ kalzium.spec ++
--- /var/tmp/diff_new_pack.RdYygk/_old  2015-06-04 10:12:48.0 +0200
+++ /var/tmp/diff_new_pack.RdYygk/_new  2015-06-04 10:12:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kalzium
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Periodic Table of Elements
 License:GPL-2.0+

++ kalzium-15.04.1.tar.xz - kalzium-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kalzium-15.04.1/src/kalzium.desktop 
new/kalzium-15.04.2/src/kalzium.desktop
--- old/kalzium-15.04.1/src/kalzium.desktop 2015-04-27 07:41:01.0 
+0200
+++ new/kalzium-15.04.2/src/kalzium.desktop 2015-05-22 10:29:10.0 
+0200
@@ -10,7 +10,7 @@
 Comment[bg]=Таблица на химичните елементи в KDE
 Comment[bn]=কে.ডি.ই. উপস্থাপিত পদার্থের পর্যায় সারণী
 Comment[bs]=KDE Periodni sistem elemenata
-Comment[ca]=Taula periòdica dels elements per a KDE
+Comment[ca]=Taula periòdica dels elements per al KDE
 Comment[ca@valencia]=Taula periòdica dels elements per a KDE
 Comment[cs]=Periodická tabulka prvků pro KDE
 Comment[csb]=Tôfla òkresowëch pierwińców dlô KDE




commit kajongg for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kajongg for openSUSE:Factory checked 
in at 2015-06-04 10:11:47

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


Package is kajongg

Changes:

--- /work/SRC/openSUSE:Factory/kajongg/kajongg.changes  2015-05-15 
09:56:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.kajongg.new/kajongg.changes 2015-06-04 
10:11:48.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:34:47 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kajongg-15.04.1.tar.xz

New:

  kajongg-15.04.2.tar.xz



Other differences:
--
++ kajongg.spec ++
--- /var/tmp/diff_new_pack.PwcSKa/_old  2015-06-04 10:11:49.0 +0200
+++ /var/tmp/diff_new_pack.PwcSKa/_new  2015-06-04 10:11:49.0 +0200
@@ -25,7 +25,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kajongg-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kajongg-15.04.1.tar.xz - kajongg-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kajongg-15.04.1/kajongg.appdata.xml 
new/kajongg-15.04.2/kajongg.appdata.xml
--- old/kajongg-15.04.1/kajongg.appdata.xml 2015-04-27 07:44:57.0 
+0200
+++ new/kajongg-15.04.2/kajongg.appdata.xml 2015-05-23 07:52:01.0 
+0200
@@ -58,7 +58,7 @@
   or computer players.
 /p
 p xml:lang=bsKajongg je drevna kineska igra na ploči za 4 igrača. 
Kajongg se može koristiti na dva različita načina: Igranje ručne igre u kojoj 
igrate kao i uvijek i koristiti Kajongg za izračunavanje rezultata i za 
knjigovodstvo. Ili možete koristiti Kajongg igrati protiv bilo koje kombinacije 
drugih ljudskih igrača ili računarskih igrača./p
-p xml:lang=caEl Kajongg és l'antic joc de tauler xinés per 4 jugadors. 
El Kajongg es pot usar de dues maneres diferents: Puntuant un joc manual a on 
jugueu com sempre i useu el Kajongg pel càlcul de les puntuacions i 
l'enregistrament. O podeu usar el Kajongg per jugar contra qualsevol combinació 
d'altres jugadors humans o ordinadors./p
+p xml:lang=caEl Kajongg és l'antic joc de tauler xinès per 4 jugadors. 
El Kajongg es pot usar de dues maneres diferents: Puntuant un joc manual a on 
jugueu com sempre i useu el Kajongg pel càlcul de les puntuacions i 
l'enregistrament. O podeu usar el Kajongg per jugar contra qualsevol combinació 
d'altres jugadors humans o ordinadors./p
 p xml:lang=en-GBKajongg is the ancient Chinese board game for 4 
players. Kajongg can be used in two different ways: Scoring a manual game where 
you play as always and use Kajongg for the computation of scores and for 
bookkeeping. Or you can use Kajongg to play against any combination of other 
human players or computer players./p
 p xml:lang=esKajongg es un antiguo juego de tablero chino para 4 
jugadores. Kajongg puede jugarse de dos maneras distintas: jugar de forma 
manual y usar Kajongg para los cómputos de la puntuación y las cuentas. O puede 
usar Kajongg para jugar contra cualquier combinación de jugadores humanos o 
máquinas./p
 p xml:lang=itKajongg è l'antico gioco cinese da tavolo per quattro 
giocatori. Kajongg può essere usato in due modi differenti: conteggio dei punti 
di una partita manuale, in cui giochi come al solito ma utilizzi Kajongg per 
contare e registrare i punti. Oppure puoi usarlo per giocare contro una 
qualsiasi combinazione di persone e computer./p




commit kcachegrind for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kcachegrind for openSUSE:Factory 
checked in at 2015-06-04 10:21:49

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


Package is kcachegrind

Changes:

--- /work/SRC/openSUSE:Factory/kcachegrind/kcachegrind.changes  2015-05-15 
09:57:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcachegrind.new/kcachegrind.changes 
2015-06-04 10:21:51.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:37:26 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kcachegrind-15.04.1.tar.xz

New:

  kcachegrind-15.04.2.tar.xz



Other differences:
--
++ kcachegrind.spec ++
--- /var/tmp/diff_new_pack.DIednH/_old  2015-06-04 10:21:51.0 +0200
+++ /var/tmp/diff_new_pack.DIednH/_new  2015-06-04 10:21:51.0 +0200
@@ -22,7 +22,7 @@
 License:GPL-2.0 and BSD-4-Clause and GFDL-1.2
 Group:  Development/Tools/Other
 Url:http://www.kde.org/
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kcachegrind-15.04.1.tar.xz - kcachegrind-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcachegrind-15.04.1/kcachegrind/kcachegrind.desktop 
new/kcachegrind-15.04.2/kcachegrind/kcachegrind.desktop
--- old/kcachegrind-15.04.1/kcachegrind/kcachegrind.desktop 2014-10-14 
20:38:43.0 +0200
+++ new/kcachegrind-15.04.2/kcachegrind/kcachegrind.desktop 2015-05-15 
09:47:33.0 +0200
@@ -67,7 +67,7 @@
 GenericName=Profiler Frontend
 GenericName[ast]=Interface del analizador de rendimientu
 GenericName[bs]=Profajlerski program
-GenericName[ca]=Frontal del Profiler
+GenericName[ca]=Frontal de l'analitzador del rendiment
 GenericName[ca@valencia]=Frontal del Profiler
 GenericName[cs]=Rozhraní pro profilaci
 GenericName[cy]=Blaen-wyneb Proffilydd
@@ -124,7 +124,7 @@
 Comment[ast]=Visualización de datos d'analís de rendimientu
 Comment[bg]=Визуализация на данните за производителност
 Comment[bs]=Predočenje podataka profiliranja performansi
-Comment[ca]=Visualització de dades de perfilat de rendiment
+Comment[ca]=Visualització de dades de l'anàlisi del rendiment
 Comment[ca@valencia]=Visualització de dades de perfilat de rendiment
 Comment[cs]=Vizualizace profilovacích dat výkonu
 Comment[da]=Visualisering af profileringsdata
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcachegrind-15.04.1/qcachegrind/qcachegrind.desktop 
new/kcachegrind-15.04.2/qcachegrind/qcachegrind.desktop
--- old/kcachegrind-15.04.1/qcachegrind/qcachegrind.desktop 2014-10-14 
20:38:43.0 +0200
+++ new/kcachegrind-15.04.2/qcachegrind/qcachegrind.desktop 2015-05-15 
09:47:33.0 +0200
@@ -48,7 +48,7 @@
 GenericName=Profiler Frontend
 GenericName[ast]=Interface del analizador de rendimientu
 GenericName[bs]=Profajlerski program
-GenericName[ca]=Frontal del Profiler
+GenericName[ca]=Frontal de l'analitzador del rendiment
 GenericName[ca@valencia]=Frontal del Profiler
 GenericName[cs]=Rozhraní pro profilaci
 GenericName[cy]=Blaen-wyneb Proffilydd
@@ -105,7 +105,7 @@
 Comment[ast]=Visualización de datos d'analís de rendimientu
 Comment[bg]=Визуализация на данните за производителност
 Comment[bs]=Predočenje podataka profiliranja performansi
-Comment[ca]=Visualització de dades de perfilat de rendiment
+Comment[ca]=Visualització de dades de l'anàlisi del rendiment
 Comment[ca@valencia]=Visualització de dades de perfilat de rendiment
 Comment[cs]=Vizualizace profilovacích dat výkonu
 Comment[da]=Visualisering af profileringsdata




commit kbruch for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kbruch for openSUSE:Factory checked 
in at 2015-06-04 10:20:50

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


Package is kbruch

Changes:

--- /work/SRC/openSUSE:Factory/kbruch/kbruch.changes2015-05-15 
09:57:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.kbruch.new/kbruch.changes   2015-06-04 
10:20:51.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:37:20 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kbruch-15.04.1.tar.xz

New:

  kbruch-15.04.2.tar.xz



Other differences:
--
++ kbruch.spec ++
--- /var/tmp/diff_new_pack.qVCrUD/_old  2015-06-04 10:20:52.0 +0200
+++ /var/tmp/diff_new_pack.qVCrUD/_new  2015-06-04 10:20:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kbruch
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Excercise Fractions
 License:GPL-2.0+

++ kbruch-15.04.1.tar.xz - kbruch-15.04.2.tar.xz ++




commit kde-mplayer-thumbnailer for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kde-mplayer-thumbnailer for 
openSUSE:Factory checked in at 2015-06-04 10:42:30

Comparing /work/SRC/openSUSE:Factory/kde-mplayer-thumbnailer (Old)
 and  /work/SRC/openSUSE:Factory/.kde-mplayer-thumbnailer.new (New)


Package is kde-mplayer-thumbnailer

Changes:

--- 
/work/SRC/openSUSE:Factory/kde-mplayer-thumbnailer/kde-mplayer-thumbnailer.changes
  2015-05-15 09:57:48.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kde-mplayer-thumbnailer.new/kde-mplayer-thumbnailer.changes
 2015-06-04 10:42:31.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:38:15 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  mplayerthumbs-15.04.1.tar.xz

New:

  mplayerthumbs-15.04.2.tar.xz



Other differences:
--
++ kde-mplayer-thumbnailer.spec ++
--- /var/tmp/diff_new_pack.mcth8K/_old  2015-06-04 10:42:31.0 +0200
+++ /var/tmp/diff_new_pack.mcth8K/_new  2015-06-04 10:42:31.0 +0200
@@ -23,7 +23,7 @@
 License:LGPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:mplayerthumbs-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ mplayerthumbs-15.04.1.tar.xz - mplayerthumbs-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mplayerthumbs-15.04.1/src/videopreview.desktop 
new/mplayerthumbs-15.04.2/src/videopreview.desktop
--- old/mplayerthumbs-15.04.1/src/videopreview.desktop  2014-07-25 
07:39:59.0 +0200
+++ new/mplayerthumbs-15.04.2/src/videopreview.desktop  2015-05-24 
09:57:46.0 +0200
@@ -4,7 +4,7 @@
 Name[ar]=ملفات الفيديو (MPlayerThumbs)
 Name[bg]=Видео файлове (MPlayerThumbs)
 Name[bs]=Video datoteke (MPlayerThumbs)
-Name[ca]=Fitxers de vídeo (Miniatures de l'MPlayer)
+Name[ca]=Fitxers de vídeo (Miniatures del MPlayer)
 Name[ca@valencia]=Fitxers de vídeo (Miniatures de l'MPlayer)
 Name[cs]=Soubory videa (MPlayerThumbs)
 Name[da]=Videofiler (MPlayerThumbs)




commit kdegraphics-thumbnailers for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdegraphics-thumbnailers for 
openSUSE:Factory checked in at 2015-06-04 10:52:00

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


Package is kdegraphics-thumbnailers

Changes:

--- 
/work/SRC/openSUSE:Factory/kdegraphics-thumbnailers/kdegraphics-thumbnailers.changes
2015-05-15 09:58:27.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdegraphics-thumbnailers.new/kdegraphics-thumbnailers.changes
   2015-06-04 10:52:01.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:09:24 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdegraphics-thumbnailers-15.04.1.tar.xz

New:

  kdegraphics-thumbnailers-15.04.2.tar.xz



Other differences:
--
++ kdegraphics-thumbnailers.spec ++
--- /var/tmp/diff_new_pack.13C8W2/_old  2015-06-04 10:52:01.0 +0200
+++ /var/tmp/diff_new_pack.13C8W2/_new  2015-06-04 10:52:01.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdegraphics-thumbnailers
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Graphics file thumbnail generators
 License:LGPL-2.1+

++ kdegraphics-thumbnailers-15.04.1.tar.xz - 
kdegraphics-thumbnailers-15.04.2.tar.xz ++




commit kdesdk4-scripts for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdesdk4-scripts for openSUSE:Factory 
checked in at 2015-06-04 10:58:04

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


Package is kdesdk4-scripts

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk4-scripts/kdesdk4-scripts.changes  
2015-05-15 09:58:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdesdk4-scripts.new/kdesdk4-scripts.changes 
2015-06-04 10:58:05.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:10:45 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kde-dev-scripts-15.04.1.tar.xz

New:

  kde-dev-scripts-15.04.2.tar.xz



Other differences:
--
++ kdesdk4-scripts.spec ++
--- /var/tmp/diff_new_pack.rYjPPa/_old  2015-06-04 10:58:06.0 +0200
+++ /var/tmp/diff_new_pack.rYjPPa/_new  2015-06-04 10:58:06.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{rname}-%{version}.tar.xz
 Patch0: %{rname}-4.14.3-fix-bashisms.patch

++ kde-dev-scripts-15.04.1.tar.xz - kde-dev-scripts-15.04.2.tar.xz ++




commit kdewebdev4 for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kdewebdev4 for openSUSE:Factory 
checked in at 2015-06-04 10:59:03

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


Package is kdewebdev4

Changes:

--- /work/SRC/openSUSE:Factory/kdewebdev4/kdewebdev4.changes2015-05-15 
09:58:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdewebdev4.new/kdewebdev4.changes   
2015-06-04 10:59:04.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:11:26 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kdewebdev-15.04.1.tar.xz

New:

  kdewebdev-15.04.2.tar.xz



Other differences:
--
++ kdewebdev4.spec ++
--- /var/tmp/diff_new_pack.BRSNoe/_old  2015-06-04 10:59:04.0 +0200
+++ /var/tmp/diff_new_pack.BRSNoe/_new  2015-06-04 10:59:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdewebdev4
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Base package for kdewebdev
 License:GPL-2.0+

++ kdewebdev-15.04.1.tar.xz - kdewebdev-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdewebdev-15.04.1/klinkstatus/src/plugins/scripting/krossmoduleklinkstatus.desktop
 
new/kdewebdev-15.04.2/klinkstatus/src/plugins/scripting/krossmoduleklinkstatus.desktop
--- 
old/kdewebdev-15.04.1/klinkstatus/src/plugins/scripting/krossmoduleklinkstatus.desktop
  2014-07-25 07:44:39.0 +0200
+++ 
new/kdewebdev-15.04.2/klinkstatus/src/plugins/scripting/krossmoduleklinkstatus.desktop
  2015-05-10 09:36:16.0 +0200
@@ -46,7 +46,7 @@
 Comment=Allow execution of scripts
 Comment[bg]=Позволява изпълнение на скриптове
 Comment[bs]=Dozvoli izvršenje skripti
-Comment[ca]=Permet l'execució d'scripts
+Comment[ca]=Permet l'execució de scripts
 Comment[ca@valencia]=Permet l'execució d'scripts
 Comment[cs]=Umožní spouštění skriptů
 Comment[da]=Tillad afvikling af scripts




commit kgoldrunner for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kgoldrunner for openSUSE:Factory 
checked in at 2015-06-04 11:08:16

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


Package is kgoldrunner

Changes:

--- /work/SRC/openSUSE:Factory/kgoldrunner/kgoldrunner.changes  2015-05-15 
09:59:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kgoldrunner.new/kgoldrunner.changes 
2015-06-04 11:08:18.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:12:39 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kgoldrunner-15.04.1.tar.xz

New:

  kgoldrunner-15.04.2.tar.xz



Other differences:
--
++ kgoldrunner.spec ++
--- /var/tmp/diff_new_pack.OHqAjm/_old  2015-06-04 11:08:19.0 +0200
+++ /var/tmp/diff_new_pack.OHqAjm/_new  2015-06-04 11:08:19.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kgoldrunner-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kgoldrunner-15.04.1.tar.xz - kgoldrunner-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgoldrunner-15.04.1/themes/default.desktop 
new/kgoldrunner-15.04.2/themes/default.desktop
--- old/kgoldrunner-15.04.1/themes/default.desktop  2014-12-30 
05:19:53.0 +0100
+++ new/kgoldrunner-15.04.2/themes/default.desktop  2015-05-23 
10:14:45.0 +0200
@@ -56,7 +56,7 @@
 Description=A light and clean theme for KDE4
 Description[ast]=Un tema lluminosu y llimpiu pa KDE4
 Description[bs]=Blaga i čista tema za KDE4
-Description[ca]=Un tema net i lleuger per KDE
+Description[ca]=Un tema net i lleuger per al KDE4
 Description[ca@valencia]=Un tema net i lleuger per KDE
 Description[da]=Et let og enkelt tema til KDE4
 Description[de]=Ein einfaches und sauberes Design für KDE4.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgoldrunner-15.04.1/themes/nostalgia-blues.desktop 
new/kgoldrunner-15.04.2/themes/nostalgia-blues.desktop
--- old/kgoldrunner-15.04.1/themes/nostalgia-blues.desktop  2014-12-30 
05:19:53.0 +0100
+++ new/kgoldrunner-15.04.2/themes/nostalgia-blues.desktop  2015-05-23 
10:14:45.0 +0200
@@ -2,7 +2,7 @@
 Name=Nostalgia Blues
 Name[ast]=Señaldá n'azul
 Name[bs]=Nostalgija bluz
-Name[ca]=Nostàlgia blau
+Name[ca]=Nostàlgia blava
 Name[ca@valencia]=Nostàlgia blau
 Name[da]=Nostalgia Blues
 Name[de]=Nostalgie (blau)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgoldrunner-15.04.1/themes/nostalgia.desktop 
new/kgoldrunner-15.04.2/themes/nostalgia.desktop
--- old/kgoldrunner-15.04.1/themes/nostalgia.desktop2014-12-30 
05:19:53.0 +0100
+++ new/kgoldrunner-15.04.2/themes/nostalgia.desktop2015-05-23 
10:14:45.0 +0200
@@ -2,7 +2,7 @@
 Name=Nostalgia
 Name[ast]=Señaldá
 Name[bs]=Nostalgija
-Name[ca]=Nostàlgia 
+Name[ca]=Nostàlgia
 Name[ca@valencia]=Nostàlgia 
 Name[cs]=Nostalgie
 Name[da]=Nostalgia




commit kget for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kget for openSUSE:Factory checked in 
at 2015-06-04 11:07:17

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


Package is kget

Changes:

--- /work/SRC/openSUSE:Factory/kget/kget.changes2015-05-15 
09:59:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.kget.new/kget.changes   2015-06-04 
11:07:18.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:12:31 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kget-15.04.1.tar.xz

New:

  kget-15.04.2.tar.xz



Other differences:
--
++ kget.spec ++
--- /var/tmp/diff_new_pack.tHuAs3/_old  2015-06-04 11:07:19.0 +0200
+++ /var/tmp/diff_new_pack.tHuAs3/_new  2015-06-04 11:07:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kget
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Download Manager
 License:GPL-2.0+

++ kget-15.04.1.tar.xz - kget-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kget-15.04.1/transfer-plugins/multisegmentkio/kget_multisegkiofactory.desktop
 
new/kget-15.04.2/transfer-plugins/multisegmentkio/kget_multisegkiofactory.desktop
--- 
old/kget-15.04.1/transfer-plugins/multisegmentkio/kget_multisegkiofactory.desktop
   2015-03-12 19:14:05.0 +0100
+++ 
new/kget-15.04.2/transfer-plugins/multisegmentkio/kget_multisegkiofactory.desktop
   2015-05-25 09:50:03.0 +0200
@@ -9,7 +9,7 @@
 Name[ar]=متعدد اجزاء KIO
 Name[ast]=Multi SegmentuKIO
 Name[bs]=Više-segmentni KIO
-Name[ca]=KIO per a multi-segment
+Name[ca]=KIO per a multisegment
 Name[ca@valencia]=Multisegment KIO
 Name[cs]=Multi Segment KIO
 Name[da]=Multi Segment-KIO
@@ -66,7 +66,7 @@
 Comment[ast]=Complementu de baxada de ficheru multicapa
 Comment[bg]=Приставка за многонишково изтегляне на файлове
 Comment[bs]=Dodatak za više-nitno preuzimanje datoteka
-Comment[ca]=Connector de transferències multi-fil per al KGet
+Comment[ca]=Connector de transferències multifil per al KGet
 Comment[ca@valencia]=Connector de transferències multifil per al KGet
 Comment[cs]=Modul pro stahování ve více vláknech
 Comment[da]=Plugin til flertrådet fildownload




commit killbots for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package killbots for openSUSE:Factory 
checked in at 2015-06-04 11:11:21

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


Package is killbots

Changes:

--- /work/SRC/openSUSE:Factory/killbots/killbots.changes2015-05-15 
09:59:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.killbots.new/killbots.changes   2015-06-04 
11:11:23.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:13:30 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  killbots-15.04.1.tar.xz

New:

  killbots-15.04.2.tar.xz



Other differences:
--
++ killbots.spec ++
--- /var/tmp/diff_new_pack.xY1j5E/_old  2015-06-04 11:11:24.0 +0200
+++ /var/tmp/diff_new_pack.xY1j5E/_new  2015-06-04 11:11:24.0 +0200
@@ -38,7 +38,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:killbots-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ killbots-15.04.1.tar.xz - killbots-15.04.2.tar.xz ++




commit kigo for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kigo for openSUSE:Factory checked in 
at 2015-06-04 11:10:22

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


Package is kigo

Changes:

--- /work/SRC/openSUSE:Factory/kigo/kigo.changes2015-05-15 
09:59:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.kigo.new/kigo.changes   2015-06-04 
11:10:23.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:13:20 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kigo-15.04.1.tar.xz

New:

  kigo-15.04.2.tar.xz



Other differences:
--
++ kigo.spec ++
--- /var/tmp/diff_new_pack.d9JCAc/_old  2015-06-04 11:10:23.0 +0200
+++ /var/tmp/diff_new_pack.d9JCAc/_new  2015-06-04 11:10:23.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kigo-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kigo-15.04.1.tar.xz - kigo-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kigo-15.04.1/data/themes/default.desktop 
new/kigo-15.04.2/data/themes/default.desktop
--- old/kigo-15.04.1/data/themes/default.desktop2015-02-10 
05:45:01.0 +0100
+++ new/kigo-15.04.2/data/themes/default.desktop2015-05-23 
10:14:58.0 +0200
@@ -61,7 +61,7 @@
 Name[zh_TW]=預設
 Description=Kigo Default theme for KDE 4
 Description[bs]=Kigo podrazumjevana tema za KDE 4
-Description[ca]=Tema predeterminat del Kigo per KDE 4
+Description[ca]=Tema predeterminat del Kigo per al KDE 4
 Description[ca@valencia]=Tema predeterminat del Kigo per KDE 4
 Description[cs]=Výchozí motiv Kigo pro KDE 4
 Description[da]=Kigos standardtema til KDE 4




commit kmag for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kmag for openSUSE:Factory checked in 
at 2015-06-04 11:16:46

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


Package is kmag

Changes:

--- /work/SRC/openSUSE:Factory/kmag/kmag.changes2015-05-15 
10:00:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmag.new/kmag.changes   2015-06-04 
11:16:47.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:14:40 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kmag-15.04.1.tar.xz

New:

  kmag-15.04.2.tar.xz



Other differences:
--
++ kmag.spec ++
--- /var/tmp/diff_new_pack.Frsztz/_old  2015-06-04 11:16:47.0 +0200
+++ /var/tmp/diff_new_pack.Frsztz/_new  2015-06-04 11:16:47.0 +0200
@@ -26,7 +26,7 @@
 License:GPL-2.0
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%version.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kmag-15.04.1.tar.xz - kmag-15.04.2.tar.xz ++




commit klettres for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package klettres for openSUSE:Factory 
checked in at 2015-06-04 11:16:32

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


Package is klettres

Changes:

--- /work/SRC/openSUSE:Factory/klettres/klettres.changes2015-05-15 
09:59:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.klettres.new/klettres.changes   2015-06-04 
11:16:33.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:14:15 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  klettres-15.04.1.tar.xz

New:

  klettres-15.04.2.tar.xz



Other differences:
--
++ klettres.spec ++
--- /var/tmp/diff_new_pack.xpSJCl/_old  2015-06-04 11:16:34.0 +0200
+++ /var/tmp/diff_new_pack.xpSJCl/_new  2015-06-04 11:16:34.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   klettres
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Alphabet Learning Game
 License:GPL-2.0+

++ klettres-15.04.1.tar.xz - klettres-15.04.2.tar.xz ++




commit klickety for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package klickety for openSUSE:Factory 
checked in at 2015-06-04 11:16:37

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


Package is klickety

Changes:

--- /work/SRC/openSUSE:Factory/klickety/klickety.changes2015-05-15 
10:00:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.klickety.new/klickety.changes   2015-06-04 
11:16:38.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:14:28 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  klickety-15.04.1.tar.xz

New:

  klickety-15.04.2.tar.xz



Other differences:
--
++ klickety.spec ++
--- /var/tmp/diff_new_pack.LzDW3D/_old  2015-06-04 11:16:39.0 +0200
+++ /var/tmp/diff_new_pack.LzDW3D/_new  2015-06-04 11:16:39.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:klickety-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ klickety-15.04.1.tar.xz - klickety-15.04.2.tar.xz ++




commit kmahjongg for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kmahjongg for openSUSE:Factory 
checked in at 2015-06-04 11:16:51

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


Package is kmahjongg

Changes:

--- /work/SRC/openSUSE:Factory/kmahjongg/kmahjongg.changes  2015-05-15 
10:00:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmahjongg.new/kmahjongg.changes 2015-06-04 
11:16:52.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:14:45 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kmahjongg-15.04.1.tar.xz

New:

  kmahjongg-15.04.2.tar.xz



Other differences:
--
++ kmahjongg.spec ++
--- /var/tmp/diff_new_pack.QKsTUm/_old  2015-06-04 11:16:52.0 +0200
+++ /var/tmp/diff_new_pack.QKsTUm/_new  2015-06-04 11:16:52.0 +0200
@@ -25,7 +25,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kmahjongg-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kmahjongg-15.04.1.tar.xz - kmahjongg-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmahjongg-15.04.1/layouts/X_shaped.desktop 
new/kmahjongg-15.04.2/layouts/X_shaped.desktop
--- old/kmahjongg-15.04.1/layouts/X_shaped.desktop  2015-01-18 
05:07:00.0 +0100
+++ new/kmahjongg-15.04.2/layouts/X_shaped.desktop  2015-05-23 
10:15:12.0 +0200
@@ -2,7 +2,7 @@
 Name=X-shaped
 Name[ast]=En forma de X
 Name[bs]=X-oblikovano
-Name[ca]=Forma d'X
+Name[ca]=Forma de X
 Name[ca@valencia]=Forma d'X
 Name[da]=X-formet
 Name[de]=X-förmig
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmahjongg-15.04.1/layouts/arena.desktop 
new/kmahjongg-15.04.2/layouts/arena.desktop
--- old/kmahjongg-15.04.1/layouts/arena.desktop 2015-01-18 05:07:00.0 
+0100
+++ new/kmahjongg-15.04.2/layouts/arena.desktop 2015-05-23 10:15:12.0 
+0200
@@ -51,7 +51,7 @@
 Name[zh_TW]=競技場
 Description=Circular-aligned seats around a performance area
 Description[bs]=Kružno-poravnata sjedišta oko izvedbenog područja
-Description[ca]=Seients alineats circularment al voltant d'un àrea 
d'acompliment
+Description[ca]=Seients alineats circularment al voltant d'una àrea 
d'acompliment
 Description[ca@valencia]=Seients alineats circularment al voltant d'un àrea 
d'acompliment
 Description[da]=Stole i ring omkring et optræderareal
 Description[de]=Kreisförmig-angeordnete Sitze um eine Vorführ-Fläche.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmahjongg-15.04.1/layouts/chains.desktop 
new/kmahjongg-15.04.2/layouts/chains.desktop
--- old/kmahjongg-15.04.1/layouts/chains.desktop2015-01-18 
05:07:00.0 +0100
+++ new/kmahjongg-15.04.2/layouts/chains.desktop2015-05-23 
10:15:12.0 +0200
@@ -49,7 +49,7 @@
 Description=Four chains making up a single structure
 Description[ast]=Cuatro cadenes que formen una única estructura
 Description[bs]=Četiri lanca koja prave jedinstvenu strukturu
-Description[ca]=Quatre cadenes que composen una estructura única
+Description[ca]=Quatre cadenes que formen una estructura única
 Description[ca@valencia]=Quatre cadenes que composen una estructura única
 Description[da]=Fire kæder der udgør en enkelt struktur
 Description[de]=Ein Gebilde aus vier Ketten.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmahjongg-15.04.1/layouts/glade.desktop 
new/kmahjongg-15.04.2/layouts/glade.desktop
--- old/kmahjongg-15.04.1/layouts/glade.desktop 2015-01-18 05:07:00.0 
+0100
+++ new/kmahjongg-15.04.2/layouts/glade.desktop 2015-05-23 10:15:12.0 
+0200
@@ -46,7 +46,7 @@
 Name[zh_TW]=沼澤
 Description=A small piece of empty space surrounded by a forest
 Description[bs]=Mali dio praznog prostora okruženog šumom
-Description[ca]=Una petit tros d'espai buit envoltat d'un bosc
+Description[ca]=Un petit tros d'espai buit envoltat d'un bosc
 Description[ca@valencia]=Una petit tros d'espai buit envoltat d'un bosc
 Description[da]=Et mindre tomt område omgivet af en skov
 Description[de]=Ein kleines Stück freier Fläche, das von einem Wald umgeben 
ist.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmahjongg-15.04.1/layouts/maze.desktop 

commit klines for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package klines for openSUSE:Factory checked 
in at 2015-06-04 11:16:41

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


Package is klines

Changes:

--- /work/SRC/openSUSE:Factory/klines/klines.changes2015-05-15 
10:00:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.klines.new/klines.changes   2015-06-04 
11:16:42.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:14:34 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  klines-15.04.1.tar.xz

New:

  klines-15.04.2.tar.xz



Other differences:
--
++ klines.spec ++
--- /var/tmp/diff_new_pack.NjBJOA/_old  2015-06-04 11:16:43.0 +0200
+++ /var/tmp/diff_new_pack.NjBJOA/_new  2015-06-04 11:16:43.0 +0200
@@ -50,7 +50,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:klines-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ klines-15.04.1.tar.xz - klines-15.04.2.tar.xz ++




commit kmplot for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kmplot for openSUSE:Factory checked 
in at 2015-06-04 11:17:18

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


Package is kmplot

Changes:

--- /work/SRC/openSUSE:Factory/kmplot/kmplot.changes2015-05-15 
10:00:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmplot.new/kmplot.changes   2015-06-04 
11:17:19.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:15:32 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kmplot-15.04.1.tar.xz

New:

  kmplot-15.04.2.tar.xz



Other differences:
--
++ kmplot.spec ++
--- /var/tmp/diff_new_pack.4EPskD/_old  2015-06-04 11:17:20.0 +0200
+++ /var/tmp/diff_new_pack.4EPskD/_new  2015-06-04 11:17:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kmplot
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Mathematical Function Plotter
 License:GPL-2.0+

++ kmplot-15.04.1.tar.xz - kmplot-15.04.2.tar.xz ++




commit kmix for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kmix for openSUSE:Factory checked in 
at 2015-06-04 11:17:03

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


Package is kmix

Changes:

--- /work/SRC/openSUSE:Factory/kmix/kmix.changes2015-05-15 
10:05:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmix.new/kmix.changes   2015-06-04 
11:17:04.0 +0200
@@ -1,0 +2,8 @@
+Sat May 30 14:15:07 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+---

Old:

  kmix-15.04.1.tar.xz

New:

  kmix-15.04.2.tar.xz



Other differences:
--
++ kmix.spec ++
--- /var/tmp/diff_new_pack.AtVzYq/_old  2015-06-04 11:17:05.0 +0200
+++ /var/tmp/diff_new_pack.AtVzYq/_new  2015-06-04 11:17:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kmix
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Sound Mixer
 License:GPL-2.0+

++ kmix-15.04.1.tar.xz - kmix-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmix-15.04.1/CMakeLists.txt 
new/kmix-15.04.2/CMakeLists.txt
--- old/kmix-15.04.1/CMakeLists.txt 2015-01-29 01:44:03.0 +0100
+++ new/kmix-15.04.2/CMakeLists.txt 2015-05-13 08:52:27.0 +0200
@@ -18,6 +18,7 @@
 if (KMIX_KF5_BUILD)
cmake_minimum_required(VERSION 2.8.12)
add_definitions( -DX_KMIX_KF5_BUILD )
+   add_definitions( -DTRANSLATION_DOMAIN=\kmix\ )
 else ()
cmake_minimum_required(VERSION 2.8.11)
 endif()




commit amor for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package amor for openSUSE:Factory checked in 
at 2015-06-04 09:56:46

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


Package is amor

Changes:

--- /work/SRC/openSUSE:Factory/amor/amor.changes2015-05-15 
09:55:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.amor.new/amor.changes   2015-06-04 
09:56:48.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:29:32 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  amor-15.04.1.tar.xz

New:

  amor-15.04.2.tar.xz



Other differences:
--
++ amor.spec ++
--- /var/tmp/diff_new_pack.IRZStF/_old  2015-06-04 09:56:48.0 +0200
+++ /var/tmp/diff_new_pack.IRZStF/_new  2015-06-04 09:56:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   amor
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:On-Screen Creature
 License:GPL-2.0+

++ amor-15.04.1.tar.xz - amor-15.04.2.tar.xz ++




commit artikulate for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package artikulate for openSUSE:Factory 
checked in at 2015-06-04 09:58:51

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


Package is artikulate

Changes:

--- /work/SRC/openSUSE:Factory/artikulate/artikulate.changes2015-05-15 
09:55:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.artikulate.new/artikulate.changes   
2015-06-04 09:58:52.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:30:37 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  artikulate-15.04.1.tar.xz

New:

  artikulate-15.04.2.tar.xz



Other differences:
--
++ artikulate.spec ++
--- /var/tmp/diff_new_pack.6clRwL/_old  2015-06-04 09:58:53.0 +0200
+++ /var/tmp/diff_new_pack.6clRwL/_new  2015-06-04 09:58:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   artikulate
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Pronunciation Self-Teaching
 License:LGPL-3.0+ and GPL-2.0 and BSD-3-Clause

++ artikulate-15.04.1.tar.xz - artikulate-15.04.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/artikulate-15.04.1/artikulate.appdata.xml 
new/artikulate-15.04.2/artikulate.appdata.xml
--- old/artikulate-15.04.1/artikulate.appdata.xml   2015-04-27 
07:40:39.0 +0200
+++ new/artikulate-15.04.2/artikulate.appdata.xml   2015-05-14 
07:48:57.0 +0200
@@ -72,7 +72,7 @@
 p xml:lang=skArtikulate je tréner výslovnosti, ktorý pomôže zlepšiť 
výslovnosť študenta pre cudzí jazyk. Poskytuje kurzy s nahrávkami rodeného 
hovorcu pre niekoľko výukových jazykov. Študent si stiahne tieto kurzy, vyberie 
kategóriu a frázy na precvičenie, potom začne nahrávať svoj hlas pri hovorení 
fráz a porovná výsledky s rodeným hovorcom počúvaním oboch. Úpravou a 
opakovaním výslovnosti si môže študent zlepšiť schopnosti./p
 p xml:lang=slArtikulate je pomočnik za učenje izgovorjave, ki vam 
pomaga izboljšati in izpopolniti izgovorjavo tujega jezika. Ponuja tečaje s 
posnetki govorca maternega jezika za številne jezike. Učenec prejme tečaje, 
izbere kategorijo fraz, ki se bi jih rad naučil in nato začne s snemanjem 
svojega glasu med izgovorjavo fraz. Te posnetke primerja s posnetki govorca 
maternega jezika. S prilagajanjem in ponavljanjem izgovorjave, lahko učenec 
izboljša svoje sposobnosti./p
 p xml:lang=svArtikulate är ett uttalsövningsprogram som hjälper till 
att förbättra och fullkomna en elevs uttalsfärdighet på ett främmande språk. 
Det tillhandahåller kurser med inspelningar av infödda på ett flertal 
övningsspråk. Eleven laddar ner kurserna, väljer en kategori meningar att öva 
på, och börjar därefter med att spela in sin egen röst vid uppläsning av 
meningarna och jämför därefter resultatet med de inföddas inspelningar genom 
att lyssna på båda. Genom att justera och upprepa sitt eget uttal, kan eleven 
förbättra sina färdigheter./p
-p xml:lang=trArtikulate yabancı dil öğrenmeye çalışanların 
telaffuzlarını geliştirmelerine ve mükemmelleştirmelerine yardım eden bir 
telaffuz eğiticisidir. Bir çok eğitim dili için doğal konuşma kayıtlarını 
içeren dersler sağlar. Öğrenci kursları indirir, çalışacağı kategoriyi seçer ve 
kendi seslendirdiği ifadeleri kaydederek o dili doğal dil olarak konuşanların 
kayıtlarıyla karşılaştırmaya başlar. Kendi telaffuzunu ayarlayarak ve 
tekrarlayarak, öğrenci becerilerini artırabilir./p
+p xml:lang=trArtikulate yabancı dil öğrenmeye çalışanların 
telaffuzlarını geliştirmelerine ve mükemmelleştirmelerine yardım eden bir 
telaffuz eğiticisidir. Birçok eğitim dili için doğal konuşma kayıtlarını içeren 
dersler sağlar. Öğrenci kursları indirir, çalışacağı kategoriyi seçer ve kendi 
seslendirdiği ifadeleri kaydederek o dili doğal dil olarak konuşanların 
kayıtlarıyla karşılaştırmaya başlar. Kendi telaffuzunu ayarlayarak ve 
tekrarlayarak, öğrenci becerilerini artırabilir./p
 p xml:lang=ukArtikulate — програма для навчання вимові, яка допомагає 
у покращенні та удосконаленні навичок учня з вимови слів іноземною мовою. У 
програмі передбачено курси, записані людьми, для яких мова є рідною, створені 
декількома мовами. Учень може отримати такий курс, вибрати категорію фраз для 
навчання і розпочати записування власних спроб вимовити фразу та порівняння з 
еталонними записами. Коригуючи і повторюючи вимов, учень може покращити власні 
навички./p
 p xml:lang=x-testxxArtikulate is a pronunciation trainer that helps 
improving and perfecting a learner's pronunciation skills for a foreign 
language. It provides courses with native 

commit cervisia for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package cervisia for openSUSE:Factory 
checked in at 2015-06-04 10:03:50

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


Package is cervisia

Changes:

--- /work/SRC/openSUSE:Factory/cervisia/cervisia.changes2015-05-15 
09:56:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.cervisia.new/cervisia.changes   2015-06-04 
10:03:51.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:32:06 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  cervisia-15.04.1.tar.xz

New:

  cervisia-15.04.2.tar.xz



Other differences:
--
++ cervisia.spec ++
--- /var/tmp/diff_new_pack.wMeWOG/_old  2015-06-04 10:03:52.0 +0200
+++ /var/tmp/diff_new_pack.wMeWOG/_new  2015-06-04 10:03:52.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0 and GFDL-1.2 and LGPL-2.0
 Group:  Development/Tools/Version Control
 Url:http://www.kde.org/
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ cervisia-15.04.1.tar.xz - cervisia-15.04.2.tar.xz ++




commit kaccessible for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is kaccessible

Changes:

--- /work/SRC/openSUSE:Factory/kaccessible/kaccessible.changes  2015-05-15 
09:56:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.kaccessible.new/kaccessible.changes 
2015-06-04 10:10:50.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:34:37 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kaccessible-15.04.1.tar.xz

New:

  kaccessible-15.04.2.tar.xz



Other differences:
--
++ kaccessible.spec ++
--- /var/tmp/diff_new_pack.08C5iX/_old  2015-06-04 10:10:50.0 +0200
+++ /var/tmp/diff_new_pack.08C5iX/_new  2015-06-04 10:10:50.0 +0200
@@ -27,7 +27,7 @@
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kaccessible-15.04.1.tar.xz - kaccessible-15.04.2.tar.xz ++




commit katomic for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is katomic

Changes:

--- /work/SRC/openSUSE:Factory/katomic/katomic.changes  2015-05-15 
09:57:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.katomic.new/katomic.changes 2015-06-04 
10:15:52.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:35:34 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  katomic-15.04.1.tar.xz

New:

  katomic-15.04.2.tar.xz



Other differences:
--
++ katomic.spec ++
--- /var/tmp/diff_new_pack.wCCnLc/_old  2015-06-04 10:15:53.0 +0200
+++ /var/tmp/diff_new_pack.wCCnLc/_new  2015-06-04 10:15:53.0 +0200
@@ -39,7 +39,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:katomic-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ katomic-15.04.1.tar.xz - katomic-15.04.2.tar.xz ++




commit kblocks for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is kblocks

Changes:

--- /work/SRC/openSUSE:Factory/kblocks/kblocks.changes  2015-05-15 
09:57:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.kblocks.new/kblocks.changes 2015-06-04 
10:17:50.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:35:52 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kblocks-15.04.1.tar.xz

New:

  kblocks-15.04.2.tar.xz



Other differences:
--
++ kblocks.spec ++
--- /var/tmp/diff_new_pack.ylWNqZ/_old  2015-06-04 10:17:50.0 +0200
+++ /var/tmp/diff_new_pack.ylWNqZ/_new  2015-06-04 10:17:50.0 +0200
@@ -42,7 +42,7 @@
 License:LGPL-2.1+
 Group:  Amusements/Games/Strategy/Real Time
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kblocks-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ kblocks-15.04.1.tar.xz - kblocks-15.04.2.tar.xz ++




commit kblackbox for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is kblackbox

Changes:

--- /work/SRC/openSUSE:Factory/kblackbox/kblackbox.changes  2015-05-15 
09:57:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.kblackbox.new/kblackbox.changes 2015-06-04 
10:16:51.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:35:40 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kblackbox-15.04.1.tar.xz

New:

  kblackbox-15.04.2.tar.xz



Other differences:
--
++ kblackbox.spec ++
--- /var/tmp/diff_new_pack.UQIgTA/_old  2015-06-04 10:16:51.0 +0200
+++ /var/tmp/diff_new_pack.UQIgTA/_new  2015-06-04 10:16:51.0 +0200
@@ -39,7 +39,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:kblackbox-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ kblackbox-15.04.1.tar.xz - kblackbox-15.04.2.tar.xz ++




commit kcalc for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package kcalc for openSUSE:Factory checked 
in at 2015-06-04 10:22:55

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


Package is kcalc

Changes:

--- /work/SRC/openSUSE:Factory/kcalc/kcalc.changes  2015-05-15 
09:57:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcalc.new/kcalc.changes 2015-06-04 
10:22:57.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:37:30 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kcalc-15.04.1.tar.xz

New:

  kcalc-15.04.2.tar.xz



Other differences:
--
++ kcalc.spec ++
--- /var/tmp/diff_new_pack.ha14zW/_old  2015-06-04 10:22:57.0 +0200
+++ /var/tmp/diff_new_pack.ha14zW/_new  2015-06-04 10:22:57.0 +0200
@@ -34,7 +34,7 @@
 License:GPL-2.0+
 Group:  Productivity/Scientific/Math
 Url:http://www.kde.org
-Version:15.04.1
+Version:15.04.2
 Release:0
 Source0:%{name}-%{version}.tar.xz
 Obsoletes:  %{name}5  %{version}

++ kcalc-15.04.1.tar.xz - kcalc-15.04.2.tar.xz ++




commit kcolorchooser for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

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

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


Package is kcolorchooser

Changes:

--- /work/SRC/openSUSE:Factory/kcolorchooser/kcolorchooser.changes  
2015-05-15 09:57:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kcolorchooser.new/kcolorchooser.changes 
2015-06-04 10:39:31.0 +0200
@@ -1,0 +2,5 @@
+Sat May 30 13:37:39 UTC 2015 - tittiatc...@gmail.com
+
+- Update
+
+---

Old:

  kcolorchooser-15.04.1.tar.xz

New:

  kcolorchooser-15.04.2.tar.xz



Other differences:
--
++ kcolorchooser.spec ++
--- /var/tmp/diff_new_pack.VoAkfX/_old  2015-06-04 10:39:32.0 +0200
+++ /var/tmp/diff_new_pack.VoAkfX/_new  2015-06-04 10:39:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kcolorchooser
-Version:15.04.1
+Version:15.04.2
 Release:0
 Summary:Color Chooser
 License:MIT

++ kcolorchooser-15.04.1.tar.xz - kcolorchooser-15.04.2.tar.xz ++




  1   2   >