commit unrar for openSUSE:Factory:NonFree

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package unrar for openSUSE:Factory:NonFree 
checked in at 2016-07-24 19:53:30

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


Package is "unrar"

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/unrar/unrar.changes  2016-05-31 
12:25:37.0 +0200
+++ /work/SRC/openSUSE:Factory:NonFree/.unrar.new/unrar.changes 2016-07-24 
19:53:58.0 +0200
@@ -1,0 +2,6 @@
+Fri Jul 22 06:51:29 UTC 2016 - mplus...@suse.com
+
+- Update to version 5.4.3:
+  * No changelog provided.
+
+---

Old:

  unrarsrc-5.4.2.tar.gz

New:

  unrarsrc-5.4.3.tar.gz



Other differences:
--
++ unrar.spec ++
--- /var/tmp/diff_new_pack.Mdf7an/_old  2016-07-24 19:54:00.0 +0200
+++ /var/tmp/diff_new_pack.Mdf7an/_new  2016-07-24 19:54:00.0 +0200
@@ -18,10 +18,10 @@
 
 # majorversion should match the major version number.
 %define majorversion 5
-%define libsuffix 5_4_2
+%define libsuffix 5_4_3
 
 Name:   unrar
-Version:5.4.2
+Version:5.4.3
 Release:0
 Summary:A program to extract, test, and view RAR archives
 License:SUSE-NonFree
@@ -87,7 +87,7 @@
 %defattr(-,root,root)
 %doc acknow.txt license.txt readme.txt
 %{_bindir}/unrar
-%doc %{_mandir}/man1/unrar.1*
+%{_mandir}/man1/unrar.1%{ext_man}
 
 %files -n libunrar%{libsuffix}
 %defattr(-,root,root)

++ unrarsrc-5.4.2.tar.gz -> unrarsrc-5.4.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/blake2s.cpp new/unrar/blake2s.cpp
--- old/unrar/blake2s.cpp   2016-05-30 13:38:10.0 +0200
+++ new/unrar/blake2s.cpp   2016-07-21 10:59:36.0 +0200
@@ -162,7 +162,7 @@
   memcpy( S->buf + left, in, (size_t)inlen );
   S->buflen += (size_t)inlen; // Be lazy, do not compress
   in += inlen;
-  inlen -= inlen;
+  inlen = 0;
 }
   }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/dll.rc new/unrar/dll.rc
--- old/unrar/dll.rc2016-05-30 13:35:51.0 +0200
+++ new/unrar/dll.rc2016-07-21 10:54:58.0 +0200
@@ -2,8 +2,8 @@
 #include 
 
 VS_VERSION_INFO VERSIONINFO
-FILEVERSION 5, 40, 2, 1980
-PRODUCTVERSION 5, 40, 2, 1980
+FILEVERSION 5, 40, 4, 2032
+PRODUCTVERSION 5, 40, 4, 2032
 FILEOS VOS__WINDOWS32
 FILETYPE VFT_APP
 {
@@ -14,8 +14,8 @@
   VALUE "CompanyName", "Alexander Roshal\0"
   VALUE "ProductName", "RAR decompression library\0"
   VALUE "FileDescription", "RAR decompression library\0"
-  VALUE "FileVersion", "5.40.2\0"
-  VALUE "ProductVersion", "5.40.2\0"
+  VALUE "FileVersion", "5.40.4\0"
+  VALUE "ProductVersion", "5.40.4\0"
   VALUE "LegalCopyright", "Copyright � Alexander Roshal 1993-2016\0"
   VALUE "OriginalFilename", "Unrar.dll\0"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unrar/hash.cpp new/unrar/hash.cpp
--- old/unrar/hash.cpp  2016-05-30 13:38:10.0 +0200
+++ new/unrar/hash.cpp  2016-07-21 10:59:36.0 +0200
@@ -41,6 +41,7 @@
 
 DataHash::DataHash()
 {
+  blake2ctx=NULL;
   HashType=HASH_NONE;
 #ifdef RAR_SMP
   ThPool=NULL;
@@ -54,20 +55,26 @@
 #ifdef RAR_SMP
   DestroyThreadPool(ThPool);
 #endif
-  cleandata(, sizeof(blake2ctx));
   cleandata(, sizeof(CurCRC32));
+  if (blake2ctx!=NULL)
+  {
+cleandata(blake2ctx, sizeof(blake2sp_state));
+delete blake2ctx;
+  }
 }
 
 
 void DataHash::Init(HASH_TYPE Type,uint MaxThreads)
 {
+  if (blake2ctx==NULL)
+blake2ctx=new blake2sp_state;
   HashType=Type;
   if (Type==HASH_RAR14)
 CurCRC32=0;
   if (Type==HASH_CRC32)
 CurCRC32=0x; // Initial CRC32 value.
   if (Type==HASH_BLAKE2)
-blake2sp_init(  );
+blake2sp_init(blake2ctx);
 #ifdef RAR_SMP
   DataHash::MaxThreads=Min(MaxThreads,MaxHashThreads);
 #endif
@@ -88,10 +95,10 @@
 #ifdef RAR_SMP
 if (MaxThreads>1 && ThPool==NULL)
   ThPool=CreateThreadPool();
-blake2ctx.ThPool=ThPool;
-blake2ctx.MaxThreads=MaxThreads;
+blake2ctx->ThPool=ThPool;
+blake2ctx->MaxThreads=MaxThreads;
 #endif
-blake2sp_update( , (byte *)Data, DataSize);
+blake2sp_update( blake2ctx, (byte *)Data, DataSize);
   }
 }
 
@@ -106,8 +113,8 @@
   if (HashType==HASH_BLAKE2)
   {
 // Preserve the original context, so we can continue hashing if necessary.
-blake2sp_state res=blake2ctx;
-blake2sp_final( , Result->Digest );
+blake2sp_state res=*blake2ctx;
+blake2sp_final(,Result->Digest);
   }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit kterm for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kterm for openSUSE:Factory checked 
in at 2016-07-24 19:52:46

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


Package is "kterm"

Changes:

--- /work/SRC/openSUSE:Factory/kterm/kterm.changes  2013-04-03 
23:46:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.kterm.new/kterm.changes 2016-07-24 
19:53:19.0 +0200
@@ -1,0 +2,6 @@
+Thu Jul 21 09:40:33 UTC 2016 - sch...@suse.de
+
+- implicit-decl.patch: fix implicit declarations, also build with
+  _GNU_SOURCE
+
+---

New:

  implicit-decl.patch



Other differences:
--
++ kterm.spec ++
--- /var/tmp/diff_new_pack.OGBb65/_old  2016-07-24 19:53:20.0 +0200
+++ /var/tmp/diff_new_pack.OGBb65/_new  2016-07-24 19:53:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kterm
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -54,6 +54,7 @@
 Patch11:kterm-6.2.0-nonvoid.patch
 Patch12:kterm-6.2.0-gcc4.patch
 Patch13:null-pointer.patch
+Patch14:implicit-decl.patch
 
 %description
 Kterm is a multilingual terminal emulator based on xterm. The major
@@ -81,13 +82,13 @@
 %patch11 -p1
 %patch12
 %patch13 -p1
+%patch14 -p1
 
 %build
 xmkmf -a
-make CCOPTIONS="$RPM_OPT_FLAGS"
+make CCOPTIONS="$RPM_OPT_FLAGS -D_GNU_SOURCE"
 
 %install
-[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf 
$RPM_BUILD_ROOT;
 make install DESTDIR=$RPM_BUILD_ROOT
 make install.man MANSUFFIX=1 LIBMANSUFFIX=3 DESTDIR=$RPM_BUILD_ROOT
 mkdir -p $RPM_BUILD_ROOT%{appdefdir}/{ja,ja_JP.SJIS}/app-defaults/

++ implicit-decl.patch ++
Index: kterm-6.2.0/charproc.c
===
--- kterm-6.2.0.orig/charproc.c
+++ kterm-6.2.0/charproc.c
@@ -71,6 +71,7 @@ in this Software without prior written a
 #define Select select
 #endif
 #include 
+#include 
 #include 
 #include 
 #include 
Index: kterm-6.2.0/main.c
===
--- kterm-6.2.0.orig/main.c
+++ kterm-6.2.0/main.c
@@ -80,6 +80,7 @@ SOFTWARE.
 #endif
 #include 
 #include 
+#include 
 #include 
 #include "data.h"
 #include "error.h"
Index: kterm-6.2.0/scrollbar.c
===
--- kterm-6.2.0.orig/scrollbar.c
+++ kterm-6.2.0/scrollbar.c
@@ -29,6 +29,8 @@
 #include "ptyx.h"  /* gets Xt headers, too */
 
 #include 
+#include 
+#include 
 #include 
 #include 
 



commit kbreakout for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kbreakout for openSUSE:Factory 
checked in at 2016-07-24 19:52:12

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  2016-06-25 
02:00:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.kbreakout.new/kbreakout.changes 2016-07-24 
19:53:06.0 +0200
@@ -1,0 +2,13 @@
+Sat Jul 16 21:22:57 UTC 2016 - wba...@tmo.at
+
+- Fix build requirements
+
+---
+Thu Jul  7 23:38:44 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kbreakout-16.04.2.tar.xz

New:

  kbreakout-16.04.3.tar.xz



Other differences:
--
++ kbreakout.spec ++
--- /var/tmp/diff_new_pack.LPACJA/_old  2016-07-24 19:53:07.0 +0200
+++ /var/tmp/diff_new_pack.LPACJA/_new  2016-07-24 19:53:07.0 +0200
@@ -20,32 +20,24 @@
 BuildRequires:  libkdegames-devel
 BuildRequires:  extra-cmake-modules
 BuildRequires:  pkgconfig(Qt5Widgets)
+BuildRequires:  pkgconfig(Qt5Qml)
+BuildRequires:  pkgconfig(Qt5Quick)
 BuildRequires:  pkgconfig(Qt5QuickWidgets)
-BuildRequires:  pkgconfig(Qt5Test)
-BuildRequires:  pkgconfig(Qt5Svg)
-BuildRequires:  pkgconfig(Qt5Declarative)
 BuildRequires:  kconfig-devel
+BuildRequires:  kcrash-devel
 BuildRequires:  kcoreaddons-devel
 BuildRequires:  kwidgetsaddons-devel
+BuildRequires:  kdbusaddons-devel
 BuildRequires:  ki18n-devel
-BuildRequires:  kdnssd-framework-devel
-BuildRequires:  kguiaddons-devel
 BuildRequires:  kconfigwidgets-devel
-BuildRequires:  kitemviews-devel
-BuildRequires:  kdeclarative-devel
-BuildRequires:  kiconthemes-devel
 BuildRequires:  kxmlgui-devel
-BuildRequires:  kio-devel
-BuildRequires:  knotifyconfig-devel
-BuildRequires:  kdelibs4support-devel
-BuildRequires:  knewstuff-devel
-BuildRequires:  phonon4qt5-devel
+BuildRequires:  kdoctools-devel
 BuildRequires:  update-desktop-files
 Summary:Breakout-like game for KDE
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Breakout
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kbreakout-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ kbreakout-16.04.2.tar.xz -> kbreakout-16.04.3.tar.xz ++




commit live-fat-stick for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package live-fat-stick for openSUSE:Factory 
checked in at 2016-07-24 19:53:13

Comparing /work/SRC/openSUSE:Factory/live-fat-stick (Old)
 and  /work/SRC/openSUSE:Factory/.live-fat-stick.new (New)


Package is "live-fat-stick"

Changes:

--- /work/SRC/openSUSE:Factory/live-fat-stick/live-fat-stick.changes
2016-07-14 09:48:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.live-fat-stick.new/live-fat-stick.changes   
2016-07-24 19:53:34.0 +0200
@@ -1,0 +2,5 @@
+Fri Jul 15 09:46:48 UTC 2016 - cyber...@opensuse.org
+
+- Require qemu-tools to create cow file for persistence
+
+---



Other differences:
--
++ live-fat-stick.spec ++
--- /var/tmp/diff_new_pack.zIu79o/_old  2016-07-24 19:53:36.0 +0200
+++ /var/tmp/diff_new_pack.zIu79o/_new  2016-07-24 19:53:36.0 +0200
@@ -32,6 +32,7 @@
 Requires:   parted
 Requires:   syslinux
 Requires:   util-linux
+Requires:   qemu-tools 
 %if 0%{?suse_version}
 BuildRequires:  update-desktop-files
 %endif
@@ -76,6 +77,7 @@
 Requires:   grub2
 Requires:   parted
 Requires:   util-linux
+Requires:   qemu-tools
 Summary:Create multiboot live usb stick using grub2
 Group:  System/Management
 




commit libguestfs for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package libguestfs for openSUSE:Factory 
checked in at 2016-07-24 19:52:23

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


Package is "libguestfs"

Changes:

--- /work/SRC/openSUSE:Factory/libguestfs/libguestfs.changes2016-07-21 
08:18:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.libguestfs.new/libguestfs.changes   
2016-07-24 19:53:13.0 +0200
@@ -1,0 +2,8 @@
+Wed Jul 20 19:47:22 UTC 2016 - cbosdon...@suse.com
+
+- appliance fixes (fate#316274):
+  * re-add helper script mount-rootfs-and-chroot.sh for virt-rescue
+appliance.patch
+  * make guestfs-data a requirement of guestfs-tools
+
+---

New:

  appliance.patch
  mount-rootfs-and-chroot.sh



Other differences:
--
++ libguestfs.spec ++
--- /var/tmp/diff_new_pack.QLqpFJ/_old  2016-07-24 19:53:15.0 +0200
+++ /var/tmp/diff_new_pack.QLqpFJ/_new  2016-07-24 19:53:15.0 +0200
@@ -199,9 +199,11 @@
 License:GPL-2.0
 Group:  System/Filesystems
 Patch0: -hotfix.patch
+Patch100:   appliance.patch
 
 Source0:%{name}-%{version}.tar.xz
 Source1:libguestfs.rpmlintrc
+Source100:  mount-rootfs-and-chroot.sh
 Source789653:   Pod-Simple-3.23.tar.xz
 #
 Source10001:libguestfs.test.simple.run-libugestfs-test-tool.sh
@@ -256,7 +258,7 @@
 Requires:   perl(Win::Hivex::Regedit)
 %endif
 %endif
-Recommends: guestfs-data
+Requires:   guestfs-data
 Conflicts:  guestfs-data < %{version}
 Conflicts:  libguestfs0 < %{version}
 
@@ -558,6 +560,7 @@
 : _ignore_exclusive_arch '%{?_ignore_exclusive_arch}'
 %setup -q -a 789653
 %patch0 -p1
+%patch100 -p1
 
 %build
 bison --version
@@ -681,6 +684,14 @@
 %endif
 %endif
 
+mkdir -p $RPM_BUILD_ROOT/tmp/usr/bin
+cp %{S:100} $RPM_BUILD_ROOT/tmp/usr/bin
+chmod a+x $RPM_BUILD_ROOT/tmp/usr/bin/*
+pushd $RPM_BUILD_ROOT/tmp
+tar czf $RPM_BUILD_ROOT/%{_libdir}/guestfs/supermin.d/zz-scripts.tar.gz usr
+popd
+rm -rf $RPM_BUILD_ROOT/tmp
+
 %if %{with p2v}
 # Remove the kickstart files from p2v package
 rm $RPM_BUILD_ROOT/%{_datadir}/virt-p2v/p2v.ks.in

++ appliance.patch ++
Index: libguestfs-1.32.4/appliance/init
===
--- libguestfs-1.32.4.orig/appliance/init
+++ libguestfs-1.32.4/appliance/init
@@ -182,7 +182,9 @@ else
   echo
   echo "Note: The contents of / are the rescue appliance."
   echo "You have to mount the guest's partitions under /sysroot"
-  echo "before you can examine them."
+  echo "before you can examine them. A helper script for that exists:"
+  echo "mount-rootfs-and-chroot.sh /dev/sda2"
+
   echo
   bash -i
   echo
++ mount-rootfs-and-chroot.sh ++
#!/bin/bash
# Usage: $0 /dev/sda5
rootfs=$1
mnt=/sysroot
mounts=

if test -b "${rootfs}"
then

mkdir -v -p "${mnt}"

if mount -v "${rootfs}" "${mnt}"
then

for i in dev dev/pts proc sys selinux
do
if test -d /${i} && test -d "${mnt}/${i}" && test "`stat -c %D /`" 
!= "`stat -c %D ${i}`"
then
mount -v --bind /${i} "${mnt}/${i}"
fi
done

chroot "${mnt}" su -

while read b m rest
do
case "${m}" in
${mnt}*)
mounts="${m} ${mounts}"
;;
esac
done <<-EOF
`
cat < /proc/mounts
`
EOF

for i in ${mounts}
do
umount -v "${i}"
done

fi

fi



commit python-testrepository for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package python-testrepository for 
openSUSE:Factory checked in at 2016-07-24 19:52:51

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


Package is "python-testrepository"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-testrepository/python-testrepository.changes  
2016-01-12 16:13:30.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-testrepository.new/python-testrepository.changes
 2016-07-24 19:53:22.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul 14 17:39:14 UTC 2016 - dmuel...@suse.com
+
+- add license
+
+---



Other differences:
--
++ python-testrepository.spec ++
--- /var/tmp/diff_new_pack.dV2fve/_old  2016-07-24 19:53:23.0 +0200
+++ /var/tmp/diff_new_pack.dV2fve/_new  2016-07-24 19:53:23.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-testrepository
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,12 +27,12 @@
 BuildRequires:  python-devel
 BuildRequires:  python-extras
 BuildRequires:  python-fixtures
+BuildRequires:  python-pbr
 BuildRequires:  python-python-mimeparse
 BuildRequires:  python-python-subunit >= 0.0.18
 BuildRequires:  python-setuptools
 BuildRequires:  python-testscenarios
 BuildRequires:  python-testtools >= 0.9.30
-BuildRequires:  python-pbr
 Requires:   python-extras
 Requires:   python-fixtures
 Requires:   python-python-subunit >= 0.0.10
@@ -89,7 +89,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc COPYING NEWS README.txt BSD
+%doc Apache-2.0 COPYING NEWS README.txt BSD
 %{_bindir}/testr
 %{_bindir}/testr-%{py_ver}
 %ghost %{_sysconfdir}/alternatives/testr




commit xar for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package xar for openSUSE:Factory checked in 
at 2016-07-24 19:53:27

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


Package is "xar"

Changes:

--- /work/SRC/openSUSE:Factory/xar/xar.changes  2016-02-01 19:57:20.0 
+0100
+++ /work/SRC/openSUSE:Factory/.xar.new/xar.changes 2016-07-24 
19:53:52.0 +0200
@@ -1,0 +2,11 @@
+Fri Jul 22 17:43:18 UTC 2016 - jeng...@inai.de
+
+- Disable static build from the get-go if its files get removed
+  anyway
+
+---
+Fri Jul 22 17:28:49 UTC 2016 - mplus...@suse.com
+
+- Disable support for ext2 - gh#mackyle/xar#10
+
+---



Other differences:
--
++ xar.spec ++
--- /var/tmp/diff_new_pack.EzWSKb/_old  2016-07-24 19:53:54.0 +0200
+++ /var/tmp/diff_new_pack.EzWSKb/_new  2016-07-24 19:53:54.0 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define soname 1
+%define sover 1
 Name:   xar
 Version:1.6.1
 Release:0
@@ -27,7 +27,6 @@
 Source: 
https://github.com/mackyle/xar/archive/%{name}-%{version}.tar.gz
 BuildRequires:  autoconf
 BuildRequires:  automake
-BuildRequires:  e2fsprogs-devel
 BuildRequires:  libacl-devel
 BuildRequires:  libbz2-devel
 BuildRequires:  libopenssl-devel
@@ -45,11 +44,11 @@
 files in both compressed and uncompressed form, and the ability to query the
 table of content's rich meta-data.
 
-%package -n libxar%{soname}
+%package -n libxar%{sover}
 Summary:Extensive Archive Format Library
 Group:  Development/Libraries/C and C++
 
-%description -n libxar%{soname}
+%description -n libxar%{sover}
 The XAR project aims to provide an easily extensible archive format. Important
 design decisions include an easily extensible XML table of contents for random
 access to archived files, storing the toc at the beginning of the archive to
@@ -62,7 +61,7 @@
 %package -n libxar-devel
 Summary:Extensive Archive Format Library
 Group:  Development/Libraries/C and C++
-Requires:   libxar%{soname} = %{version}-%{release}
+Requires:   libxar%{sover} = %{version}
 
 %description -n libxar-devel
 The XAR project aims to provide an easily extensible archive format. Important
@@ -80,20 +79,18 @@
 %build
 pushd xar
 ./autogen.sh --noconfigure
-%configure
+%configure --disable-static
 make %{?_smp_mflags}
 popd
 
 %install
 pushd xar
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
-# do not ship these
-rm %{buildroot}%{_libdir}/libxar.a
-rm %{buildroot}%{_libdir}/libxar.la
+%make_install
 popd
+find %{buildroot} -type f -name '*.la' -delete -print
 
-%post -n libxar%{soname} -p /sbin/ldconfig
-%postun -n libxar%{soname} -p /sbin/ldconfig
+%post -n libxar%{sover} -p /sbin/ldconfig
+%postun -n libxar%{sover} -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root)
@@ -101,10 +98,10 @@
 %{_bindir}/xar
 %{_mandir}/man1/xar.1%{ext_man}
 
-%files -n libxar%{soname}
+%files -n libxar%{sover}
 %defattr(-,root,root)
 %doc xar/ChangeLog xar/LICENSE xar/NEWS
-%{_libdir}/libxar.so.%{soname}
+%{_libdir}/libxar.so.%{sover}
 
 %files -n libxar-devel
 %defattr(-,root,root)




commit kiwi-config-openSUSE for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kiwi-config-openSUSE for 
openSUSE:Factory checked in at 2016-07-24 19:53:12

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


Package is "kiwi-config-openSUSE"

Changes:

--- 
/work/SRC/openSUSE:Factory/kiwi-config-openSUSE/kiwi-config-openSUSE.changes
2016-07-21 08:19:30.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kiwi-config-openSUSE.new/kiwi-config-openSUSE.changes
   2016-07-24 19:53:31.0 +0200
@@ -1,0 +2,9 @@
+Thu Jul 21 08:01:42 UTC 2016 - fv...@suse.com
+
+- Rename config.sh to config.sh.in to have desktop flavor available
+  - Move desktop-specific parts from .spec into config.sh.in
+- Copy live-installer.desktop icon to different location on Plasma
+  - Fix for boo#989897
+- Use "Tumbleweed" instead of "13.3" as name
+
+---

Old:

  config.sh

New:

  config.sh.in



Other differences:
--
++ kiwi-config-openSUSE.spec ++
--- /var/tmp/diff_new_pack.VLQ7qB/_old  2016-07-24 19:53:32.0 +0200
+++ /var/tmp/diff_new_pack.VLQ7qB/_new  2016-07-24 19:53:32.0 +0200
@@ -38,7 +38,7 @@
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source1:COPYING
-Source3:config.sh
+Source3:config.sh.in
 Source4:config.xml.in
 Source9:isopatch.sh.in
 Source10:   README
@@ -77,31 +77,21 @@
   cd $config
   desktop=`echo $config | cut -d- -f2`
   type=`echo $config | cut -d- -f1`
-  install -m 755 %{SOURCE3} config.sh
-  if test $desktop = kde; then
-echo 'baseUpdateSysConfig /etc/sysconfig/displaymanager DISPLAYMANAGER 
sddm' >> config.sh
-  fi
-  if test $desktop = gnome; then
-echo 'baseUpdateSysConfig /etc/sysconfig/displaymanager DISPLAYMANAGER 
gdm' >> config.sh
-echo 'baseUpdateSysConfig /etc/sysconfig/windowmanager DEFAULT_WM gnome' 
>> config.sh
-  fi
-  if test $desktop = x11; then
-echo 'baseUpdateSysConfig /etc/sysconfig/displaymanager DISPLAYMANAGER 
lightdm' >> config.sh
-echo 'baseUpdateSysConfig /etc/sysconfig/windowmanager DEFAULT_WM xfce' >> 
config.sh 
-  fi
+
+  sed -e "s,^desktop=,desktop=$desktop," %{SOURCE3} > config.sh
 
   sed -e "s,@CONFIG@,/usr/share/openSUSE-kiwi/$config," %{SOURCE4} > config.xml
   sed -i -e "s,@VERSION@,$kiwiversion," config.xml
   sed -i -e "s,@FLAVOR@,$config," config.xml
-  volid="openSUSE %{version} Live"
+  volid="openSUSE Tumbleweed Live"
   case $desktop in
 gnome)
   sed -i -e "s,@PLIST@,GNOME-cd," config.xml
-  volid="openSUSE %{version} GNOME Live"
+  volid="openSUSE Tumbleweed GNOME Live"
   ;;
 kde)
   sed -i -e "s,@PLIST@,KDE-cd," config.xml
-  volid="openSUSE %{version} KDE Live"
+  volid="openSUSE Tumbleweed KDE Live"
   ;;
 x11)
   sed -i -e "s,@PLIST@,X11-cd," config.xml


++ config.sh.in ++
#!/bin/bash
#
# FILE  : config.sh
#
# PROJECT   : OpenSuSE KIWI Image System
# COPYRIGHT : (c) 2006,2007,2008 SUSE LINUX Products GmbH. All rights 
reserved
#   :
# AUTHOR: Marcus Schaefer , Stephan Kulow 
#   :
# LICENSE   : BSD
#==
# Functions...
#--
test -f /.kconfig && . /.kconfig
test -f /.profile && . /.profile

set -e
set -x

# Filled by the .spec file
desktop=

exec | tee /var/log/config.log
exec 2>&1

pl=`rpmqpack | grep package-lists-` || true
test -z "$pl" || rpm -e $pl

#==
# Greeting...
#--
echo "Configure image: [$name]..."

#--
# enable and disable services

for i in langset NetworkManager SuSEfirewall2; do
systemctl -f enable $i
done
for i in sshd cron wicked purge-kernels; do
systemctl -f disable $i
done

cd /

if test -e /etc/YaST2/liveinstall.patch; then
  patch -p0 < /etc/YaST2/liveinstall.patch
fi

for i in /rpmkeys/gpg*.asc; do 
   # the import fails if kiwi already had this key
   rpm --import $i || true
   rm $i
done
rmdir /rpmkeys

rm -rf /var/cache/zypp/raw/*

bash -x /var/lib/livecd/geturls.sh
rm /var/lib/livecd/geturls.sh

#==
# /etc/sudoers hack to fix #297695 
# (Installation Live CD: no need to ask for password of root)
#--
sed -i -e "s/ALL ALL=(ALL) ALL/ALL ALL=(ALL) NOPASSWD: ALL/" /etc/sudoers 
chmod 0440 /etc/sudoers

/usr/sbin/useradd -m -u 999 linux -c "Live-CD User" -p ""

# delete passwords
passwd -d root
passwd -d linux
# 

commit nodejs for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package nodejs for openSUSE:Factory checked 
in at 2016-07-24 19:53:19

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


Package is "nodejs"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs/nodejs.changes2016-07-15 
12:54:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs.new/nodejs.changes   2016-07-24 
19:53:44.0 +0200
@@ -1,0 +2,5 @@
+Fri Jul 15 14:09:53 UTC 2016 - astie...@suse.com
+
+- obsolete remove gpg-offline / %gpg_verify
+
+---



Other differences:
--
++ nodejs.spec ++
--- /var/tmp/diff_new_pack.BFTSTm/_old  2016-07-24 19:53:45.0 +0200
+++ /var/tmp/diff_new_pack.BFTSTm/_new  2016-07-24 19:53:45.0 +0200
@@ -74,7 +74,6 @@
 %else
 BuildRequires:  gcc-c++
 %endif
-BuildRequires:  gpg-offline
 %if ! %{with intree_openssl}
 BuildRequires:  openssl-devel >= 1.0.2
 %endif
@@ -135,8 +134,7 @@
 The API documentation for the Node.js JavaScript runtime.
 
 %prep
-%gpg_verify %{SOURCE1}
-(cd %{_sourcedir}; sha256sum -c SHASUMS256.txt.asc | grep 
"node-v%{version}.tar.xz: OK")
+echo "`grep node-v%{version}.tar.xz %{S:1} | head -n1 | cut -c1-64`  %{S:0}" | 
sha256sum -c
 %setup -q -n node-v%{version}
 %patch1 -p1
 %patch101 -p1





commit torbrowser-launcher for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package torbrowser-launcher for 
openSUSE:Factory checked in at 2016-07-24 19:52:57

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


Package is "torbrowser-launcher"

Changes:

--- /work/SRC/openSUSE:Factory/torbrowser-launcher/torbrowser-launcher.changes  
2016-04-08 09:39:42.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.torbrowser-launcher.new/torbrowser-launcher.changes 
2016-07-24 19:53:23.0 +0200
@@ -1,0 +2,14 @@
+Wed Jul 20 21:42:36 UTC 2016 - badshah...@gmail.com
+
+- Update to version 0.2.5:
+  + Fix issue where Tor Browser Launcher failed to launch if
+currently installed version of Tor Browser was too old.
+  + If Tor Browser download isn't available in your language,
+fallback to English.
+  + Avoid re-downloading tarball if it's already present.
+  + Verify GnuPG importing keys using status-fd rather than exit
+codes.
+  + Various AppArmor improvements.
+  + Remove unused dependency of IPolicyForHTTPS.
+
+---

Old:

  v0.2.4.tar.gz

New:

  v0.2.5.tar.gz



Other differences:
--
++ torbrowser-launcher.spec ++
--- /var/tmp/diff_new_pack.jBJl9x/_old  2016-07-24 19:53:25.0 +0200
+++ /var/tmp/diff_new_pack.jBJl9x/_new  2016-07-24 19:53:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   torbrowser-launcher
-Version:0.2.4
+Version:0.2.5
 Release:0
 Summary:Tool for launching and easy-updates of Tor Browser
 License:MIT

++ v0.2.4.tar.gz -> v0.2.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/torbrowser-launcher-0.2.4/CHANGELOG.md 
new/torbrowser-launcher-0.2.5/CHANGELOG.md
--- old/torbrowser-launcher-0.2.4/CHANGELOG.md  2016-03-13 22:57:27.0 
+0100
+++ new/torbrowser-launcher-0.2.5/CHANGELOG.md  2016-07-09 01:53:49.0 
+0200
@@ -1,8 +1,17 @@
 # Tor Browser Launcher Changelog
 
+## 0.2.5
+
+* Fix issue where Tor Browser Launcher failed to launch if currently installed 
version of Tor Browser was too old
+* If Tor Browser download isn't available in your language, fallback to English
+* Avoid re-downloading tarball if it's already present
+* Verify GnuPG importing keys using status-fd rather than exit codes
+* Various AppArmor improvements
+* Removed unused dependency
+
 ## 0.2.4
 
-* Fix signature verification bypass attack, reported by Jann Horn
+* Fix signature verification bypass attack, reported by Jann Horn 
(CVE-2016-3180)
 
 ## 0.2.3
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/torbrowser-launcher-0.2.4/apparmor/torbrowser.Browser.firefox 
new/torbrowser-launcher-0.2.5/apparmor/torbrowser.Browser.firefox
--- old/torbrowser-launcher-0.2.4/apparmor/torbrowser.Browser.firefox   
2016-03-13 22:57:27.0 +0100
+++ new/torbrowser-launcher-0.2.5/apparmor/torbrowser.Browser.firefox   
2016-07-09 01:53:49.0 +0200
@@ -28,9 +28,9 @@
   deny /etc/machine-id r,
   deny /var/lib/dbus/machine-id r,
 
-  @{PROC}/[0-9]*/mountinfo r,
-  @{PROC}/[0-9]*/stat r,
-  @{PROC}/[0-9]*/task/*/stat r,
+  owner @{PROC}/[0-9]*/mountinfo r,
+  owner @{PROC}/[0-9]*/stat r,
+  owner @{PROC}/[0-9]*/task/*/stat r,
   @{PROC}/sys/kernel/random/uuid r,
 
   owner @{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/ r,
@@ -40,17 +40,18 @@
   owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser/.** rwk,
   owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser/ rw,
   owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser/** rw,
-  owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser.bak/updated/
 rwk,
+  owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser.bak/ 
rwk,
+  owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser.bak/** 
rwk,
   owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser/*.so mr,
   owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser/components/*.so
 mr,
   owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser/browser/components/*.so
 mr,
   owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser/firefox 
rix,
-  owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser/updates/[0-9]*/updater
 ix,
-  owner 
@{HOME}/.local/share/torbrowser/tbb/{i686,x86_64}/tor-browser_*/Browser/updates/0/MozUpdater/bgupdate/updater
 ix,
+  owner 

commit ha-cluster-bootstrap for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ha-cluster-bootstrap for 
openSUSE:Factory checked in at 2016-07-24 19:53:15

Comparing /work/SRC/openSUSE:Factory/ha-cluster-bootstrap (Old)
 and  /work/SRC/openSUSE:Factory/.ha-cluster-bootstrap.new (New)


Package is "ha-cluster-bootstrap"

Changes:

--- 
/work/SRC/openSUSE:Factory/ha-cluster-bootstrap/ha-cluster-bootstrap.changes
2016-06-14 23:06:51.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ha-cluster-bootstrap.new/ha-cluster-bootstrap.changes
   2016-07-24 19:53:38.0 +0200
@@ -1,0 +2,13 @@
+Fri Jul 22 12:43:33 UTC 2016 - kgronl...@suse.com
+
+- Update to version 0.4+git.1469191369.b497afa:
+  * Set pcmk_delay_max=30s for SBD resource (bsc#988356) (bsc#990213)
+
+---
+Fri Jul 22 09:07:13 UTC 2016 - kgronl...@suse.com
+
+- Update to version 0.4+git.1469178371.e8b668d:
+  * Reload corosync configuration if unicast (bsc#989809)
+  * Use ip route to find iface name over netstat which is deprecated
+
+---

Old:

  sleha-bootstrap-0.4+git.1464165931.150e061.tar.bz2

New:

  sleha-bootstrap-0.4+git.1469191369.b497afa.tar.bz2



Other differences:
--
++ ha-cluster-bootstrap.spec ++
--- /var/tmp/diff_new_pack.ykPFgd/_old  2016-07-24 19:53:39.0 +0200
+++ /var/tmp/diff_new_pack.ykPFgd/_new  2016-07-24 19:53:39.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   ha-cluster-bootstrap
-Version:0.4+git.1464165931.150e061
+Version:0.4+git.1469191369.b497afa
 Release:0
 Summary:Pacemaker HA Cluster Bootstrap Tool
 License:GPL-2.0

++ _servicedata ++
--- /var/tmp/diff_new_pack.ykPFgd/_old  2016-07-24 19:53:39.0 +0200
+++ /var/tmp/diff_new_pack.ykPFgd/_new  2016-07-24 19:53:39.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/tserong/sleha-bootstrap.git
-  150e0614205a431ff0bae056a0776f7593f48296
\ No newline at end of file
+  b497afa7d6339ddc13dff9b43a4b1cb50d47b78f
\ No newline at end of file

++ sleha-bootstrap-0.4+git.1464165931.150e061.tar.bz2 -> 
sleha-bootstrap-0.4+git.1469191369.b497afa.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sleha-bootstrap-0.4+git.1464165931.150e061/scripts/ha-cluster-functions 
new/sleha-bootstrap-0.4+git.1469191369.b497afa/scripts/ha-cluster-functions
--- old/sleha-bootstrap-0.4+git.1464165931.150e061/scripts/ha-cluster-functions 
2016-05-25 10:47:19.0 +0200
+++ new/sleha-bootstrap-0.4+git.1469191369.b497afa/scripts/ha-cluster-functions 
2016-07-22 14:43:33.0 +0200
@@ -36,7 +36,7 @@
 
 declare BE_QUIET=false
 declare YES_TO_ALL=false
-declare NET_IF="$(netstat -nr | grep '^0.0.0.0' | awk '{print ($(NF))}' 
2>/dev/null)"
+declare NET_IF="$(ip -o route show default | awk '/default/ {print $5}' 
2>/dev/null)"
 declare IP_ADDRESS
 declare IP_NETWORK
 
@@ -168,7 +168,7 @@
if ! grep -q '^FW_CONFIGURATIONS_EXT=.*cluster' $SYSCONFIG_FW ; 
then
tmp_conf=${SYSCONFIG_FW}.$$
sed \
-   -e 
's/^\(FW_CONFIGURATIONS_EXT="\)\(.*\)/\1cluster \2/' \
+   -e 
's/^\(FW_CONFIGURATIONS_EXT=\"\)\(.*\)/\1cluster \2/' \
$SYSCONFIG_FW > $tmp_conf
install_tmp $tmp_conf $SYSCONFIG_FW
fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sleha-bootstrap-0.4+git.1464165931.150e061/scripts/ha-cluster-init 
new/sleha-bootstrap-0.4+git.1469191369.b497afa/scripts/ha-cluster-init
--- old/sleha-bootstrap-0.4+git.1464165931.150e061/scripts/ha-cluster-init  
2016-05-25 10:47:19.0 +0200
+++ new/sleha-bootstrap-0.4+git.1469191369.b497afa/scripts/ha-cluster-init  
2016-07-22 14:43:33.0 +0200
@@ -621,7 +621,7 @@
# stonith-enabled, or it wipes out then entire
# cib-bootstrap-options section
# TODO: find out if this is a bug in the crm shell
-   invoke crm configure primitive stonith-sbd stonith:external/sbd 
\
+   invoke crm configure primitive stonith-sbd stonith:external/sbd 
params pcmk_delay_max=30s \
|| error "Can't create stonith-sbd primitive"
invoke crm configure property stonith-enabled="true" \
|| error "Can't enable STONITH"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sleha-bootstrap-0.4+git.1464165931.150e061/scripts/ha-cluster-join 

commit libkdegames for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package libkdegames for openSUSE:Factory 
checked in at 2016-07-24 19:52:03

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


Package is "libkdegames"

Changes:

--- /work/SRC/openSUSE:Factory/libkdegames/libkdegames.changes  2016-06-25 
02:03:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkdegames.new/libkdegames.changes 
2016-07-24 19:52:58.0 +0200
@@ -1,0 +2,16 @@
+Wed Jul 20 15:27:50 UTC 2016 - wba...@tmo.at
+
+- Update build requirements
+- Add necessary requirements to the devel package so that other
+  packages building against this don't have to specify them even
+  if they don't use them
+
+---
+Fri Jul  8 00:28:30 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  libkdegames-16.04.2.tar.xz

New:

  libkdegames-16.04.3.tar.xz



Other differences:
--
++ libkdegames.spec ++
--- /var/tmp/diff_new_pack.WEraFp/_old  2016-07-24 19:52:59.0 +0200
+++ /var/tmp/diff_new_pack.WEraFp/_new  2016-07-24 19:52:59.0 +0200
@@ -21,34 +21,39 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:libkdegames-%{version}.tar.xz
 Patch1: libkdegames-bnc793185.patch
 BuildRequires:  extra-cmake-modules
 BuildRequires:  fdupes
-BuildRequires:  frameworkintegration-devel
 BuildRequires:  karchive-devel
+BuildRequires:  kbookmarks-devel
 BuildRequires:  kcodecs-devel
+BuildRequires:  kcompletion-devel
 BuildRequires:  kconfig-devel
+BuildRequires:  kconfigwidgets-devel
 BuildRequires:  kcoreaddons-devel
-BuildRequires:  kglobalaccel-devel
 BuildRequires:  kcrash-devel
 BuildRequires:  kdbusaddons-devel
 BuildRequires:  kdeclarative-devel
-BuildRequires:  kdelibs4support-devel
 BuildRequires:  kdnssd-framework-devel
 BuildRequires:  kf5-filesystem
+BuildRequires:  kglobalaccel-devel
+BuildRequires:  kguiaddons-devel
 BuildRequires:  ki18n-devel
-BuildRequires:  kitemmodels-devel
+BuildRequires:  kiconthemes-devel
+BuildRequires:  kio-devel
+BuildRequires:  kitemviews-devel
+BuildRequires:  kjobwidgets-devel
 BuildRequires:  knewstuff-devel
-BuildRequires:  knotifyconfig-devel
+BuildRequires:  kservice-devel
+BuildRequires:  ktextwidgets-devel
 BuildRequires:  kwidgetsaddons-devel
-BuildRequires:  kwindowsystem-devel
+BuildRequires:  kxmlgui-devel
 BuildRequires:  libsndfile-devel
 BuildRequires:  openal-soft-devel
 BuildRequires:  xz
-BuildRequires:  pkgconfig(Qt5Core)
 BuildRequires:  pkgconfig(Qt5Qml)
 BuildRequires:  pkgconfig(Qt5Quick)
 BuildRequires:  pkgconfig(Qt5QuickWidgets)
@@ -109,8 +114,18 @@
 License:LGPL-2.1+
 Group:  Development/Libraries/KDE
 Requires:   libkf5kdegames6 = %{version}
+Requires:   kcompletion-devel
+Requires:   kconfig-devel
+Requires:   kconfigwidgets-devel
+Requires:   ki18n-devel
+Requires:   kwidgetsaddons-devel
 Requires:   libsndfile-devel
 Requires:   openal-soft-devel
+Requires:   pkgconfig(Qt5Widgets)
+Requires:   pkgconfig(Qt5Xml)
+Requires:   pkgconfig(Qt5Network)
+Requires:   pkgconfig(Qt5QuickWidgets)
+Requires:   pkgconfig(Qt5Qml)
 Obsoletes:  %{name}-kf5-devel < %{version}
 Provides:   %{name}-kf5-devel = %{version}
 

++ libkdegames-16.04.2.tar.xz -> libkdegames-16.04.3.tar.xz ++




commit clamav for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package clamav for openSUSE:Factory checked 
in at 2016-07-24 19:52:48

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


Package is "clamav"

Changes:

--- /work/SRC/openSUSE:Factory/clamav/clamav.changes2016-06-25 
02:23:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.clamav.new/clamav.changes   2016-07-24 
19:53:21.0 +0200
@@ -1,0 +2,8 @@
+Thu Jun 30 13:42:20 UTC 2016 - fwe...@suse.com
+
+- Added BuildRequires systemd-rpm-macros
+- Added %ghost entry for /run/clamav
+- Use /run instead of /var/run because it is a symlink nowadays
+  (clamav-tmpfiles.conf)
+
+---



Other differences:
--
++ clamav.spec ++
--- /var/tmp/diff_new_pack.6ADdr9/_old  2016-07-24 19:53:22.0 +0200
+++ /var/tmp/diff_new_pack.6ADdr9/_new  2016-07-24 19:53:22.0 +0200
@@ -57,6 +57,7 @@
 Patch1: clamav-conf.patch
 Patch3: clamav-gcc47.patch
 BuildRequires:  systemd
+BuildRequires:  systemd-rpm-macros
 %systemd_requires
 
 %description
@@ -102,8 +103,9 @@
 %makeinstall
 install -d -m755 %buildroot/var/lib/clamav
 install -d -m755 %buildroot/%_tmpfilesdir
-install -m644 %SOURCE6 %buildroot%_tmpfilesdir/clamav.conf
+install -m644 %{S:6} %buildroot%_tmpfilesdir/clamav.conf
 mkdir -p %buildroot/var/spool/amavis
+mkdir -p -m 0755 %buildroot/run/clamav
 rm %buildroot/%_libdir/*.la
 # Remove bogus dependencies from libclamav.pc
 sed -i 's/^Libs: .*/Libs: -lclamav/' %buildroot%_libdir/pkgconfig/libclamav.pc
@@ -117,9 +119,12 @@
 
 # Systemd...
 install -d -m 0755 %buildroot/%{_unitdir}
-install -m 0644 %{SOURCE7} %buildroot/%{_unitdir}/clamd.service
-install -m 0644 %{SOURCE8} %buildroot/%{_unitdir}/freshclam.service
-install -m 0644 %{SOURCE9} %buildroot/%{_unitdir}/clamav-milter.service
+install -m 0644 %{S:7} %buildroot/%{_unitdir}/clamd.service
+install -m 0644 %{S:8} %buildroot/%{_unitdir}/freshclam.service
+install -m 0644 %{S:9} %buildroot/%{_unitdir}/clamav-milter.service
+rm -f %buildroot/%{_unitdir}/clamav-daemon.service
+rm -f %buildroot/%{_unitdir}/clamav-daemon.socket
+rm -f %buildroot/%{_unitdir}/clamav-freshclam.service
 # this is broken if system does not have systemd so don't 
 # use it at all on systems without mandatory systemd
 for srvname in clamd freshclam clamav-milter;do
@@ -152,6 +157,7 @@
 %defattr(-,vscan,vscan)
 %dir %attr(750,vscan,vscan) /var/spool/amavis
 %dir /var/lib/clamav
+%ghost %attr(755,vscan,vscan) /run/clamav
 
 %pre
 %_sbindir/groupadd -r vscan 2> /dev/null || :

++ clamav-tmpfiles.conf ++
--- /var/tmp/diff_new_pack.6ADdr9/_old  2016-07-24 19:53:22.0 +0200
+++ /var/tmp/diff_new_pack.6ADdr9/_new  2016-07-24 19:53:22.0 +0200
@@ -1,2 +1,2 @@
-# clamav needs a directory in /var/run:
-d /var/run/clamav 0755 vscan vscan -
+# clamav needs a directory in /run:
+d /run/clamav 0755 vscan vscan -





commit mate-themes for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package mate-themes for openSUSE:Factory 
checked in at 2016-07-24 19:53:29

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


Package is "mate-themes"

Changes:

--- /work/SRC/openSUSE:Factory/mate-themes/mate-themes.changes  2016-07-03 
12:29:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.mate-themes.new/mate-themes.changes 
2016-07-24 19:53:54.0 +0200
@@ -1,0 +2,35 @@
+Fri Jul 22 20:21:23 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.20.10:
+  * GTK+-3.20 TOK themes: Remove notebook border colour for
+pavucontrol.
+  * GTK+-3.20 GreenLaguna: Remove notebook border colour for
+pavucontrol.
+  * GTK+-3.20 Submarine themes: Remove notebook border colour for
+pavucontrol.
+  * GTK+-3.20 Menta themes: Remove notebook border colour for
+pavucontrol.
+  * GTK+-3.20 submarine themes: Change pathbar settings in Caja to
+follow latest changes in master.
+  * GTK+-3.20 Menta themes: Change pathbar settings in caja to
+follow latest changes in master.
+  * GTK+-3.20 most themes: Fix fg colour of treeview.trough if
+selected.
+  * GTK+-3.20 GreenLaguna: Style treeview progressbar.
+  * GTK+-3.20 TOK themes: Style treeview progressbar.
+  * GTK+-3.20 submarine themes: Style treeview progressbar.
+  * GTK+-3.20 Menta themes: Style treeview progressbars.
+  * GTK+-3.20 BlackMATE: Fix treeview progressbars.
+  * GTK+-3.20 TOK themes: Style pavucontrol.
+  * GTK+-3.20 GreenLaguna: Style pavucontrol.
+  * GTK+-3.20 Submarine themes: Style pavucontrol.
+  * GTK+-3.20 Menta themes: Style pavucontrol.
+  * GTK+-3.20 Menta and Submarine: Minor icon size correction for
+na-tray-applet.
+  * GTK+-3.20 all themes: Use "%" units instead of of hardcoded
+values for font-size.
+  * GTK+-3.20 Submarine themes: Fix notebook tabs in atril
+annotation sidebar.
+  * Update translations.
+
+---

Old:

  mate-themes-3.20.9.tar.xz

New:

  mate-themes-3.20.10.tar.xz



Other differences:
--
++ mate-themes.spec ++
--- /var/tmp/diff_new_pack.QuG24M/_old  2016-07-24 19:53:55.0 +0200
+++ /var/tmp/diff_new_pack.QuG24M/_new  2016-07-24 19:53:55.0 +0200
@@ -21,7 +21,7 @@
 # Let's use the Gtk 3.20 version for openSUSE Tumbleweed.
 %define _version 3.20
 Name:   mate-themes
-Version:3.20.9
+Version:3.20.10
 Release:0
 Summary:Themes for the MATE desktop
 License:LGPL-2.1+

++ mate-themes-3.20.9.tar.xz -> mate-themes-3.20.10.tar.xz ++
 3861 lines of diff (skipped)




commit perl-CPAN-Perl-Releases for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package perl-CPAN-Perl-Releases for 
openSUSE:Factory checked in at 2016-07-24 19:53:24

Comparing /work/SRC/openSUSE:Factory/perl-CPAN-Perl-Releases (Old)
 and  /work/SRC/openSUSE:Factory/.perl-CPAN-Perl-Releases.new (New)


Package is "perl-CPAN-Perl-Releases"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-CPAN-Perl-Releases/perl-CPAN-Perl-Releases.changes
  2016-06-25 02:24:07.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-CPAN-Perl-Releases.new/perl-CPAN-Perl-Releases.changes
 2016-07-24 19:53:46.0 +0200
@@ -1,0 +2,12 @@
+Thu Jul 21 05:05:49 UTC 2016 - co...@suse.com
+
+- updated to 2.84
+   see /usr/share/doc/packages/perl-CPAN-Perl-Releases/Changes
+
+---
+Tue Jul 19 05:05:34 UTC 2016 - co...@suse.com
+
+- updated to 2.82
+   see /usr/share/doc/packages/perl-CPAN-Perl-Releases/Changes
+
+---

Old:

  CPAN-Perl-Releases-2.80.tar.gz

New:

  CPAN-Perl-Releases-2.84.tar.gz



Other differences:
--
++ perl-CPAN-Perl-Releases.spec ++
--- /var/tmp/diff_new_pack.7cjQWl/_old  2016-07-24 19:53:47.0 +0200
+++ /var/tmp/diff_new_pack.7cjQWl/_new  2016-07-24 19:53:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-CPAN-Perl-Releases
-Version:2.80
+Version:2.84
 Release:0
 %define cpan_name CPAN-Perl-Releases
 Summary:Mapping Perl releases on CPAN to the location of the tarballs

++ CPAN-Perl-Releases-2.80.tar.gz -> CPAN-Perl-Releases-2.84.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Perl-Releases-2.80/Changes 
new/CPAN-Perl-Releases-2.84/Changes
--- old/CPAN-Perl-Releases-2.80/Changes 2016-06-20 23:10:46.0 +0200
+++ new/CPAN-Perl-Releases-2.84/Changes 2016-07-20 20:32:14.0 +0200
@@ -1,8 +1,28 @@
 ==
-Changes from 2011-06-22 00:00:00 + to present.
+Changes from 2011-07-22 00:00:00 + to present.
 ==
 
 -
+version 2.84 at 2016-07-20 18:31:32 +
+-
+
+  Change: 0d4340f965fe90d93d371b8512acb6cb13fb08a2
+  Author: Chris 'BinGOs' Williams 
+  Date : 2016-07-20 19:31:32 +
+
+Updated for v5.25.3 
+
+-
+version 2.82 at 2016-07-17 22:44:09 +
+-
+
+  Change: fd4514153cf3a46fa3c4bb7308e1718f10ecb36d
+  Author: Chris 'BinGOs' Williams 
+  Date : 2016-07-17 23:44:09 +
+
+Updated for v5.22.3-RC1 and v5.24.1-RC1 
+
+-
 version 2.80 at 2016-06-20 20:52:25 +
 -
 
@@ -1341,16 +1361,6 @@
 
 Add missing 'use Exporter' code. 
 
--
-version 0.24 at 2011-07-20 21:55:24 +
--
-
-  Change: 1f140c8c30515dbca44e357cb4be27ec8779b184
-  Author: Chris 'BinGOs' Williams 
-  Date : 2011-07-20 22:55:24 +
-
-Updated for v5.15.1 
-
 =
-Plus 11 releases after 2011-06-22 00:00:00 +.
+Plus 12 releases after 2011-07-22 00:00:00 +.
 =
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Perl-Releases-2.80/MANIFEST 
new/CPAN-Perl-Releases-2.84/MANIFEST
--- old/CPAN-Perl-Releases-2.80/MANIFEST2016-06-20 23:10:46.0 
+0200
+++ new/CPAN-Perl-Releases-2.84/MANIFEST2016-07-20 20:32:14.0 
+0200
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v6.005.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v6.006.
 Changes
 LICENSE
 MANIFEST
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Perl-Releases-2.80/META.json 
new/CPAN-Perl-Releases-2.84/META.json
--- old/CPAN-Perl-Releases-2.80/META.json   2016-06-20 23:10:46.0 
+0200
+++ new/CPAN-Perl-Releases-2.84/META.json   2016-07-20 20:32:14.0 
+0200
@@ -4,7 +4,7 @@
   "Chris Williams "
],
"dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 6.005, CPAN::Meta::Converter version 
2.150005",
+   "generated_by" : "Dist::Zilla version 6.006, CPAN::Meta::Converter version 
2.150005",
"license" : [
   "perl_5"
],
@@ -54,6 +54,7 @@
   

commit python3-lazy_object_proxy for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package python3-lazy_object_proxy for 
openSUSE:Factory checked in at 2016-07-24 19:52:32

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


Package is "python3-lazy_object_proxy"

Changes:

--- 
/work/SRC/openSUSE:Factory/python3-lazy_object_proxy/python3-lazy_object_proxy.changes
  2016-07-14 09:44:01.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-lazy_object_proxy.new/python3-lazy_object_proxy.changes
 2016-07-24 19:53:17.0 +0200
@@ -1,0 +2,8 @@
+Mon Jul  4 16:36:47 UTC 2016 - a...@gmx.de
+
+- update to version 1.2.2:
+  * Added `manylinux `_
+wheels.
+  * Minor cleanup in readme.
+
+---

Old:

  lazy-object-proxy-1.2.1.tar.gz

New:

  lazy-object-proxy-1.2.2.tar.gz



Other differences:
--
++ python3-lazy_object_proxy.spec ++
--- /var/tmp/diff_new_pack.FTIwSD/_old  2016-07-24 19:53:18.0 +0200
+++ /var/tmp/diff_new_pack.FTIwSD/_new  2016-07-24 19:53:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-lazy_object_proxy
-Version:1.2.1
+Version:1.2.2
 Release:0
 Summary:Rebuild a new abstract syntax tree from Python's ast
 License:BSD-2-Clause

++ lazy-object-proxy-1.2.1.tar.gz -> lazy-object-proxy-1.2.2.tar.gz ++
 2217 lines of diff (skipped)




commit ghc-path-pieces for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ghc-path-pieces for openSUSE:Factory 
checked in at 2016-07-24 19:52:06

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


Package is "ghc-path-pieces"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-path-pieces/ghc-path-pieces.changes  
2015-11-10 10:02:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-path-pieces.new/ghc-path-pieces.changes 
2016-07-24 19:53:04.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:30:57 UTC 2016 - psim...@suse.com
+
+- Update to version 0.2.1 revision 1 with cabal2obs.
+
+---

New:

  1.cabal



Other differences:
--
++ ghc-path-pieces.spec ++
--- /var/tmp/diff_new_pack.jr9f29/_old  2016-07-24 19:53:05.0 +0200
+++ /var/tmp/diff_new_pack.jr9f29/_new  2016-07-24 19:53:05.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-path-pieces
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,25 +17,22 @@
 
 
 %global pkg_name path-pieces
-
 %bcond_with tests
-
-Name:   ghc-path-pieces
+Name:   ghc-%{pkg_name}
 Version:0.2.1
 Release:0
 Summary:Components of paths
 License:BSD-2-Clause
 Group:  System/Libraries
-
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-time-devel
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-HUnit-devel
 BuildRequires:  ghc-QuickCheck-devel
@@ -47,33 +44,36 @@
 Hackage documentation generation is not reliable. For up to date documentation,
 please see: .
 
-
 %package devel
 Summary:Haskell %{pkg_name} library development files
 Group:  Development/Libraries/Other
+Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}
-Requires:   %{name} = %{version}-%{release}
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
 
-
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
+
 
 %build
 %ghc_lib_build
 
+
 %install
 %ghc_lib_install
 
+
 %check
 %if %{with tests}
-%cabal test
+%{cabal} test
 %endif
 
+
 %post devel
 %ghc_pkg_recache
 
@@ -86,6 +86,6 @@
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
-%doc README.md
+%doc ChangeLog.md README.md
 
 %changelog

++ 1.cabal ++
name:path-pieces
version: 0.2.1
x-revision: 1
license: BSD3
license-file:LICENSE
author:  Michael Snoyman 
maintainer:  Michael Snoyman 
synopsis:Components of paths.
description:Hackage documentation generation is not reliable. For up to 
date documentation, please see: .
category:Web, Yesod
stability:   unstable
cabal-version:   >= 1.8
build-type:  Simple
extra-source-files:
  test/main.hs
  ChangeLog.md
  README.md

library
build-depends:   base >= 4.6 && < 5
   , text >= 0.5
   , time
exposed-modules: Web.PathPieces
ghc-options: -Wall

test-suite test
type:  exitcode-stdio-1.0
main-is:   main.hs
hs-source-dirs: test
ghc-options:   -Wall
build-depends:   HUnit
   , hspec >= 1.3
   , base >= 4 && < 5
   , QuickCheck
   , path-pieces
   , text

source-repository head
  type: git
  location: https://github.com/yesodweb/path-pieces



commit guile-json for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package guile-json for openSUSE:Factory 
checked in at 2016-07-24 19:53:21

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


Package is "guile-json"

Changes:

--- /work/SRC/openSUSE:Factory/guile-json/guile-json.changes2015-11-10 
10:03:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.guile-json.new/guile-json.changes   
2016-07-24 19:53:45.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul 22 08:45:13 UTC 2016 - sleep_wal...@opensuse.org
+
+- bump to 0.5.0
+   changes since 0.4.0:
+ * Allow converting simple alists to json
+   e.g.: (scm->json-string '((a . 1) (b . 2
+
+---

Old:

  guile-json-0.4.0.tar.gz
  guile-json-0.4.0.tar.gz.asc

New:

  guile-json-0.5.0.tar.gz
  guile-json-0.5.0.tar.gz.asc



Other differences:
--
++ guile-json.spec ++
--- /var/tmp/diff_new_pack.kPgjNL/_old  2016-07-24 19:53:46.0 +0200
+++ /var/tmp/diff_new_pack.kPgjNL/_new  2016-07-24 19:53:46.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package guile-json
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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:   guile-json
-Version:0.4.0
+Version:0.5.0
 Release:0
 Summary:JSON module for Guile
 License:LGPL-3.0+

++ guile-json-0.4.0.tar.gz -> guile-json-0.5.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/guile-json-0.4.0/AUTHORS new/guile-json-0.5.0/AUTHORS
--- old/guile-json-0.4.0/AUTHORS2014-08-17 01:08:19.0 +0200
+++ new/guile-json-0.5.0/AUTHORS2016-02-24 06:58:15.0 +0100
@@ -3,6 +3,7 @@
 
 List of contributors (in alphabetical order):
 
+Jan Nieuwenhuizen 
 Ian Price 
 David Thompson 
 Doug Woos 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/guile-json-0.4.0/ChangeLog 
new/guile-json-0.5.0/ChangeLog
--- old/guile-json-0.4.0/ChangeLog  2014-08-17 01:12:35.0 +0200
+++ new/guile-json-0.5.0/ChangeLog  2016-02-24 07:02:21.0 +0100
@@ -1,3 +1,68 @@
+commit 3078a8e1830d04e3dae4b1437c5cdb274cc026b2
+Author: Aleix Conchillo Flaqué 
+Date:   Tue Feb 23 21:59:27 2016 -0800
+
+bump configure.ac version to 0.5.0 and update README
+
+ README.org   | 2 +-
+ configure.ac | 4 ++--
+ 2 files changed, 3 insertions(+), 3 deletions(-)
+
+commit 50f76f2324bf5813989d19510186288ea0f4eee5
+Author: Aleix Conchillo Flaqué 
+Date:   Tue Feb 23 21:58:35 2016 -0800
+
+update AUTHORS and NEWS file
+
+ AUTHORS | 1 +
+ NEWS| 7 +++
+ 2 files changed, 8 insertions(+)
+
+commit 40ae2a81a8e29fd8f0ca80efdb0ed6b7a43a3a27
+Author: Jan Nieuwenhuizen 
+Date:   Sat Feb 13 21:16:46 2016 +0100
+
+builder: build objects from alists.
+
+* json/builder.scm (atom?): New function.
+* json/builder.scm (json-alist?): New function.
+* json/builder.scm (json-build-object): SCM is an alist.
+* json/builder.scm (json-build): Use it to support building objects from 
both
+  hash-tables and alists.
+
+ json/builder.scm | 19 ---
+ 1 file changed, 16 insertions(+), 3 deletions(-)
+
+commit 0c9e15c186b995e4d164aee95b7d5dc9c01df2d3
+Author: Jan Nieuwenhuizen 
+Date:   Wed Aug 5 08:21:13 2015 +0200
+
+builder: convert symbols to string.
+
+* json/builder.scm (->string): New function.
+* json/builder.scm (json-build-string): Use it.
+
+ json/builder.scm | 10 +-
+ 1 file changed, 9 insertions(+), 1 deletion(-)
+
+commit 3a566d07d63b8a2b4d547e84cb15543aed896e8d
+Author: Aleix Conchillo Flaqué 
+Date:   Mon Aug 18 11:41:54 2014 +0200
+
+copy guile.m4 from guile 2.0.11
+
+ build-aux/guile.m4 | 55 --
+ 1 file changed, 45 insertions(+), 10 deletions(-)
+
+commit 8bcfb76a7b7dc1b4df7ab89ba6a57d0848954fbe
+Author: Aleix Conchillo Flaqué 
+Date:   Sun Aug 17 10:05:23 2014 +0200
+
+update INSTALL notes
+
+ INSTALL | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
 commit 4267fba1812e61ea260157dbdaa192f02434b6e9
 Author: Aleix Conchillo Flaqué 
 Date:   Sun Aug 17 01:09:17 2014 +0200
diff -urN 

commit raspberrypi-firmware for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package raspberrypi-firmware for 
openSUSE:Factory checked in at 2016-07-24 19:53:06

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


Package is "raspberrypi-firmware"

Changes:

--- 
/work/SRC/openSUSE:Factory/raspberrypi-firmware/raspberrypi-firmware-config-rpi.changes
 2016-06-23 13:35:48.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware.new/raspberrypi-firmware-config-rpi.changes
2016-07-24 19:53:28.0 +0200
@@ -1,0 +2,6 @@
+Thu Jul 21 19:59:56 UTC 2016 - mplus...@suse.com
+
+- Update to 051aed7 (2016.07.15)
+- Simplify spec file a bit
+
+---
raspberrypi-firmware-config-rpi2.changes: same change
raspberrypi-firmware-config-rpi3.changes: same change
raspberrypi-firmware.changes: same change

Old:

  raspberrypi-firmware-2016.05.20.tar.bz2

New:

  raspberrypi-firmware-2016.07.15.tar.bz2



Other differences:
--
++ raspberrypi-firmware-config-rpi.spec ++
--- /var/tmp/diff_new_pack.UkrWPe/_old  2016-07-24 19:53:30.0 +0200
+++ /var/tmp/diff_new_pack.UkrWPe/_new  2016-07-24 19:53:30.0 +0200
@@ -17,16 +17,16 @@
 
 
 Name:   raspberrypi-firmware-config-rpi
-Version:2016.05.20
+Version:2016.07.15
 Release:0
 Summary:Configuration for the Raspberry Pi firmware loader
 License:MIT
 Group:  System/Boot
 Url:https://github.com/raspberrypi/firmware/
 Source: config-rpi.txt
+BuildRequires:  raspberrypi-firmware
 Requires:   raspberrypi-firmware = %{version}
 Conflicts:  otherproviders(raspberrypi-firmware-config)
-BuildRequires:  raspberrypi-firmware
 Provides:   raspberrypi-firmware-branding-openSUSE = %{version}
 Obsoletes:  raspberrypi-firmware-branding-openSUSE < %{version}
 Provides:   raspberrypi-firmware-config = %{version}
@@ -42,8 +42,7 @@
 %build
 
 %install
-mkdir -p %{buildroot}/boot/vc
-install -m 644 %{SOURCE0} %{buildroot}/boot/vc/config.txt
+install -D -p -m 0644 %{SOURCE0} %{buildroot}/boot/vc/config.txt
 
 %files
 %defattr(-,root,root)

++ raspberrypi-firmware-config-rpi2.spec ++
--- /var/tmp/diff_new_pack.UkrWPe/_old  2016-07-24 19:53:30.0 +0200
+++ /var/tmp/diff_new_pack.UkrWPe/_new  2016-07-24 19:53:30.0 +0200
@@ -17,16 +17,16 @@
 
 
 Name:   raspberrypi-firmware-config-rpi2
-Version:2016.05.20
+Version:2016.07.15
 Release:0
 Summary:Configuration for the Raspberry Pi firmware loader
 License:MIT
 Group:  System/Boot
 Url:https://github.com/raspberrypi/firmware/
 Source: config-rpi2.txt
+BuildRequires:  raspberrypi-firmware
 Requires:   raspberrypi-firmware = %{version}
 Conflicts:  otherproviders(raspberrypi-firmware-config)
-BuildRequires:  raspberrypi-firmware
 Provides:   raspberrypi-firmware-branding-openSUSE = %{version}
 Obsoletes:  raspberrypi-firmware-branding-openSUSE < %{version}
 Provides:   raspberrypi-firmware-config = %{version}
@@ -42,8 +42,7 @@
 %build
 
 %install
-mkdir -p %{buildroot}/boot/vc
-install -m 644 %{SOURCE0} %{buildroot}/boot/vc/config.txt
+install -D -p -m 0644 %{SOURCE0} %{buildroot}/boot/vc/config.txt
 
 %files
 %defattr(-,root,root)

++ raspberrypi-firmware-config-rpi3.spec ++
--- /var/tmp/diff_new_pack.UkrWPe/_old  2016-07-24 19:53:30.0 +0200
+++ /var/tmp/diff_new_pack.UkrWPe/_new  2016-07-24 19:53:30.0 +0200
@@ -17,16 +17,16 @@
 
 
 Name:   raspberrypi-firmware-config-rpi3
-Version:2016.05.20
+Version:2016.07.15
 Release:0
 Summary:Configuration for the Raspberry Pi firmware loader
 License:MIT
 Group:  System/Boot
 Url:https://github.com/raspberrypi/firmware/
 Source: config-rpi3.txt
+BuildRequires:  raspberrypi-firmware
 Requires:   raspberrypi-firmware = %{version}
 Conflicts:  otherproviders(raspberrypi-firmware-config)
-BuildRequires:  raspberrypi-firmware
 Provides:   raspberrypi-firmware-branding-openSUSE = %{version}
 Obsoletes:  raspberrypi-firmware-branding-openSUSE < %{version}
 Provides:   raspberrypi-firmware-config = %{version}
@@ -42,8 +42,7 @@
 %build
 
 %install
-mkdir -p %{buildroot}/boot/vc
-install -m 644 %{SOURCE0} %{buildroot}/boot/vc/config.txt
+install -D -p -m 0644 %{SOURCE0} %{buildroot}/boot/vc/config.txt
 
 %files
 %defattr(-,root,root)

++ raspberrypi-firmware.spec ++
--- /var/tmp/diff_new_pack.UkrWPe/_old  2016-07-24 19:53:31.0 +0200
+++ /var/tmp/diff_new_pack.UkrWPe/_new  

commit python-py2pack for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package python-py2pack for openSUSE:Factory 
checked in at 2016-07-24 19:53:17

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


Package is "python-py2pack"

Changes:

--- /work/SRC/openSUSE:Factory/python-py2pack/python-py2pack.changes
2016-07-12 23:51:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-py2pack.new/python-py2pack.changes   
2016-07-24 19:53:41.0 +0200
@@ -1,0 +2,5 @@
+Fri Jul 22 06:52:54 UTC 2016 - tbecht...@suse.com
+
+- Add missing python-six BuildRequires
+
+---



Other differences:
--
++ python-py2pack.spec ++
--- /var/tmp/diff_new_pack.f4KyAp/_old  2016-07-24 19:53:43.0 +0200
+++ /var/tmp/diff_new_pack.f4KyAp/_new  2016-07-24 19:53:43.0 +0200
@@ -32,6 +32,7 @@
 BuildRequires:  python-lxml
 BuildRequires:  python-requests
 BuildRequires:  python-setuptools
+BuildRequires:  python-six
 Requires:   python-Jinja2
 Requires:   python-argparse
 Requires:   python-cssselect




commit dconf-editor for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package dconf-editor for openSUSE:Factory 
checked in at 2016-07-24 19:53:26

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


Package is "dconf-editor"

Changes:

--- /work/SRC/openSUSE:Factory/dconf-editor/dconf-editor.changes
2016-07-03 12:28:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.dconf-editor.new/dconf-editor.changes   
2016-07-24 19:53:50.0 +0200
@@ -1,0 +2,5 @@
+Fri Jul 22 15:27:57 UTC 2016 - fcro...@suse.com
+
+- Recommends lang package for translations (bsc#988528).
+
+---



Other differences:
--
++ dconf-editor.spec ++
--- /var/tmp/diff_new_pack.8b6PPf/_old  2016-07-24 19:53:51.0 +0200
+++ /var/tmp/diff_new_pack.8b6PPf/_new  2016-07-24 19:53:51.0 +0200
@@ -35,6 +35,7 @@
 # Special case: we obsolete dconf-lang < 0.24, as at that time, dconf-editor 
was part of dconf.
 # The gettext domain for dconf-editor remained dconf
 Obsoletes:  dconf-lang < 0.24
+Recommends: %{name}-lang
 
 %description
 dconf is a low-level configuration system. Its main purpose is to




commit knetwalk for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package knetwalk for openSUSE:Factory 
checked in at 2016-07-24 19:53:00

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


Package is "knetwalk"

Changes:

--- /work/SRC/openSUSE:Factory/knetwalk/knetwalk.changes2016-06-25 
02:02:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.knetwalk.new/knetwalk.changes   2016-07-24 
19:53:25.0 +0200
@@ -1,0 +2,13 @@
+Thu Jul 21 12:35:00 UTC 2016 - wba...@tmo.at
+
+- Cleanup build requirements
+
+---
+Fri Jul  8 00:06:44 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  knetwalk-16.04.2.tar.xz

New:

  knetwalk-16.04.3.tar.xz



Other differences:
--
++ knetwalk.spec ++
--- /var/tmp/diff_new_pack.f14uHL/_old  2016-07-24 19:53:26.0 +0200
+++ /var/tmp/diff_new_pack.f14uHL/_new  2016-07-24 19:53:26.0 +0200
@@ -23,42 +23,21 @@
 BuildRequires:  pkgconfig(Qt5Widgets)
 BuildRequires:  pkgconfig(Qt5Qml)
 BuildRequires:  pkgconfig(Qt5Quick)
-BuildRequires:  pkgconfig(Qt5QuickWidgets)
-BuildRequires:  pkgconfig(Qt5Svg)
-BuildRequires:  pkgconfig(Qt5Test)
-BuildRequires:  pkgconfig(Qt5Declarative)
-BuildRequires:  kcoreaddons-devel
 BuildRequires:  kconfig-devel
-BuildRequires:  kitemmodels-devel
-BuildRequires:  kwidgetsaddons-devel
-BuildRequires:  kcodecs-devel
-BuildRequires:  kwindowsystem-devel
-BuildRequires:  karchive-devel
+BuildRequires:  kconfigwidgets-devel
+BuildRequires:  kcoreaddons-devel
+BuildRequires:  kcrash-devel
 BuildRequires:  kdbusaddons-devel
-BuildRequires:  kdnssd-framework-devel
-BuildRequires:  kdeclarative-devel
+BuildRequires:  kdoctools-devel
 BuildRequires:  ki18n-devel
-BuildRequires:  kguiaddons-devel
-BuildRequireS:  kservice-devel
-BuildRequires:  kconfigwidgets-devel
-BuildRequires:  kitemviews-devel
-BuildRequires:  kiconthemes-devel
-BuildRequires:  kcompletion-devel
-BuildRequires:  kjobwidgets-devel
 BuildRequires:  ktextwidgets-devel
-BuildRequires:  kglobalaccel-devel
+BuildRequires:  kwidgetsaddons-devel
 BuildRequires:  kxmlgui-devel
-BuildRequires:  kcrash-devel
-BuildRequires:  kbookmarks-devel
-BuildRequires:  kio-devel
-BuildRequires:  knotifyconfig-devel
-BuildRequires:  knewstuff-devel
-BuildRequires:  kdelibs4support-devel
 Summary:Puzzle game
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:knetwalk-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ knetwalk-16.04.2.tar.xz -> knetwalk-16.04.3.tar.xz ++




commit deluge for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package deluge for openSUSE:Factory checked 
in at 2016-07-24 19:52:20

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


Package is "deluge"

Changes:

--- /work/SRC/openSUSE:Factory/deluge/deluge.changes2016-05-17 
17:16:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.deluge.new/deluge.changes   2016-07-24 
19:53:12.0 +0200
@@ -1,0 +2,61 @@
+Wed Jul 20 23:19:23 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.3.13:
+  * Core: Increase RSA key size from 1024 to 2048 and use SHA256
+digest.
+  * Core: Fix empty error message from certain trackers.
+  * Core: Fix torrent ending up displaying the wrong state.
+  * Core: Force a torrent into Error state if the resume data is
+rejected.
+  * Core: Workaround unwanted tracker announce when force rechecking
+paused torrent.
+  * Core: Stop moving torrent files if target files exist to prevent
+unintended clobbering of data.
+  * Core: Fix the pausing and resuming of the Deluge session so
+torrents return to previous state.
+  * Core: Add support for TLS SNI in httpdownloader.
+  * Core: Ensure base32 magnet hash is uppercase to fix lowercase
+magnets uris.
+  * Daemon: New command-line option to restict selected config key to
+read-only.
+  * Daemon: Allow use of uppercase log level to match UIs.
+  * UI: Fixed error with blank lines in auth file.
+  * GtkUI: Fix installing plugin from a non-ascii directory.
+  * GtkUI: Error'd torrents no longer display a progress percentage.
+  * GtkUI: Fixed the 'Added' column showing the wrong date.
+  * GtkUI: Prevent the user from changing tracker selection when
+editing trackers.
+  * GtkUI: Fix showing the wrong connected status with hostname in
+the Connection Manager.
+  * GtkUI: Fix the progress column to sort by progress and state
+correctly.
+  * GtkUI: Fix incorrect Move Completed directory shown in Options
+tab.
+  * GtkUI: Sorting for name column is now case insensitive.
+  * GtkUI: Reduce height of Add Torrent Dialog to help with smaller screeen 
resoltuions.
+  * GtkUI: Fix adding UDP trackers to trackers dialog.
+  * WebUI: Fix HTTPS negotiating incorrect cipher.
+  * WebUI: Fix the broken Options context menu.
+  * WebUI: Fix the hostlist config file not being created.
+  * WebUI: Fix plugin's js code not loading when using the WebUI
+plugin.
+  * Console: Fix adding non-ascii torrent in non-interactive mode.
+  * Console: Add time_added to info sort keys.
+  * Blocklist Plugin: Fix plugin lockup with empty url.
+  * Scheduler Plugin: Fix an error accidentally introduced in 1.3.12.
+  * Notification Plugin: Fix the popup to show the actual count of
+files finished.
+  * Notification Plugin: Fix issue with SMTP port entry not
+updating in GtkUI.
+  * AutoAdd Plugin: Fix watch directory not accepting uppercase file
+extension.
+  * Extractor Plugin: Ignore the remaining rar part files to
+prevent spawning useless processes.
+  * Extractor Plugin: Fix only an directory folder when
+extracting rar files.
+- Add deluge-suse-geoip-location.patch: point to the right
+  GeoIP.dat location.
+- Add deluge-libtorrent-1.1-geoip.patch: use python-GeoIP to get
+  GeoIP data.
+
+---

Old:

  deluge-1.3.12.tar.gz

New:

  deluge-1.3.13.tar.xz
  deluge-libtorrent-1.1-geoip.patch
  deluge-suse-geoip-location.patch



Other differences:
--
++ deluge.spec ++
--- /var/tmp/diff_new_pack.iuAuQg/_old  2016-07-24 19:53:13.0 +0200
+++ /var/tmp/diff_new_pack.iuAuQg/_new  2016-07-24 19:53:13.0 +0200
@@ -17,17 +17,21 @@
 
 
 Name:   deluge
-Version:1.3.12
+Version:1.3.13
 Release:0
 Summary:BitTorrent Client
 License:SUSE-GPL-3.0-with-openssl-exception
 Group:  Productivity/Networking/File-Sharing
 Url:http://deluge-torrent.org/
-Source: 
http://download.deluge-torrent.org/source/%{name}-%{version}.tar.gz
+Source: 
http://download.deluge-torrent.org/source/%{name}-%{version}.tar.xz
+# PATCH-FIX-OPENSUSE deluge-suse-geoip-location.patch -- Point to the right 
GeoIP.dat location.
+Patch0: %{name}-suse-geoip-location.patch
 # PATCH-FIX-UPSTREAM deluge-update_7z_binary.patch
-Patch0: %{name}-update_7z_binary.patch
+Patch1: %{name}-update_7z_binary.patch
+# PATCH-FEATURE-OPENSUSE deluge-libtorrent-1.1-geoip.patch sor.ale...@meowr.ru 
-- Use python-GeoIP to get GeoIP data.
+Patch2: %{name}-libtorrent-1.1-geoip.patch
 # PATCH-FIX-OPENSUSE deluge-fix-blocklist-crash.patch -- Workaround a bug in 

commit hdf for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package hdf for openSUSE:Factory checked in 
at 2016-07-24 19:52:29

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


Package is "hdf"

Changes:

--- /work/SRC/openSUSE:Factory/hdf/hdf.changes  2016-02-18 12:36:33.0 
+0100
+++ /work/SRC/openSUSE:Factory/.hdf.new/hdf.changes 2016-07-24 
19:53:15.0 +0200
@@ -1,0 +2,7 @@
+Tue Jul 19 18:13:49 UTC 2016 - mplus...@suse.com
+
+- Fix building for s390
+  * hdf-s390.patch
+- Disable tests for aarch64 and s390
+
+---

New:

  hdf-s390.patch



Other differences:
--
++ hdf.spec ++
--- /var/tmp/diff_new_pack.pYPTaK/_old  2016-07-24 19:53:16.0 +0200
+++ /var/tmp/diff_new_pack.pYPTaK/_new  2016-07-24 19:53:16.0 +0200
@@ -47,6 +47,7 @@
 # Fix a strict-aliasing warning.
 Patch10:hdf-strict-aliasing.patch
 Patch11:hdf-aarch64.patch
+Patch12:hdf-s390.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  bison
 BuildRequires:  bzip2
@@ -375,7 +376,7 @@
 %setup -q
 %patch0 -p1 -b .maxavailfiles
 %patch1 -p1
-%patch4 -p1 -b .arm
+%patch4 -p0 -b .arm
 %patch5 -p1
 %patch6 -p1
 %patch7 -p1
@@ -383,6 +384,7 @@
 %patch9
 %patch10
 %patch11 -p1
+%patch12 -p0
 
 for mpi in %_mpi;
 do
@@ -595,8 +597,8 @@
 %_hdf_version  %{version}
 EOF
 
-# One fortran test fails under ppc64
-%ifnarch ppc64 ppc64le
+# One fortran test fails under ppc64, s390 and aarch64
+%ifnarch ppc64 ppc64le s390x aarch64
 %check
 for mpi in %_mpi; do
 pushd build_static_$mpi

++ hdf-4.2.10-arm.patch ++
--- /var/tmp/diff_new_pack.pYPTaK/_old  2016-07-24 19:53:16.0 +0200
+++ /var/tmp/diff_new_pack.pYPTaK/_new  2016-07-24 19:53:16.0 +0200
@@ -1,6 +1,7 @@
-diff -r -U 3 -p hdf-4.2.7.orig/hdf/src/hconv.h hdf-4.2.7/hdf/src/hconv.h
 hdf-4.2.7.orig/hdf/src/hconv.h 2012-02-06 09:02:43.0 -0500
-+++ hdf-4.2.7/hdf/src/hconv.h  2012-03-07 01:58:21.713088567 -0500
+Index: hdf/src/hconv.h
+===
+--- hdf/src/hconv.h.orig
 hdf/src/hconv.h
 @@ -59,7 +59,7 @@
  /* CONSTANT DEFINITIONS  
*/
  
/*/
@@ -10,9 +11,10 @@
  #   define UI8_IN DFKnb1b   /* Unsigned Integer, 8 bits */
  #   define UI8_OUTDFKnb1b
  #   define SI16_INDFKnb2b   /* S = Signed */
-diff -r -U 3 -p hdf-4.2.7.orig/hdf/src/hdfi.h hdf-4.2.7/hdf/src/hdfi.h
 hdf-4.2.7.orig/hdf/src/hdfi.h  2012-02-06 09:02:43.0 -0500
-+++ hdf-4.2.7/hdf/src/hdfi.h   2012-03-06 23:12:43.941269780 -0500
+Index: hdf/src/hdfi.h
+===
+--- hdf/src/hdfi.h.orig
 hdf/src/hdfi.h
 @@ -76,6 +76,7 @@
  #define DFMT_LINUX640x4441
  #define DFMT_POWERPC64  0x
@@ -21,7 +23,7 @@
  
  /* I/O library constants */
  #define UNIXUNBUFIO 1
-@@ -1014,6 +1015,57 @@ typedef int   hdf_pint_t;
+@@ -1014,6 +1015,57 @@ typedef long  hdf_pint_t;
  
  #endif /*Linux 64 */
  

++ hdf-s390.patch ++
Index: hdf/src/hdfi.h
===
--- hdf/src/hdfi.h.orig
+++ hdf/src/hdfi.h
@@ -77,6 +77,7 @@
 #define DFMT_POWERPC64  0x
 #define DFMT_LINUXPPC   0x
 #define DFMT_LINUXARM   0x4441
+#define DFMT_LINUX390   0x
 
 /* I/O library constants */
 #define UNIXUNBUFIO 1
@@ -1117,6 +1118,66 @@ typedef long  hdf_pint_t;
 
 #endif /* Linux ARM64 */
 
+/* Linux s390/s390x */
+#if defined __s390__ || defined __s390x__
+
+#ifdef GOT_MACHINE
+If you get an error on this line more than one machine type has been defined.
+Please check your Makefile.
+#endif
+#define GOT_MACHINE
+
+#include/* for unbuffered i/o stuff */
+#include 
+#define DF_MT DFMT_LINUX390
+typedef void  VOID;
+typedef void  *VOIDP;
+typedef char  *_fcd;
+typedef char  char8;
+typedef unsigned char uchar8;
+typedef char  int8;
+typedef unsigned char uint8;
+typedef short int int16;
+typedef unsigned short int uint16;
+#ifdef __s390x__ /* 64-bit environment */
+typedef int   int32;
+typedef unsigned int  uint32;
+#else /* 32-bit environment */
+typedef long int  int32;
+typedef unsigned long int uint32;
+#endif
+typedef int   intn;
+typedef unsigned int  uintn;
+typedef int   intf; /* size of INTEGERs in Fortran compiler 

commit go for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package go for openSUSE:Factory checked in 
at 2016-07-24 19:53:03

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


Package is "go"

Changes:

--- /work/SRC/openSUSE:Factory/go/go.changes2016-07-05 09:52:47.0 
+0200
+++ /work/SRC/openSUSE:Factory/.go.new/go.changes   2016-07-24 
19:53:26.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul 19 10:54:20 UTC 2016 - norm...@linux.vnet.ibm.com
+
+- do not set with_shared for ppc64 (BE)
+
+---



Other differences:
--
++ go.spec ++
--- /var/tmp/diff_new_pack.xpHYdZ/_old  2016-07-24 19:53:28.0 +0200
+++ /var/tmp/diff_new_pack.xpHYdZ/_new  2016-07-24 19:53:28.0 +0200
@@ -49,6 +49,9 @@
 %else
 %define with_shared 0
 %endif
+%ifarch ppc64
+%define with_shared 0
+%endif
 
 Name:   go
 Version:1.6.2




commit kfourinline for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kfourinline for openSUSE:Factory 
checked in at 2016-07-24 19:52:14

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  2016-06-25 
02:01:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.kfourinline.new/kfourinline.changes 
2016-07-24 19:53:10.0 +0200
@@ -1,0 +2,13 @@
+Sat Jul 16 23:09:18 UTC 2016 - wba...@tmo.at
+
+- Cleanup build requirements
+
+---
+Thu Jul  7 23:53:09 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kfourinline-16.04.2.tar.xz

New:

  kfourinline-16.04.3.tar.xz



Other differences:
--
++ kfourinline.spec ++
--- /var/tmp/diff_new_pack.AbzCuI/_old  2016-07-24 19:53:11.0 +0200
+++ /var/tmp/diff_new_pack.AbzCuI/_new  2016-07-24 19:53:11.0 +0200
@@ -20,32 +20,22 @@
 BuildRequires:  libkdegames-devel
 BuildRequires:  extra-cmake-modules
 BuildRequires:  pkgconfig(Qt5Widgets)
-BuildRequires:  pkgconfig(Qt5QuickWidgets)
-BuildRequires:  pkgconfig(Qt5Test)
 BuildRequires:  pkgconfig(Qt5Svg)
-BuildRequires:  pkgconfig(Qt5Declarative)
 BuildRequires:  kconfig-devel
 BuildRequires:  kcoreaddons-devel
-BuildRequires:  kwidgetsaddons-devel
+BuildRequires:  kcrash-devel
 BuildRequires:  ki18n-devel
 BuildRequires:  kdnssd-framework-devel
-BuildRequires:  kguiaddons-devel
 BuildRequires:  kconfigwidgets-devel
-BuildRequires:  kitemviews-devel
-BuildRequires:  kdeclarative-devel
-BuildRequires:  kiconthemes-devel
+BuildRequires:  kcompletion-devel
 BuildRequires:  kxmlgui-devel
-BuildRequires:  kio-devel
-BuildRequires:  knotifyconfig-devel
 BuildRequires:  kdelibs4support-devel
-BuildRequires:  knewstuff-devel
-BuildRequires:  phonon4qt5-devel
 BuildRequires:  update-desktop-files
 Summary:Four Wins game
 License:LGPL-2.0+
 Group:  Amusements/Toys/Other
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kfourinline-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ kfourinline-16.04.2.tar.xz -> kfourinline-16.04.3.tar.xz ++




commit perl-DateTime-Format-Pg for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package perl-DateTime-Format-Pg for 
openSUSE:Factory checked in at 2016-07-24 19:52:44

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


Package is "perl-DateTime-Format-Pg"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-DateTime-Format-Pg/perl-DateTime-Format-Pg.changes
  2015-06-23 11:59:41.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-DateTime-Format-Pg.new/perl-DateTime-Format-Pg.changes
 2016-07-24 19:53:18.0 +0200
@@ -1,0 +2,11 @@
+Thu Jul 21 05:16:25 UTC 2016 - co...@suse.com
+
+- updated to 0.16012
+   see /usr/share/doc/packages/perl-DateTime-Format-Pg/Changes
+
+  0.16012 2016-07-19T21:37:31Z
+  - Parsing invalid intervals with no amount and units only should have
+resulted in exceptions, but did not. Reported by Henrik Pauli (ssue #8)
+  - Internal cleanup
+
+---

Old:

  DateTime-Format-Pg-0.16011.tar.gz

New:

  DateTime-Format-Pg-0.16012.tar.gz



Other differences:
--
++ perl-DateTime-Format-Pg.spec ++
--- /var/tmp/diff_new_pack.FnxGC0/_old  2016-07-24 19:53:19.0 +0200
+++ /var/tmp/diff_new_pack.FnxGC0/_new  2016-07-24 19:53:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DateTime-Format-Pg
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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:   perl-DateTime-Format-Pg
-Version:0.16011
+Version:0.16012
 Release:0
 %define cpan_name DateTime-Format-Pg
 Summary:Parse and format PostgreSQL dates and times
@@ -34,7 +34,7 @@
 BuildRequires:  perl(DateTime::Format::Builder) >= 0.72
 BuildRequires:  perl(DateTime::TimeZone) >= 0.05
 BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.36
-BuildRequires:  perl(Module::Build) >= 0.38
+BuildRequires:  perl(Module::Build::Tiny) >= 0.035
 Requires:   perl(DateTime) >= 0.10
 Requires:   perl(DateTime::Format::Builder) >= 0.72
 Requires:   perl(DateTime::TimeZone) >= 0.05
@@ -51,14 +51,14 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Build.PL installdirs=vendor
-./Build build flags=%{?_smp_mflags}
+%{__perl} Build.PL --installdirs=vendor
+./Build build --flags=%{?_smp_mflags}
 
 %check
 ./Build test
 
 %install
-./Build install destdir=%{buildroot} create_packlist=0
+./Build install --destdir=%{buildroot} --create_packlist=0
 %perl_gen_filelist
 
 %files -f %{name}.files

++ DateTime-Format-Pg-0.16011.tar.gz -> DateTime-Format-Pg-0.16012.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DateTime-Format-Pg-0.16011/Build.PL 
new/DateTime-Format-Pg-0.16012/Build.PL
--- old/DateTime-Format-Pg-0.16011/Build.PL 2015-06-19 15:40:31.0 
+0200
+++ new/DateTime-Format-Pg-0.16012/Build.PL 2016-07-19 23:37:34.0 
+0200
@@ -4,62 +4,9 @@
 # =
 
 use 5.008_001;
-
 use strict;
-use warnings;
-use utf8;
-
-use Module::Build;
-use File::Basename;
-use File::Spec;
-
-my %args = (
-license  => 'perl',
-dynamic_config   => 0,
-
-configure_requires => {
-'Module::Build' => 0.38,
-},
-
-name=> 'DateTime-Format-Pg',
-module_name => 'DateTime::Format::Pg',
-allow_pureperl => 0,
-
-script_files => [glob('script/*'), glob('bin/*')],
-c_source => [qw()],
-PL_files => {},
-
-test_files   => ((-d '.git' || $ENV{RELEASE_TESTING}) && -d 'xt') 
? 't/ xt/' : 't/',
-recursive_test_files => 1,
-
-
-);
-if (-d 'share') {
-$args{share_dir} = 'share';
-}
-
-my $builder = Module::Build->subclass(
-class => 'MyBuilder',
-code => q{
-sub ACTION_distmeta {
-die "Do not run distmeta. Install Minilla and `minil install` 
instead.\n";
-}
-sub ACTION_installdeps {
-die "Do not run installdeps. Run `cpanm --installdeps .` 
instead.\n";
-}
-}
-)->new(%args);
-$builder->create_build_script();
-
-use File::Copy;
 
-print "cp META.json MYMETA.json\n";
-copy("META.json","MYMETA.json") or die "Copy failed(META.json): $!";
+use Module::Build::Tiny 0.035;
 
-if (-f 'META.yml') {
-print "cp META.yml MYMETA.yml\n";
-copy("META.yml","MYMETA.yml") or die "Copy failed(META.yml): $!";
-} else {
-print "There is no META.yml... You may install this 

commit ghc-pem for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ghc-pem for openSUSE:Factory checked 
in at 2016-07-24 19:51:25

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


Package is "ghc-pem"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-pem/ghc-pem.changes  2015-05-21 
08:37:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-pem.new/ghc-pem.changes 2016-07-24 
19:52:42.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:20:52 UTC 2016 - psim...@suse.com
+
+- Update to version 0.2.2 revision 0 with cabal2obs.
+
+---



Other differences:
--
++ ghc-pem.spec ++
--- /var/tmp/diff_new_pack.h5Kilz/_old  2016-07-24 19:52:43.0 +0200
+++ /var/tmp/diff_new_pack.h5Kilz/_new  2016-07-24 19:52:43.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-pem
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,50 +17,62 @@
 
 
 %global pkg_name pem
-
-Name:   ghc-pem
+%bcond_with tests
+Name:   ghc-%{pkg_name}
 Version:0.2.2
 Release:0
 Summary:Privacy Enhanced Mail (PEM) format reader and writer
 License:BSD-3-Clause
 Group:  System/Libraries
-
-Url:http://hackage.haskell.org/package/%{pkg_name}
-Source0:
http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
+Url:https://hackage.haskell.org/package/%{pkg_name}
+Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
 BuildRequires:  ghc-base64-bytestring-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-mtl-devel
+BuildRequires:  ghc-rpm-macros
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if %{with tests}
+BuildRequires:  ghc-HUnit-devel
+BuildRequires:  ghc-QuickCheck-devel
+BuildRequires:  ghc-test-framework-devel
+BuildRequires:  ghc-test-framework-hunit-devel
+BuildRequires:  ghc-test-framework-quickcheck2-devel
+%endif
 # End cabal-rpm deps
 
 %description
-Privacy Enhanced Mail (PEM) format reader and writer for Haskell.
-
+Privacy Enhanced Mail (PEM) format reader and writer.
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
 Group:  Development/Libraries/Other
-Provides:   %{name}-static = %{version}-%{release}
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
+Requires(post): ghc-compiler = %{ghc_version}
+Requires(postun): ghc-compiler = %{ghc_version}
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
 
-
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
+
 %build
 %ghc_lib_build
 
+
 %install
 %ghc_lib_install
-rm %{buildroot}%{_datadir}/%{pkg_name}-%{version}/README.md
+
+
+%check
+%if %{with tests}
+%{cabal} test
+%endif
+
 
 %post devel
 %ghc_pkg_recache
@@ -71,9 +83,10 @@
 %files -f %{name}.files
 %defattr(-,root,root,-)
 %doc LICENSE
+%dir %{_datadir}/%{pkg_name}-%{version}
+%{_datadir}/%{pkg_name}-%{version}/README.md
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
-%doc README.md
 
 %changelog




commit minuet for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package minuet for openSUSE:Factory checked 
in at 2016-07-24 19:49:55

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


Package is "minuet"

Changes:

--- /work/SRC/openSUSE:Factory/minuet/minuet.changes2016-06-29 
15:09:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.minuet.new/minuet.changes   2016-07-24 
19:51:55.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:52:02 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  minuet-16.04.2.tar.xz

New:

  minuet-16.04.3.tar.xz



Other differences:
--
++ minuet.spec ++
--- /var/tmp/diff_new_pack.vE413m/_old  2016-07-24 19:51:56.0 +0200
+++ /var/tmp/diff_new_pack.vE413m/_new  2016-07-24 19:51:56.0 +0200
@@ -36,7 +36,7 @@
 Summary:A KDE Software for Music Education
 License:GPL-2.0+
 Group:  Productivity/Other
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source: minuet-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ minuet-16.04.2.tar.xz -> minuet-16.04.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/minuet-16.04.2/CMakeLists.txt 
new/minuet-16.04.3/CMakeLists.txt
--- old/minuet-16.04.2/CMakeLists.txt   2016-05-26 21:02:41.0 +0200
+++ new/minuet-16.04.3/CMakeLists.txt   2016-07-02 17:59:14.0 +0200
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "04")
-set (KDE_APPLICATIONS_VERSION_MICRO "2")
+set (KDE_APPLICATIONS_VERSION_MICRO "3")
 #set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 set (KDE_APPLICATIONS_VERSION "0.1.2")
 




commit ghc-unbounded-delays for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ghc-unbounded-delays for 
openSUSE:Factory checked in at 2016-07-24 19:51:36

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


Package is "ghc-unbounded-delays"

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-unbounded-delays/ghc-unbounded-delays.changes
2016-05-03 09:36:09.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-unbounded-delays.new/ghc-unbounded-delays.changes
   2016-07-24 19:52:45.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:02:00 UTC 2016 - psim...@suse.com
+
+- Update to version 0.1.0.9 revision 0 with cabal2obs.
+
+---



Other differences:
--
++ ghc-unbounded-delays.spec ++
--- /var/tmp/diff_new_pack.e2bKpq/_old  2016-07-24 19:52:46.0 +0200
+++ /var/tmp/diff_new_pack.e2bKpq/_new  2016-07-24 19:52:46.0 +0200
@@ -51,20 +51,18 @@
 
 
 %build
-%{ghc_lib_build}
+%ghc_lib_build
 
 
 %install
-%{ghc_lib_install}
+%ghc_lib_install
 
 
 %post devel
-%{ghc_pkg_recache}
-
+%ghc_pkg_recache
 
 %postun devel
-%{ghc_pkg_recache}
-
+%ghc_pkg_recache
 
 %files -f %{name}.files
 %defattr(-,root,root,-)




commit ghc-torrent for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ghc-torrent for openSUSE:Factory 
checked in at 2016-07-24 19:51:31

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


Package is "ghc-torrent"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-torrent/ghc-torrent.changes  2016-05-03 
09:36:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-torrent.new/ghc-torrent.changes 
2016-07-24 19:52:43.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:16:25 UTC 2016 - psim...@suse.com
+
+- Update to version 1.0.0 revision 0 with cabal2obs.
+
+---



Other differences:
--
++ ghc-torrent.spec ++
--- /var/tmp/diff_new_pack.TDycDC/_old  2016-07-24 19:52:44.0 +0200
+++ /var/tmp/diff_new_pack.TDycDC/_new  2016-07-24 19:52:44.0 +0200
@@ -56,20 +56,18 @@
 
 
 %build
-%{ghc_lib_build}
+%ghc_lib_build
 
 
 %install
-%{ghc_lib_install}
+%ghc_lib_install
 
 
 %post devel
-%{ghc_pkg_recache}
-
+%ghc_pkg_recache
 
 %postun devel
-%{ghc_pkg_recache}
-
+%ghc_pkg_recache
 
 %files -f %{name}.files
 %defattr(-,root,root,-)
@@ -77,5 +75,6 @@
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
+%doc CHANGELOG
 
 %changelog




commit ghc-patience for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ghc-patience for openSUSE:Factory 
checked in at 2016-07-24 19:51:15

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


Package is "ghc-patience"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-patience/ghc-patience.changes
2016-06-07 23:46:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-patience.new/ghc-patience.changes   
2016-07-24 19:52:41.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:26:41 UTC 2016 - psim...@suse.com
+
+- Update to version 0.1.1 revision 0 with cabal2obs.
+
+---



Other differences:
--
++ ghc-patience.spec ++
--- /var/tmp/diff_new_pack.Zyp2ys/_old  2016-07-24 19:52:41.0 +0200
+++ /var/tmp/diff_new_pack.Zyp2ys/_new  2016-07-24 19:52:41.0 +0200
@@ -15,23 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%global pkg_name patience
 
+%global pkg_name patience
 Name:   ghc-%{pkg_name}
 Version:0.1.1
 Release:0
 Summary:Patience diff and longest increasing subsequence
-Group:  System/Libraries
-
 License:BSD-3-Clause
+Group:  System/Libraries
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
 BuildRequires:  ghc-Cabal-devel
-BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
 BuildRequires:  ghc-containers-devel
+BuildRequires:  ghc-rpm-macros
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # End cabal-rpm deps
 
 %description
@@ -47,19 +45,17 @@
 New in version 0.1.1: relaxed 'containers' dependency, so it should build on
 GHC 6.10.
 
-
 %package devel
 Summary:Haskell %{pkg_name} library development files
 Group:  Development/Libraries/Other
+Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}
-Requires:   %{name} = %{version}-%{release}
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
 
-
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
@@ -75,18 +71,14 @@
 %post devel
 %ghc_pkg_recache
 
-
 %postun devel
 %ghc_pkg_recache
 
-
 %files -f %{name}.files
 %defattr(-,root,root,-)
 %doc LICENSE
 
-
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
 
-
 %changelog




commit artikulate for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package artikulate for openSUSE:Factory 
checked in at 2016-07-24 19:51:46

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.changes2016-06-25 
01:57:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.artikulate.new/artikulate.changes   
2016-07-24 19:52:47.0 +0200
@@ -1,0 +2,13 @@
+Sat Jul 16 23:50:22 UTC 2016 - wba...@tmo.at
+
+- Cleanup build requirements
+
+---
+Thu Jul  7 23:17:38 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  artikulate-16.04.2.tar.xz

New:

  artikulate-16.04.3.tar.xz



Other differences:
--
++ artikulate.spec ++
--- /var/tmp/diff_new_pack.BGF1iu/_old  2016-07-24 19:52:48.0 +0200
+++ /var/tmp/diff_new_pack.BGF1iu/_new  2016-07-24 19:52:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   artikulate
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Pronunciation Self-Teaching
 License:LGPL-3.0+ and GPL-2.0 and BSD-3-Clause
@@ -37,13 +37,9 @@
 BuildRequires:  pkgconfig(Qt5QuickWidgets)
 BuildRequires:  pkgconfig(Qt5Test)
 BuildRequires:  kconfig-devel
-BuildRequires:  kconfigwidgets-devel
-BuildRequires:  kcoreaddons-devel
-BuildRequires:  kdeclarative-devel
 BuildRequires:  ki18n-devel
 BuildRequires:  kio-devel
 BuildRequires:  knewstuff-devel
-BuildRequires:  kwidgetsaddons-devel
 BuildRequires:  kxmlgui-devel
 BuildRequires:  kcrash-devel
 BuildRequires:  karchive-devel

++ artikulate-16.04.2.tar.xz -> artikulate-16.04.3.tar.xz ++




commit kbruch for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kbruch for openSUSE:Factory checked 
in at 2016-07-24 19:51:39

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.changes2016-06-25 
02:00:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.kbruch.new/kbruch.changes   2016-07-24 
19:52:46.0 +0200
@@ -1,0 +2,13 @@
+Sat Jul 16 22:05:47 UTC 2016 - wba...@tmo.at
+
+- Cleanup build requirements
+
+---
+Thu Jul  7 23:39:12 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kbruch-16.04.2.tar.xz

New:

  kbruch-16.04.3.tar.xz



Other differences:
--
++ kbruch.spec ++
--- /var/tmp/diff_new_pack.9mz5SU/_old  2016-07-24 19:52:47.0 +0200
+++ /var/tmp/diff_new_pack.9mz5SU/_new  2016-07-24 19:52:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kbruch
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Excercise Fractions
 License:GPL-2.0+
@@ -26,26 +26,13 @@
 Source0:%{name}-%{version}.tar.xz
 BuildRequires:  extra-cmake-modules
 BuildRequires:  pkgconfig(Qt5Widgets)
-BuildRequires:  pkgconfig(Qt5QuickWidgets)
-BuildRequires:  pkgconfig(Qt5Test)
-BuildRequires:  pkgconfig(Qt5Svg)
-BuildRequires:  pkgconfig(Qt5Declarative)
+BuildRequires:  pkgconfig(Qt5Core)
 BuildRequires:  kconfig-devel
-BuildRequires:  kcoreaddons-devel
-BuildRequires:  kwidgetsaddons-devel
+BuildRequires:  kcrash-devel
+BuildRequires:  kdoctools-devel
 BuildRequires:  ki18n-devel
-BuildRequires:  kdnssd-framework-devel
-BuildRequires:  kguiaddons-devel
-BuildRequires:  kconfigwidgets-devel
-BuildRequires:  kitemviews-devel
-BuildRequires:  kdeclarative-devel
-BuildRequires:  kiconthemes-devel
+BuildRequires:  kwidgetsaddons-devel
 BuildRequires:  kxmlgui-devel
-BuildRequires:  kio-devel
-BuildRequires:  knotifyconfig-devel
-BuildRequires:  kdelibs4support-devel
-BuildRequires:  knewstuff-devel
-BuildRequires:  phonon4qt5-devel
 BuildRequires:  update-desktop-files
 Obsoletes:  %{name}5 < %{version}
 Provides:   %{name}5 = %{version}

++ kbruch-16.04.2.tar.xz -> kbruch-16.04.3.tar.xz ++




commit ghc-mutable-containers for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ghc-mutable-containers for 
openSUSE:Factory checked in at 2016-07-24 19:51:09

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


Package is "ghc-mutable-containers"

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-mutable-containers/ghc-mutable-containers.changes
2016-07-12 23:52:56.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-mutable-containers.new/ghc-mutable-containers.changes
   2016-07-24 19:52:39.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul 19 10:00:40 UTC 2016 - psim...@suse.com
+
+- Update to version 0.3.3 revision 0 with cabal2obs.
+
+---



Other differences:
--
++ ghc-mutable-containers.spec ++
--- /var/tmp/diff_new_pack.dK3Fz2/_old  2016-07-24 19:52:40.0 +0200
+++ /var/tmp/diff_new_pack.dK3Fz2/_new  2016-07-24 19:52:40.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package ghc
+# spec file for package ghc-mutable-containers
 #
 # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
@@ -17,27 +17,23 @@
 
 
 %global pkg_name mutable-containers
-
 %bcond_with tests
-
 Name:   ghc-%{pkg_name}
 Version:0.3.3
 Release:0
 Summary:Abstactions and concrete implementations of mutable containers
 License:MIT
 Group:  System/Libraries
-
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
 BuildRequires:  ghc-Cabal-devel
-BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-mono-traversable-devel
 BuildRequires:  ghc-primitive-devel
+BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-vector-devel
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-QuickCheck-devel
 BuildRequires:  ghc-hspec-devel
@@ -47,34 +43,36 @@
 %description
 See docs and README at .
 
-
 %package devel
 Summary:Haskell %{pkg_name} library development files
 Group:  Development/Libraries/Other
+Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}
-Requires:   %{name} = %{version}-%{release}
 
 %description devel
 This package provides the Haskell %{pkg_name} library development
 files.
 
-
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
+
 %build
 %ghc_lib_build
 
+
 %install
 %ghc_lib_install
 
+
 %check
 %if %{with tests}
-%cabal test
+%{cabal} test
 %endif
 
+
 %post devel
 %ghc_pkg_recache
 
@@ -87,6 +85,6 @@
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
-%doc README.md
+%doc ChangeLog.md README.md
 
 %changelog




commit ghc-pcap for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ghc-pcap for openSUSE:Factory 
checked in at 2016-07-24 19:51:18

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


Package is "ghc-pcap"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-pcap/ghc-pcap.changes2015-09-08 
17:58:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-pcap.new/ghc-pcap.changes   2016-07-24 
19:52:42.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:35:28 UTC 2016 - psim...@suse.com
+
+- Update to version 0.4.5.2 revision 0 with cabal2obs.
+
+---



Other differences:
--
++ ghc-pcap.spec ++
--- /var/tmp/diff_new_pack.z1d0WU/_old  2016-07-24 19:52:42.0 +0200
+++ /var/tmp/diff_new_pack.z1d0WU/_new  2016-07-24 19:52:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-pcap
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,27 +15,25 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%global pkg_name pcap
 
-Name:   ghc-pcap
+%global pkg_name pcap
+Name:   ghc-%{pkg_name}
 Version:0.4.5.2
 Release:0
 Summary:A system-independent interface for user-level packet capture
-Group:  System/Libraries
-
 License:BSD-3-Clause
+Group:  System/Libraries
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-
 BuildRequires:  ghc-Cabal-devel
-BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-network-devel
+BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-time-devel
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # End cabal-rpm deps
 BuildRequires:  libpcap-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A system-independent interface for user-level packet capture.
@@ -66,11 +64,9 @@
 %post devel
 %ghc_pkg_recache
 
-
 %postun devel
 %ghc_pkg_recache
 
-
 %files -f %{name}.files
 %defattr(-,root,root,-)
 %doc LICENSE




commit ghc-syb for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ghc-syb for openSUSE:Factory checked 
in at 2016-07-24 19:51:05

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


Package is "ghc-syb"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-syb/ghc-syb.changes  2016-01-07 
00:25:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-syb.new/ghc-syb.changes 2016-07-24 
19:52:38.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:27:39 UTC 2016 - psim...@suse.com
+
+- Update to version 0.6 revision 0 with cabal2obs.
+
+---

Old:

  _service



Other differences:
--
++ ghc-syb.spec ++
--- /var/tmp/diff_new_pack.OUz937/_old  2016-07-24 19:52:39.0 +0200
+++ /var/tmp/diff_new_pack.OUz937/_new  2016-07-24 19:52:39.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-syb
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,52 +17,62 @@
 
 
 %global pkg_name syb
-
-Name:   ghc-syb
+%bcond_with tests
+Name:   ghc-%{pkg_name}
 Version:0.6
 Release:0
 Summary:Scrap Your Boilerplate
 License:BSD-3-Clause
 Group:  System/Libraries
-
-Url:http://hackage.haskell.org/package/%{pkg_name}
-Source0:
http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
+Url:https://hackage.haskell.org/package/%{pkg_name}
+Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# Begin cabal-rpm deps:
+%if %{with tests}
+BuildRequires:  ghc-HUnit-devel
+BuildRequires:  ghc-containers-devel
+BuildRequires:  ghc-mtl-devel
+%endif
+# End cabal-rpm deps
 
 %description
 This package contains the generics system described in the /Scrap Your
 Boilerplate/ papers (see ).
-It defines the @Data@ class of types permitting folding and unfolding of
+It defines the 'Data' class of types permitting folding and unfolding of
 constructor applications, instances of this class for primitive types, and a
 variety of traversals.
 
-
 %package devel
 Summary:Haskell %{pkg_name} library development files
 Group:  Development/Libraries/Other
-Provides:   %{name}-static = %{version}-%{release}
+Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}
-Requires:   %{name} = %{version}-%{release}
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
 
-
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
+
 %build
 %ghc_lib_build
 
+
 %install
 %ghc_lib_install
 sed -i 's/\r$//' README LICENSE
 
+%check
+%if %{with tests}
+%{cabal} test
+%endif
+
+
 %post devel
 %ghc_pkg_recache
 




commit mkvtoolnix for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package mkvtoolnix for openSUSE:Factory 
checked in at 2016-07-24 19:50:19

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


Package is "mkvtoolnix"

Changes:

--- /work/SRC/openSUSE:Factory/mkvtoolnix/mkvtoolnix.changes2016-06-02 
09:40:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.mkvtoolnix.new/mkvtoolnix.changes   
2016-07-24 19:52:14.0 +0200
@@ -1,0 +2,9 @@
+Fri Jul 15 13:45:45 UTC 2016 - r...@fthiessen.de
+
+- Update to new upstream release 9.3.1:
+  * libebml >= 1.3.4 and libmatroska >= 1.4.5 are now required
+  * A lot of bugfixes and new features, new mkv elements are
+supported, for a list of all changes, please refer to the
+changelog provided by the package.
+
+---

Old:

  mkvtoolnix-9.2.0.tar.xz

New:

  mkvtoolnix-9.3.1.tar.xz



Other differences:
--
++ mkvtoolnix.spec ++
--- /var/tmp/diff_new_pack.3IMhrU/_old  2016-07-24 19:52:14.0 +0200
+++ /var/tmp/diff_new_pack.3IMhrU/_new  2016-07-24 19:52:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mkvtoolnix
-Version:9.2.0
+Version:9.3.1
 Release:0
 Summary:Tools to Create, Alter, and Inspect Matroska Files
 License:GPL-2.0+
@@ -41,8 +41,8 @@
 BuildRequires:  shared-mime-info
 BuildRequires:  pkgconfig(flac)
 BuildRequires:  pkgconfig(libcurl)
-BuildRequires:  pkgconfig(libebml) >= 1.3.3
-BuildRequires:  pkgconfig(libmatroska) >= 1.4.4
+BuildRequires:  pkgconfig(libebml) >= 1.3.4
+BuildRequires:  pkgconfig(libmatroska) >= 1.4.5
 BuildRequires:  pkgconfig(ogg)
 BuildRequires:  pkgconfig(vorbis)
 BuildRequires:  pkgconfig(zlib)

++ mkvtoolnix-9.2.0.tar.xz -> mkvtoolnix-9.3.1.tar.xz ++
 268561 lines of diff (skipped)




commit kscd for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kscd for openSUSE:Factory checked in 
at 2016-07-24 19:50:01

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.changes2016-07-12 
23:52:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.kscd.new/kscd.changes   2016-07-24 
19:52:01.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:52:27 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kscd-16.04.2.tar.xz

New:

  kscd-16.04.3.tar.xz



Other differences:
--
++ kscd.spec ++
--- /var/tmp/diff_new_pack.J1JHqC/_old  2016-07-24 19:52:03.0 +0200
+++ /var/tmp/diff_new_pack.J1JHqC/_new  2016-07-24 19:52:03.0 +0200
@@ -26,7 +26,7 @@
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Sound/Players
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM migrate-to-musicbrainz5.patch -- build against 
libmusicbrainz5

++ kscd-16.04.2.tar.xz -> kscd-16.04.3.tar.xz ++




commit python-discid for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package python-discid for openSUSE:Factory 
checked in at 2016-07-24 19:50:04

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


Package is "python-discid"

Changes:

--- /work/SRC/openSUSE:Factory/python-discid/python-discid.changes  
2016-07-12 23:51:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-discid.new/python-discid.changes 
2016-07-24 19:52:04.0 +0200
@@ -1,0 +2,6 @@
+Mon Jul  4 22:03:10 UTC 2016 - jeng...@inai.de
+
+- Request libdiscid0 since the code looks for exactly .so.0.
+- Remove redundant %clean section.
+
+---



Other differences:
--
++ python-discid.spec ++
--- /var/tmp/diff_new_pack.3hw1wM/_old  2016-07-24 19:52:06.0 +0200
+++ /var/tmp/diff_new_pack.3hw1wM/_new  2016-07-24 19:52:06.0 +0200
@@ -1,6 +1,7 @@
 #
 # spec file for package python-discid
 #
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 Johannes Dewender 
 #
 # All modifications and additions to the file contributed by third parties
@@ -11,9 +12,12 @@
 # case the license is the MIT License). An "Open Source License" is a
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
-#
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
+
+#
 %define modname discid
 
 Name: python-%{modname}
@@ -25,8 +29,8 @@
 Url: https://python-discid.readthedocs.org/
 Source: 
http://pypi.python.org/packages/source/d/%{modname}/%{modname}-%{version}.tar.gz
 # no automatic requires since libdiscid is not linked
-Requires: libdiscid >= 0.2.2
-BuildRequires: libdiscid >= 0.2.2
+Requires:   libdiscid0 >= 0.2.2
+BuildRequires:  libdiscid0 >= 0.2.2
 BuildRequires: python-devel >= 2.6
 BuildRoot: %{_tmppath}/%{name}-%{version}-build
 BuildArch: noarch
@@ -56,9 +60,6 @@
 python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT 
--record=INSTALLED_FILES
 chmod a-x examples.py
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files -f INSTALLED_FILES
 %defattr(-,root,root)
 %dir %{python_sitelib}/*




commit svgpart for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package svgpart for openSUSE:Factory checked 
in at 2016-07-24 19:49:43

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


Package is "svgpart"

Changes:

--- /work/SRC/openSUSE:Factory/svgpart/svgpart.changes  2016-06-25 
02:20:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.svgpart.new/svgpart.changes 2016-07-24 
19:49:54.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:25:21 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  svgpart-16.04.2.tar.xz

New:

  svgpart-16.04.3.tar.xz



Other differences:
--
++ svgpart.spec ++
--- /var/tmp/diff_new_pack.w7ZQBb/_old  2016-07-24 19:49:55.0 +0200
+++ /var/tmp/diff_new_pack.w7ZQBb/_new  2016-07-24 19:49:55.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   svgpart
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:SVG viewer component
 License:GPL-2.0+

++ svgpart-16.04.2.tar.xz -> svgpart-16.04.3.tar.xz ++




commit umbrello for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package umbrello for openSUSE:Factory 
checked in at 2016-07-24 19:49:46

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


Package is "umbrello"

Changes:

--- /work/SRC/openSUSE:Factory/umbrello/umbrello.changes2016-06-25 
02:20:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.umbrello.new/umbrello.changes   2016-07-24 
19:49:57.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:26:58 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  umbrello-16.04.2.tar.xz

New:

  umbrello-16.04.3.tar.xz



Other differences:
--
++ umbrello.spec ++
--- /var/tmp/diff_new_pack.hQZHOe/_old  2016-07-24 19:49:59.0 +0200
+++ /var/tmp/diff_new_pack.hQZHOe/_new  2016-07-24 19:49:59.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  Development/Tools/Other
 Url:http://www.kde.org/
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ umbrello-16.04.2.tar.xz -> umbrello-16.04.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/umbrello-16.04.2/CMakeLists.txt 
new/umbrello-16.04.3/CMakeLists.txt
--- old/umbrello-16.04.2/CMakeLists.txt 2016-06-07 14:21:24.0 +0200
+++ new/umbrello-16.04.3/CMakeLists.txt 2016-07-05 00:34:40.0 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "04")
-set (KDE_APPLICATIONS_VERSION_MICRO "2")
+set (KDE_APPLICATIONS_VERSION_MICRO "3")
 
 set(UMBRELLO_VERSION_MAJOR "2")
 MATH(EXPR UMBRELLO_VERSION_MINOR "15+${KDE_APPLICATIONS_VERSION_MINOR}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/umbrello-16.04.2/umbrello/umlwidgets/notewidget.cpp 
new/umbrello-16.04.3/umbrello/umlwidgets/notewidget.cpp
--- old/umbrello-16.04.2/umbrello/umlwidgets/notewidget.cpp 2016-06-07 
14:21:24.0 +0200
+++ new/umbrello-16.04.3/umbrello/umlwidgets/notewidget.cpp 2016-07-05 
00:34:40.0 +0200
@@ -35,7 +35,7 @@
 #include 
 #endif
 
-NoteWidget * NoteWidget::s_pCurrentNote;
+QPointer NoteWidget::s_pCurrentNote;
 
 /**
  * Constructs a NoteWidget.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/umbrello-16.04.2/umbrello/umlwidgets/notewidget.h 
new/umbrello-16.04.3/umbrello/umlwidgets/notewidget.h
--- old/umbrello-16.04.2/umbrello/umlwidgets/notewidget.h   2016-06-07 
14:21:24.0 +0200
+++ new/umbrello-16.04.3/umbrello/umlwidgets/notewidget.h   2016-07-05 
00:34:40.0 +0200
@@ -63,7 +63,7 @@
 virtual bool loadFromXMI(QDomElement & qElement);
 virtual void saveToXMI(QDomDocument & qDoc, QDomElement & qElement);
 
-static NoteWidget *s_pCurrentNote;
+static QPointer s_pCurrentNote;
 
 public Q_SLOTS:
 void slotMenuSelection(QAction* action);




commit step for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package step for openSUSE:Factory checked in 
at 2016-07-24 19:49:39

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


Package is "step"

Changes:

--- /work/SRC/openSUSE:Factory/step/step.changes2016-06-25 
02:20:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.step.new/step.changes   2016-07-24 
19:49:51.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:24:59 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  step-16.04.2.tar.xz

New:

  step-16.04.3.tar.xz



Other differences:
--
++ step.spec ++
--- /var/tmp/diff_new_pack.sDDyy9/_old  2016-07-24 19:49:53.0 +0200
+++ /var/tmp/diff_new_pack.sDDyy9/_new  2016-07-24 19:49:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   step
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:An interactive physics simulator
 License:GPL-2.0+

++ step-16.04.2.tar.xz -> step-16.04.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/step-16.04.2/CMakeLists.txt 
new/step-16.04.3/CMakeLists.txt
--- old/step-16.04.2/CMakeLists.txt 2016-03-15 21:47:52.0 +0100
+++ new/step-16.04.3/CMakeLists.txt 2016-07-05 17:09:32.0 +0200
@@ -15,6 +15,7 @@
 include(ECMOptionalAddSubdirectory)
 include(ECMSetupVersion)
 include(FeatureSummary)
+include(ECMPoQmTools)
 
 find_package(Qt5 5.2 REQUIRED NO_MODULE COMPONENTS
 Qml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/step-16.04.2/stepcore/CMakeLists.txt 
new/step-16.04.3/stepcore/CMakeLists.txt
--- old/step-16.04.2/stepcore/CMakeLists.txt2016-03-15 21:47:52.0 
+0100
+++ new/step-16.04.3/stepcore/CMakeLists.txt2016-07-05 17:09:32.0 
+0200
@@ -33,6 +33,8 @@
 xmlfile.cc
 )
 
+ecm_create_qm_loader(stepcore_SRCS step_qt)
+
 if(STEPCORE_WITH_GSL)
 add_definitions(-DSTEPCORE_WITH_GSL)
 include_directories(${GSL_INCLUDE_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/step-16.04.2/stepcore/Messages.sh 
new/step-16.04.3/stepcore/Messages.sh
--- old/step-16.04.2/stepcore/Messages.sh   2016-03-15 21:47:52.0 
+0100
+++ new/step-16.04.3/stepcore/Messages.sh   2016-07-05 17:09:32.0 
+0200
@@ -1,2 +1,2 @@
 #! /bin/sh
-$XGETTEXT_QT `find . -name '*.cc'` -o $podir/step_qt.pot
+$EXTRACT_TR_STRINGS `find . -name '*.cc'` -o $podir/step_qt.pot




commit palapeli for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package palapeli for openSUSE:Factory 
checked in at 2016-07-24 19:49:18

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


Package is "palapeli"

Changes:

--- /work/SRC/openSUSE:Factory/palapeli/palapeli.changes2016-06-25 
02:03:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.palapeli.new/palapeli.changes   2016-07-24 
19:49:31.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:22:08 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  palapeli-16.04.2.tar.xz

New:

  palapeli-16.04.3.tar.xz



Other differences:
--
++ palapeli.spec ++
--- /var/tmp/diff_new_pack.Exh7pZ/_old  2016-07-24 19:49:33.0 +0200
+++ /var/tmp/diff_new_pack.Exh7pZ/_new  2016-07-24 19:49:33.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:palapeli-%{version}.tar.xz
 BuildRequires:  libkdegames4-devel

++ palapeli-16.04.2.tar.xz -> palapeli-16.04.3.tar.xz ++




commit rocs for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package rocs for openSUSE:Factory checked in 
at 2016-07-24 19:49:37

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


Package is "rocs"

Changes:

--- /work/SRC/openSUSE:Factory/rocs/rocs.changes2016-06-25 
02:19:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.rocs.new/rocs.changes   2016-07-24 
19:49:46.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:24:02 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  rocs-16.04.2.tar.xz

New:

  rocs-16.04.3.tar.xz



Other differences:
--
++ rocs.spec ++
--- /var/tmp/diff_new_pack.dFVZAY/_old  2016-07-24 19:49:47.0 +0200
+++ /var/tmp/diff_new_pack.dFVZAY/_new  2016-07-24 19:49:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rocs
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Graph Theory IDE
 License:GPL-3.0+

++ rocs-16.04.2.tar.xz -> rocs-16.04.3.tar.xz ++




commit libkeduvocdocument for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package libkeduvocdocument for 
openSUSE:Factory checked in at 2016-07-24 19:49:02

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


Package is "libkeduvocdocument"

Changes:

--- /work/SRC/openSUSE:Factory/libkeduvocdocument/libkeduvocdocument.changes
2016-06-25 02:03:35.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.libkeduvocdocument.new/libkeduvocdocument.changes   
2016-07-24 19:49:11.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:28:54 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  libkeduvocdocument-16.04.2.tar.xz

New:

  libkeduvocdocument-16.04.3.tar.xz



Other differences:
--
++ libkeduvocdocument.spec ++
--- /var/tmp/diff_new_pack.WXa5Iu/_old  2016-07-24 19:49:13.0 +0200
+++ /var/tmp/diff_new_pack.WXa5Iu/_new  2016-07-24 19:49:13.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libkeduvocdocument
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Library for KDE Education Applications
 License:GPL-2.0+

++ libkeduvocdocument-16.04.2.tar.xz -> libkeduvocdocument-16.04.3.tar.xz 
++




commit parley for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package parley for openSUSE:Factory checked 
in at 2016-07-24 19:49:21

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.changes2016-06-25 
02:03:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.parley.new/parley.changes   2016-07-24 
19:49:37.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:22:40 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  parley-16.04.2.tar.xz

New:

  parley-16.04.3.tar.xz



Other differences:
--
++ parley.spec ++
--- /var/tmp/diff_new_pack.08a0LF/_old  2016-07-24 19:49:38.0 +0200
+++ /var/tmp/diff_new_pack.08a0LF/_new  2016-07-24 19:49:38.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   parley
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Vocabulary Trainer
 License:GPL-2.0+

++ parley-16.04.2.tar.xz -> parley-16.04.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parley-16.04.2/docs/parley/index.docbook 
new/parley-16.04.3/docs/parley/index.docbook
--- old/parley-16.04.2/docs/parley/index.docbook2016-04-12 
16:06:27.0 +0200
+++ new/parley-16.04.3/docs/parley/index.docbook2016-06-18 
18:29:44.0 +0200
@@ -1027,7 +1027,7 @@
   
 
 
-
+
 
 Adding Sound
 First show the sound tool by selecting View in the 
menubar and then clicking on Sound. This will show up the 
sound section on the right hand side of the  screen.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parley-16.04.2/plugins/CMakeLists.txt 
new/parley-16.04.3/plugins/CMakeLists.txt
--- old/parley-16.04.2/plugins/CMakeLists.txt   2016-04-12 16:06:27.0 
+0200
+++ new/parley-16.04.3/plugins/CMakeLists.txt   2016-06-18 18:29:44.0 
+0200
@@ -3,7 +3,6 @@
google_dictionary.desktop
leo-dict.desktop
example.desktop
-   google_images.desktop
DESTINATION ${KDE_INSTALL_DATADIR}/parley/plugins)
 
 #script files
@@ -11,12 +10,6 @@
google_dictionary.py
leo-dict.py
example.py
-   google_images.py
-   DESTINATION ${KDE_INSTALL_DATADIR}/parley/plugins)
-
-#ui files
-install(FILES
-   google_images.ui
DESTINATION ${KDE_INSTALL_DATADIR}/parley/plugins)
 
 add_subdirectory( wiktionary )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parley-16.04.2/plugins/google_images.desktop 
new/parley-16.04.3/plugins/google_images.desktop
--- old/parley-16.04.2/plugins/google_images.desktop2016-04-12 
16:06:27.0 +0200
+++ new/parley-16.04.3/plugins/google_images.desktop1970-01-01 
01:00:00.0 +0100
@@ -1,94 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Icon=mypluginicon
-Type=Service
-ServiceTypes=KPluginInfo
-
-Name=Google Images (online image fetching)
-Name[bg]=Изображения в Google (изтегляне на изображения от мрежата)
-Name[bs]=Google slike (on-line uzimanje slike)
-Name[ca]=Imatges de Google (recull imatges en línia)
-Name[ca@valencia]=Imatges de Google (recull imatges en línia)
-Name[cs]=Obrázky Google (získávání obrázků z internetu)
-Name[da]=Google Images (hent billeder online)
-Name[de]=Google-Bilder (Online Herunterladen von Bildern)
-Name[el]=Εικόνες Google (διαδικτυακή ανάκτηση εικόνων)
-Name[en_GB]=Google Images (online image fetching)
-Name[es]=Imágenes de Google (obtención de imágenes de la red)
-Name[et]=Google'i pildid (piltide tõmbamine veebist)
-Name[eu]=Google-ren irudiak (lineako irudiak eskuratzea)
-Name[fi]=Google-kuvahaku (kuvien noutaminen verkosta)
-Name[fr]=Images Google (téléchargement d'images en ligne)
-Name[ga]=Íomhánna Google (cuardach íomhá ar líne)
-Name[gl]=Imaxes de Google (obtén imaxes da rede)
-Name[gu]=ગુગલ ઇમેજીસ (ઓનલાઇન ચિત્ર મેળવવાનું)
-Name[hu]=Google Images (internetes képletöltéssel)
-Name[is]=Google myndir (sækir myndir á netið)
-Name[it]=Google Immagini (recupero di immagini da Internet)
-Name[ja]=Google イメージ (オンライン画像検索)
-Name[kk]=Google кескіндері (онлайн кескіндерді қарастыру)
-Name[km]=រូបភាព​ហ្គូហ្គល (ការ​ទៅ​យក​រូបភាព​លើ​បណ្ដាញ)
-Name[ko]=구글 그림 (온라인으로 그림 가져오기)
-Name[lt]=Paveikslai iš Google (paveikslų atsiuntimas iš tinklo)
-Name[lv]=Google attēli (tiešsaistes attēlu ielāde)
-Name[nb]=Google-bilder (henter bilder fra nettverket)
-Name[nds]=Google-Biller (Internetbiller halen)
-Name[nl]=Google Images (ophalen van afbeeldingen)

commit lskat for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package lskat for openSUSE:Factory checked 
in at 2016-07-24 19:49:12

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


Package is "lskat"

Changes:

--- /work/SRC/openSUSE:Factory/lskat/lskat.changes  2016-06-25 
02:03:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.lskat.new/lskat.changes 2016-07-24 
19:49:20.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:19:14 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  lskat-16.04.2.tar.xz

New:

  lskat-16.04.3.tar.xz



Other differences:
--
++ lskat.spec ++
--- /var/tmp/diff_new_pack.IySOpP/_old  2016-07-24 19:49:21.0 +0200
+++ /var/tmp/diff_new_pack.IySOpP/_new  2016-07-24 19:49:21.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Card
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:lskat-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ lskat-16.04.2.tar.xz -> lskat-16.04.3.tar.xz ++




commit picmi for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package picmi for openSUSE:Factory checked 
in at 2016-07-24 19:49:29

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


Package is "picmi"

Changes:

--- /work/SRC/openSUSE:Factory/picmi/picmi.changes  2016-06-25 
02:03:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.picmi.new/picmi.changes 2016-07-24 
19:49:39.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:23:08 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  picmi-16.04.2.tar.xz

New:

  picmi-16.04.3.tar.xz



Other differences:
--
++ picmi.spec ++
--- /var/tmp/diff_new_pack.bSybfW/_old  2016-07-24 19:49:40.0 +0200
+++ /var/tmp/diff_new_pack.bSybfW/_new  2016-07-24 19:49:40.0 +0200
@@ -36,7 +36,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Logic
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:picmi-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ picmi-16.04.2.tar.xz -> picmi-16.04.3.tar.xz ++




commit poxml for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package poxml for openSUSE:Factory checked 
in at 2016-07-24 19:49:31

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


Package is "poxml"

Changes:

--- /work/SRC/openSUSE:Factory/poxml/poxml.changes  2016-06-25 
02:19:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.poxml.new/poxml.changes 2016-07-24 
19:49:44.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:23:33 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  poxml-16.04.2.tar.xz

New:

  poxml-16.04.3.tar.xz



Other differences:
--
++ poxml.spec ++
--- /var/tmp/diff_new_pack.PPV3Y1/_old  2016-07-24 19:49:45.0 +0200
+++ /var/tmp/diff_new_pack.PPV3Y1/_new  2016-07-24 19:49:45.0 +0200
@@ -28,7 +28,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ poxml-16.04.2.tar.xz -> poxml-16.04.3.tar.xz ++




commit okteta for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package okteta for openSUSE:Factory checked 
in at 2016-07-24 19:49:15

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


Package is "okteta"

Changes:

--- /work/SRC/openSUSE:Factory/okteta/okteta.changes2016-06-25 
02:20:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.okteta.new/okteta.changes   2016-07-24 
19:49:28.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:20:59 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  okteta-16.04.2.tar.xz

New:

  okteta-16.04.3.tar.xz



Other differences:
--
++ okteta.spec ++
--- /var/tmp/diff_new_pack.KuyuxE/_old  2016-07-24 19:49:30.0 +0200
+++ /var/tmp/diff_new_pack.KuyuxE/_new  2016-07-24 19:49:30.0 +0200
@@ -39,7 +39,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  Development/Tools/Other
 Url:http://www.kde.org/
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:okteta-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ okteta-16.04.2.tar.xz -> okteta-16.04.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/okteta-16.04.2/kasten/controllers/document/info/documentinfotool.cpp 
new/okteta-16.04.3/kasten/controllers/document/info/documentinfotool.cpp
--- old/okteta-16.04.2/kasten/controllers/document/info/documentinfotool.cpp
2016-06-06 14:13:15.0 +0200
+++ new/okteta-16.04.3/kasten/controllers/document/info/documentinfotool.cpp
2016-06-18 15:58:11.0 +0200
@@ -74,7 +74,7 @@
 if( mDocument )
 {
 const QUrl url = mDocumentSyncManager->urlOf( mDocument );
-result = url.isLocalFile() ? url.path() : url.toDisplayString();
+result = 
url.toDisplayString(QUrl::PrettyDecoded|QUrl::PreferLocalFile);
 }
 return result;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/okteta-16.04.2/kasten/core/io/filesystem/externalbookmarkstorage.cpp 
new/okteta-16.04.3/kasten/core/io/filesystem/externalbookmarkstorage.cpp
--- old/okteta-16.04.2/kasten/core/io/filesystem/externalbookmarkstorage.cpp
2016-06-06 14:13:15.0 +0200
+++ new/okteta-16.04.3/kasten/core/io/filesystem/externalbookmarkstorage.cpp
2016-06-18 15:58:11.0 +0200
@@ -53,7 +53,7 @@
 
 bookmarkable->removeAllBookmarks();
 
-const QString urlString = url.isLocalFile() ? url.path(QUrl::FullyDecoded) 
: url.toDisplayString();
+const QString urlString = 
url.toDisplayString(QUrl::PrettyDecoded|QUrl::PreferLocalFile);
 
 KBookmarkGroup root = mBookmarkManager->root();
 
@@ -94,7 +94,7 @@
 if( ! bookmarkable )
 return;
 
-const QString urlString = url.isLocalFile() ? url.path(QUrl::FullyDecoded) 
: url.toDisplayString();
+const QString urlString = 
url.toDisplayString(QUrl::PrettyDecoded|QUrl::PreferLocalFile);
 
 KBookmarkGroup root = mBookmarkManager->root();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/okteta-16.04.2/libs/kasten/core/io/filesystem/abstractfilesystemconnectjob_p.cpp
 
new/okteta-16.04.3/libs/kasten/core/io/filesystem/abstractfilesystemconnectjob_p.cpp
--- 
old/okteta-16.04.2/libs/kasten/core/io/filesystem/abstractfilesystemconnectjob_p.cpp
2016-06-06 14:13:15.0 +0200
+++ 
new/okteta-16.04.3/libs/kasten/core/io/filesystem/abstractfilesystemconnectjob_p.cpp
2016-06-18 15:58:11.0 +0200
@@ -46,7 +46,7 @@
 {
 if( mUrl.isLocalFile() )
 {
-mWorkFilePath = mUrl.path(QUrl::FullyDecoded);
+mWorkFilePath = mUrl.toLocalFile();
 mFile = new QFile( mWorkFilePath );
 isWorkFileOk = mFile->open( QIODevice::WriteOnly );
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/okteta-16.04.2/libs/kasten/core/io/filesystem/abstractfilesystemexportjob_p.cpp
 
new/okteta-16.04.3/libs/kasten/core/io/filesystem/abstractfilesystemexportjob_p.cpp
--- 
old/okteta-16.04.2/libs/kasten/core/io/filesystem/abstractfilesystemexportjob_p.cpp
 2016-06-06 14:13:15.0 +0200
+++ 
new/okteta-16.04.3/libs/kasten/core/io/filesystem/abstractfilesystemexportjob_p.cpp
 2016-06-18 15:58:11.0 +0200
@@ -39,7 +39,7 @@
 bool isWorkFileOk;
 if( mUrl.isLocalFile() )
 {
-mWorkFilePath = mUrl.path(QUrl::FullyDecoded);
+mWorkFilePath 

commit kwordquiz for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kwordquiz for openSUSE:Factory 
checked in at 2016-07-24 19:48:54

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


Package is "kwordquiz"

Changes:

--- /work/SRC/openSUSE:Factory/kwordquiz/kwordquiz.changes  2016-06-25 
02:03:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.kwordquiz.new/kwordquiz.changes 2016-07-24 
19:49:04.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:26:25 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kwordquiz-16.04.2.tar.xz

New:

  kwordquiz-16.04.3.tar.xz



Other differences:
--
++ kwordquiz.spec ++
--- /var/tmp/diff_new_pack.Kvo9P1/_old  2016-07-24 19:49:05.0 +0200
+++ /var/tmp/diff_new_pack.Kvo9P1/_new  2016-07-24 19:49:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kwordquiz
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Vocabulary Trainer
 License:GPL-2.0+

++ kwordquiz-16.04.2.tar.xz -> kwordquiz-16.04.3.tar.xz ++




commit lokalize for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package lokalize for openSUSE:Factory 
checked in at 2016-07-24 19:49:08

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


Package is "lokalize"

Changes:

--- /work/SRC/openSUSE:Factory/lokalize/lokalize.changes2016-06-25 
02:03:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.lokalize.new/lokalize.changes   2016-07-24 
19:49:18.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:18:44 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  lokalize-16.04.2.tar.xz

New:

  lokalize-16.04.3.tar.xz



Other differences:
--
++ lokalize.spec ++
--- /var/tmp/diff_new_pack.7HPxFZ/_old  2016-07-24 19:49:19.0 +0200
+++ /var/tmp/diff_new_pack.7HPxFZ/_new  2016-07-24 19:49:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lokalize
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:KDE Translation Editor
 License:GPL-2.0+

++ lokalize-16.04.2.tar.xz -> lokalize-16.04.3.tar.xz ++




commit kubrick for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kubrick for openSUSE:Factory checked 
in at 2016-07-24 19:48:46

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


Package is "kubrick"

Changes:

--- /work/SRC/openSUSE:Factory/kubrick/kubrick.changes  2016-06-25 
02:03:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.kubrick.new/kubrick.changes 2016-07-24 
19:48:57.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:25:16 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kubrick-16.04.2.tar.xz

New:

  kubrick-16.04.3.tar.xz



Other differences:
--
++ kubrick.spec ++
--- /var/tmp/diff_new_pack.ZNsSyd/_old  2016-07-24 19:48:58.0 +0200
+++ /var/tmp/diff_new_pack.ZNsSyd/_new  2016-07-24 19:48:58.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Logic
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kubrick-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kubrick-16.04.2.tar.xz -> kubrick-16.04.3.tar.xz ++




commit libkmahjongg for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package libkmahjongg for openSUSE:Factory 
checked in at 2016-07-24 19:49:05

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


Package is "libkmahjongg"

Changes:

--- /work/SRC/openSUSE:Factory/libkmahjongg/libkmahjongg.changes
2016-06-25 02:03:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkmahjongg.new/libkmahjongg.changes   
2016-07-24 19:49:14.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 09:17:31 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  libkmahjongg-16.04.2.tar.xz

New:

  libkmahjongg-16.04.3.tar.xz



Other differences:
--
++ libkmahjongg.spec ++
--- /var/tmp/diff_new_pack.vpgmBx/_old  2016-07-24 19:49:15.0 +0200
+++ /var/tmp/diff_new_pack.vpgmBx/_new  2016-07-24 19:49:15.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:libkmahjongg-%{version}.tar.xz
 BuildRequires:  fdupes

++ libkmahjongg-16.04.2.tar.xz -> libkmahjongg-16.04.3.tar.xz ++




commit libkdeedu4 for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package libkdeedu4 for openSUSE:Factory 
checked in at 2016-07-24 19:48:57

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


Package is "libkdeedu4"

Changes:

--- /work/SRC/openSUSE:Factory/libkdeedu4/libkdeedu4.changes2016-06-25 
02:03:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.libkdeedu4.new/libkdeedu4.changes   
2016-07-24 19:49:08.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:27:59 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  libkdeedu-16.04.2.tar.xz

New:

  libkdeedu-16.04.3.tar.xz



Other differences:
--
++ libkdeedu4.spec ++
--- /var/tmp/diff_new_pack.Ys5BBe/_old  2016-07-24 19:49:09.0 +0200
+++ /var/tmp/diff_new_pack.Ys5BBe/_new  2016-07-24 19:49:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libkdeedu4
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Library for KDE Education Applications
 License:GPL-2.0+

++ libkdeedu-16.04.2.tar.xz -> libkdeedu-16.04.3.tar.xz ++




commit kturtle for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kturtle for openSUSE:Factory checked 
in at 2016-07-24 19:48:42

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


Package is "kturtle"

Changes:

--- /work/SRC/openSUSE:Factory/kturtle/kturtle.changes  2016-06-25 
02:03:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.kturtle.new/kturtle.changes 2016-07-24 
19:48:55.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:24:54 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kturtle-16.04.2.tar.xz

New:

  kturtle-16.04.3.tar.xz



Other differences:
--
++ kturtle.spec ++
--- /var/tmp/diff_new_pack.mcmIkC/_old  2016-07-24 19:48:56.0 +0200
+++ /var/tmp/diff_new_pack.mcmIkC/_new  2016-07-24 19:48:56.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  Amusements/Teaching/Mathematics
 Url:http://edu.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRequires:  update-desktop-files

++ kturtle-16.04.2.tar.xz -> kturtle-16.04.3.tar.xz ++




commit kuser for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kuser for openSUSE:Factory checked 
in at 2016-07-24 19:48:49

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


Package is "kuser"

Changes:

--- /work/SRC/openSUSE:Factory/kuser/kuser.changes  2016-06-25 
02:03:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.kuser.new/kuser.changes 2016-07-24 
19:49:01.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:25:37 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kuser-16.04.2.tar.xz

New:

  kuser-16.04.3.tar.xz



Other differences:
--
++ kuser.spec ++
--- /var/tmp/diff_new_pack.ti3PXL/_old  2016-07-24 19:49:03.0 +0200
+++ /var/tmp/diff_new_pack.ti3PXL/_new  2016-07-24 19:49:03.0 +0200
@@ -19,7 +19,7 @@
 Name:   kuser
 BuildRequires:  libkdepimlibs4-devel
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:User Account Manager
 License:GPL-2.0+

++ kuser-16.04.2.tar.xz -> kuser-16.04.3.tar.xz ++




commit ktuberling for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ktuberling for openSUSE:Factory 
checked in at 2016-07-24 19:48:37

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


Package is "ktuberling"

Changes:

--- /work/SRC/openSUSE:Factory/ktuberling/ktuberling.changes2016-06-25 
02:03:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktuberling.new/ktuberling.changes   
2016-07-24 19:48:50.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:24:23 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  ktuberling-16.04.2.tar.xz

New:

  ktuberling-16.04.3.tar.xz



Other differences:
--
++ ktuberling.spec ++
--- /var/tmp/diff_new_pack.M5Ufqz/_old  2016-07-24 19:48:51.0 +0200
+++ /var/tmp/diff_new_pack.M5Ufqz/_new  2016-07-24 19:48:51.0 +0200
@@ -42,7 +42,7 @@
 License:GPL-2.0+
 Group:  Amusements/Toys/Other
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:ktuberling-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ktuberling-16.04.2.tar.xz -> ktuberling-16.04.3.tar.xz ++




commit kreversi for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kreversi for openSUSE:Factory 
checked in at 2016-07-24 19:47:48

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


Package is "kreversi"

Changes:

--- /work/SRC/openSUSE:Factory/kreversi/kreversi.changes2016-06-25 
02:02:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.kreversi.new/kreversi.changes   2016-07-24 
19:48:02.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:13:17 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kreversi-16.04.2.tar.xz

New:

  kreversi-16.04.3.tar.xz



Other differences:
--
++ kreversi.spec ++
--- /var/tmp/diff_new_pack.tGzxoP/_old  2016-07-24 19:48:03.0 +0200
+++ /var/tmp/diff_new_pack.tGzxoP/_new  2016-07-24 19:48:03.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kreversi-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kreversi-16.04.2.tar.xz -> kreversi-16.04.3.tar.xz ++




commit kross-interpreters for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kross-interpreters for 
openSUSE:Factory checked in at 2016-07-24 19:47:54

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


Package is "kross-interpreters"

Changes:

--- /work/SRC/openSUSE:Factory/kross-interpreters/kross-interpreters.changes
2016-06-25 02:02:46.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kross-interpreters.new/kross-interpreters.changes   
2016-07-24 19:48:04.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:14:04 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kross-interpreters-16.04.2.tar.xz

New:

  kross-interpreters-16.04.3.tar.xz



Other differences:
--
++ kross-interpreters.spec ++
--- /var/tmp/diff_new_pack.Cp3InT/_old  2016-07-24 19:48:05.0 +0200
+++ /var/tmp/diff_new_pack.Cp3InT/_new  2016-07-24 19:48:05.0 +0200
@@ -29,7 +29,7 @@
 Summary:Diverse bindings for KROSS
 License:LGPL-2.1+
 Group:  Development/Libraries/KDE
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kross-interpreters-16.04.2.tar.xz -> kross-interpreters-16.04.3.tar.xz 
++




commit ksystemlog for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ksystemlog for openSUSE:Factory 
checked in at 2016-07-24 19:48:21

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


Package is "ksystemlog"

Changes:

--- /work/SRC/openSUSE:Factory/ksystemlog/ksystemlog.changes2016-07-01 
09:59:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksystemlog.new/ksystemlog.changes   
2016-07-24 19:48:30.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:18:02 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  ksystemlog-16.04.2.tar.xz

New:

  ksystemlog-16.04.3.tar.xz



Other differences:
--
++ ksystemlog.spec ++
--- /var/tmp/diff_new_pack.SjHYHe/_old  2016-07-24 19:48:32.0 +0200
+++ /var/tmp/diff_new_pack.SjHYHe/_new  2016-07-24 19:48:32.0 +0200
@@ -26,7 +26,7 @@
 BuildRequires:  pkgconfig(Qt5Test) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:System Log Viewer Tool
 License:GPL-2.0

++ ksystemlog-16.04.2.tar.xz -> ksystemlog-16.04.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemlog-16.04.2/tests/kioLogFileReaderTest.cpp 
new/ksystemlog-16.04.3/tests/kioLogFileReaderTest.cpp
--- old/ksystemlog-16.04.2/tests/kioLogFileReaderTest.cpp   2016-04-21 
21:05:13.0 +0200
+++ new/ksystemlog-16.04.3/tests/kioLogFileReaderTest.cpp   2016-07-06 
16:58:23.0 +0200
@@ -2,6 +2,8 @@
  *   KSystemLog, a system log viewer tool  *
  *   Copyright (C) 2007 by Nicolas Ternisien   *
  *   nicolas.ternis...@gmail.com   *
+ *   Copyright (C) 2016 by Harald Sitter   *
+ *   sit...@kde.org*
  * *
  *   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  *
@@ -43,8 +45,6 @@
 
 void testKioLogFileReader();
 
-void readLine(const QString );
-
 private:
 TestUtil testUtil;
 };
@@ -56,27 +56,24 @@
 
 void KioLogFileReaderTest::testKioLogFileReader()
 {
-/*
-QList logFiles = 
testUtil.createLogFiles(":/logs/logFileReader/file.txt");
-LogFile logFile = logFiles.first();
-*/
-
-/// home/nicolas/test.txt
-LogFile 
logFile(QUrl::fromLocalFile(QStringLiteral("http://localhost/test.txt;)),
+QString fixturePath = QFINDTESTDATA("testFiles/logFileReader/file.txt");
+LogFile logFile(QUrl::fromLocalFile(fixturePath),
 Globals::instance().informationLogLevel());
 
 KioLogFileReader *logFileReader = new KioLogFileReader(logFile);
-
 logFileReader->open();
 
-connect(logFileReader, ::lineRead, this, 
::readLine);
-
-QTest::qWait(10);
-}
-
-void KioLogFileReaderTest::readLine(const QString )
-{
-logDebug() << "Line " << line << endl;
+connect(logFileReader, ::lineRead, this, [=](const 
QString ) {
+logDebug() << "Line " << line << endl;
+static QFile file(fixturePath);
+static bool open = false;
+if (!open) {
+QVERIFY(file.open(QIODevice::ReadOnly | QIODevice::Text));
+open = true;
+}
+static QTextStream stream();
+QCOMPARE(line, stream.readLine());
+});
 }
 
 QTEST_MAIN(KioLogFileReaderTest)




commit ktp-call-ui for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ktp-call-ui for openSUSE:Factory 
checked in at 2016-07-24 19:48:33

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


Package is "ktp-call-ui"

Changes:

--- /work/SRC/openSUSE:Factory/ktp-call-ui/ktp-call-ui.changes  2016-06-25 
02:03:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktp-call-ui.new/ktp-call-ui.changes 
2016-07-24 19:48:46.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:23:56 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  ktp-call-ui-16.04.2.tar.xz

New:

  ktp-call-ui-16.04.3.tar.xz



Other differences:
--
++ ktp-call-ui.spec ++
--- /var/tmp/diff_new_pack.WyBcYw/_old  2016-07-24 19:48:47.0 +0200
+++ /var/tmp/diff_new_pack.WyBcYw/_new  2016-07-24 19:48:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktp-call-ui
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Voice/Video Call UI for Telepathy
 License:GPL-2.0+

++ ktp-call-ui-16.04.2.tar.xz -> ktp-call-ui-16.04.3.tar.xz ++




commit kteatime for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kteatime for openSUSE:Factory 
checked in at 2016-07-24 19:48:24

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


Package is "kteatime"

Changes:

--- /work/SRC/openSUSE:Factory/kteatime/kteatime.changes2016-06-25 
02:03:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.kteatime.new/kteatime.changes   2016-07-24 
19:48:33.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:18:25 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kteatime-16.04.2.tar.xz

New:

  kteatime-16.04.3.tar.xz



Other differences:
--
++ kteatime.spec ++
--- /var/tmp/diff_new_pack.HnljaQ/_old  2016-07-24 19:48:34.0 +0200
+++ /var/tmp/diff_new_pack.HnljaQ/_new  2016-07-24 19:48:34.0 +0200
@@ -37,7 +37,7 @@
 License:GPL-2.0+
 Group:  Amusements/Toys/Other
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:%{name}-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ kteatime-16.04.2.tar.xz -> kteatime-16.04.3.tar.xz ++




commit kspaceduel for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kspaceduel for openSUSE:Factory 
checked in at 2016-07-24 19:48:09

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.changes2016-06-25 
02:02:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.kspaceduel.new/kspaceduel.changes   
2016-07-24 19:48:20.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:16:08 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kspaceduel-16.04.2.tar.xz

New:

  kspaceduel-16.04.3.tar.xz



Other differences:
--
++ kspaceduel.spec ++
--- /var/tmp/diff_new_pack.OrVxsZ/_old  2016-07-24 19:48:21.0 +0200
+++ /var/tmp/diff_new_pack.OrVxsZ/_new  2016-07-24 19:48:21.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kspaceduel-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kspaceduel-16.04.2.tar.xz -> kspaceduel-16.04.3.tar.xz ++




commit ktimer for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ktimer for openSUSE:Factory checked 
in at 2016-07-24 19:48:26

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


Package is "ktimer"

Changes:

--- /work/SRC/openSUSE:Factory/ktimer/ktimer.changes2016-06-25 
02:03:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktimer.new/ktimer.changes   2016-07-24 
19:48:38.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:18:47 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  ktimer-16.04.2.tar.xz

New:

  ktimer-16.04.3.tar.xz



Other differences:
--
++ ktimer.spec ++
--- /var/tmp/diff_new_pack.z3pt7C/_old  2016-07-24 19:48:40.0 +0200
+++ /var/tmp/diff_new_pack.z3pt7C/_new  2016-07-24 19:48:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktimer
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Countdown Launcher
 License:GPL-2.0+

++ ktimer-16.04.2.tar.xz -> ktimer-16.04.3.tar.xz ++




commit ksudoku for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ksudoku for openSUSE:Factory checked 
in at 2016-07-24 19:48:19

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


Package is "ksudoku"

Changes:

--- /work/SRC/openSUSE:Factory/ksudoku/ksudoku.changes  2016-06-25 
02:03:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksudoku.new/ksudoku.changes 2016-07-24 
19:48:26.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:17:37 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  ksudoku-16.04.2.tar.xz

New:

  ksudoku-16.04.3.tar.xz



Other differences:
--
++ ksudoku.spec ++
--- /var/tmp/diff_new_pack.pu3gOk/_old  2016-07-24 19:48:27.0 +0200
+++ /var/tmp/diff_new_pack.pu3gOk/_new  2016-07-24 19:48:27.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:ksudoku-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ksudoku-16.04.2.tar.xz -> ksudoku-16.04.3.tar.xz ++




commit ktouch for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ktouch for openSUSE:Factory checked 
in at 2016-07-24 19:48:29

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


Package is "ktouch"

Changes:

--- /work/SRC/openSUSE:Factory/ktouch/ktouch.changes2016-06-25 
02:03:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.ktouch.new/ktouch.changes   2016-07-24 
19:48:43.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:19:43 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  ktouch-16.04.2.tar.xz

New:

  ktouch-16.04.3.tar.xz



Other differences:
--
++ ktouch.spec ++
--- /var/tmp/diff_new_pack.XOuIeR/_old  2016-07-24 19:48:44.0 +0200
+++ /var/tmp/diff_new_pack.XOuIeR/_new  2016-07-24 19:48:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ktouch
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Touch Typing Tutor
 License:GPL-2.0+

++ ktouch-16.04.2.tar.xz -> ktouch-16.04.3.tar.xz ++




commit ksnakeduel for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ksnakeduel for openSUSE:Factory 
checked in at 2016-07-24 19:48:04

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.changes2016-06-25 
02:02:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksnakeduel.new/ksnakeduel.changes   
2016-07-24 19:48:18.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:15:45 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  ksnakeduel-16.04.2.tar.xz

New:

  ksnakeduel-16.04.3.tar.xz



Other differences:
--
++ ksnakeduel.spec ++
--- /var/tmp/diff_new_pack.3ZLpXx/_old  2016-07-24 19:48:20.0 +0200
+++ /var/tmp/diff_new_pack.3ZLpXx/_new  2016-07-24 19:48:20.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:ksnakeduel-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ksnakeduel-16.04.2.tar.xz -> ksnakeduel-16.04.3.tar.xz ++




commit ksirk for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ksirk for openSUSE:Factory checked 
in at 2016-07-24 19:48:02

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  2016-06-25 
02:02:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksirk.new/ksirk.changes 2016-07-24 
19:48:11.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:15:20 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  ksirk-16.04.2.tar.xz

New:

  ksirk-16.04.3.tar.xz



Other differences:
--
++ ksirk.spec ++
--- /var/tmp/diff_new_pack.MKQh3Y/_old  2016-07-24 19:48:13.0 +0200
+++ /var/tmp/diff_new_pack.MKQh3Y/_new  2016-07-24 19:48:13.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:16.04.2
+Version:16.04.3
 Release:0
 Source0:ksirk-%{version}.tar.xz
 BuildRequires:  libkdegames4-devel

++ ksirk-16.04.2.tar.xz -> ksirk-16.04.3.tar.xz ++




commit kstars for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kstars for openSUSE:Factory checked 
in at 2016-07-24 19:48:13

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


Package is "kstars"

Changes:

--- /work/SRC/openSUSE:Factory/kstars/kstars.changes2016-06-25 
02:03:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.kstars.new/kstars.changes   2016-07-24 
19:48:24.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:17:01 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kstars-16.04.2.tar.xz

New:

  kstars-16.04.3.tar.xz



Other differences:
--
++ kstars.spec ++
--- /var/tmp/diff_new_pack.MfGowW/_old  2016-07-24 19:48:26.0 +0200
+++ /var/tmp/diff_new_pack.MfGowW/_new  2016-07-24 19:48:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kstars
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Desktop Planetarium
 License:GPL-2.0+

++ kstars-16.04.2.tar.xz -> kstars-16.04.3.tar.xz ++
/work/SRC/openSUSE:Factory/kstars/kstars-16.04.2.tar.xz 
/work/SRC/openSUSE:Factory/.kstars.new/kstars-16.04.3.tar.xz differ: char 27, 
line 1




commit kshisen for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kshisen for openSUSE:Factory checked 
in at 2016-07-24 19:47:56

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  2016-06-25 
02:02:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.kshisen.new/kshisen.changes 2016-07-24 
19:48:09.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:14:49 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kshisen-16.04.2.tar.xz

New:

  kshisen-16.04.3.tar.xz



Other differences:
--
++ kshisen.spec ++
--- /var/tmp/diff_new_pack.KPezsz/_old  2016-07-24 19:48:10.0 +0200
+++ /var/tmp/diff_new_pack.KPezsz/_new  2016-07-24 19:48:10.0 +0200
@@ -41,7 +41,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kshisen-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ kshisen-16.04.2.tar.xz -> kshisen-16.04.3.tar.xz ++




commit ksquares for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ksquares for openSUSE:Factory 
checked in at 2016-07-24 19:48:11

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


Package is "ksquares"

Changes:

--- /work/SRC/openSUSE:Factory/ksquares/ksquares.changes2016-06-25 
02:03:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.ksquares.new/ksquares.changes   2016-07-24 
19:48:21.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:16:30 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  ksquares-16.04.2.tar.xz

New:

  ksquares-16.04.3.tar.xz



Other differences:
--
++ ksquares.spec ++
--- /var/tmp/diff_new_pack.npDhEa/_old  2016-07-24 19:48:22.0 +0200
+++ /var/tmp/diff_new_pack.npDhEa/_new  2016-07-24 19:48:22.0 +0200
@@ -43,7 +43,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:ksquares-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ ksquares-16.04.2.tar.xz -> ksquares-16.04.3.tar.xz ++




commit kppp for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kppp for openSUSE:Factory checked in 
at 2016-07-24 19:47:40

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


Package is "kppp"

Changes:

--- /work/SRC/openSUSE:Factory/kppp/kppp.changes2016-06-25 
02:02:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.kppp.new/kppp.changes   2016-07-24 
19:47:53.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:11:33 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kppp-16.04.2.tar.xz

New:

  kppp-16.04.3.tar.xz



Other differences:
--
++ kppp.spec ++
--- /var/tmp/diff_new_pack.tutDIo/_old  2016-07-24 19:47:55.0 +0200
+++ /var/tmp/diff_new_pack.tutDIo/_new  2016-07-24 19:47:55.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   kppp
 BuildRequires:  libkde4-devel
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Internet Dial-Up Tool
 License:GPL-2.0+

++ kppp-16.04.2.tar.xz -> kppp-16.04.3.tar.xz ++




commit kremotecontrol for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kremotecontrol for openSUSE:Factory 
checked in at 2016-07-24 19:47:46

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
2016-06-25 02:02:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.kremotecontrol.new/kremotecontrol.changes   
2016-07-24 19:47:56.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:12:45 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kremotecontrol-16.04.2.tar.xz

New:

  kremotecontrol-16.04.3.tar.xz



Other differences:
--
++ kremotecontrol.spec ++
--- /var/tmp/diff_new_pack.vzkcAn/_old  2016-07-24 19:47:57.0 +0200
+++ /var/tmp/diff_new_pack.vzkcAn/_new  2016-07-24 19:47:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kremotecontrol
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:KDE Frontend for the Linux Infrared Remote Control system
 License:GPL-2.0+

++ kremotecontrol-16.04.2.tar.xz -> kremotecontrol-16.04.3.tar.xz ++




commit konquest for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package konquest for openSUSE:Factory 
checked in at 2016-07-24 19:47:31

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.changes2016-06-25 
02:02:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.konquest.new/konquest.changes   2016-07-24 
19:47:45.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:08:48 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  konquest-16.04.2.tar.xz

New:

  konquest-16.04.3.tar.xz



Other differences:
--
++ konquest.spec ++
--- /var/tmp/diff_new_pack.hCKL8m/_old  2016-07-24 19:47:46.0 +0200
+++ /var/tmp/diff_new_pack.hCKL8m/_new  2016-07-24 19:47:46.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:konquest-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ konquest-16.04.2.tar.xz -> konquest-16.04.3.tar.xz ++




commit kpat for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kpat for openSUSE:Factory checked in 
at 2016-07-24 19:47:34

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.changes2016-06-25 
02:02:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.kpat.new/kpat.changes   2016-07-24 
19:47:48.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:10:46 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kpat-16.04.2.tar.xz

New:

  kpat-16.04.3.tar.xz



Other differences:
--
++ kpat.spec ++
--- /var/tmp/diff_new_pack.rnUnHI/_old  2016-07-24 19:47:50.0 +0200
+++ /var/tmp/diff_new_pack.rnUnHI/_new  2016-07-24 19:47:50.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Card
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kpat-%{version}.tar.xz
 BuildRequires:  libkdegames-devel

++ kpat-16.04.2.tar.xz -> kpat-16.04.3.tar.xz ++




commit kjumpingcube for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kjumpingcube for openSUSE:Factory 
checked in at 2016-07-24 19:46:39

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


Package is "kjumpingcube"

Changes:

--- /work/SRC/openSUSE:Factory/kjumpingcube/kjumpingcube.changes
2016-06-25 02:02:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.kjumpingcube.new/kjumpingcube.changes   
2016-07-24 19:46:52.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:00:12 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kjumpingcube-16.04.2.tar.xz

New:

  kjumpingcube-16.04.3.tar.xz



Other differences:
--
++ kjumpingcube.spec ++
--- /var/tmp/diff_new_pack.fUsRAE/_old  2016-07-24 19:46:54.0 +0200
+++ /var/tmp/diff_new_pack.fUsRAE/_new  2016-07-24 19:46:54.0 +0200
@@ -42,7 +42,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kjumpingcube-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ kjumpingcube-16.04.2.tar.xz -> kjumpingcube-16.04.3.tar.xz ++




commit kmouth for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kmouth for openSUSE:Factory checked 
in at 2016-07-24 19:47:05

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


Package is "kmouth"

Changes:

--- /work/SRC/openSUSE:Factory/kmouth/kmouth.changes2016-06-25 
02:02:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmouth.new/kmouth.changes   2016-07-24 
19:47:17.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:05:30 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kmouth-16.04.2.tar.xz

New:

  kmouth-16.04.3.tar.xz



Other differences:
--
++ kmouth.spec ++
--- /var/tmp/diff_new_pack.hRaiS6/_old  2016-07-24 19:47:18.0 +0200
+++ /var/tmp/diff_new_pack.hRaiS6/_new  2016-07-24 19:47:18.0 +0200
@@ -27,7 +27,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kmouth-16.04.2.tar.xz -> kmouth-16.04.3.tar.xz ++




commit kmahjongg for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kmahjongg for openSUSE:Factory 
checked in at 2016-07-24 19:46:55

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  2016-07-03 
12:28:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmahjongg.new/kmahjongg.changes 2016-07-24 
19:47:08.0 +0200
@@ -1,0 +2,13 @@
+Fri Jul  8 06:34:32 UTC 2016 - fv...@suse.com
+
+- Fix build by removing upstreamed fix-endless-loop.patch
+
+---
+Fri Jul  8 00:02:46 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  fix-endless-loop.patch
  kmahjongg-16.04.2.tar.xz

New:

  kmahjongg-16.04.3.tar.xz



Other differences:
--
++ kmahjongg.spec ++
--- /var/tmp/diff_new_pack.53klkh/_old  2016-07-24 19:47:10.0 +0200
+++ /var/tmp/diff_new_pack.53klkh/_new  2016-07-24 19:47:10.0 +0200
@@ -40,11 +40,9 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kmahjongg-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM fix-endless-loop.patch boo#983173, kde#361132 -- fixes 
endless loop on startup if the configured layout cannot be loaded
-Patch:  fix-endless-loop.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -55,7 +53,6 @@
 
 %prep
 %setup -q -n kmahjongg-%{version}
-%patch -p1
 
 %build
   %cmake_kf5 -d build

++ kmahjongg-16.04.2.tar.xz -> kmahjongg-16.04.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmahjongg-16.04.2/kmahjongg.cpp 
new/kmahjongg-16.04.3/kmahjongg.cpp
--- old/kmahjongg-16.04.2/kmahjongg.cpp 2016-04-12 14:32:16.0 +0200
+++ new/kmahjongg-16.04.3/kmahjongg.cpp 2016-07-01 13:30:27.0 +0200
@@ -266,6 +266,7 @@
 qCDebug(KMAHJONGG_LOG) << "Error loading the layout. Try to load the 
default layout.";
 
 m_boardLayout->loadDefault();
+Prefs::setLayout(m_boardLayout->path());
 }
 }
 




commit kolf for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kolf for openSUSE:Factory checked in 
at 2016-07-24 19:47:17

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


Package is "kolf"

Changes:

--- /work/SRC/openSUSE:Factory/kolf/kolf.changes2016-06-25 
02:02:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.kolf.new/kolf.changes   2016-07-24 
19:47:31.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:07:08 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kolf-16.04.2.tar.xz

New:

  kolf-16.04.3.tar.xz



Other differences:
--
++ kolf.spec ++
--- /var/tmp/diff_new_pack.B78bRS/_old  2016-07-24 19:47:32.0 +0200
+++ /var/tmp/diff_new_pack.B78bRS/_new  2016-07-24 19:47:32.0 +0200
@@ -21,7 +21,7 @@
 License:GPL-2.0+ and LGPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kolf-%{version}.tar.xz
 BuildRequires:  libkdegames4-devel

++ kolf-16.04.2.tar.xz -> kolf-16.04.3.tar.xz ++




commit kmines for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kmines for openSUSE:Factory checked 
in at 2016-07-24 19:46:59

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


Package is "kmines"

Changes:

--- /work/SRC/openSUSE:Factory/kmines/kmines.changes2016-06-25 
02:02:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmines.new/kmines.changes   2016-07-24 
19:47:15.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:04:22 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kmines-16.04.2.tar.xz

New:

  kmines-16.04.3.tar.xz



Other differences:
--
++ kmines.spec ++
--- /var/tmp/diff_new_pack.LT9V4S/_old  2016-07-24 19:47:16.0 +0200
+++ /var/tmp/diff_new_pack.LT9V4S/_new  2016-07-24 19:47:16.0 +0200
@@ -58,7 +58,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kmines-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ kmines-16.04.2.tar.xz -> kmines-16.04.3.tar.xz ++




commit kolourpaint for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kolourpaint for openSUSE:Factory 
checked in at 2016-07-24 19:47:25

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  2016-06-25 
02:02:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.kolourpaint.new/kolourpaint.changes 
2016-07-24 19:47:39.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:07:56 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kolourpaint-16.04.2.tar.xz

New:

  kolourpaint-16.04.3.tar.xz



Other differences:
--
++ kolourpaint.spec ++
--- /var/tmp/diff_new_pack.MyNJi2/_old  2016-07-24 19:47:40.0 +0200
+++ /var/tmp/diff_new_pack.MyNJi2/_new  2016-07-24 19:47:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kolourpaint
-Version:16.04.2
+Version:16.04.3
 Release:0
 # See bnc#717722 for license details
 Summary:Paint Program

++ kolourpaint-16.04.2.tar.xz -> kolourpaint-16.04.3.tar.xz ++




commit kiten for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kiten for openSUSE:Factory checked 
in at 2016-07-24 19:46:34

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


Package is "kiten"

Changes:

--- /work/SRC/openSUSE:Factory/kiten/kiten.changes  2016-06-25 
02:02:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.kiten.new/kiten.changes 2016-07-24 
19:46:47.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:59:45 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kiten-16.04.2.tar.xz

New:

  kiten-16.04.3.tar.xz



Other differences:
--
++ kiten.spec ++
--- /var/tmp/diff_new_pack.kdZe2P/_old  2016-07-24 19:46:49.0 +0200
+++ /var/tmp/diff_new_pack.kdZe2P/_new  2016-07-24 19:46:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kiten
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Japanese Reference/Study Tool
 License:GPL-2.0+

++ kiten-16.04.2.tar.xz -> kiten-16.04.3.tar.xz ++
/work/SRC/openSUSE:Factory/kiten/kiten-16.04.2.tar.xz 
/work/SRC/openSUSE:Factory/.kiten.new/kiten-16.04.3.tar.xz differ: char 27, 
line 1




commit knavalbattle for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package knavalbattle for openSUSE:Factory 
checked in at 2016-07-24 19:47:14

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


Package is "knavalbattle"

Changes:

--- /work/SRC/openSUSE:Factory/knavalbattle/knavalbattle.changes
2016-06-25 02:02:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.knavalbattle.new/knavalbattle.changes   
2016-07-24 19:47:25.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:06:20 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  knavalbattle-16.04.2.tar.xz

New:

  knavalbattle-16.04.3.tar.xz



Other differences:
--
++ knavalbattle.spec ++
--- /var/tmp/diff_new_pack.ya4Bnb/_old  2016-07-24 19:47:26.0 +0200
+++ /var/tmp/diff_new_pack.ya4Bnb/_new  2016-07-24 19:47:26.0 +0200
@@ -46,7 +46,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:knavalbattle-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ knavalbattle-16.04.2.tar.xz -> knavalbattle-16.04.3.tar.xz ++




commit kmplot for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kmplot for openSUSE:Factory checked 
in at 2016-07-24 19:47:07

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.changes2016-06-25 
02:02:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.kmplot.new/kmplot.changes   2016-07-24 
19:47:22.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:05:56 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kmplot-16.04.2.tar.xz

New:

  kmplot-16.04.3.tar.xz



Other differences:
--
++ kmplot.spec ++
--- /var/tmp/diff_new_pack.af6DIa/_old  2016-07-24 19:47:24.0 +0200
+++ /var/tmp/diff_new_pack.af6DIa/_new  2016-07-24 19:47:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kmplot
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Mathematical Function Plotter
 License:GPL-2.0+

++ kmplot-16.04.2.tar.xz -> kmplot-16.04.3.tar.xz ++




commit kollision for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kollision for openSUSE:Factory 
checked in at 2016-07-24 19:47:23

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


Package is "kollision"

Changes:

--- /work/SRC/openSUSE:Factory/kollision/kollision.changes  2016-06-25 
02:02:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.kollision.new/kollision.changes 2016-07-24 
19:47:34.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:07:31 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kollision-16.04.2.tar.xz

New:

  kollision-16.04.3.tar.xz



Other differences:
--
++ kollision.spec ++
--- /var/tmp/diff_new_pack.GEYRU2/_old  2016-07-24 19:47:34.0 +0200
+++ /var/tmp/diff_new_pack.GEYRU2/_new  2016-07-24 19:47:34.0 +0200
@@ -42,7 +42,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kollision-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ kollision-16.04.2.tar.xz -> kollision-16.04.3.tar.xz ++




commit klettres for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package klettres for openSUSE:Factory 
checked in at 2016-07-24 19:46:44

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.changes2016-06-25 
02:02:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.klettres.new/klettres.changes   2016-07-24 
19:46:55.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:00:59 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  klettres-16.04.2.tar.xz

New:

  klettres-16.04.3.tar.xz



Other differences:
--
++ klettres.spec ++
--- /var/tmp/diff_new_pack.axfOEJ/_old  2016-07-24 19:46:56.0 +0200
+++ /var/tmp/diff_new_pack.axfOEJ/_new  2016-07-24 19:46:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   klettres
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Alphabet Learning Game
 License:GPL-2.0+

++ klettres-16.04.2.tar.xz -> klettres-16.04.3.tar.xz ++




commit klines for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package klines for openSUSE:Factory checked 
in at 2016-07-24 19:46:52

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.changes2016-06-25 
02:02:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.klines.new/klines.changes   2016-07-24 
19:47:05.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:01:57 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  klines-16.04.2.tar.xz

New:

  klines-16.04.3.tar.xz



Other differences:
--
++ klines.spec ++
--- /var/tmp/diff_new_pack.QWJ73p/_old  2016-07-24 19:47:07.0 +0200
+++ /var/tmp/diff_new_pack.QWJ73p/_new  2016-07-24 19:47:07.0 +0200
@@ -50,7 +50,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:klines-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ klines-16.04.2.tar.xz -> klines-16.04.3.tar.xz ++




commit klickety for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package klickety for openSUSE:Factory 
checked in at 2016-07-24 19:46:47

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.changes2016-06-25 
02:02:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.klickety.new/klickety.changes   2016-07-24 
19:47:02.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul  8 00:01:26 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  klickety-16.04.2.tar.xz

New:

  klickety-16.04.3.tar.xz



Other differences:
--
++ klickety.spec ++
--- /var/tmp/diff_new_pack.LHBRcr/_old  2016-07-24 19:47:04.0 +0200
+++ /var/tmp/diff_new_pack.LHBRcr/_new  2016-07-24 19:47:04.0 +0200
@@ -38,7 +38,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:klickety-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ klickety-16.04.2.tar.xz -> klickety-16.04.3.tar.xz ++




commit killbots for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package killbots for openSUSE:Factory 
checked in at 2016-07-24 19:46:27

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.changes2016-06-25 
02:01:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.killbots.new/killbots.changes   2016-07-24 
19:46:41.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:57:46 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  killbots-16.04.2.tar.xz

New:

  killbots-16.04.3.tar.xz



Other differences:
--
++ killbots.spec ++
--- /var/tmp/diff_new_pack.QXy0ZI/_old  2016-07-24 19:46:42.0 +0200
+++ /var/tmp/diff_new_pack.QXy0ZI/_new  2016-07-24 19:46:42.0 +0200
@@ -38,7 +38,7 @@
 License:GPL-2.0+
 Group:  System/GUI/KDE
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:killbots-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ killbots-16.04.2.tar.xz -> killbots-16.04.3.tar.xz ++




commit kig for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kig for openSUSE:Factory checked in 
at 2016-07-24 19:46:19

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


Package is "kig"

Changes:

--- /work/SRC/openSUSE:Factory/kig/kig.changes  2016-06-25 02:01:56.0 
+0200
+++ /work/SRC/openSUSE:Factory/.kig.new/kig.changes 2016-07-24 
19:46:33.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:56:50 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kig-16.04.2.tar.xz

New:

  kig-16.04.3.tar.xz



Other differences:
--
++ kig.spec ++
--- /var/tmp/diff_new_pack.d38936/_old  2016-07-24 19:46:34.0 +0200
+++ /var/tmp/diff_new_pack.d38936/_new  2016-07-24 19:46:34.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kig
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Interactive Geometry
 License:GPL-2.0+

++ kig-16.04.2.tar.xz -> kig-16.04.3.tar.xz ++




commit kiriki for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kiriki for openSUSE:Factory checked 
in at 2016-07-24 19:46:32

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


Package is "kiriki"

Changes:

--- /work/SRC/openSUSE:Factory/kiriki/kiriki.changes2016-06-25 
02:02:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.kiriki.new/kiriki.changes   2016-07-24 
19:46:45.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:59:13 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kiriki-16.04.2.tar.xz

New:

  kiriki-16.04.3.tar.xz



Other differences:
--
++ kiriki.spec ++
--- /var/tmp/diff_new_pack.lgvxHh/_old  2016-07-24 19:46:46.0 +0200
+++ /var/tmp/diff_new_pack.lgvxHh/_new  2016-07-24 19:46:46.0 +0200
@@ -50,7 +50,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Other
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kiriki-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kiriki-16.04.2.tar.xz -> kiriki-16.04.3.tar.xz ++




commit kgeography for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kgeography for openSUSE:Factory 
checked in at 2016-07-24 19:46:07

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


Package is "kgeography"

Changes:

--- /work/SRC/openSUSE:Factory/kgeography/kgeography.changes2016-06-25 
02:01:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.kgeography.new/kgeography.changes   
2016-07-24 19:46:18.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:53:38 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kgeography-16.04.2.tar.xz

New:

  kgeography-16.04.3.tar.xz



Other differences:
--
++ kgeography.spec ++
--- /var/tmp/diff_new_pack.pRvPJO/_old  2016-07-24 19:46:19.0 +0200
+++ /var/tmp/diff_new_pack.pRvPJO/_new  2016-07-24 19:46:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kgeography
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Geography Trainer
 License:GPL-2.0+

++ kgeography-16.04.2.tar.xz -> kgeography-16.04.3.tar.xz ++
/work/SRC/openSUSE:Factory/kgeography/kgeography-16.04.2.tar.xz 
/work/SRC/openSUSE:Factory/.kgeography.new/kgeography-16.04.3.tar.xz differ: 
char 27, line 1




commit kdf for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kdf for openSUSE:Factory checked in 
at 2016-07-24 19:45:52

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  2016-06-25 02:01:33.0 
+0200
+++ /work/SRC/openSUSE:Factory/.kdf.new/kdf.changes 2016-07-24 
19:46:01.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:51:25 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kdf-16.04.2.tar.xz

New:

  kdf-16.04.3.tar.xz



Other differences:
--
++ kdf.spec ++
--- /var/tmp/diff_new_pack.FCDufz/_old  2016-07-24 19:46:04.0 +0200
+++ /var/tmp/diff_new_pack.FCDufz/_new  2016-07-24 19:46:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdf
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Disk Usage Viewer
 License:GPL-2.0+

++ kdf-16.04.2.tar.xz -> kdf-16.04.3.tar.xz ++




commit kdenlive for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kdenlive for openSUSE:Factory 
checked in at 2016-07-24 19:45:43

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.changes2016-07-07 
15:10:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdenlive.new/kdenlive.changes   2016-07-24 
19:45:47.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:47:14 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kdenlive-16.04.2.tar.xz

New:

  kdenlive-16.04.3.tar.xz



Other differences:
--
++ kdenlive.spec ++
--- /var/tmp/diff_new_pack.94tKVL/_old  2016-07-24 19:45:49.0 +0200
+++ /var/tmp/diff_new_pack.94tKVL/_new  2016-07-24 19:45:49.0 +0200
@@ -19,13 +19,13 @@
 %define mlt_version 0.9.8
 
 Name:   kdenlive
-Version:16.04.2
+Version:16.04.3
 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/16.04.2/src/%{name}-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/applications/16.04.3/src/%{name}-%{version}.tar.xz
 Patch1: use-mlt_datadir.patch
 BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes

++ kdenlive-16.04.2.tar.xz -> kdenlive-16.04.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdenlive-16.04.2/CMakeLists.txt 
new/kdenlive-16.04.3/CMakeLists.txt
--- old/kdenlive-16.04.2/CMakeLists.txt 2016-06-09 19:50:38.0 +0200
+++ new/kdenlive-16.04.3/CMakeLists.txt 2016-07-02 18:04:31.0 +0200
@@ -6,7 +6,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "04")
-set (KDE_APPLICATIONS_VERSION_MICRO "2")
+set (KDE_APPLICATIONS_VERSION_MICRO "3")
 
 set(KDENLIVE_VERSION 
${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO})
 cmake_minimum_required(VERSION 2.8.12)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdenlive-16.04.2/src/effectstack/graphicsscenerectmove.cpp 
new/kdenlive-16.04.3/src/effectstack/graphicsscenerectmove.cpp
--- old/kdenlive-16.04.2/src/effectstack/graphicsscenerectmove.cpp  
2016-06-09 19:50:38.0 +0200
+++ new/kdenlive-16.04.3/src/effectstack/graphicsscenerectmove.cpp  
2016-07-02 18:04:31.0 +0200
@@ -154,7 +154,7 @@
 }
 QFontMetrics metrics(font());
 //ADJUST TO CURRENT SETTING
-int lineSpacing = data(TitleDocument::LineSpacing).toInt() + 
metrics.lineSpacing();
+double lineSpacing = data(TitleDocument::LineSpacing).toInt() + 
metrics.lineSpacing();
 QPainterPath path;
 
 // Calculate line width
@@ -176,9 +176,7 @@
 path.addPath(linePath);
 }
 // Calculate position of text in parent item
-QRectF pathRect = QRectF(0, 0, bounding.width(), linePos - lineSpacing + 
metrics.descent() );
-QPointF offset = bounding.center() - pathRect.center() + QPointF(2 * 
m_shadowBlur, 2 * m_shadowBlur);
-path.translate(offset);
+path.translate(QPointF(2 * m_shadowBlur, 2 * m_shadowBlur));
 QRectF fullSize = bounding.united(path.boundingRect());
 QImage shadow(fullSize.width() + qAbs(m_shadowOffset.x()) + 4 * 
m_shadowBlur, fullSize.height() + qAbs(m_shadowOffset.y()) + 4 * m_shadowBlur, 
QImage::Format_ARGB32_Premultiplied);
 shadow.fill(Qt::transparent);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdenlive-16.04.2/src/monitor/glwidget.cpp 
new/kdenlive-16.04.3/src/monitor/glwidget.cpp
--- old/kdenlive-16.04.2/src/monitor/glwidget.cpp   2016-06-09 
19:50:38.0 +0200
+++ new/kdenlive-16.04.3/src/monitor/glwidget.cpp   2016-07-02 
18:04:31.0 +0200
@@ -144,11 +144,11 @@
 
 void GLWidget::initializeGL()
 {
-//if (m_isInitialized || !isVisible() || !openglContext()) return;
+if (m_isInitialized || !isVisible() || !openglContext()) return;
 if (!m_offscreenSurface.isValid()) {
 m_offscreenSurface.setFormat(openglContext()->format());
 m_offscreenSurface.create();
-//openglContext()->makeCurrent(this);
+openglContext()->makeCurrent(this);
 }
 

commit kdiamond for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kdiamond for openSUSE:Factory 
checked in at 2016-07-24 19:45:57

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


Package is "kdiamond"

Changes:

--- /work/SRC/openSUSE:Factory/kdiamond/kdiamond.changes2016-06-25 
02:01:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdiamond.new/kdiamond.changes   2016-07-24 
19:46:08.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:51:54 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kdiamond-16.04.2.tar.xz

New:

  kdiamond-16.04.3.tar.xz



Other differences:
--
++ kdiamond.spec ++
--- /var/tmp/diff_new_pack.5lt2ji/_old  2016-07-24 19:46:09.0 +0200
+++ /var/tmp/diff_new_pack.5lt2ji/_new  2016-07-24 19:46:09.0 +0200
@@ -38,7 +38,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Board/Puzzle
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kdiamond-%{version}.tar.xz
 Obsoletes:  %{name}5 < %{version}

++ kdiamond-16.04.2.tar.xz -> kdiamond-16.04.3.tar.xz ++




commit kdesdk-thumbnailers for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kdesdk-thumbnailers for 
openSUSE:Factory checked in at 2016-07-24 19:45:46

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


Package is "kdesdk-thumbnailers"

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk-thumbnailers/kdesdk-thumbnailers.changes  
2016-06-25 02:01:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdesdk-thumbnailers.new/kdesdk-thumbnailers.changes 
2016-07-24 19:45:50.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:50:06 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kdesdk-thumbnailers-16.04.2.tar.xz

New:

  kdesdk-thumbnailers-16.04.3.tar.xz



Other differences:
--
++ kdesdk-thumbnailers.spec ++
--- /var/tmp/diff_new_pack.vyLWPj/_old  2016-07-24 19:45:51.0 +0200
+++ /var/tmp/diff_new_pack.vyLWPj/_new  2016-07-24 19:45:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   kdesdk-thumbnailers
-Version:16.04.2
+Version:16.04.3
 Release:0
 Summary:Translation file thumbnail generators
 License:GPL-2.0+

++ kdesdk-thumbnailers-16.04.2.tar.xz -> kdesdk-thumbnailers-16.04.3.tar.xz 
++




commit kdesdk4-scripts for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kdesdk4-scripts for openSUSE:Factory 
checked in at 2016-07-24 19:45:48

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  
2016-06-25 02:01:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdesdk4-scripts.new/kdesdk4-scripts.changes 
2016-07-24 19:45:52.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:50:29 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kde-dev-scripts-16.04.2.tar.xz

New:

  kde-dev-scripts-16.04.3.tar.xz



Other differences:
--
++ kdesdk4-scripts.spec ++
--- /var/tmp/diff_new_pack.6moPXm/_old  2016-07-24 19:45:53.0 +0200
+++ /var/tmp/diff_new_pack.6moPXm/_new  2016-07-24 19:45:53.0 +0200
@@ -24,7 +24,7 @@
 License:GPL-2.0 and GFDL-1.2
 Group:  System/GUI/KDE
 Url:http://www.kde.org/
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:%{rname}-%{version}.tar.xz
 Patch0: %{rname}-4.14.3-fix-bashisms.patch

++ kde-dev-scripts-16.04.2.tar.xz -> kde-dev-scripts-16.04.3.tar.xz ++




commit kgoldrunner for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package kgoldrunner for openSUSE:Factory 
checked in at 2016-07-24 19:46:09

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  2016-06-25 
02:01:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.kgoldrunner.new/kgoldrunner.changes 
2016-07-24 19:46:22.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:54:34 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+---

Old:

  kgoldrunner-16.04.2.tar.xz

New:

  kgoldrunner-16.04.3.tar.xz



Other differences:
--
++ kgoldrunner.spec ++
--- /var/tmp/diff_new_pack.24kc1M/_old  2016-07-24 19:46:24.0 +0200
+++ /var/tmp/diff_new_pack.24kc1M/_new  2016-07-24 19:46:24.0 +0200
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Amusements/Games/Action/Arcade
 Url:http://www.kde.org
-Version:16.04.2
+Version:16.04.3
 Release:0
 Source0:kgoldrunner-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ kgoldrunner-16.04.2.tar.xz -> kgoldrunner-16.04.3.tar.xz ++




  1   2   >