commit fldigi for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package fldigi for openSUSE:Factory checked 
in at 2017-12-31 19:32:54

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


Package is "fldigi"

Sun Dec 31 19:32:54 2017 rev:8 rq:560766 version:4.0.13

Changes:

--- /work/SRC/openSUSE:Factory/fldigi/fldigi.changes2017-12-12 
21:22:49.126864343 +0100
+++ /work/SRC/openSUSE:Factory/.fldigi.new/fldigi.changes   2017-12-31 
19:32:56.603591794 +0100
@@ -1,0 +2,18 @@
+Sat Dec 30 13:50:09 UTC 2017 - mar...@gmx.de
+
+- Update to version 4.0.13
+  * Language Translation
+  * cw t/r - doc update
+  * Spectrum Analyzer
+  * TS990 tune feedback
+  * OS X CW
+  * FSQ/IFKP clear tx panel
+  * deadman
+  * Image transmit
+  * flrig race
+  * CW Sweepstakes
+  * CW no tx char
+  * timeops
+- Run spec-cleaner
+
+---

Old:

  fldigi-4.0.12.tar.gz

New:

  fldigi-4.0.13.tar.gz



Other differences:
--
++ fldigi.spec ++
--- /var/tmp/diff_new_pack.I1cA1Z/_old  2017-12-31 19:32:57.527283638 +0100
+++ /var/tmp/diff_new_pack.I1cA1Z/_new  2017-12-31 19:32:57.543278302 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   fldigi
-Version:4.0.12
+Version:4.0.13
 Release:0
 Summary:Digital modem program (hamradio)
 License:GPL-3.0
@@ -39,7 +39,6 @@
 BuildRequires:  pkgconfig(portaudio-2.0)
 BuildRequires:  pkgconfig(samplerate)
 BuildRequires:  pkgconfig(sndfile)
-BuildRequires:  pkgconfig(x11)
 Requires(post): update-desktop-files
 Requires(postun): update-desktop-files
 Recommends: %{name}-lang

++ fldigi-4.0.12.tar.gz -> fldigi-4.0.13.tar.gz ++
 88968 lines of diff (skipped)




commit libtorrent-rasterbar for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package libtorrent-rasterbar for 
openSUSE:Factory checked in at 2017-12-31 19:32:26

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


Package is "libtorrent-rasterbar"

Sun Dec 31 19:32:26 2017 rev:52 rq:560762 version:1.1.5

Changes:

--- 
/work/SRC/openSUSE:Factory/libtorrent-rasterbar/libtorrent-rasterbar.changes
2017-10-23 16:52:33.406748824 +0200
+++ 
/work/SRC/openSUSE:Factory/.libtorrent-rasterbar.new/libtorrent-rasterbar.changes
   2017-12-31 19:32:27.789204670 +0100
@@ -1,0 +2,6 @@
+Sat Dec 30 13:59:54 UTC 2017 - wba...@tmo.at
+
+- Add fix-build-against-boost-1.66.patch to fix build with the
+  latest boost in Factory
+
+---

New:

  fix-build-against-boost-1.66.patch



Other differences:
--
++ libtorrent-rasterbar.spec ++
--- /var/tmp/diff_new_pack.oy5Rsc/_old  2017-12-31 19:32:28.492969884 +0100
+++ /var/tmp/diff_new_pack.oy5Rsc/_new  2017-12-31 19:32:28.492969884 +0100
@@ -29,6 +29,8 @@
 Group:  Development/Libraries/C and C++
 Url:http://libtorrent.org/
 Source: 
https://github.com/arvidn/%{_name}/releases/download/%{_name}-%{_version}/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM fix-build-against-boost-1.66.patch -- fix build with 
latest boost in Factory
+Patch:  fix-build-against-boost-1.66.patch
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
 BuildRequires:  python-devel
@@ -137,6 +139,7 @@
 
 %prep
 %setup -q
+%patch -p1
 
 %build
 export CFLAGS="%{optflags} -fno-strict-aliasing"

++ fix-build-against-boost-1.66.patch ++
>From d1a63cd781e79e1e3792a258c0bc7f9455f2272f Mon Sep 17 00:00:00 2001
From: arvidn 
Date: Thu, 14 Dec 2017 01:37:27 +0100
Subject: [PATCH] fix build against boost-1.66, specifically the boost.asio
 changes

diff --git a/include/libtorrent/proxy_base.hpp 
b/include/libtorrent/proxy_base.hpp
index 00246af76e..7e8ab32930 100644
--- a/include/libtorrent/proxy_base.hpp
+++ b/include/libtorrent/proxy_base.hpp
@@ -66,6 +66,11 @@ class proxy_base : boost::noncopyable
m_port = port;
}
 
+#if BOOST_VERSION >= 106600
+   typedef tcp::socket::executor_type executor_type;
+   executor_type get_executor() { return m_sock.get_executor(); }
+#endif
+
template 
void async_read_some(Mutable_Buffers const& buffers, Handler const& 
handler)
{
@@ -122,6 +127,18 @@ class proxy_base : boost::noncopyable
m_sock.async_write_some(buffers, handler);
}
 
+#ifndef BOOST_NO_EXCEPTIONS
+   void non_blocking(bool b)
+   {
+   m_sock.non_blocking(b);
+   }
+#endif
+
+   error_code non_blocking(bool b, error_code& ec)
+   {
+   return m_sock.non_blocking(b, ec);
+   }
+
 #ifndef BOOST_NO_EXCEPTIONS
template 
void set_option(SettableSocketOption const& opt)
diff --git a/include/libtorrent/socket_type.hpp 
b/include/libtorrent/socket_type.hpp
index 0b58159715..884a86e684 100644
--- a/include/libtorrent/socket_type.hpp
+++ b/include/libtorrent/socket_type.hpp
@@ -267,6 +267,14 @@ namespace libtorrent
error_code set_option(SettableSocketOption const& opt, 
error_code& ec)
{ TORRENT_SOCKTYPE_FORWARD_RET(set_option(opt, ec), ec) }
 
+   void non_blocking(bool b, error_code& ec)
+   { TORRENT_SOCKTYPE_FORWARD(non_blocking(b, ec)) }
+
+#ifndef BOOST_NO_EXCEPTIONS
+   void non_blocking(bool b)
+   { TORRENT_SOCKTYPE_FORWARD(non_blocking(b)) }
+#endif
+
 #ifndef BOOST_NO_EXCEPTIONS
template 
void get_option(GettableSocketOption& opt)
diff --git a/include/libtorrent/ssl_stream.hpp 
b/include/libtorrent/ssl_stream.hpp
index 48fe111289..a18416c723 100644
--- a/include/libtorrent/ssl_stream.hpp
+++ b/include/libtorrent/ssl_stream.hpp
@@ -85,6 +85,10 @@ class ssl_stream
typedef typename Stream::lowest_layer_type lowest_layer_type;
typedef typename Stream::endpoint_type endpoint_type;
typedef typename Stream::protocol_type protocol_type;
+#if BOOST_VERSION >= 106600
+   typedef typename sock_type::executor_type executor_type;
+   executor_type get_executor() { return m_sock.get_executor(); }
+#endif
 
void set_host_name(std::string name)
{
@@ -204,6 +208,13 @@ class ssl_stream
m_sock.next_layer().io_control(ioc, ec);
}
 
+#ifndef BOOST_NO_EXCEPTIONS
+   void non_blocking(bool b) { m_sock.next_layer().non_blocking(b); }
+#endif
+
+   error_code non_blocking(bool b, error_code& ec)
+ 

commit xfce4-branding-openSUSE for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package xfce4-branding-openSUSE for 
openSUSE:Factory checked in at 2017-12-31 19:32:23

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


Package is "xfce4-branding-openSUSE"

Sun Dec 31 19:32:23 2017 rev:63 rq:560759 version:4.12.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xfce4-branding-openSUSE/xfce4-branding-openSUSE.changes
  2017-10-17 01:54:21.333270527 +0200
+++ 
/work/SRC/openSUSE:Factory/.xfce4-branding-openSUSE.new/xfce4-branding-openSUSE.changes
 2017-12-31 19:32:26.581607541 +0100
@@ -1,0 +2,11 @@
+Thu Dec 28 08:52:26 UTC 2017 - florian.koch1...@gmail.com
+
+- use adwaita-icon-theme instead of gnome-icon-theme 
+  as fallback icon theme 
+  The reasons for this change are that Upstream gnome no 
+  longer uses gnome-icon-theme, and to save space on te Thumbleweed 
+  rescue CD, requested by DimStar
+  https://lists.opensuse.org/opensuse-xfce/2017-05/msg0.html
+- fix /etc/xfce_defaults.conf not declared as %conf
+
+---



Other differences:
--
++ xfce4-branding-openSUSE.spec ++
--- /var/tmp/diff_new_pack.KDFOaX/_old  2017-12-31 19:32:27.165412776 +0100
+++ /var/tmp/diff_new_pack.KDFOaX/_new  2017-12-31 19:32:27.169411442 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xfce4-branding-openSUSE
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -74,7 +74,7 @@
 Summary:openSUSE Xfce Default Icon Theme
 License:CC-BY-SA-3.0 and GPL-2.0+
 Group:  System/GUI/XFCE
-Requires:   gnome-icon-theme
+Requires:   adwaita-icon-theme
 
 %description -n openSUSE-xfce-icon-theme
 This is the openSUSE Xfce Default Icon Theme.
@@ -188,8 +188,8 @@
 Group:  System/GUI/XFCE
 Conflicts:  otherproviders(exo-branding)
 Conflicts:  otherproviders(%{libexo_libname}-branding)
-Provides:   exo-branding = %{exo_version}
 Provides:   %{libexo_libname}-branding-openSUSE  = %{version}
+Provides:   exo-branding = %{exo_version}
 Obsoletes:  %{libexo_libname}-branding-openSUSE <= %{version}
 Supplements:packageand(%{libexo_libname}:branding-openSUSE)
 Supplements:packageand(libexo-2-0:branding-openSUSE)
@@ -315,7 +315,7 @@
 %dir %{_sysconfdir}/xdg/xfce4/xfconf
 %dir %{_sysconfdir}/xdg/xfce4/xfconf/xfce-perchannel-xml
 %config %{_sysconfdir}/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml
-%{_sysconfdir}/xfce_defaults.conf
+%config %{_sysconfdir}/xfce_defaults.conf
 %dir %{_datadir}/xfce
 %dir %{_datadir}/xfce/applications
 %{_datadir}/xfce/applications/defaults.list

++ openSUSE-xfce-icon-theme.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openSUSE-xfce-icon-theme/openSUSE-Xfce/index.theme 
new/openSUSE-xfce-icon-theme/openSUSE-Xfce/index.theme
--- old/openSUSE-xfce-icon-theme/openSUSE-Xfce/index.theme  2013-02-19 
11:09:59.433875172 +0100
+++ new/openSUSE-xfce-icon-theme/openSUSE-Xfce/index.theme  2017-12-28 
09:30:34.426073189 +0100
@@ -1,7 +1,7 @@
 [Icon Theme]
 Name=openSUSE-Xfce
 Comment=openSUSE Xfce Default Icon Theme
-Inherits=gnome
+Inherits=adwaita
 Example=folder
 
 
Directories=16x16/apps,16x16/actions,22x22/apps,22x22/actions,24x24/apps,24x24/actions,32x32/apps,32x32/actions,48x48/apps,48x48/actions,64x64/apps,72x72/apps,96x96/apps,128x128/apps,256x256/apps,scalable/apps,scalable/actions




commit xfce4-session for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package xfce4-session for openSUSE:Factory 
checked in at 2017-12-31 19:32:18

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


Package is "xfce4-session"

Sun Dec 31 19:32:18 2017 rev:78 rq:560753 version:4.12.1

Changes:

--- /work/SRC/openSUSE:Factory/xfce4-session/xfce4-session.changes  
2017-12-19 10:59:31.634338757 +0100
+++ /work/SRC/openSUSE:Factory/.xfce4-session.new/xfce4-session.changes 
2017-12-31 19:32:22.011132316 +0100
@@ -1,0 +2,6 @@
+Sat Dec 30 13:15:51 UTC 2017 - seife+...@b1-systems.com
+
+- add xfce4-session-systemd-user-addons.patch to fix systemd-user
+  services by exporting XAUTHLOCALHOSTNAME
+
+---

New:

  xfce4-session-systemd-user-addons.patch



Other differences:
--
++ xfce4-session.spec ++
--- /var/tmp/diff_new_pack.WVx5Xb/_old  2017-12-31 19:32:22.802868182 +0100
+++ /var/tmp/diff_new_pack.WVx5Xb/_new  2017-12-31 19:32:22.802868182 +0100
@@ -32,6 +32,8 @@
 Patch1: xfce4-session-adapt-session-scripts.patch
 # PATCH-FIX-UPSTREAM xfce4-session-Make-verbose-logging-conditional.patch 
boo#999676
 Patch2: xfce4-session-Make-verbose-logging-conditional.patch
+# PATCH-FIX-OPENSUSE xfce4-session-systemd-user-addons.patch 
seife+...@b1-systems.com -- fix systemd-user session settings
+Patch3: xfce4-session-systemd-user-addons.patch
 BuildRequires:  iceauth
 BuildRequires:  intltool
 BuildRequires:  update-desktop-files
@@ -117,6 +119,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 xdt-autogen

++ xfce4-session-systemd-user-addons.patch ++
Set XAUTHLOCALHOSTNAME in systemd user session, or starting of systemd-activated
services will fail.
Observed on openSUSE-Tumbleweed-Rescue-CD-x86_64-Snapshot20171213-Media.iso

Index: b/scripts/xinitrc.in
===
--- a/scripts/xinitrc.in
+++ b/scripts/xinitrc.in
@@ -86,6 +86,10 @@ cat /dev/null $XRESOURCES | xrdb -nocpp
 # load local modmap
 test -r $HOME/.Xmodmap && xmodmap $HOME/.Xmodmap
 
+# if XAUTHLOCALHOSTNAME is not set in systemd user session, starting of 
xfce4-notifyd etc. will fail
+if systemctl --user list-jobs >/dev/null 2>&1; then # user session is running
+  dbus-update-activation-environment --systemd 
XAUTHLOCALHOSTNAME=$XAUTHLOCALHOSTNAME
+fi
 # check if we start xfce4-session with ck-launch-session. this is only
 # required for starting from a console, not a login manager
 if test "x$XFCE4_SESSION_WITH_CK" = "x1"; then
Index: b/scripts/xinitrc.in.in
===
--- a/scripts/xinitrc.in.in
+++ b/scripts/xinitrc.in.in
@@ -86,6 +86,10 @@ cat /dev/null $XRESOURCES | xrdb -nocpp
 # load local modmap
 test -r $HOME/.Xmodmap && xmodmap $HOME/.Xmodmap
 
+# if XAUTHLOCALHOSTNAME is not set in systemd user session, starting of 
xfce4-notifyd etc. will fail
+if systemctl --user list-jobs >/dev/null 2>&1; then # user session is running
+  dbus-update-activation-environment --systemd 
XAUTHLOCALHOSTNAME=$XAUTHLOCALHOSTNAME
+fi
 # check if we start xfce4-session with ck-launch-session. this is only
 # required for starting from a console, not a login manager
 if test "x$XFCE4_SESSION_WITH_CK" = "x1"; then



commit xfce4-panel-plugin-whiskermenu for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package xfce4-panel-plugin-whiskermenu for 
openSUSE:Factory checked in at 2017-12-31 19:32:21

Comparing /work/SRC/openSUSE:Factory/xfce4-panel-plugin-whiskermenu (Old)
 and  /work/SRC/openSUSE:Factory/.xfce4-panel-plugin-whiskermenu.new (New)


Package is "xfce4-panel-plugin-whiskermenu"

Sun Dec 31 19:32:21 2017 rev:24 rq:560757 version:2.1.5

Changes:

--- 
/work/SRC/openSUSE:Factory/xfce4-panel-plugin-whiskermenu/xfce4-panel-plugin-whiskermenu.changes
2017-11-20 17:06:59.590315201 +0100
+++ 
/work/SRC/openSUSE:Factory/.xfce4-panel-plugin-whiskermenu.new/xfce4-panel-plugin-whiskermenu.changes
   2017-12-31 19:32:23.558616054 +0100
@@ -1,0 +2,7 @@
+Sat Dec 30 13:43:24 UTC 2017 - seife+...@b1-systems.com
+
+- update to 2.1.5:
+  - Fix class/struct typo. (bxo#14001)
+  - Translation updates
+
+---

Old:

  xfce4-whiskermenu-plugin-2.1.4.tar.bz2

New:

  xfce4-whiskermenu-plugin-2.1.5.tar.bz2



Other differences:
--
++ xfce4-panel-plugin-whiskermenu.spec ++
--- /var/tmp/diff_new_pack.iIrht9/_old  2017-12-31 19:32:24.122427958 +0100
+++ /var/tmp/diff_new_pack.iIrht9/_new  2017-12-31 19:32:24.126426624 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   xfce4-panel-plugin-whiskermenu
-Version:2.1.4
+Version:2.1.5
 Release:0
 Summary:Alternate Xfce Menu
 License:GPL-2.0+

++ xfce4-whiskermenu-plugin-2.1.4.tar.bz2 -> 
xfce4-whiskermenu-plugin-2.1.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.1.4/CMakeLists.txt 
new/xfce4-whiskermenu-plugin-2.1.5/CMakeLists.txt
--- old/xfce4-whiskermenu-plugin-2.1.4/CMakeLists.txt   2017-11-13 
19:19:23.0 +0100
+++ new/xfce4-whiskermenu-plugin-2.1.5/CMakeLists.txt   2017-12-28 
19:29:46.0 +0100
@@ -5,7 +5,7 @@
 # version number
 set(whiskermenu_version_major "2")
 set(whiskermenu_version_minor "1")
-set(whiskermenu_version_micro "4")
+set(whiskermenu_version_micro "5")
 set(whiskermenu_version_tag "")
 set(whiskermenu_version 
"${whiskermenu_version_major}.${whiskermenu_version_minor}.${whiskermenu_version_micro}")
 if(${whiskermenu_version_tag} MATCHES "git")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.1.4/ChangeLog 
new/xfce4-whiskermenu-plugin-2.1.5/ChangeLog
--- old/xfce4-whiskermenu-plugin-2.1.4/ChangeLog2017-11-13 
19:19:33.0 +0100
+++ new/xfce4-whiskermenu-plugin-2.1.5/ChangeLog2017-12-28 
19:30:10.0 +0100
@@ -1,3 +1,45 @@
+commit 4e9f2cdfee78b68bf9ad0a373675de2a3156eb34
+Author: Graeme Gott 
+Date:   2017-12-28
+
+Bump version number.
+
+commit 411940a990c1ee41ac4e6371b36ac1d44203f5c8
+Author: Graeme Gott 
+Date:   2017-12-24
+
+I18n: Update translation ro (100%).
+
+commit ebd05f96eeb76bae2a1cc670475d7d721e524eb2
+Author: Graeme Gott 
+Date:   2017-12-24
+
+I18n: Update translation ms (100%).
+
+commit 33f3820deee69408daee547256153e308b3f373e
+Author: Graeme Gott 
+Date:   2017-12-24
+
+I18n: Update translation ja (100%).
+
+commit fa98f9ea86793e7012d753a09cb0ad4570ff09e2
+Author: Graeme Gott 
+Date:   2017-12-24
+
+I18n: Update translation da (100%).
+
+commit ede867021eaf5c744a13b66353f3d4376e0b747b
+Author: Graeme Gott 
+Date:   2017-12-24
+
+I18n: Update translation am (100%).
+
+commit 53098dcfbf23335d5e996cf6e9de35b5eaa047b2
+Author: Olivier Duchateau 
+Date:   2017-11-13
+
+Fix typo. (bug #14001)
+
 commit 85bef962cce108eb2dbe566a18b9a7ad215f9d59
 Author: Graeme Gott 
 Date:   2017-11-13
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.1.4/NEWS 
new/xfce4-whiskermenu-plugin-2.1.5/NEWS
--- old/xfce4-whiskermenu-plugin-2.1.4/NEWS 2017-11-13 19:19:06.0 
+0100
+++ new/xfce4-whiskermenu-plugin-2.1.5/NEWS 2017-12-28 19:29:36.0 
+0100
@@ -1,3 +1,8 @@
+2.1.5
+=
+- Fix typo. (bug #14001)
+- Translation updates: Amharic, Danish, Japanese, Malay, Romanian.
+
 2.1.4
 =
 - Fix excessive padding on panel button. (bug #13611)
@@ -58,6 +63,11 @@
   Dutch, French, Hebrew, Hungarian, Lithuanian, Polish, Slovak,
   Slovenian, Spanish.
 
+1.7.5
+=
+- Fix typo. (bug #14001)
+- Translation updates: Amharic, Danish, Japanese, Malay, Romanian.
+
 1.7.4
 =
 - Translation updates: Catalan (Valencian), Danish, Hebrew, Hungarian,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xfce4-whiskermenu-plugin-2.1.4/panel-plugin/launcher.h 
new/xfce4-whiskermenu-plugin-2.1.5/panel-plugin

commit gnome-todo for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package gnome-todo for openSUSE:Factory 
checked in at 2017-12-31 19:32:15

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


Package is "gnome-todo"

Sun Dec 31 19:32:15 2017 rev:13 rq:560743 version:3.26.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-todo/gnome-todo.changes2017-11-03 
16:30:19.428257523 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-todo.new/gnome-todo.changes   
2017-12-31 19:32:18.104435645 +0100
@@ -1,0 +2,8 @@
+Fri Dec 22 22:42:32 UTC 2017 - zai...@opensuse.org
+
+- Add gnome-todo-nb-translations.patch: Update Norwegian bokmål
+  translations.
+- Enable build of api docs again, fixed upstream in 3.26.2 release.
+- Clean up spec, use modern macros.
+
+---

New:

  gnome-todo-nb-translations.patch



Other differences:
--
++ gnome-todo.spec ++
--- /var/tmp/diff_new_pack.2NsXqs/_old  2017-12-31 19:32:19.088107477 +0100
+++ /var/tmp/diff_new_pack.2NsXqs/_new  2017-12-31 19:32:19.092106144 +0100
@@ -25,9 +25,11 @@
 Group:  Productivity/Text/Editors
 Url:https://git.gnome.org/browse/gnome-todo/
 Source0:
http://download.gnome.org/sources/gnome-todo/3.26/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gnome-todo-nb-translations.patch zai...@opensuse.org -- 
Update Norwegian bokmål translations
+Patch0: gnome-todo-nb-translations.patch
+
 BuildRequires:  gobject-introspection-devel >= 1.42.0
-# Temp disable, upstream broke docs...
-#BuildRequires:  gtk-doc
+BuildRequires:  gtk-doc
 BuildRequires:  meson
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gio-2.0) >= 2.43.4
@@ -43,7 +45,6 @@
 BuildRequires:  pkgconfig(libpeas-1.0) >= 1.17
 BuildRequires:  pkgconfig(rest-0.7)
 Recommends: %{name}-lang
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 GNOME To Do is a application to manage your personal tasks. It
@@ -69,13 +70,13 @@
 GNOME desktop environment.
 
 %lang_package
+
 %prep
-%setup -q
+%autosetup -p1
 
 %build
-# Temp disable 
-#  -Denable-gtk-doc=true \
 %meson \
+   -Denable-gtk-doc=true \
%{nil}
 %meson_build
 
@@ -86,8 +87,8 @@
 %find_lang %{name} %{?no_lang_C}
 
 %files
-%defattr(-,root,root)
-%doc README COPYING AUTHORS NEWS
+%license COPYING
+%doc NEWS
 %{_bindir}/%{name}
 %dir %{_datadir}/metainfo
 %{_datadir}/metainfo/org.gnome.Todo.appdata.xml
@@ -105,13 +106,11 @@
 %files lang -f %{name}.lang
 
 %files -n typelib-1_0-Gtd-1_0
-%defattr(-,root,root)
 %{_libdir}/girepository-1.0/Gtd-1.0.typelib
 
 %files devel
-%defattr(-,root,root)
-# Temp disable, upstream broke docs
-#%%doc %%{_datadir}/gtk-doc/html/gnome-todo/
+%doc README AUTHORS
+%doc %{_datadir}/gtk-doc/html/gnome-todo/
 %{_datadir}/gir-1.0/Gtd-1.0.gir
 %{_includedir}/%{name}/
 %{_libdir}/pkgconfig/gnome-todo.pc

++ gnome-todo-nb-translations.patch ++
>From e5e2f64a429c2332d89edf4c9a0a0cce8970d4a6 Mon Sep 17 00:00:00 2001
From: Kjartan Maraas 
Date: Mon, 6 Nov 2017 08:55:18 +0100
Subject: [PATCH] Updated Norwegian bokmål translation.

---
 po/nb.po | 117 
+++--
 1 file changed, 71 insertions(+), 46 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index 8987b6f..b64e028 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,9 +7,9 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: gnome-todo 3.26.x\n"
-"Report-Msgid-Bugs-To: 
https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-todo&keywords=I18N+L10N&component=General\n";
-"POT-Creation-Date: 2017-06-08 19:52+\n"
-"PO-Revision-Date: 2017-06-12 20:40+0200\n"
+"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-todo/issues\n";
+"POT-Creation-Date: 2017-10-26 14:33+\n"
+"PO-Revision-Date: 2017-11-06 00:16+0100\n"
 "Last-Translator: Kjartan Maraas \n"
 "Language-Team: Norwegian bokmål \n"
 "Language: Norsk bokmål\n"
@@ -20,7 +20,7 @@ msgstr ""
 
 #: data/appdata/org.gnome.Todo.appdata.xml.in:7
 #: data/org.gnome.Todo.desktop.in:3 src/gtd-application.c:152
-#: src/gtd-application.c:178 src/gtd-window.c:950
+#: src/gtd-application.c:178 src/gtd-window.c:952 src/gtd-window.c:987
 msgid "To Do"
 msgstr "Oppgaver"
 
@@ -122,7 +122,9 @@ msgstr "Første kjøring av GNOME oppgaveliste"
 #: data/org.gnome.todo.gschema.xml:22
 msgid ""
 "Whether it’s the first run of GNOME To Do (to run the initial setup) or not"
-msgstr "Hvorvidt dette er første gang GNOME oppgaver kjøres (for å kjøre 
initielt oppsett)"
+msgstr ""
+"Hvorvidt dette er første gang GNOME oppgaver kjøres (for å kjøre initielt "
+"oppsett)"
 
 #: data/org.gnome.todo.gschema.xml:26

commit deepin-qt-dbus-factory for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package deepin-qt-dbus-factory for 
openSUSE:Factory checked in at 2017-12-31 19:32:11

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


Package is "deepin-qt-dbus-factory"

Sun Dec 31 19:32:11 2017 rev:1 rq:560212 version:0.4.2

Changes:

New Changes file:

--- /dev/null   2017-12-26 18:16:24.364283585 +0100
+++ 
/work/SRC/openSUSE:Factory/.deepin-qt-dbus-factory.new/deepin-qt-dbus-factory.changes
   2017-12-31 19:32:14.717565552 +0100
@@ -0,0 +1,17 @@
+---
+Wed Dec 27 10:25:38 UTC 2017 - jeng...@inai.de
+
+- Trim filler wording from description. Fix RPM group.
+
+---
+Wed Nov 29 08:21:27 UTC 2017 - hillw...@opensuse.org
+
+- Update to 0.4.2 
+  * update grub theme xml
+  * Add imageblur interface
+  * Update interface
+
+---
+Fri Sep 29 08:12:32 UTC 2017 - hillw...@opensuse.org
+
+- Initial package. 

New:

  dde-qt-dbus-factory-0.4.2.tar.gz
  deepin-qt-dbus-factory.changes
  deepin-qt-dbus-factory.spec



Other differences:
--
++ deepin-qt-dbus-factory.spec ++
#
# spec file for package deepin-qt-dbus-factory
#
# Copyright (c) 2017 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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

%define libver 1
%define _name  dde-qt-dbus-factory

Name:   deepin-qt-dbus-factory
Version:0.4.2
Release:0
License:GPL-3.0
Summary:A repository storing auto-generated Qt5 D-Bus code
Url:https://github.com/linuxdeepin/dde-qt-dbus-factory
Group:  Development/Libraries/C and C++
Source: 
https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/%{version}/%{_name}-%{version}.tar.gz
BuildRequires:  python-devel
BuildRequires:  python-setuptools
BuildRequires:  gcc-c++
BuildRequires:  libqt5-qtbase-devel
BuildRequires:  libqt5-qtdeclarative-devel
BuildRequires:  libqt5-qttools-devel
BuildRequires:  libqt5-qtbase-private-headers-devel
BuildRequires:  pkgconfig(Qt5X11Extras)
BuildRequires:  pkgconfig(Qt5WebKit)
BuildRequires:  pkgconfig(Qt5Core)
BuildRequires:  pkgconfig(Qt5Qml)
BuildRequires:  pkgconfig(Qt5Widgets)
BuildRequires:  pkgconfig(Qt5Gui)
BuildRequires:  pkgconfig(Qt5Network)
BuildRequires:  pkgconfig(QtDBus)
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
de-qt-dbus-factory is a repository storing auto-generated Qt5 D-Bus
code.

%package -n libdframeworkdbus%{libver}
Group:  System/Libraries
Summary:A repository storing auto-generated Qt5 D-Bus code

%description -n libdframeworkdbus%{libver}
de-qt-dbus-factory is a repository storing auto-generated Qt5 D-Bus
code. This can help DDE developers not having to copy code from other
projects or re-generate code for the same D-Bus interface for new
projects.

%package -n libdframeworkdbus-devel
Group:  Development/Libraries/C and C++
Summary:Development tools for libdframeworkdbus - deepin-qt-dbus-factory
Requires:   libdframeworkdbus%{libver} = %{version}

%description -n libdframeworkdbus-devel
de-qt-dbus-factory is a repository storing auto-generated Qt5 D-Bus
code.

The libdbusextended-devel package contains the header files and developer
docs for libdbusextended(deepin-qt-dbus-factory).

%prep
%setup -q -n %{_name}-%{version}

%build
%qmake5 DEFINES+=QT_NO_DEBUG_OUTPUT \
PREFIX=%{_prefix} \
LIB_INSTALL_DIR=%{_libdir}
make %{?_smp_mflags}

%install
%qmake5_install

%post -n libdframeworkdbus%{libver} -p /sbin/ldconfig

%postun -n libdframeworkdbus%{libver} -p /sbin/ldconfig

%files -n libdframeworkdbus%{libver}
%doc README LICENSE
%defattr(-,root,root)
%{_libdir}/libdframeworkdbus.so.*

%files -n libdframeworkdbus-devel
%defattr(-,root,root)
%{_includedir}/libdframeworkdbus-*
%{_libdir}/libdframeworkdbus.so
%{_libdir}/pkgconfig/dframeworkdbus.pc

%changelog



commit kernel-source for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2017-12-31 19:29:30

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


Package is "kernel-source"

Sun Dec 31 19:29:30 2017 rev:397 rq:559853 version:4.14.9

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/dtb-aarch64.changes
2017-12-23 12:19:16.652194308 +0100
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/dtb-aarch64.changes   
2017-12-31 19:29:39.769258654 +0100
@@ -1,0 +2,303 @@
+Mon Dec 25 16:42:48 CET 2017 - jsl...@suse.cz
+
+- Linux 4.14.9 (bnc#1012628).
+- x86/asm: Remove unnecessary \n\t in front of CC_SET() from
+  asm templates (bnc#1012628).
+- ACPI / APEI: adjust a local variable type in
+  ghes_ioremap_pfn_irq() (bnc#1012628).
+- x86/fpu/debug: Remove unused 'x86_fpu_state' and
+  'x86_fpu_deactivate_state' tracepoints (bnc#1012628).
+- bitops: Add clear/set_bit32() to linux/bitops.h (bnc#1012628).
+- x86/cpuid: Add generic table for CPUID dependencies
+  (bnc#1012628).
+- x86/fpu: Parse clearcpuid= as early XSAVE argument
+  (bnc#1012628).
+- x86/fpu: Make XSAVE check the base CPUID features before
+  enabling (bnc#1012628).
+- x86/fpu: Remove the explicit clearing of XSAVE dependent
+  features (bnc#1012628).
+- x86/platform/UV: Convert timers to use timer_setup()
+  (bnc#1012628).
+- x86/cpuid: Prevent out of bound access in do_clear_cpu_cap()
+  (bnc#1012628).
+- mm/sparsemem: Allocate mem_section at runtime for
+  CONFIG_SPARSEMEM_EXTREME=y (bnc#1012628).
+- x86/kasan: Use the same shadow offset for 4- and 5-level paging
+  (bnc#1012628).
+- x86/xen: Provide pre-built page tables only for CONFIG_XEN_PV=y
+  and CONFIG_XEN_PVH=y (bnc#1012628).
+- x86/xen: Drop 5-level paging support code from the XEN_PV code
+  (bnc#1012628).
+- ACPI / APEI: remove the unused dead-code for SEA/NMI
+  notification type (bnc#1012628).
+- x86/asm: Don't use the confusing '.ifeq' directive
+  (bnc#1012628).
+- x86/build: Beautify build log of syscall headers (bnc#1012628).
+- x86/mm/64: Rename the register_page_bootmem_memmap() 'size'
+  parameter to 'nr_pages' (bnc#1012628).
+- x86/cpufeatures: Enable new SSE/AVX/AVX512 CPU features
+  (bnc#1012628).
+- x86/mm: Relocate page fault error codes to traps.h
+  (bnc#1012628).
+- x86/boot: Relocate definition of the initial state of CR0
+  (bnc#1012628).
+- ptrace,x86: Make user_64bit_mode() available to 32-bit builds
+  (bnc#1012628).
+- x86/entry/64: Remove the restore_c_regs_and_iret label
+  (bnc#1012628).
+- x86/entry/64: Split the IRET-to-user and IRET-to-kernel paths
+  (bnc#1012628).
+- x86/entry/64: Move SWAPGS into the common IRET-to-usermode path
+  (bnc#1012628).
+- x86/entry/64: Simplify reg restore code in the standard IRET
+  paths (bnc#1012628).
+- x86/entry/64: Shrink paranoid_exit_restore and make labels local
+  (bnc#1012628).
+- x86/entry/64: Use pop instead of movq in
+  syscall_return_via_sysret (bnc#1012628).
+- x86/entry/64: Merge the fast and slow SYSRET paths
+  (bnc#1012628).
+- x86/entry/64: Use POP instead of MOV to restore regs on NMI
+  return (bnc#1012628).
+- x86/entry/64: Remove the RESTORE_..._REGS infrastructure
+  (bnc#1012628).
+- xen, x86/entry/64: Add xen NMI trap entry (bnc#1012628).
+- x86/entry/64: De-Xen-ify our NMI code (bnc#1012628).
+- x86/entry/32: Pull the MSR_IA32_SYSENTER_CS update code out
+  of native_load_sp0() (bnc#1012628).
+- x86/entry/64: Pass SP0 directly to load_sp0() (bnc#1012628).
+- x86/entry: Add task_top_of_stack() to find the top of a task's
+  stack (bnc#1012628).
+- x86/xen/64, x86/entry/64: Clean up SP code in
+  cpu_initialize_context() (bnc#1012628).
+- x86/entry/64: Stop initializing TSS.sp0 at boot (bnc#1012628).
+- x86/entry/64: Remove all remaining direct thread_struct::sp0
+  reads (bnc#1012628).
+- x86/entry/32: Fix cpu_current_top_of_stack initialization at
+  boot (bnc#1012628).
+- x86/entry/64: Remove thread_struct::sp0 (bnc#1012628).
+- x86/traps: Use a new on_thread_stack() helper to clean up an
+  assertion (bnc#1012628).
+- x86/entry/64: Shorten TEST instructions (bnc#1012628).
+- x86/cpuid: Replace set/clear_bit32() (bnc#1012628).
+- bitops: Revert cbe96375025e ("bitops: Add clear/set_bit32()
+  to linux/bitops.h") (bnc#1012628).
+- x86/mm: Define _PAGE_TABLE using _KERNPG_TABLE (bnc#1012628).
+- x86/cpufeatures: Re-tabulate the X86_FEATURE definitions
+  (bnc#1012628).
+- x86/cpufeatures: Fix various details in the feature definitions
+  (bnc#1012628).
+- selftests/x86/ldt_gdt: Add infrastructure to test
+  set_thread_area() (bnc#1012628).
+- selftests/x86/ldt_gdt: Run most existing LDT test cases against
+  the GDT as well (bnc#1012628).
+- ACPI / APEI: Replace ioremap_page_range() with fixmap
+  (bnc#1012628).
+- x86/virt, x86/platf

commit systemd-presets-branding-openSUSE for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package systemd-presets-branding-openSUSE 
for openSUSE:Factory checked in at 2017-12-31 19:29:04

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


Package is "systemd-presets-branding-openSUSE"

Sun Dec 31 19:29:04 2017 rev:51 rq:560522 version:12.2

Changes:

--- 
/work/SRC/openSUSE:Factory/systemd-presets-branding-openSUSE/systemd-presets-branding-openSUSE.changes
  2017-12-21 11:21:46.833675409 +0100
+++ 
/work/SRC/openSUSE:Factory/.systemd-presets-branding-openSUSE.new/systemd-presets-branding-openSUSE.changes
 2017-12-31 19:29:06.656305680 +0100
@@ -1,0 +2,5 @@
+Fri Dec 29 07:53:26 UTC 2017 - z...@suse.com
+
+- Enable lvm2-lvmpolld.socket by default (bsc#1074211) 
+
+---



Other differences:
--
++ default-SUSE.preset ++
--- /var/tmp/diff_new_pack.0WKBhE/_old  2017-12-31 19:29:07.340077562 +0100
+++ /var/tmp/diff_new_pack.0WKBhE/_new  2017-12-31 19:29:07.340077562 +0100
@@ -25,6 +25,7 @@
 enable logrotate.timer
 enable lvm2-lvmetad.socket
 enable lvm2-monitor.service
+enable lvm2-lvmpolld.socket
 enable mcelog.service
 enable ModemManager.service
 enable nscd.service




commit libsodium for openSUSE:Factory

2017-12-31 Thread root
Hello community,

here is the log from the commit of package libsodium for openSUSE:Factory 
checked in at 2017-12-31 19:29:10

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


Package is "libsodium"

Sun Dec 31 19:29:10 2017 rev:23 rq:560537 version:1.0.16

Changes:

--- /work/SRC/openSUSE:Factory/libsodium/libsodium.changes  2017-12-16 
20:47:23.650859314 +0100
+++ /work/SRC/openSUSE:Factory/.libsodium.new/libsodium.changes 2017-12-31 
19:29:13.482028505 +0100
@@ -1,0 +2,5 @@
+Fri Dec 29 11:01:55 UTC 2017 - adam.ma...@suse.de
+
+- Enable verbose make output when building tests
+
+---



Other differences:
--
++ libsodium.spec ++
--- /var/tmp/diff_new_pack.phT564/_old  2017-12-31 19:29:14.205787047 +0100
+++ /var/tmp/diff_new_pack.phT564/_new  2017-12-31 19:29:14.209785713 +0100
@@ -72,7 +72,7 @@
 find %{buildroot} -type f -name "*.la" -delete -print
 
 %check
-make %{?_smp_mflags} check
+make %{?_smp_mflags} check V=1
 
 %post -n %{lname} -p /sbin/ldconfig