commit go1.4 for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package go1.4 for openSUSE:Factory checked 
in at 2018-03-26 16:03:28

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


Package is "go1.4"

Mon Mar 26 16:03:28 2018 rev:7 rq:590977 version:1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/go1.4/go1.4.changes  2018-02-27 
17:00:51.665748117 +0100
+++ /work/SRC/openSUSE:Factory/.go1.4.new/go1.4.changes 2018-03-26 
16:03:35.913248796 +0200
@@ -1,0 +2,6 @@
+Sun Mar 25 10:31:29 UTC 2018 - kasim...@outlook.de
+
+- Fix patch for armv6l build
+  * armv6l.patch
+
+---



Other differences:
--
++ armv6l.patch ++
--- /var/tmp/diff_new_pack.GXGJc7/_old  2018-03-26 16:03:37.961175393 +0200
+++ /var/tmp/diff_new_pack.GXGJc7/_new  2018-03-26 16:03:37.961175393 +0200
@@ -1,11 +1,11 @@
 a/src/pkg/runtime/os_linux.h   2014-08-13 05:49:43.0 +0200
-+++ b/src/pkg/runtime/os_linux.h   2014-10-17 04:02:55.791948419 +0200
-@@ -16,7 +16,7 @@
- void runtime·setitimer(int32, Itimerval*, Itimerval*);
+--- a/src/runtime/os_linux.h   2015-09-23 06:37:38.0 +0200
 b/src/runtime/os_linux.h   2018-03-25 12:07:58.098617526 +0200
+@@ -16,7 +16,7 @@ void runtime·setitimer(int32, Itimerval
  
- 
--#define   NSIG65
-+#define   NSIG64
- #define   SI_USER 0
- 
- // It's hard to tease out exactly how big a Sigset is, but
+ enum {
+   SS_DISABLE = 2,
+-  NSIG = 65,
++  NSIG = 64,
+   SI_USER = 0,
+   SIG_SETMASK = 2,
+   RLIMIT_AS = 9,




commit mono-basic for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package mono-basic for openSUSE:Factory 
checked in at 2018-03-26 16:03:08

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


Package is "mono-basic"

Mon Mar 26 16:03:08 2018 rev:33 rq:590976 version:4.6

Changes:

--- /work/SRC/openSUSE:Factory/mono-basic/mono-basic.changes2017-08-21 
11:37:40.104893871 +0200
+++ /work/SRC/openSUSE:Factory/.mono-basic.new/mono-basic.changes   
2018-03-26 16:03:24.645652655 +0200
@@ -1,0 +2,6 @@
+Fri Mar 23 21:00:00 UTC 2018 - fwdsbs.to.1...@xoxy.net
+
+- Add use-roslyn-vbc.patch:
+  * Use roslyn's vbc compiler (when available) instead of deprecated vbnc in 
order to fix build error with mono 5.10 and up
+
+---

New:

  use-roslyn-vbc.patch



Other differences:
--
++ mono-basic.spec ++
--- /var/tmp/diff_new_pack.MVRLGF/_old  2018-03-26 16:03:28.817503125 +0200
+++ /var/tmp/diff_new_pack.MVRLGF/_new  2018-03-26 16:03:28.821502982 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mono-basic
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,8 @@
 Group:  Development/Languages/Mono
 Url:https://github.com/mono/mono-basic
 Source: 
http://download.mono-project.com/sources/%{name}/%{name}-%{version}.tar.bz2
+# PATCH-FIX-OPENSUSE use roslyn vbc compiler when available to fix build error 
with mono 5.10 and up
+Patch1: use-roslyn-vbc.patch
 BuildRequires:  mono-devel
 BuildRequires:  mono-winforms
 BuildRequires:  unzip
@@ -41,6 +43,9 @@
 
 %prep
 %setup -q
+if [ -e "%{_libexecdir}/mono/4.5/vbc.exe" ]; then
+%patch1 -p1
+fi
 
 %build
 ./configure --prefix=%{_prefix}

++ use-roslyn-vbc.patch ++
diff -uprN mono-basic-4.6/build/rules.make mono-basic-4.6.new/build/rules.make
--- mono-basic-4.6/build/rules.make 2015-04-27 21:35:48.0 +0300
+++ mono-basic-4.6.new/build/rules.make 2018-03-24 01:03:30.711203718 +0300
@@ -20,7 +20,7 @@ USE_VBNC_FLAGS = $(LOCAL_VBNC_FLAGS) $(P
 USE_CFLAGS = $(LOCAL_CFLAGS) $(CFLAGS)
 CSCOMPILE = $(MCS) $(USE_MCS_FLAGS)
 CCOMPILE = $(CC) $(USE_CFLAGS)
-BOOTSTRAP_VBNC = 
MONO_PATH="$(topdir)/class/lib/bootstrap$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" 
$(RUNTIME) $(RUNTIME_FLAGS) --debug $(topdir)/class/lib/bootstrap/vbnc.exe
+BOOTSTRAP_VBNC = $(RUNTIME) $(RUNTIME_FLAGS) --debug /usr/lib/mono/4.5/vbc.exe 
/vbruntime:$(topdir)/class/lib/bootstrap/Microsoft.VisualBasic.dll
 BOOT_COMPILE = $(BOOTSTRAP_VBNC) $(USE_VBNC_FLAGS)
 VBNC = 
MONO_PATH="$(topdir)/class/lib/net_4_0$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" 
$(RUNTIME) $(RUNTIME_FLAGS) --debug $(topdir)/class/lib/net_4_0/vbnc.exe
 INSTALL = $(SHELL) $(topdir)/install-sh



commit mono-debugger for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package mono-debugger for openSUSE:Factory 
checked in at 2018-03-26 16:02:12

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


Package is "mono-debugger"

Mon Mar 26 16:02:12 2018 rev:37 rq:590975 version:2.10

Changes:

--- /work/SRC/openSUSE:Factory/mono-debugger/mono-debugger.changes  
2016-06-14 23:06:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.mono-debugger.new/mono-debugger.changes 
2018-03-26 16:03:05.338344680 +0200
@@ -1,0 +2,6 @@
+Fri Mar 23 21:00:00 UTC 2018 - fwdsbs.to.1...@xoxy.net
+
+- Add mono-510-build-fix.patch:
+  * fix build error with mono 5.10 and up
+
+---
@@ -230 +235,0 @@
-

New:

  mono-510-build-fix.patch



Other differences:
--
++ mono-debugger.spec ++
--- /var/tmp/diff_new_pack.UuAouw/_old  2018-03-26 16:03:08.73392 +0200
+++ /var/tmp/diff_new_pack.UuAouw/_new  2018-03-26 16:03:08.73392 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mono-debugger
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,6 +27,8 @@
 Source99:   mono-debugger-rpmlintrc
 Patch1: mono-debugger-glib.patch
 Patch2: mono-v4-install.patch
+# PATCH-FIX-OPENSUSE fix build error with mono 5.10 and up
+Patch3: mono-510-build-fix.patch
 ExclusiveArch:  %ix86 x86_64
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   mono-core >= 2.7
@@ -71,6 +73,7 @@
 %if 0%{?mcsver} >= 4000
 %patch2 -p1
 %endif
+%patch3 -p1
 
 %build
 %if 0%{?mcsver} >= 4000

++ mono-510-build-fix.patch ++
diff -uprN mono-debugger-2.10.old/classes/StackFrame.cs 
mono-debugger-2.10/classes/StackFrame.cs
--- mono-debugger-2.10.old/classes/StackFrame.cs2011-01-14 
01:41:31.0 +0300
+++ mono-debugger-2.10/classes/StackFrame.cs2018-03-24 01:46:11.675203718 
+0300
@@ -5,6 +5,7 @@ using System.Runtime.InteropServices;
 
 using Mono.Debugger.Languages;
 using Mono.Debugger.Backend;
+using Architecture = Mono.Debugger.Backend.Architecture;
 
 namespace Mono.Debugger
 {
diff -uprN mono-debugger-2.10.old/classes/Thread.cs 
mono-debugger-2.10/classes/Thread.cs
--- mono-debugger-2.10.old/classes/Thread.cs2011-01-14 01:41:31.0 
+0300
+++ mono-debugger-2.10/classes/Thread.cs2018-03-24 01:49:26.635203718 
+0300
@@ -12,6 +12,7 @@ using System.Runtime.Remoting.Messaging;
 
 using Mono.Debugger.Backend;
 using Mono.Debugger.Languages;
+using Architecture = Mono.Debugger.Backend.Architecture;
 
 namespace Mono.Debugger
 {



commit rubygem-rails-html-sanitizer for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package rubygem-rails-html-sanitizer for 
openSUSE:Factory checked in at 2018-03-26 16:02:03

Comparing /work/SRC/openSUSE:Factory/rubygem-rails-html-sanitizer (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-rails-html-sanitizer.new (New)


Package is "rubygem-rails-html-sanitizer"

Mon Mar 26 16:02:03 2018 rev:4 rq:590611 version:1.0.4

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-rails-html-sanitizer/rubygem-rails-html-sanitizer.changes
2016-03-01 09:43:06.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rails-html-sanitizer.new/rubygem-rails-html-sanitizer.changes
   2018-03-26 16:02:07.964401130 +0200
@@ -1,0 +2,6 @@
+Fri Mar 23 09:55:41 UTC 2018 - dk...@suse.com
+
+- updated to version 1.0.4
+  * CVE-2018-3741: XSS vulnerability
+
+---

Old:

  rails-html-sanitizer-1.0.3.gem

New:

  rails-html-sanitizer-1.0.4.gem



Other differences:
--
++ rubygem-rails-html-sanitizer.spec ++
--- /var/tmp/diff_new_pack.Led7TT/_old  2018-03-26 16:02:09.796335467 +0200
+++ /var/tmp/diff_new_pack.Led7TT/_new  2018-03-26 16:02:09.800335324 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-rails-html-sanitizer
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-rails-html-sanitizer
-Version:1.0.3
+Version:1.0.4
 Release:0
 %define mod_name rails-html-sanitizer
 %define mod_full_name %{mod_name}-%{version}
@@ -38,7 +38,7 @@
 BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
 Url:https://github.com/rails/rails-html-sanitizer
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:HTML sanitization to Rails applications (part of Rails)
 License:MIT
@@ -53,7 +53,7 @@
 
 %install
 %gem_install \
-  --doc-files="CHANGELOG.md README.md" \
+  --doc-files="CHANGELOG.md MIT-LICENSE README.md" \
   -f
 
 %gem_packages

++ rails-html-sanitizer-1.0.3.gem -> rails-html-sanitizer-1.0.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MIT-LICENSE new/MIT-LICENSE
--- old/MIT-LICENSE 1970-01-01 01:00:00.0 +0100
+++ new/MIT-LICENSE 2018-03-22 20:08:41.0 +0100
@@ -0,0 +1,23 @@
+Copyright (c) 2013-2015 Rafael Mendonça França, Kasper Timm Hansen
+
+MIT License
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-01-25 19:28:23.0 +0100
+++ new/README.md   2018-03-22 20:08:41.0 +0100
@@ -99,17 +99,15 @@
 
 ```ruby
 class CommentScrubber < Rails::Html::PermitScrubber
-  def allowed_node?(node)
-!%w(form script comment blockquote).include?(node.name)
+  def initialize
+super
+self.tags = %w( form script comment blockquote )
+self.attributes = %w( style )
   end
 
   def skip_node?(node)
 node.text?
   end
-
-  def scrub_attribute?(name)
-name == "style"
-  end
 end
 ```
 
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/html/sanitizer/version.rb 
new/lib/rails/html/sanitizer/version.rb
--- old/lib/rails/html/sanitizer/version.rb 2016-01-25 

commit kernel-source for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2018-03-26 16:00:08

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


Package is "kernel-source"

Mon Mar 26 16:00:08 2018 rev:416 rq:590894 version:4.15.13

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/dtb-aarch64.changes
2018-03-24 16:11:30.271879963 +0100
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/dtb-aarch64.changes   
2018-03-26 16:00:15.564429947 +0200
@@ -1,0 +2,242 @@
+Sun Mar 25 10:33:26 CEST 2018 - jsl...@suse.cz
+
+- Linux 4.15.13 (bnc#1012628).
+- RDMA/ucma: Don't allow join attempts for unsupported AF family
+  (bnc#1012628).
+- RDMA/ucma: Fix access to non-initialized CM_ID object
+  (bnc#1012628).
+- clk: migrate the count of orphaned clocks at init (bnc#1012628).
+- RDMA/core: Do not use invalid destination in determining port
+  reuse (bnc#1012628).
+- serial: 8250_pci: Don't fail on multiport card class
+  (bnc#1012628).
+- RDMA/vmw_pvrdma: Fix usage of user response structures in ABI
+  file (bnc#1012628).
+- IB/mlx5: Fix out-of-bounds read in create_raw_packet_qp_rq
+  (bnc#1012628).
+- IB/mlx5: Fix integer overflows in mlx5_ib_create_srq
+  (bnc#1012628).
+- dmaengine: ti-dma-crossbar: Fix event mapping for
+  TPCC_EVT_MUX_60_63 (bnc#1012628).
+- hwrng: core - Clean up RNG list when last hwrng is unregistered
+  (bnc#1012628).
+- crypto: artpec6 - set correct iv size for gcm(aes)
+  (bnc#1012628).
+- clk: si5351: Rename internal plls to avoid name collisions
+  (bnc#1012628).
+- clk: axi-clkgen: Correctly handle nocount bit in recalc_rate()
+  (bnc#1012628).
+- clk: Don't touch hardware when reparenting during registration
+  (bnc#1012628).
+- clk: at91: pmc: Wait for clocks when resuming (bnc#1012628).
+- nfsd4: permit layoutget of executable-only files (bnc#1012628).
+- ARM: dts: aspeed-evb: Add unit name to memory node
+  (bnc#1012628).
+- RDMA/ocrdma: Fix permissions for OCRDMA_RESET_STATS
+  (bnc#1012628).
+- scsi: lpfc: Fix issues connecting with nvme initiator
+  (bnc#1012628).
+- scsi: lpfc: Fix SCSI LUN discovery when SCSI and NVME enabled
+  (bnc#1012628).
+- soc: qcom: smsm: fix child-node lookup (bnc#1012628).
+- ip_gre: fix potential memory leak in erspan_rcv (bnc#1012628).
+- ip_gre: fix error path when erspan_rcv failed (bnc#1012628).
+- ip6_vti: adjust vti mtu according to mtu of lower device
+  (bnc#1012628).
+- iommu/vt-d: clean up pr_irq if request_threaded_irq fails
+  (bnc#1012628).
+- pinctrl: rockchip: enable clock when reading pin direction
+  register (bnc#1012628).
+- pinctrl: Really force states during suspend/resume
+  (bnc#1012628).
+- clk: use round rate to bail out early in set_rate (bnc#1012628).
+- dt-bindings: display: panel: Fix compatible string for Toshiba
+  LT089AC29000 (bnc#1012628).
+- clk: check ops pointer on clock register (bnc#1012628).
+- media: davinci: fix a debug printk (bnc#1012628).
+- PCI: rcar: Handle rcar_pcie_parse_request_of_pci_ranges()
+  failures (bnc#1012628).
+- PCI: endpoint: Fix find_first_zero_bit() usage (bnc#1012628).
+- PCI: designware-ep: Fix ->get_msi() to check MSI_EN bit
+  (bnc#1012628).
+- coresight: Fix disabling of CoreSight TPIU (bnc#1012628).
+- pty: cancel pty slave port buf's work in tty_release
+  (bnc#1012628).
+- drm/omap: DMM: Check for DMM readiness after successful
+  transaction commit (bnc#1012628).
+- mmc: sdhci-xenon: wait 5ms after set 1.8V signal enable
+  (bnc#1012628).
+- omapdrm: panel: fix compatible vendor string for td028ttec1
+  (bnc#1012628).
+- vgacon: Set VGA struct resource types (bnc#1012628).
+- PCI/ASPM: Calculate LTR_L1.2_THRESHOLD from device
+  characteristics (bnc#1012628).
+- bpf/cgroup: fix a verification error for a CGROUP_DEVICE type
+  prog (bnc#1012628).
+- iser-target: avoid reinitializing rdma contexts for isert
+  commands (bnc#1012628).
+- IB/umem: Fix use of npages/nmap fields (bnc#1012628).
+- RDMA/cma: Use correct size when writing netlink stats
+  (bnc#1012628).
+- IB/ipoib: Avoid memory leak if the SA returns a different DGID
+  (bnc#1012628).
+- rtc: ac100: Fix multiple race conditions (bnc#1012628).
+- media: s5p-mfc: Fix lock contention - request_firmware() once
+  (bnc#1012628).
+- sfp: fix non-detection of PHY (bnc#1012628).
+- sfp: fix EEPROM reading in the case of non-SFF8472 SFPs
+  (bnc#1012628).
+- net: phy: meson-gxl: check phy_write return value (bnc#1012628).
+- /dev/mem: Add bounce buffer for copy-out (bnc#1012628).
+- mmc: block: fix logical error to avoid memory leak
+  (bnc#1012628).
+- mmc: avoid removing non-removable hosts during suspend
+  (bnc#1012628).
+- drm/tilcdc: ensure nonatomic iowrite64 is not used
+  (bnc#1012628).
+- dmaengine: zynqmp_dma: Fix race condition in the probe
+  

commit 000product for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Factory 
checked in at 2018-03-26 13:18:01

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


Package is "000product"

Mon Mar 26 13:18:01 2018 rev:33 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
_service:product_converter:openSUSE-Addon-NonOss-ftp-ftp-i586_x86_64.kiwi: same 
change
_service:product_converter:openSUSE-Addon-NonOss-release.spec: same change
++ 
_service:product_converter:openSUSE-Tumbleweed-Kubic-dvd5-dvd-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.I0V9ID/_old  2018-03-26 13:18:14.288608223 +0200
+++ /var/tmp/diff_new_pack.I0V9ID/_new  2018-03-26 13:18:14.292608079 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -35,9 +35,9 @@
   true
   -x -2
   openSUSE
-  20180324
+  20180326
   11
-  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180324,openSUSE 
Tumbleweed Kubic
+  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180326,openSUSE 
Tumbleweed Kubic
   en_US 
   openSUSE
   /usr/share/kiwi/modules/plugins/suse-tumbleweed

++ _service:product_converter:openSUSE-Tumbleweed-Kubic-release.spec ++
--- /var/tmp/diff_new_pack.I0V9ID/_old  2018-03-26 13:18:14.324606928 +0200
+++ /var/tmp/diff_new_pack.I0V9ID/_new  2018-03-26 13:18:14.328606783 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   openSUSE-Tumbleweed-Kubic-release
-Version:20180324
+Version:    20180326
 Release:0
 Summary:openSUSE Tumbleweed Kubic 
 License:GPL-2.0-or-later
@@ -38,9 +38,9 @@
 ExclusiveArch:  %ix86 x86_64 ppc64le s390x aarch64
 Provides:   %name-%version
 Provides:   product() = openSUSE-Tumbleweed-Kubic
-Provides:   product(openSUSE-Tumbleweed-Kubic) = 20180324-0
+Provides:   product(openSUSE-Tumbleweed-Kubic) = 20180326-0
 Provides:   product-label() = openSUSE%20Tumbleweed%20Kubic
-Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dtumbleweed%2Dkubic%3A20180324
+Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dtumbleweed%2Dkubic%3A20180326
 Provides:   product-url(releasenotes) = 
http%3A%2F%2Fdoc.opensuse.org%2Frelease%2Dnotes%2Fx86_64%2FopenSUSE%2FTumbleweed%2Frelease%2Dnotes%2DopenSUSE.rpm
 Provides:   product-endoflife()
 Requires:   product_flavor(openSUSE-Tumbleweed-Kubic)
@@ -61,7 +61,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(dvd)
-Provides:   product_flavor(openSUSE-Tumbleweed-Kubic) = 20180324-0
+Provides:   product_flavor(openSUSE-Tumbleweed-Kubic) = 20180326-0
 Summary:openSUSE Tumbleweed Kubic
 
 %description dvd
@@ -123,11 +123,11 @@
 
   openSUSE
   openSUSE-Tumbleweed-Kubic
-  20180324
+  20180326
   0
   
   %{_target_cpu}
-  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180324
+  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180326
   openSUSE-Tumbleweed-Kubic
   
 

_service:product_converter:openSUSE-cd-mini-x86_64.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-i586.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-x86_64.kiwi: same change
_service:product_converter:openSUSE-ftp-ftp-i586_x86_64.kiwi: same change
_service:product_converter:openSUSE-release.spec: same change
openSUSE-Tumbleweed-Kubic-release.spec: same change
openSUSE-release.spec: same change
++ openSUSE-Tumbleweed-Kubic.product ++
--- /var/tmp/diff_new_pack.I0V9ID/_old  2018-03-26 13:18:14.952584340 +0200
+++ /var/tmp/diff_new_pack.I0V9ID/_new  2018-03-26 13:18:14.952584340 +0200
@@ -6,7 +6,7 @@
   openSUSE-Tumbleweed-Kubic
   openSUSE-Tumbleweed-Kubic-release
   
-  20180324
+  20180326
   
   0
   openSUSE-Tumbleweed-Kubic




commit 000product for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Factory 
checked in at 2018-03-26 13:18:04

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


Package is "000product"

Mon Mar 26 13:18:04 2018 rev:34 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
_service:product_converter:openSUSE-Addon-NonOss-ftp-ftp-i586_x86_64.kiwi: same 
change
_service:product_converter:openSUSE-Addon-NonOss-release.spec: same change
_service:product_converter:openSUSE-Tumbleweed-Kubic-dvd5-dvd-x86_64.kiwi: same 
change
_service:product_converter:openSUSE-Tumbleweed-Kubic-release.spec: same change
++ _service:product_converter:openSUSE-cd-mini-i586.kiwi ++
--- /var/tmp/diff_new_pack.DQZ2mg/_old  2018-03-26 13:18:19.212431117 +0200
+++ /var/tmp/diff_new_pack.DQZ2mg/_new  2018-03-26 13:18:19.216430973 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -32,9 +32,9 @@
   true
   -x -2
   openSUSE
-  20180324
+  20180326
   11
-  cpe:/o:opensuse:opensuse:20180324,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20180326,openSUSE 
Tumbleweed
   cs da de en en_GB en_US es fi fr hu it ja nb 
nl pl pt pt_BR ru sv zh zh_CN zh_TW 
   openSUSE
   /usr/share/kiwi/modules/plugins/suse-tumbleweed

_service:product_converter:openSUSE-cd-mini-x86_64.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-i586.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-x86_64.kiwi: same change
++ _service:product_converter:openSUSE-ftp-ftp-i586_x86_64.kiwi ++
--- /var/tmp/diff_new_pack.DQZ2mg/_old  2018-03-26 13:18:19.364425650 +0200
+++ /var/tmp/diff_new_pack.DQZ2mg/_new  2018-03-26 13:18:19.368425506 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -24,7 +24,7 @@
   openSUSE
   ftp
   true
-  openSUSE-20180324-i586-x86_64
+  openSUSE-20180326-i586-x86_64
   true
   /
   $DISTNAME-$FLAVOR
@@ -36,9 +36,9 @@
   true
   -x -2
   openSUSE
-  20180324
+  20180326
   11
-  cpe:/o:opensuse:opensuse:20180324,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20180326,openSUSE 
Tumbleweed
   cs da de en en_GB en_US es fi fr hu it ja nb 
nl pl pt pt_BR ru sv zh zh_CN zh_TW 
   openSUSE
   2

++ _service:product_converter:openSUSE-release.spec ++
--- /var/tmp/diff_new_pack.DQZ2mg/_old  2018-03-26 13:18:19.440422916 +0200
+++ /var/tmp/diff_new_pack.DQZ2mg/_new  2018-03-26 13:18:19.484421334 +0200
@@ -20,7 +20,7 @@
 #define betaversion %{nil}
 %define codename Tumbleweed
 Name:   openSUSE-release
-Version:20180324
+Version:    20180326
 Release:0
 # 0 is the product release, not the build release of this package
 Summary:openSUSE Tumbleweed
@@ -51,7 +51,7 @@
 Obsoletes:  aaa_version
 Obsoletes:  openSUSE-Promo-release <= 11.1
 Obsoletes:  openSUSE-release-live <= 11.0
-Obsoletes:  product_flavor(%{product}) < 20180324
+Obsoletes:  product_flavor(%{product}) < 20180326
 # bnc#826592
 Provides:   weakremover(kernel-default) < 3.11
 Provides:   weakremover(kernel-desktop) < 4.2
@@ -61,7 +61,7 @@
 Provides:   weakremover(kernel-xen) < 3.11
 Provides:   %name-%version
 Provides:   product() = openSUSE
-Provides:   product(openSUSE) = 20180324-0
+Provides:   product(openSUSE) = 20180326-0
 %ifarch x86_64
 Provides:   product-register-target() = openSUSE%2DTumbleweed%2Dx86_64
 %endif
@@ -75,7 +75,7 @@
 Provides:   product-register-target() = openSUSE%2DTumbleweed%2Daarch64
 %endif
 Provides:   product-label() = openSUSE
-Provides:   product-cpeid() = cpe%3A%2Fo%3Aopensuse%3Aopensuse%3A20180324
+Provides:   product-cpeid() = cpe%3A%2Fo%3Aopensuse%3Aopensuse%3A20180326
 Provides:   product-url(releasenotes) = 
http%3A%2F%2Fdoc.opensuse.org%2Frelease%2Dnotes%2Fx86_64%2FopenSUSE%2FTumbleweed%2Frelease%2Dnotes%2DopenSUSE.rpm
 Provides:   product-url(repository) = 
http%3A%2F%2Fdownload.opensuse.org%2Ftumbleweed%2Frepo%2Foss%2F
 Requires:   product_flavor(openSUSE)
@@ -12781,7 +12781,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(ftp)
-Provides:   product_flavor(openSUSE) = 20180324-0
+Provides:   product_flavor(openSUSE) = 20180326-0
 Summary:openSUSE Tumbleweed
 
 %description ftp
@@ -12796,7 +12796,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(mini)
-Provides:   product_flavor(openSUSE) = 20180324-0
+Provides:   product_flavor(

commit php7-ice for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package php7-ice for openSUSE:Factory 
checked in at 2018-03-26 13:16:48

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


Package is "php7-ice"

Mon Mar 26 13:16:48 2018 rev:2 rq:590915 version:1.3.0

Changes:

--- /work/SRC/openSUSE:Factory/php7-ice/php7-ice.changes2018-02-18 
11:42:49.208619043 +0100
+++ /work/SRC/openSUSE:Factory/.php7-ice.new/php7-ice.changes   2018-03-26 
13:17:01.171238111 +0200
@@ -1,0 +2,12 @@
+Sun Mar 25 12:26:06 UTC 2018 - m...@poczta.onet.pl
+
+- Ice 1.3.0
+ * Model, add db service name as a property
+ * Db, add options, oracle fix #150
+ * Dump, use the reflection class instead of each function
+ * PHP 5.5, drop support
+ * Travis, enable PHP 7.2, remove legacy mongo
+ * Composer, use working zephir
+ * Assets, memory observe fix phalcon/zephir#1538
+
+---

Old:

  ice-1.2.11.tar.gz

New:

  ice-1.3.0.tar.gz



Other differences:
--
++ php7-ice.spec ++
--- /var/tmp/diff_new_pack.lFkIDh/_old  2018-03-26 13:17:03.075169633 +0200
+++ /var/tmp/diff_new_pack.lFkIDh/_new  2018-03-26 13:17:03.083169344 +0200
@@ -22,7 +22,7 @@
 %define _name   ice
 
 Name:   %{_php}-%{_name}
-Version:1.2.11
+Version:1.3.0
 Release:0
 Summary:Simple and fast PHP framework delivered as C-extension
 License:BSD-3-Clause

++ ice-1.2.11.tar.gz -> ice-1.3.0.tar.gz ++
 11009 lines of diff (skipped)




commit python-more-itertools for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package python-more-itertools for 
openSUSE:Factory checked in at 2018-03-26 13:15:24

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


Package is "python-more-itertools"

Mon Mar 26 13:15:24 2018 rev:2 rq:590886 version:4.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-more-itertools/python-more-itertools.changes  
2017-12-14 10:54:56.234989132 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-more-itertools.new/python-more-itertools.changes
 2018-03-26 13:16:39.600013959 +0200
@@ -1,0 +2,45 @@
+Sat Mar 24 19:55:52 UTC 2018 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 4.1.0:
+  * New itertools:
++ split_at (thanks to michael-celani)
++ circular_shifts (thanks to hiqua)
++ make_decorator - see the blog post Yo, I heard you like
+  decorators for a tour (thanks to pylang)
++ always_reversible (thanks to michael-celani)
++ nth_combination (from the Python 3.7 docs)
+  * Improvements to existing itertools:
++ seekable now has an elements method to return cached items.
++ The performance tradeoffs between roundrobin and
+  interleave_longest are now documented (thanks michael-celani,
+  pylang, and MSeifert04)
+
+- changes from version 4.0.1:
+  * No code changes - this release fixes how the docs display on PyPI.
+
+- changes from version 4.0.0:
+  * New itertools:
++ consecutive_groups (Based on the example in the Python 2.4 docs)
++ seekable (If you’re looking for how to “reset” an iterator,
+  you’re in luck!)
++ exactly_n (thanks to michael-celani)
++ run_length.encode and run_length.decode
++ difference
+  * Improvements to existing itertools:
++ The number of items between filler elements in intersperse can
+  now be specified (thanks to pylang)
++ distinct_permutations and peekable got some minor adjustments
+  (thanks to MSeifert04)
++ always_iterable now returns an iterator object. It also now
+  allows different types to be considered iterable (thanks to
+  jaraco)
++ bucket can now limit the keys it stores in memory one now allows
+  for custom exceptions (thanks to kalekundert)
+  * Other changes:
++ A few typos were fixed (thanks to EdwardBetts)
++ All tests can now be run with python setup.py test
+
+---

Old:

  more-itertools-3.2.0.tar.gz

New:

  more-itertools-4.1.0.tar.gz



Other differences:
--
++ python-more-itertools.spec ++
--- /var/tmp/diff_new_pack.imAbhF/_old  2018-03-26 13:16:41.027962600 +0200
+++ /var/tmp/diff_new_pack.imAbhF/_new  2018-03-26 13:16:41.035962312 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-more-itertools
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-more-itertools
-Version:3.2.0
+Version:4.1.0
 Release:0
 Summary:More routines for operating on iterables, beyond itertools
 License:MIT

++ more-itertools-3.2.0.tar.gz -> more-itertools-4.1.0.tar.gz ++
 4144 lines of diff (skipped)




commit elementary-appcenter for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package elementary-appcenter for 
openSUSE:Factory checked in at 2018-03-26 13:16:43

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


Package is "elementary-appcenter"

Mon Mar 26 13:16:43 2018 rev:3 rq:590892 version:0.2.9

Changes:

--- 
/work/SRC/openSUSE:Factory/elementary-appcenter/elementary-appcenter.changes
2018-03-09 10:46:45.786317008 +0100
+++ 
/work/SRC/openSUSE:Factory/.elementary-appcenter.new/elementary-appcenter.changes
   2018-03-26 13:16:48.235703362 +0200
@@ -1,0 +2,5 @@
+Sun Mar 25 08:32:22 UTC 2018 - avvi...@yandex.by
+
+-  Fix vala compiler errors (appcenter-0.2.9-vala-0.4.patch)
+
+---

New:

  appcenter-0.2.9-vala-0.4.patch



Other differences:
--
++ elementary-appcenter.spec ++
--- /var/tmp/diff_new_pack.Q6JhaU/_old  2018-03-26 13:16:49.515657327 +0200
+++ /var/tmp/diff_new_pack.Q6JhaU/_new  2018-03-26 13:16:49.519657183 +0200
@@ -24,6 +24,8 @@
 Group:  System/GUI/Other
 URL:https://elementary.io/
 Source: 
https://github.com/elementary/appcenter/archive/%{version}.tar.gz#/appcenter-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM -- Fix vala compiler errors (#663)
+Patch0: appcenter-0.2.9-vala-0.4.patch
 BuildRequires:  cmake
 BuildRequires:  elementary-cmake-modules
 BuildRequires:  fdupes
@@ -55,6 +57,7 @@
 
 %prep
 %setup -q -n appcenter-%{version}
+%patch0 -p2
 
 sed -i 's/\bmetainfo\b/appdata/' $(grep -rwl 'metainfo')
 

++ appcenter-0.2.9-vala-0.4.patch ++
diff -ruN appcenter-0.2.9.orig/appcenter-0.2.9/src/Core/Client.vala 
appcenter-0.2.9/appcenter-0.2.9/src/Core/Client.vala
--- appcenter-0.2.9.orig/appcenter-0.2.9/src/Core/Client.vala   2018-03-02 
15:24:42.0 +0300
+++ appcenter-0.2.9/appcenter-0.2.9/src/Core/Client.vala2018-03-25 
11:33:47.689248023 +0300
@@ -223,7 +223,11 @@
 }
 
 if (exit_status != Pk.Exit.SUCCESS) {
-throw new GLib.IOError.FAILED (Pk.Exit.enum_to_string 
(exit_status));
+#if VALA_0_40
+throw new GLib.IOError.FAILED (exit_status.enum_to_string());
+#else
+throw new GLib.IOError.FAILED (Pk.Exit.enum_to_string 
(exit_status));
+#endif
 } else {
 package.change_information.clear_update_info ();
 }



commit quilter for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package quilter for openSUSE:Factory checked 
in at 2018-03-26 13:16:32

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


Package is "quilter"

Mon Mar 26 13:16:32 2018 rev:6 rq:590889 version:1.5.4

Changes:

--- /work/SRC/openSUSE:Factory/quilter/quilter.changes  2018-02-24 
16:39:15.337717031 +0100
+++ /work/SRC/openSUSE:Factory/.quilter.new/quilter.changes 2018-03-26 
13:16:42.819898150 +0200
@@ -1,0 +2,22 @@
+Sun Mar 25 04:19:44 UTC 2018 - badshah...@gmail.com
+
+- Update to version 1.5.4:
+  * Fix appdata.
+- Changes from version 1.5.3:
+  * Preview Mode won't load rogue Javascript code.
+  * Preview Mode will also not autojump to the start of the scroll
+at any time.
+  * Header becomes Heading in the Cheatsheet.
+  * Fixed the Unsaved changes dialog still killing files when
+pressing the New File button.
+  * Updated translations.
+- Only run post[un] scripts for openSUSE < 1500; for later
+  versions rpm file triggers take care of these already.
+
+---
+Fri Feb 23 15:41:32 UTC 2018 - avvi...@yandex.by
+
+- Update to 1.5.2:
+  * The Headerbar respects the global theme
+
+---

Old:

  quilter-1.5.1.tar.gz

New:

  quilter-1.5.4.tar.gz



Other differences:
--
++ quilter.spec ++
--- /var/tmp/diff_new_pack.deQmv3/_old  2018-03-26 13:16:44.687830967 +0200
+++ /var/tmp/diff_new_pack.deQmv3/_new  2018-03-26 13:16:44.691830823 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package quilter
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,12 +17,12 @@
 
 
 Name:   quilter
-Version:1.5.1
+Version:1.5.4
 Release:0
 Summary:Writing application
-License:GPL-3.0
+License:GPL-3.0-only
 Group:  Productivity/Office/Word Processor
-URL:https://github.com/lainsce/quilter
+Url:https://github.com/lainsce/quilter
 Source: 
https://github.com/lainsce/quilter/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
@@ -81,6 +81,7 @@
 %find_lang com.github.lainsce.quilter %{name}.lang
 %fdupes %{buildroot}/%{_datadir}
 
+%if 0%{?suse_version} < 1500
 %post
 %desktop_database_post
 %icon_theme_cache_post
@@ -90,6 +91,7 @@
 %desktop_database_postun
 %icon_theme_cache_postun
 %glib2_gsettings_schema_postun
+%endif
 
 %files -f dir.lst
 %doc AUTHORS LICENSE README.md

++ quilter-1.5.1.tar.gz -> quilter-1.5.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/quilter-1.5.1/data/com.github.lainsce.quilter.appdata.xml 
new/quilter-1.5.4/data/com.github.lainsce.quilter.appdata.xml
--- old/quilter-1.5.1/data/com.github.lainsce.quilter.appdata.xml   
2018-02-11 00:35:28.0 +0100
+++ new/quilter-1.5.4/data/com.github.lainsce.quilter.appdata.xml   
2018-03-18 09:59:58.0 +0100
@@ -24,9 +24,29 @@
 https://github.com/lainsce/quilter/
 https://github.com/lainsce/quilter/issues
 
+
+   
+   Release: All-Around An Inker!
+   
+   Preview Mode won't load rogue Javascript code.
+   Preview Mode will also not autojump to the start of the 
scroll at any time.
+   Header becomes Heading in the Cheatsheet.
+   Fixed the Unsaved changes dialog still killing files 
when pressing the New File button.
+   New Translations for: Dutch, Catalan  Spanish.
+   
+   
+
+
+   
+   Release: Visual Standardization
+   
+   The headerbar now respects the global theme in Normal 
and Dark modes.
+   
+   
+
 

-   Release: New Sheets Won't Crumple Old Ones
+   Release: New Sheets Won't Crumple Old Ones, part 2

The New File button will not purge old files.

@@ -34,7 +54,7 @@
 
 

-   Release: ???
+   Release: New Sheets Won't Crumple Old Ones, part 1

The autosave switch in preferences now saves its last 
state.
Fixed the changing of type of focus mode 
highlighting.

commit links for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package links for openSUSE:Factory checked 
in at 2018-03-26 13:15:04

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


Package is "links"

Mon Mar 26 13:15:04 2018 rev:33 rq:590885 version:2.15

Changes:

--- /work/SRC/openSUSE:Factory/links/links.changes  2017-07-02 
13:37:53.245521957 +0200
+++ /work/SRC/openSUSE:Factory/.links.new/links.changes 2018-03-26 
13:16:21.028681899 +0200
@@ -1,0 +2,60 @@
+Sat Mar 24 19:38:59 UTC 2018 - astie...@suse.com
+
+- links 2.15:
+  * Rewrite google docs URLs to the download link, so that the file
+can be viewed in external viewer
+  * Add the list of domains for which proxy is not used
+  * Temporarily replace the stderr handle with /dev/null when
+decoding png or svg images because the libraries may write to
+stderr
+  * Fix improper restarts of connection when http compression is 
+used
+  * Free cache when using the -source flag, so that memory
+consumption is not dependent on downloaded file size
+  * Do not download compressed files. When the server returns
+compressed file and we are downloading, restart the connection
+without compression.
+  * Allow browsing files containing characters < 32 in the filename
+  * Limit the number of OpenMP threads to 8
+  * Fix premature call to OPENSSL_cleanup while some SSL objects
+could still exist
+  * Enable -ftree-vectorize and -ffast-math for GCC, so that it uses
+vector instructions. It improves performance of image scaler.
+  * Support international domain names
+  * Fix reordering of blocked URLs each time options were saved and
+loaded
+  * Fix reading one byte beyond allocated space in case of corrupted
+UTF-8 data - CVE-2017-4 bsc#1051448
+  * Support the brotli compression algorithm using libbrotli
+  * Support lzip compression
+  * Add a new main menu item 'Windows' for switching windows on
+framebuffer
+  * Fix an internal error if the gpm server is terminated while
+links is running on a framebuffer
+  * Use fsync() when writing the bookmarks or settings
+  * Clear host entry in DNS cache when connection failed
+  * Use built-in SSL certificates
+  * Encode strings to UTF-8 when storing them in a history, it fixes
+a bug when browsing the history if Links is run on multiple
+terminals with different character sets
+  * Use absolute time when calculating the time to flush DNS cache, 
+HTTPS session cache and keepalive connection cache, so that the
+cache gets flushed when the machine is kept suspended for a
+long time.
+  * Report IP addresses in the "Document info" box.
+  * Implement a small connection timeout when connecting to a host
+with multiple addresses, so that there is faster fallback from
+IPv6 to IPv4.
+  * Replace OpenSSL malloc functions with CRYPTO_set_mem_functions,
+so that when malloc returns NULL, we can free some cached data
+and retry
+  * Removed special handling of ".onion" addresses
+  * Avoid memcpy with NULL source argument and zero length
+  * Make the "dns-prefetch" link prefetch just dns, not the whole
+document
+  * Use OpenSSL functions X509_check_host and X509_check_ip if
+available
+  * Report status when formatting document or searching
+  * Use session cache on https
+
+---

Old:

  links-2.14.tar.bz2

New:

  links-2.15.tar.bz2



Other differences:
--
++ links.spec ++
--- /var/tmp/diff_new_pack.O524cN/_old  2018-03-26 13:16:24.876543507 +0200
+++ /var/tmp/diff_new_pack.O524cN/_new  2018-03-26 13:16:24.880543363 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package links
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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:   links
-Version:2.14
+Version:2.15
 Release:0
 Summary:Text-Based WWW Browser
 License:GPL-2.0+
@@ -32,6 +32,7 @@
 BuildRequires:  openssl-devel
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(bzip2)
+BuildRequires:  pkgconfig(libbrotlidec)
 BuildRequires:  pkgconfig(libevent)
 BuildRequires:  pkgconfig(liblzma)
 BuildRequires:  pkgconfig(libpng)

++ links-2.14.tar.bz2 -> links-2.15.tar.bz2 ++
/work/SRC/openSUSE:Factory/links/links-2.14.tar.bz2 
/work/SRC/openSUSE:Factory/.links.new/links-2.15.tar.bz2 differ: char 11, line 1




commit krita for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package krita for openSUSE:Factory checked 
in at 2018-03-26 13:13:44

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


Package is "krita"

Mon Mar 26 13:13:44 2018 rev:20 rq:590869 version:4.0.0

Changes:

--- /work/SRC/openSUSE:Factory/krita/krita.changes  2018-03-24 
16:15:43.606747738 +0100
+++ /work/SRC/openSUSE:Factory/.krita.new/krita.changes 2018-03-26 
13:13:55.945899642 +0200
@@ -1,0 +2,7 @@
+Fri Mar 23 18:33:32 UTC 2018 - khnaz...@rkmail.ru
+
+- Restore openSUSE Leap 42.3 support:
+  * boost 1.61 presents in Leap 42.3 repo
+  * Added fix_libgif_5_0_build.patch to make krita build against libgif 5.0.x
+
+---

New:

  fix_libgif_5_0_build.patch



Other differences:
--
++ krita.spec ++
--- /var/tmp/diff_new_pack.NNn3dl/_old  2018-03-26 13:14:02.005681721 +0200
+++ /var/tmp/diff_new_pack.NNn3dl/_new  2018-03-26 13:14:02.009681577 +0200
@@ -26,11 +26,17 @@
 Group:  Productivity/Graphics/Bitmap Editors
 Url:http://www.krita.org/
 Source0:
http://download.kde.org/stable/krita/%{version}/krita-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE fix_libgif_5_0_build.patch -- Trivial fix to make Krita 
link against libgif 5.0.x in openSUSE Leap 42.3
+Patch1: fix_libgif_5_0_build.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  OpenColorIO-devel
 BuildRequires:  OpenEXR-devel
 BuildRequires:  Vc-devel-static
+%if 0%{?suse_version} < 1320
+BuildRequires:  boost_1_61-devel
+%else
 BuildRequires:  libboost_system-devel
+%endif
 BuildRequires:  extra-cmake-modules
 BuildRequires:  fftw3-devel
 BuildRequires:  giflib-devel
@@ -118,6 +124,9 @@
 
 %prep
 %setup -q -n krita-%{version}
+%if 0%{?suse_version} < 1320
+%patch1
+%endif
 
 %build
 # install translations to %%{_kf5_localedir} so they don't clash with the 
krita translations in calligra-l10n (KDE4 based)

++ fix_libgif_5_0_build.patch ++
From: Anatoly Bobrov 
Subject: Trivial fix to make Krita link against libgif 5.0.x in openSUSE Leap 
42.3

--- plugins/impex/gif/qgiflibhandler.cpp2018-03-20 10:49:57.0 
+0300
+++ plugins/impex/gif/qgiflibhandler.cpp2018-03-23 15:11:33.890071869 
+0300
@@ -314,7 +314,7 @@
 }
 }
 
-EGifCloseFile(gif, );
+EGifCloseFile(gif);
 
 return true;
 }



commit parole for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package parole for openSUSE:Factory checked 
in at 2018-03-26 13:13:37

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


Package is "parole"

Mon Mar 26 13:13:37 2018 rev:30 rq:590823 version:1.0.0

Changes:

--- /work/SRC/openSUSE:Factory/parole/parole.changes2017-12-14 
10:58:29.356700846 +0100
+++ /work/SRC/openSUSE:Factory/.parole.new/parole.changes   2018-03-26 
13:13:39.754481912 +0200
@@ -1,0 +2,17 @@
+Sat Mar 24 11:12:28 UTC 2018 - seife+...@b1-systems.com
+
+- update to version 1.0.0: First stable release of the 1.0.x series!
+  New Features:
+  - Added "Automatic" video output option. This uses the auto
+imagesink to provide the best available video sink for the
+environment, eliminating the dreaded 'Could not initialise
+Xv output' error (bxo#11950)
+  Bug Fixes:
+  - Fixed 32-bit crashes when using the MPRIS2 plugin (LP #1374887)
+  - Fixed crash on "Clear History" button press (LP #1214514)
+  - Fixed appdata validation (bxo#13632)
+  - Fixed full debug builds and resolved build warnings
+  - Replaced stock icon by freedesktop.org compliant option (bxo#13738)
+  - Translation Updates
+
+---

Old:

  parole-0.9.2.tar.bz2

New:

  parole-1.0.0.tar.bz2



Other differences:
--
++ parole.spec ++
--- /var/tmp/diff_new_pack.Q4cT5q/_old  2018-03-26 13:13:41.566416752 +0200
+++ /var/tmp/diff_new_pack.Q4cT5q/_new  2018-03-26 13:13:41.566416752 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package parole
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,13 +17,13 @@
 
 
 Name:   parole
-Version:0.9.2
+Version:1.0.0
 Release:0
 Summary:Modern, Simple Media Player for the Xfce Desktop Environment
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Productivity/Multimedia/Video/Players
 Url:http://goodies.xfce.org/projects/applications/parole
-Source0:
http://archive.xfce.org/src/apps/parole/0.9/%{name}-%{version}.tar.bz2
+Source0:
http://archive.xfce.org/src/apps/parole/1.0/%{name}-%{version}.tar.bz2
 # PATCH-FEATURE-UPSTREAM parole-add-uri-scheme-handler-support.patch 
g...@opensuse.org -- Adds support for URI scheme handlers
 Patch1: parole-add-uri-scheme-handler-support.patch
 BuildRequires:  intltool
@@ -88,6 +88,7 @@
 
 %find_lang %{name} %{?no_lang_C}
 
+%if 0%{?suse_version} < 1500
 %post
 %desktop_database_post
 %icon_theme_cache_post
@@ -95,6 +96,7 @@
 %postun
 %desktop_database_postun
 %icon_theme_cache_postun
+%endif
 
 %files
 %defattr(-,root,root,-)

++ parole-0.9.2.tar.bz2 -> parole-1.0.0.tar.bz2 ++
 70774 lines of diff (skipped)




commit python-matplotlib for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package python-matplotlib for 
openSUSE:Factory checked in at 2018-03-26 13:13:21

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


Package is "python-matplotlib"

Mon Mar 26 13:13:21 2018 rev:60 rq:590819 version:2.2.2

Changes:

--- /work/SRC/openSUSE:Factory/python-matplotlib/python-matplotlib.changes  
2018-02-14 09:45:17.541656078 +0100
+++ /work/SRC/openSUSE:Factory/.python-matplotlib.new/python-matplotlib.changes 
2018-03-26 13:13:26.162970678 +0200
@@ -1,0 +2,48 @@
+Sat Mar 17 19:29:36 UTC 2018 - a...@gmx.de
+
+- update to version 2.2.2:
+  * v2.2.1 did not actually restore matplotlib.verbose.
+
+- changes from version 2.2.1:
+  * This release fixes a number of critical bugs:
++ restores matplotlib.verbose (fixing embedding in pycharm)
++ preserve precision when color mapping small portions of data
+  with extreme outliers
++ fixes saving long movies with ffmpeg
++ fixes UnbourdLocal error in contour labeling
++ fixes import failure on python 3.4.0 and 3.4.1
++ fixes compile time failures with clang on 32bit platforms
++ fixes an icon in the Tk backends
++ fixes several issues with Tables
++ fixes expanding offset boxes with tight_layout
++ revert changes to the font caching to avoid a possible bug in
+  backports.lru_cache
++ numerous docstring and documentation fixes
+  * We have reverted the deprecation of `font_manager.TempCache`.
+
+---
+Thu Mar  8 04:49:03 UTC 2018 - a...@gmx.de
+
+- specfile:
+  * require kiwisolver
+  * update required version for dateutil
+
+- update to version 2.2.0:
+  * The first release of the v2.2 LTS series and the last version of
+Matplotlib to support python2.  There will be bug-fix release for
+this series until 2020.
+  * This release includes new features including:
++ An experimental constrained layout manager
++ Color blind friendly color map (cividis) and color cycle
+  (tableau-colorblind10)
++ native support for numpy.datetime64 types
++ animated gif writing via pillow
++ TkAgg now works with pypy
++ cairo based backends for Qt, Tk, and WX
+  * There are several API changes in this release:
++ To support the constrained layout Matplotlib has a new required
+  dependency (kiwisolver).
++ The `matplotlib.finance` module has been removed, development
+  has moved to a stand-alone project.
+
+---

Old:

  matplotlib-2.1.2.tar.gz

New:

  matplotlib-2.2.2.tar.gz



Other differences:
--
++ python-matplotlib.spec ++
--- /var/tmp/diff_new_pack.RnDKSY/_old  2018-03-26 13:13:29.190861793 +0200
+++ /var/tmp/diff_new_pack.RnDKSY/_new  2018-03-26 13:13:29.198861505 +0200
@@ -23,7 +23,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-matplotlib
-Version:2.1.2
+Version:2.2.2
 Release:0
 Summary:Plotting Library for Python
 License:SUSE-Matplotlib
@@ -44,6 +44,7 @@
 # Needed for all versions of python
 BuildRequires:  %{python_module Cycler >= 0.10}
 BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module kiwisolver}
 BuildRequires:  %{python_module numpy >= 1.7.1}
 BuildRequires:  %{python_module numpy-devel >= 1.7.1}
 BuildRequires:  %{python_module pyparsing > 2.1.6}
@@ -54,7 +55,7 @@
 %if %{with tests}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module nose}
-BuildRequires:  %{python_module python-dateutil >= 1.1}
+BuildRequires:  %{python_module python-dateutil >= 2.1}
 BuildRequires:  inkscape
 # latex dependencies
 BuildRequires:  ghostscript
@@ -95,9 +96,10 @@
 BuildRequires:  %{python_module tornado}
 # End of backend dependencies
 Requires:   python-Cycler >= 0.10
+Requires:   python-kiwisolver >= 1.0.1
 Requires:   python-numpy >= 1.7.1
 Requires:   python-pyparsing > 2.1.6
-Requires:   python-python-dateutil >= 1.1
+Requires:   python-python-dateutil >= 2.1
 Requires:   python-pytz
 Requires:   python-six >= 1.10
 %ifpython2

++ matplotlib-2.1.2.tar.gz -> matplotlib-2.2.2.tar.gz ++
/work/SRC/openSUSE:Factory/python-matplotlib/matplotlib-2.1.2.tar.gz 
/work/SRC/openSUSE:Factory/.python-matplotlib.new/matplotlib-2.2.2.tar.gz 
differ: char 5, line 1




commit RemoteBox for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package RemoteBox for openSUSE:Factory 
checked in at 2018-03-26 13:13:41

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


Package is "RemoteBox"

Mon Mar 26 13:13:41 2018 rev:12 rq:590843 version:2.4

Changes:

--- /work/SRC/openSUSE:Factory/RemoteBox/RemoteBox.changes  2017-06-12 
15:28:18.535248161 +0200
+++ /work/SRC/openSUSE:Factory/.RemoteBox.new/RemoteBox.changes 2018-03-26 
13:13:44.270319516 +0200
@@ -1,0 +2,20 @@
+Mon Nov  6 18:29:46 UTC 2017 - c...@gallochri.com
+
+-Update to 2.4 version 
+-RemoteBox now requires VirtualBox 5.2.x
+-Updated guest icons
+-Added option to enable/disable audio output from a guest
+-Added option to enable/disable audio input to a guest
+-Added option to record audio from the guest when capturing a video
+-Added support for exporting appliances to Oracle Public Cloud 
+Format 1.0
+-Added ability to select a connection profile to use for 
+automatically logging in when starting up RemoteBox.
+-Added option 'Release Keys' to clear any held keys in the case 
+where a host and guest's keyboard status may become out of sync.
+-New guests now automatically have their audio output enabled
+-Fixed: You now can't set video RAM to zero, even though VirtualBox
+reports this as a valid minimum, the guest won't start.
+- env-script-interpreter.patch fix pearl interpreter script
+
+---

Old:

  RemoteBox-2.3.tar.bz2

New:

  RemoteBox-2.4.tar.bz2
  env-script-interpreter.patch



Other differences:
--
++ RemoteBox.spec ++
--- /var/tmp/diff_new_pack.WkNgxM/_old  2018-03-26 13:13:45.322281686 +0200
+++ /var/tmp/diff_new_pack.WkNgxM/_new  2018-03-26 13:13:45.326281542 +0200
@@ -23,14 +23,14 @@
 # to remotebox so filter it
 %global __provides_exclude ^perl\\(vboxService\\)
 Name:   RemoteBox
-Version:2.3
+Version:2.4
 Release:0
 Summary:A VirtualBox client with remote management
 License:GPL-2.0+
 Group:  System/Emulators/PC
 Url:http://knobgoblin.org.uk
 Source0:http://knobgoblin.org.uk/downloads/%{name}-%{version}.tar.bz2
-
+Patch0: env-script-interpreter.patch
 BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes
 Requires:   freerdp
@@ -51,6 +51,7 @@
 
 %prep
 %setup -q -n %{name}-%{version}
+%patch0
 # Set the locations of Remotebox's files
 sed -i 's|\$Bin/share/remotebox|%{_datadir}/%{name}|g' remotebox
 sed -i 's|\$Bin/docs|%{_docdir}/%{name}|g' remotebox

++ RemoteBox-2.3.tar.bz2 -> RemoteBox-2.4.tar.bz2 ++
 27981 lines of diff (skipped)

++ env-script-interpreter.patch ++
Index: remotebox
===
--- remotebox.orig
+++ remotebox
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 # ^^^ You may need to change this to the location of your perl interpreter
 # RemoteBox v2.4 (c) 2010-2017 Ian Chapman. Licenced under the terms of the GPL
 use strict;



commit python-SQLAlchemy-Utils for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package python-SQLAlchemy-Utils for 
openSUSE:Factory checked in at 2018-03-26 13:13:14

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


Package is "python-SQLAlchemy-Utils"

Mon Mar 26 13:13:14 2018 rev:9 rq:590818 version:0.33.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-SQLAlchemy-Utils/python-SQLAlchemy-Utils.changes
  2018-02-20 17:55:52.476737512 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-SQLAlchemy-Utils.new/python-SQLAlchemy-Utils.changes
 2018-03-26 13:13:19.539208875 +0200
@@ -1,0 +2,7 @@
+Sat Mar 24 00:02:42 UTC 2018 - a...@gmx.de
+
+- update to version 0.33.1:
+  * Fixed EncryptedType for Oracle padding attack (#316, pull request
+courtesy of manishahluwalia)
+
+---

Old:

  SQLAlchemy-Utils-0.33.0.tar.gz

New:

  SQLAlchemy-Utils-0.33.1.tar.gz



Other differences:
--
++ python-SQLAlchemy-Utils.spec ++
--- /var/tmp/diff_new_pack.MBUcSQ/_old  2018-03-26 13:13:21.131151627 +0200
+++ /var/tmp/diff_new_pack.MBUcSQ/_new  2018-03-26 13:13:21.139151340 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-SQLAlchemy-Utils
-Version:0.33.0
+Version:0.33.1
 Release:0
 Summary:Various utility functions for SQLAlchemy
 License:BSD-3-Clause

++ SQLAlchemy-Utils-0.33.0.tar.gz -> SQLAlchemy-Utils-0.33.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQLAlchemy-Utils-0.33.0/CHANGES.rst 
new/SQLAlchemy-Utils-0.33.1/CHANGES.rst
--- old/SQLAlchemy-Utils-0.33.0/CHANGES.rst 2018-02-18 15:42:06.0 
+0100
+++ new/SQLAlchemy-Utils-0.33.1/CHANGES.rst 2018-03-19 15:50:26.0 
+0100
@@ -4,6 +4,12 @@
 Here you can see the full list of changes between each SQLAlchemy-Utils 
release.
 
 
+0.33.1 (2018-03-19)
+^^^
+
+- Fixed EncryptedType for Oracle padding attack (#316, pull request courtesy 
of manishahluwalia)
+
+
 0.33.0 (2018-02-18)
 ^^^
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQLAlchemy-Utils-0.33.0/PKG-INFO 
new/SQLAlchemy-Utils-0.33.1/PKG-INFO
--- old/SQLAlchemy-Utils-0.33.0/PKG-INFO2018-02-18 15:47:12.0 
+0100
+++ new/SQLAlchemy-Utils-0.33.1/PKG-INFO2018-03-19 15:54:38.0 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: SQLAlchemy-Utils
-Version: 0.33.0
+Version: 0.33.1
 Summary: Various utility functions for SQLAlchemy.
 Home-page: https://github.com/kvesteri/sqlalchemy-utils
 Author: Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/SQLAlchemy-Utils-0.33.0/SQLAlchemy_Utils.egg-info/PKG-INFO 
new/SQLAlchemy-Utils-0.33.1/SQLAlchemy_Utils.egg-info/PKG-INFO
--- old/SQLAlchemy-Utils-0.33.0/SQLAlchemy_Utils.egg-info/PKG-INFO  
2018-02-18 15:47:12.0 +0100
+++ new/SQLAlchemy-Utils-0.33.1/SQLAlchemy_Utils.egg-info/PKG-INFO  
2018-03-19 15:54:38.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: SQLAlchemy-Utils
-Version: 0.33.0
+Version: 0.33.1
 Summary: Various utility functions for SQLAlchemy.
 Home-page: https://github.com/kvesteri/sqlalchemy-utils
 Author: Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/SQLAlchemy-Utils-0.33.0/SQLAlchemy_Utils.egg-info/SOURCES.txt 
new/SQLAlchemy-Utils-0.33.1/SQLAlchemy_Utils.egg-info/SOURCES.txt
--- old/SQLAlchemy-Utils-0.33.0/SQLAlchemy_Utils.egg-info/SOURCES.txt   
2018-02-18 15:47:12.0 +0100
+++ new/SQLAlchemy-Utils-0.33.1/SQLAlchemy_Utils.egg-info/SOURCES.txt   
2018-03-19 15:54:38.0 +0100
@@ -195,4 +195,5 @@
 tests/types/test_tsvector.py
 tests/types/test_url.py
 tests/types/test_uuid.py
-tests/types/test_weekdays.py
\ No newline at end of file
+tests/types/test_weekdays.py
+tests/types/encrypted/test_padding.py
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQLAlchemy-Utils-0.33.0/sqlalchemy_utils/__init__.py 
new/SQLAlchemy-Utils-0.33.1/sqlalchemy_utils/__init__.py
--- old/SQLAlchemy-Utils-0.33.0/sqlalchemy_utils/__init__.py2018-02-18 
15:42:27.0 +0100
+++ new/SQLAlchemy-Utils-0.33.1/sqlalchemy_utils/__init__.py2018-03-19 
15:50:31.0 +0100
@@ -99,4 +99,4 @@
 WeekDaysType
 )
 
-__version__ = '0.33.0'
+__version__ = '0.33.1'
diff -urN 

commit buzztrax for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package buzztrax for openSUSE:Factory 
checked in at 2018-03-26 13:13:07

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


Package is "buzztrax"

Mon Mar 26 13:13:07 2018 rev:9 rq:590816 version:0.10.2

Changes:

--- /work/SRC/openSUSE:Factory/buzztrax/buzztrax.changes2018-01-06 
18:51:17.897318945 +0100
+++ /work/SRC/openSUSE:Factory/.buzztrax.new/buzztrax.changes   2018-03-26 
13:13:13.439428228 +0200
@@ -1,0 +2,6 @@
+Sat Mar 24 06:22:13 UTC 2018 - davejpla...@gmail.com
+
+- Fix build with -Wno-error=incompatible-pointer-types reported
+  upstream https://github.com/Buzztrax/buzztrax/issues/74
+
+---



Other differences:
--
++ buzztrax.spec ++
--- /var/tmp/diff_new_pack.s9q2af/_old  2018-03-26 13:13:14.579387233 +0200
+++ /var/tmp/diff_new_pack.s9q2af/_new  2018-03-26 13:13:14.583387090 +0200
@@ -219,7 +219,7 @@
 %endif
 export CFLAGS="%{optflags} -Wno-error=deprecated-declarations"
 %if 0%{?gcc_version} >= 7
-export CFLAGS="$CFLAGS -Wno-error=format-truncation= 
-Wno-error=format-overflow="
+export CFLAGS="$CFLAGS -Wno-error=format-truncation= 
-Wno-error=format-overflow= -Wno-error=incompatible-pointer-types"
 %endif
 
 /bin/sh ./autogen.sh --noconfigure




commit storeBackup for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package storeBackup for openSUSE:Factory 
checked in at 2018-03-26 13:11:55

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


Package is "storeBackup"

Mon Mar 26 13:11:55 2018 rev:30 rq:590811 version:3.5

Changes:

--- /work/SRC/openSUSE:Factory/storeBackup/storeBackup.changes  2018-03-22 
12:10:47.281477638 +0100
+++ /work/SRC/openSUSE:Factory/.storeBackup.new/storeBackup.changes 
2018-03-26 13:13:06.735669298 +0200
@@ -1,0 +2,5 @@
+Sun Mar 18 17:08:53 UTC 2018 - s...@bugs.jan.ritzerfeld.org
+
+- fixed location of original README.1ST in README.SUSE and spec file
+
+---



Other differences:
--
++ storeBackup.spec ++
--- /var/tmp/diff_new_pack.9AI9VW/_old  2018-03-26 13:13:08.683599250 +0200
+++ /var/tmp/diff_new_pack.9AI9VW/_new  2018-03-26 13:13:08.683599250 +0200
@@ -51,7 +51,7 @@
 other existing backups.
 
 Before you can start using storeBackup, please carefully read
-/usr/share/doc/packages/storeBackup/README
+/usr/share/doc/packages/storeBackup/README.1ST
 and create an appropriate configuration file
 /etc/storebackup.d/storebackup.config
 using

++ storeBackup-README.SUSE ++
--- /var/tmp/diff_new_pack.9AI9VW/_old  2018-03-26 13:13:08.763596373 +0200
+++ /var/tmp/diff_new_pack.9AI9VW/_new  2018-03-26 13:13:08.763596373 +0200
@@ -1,6 +1,6 @@
 
 Before you can start using storeBackup, please carefully read
-   /usr/share/doc/packages/storeBackup/README
+   /usr/share/doc/packages/storeBackup/README.1ST
 and create an appropriate configuration file
/etc/storebackup.d/storebackup.config
 using 




commit pantheon-files for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package pantheon-files for openSUSE:Factory 
checked in at 2018-03-26 13:10:29

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


Package is "pantheon-files"

Mon Mar 26 13:10:29 2018 rev:11 rq:590795 version:0.3.5

Changes:

--- /work/SRC/openSUSE:Factory/pantheon-files/pantheon-files.changes
2017-06-05 18:50:34.767210662 +0200
+++ /work/SRC/openSUSE:Factory/.pantheon-files.new/pantheon-files.changes   
2018-03-26 13:11:46.986537018 +0200
@@ -1,0 +2,5 @@
+Sat Mar 24 02:19:53 UTC 2018 - avvi...@yandex.by
+
+- Fix build with vala >= 0.4 (pantheon-files-0.3.5-vala-0.4.patch)
+
+---

New:

  pantheon-files-0.3.5-vala-0.4.patch



Other differences:
--
++ pantheon-files.spec ++
--- /var/tmp/diff_new_pack.FMQ3Hp/_old  2018-03-26 13:11:50.294418073 +0200
+++ /var/tmp/diff_new_pack.FMQ3Hp/_new  2018-03-26 13:11:50.294418073 +0200
@@ -25,6 +25,8 @@
 Group:  Productivity/File utilities
 Url:https://launchpad.net/pantheon-files
 Source: 
https://launchpad.net/pantheon-files/0.3.x/%{version}/+download/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM -- Fix vala compiler errors (#262)
+Patch0: pantheon-files-0.3.5-vala-0.4.patch
 BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  intltool
@@ -101,6 +103,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 find -name \*.pc* -exec sed -i '/libdir/s/\(=\).*\//\1/' {} +
 

++ pantheon-files-0.3.5-vala-0.4.patch ++
diff -ruN pantheon-files-0.3.5.orig/libwidgets/Chrome/BreadcrumbElement.vala 
pantheon-files-0.3.5/libwidgets/Chrome/BreadcrumbElement.vala
--- pantheon-files-0.3.5.orig/libwidgets/Chrome/BreadcrumbElement.vala  
2017-06-03 08:26:52.0 +0300
+++ pantheon-files-0.3.5/libwidgets/Chrome/BreadcrumbElement.vala   
2018-03-24 05:17:43.727774140 +0300
@@ -67,7 +67,7 @@
 }
 }
 
-private Gtk.Border padding = Gtk.Border ();
+private Gtk.Border padding;
 private Pango.Layout layout;
 private Gtk.Widget widget;
 
diff -ruN pantheon-files-0.3.5.orig/src/View/IconView.vala 
pantheon-files-0.3.5/src/View/IconView.vala
--- pantheon-files-0.3.5.orig/src/View/IconView.vala2017-06-03 
08:26:52.0 +0300
+++ pantheon-files-0.3.5/src/View/IconView.vala 2018-03-24 05:18:24.363903732 
+0300
@@ -190,8 +190,8 @@
 protected override uint get_event_position_info (Gdk.EventButton event,
  out Gtk.TreePath? 
path,
  bool rubberband = 
false) {
-unowned Gtk.TreePath? p = null;
-unowned Gtk.CellRenderer? r;
+Gtk.TreePath? p = null;
+Gtk.CellRenderer? r;
 uint zone;
 int x, y;
 path = null;



commit noise for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package noise for openSUSE:Factory checked 
in at 2018-03-26 13:10:25

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


Package is "noise"

Mon Mar 26 13:10:25 2018 rev:7 rq:590794 version:0.4.2

Changes:

--- /work/SRC/openSUSE:Factory/noise/noise.changes  2017-12-08 
12:57:02.674429370 +0100
+++ /work/SRC/openSUSE:Factory/.noise.new/noise.changes 2018-03-26 
13:11:30.167141807 +0200
@@ -1,0 +2,5 @@
+Sat Mar 24 02:38:11 UTC 2018 - avvi...@yandex.by
+
+- Read the embedded cover art (noise-0.4.2-gst.patch) 
+
+---

New:

  noise-0.4.2-gst.patch



Other differences:
--
++ noise.spec ++
--- /var/tmp/diff_new_pack.F5YLLE/_old  2018-03-26 13:11:33.155034370 +0200
+++ /var/tmp/diff_new_pack.F5YLLE/_new  2018-03-26 13:11:33.155034370 +0200
@@ -26,6 +26,8 @@
 Group:  Productivity/Multimedia/Sound/Players
 Url:https://launchpad.net/noise
 Source: 
https://launchpad.net/noise/%{_version}/%{version}/+download/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM -- Read the embedded cover art (#89)
+Patch0: noise-0.4.2-gst.patch
 BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -84,6 +86,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 sed -i 's/metainfo/appdata/' $(grep -rwl metainfo)
 

++ noise-0.4.2-gst.patch ++
diff -ruN noise-0.4.2.orig/src/GStreamer/CoverImport.vala 
noise-0.4.2/src/GStreamer/CoverImport.vala
--- noise-0.4.2.orig/src/GStreamer/CoverImport.vala 2017-11-27 
19:02:59.0 +0300
+++ noise-0.4.2/src/GStreamer/CoverImport.vala  2018-03-24 05:29:26.386097981 
+0300
@@ -35,7 +35,6 @@
 construct {
 try {
 discoverer = new Gst.PbUtils.Discoverer ((Gst.ClockTime) 
(DISCOVERER_TIMEOUT * Gst.SECOND));
-discoverer.discovered.connect (import_media);
 } catch (Error err) {
 critical ("Could not create Gst discoverer object: %s", 
err.message);
 }
@@ -43,16 +42,22 @@
 
 public CoverImport (Album album) {
 this.album = album;
-foreach (var media in album.get_media ()) {
-discoverer.discover_uri_async (media.uri);
-}
-}
-
-public void start () {
-discoverer.start ();
+new Thread(null, () => {
+lock (this.album) {
+foreach (var media in album.get_media ()) {
+try {
+var info = discoverer.discover_uri (media.uri);
+read_info (info);
+} catch (Error err) {
+critical ("Error while importing cover for %s: %s", 
album.name, err.message);
+}
+}
+}
+return null;
+});
 }
 
-private void import_media (Gst.PbUtils.DiscovererInfo info, Error err) {
+private void read_info (Gst.PbUtils.DiscovererInfo info) {
 string uri = info.get_uri ();
 bool gstreamer_discovery_successful = false;
 switch (info.get_result ()) {
@@ -65,7 +70,7 @@
 break;
 
 case Gst.PbUtils.DiscovererResult.ERROR:
-warning ("GStreamer could not import '%s': %s", uri, 
err.message);
+warning ("GStreamer could not import '%s'", uri);
 break;
 
 case Gst.PbUtils.DiscovererResult.TIMEOUT:
@@ -102,9 +107,9 @@
 if (buffer != null) {
 pixbuf = get_pixbuf_from_buffer (buffer);
 if (pixbuf != null) {
-album.save_cover_pixbuf (pixbuf);
-debug ("Cover imported for '%s'", info.get_uri ());
-discoverer.stop ();
+lock (album) {
+album.save_cover_pixbuf (pixbuf);
+}
 }
 }
 
@@ -151,9 +156,9 @@
 } catch (Error err) {
 warning ("Error processing image data: %s", err.message);
 }
- 
+
 buffer.unmap (map_info);
- 
+
 return pix;
 }
 }
diff -ruN noise-0.4.2.orig/src/GStreamer/GStreamerTagger.vala 
noise-0.4.2/src/GStreamer/GStreamerTagger.vala
--- noise-0.4.2.orig/src/GStreamer/GStreamerTagger.vala 2017-11-27 
19:02:59.0 +0300
+++ noise-0.4.2/src/GStreamer/GStreamerTagger.vala  2018-03-24 
06:15:31.523855164 +0300
@@ -86,7 +86,7 @@
 });
 }
 
-private void import_media (Gst.PbUtils.DiscovererInfo info, Error err) {
+private void import_media (Gst.PbUtils.DiscovererInfo info, Error? err) {
 if (cancellable.is_cancelled 

commit subtitleeditor for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package subtitleeditor for openSUSE:Factory 
checked in at 2018-03-26 13:11:42

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


Package is "subtitleeditor"

Mon Mar 26 13:11:42 2018 rev:2 rq:590803 version:0.54.0

Changes:

--- /work/SRC/openSUSE:Factory/subtitleeditor/subtitleeditor.changes
2017-08-24 18:38:25.575490501 +0200
+++ /work/SRC/openSUSE:Factory/.subtitleeditor.new/subtitleeditor.changes   
2018-03-26 13:11:54.994249075 +0200
@@ -1,0 +2,5 @@
+Sat Mar 24 06:43:43 UTC 2018 - aloi...@gmx.com
+
+- Fixed build wrt enchant and compiler
+
+---



Other differences:
--
++ subtitleeditor.spec ++
--- /var/tmp/diff_new_pack.3MQAna/_old  2018-03-26 13:11:56.742186222 +0200
+++ /var/tmp/diff_new_pack.3MQAna/_new  2018-03-26 13:11:56.742186222 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package subtitleeditor
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define _sover  0
 Name:   subtitleeditor
 Version:0.54.0
@@ -26,13 +27,12 @@
 Url:https://github.com/kitone/subtitleeditor
 Source0:
https://github.com/kitone/subtitleeditor/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  automake
-BuildRequires:  enchant-devel
 BuildRequires:  fdupes
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1500
 BuildRequires:  gcc-c++
 %else
-BuildRequires:  gcc5
-BuildRequires:  gcc5-c++
+BuildRequires:  gcc7
+BuildRequires:  gcc7-c++
 %endif
 BuildRequires:  glibmm2-devel
 BuildRequires:  gstreamer-devel
@@ -43,8 +43,8 @@
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(enchant)
 BuildRequires:  pkgconfig(libxml++-2.6)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Subtitle Editor is a GTK+3 tool to edit subtitles.
@@ -74,10 +74,10 @@
 %setup -q
 
 %build
-%if 0%{?suse_version} <= 1320
-export CC=gcc-5
-export CXX=g++-5
-%endif
+export CC=gcc
+export CXX=g++
+test -x "$(type -p gcc-7)" && export CC=gcc-7
+test -x "$(type -p g++-7)" && export CXX=g++-7
 autoreconf -fiv
 %configure
 make %{?_smp_mflags}
@@ -93,8 +93,8 @@
 %postun -n lib%{name}%{_sover} -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
-%doc ChangeLog COPYING README
+%doc ChangeLog README
+%license COPYING
 %{_bindir}/%{name}
 %{_datadir}/appdata/%{name}.appdata.xml
 %{_datadir}/applications/%{name}.desktop
@@ -113,11 +113,9 @@
 %files lang -f %{name}.lang
 
 %files -n lib%{name}-devel
-%defattr(-,root,root)
 %{_libdir}/lib%{name}.so
 
 %files -n lib%{name}%{_sover}
-%defattr(-,root,root)
 %{_libdir}/lib%{name}.so.%{_sover}*
 
 %changelog




commit java-11-openjdk for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package java-11-openjdk for openSUSE:Factory 
checked in at 2018-03-26 13:10:20

Comparing /work/SRC/openSUSE:Factory/java-11-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-11-openjdk.new (New)


Package is "java-11-openjdk"

Mon Mar 26 13:10:20 2018 rev:6 rq:590761 version:11.0.0.0~6

Changes:

--- /work/SRC/openSUSE:Factory/java-11-openjdk/java-11-openjdk.changes  
2018-03-14 19:40:25.466246943 +0100
+++ /work/SRC/openSUSE:Factory/.java-11-openjdk.new/java-11-openjdk.changes 
2018-03-26 13:10:30.161299418 +0200
@@ -1,0 +2,117 @@
+Fri Mar 23 18:37:43 UTC 2018 - fst...@suse.com
+
+- Update to upstream tag jdk-11+6
+  * Fixes:
++ S8186228: sun/security/krb5/auto/KdcPolicy.java fails with
+  "java.lang.Exception: Does not match. Output is
+  c3c3c3"
++ S8193033: remove terminally deprecated
+  sun.misc.Unsafe.defineClass
++ S8196298: Add null Reader and Writer
++ S8199437: Improve diagnostic system assertion message in
+  com.sun.net.httpserver impl
++ S8199682: Clean up building the saproc library
++ S8199749: Debug symbols are not copied to exploded image on
+  Mac
++ S8199768: jdk/test/lib/compiler/CompilerUtils.java needs to
+  provide more control over compilation
++ S8199792: Wrong license header in XMLLimitAnalyzer.java
++ S8199858: solaris-x86_64 : unpack200 fails linking with SS12u4
++ S8199862: Examine ProxyBuilder::referencedTypes startup cost
++ S8199865: Avoid initializing ShortCache in ProxyGenerator
++ S8199869: Missing copyright headers in nashorn source code
++ S8199884: JDK-8199749 broke build with make 3.81
+
+---
+Tue Mar 20 06:51:13 UTC 2018 - fst...@suse.com
+
+- Update to upstream tag jdk-11+5
+  * Fixes:
++ S8160767: [TEST_BUG]
+  java/awt/Frame/MaximizedToIconified/MaximizedToIconified.java
++ S8182684: Further clarify InputStream#available()
++ S8183554: Add constructors with Charset parameter for
+  FileReader and FileWriter
++ S8187635: On Windows Swing changes keyboard layout on a
+  window activation
++ S8188240: Reflection Proxy should skip static methods
++ S8189230: JDK method:
+  java.lang.Integer.numberOfLeadingZeros(int) can be optimized
++ S8190347: [TESTBUG] Test javax/swing/JWindow/
+  /ShapedAndTranslucentWindows/TranslucentJComboBox.java fails
++ S8190767: if JFrame is maximized on OS X, all new JFrames
+  will be maximized by default
++ S8193017: Import freetype sources into OpenJDK source tree
++ S8193584: (testbug) TestSocketFactory fails intermittently
+  with ConcurrentModificationException
++ S8194767: Regression automated Test
+  'javax/swing/JEditorPane/6917744/bug6917744.java' fails
++ S8194943: Regression automated test 'open/test/jdk/javax/
+  /swing/JInternalFrame/8020708/bug8020708.java' fails
++ S8195738: scroll poistion in ScrollPane is reset after
+  calling validate()
++ S8196435: Regression automated Test 'java/awt/Mouse/
+  /GetMousePositionTest/GetMousePositionWithOverlay.java' fails
++ S8196748: tools/jar tests need to tolerate unrelated warnings
++ S8197785: javax.accessibility.AccessibleBundle will reload
+  the ResourceBundle for every call to toDisplayString
++ S8198406: Test TestAATMorxFont is unstable
++ S8198605: Touch keyboard is shown for a non-focusable text
+  component
++ S8198606: Touch keyboard does not hide, when a text component
+  looses focus
++ S8198613: Test cases result in failure or timeout when run
+  with OpenGL backend
++ S8198777: JList.getPreferredScrollableViewportSize(): fix
+  mistake in doc for height calc
++ S8198889: Clarify the throwing of exceptions from
+  ConstantBootstraps.invoke
++ S8198922: Provide instrumentation for
+  sanity/client/SwingSet/src/ButtonDemoScreenshotTest.java
++ S8198989: Provide more diagnostic IAE messages
++ S8199009: test/jdk/java/util/Locale/SoftKeys.java fails with
+  OutOfMemoryError
++ S8199022: New failures should be added to ProblemList
++ S8199215: Re-examine getFreePort method in test
+  infrastructure library
++ S8199258: BigInteger.bitLength() should explicitly specify
+  behavior when the value is zero
++ S8199329: Remove code that attempts to read bytes after
+  connection reset reported
++ S8199420: Update javadoc tags in java.lang.System and related
++ S8199423: Create builds-infra Mach5 job
++ S8199428: install-file macro fails on filenames with space on
+  Solaris
++ S8199443: Nashorn multithread bottleneck with "use strict"
++ S8199451: Create linux-aarch64 cross-compilation 

commit velum for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package velum for openSUSE:Factory checked 
in at 2018-03-26 13:09:08

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


Package is "velum"

Mon Mar 26 13:09:08 2018 rev:16 rq:590738 
version:3.0.0+dev+git_r691_a1b9bbaa7ca9523c58c3a76c31a619683d3e7d35

Changes:

--- /work/SRC/openSUSE:Factory/velum/velum.changes  2018-03-22 
12:12:14.602347940 +0100
+++ /work/SRC/openSUSE:Factory/.velum.new/velum.changes 2018-03-26 
13:10:05.330192231 +0200
@@ -1,0 +2,80 @@
+Fri Mar 23 15:34:53 UTC 2018 - containers-bugow...@suse.de
+
+- Commit ccfc31c by Vítor Avelino vavel...@suse.com
+ Add ability to remove nodes.
+ 
+ This PR adds a `Remove` link to the interface, which will execute the
+ `orch.removal` orchestration in salt with the `minion_id` of the selected
+ node to be removed.
+ 
+ Master nodes are not removable yet.
+ 
+ feature#node_removal
+ 
+ Signed-off-by: Vítor Avelino  Co-authored-by: Rafael
+ Fernández López 
+
+
+---
+Fri Mar 23 12:46:37 UTC 2018 - containers-bugow...@suse.de
+
+- Commit 184e46f by Michal Jura mj...@suse.com
+ Run rake task and import Cloud Provider config file
+ 
+ Commit 86ae24f by Michal Jura mj...@suse.com
+ Add rake task to import CPI config
+
+
+---
+Thu Mar 22 16:45:53 UTC 2018 - containers-bugow...@suse.de
+
+- Commit 1d2b129 by Vítor Avelino vavel...@suse.com
+ Improved CPI behavior with cloud frameworks
+ 
+ If a cloud framework is previously set, CPI value, if enabled, would be based
+ on what was set.
+ 
+ For example, if cloud:framework pillar value is "ec2", we would set "ec2" as
+ the CPI value if enabled. The same be applied for GCE and Azure.
+ 
+ Otherwise, "openstack" would be the default value for CPI if enabled.
+ 
+ feature#cpi
+ 
+ Signed-off-by: Vítor Avelino 
+
+
+---
+Thu Mar 22 13:49:00 UTC 2018 - containers-bugow...@suse.de
+
+- Commit 8f752e8 by Vítor Avelino cont...@vitoravelino.me
+ ui: allowed master node to be added to the cluster
+ 
+ So far we only allowed workers to be added to the cluster through the
+ unassigned nodes page.
+ 
+ With this patch, we are now allowing the users to select the roles of the
+ nodes they want to add to the cluster. Very similar to what is available from
+ the discovery bootstrap page.
+ 
+ This feature keep forcing the user to respect the contrainst of having an odd
+ number of master nodes so we have a stable topology.
+ 
+ feature#add_master_node
+ 
+ Signed-off-by: Vítor Avelino 
+
+
+---
+Thu Mar 22 11:09:21 UTC 2018 - containers-bugow...@suse.de
+
+- Commit 7a13616 by Vítor Avelino cont...@vitoravelino.me
+ js: improved hostnames validation and workflow
+ 
+ This is a follow-up of 8017753. After QA, this fixes an issue and improves
+ the workflow of accepting pending nodes.
+ 
+ Signed-off-by: Vítor Avelino 
+
+
+---



Other differences:
--
++ velum.spec ++
--- /var/tmp/diff_new_pack.yUUfbY/_old  2018-03-26 13:10:07.650108819 +0200
+++ /var/tmp/diff_new_pack.yUUfbY/_new  2018-03-26 13:10:07.654108675 +0200
@@ -23,7 +23,7 @@
 # Version:  1.0.0
 # %%define branch 1.0.0
 
-Version:3.0.0+dev+git_r680_b67a614f1900c58674e0de37797339511f040afe
+Version:3.0.0+dev+git_r691_a1b9bbaa7ca9523c58c3a76c31a619683d3e7d35
 Release:0
 %define branch master
 Summary:Dashboard for CaasP
@@ -96,7 +96,7 @@
 %description
 velum is the dashboard for CaasP to manage and deploy kubernetes clusters on 
top of MicroOS
 
-This package has been built with commit 
b67a614f1900c58674e0de37797339511f040afe from branch master on date Wed, 21 Mar 
2018 14:52:41 +
+This package has been built with commit 
a1b9bbaa7ca9523c58c3a76c31a619683d3e7d35 from branch master on date Fri, 23 Mar 
2018 15:34:06 +
 
 %prep
 %setup -q -n velum-%{branch}

++ 0_set_default_salt_events_alter_time_column_value.rpm.patch ++
--- /var/tmp/diff_new_pack.yUUfbY/_old  2018-03-26 13:10:07.698107093 +0200
+++ /var/tmp/diff_new_pack.yUUfbY/_new  2018-03-26 13:10:07.702106949 +0200
@@ -1,8 +1,8 @@
 diff --git a/db/schema.rb b/db/schema.rb
-index 80fdb6b..d14f1cb 100644
+index a1cc256..83dea1e 100644
 --- a/db/schema.rb
 +++ b/db/schema.rb
-@@ -92,7 +92,7 @@ ActiveRecord::Schema.define(version: 20180221142221) do
+@@ -93,7 +93,7 @@ 

commit neomutt for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package neomutt for openSUSE:Factory checked 
in at 2018-03-26 13:09:59

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


Package is "neomutt"

Mon Mar 26 13:09:59 2018 rev:4 rq:590747 version:20180323

Changes:

--- /work/SRC/openSUSE:Factory/neomutt/neomutt.changes  2018-03-01 
12:07:51.705984139 +0100
+++ /work/SRC/openSUSE:Factory/.neomutt.new/neomutt.changes 2018-03-26 
13:10:10.586003258 +0200
@@ -1,0 +2,38 @@
+Fri Mar 23 00:00:00 CET 2018 - dste...@suse.cz
+
+- update to 20180323
+  * Features
+- unify logging/messaging
+- add alert (blink) colors
+  * Contrib
+- Vim syntax for NeoMutt log files
+  * Bug Fixes
+- Fix progress bar range
+- notmuch: stop if db open fails
+- Improve index color cache flushing behavior
+- lua: fix crash when setting a string
+  * Translations
+- Update Czech translation (100%)
+- Update German translation (100%)
+- Update Polish translation (94%)
+- Update Portuguese (BR) translation (100%)
+- Update Spanish translation (64%)
+- Update Turkish translation (75%)
+- Merge simliar messages
+  * Docs
+- Clarify precedence of settings in config files
+- Fix subjectrx example in the manual
+  * Website
+- Update Gentoo distro page
+- Devel: Static analysis
+  * Build
+- Support —with-sysroot configure arg
+- Expose EXTRA_CFLAGS_FOR_BUILD and EXTRA_LDFLAGS_FOR_BUIlD
+- Update to latest autosetup
+- Make sure git_ver.h doesn't eat random 'g's out of tag names
+  * Code
+- Refactor to reduce complexity
+- Refactor to reduce variables' scope
+- Sort functions/config to make docs more legible
+
+---

Old:

  neomutt-20180223.tar.gz

New:

  neomutt-20180323.tar.gz



Other differences:
--
++ neomutt.spec ++
--- /var/tmp/diff_new_pack.p5fjj7/_old  2018-03-26 13:10:12.997916537 +0200
+++ /var/tmp/diff_new_pack.p5fjj7/_new  2018-03-26 13:10:13.001916393 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   neomutt
-Version:20180223
+Version:20180323
 Release:0
 Summary:A command line mail reader based on Mutt
 License:GPL-2.0-or-later

++ neomutt-20180223.tar.gz -> neomutt-20180323.tar.gz ++
 245032 lines of diff (skipped)




commit caasp-container-manifests for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package caasp-container-manifests for 
openSUSE:Factory checked in at 2018-03-26 13:08:37

Comparing /work/SRC/openSUSE:Factory/caasp-container-manifests (Old)
 and  /work/SRC/openSUSE:Factory/.caasp-container-manifests.new (New)


Package is "caasp-container-manifests"

Mon Mar 26 13:08:37 2018 rev:4 rq:590737 version:3.0.0+git_r266_3eff585

Changes:

--- 
/work/SRC/openSUSE:Factory/caasp-container-manifests/caasp-container-manifests.changes
  2018-03-19 23:37:51.902464088 +0100
+++ 
/work/SRC/openSUSE:Factory/.caasp-container-manifests.new/caasp-container-manifests.changes
 2018-03-26 13:09:08.700228314 +0200
@@ -1,0 +2,23 @@
+Fri Mar 23 11:37:36 UTC 2018 - containers-bugow...@suse.de
+
+- Commit 5aeb3dc by Michal Jura mj...@suse.com
+ Mount /etc/caasp/cpi directory to velum
+
+
+---
+Thu Mar 22 15:53:39 UTC 2018 - containers-bugow...@suse.de
+
+- Commit d429409 by Thorsten Kukuk ku...@thkukuk.de
+ Move /etc/issue.d/90-velum.conf to /run/issue.d/80-velum.conf (it's only
+ valid until next reboot) and call issue-generator at the end
+ [bsc#1047192].
+
+
+---
+Thu Mar 22 12:03:59 UTC 2018 - containers-bugow...@suse.de
+
+- Commit 7b30b38 by Thorsten Kukuk ku...@thkukuk.de
+ ifconfig is deprecated since years and removed from SLE15
+
+
+---



Other differences:
--
++ caasp-container-manifests.spec ++
--- /var/tmp/diff_new_pack.7WZN44/_old  2018-03-26 13:09:48.358802434 +0200
+++ /var/tmp/diff_new_pack.7WZN44/_new  2018-03-26 13:09:48.366802147 +0200
@@ -29,7 +29,7 @@
 %endif
 
 Name:   caasp-container-manifests
-Version:3.0.0+git_r260_831e0be
+Version:3.0.0+git_r266_3eff585
 Release:0
 Summary:Manifest file templates for containers on controller node
 License:Apache-2.0

++ master.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/caasp-container-manifests-master/admin-node-setup.sh 
new/caasp-container-manifests-master/admin-node-setup.sh
--- old/caasp-container-manifests-master/admin-node-setup.sh2018-03-15 
18:07:05.0 +0100
+++ new/caasp-container-manifests-master/admin-node-setup.sh2018-03-23 
12:37:30.0 +0100
@@ -119,9 +119,11 @@
 VELUM_CRT_FINGERPRINT_SHA1=$(openssl x509 -noout -in /etc/pki/velum.crt 
-fingerprint -sha1 | cut -d= -f2)
 VELUM_CRT_FINGERPRINT_SHA256=$(openssl x509 -noout -in /etc/pki/velum.crt 
-fingerprint -sha256 | cut -d= -f2)
 
+# Remove old /etc/issue.d/90-velum.conf to not have two files
+test -f /etc/issue.d/90-velum.conf && rm -f /etc/issue.d/90-velum.conf
 # Generate issue file with Velum details
 # https://bugzilla.suse.com/show_bug.cgi?id=1031682
-cat < /etc/issue.d/90-velum.conf
+cat < /run/issue.d/80-velum.conf
 
 You can manage your cluster by opening the web application running on
 port 443 of this node from your browser: https://
@@ -132,3 +134,5 @@
 Velum SHA1 fingerprint:   $VELUM_CRT_FINGERPRINT_SHA1
 Velum SHA256 fingerprint: $VELUM_CRT_FINGERPRINT_SHA256
 EOF
+# Call issue-generator to use the new issue.d snippet
+/usr/sbin/issue-generator
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/caasp-container-manifests-master/gen-certs.sh 
new/caasp-container-manifests-master/gen-certs.sh
--- old/caasp-container-manifests-master/gen-certs.sh   2018-03-15 
18:07:05.0 +0100
+++ new/caasp-container-manifests-master/gen-certs.sh   2018-03-23 
12:37:30.0 +0100
@@ -152,7 +152,7 @@
 }
 
 ip_addresses() {
-ifconfig | grep -Po 'inet addr:\K[\d.]+' | grep -v '127.0.0.1' | tr '\n' ' 
'
+ip address show | grep -Po 'inet \K[\d.]+' | grep -v '127.0.0.1' | tr '\n' 
' '
 }
 
 all_hostnames=$(echo "$(hostname) $(hostname --fqdn) $(hostnamectl 
--transient) $(hostnamectl --static) \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/caasp-container-manifests-master/manifests/public.yaml 
new/caasp-container-manifests-master/manifests/public.yaml
--- old/caasp-container-manifests-master/manifests/public.yaml  2018-03-15 
18:07:05.0 +0100
+++ new/caasp-container-manifests-master/manifests/public.yaml  2018-03-23 
12:37:30.0 +0100
@@ -293,6 +293,8 @@
 - mountPath: /var/lib/misc/infra-secrets
   name: infra-secrets
   readOnly: True
+- mountPath: /etc/caasp/cpi
+  name: caasp-cpi-configs
 args: ["bin/init"]
   - name: velum-api
 image: sles12/velum:__TAG__
@@ -553,3 +555,6 @@
   - name: public-cloud-config
 

commit aubio for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package aubio for openSUSE:Factory checked 
in at 2018-03-26 13:08:26

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


Package is "aubio"

Mon Mar 26 13:08:26 2018 rev:22 rq:590732 version:0.4.6

Changes:

--- /work/SRC/openSUSE:Factory/aubio/aubio.changes  2018-01-02 
16:34:53.502396067 +0100
+++ /work/SRC/openSUSE:Factory/.aubio.new/aubio.changes 2018-03-26 
13:08:36.161398177 +0200
@@ -1,0 +2,6 @@
+Fri Mar 23 16:41:03 CET 2018 - ti...@suse.de
+
+- Fix divide-by-zero at wavread (CVE-2017-17054, bsc#1070399):
+  aubio-wavread-input-validation.patch
+
+---

New:

  aubio-wavread-input-validation.patch



Other differences:
--
++ aubio.spec ++
--- /var/tmp/diff_new_pack.hmRmdx/_old  2018-03-26 13:08:38.589310887 +0200
+++ /var/tmp/diff_new_pack.hmRmdx/_new  2018-03-26 13:08:38.593310744 +0200
@@ -19,7 +19,7 @@
 Name:   aubio
 %define libpkgname libaubio5
 Summary:Library for real-time audio labelling
-License:GPL-3.0+
+License:GPL-3.0-or-later
 Group:  Development/Libraries/C and C++
 BuildRequires:  alsa-devel
 BuildRequires:  doxygen
@@ -41,6 +41,7 @@
 Source: http://aubio.org/pub/%{name}-%{version}.tar.bz2
 Source1:http://aubio.org/pub/%{name}-%{version}.tar.bz2.asc
 Source99:   baselibs.conf
+Patch1: aubio-wavread-input-validation.patch
 Url:http://aubio.org
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define debug_package_requires %{libpkgname} = %{version}-%{release}
@@ -82,6 +83,7 @@
 
 %prep
 %setup -q
+%patch1 -p1
 sed -e "s,/lib,/%_lib," src/wscript_build > src/wscript_build.new
 diff -u src/wscript_build src/wscript_build.new || :
 mv src/wscript_build.new src/wscript_build

++ python-aubio.spec ++
--- /var/tmp/diff_new_pack.hmRmdx/_old  2018-03-26 13:08:38.669308012 +0200
+++ /var/tmp/diff_new_pack.hmRmdx/_new  2018-03-26 13:08:38.673307867 +0200
@@ -21,7 +21,7 @@
 Version:0.4.6
 Release:0
 Summary:A collection of tools for music analysis
-License:GPL-3.0+
+License:GPL-3.0-or-later
 Group:  Development/Languages/Python
 Url:http://aubio.org/
 Source: http://aubio.org/pub/aubio-%{version}.tar.bz2


++ aubio-wavread-input-validation.patch ++
>From 25ecb7338cebc5b8c79092347839c78349ec33f1 Mon Sep 17 00:00:00 2001
From: Paul Brossier 
Date: Tue, 6 Feb 2018 22:32:59 +0100
Subject: [PATCH] src/io/source_wavread.c: add some input validation (closes:
 #158)

---
 src/io/source_wavread.c |   20 
 1 file changed, 20 insertions(+)

--- a/src/io/source_wavread.c
+++ b/src/io/source_wavread.c
@@ -189,6 +189,26 @@ aubio_source_wavread_t * new_aubio_sourc
   // BitsPerSample
   bytes_read += fread(buf, 1, 2, s->fid);
   bitspersample = read_little_endian(buf, 2);
+
+  if ( channels == 0 ) {
+AUBIO_ERR("source_wavread: Failed opening %s (number of channels can not 
be 0)\n", s->path);
+goto beach;
+  }
+
+  if ( sr == 0 ) {
+AUBIO_ERR("source_wavread: Failed opening %s (samplerate can not be 0)\n", 
s->path);
+goto beach;
+  }
+
+  if ( byterate == 0 ) {
+AUBIO_ERR("source_wavread: Failed opening %s (byterate can not be 0)\n", 
s->path);
+goto beach;
+  }
+
+  if ( bitspersample == 0 ) {
+AUBIO_ERR("source_wavread: Failed opening %s (bitspersample can not be 
0)\n", s->path);
+goto beach;
+  }
 #if 0
   if ( bitspersample != 16 ) {
 AUBIO_ERR("source_wavread: can not process %dbit file %s\n",



commit yast2-iscsi-lio-server for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package yast2-iscsi-lio-server for 
openSUSE:Factory checked in at 2018-03-26 13:08:17

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


Package is "yast2-iscsi-lio-server"

Mon Mar 26 13:08:17 2018 rev:25 rq:590728 version:4.0.6

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-iscsi-lio-server/yast2-iscsi-lio-server.changes
2018-02-14 10:50:56.595149521 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-iscsi-lio-server.new/yast2-iscsi-lio-server.changes
   2018-03-26 13:08:24.949801257 +0200
@@ -1,0 +2,15 @@
+Fri Mar 23 07:24:02 UTC 2018 - ls...@suse.com
+
+- bsc#1086029
+  Handle the case that users want to delete a LUNs which
+  are not created yet(LUNs have data structure in memory but
+  not execute command to create them).
+
+---
+Thu Mar 22 06:11:48 UTC 2018 - ls...@suse.com
+
+- bsc#1085421
+  Handle the case that the storage of a LUN get disconnected
+  accidentally.
+
+---

Old:

  yast2-iscsi-lio-server-4.0.4.tar.bz2

New:

  yast2-iscsi-lio-server-4.0.6.tar.bz2



Other differences:
--
++ yast2-iscsi-lio-server.spec ++
--- /var/tmp/diff_new_pack.xbZawZ/_old  2018-03-26 13:08:26.325751789 +0200
+++ /var/tmp/diff_new_pack.xbZawZ/_new  2018-03-26 13:08:26.333751502 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-iscsi-lio-server
-Version:4.0.4
+Version:4.0.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-iscsi-lio-server-4.0.4.tar.bz2 -> 
yast2-iscsi-lio-server-4.0.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-iscsi-lio-server-4.0.4/package/yast2-iscsi-lio-server.changes 
new/yast2-iscsi-lio-server-4.0.6/package/yast2-iscsi-lio-server.changes
--- old/yast2-iscsi-lio-server-4.0.4/package/yast2-iscsi-lio-server.changes 
2018-02-13 10:01:09.0 +0100
+++ new/yast2-iscsi-lio-server-4.0.6/package/yast2-iscsi-lio-server.changes 
2018-03-23 16:26:06.0 +0100
@@ -1,4 +1,19 @@
 ---
+Fri Mar 23 07:24:02 UTC 2018 - ls...@suse.com
+
+- bsc#1086029
+  Handle the case that users want to delete a LUNs which
+  are not created yet(LUNs have data structure in memory but
+  not execute command to create them).
+
+---
+Thu Mar 22 06:11:48 UTC 2018 - ls...@suse.com
+
+- bsc#1085421
+  Handle the case that the storage of a LUN get disconnected
+  accidentally.
+
+---
 Mon Feb 12 13:59:06 UTC 2018 - ls...@suse.com
 
 - fate#319238
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-iscsi-lio-server-4.0.4/package/yast2-iscsi-lio-server.spec 
new/yast2-iscsi-lio-server-4.0.6/package/yast2-iscsi-lio-server.spec
--- old/yast2-iscsi-lio-server-4.0.4/package/yast2-iscsi-lio-server.spec
2018-02-13 10:01:09.0 +0100
+++ new/yast2-iscsi-lio-server-4.0.6/package/yast2-iscsi-lio-server.spec
2018-03-23 16:26:06.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-iscsi-lio-server
-Version:4.0.4
+Version:4.0.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-iscsi-lio-server-4.0.4/src/include/iscsi-lio-server/TargetData.rb 
new/yast2-iscsi-lio-server-4.0.6/src/include/iscsi-lio-server/TargetData.rb
--- old/yast2-iscsi-lio-server-4.0.4/src/include/iscsi-lio-server/TargetData.rb 
2018-02-13 10:01:09.0 +0100
+++ new/yast2-iscsi-lio-server-4.0.6/src/include/iscsi-lio-server/TargetData.rb 
2018-03-23 16:26:06.0 +0100
@@ -285,6 +285,10 @@
 end
 
 class TargetData
+  include Yast::UIShortcuts
+  include Yast::I18n
+  include Yast::Logger
+
   RE_IQN_TARGET = /iqn\.\d{4}\-\d{2}\.[\w\.:\-]+\s\.+\s\[TPGs:\s\d+\]/
   RE_IQN_NAME = /iqn\.\d{4}-\d{2}\.[\w\.:\-]+/
 
@@ -462,7 +466,14 @@
 lun_num_int = lun_num[3,lun_num.length]
 lun_path_tmp = RE_LUN_PATH.match(line).to_s
 lun_path = lun_path_tmp[1,lun_path_tmp.length-2]
-@current_tpg.store_lun(lun_num,[rand(), lun_num_int, lun_name, 
lun_path, File.ftype(lun_path)])
+if !File.exist?(lun_path)
+  msg = format(_("Cannot access the storage %s.\n" \
+"Please consider reconnecting the storage or\n" \
+"deleting then recreating the 

commit python-bokeh for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package python-bokeh for openSUSE:Factory 
checked in at 2018-03-26 13:07:09

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


Package is "python-bokeh"

Mon Mar 26 13:07:09 2018 rev:7 rq:590699 version:0.12.14

Changes:

--- /work/SRC/openSUSE:Factory/python-bokeh/python-bokeh.changes
2018-02-14 09:46:23.551250439 +0100
+++ /work/SRC/openSUSE:Factory/.python-bokeh.new/python-bokeh.changes   
2018-03-26 13:07:20.112132232 +0200
@@ -1,0 +2,5 @@
+Thu Mar 22 20:43:47 UTC 2018 - toddrme2...@gmail.com
+
+- Add "packaging" dependency
+
+---



Other differences:
--
++ python-bokeh.spec ++
--- /var/tmp/diff_new_pack.TsqzVh/_old  2018-03-26 13:08:04.250545429 +0200
+++ /var/tmp/diff_new_pack.TsqzVh/_new  2018-03-26 13:08:04.254545285 +0200
@@ -33,6 +33,7 @@
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module jupyter_ipython}
 BuildRequires:  %{python_module numpy >= 1.7.1}
+BuildRequires:  %{python_module packaging >= 16.8}
 BuildRequires:  %{python_module python-dateutil >= 2.1}
 BuildRequires:  %{python_module requests >= 1.2.3}
 BuildRequires:  %{python_module setuptools}
@@ -53,6 +54,7 @@
 Requires:   python-Jinja2 >= 2.7
 Requires:   python-PyYAML >= 3.10
 Requires:   python-numpy >= 1.7.1
+Requires:   python-packaging >= 16.8
 Requires:   python-python-dateutil >= 2.1
 Requires:   python-requests >= 1.2.3
 Requires:   python-six >= 1.5.2
@@ -64,7 +66,6 @@
 Recommends: python-icalendar
 Recommends: python-vincent
 BuildConflicts: python-buildservice-tweak
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(post): update-alternatives
 Requires(preun): update-alternatives
 BuildArch:  noarch




commit rubygem-loofah for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package rubygem-loofah for openSUSE:Factory 
checked in at 2018-03-26 13:07:03

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


Package is "rubygem-loofah"

Mon Mar 26 13:07:03 2018 rev:7 rq:590676 version:2.2.2

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-loofah/rubygem-loofah.changes
2018-03-22 12:08:51.621623304 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-loofah.new/rubygem-loofah.changes   
2018-03-26 13:07:08.316556279 +0200
@@ -1,0 +2,8 @@
+Fri Mar 23 10:15:28 UTC 2018 - dk...@suse.com
+
+- update to version 2.2.2
+
+  * Make public Loofah::HTML5::Scrub.force_correct_attribute_escaping!, which 
was previously a private method.
+This is so that downstream gems (like rails-html-sanitizer) can use this 
logic directly for their own attribute scrubbers should they need to address 
CVE-2018-8048.
+
+---

Old:

  loofah-2.2.1.gem

New:

  loofah-2.2.2.gem



Other differences:
--
++ rubygem-loofah.spec ++
--- /var/tmp/diff_new_pack.vjayN4/_old  2018-03-26 13:07:09.952497469 +0200
+++ /var/tmp/diff_new_pack.vjayN4/_new  2018-03-26 13:07:09.952497469 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-loofah
-Version:2.2.1
+Version:2.2.2
 Release:0
 %define mod_name loofah
 %define mod_full_name %{mod_name}-%{version}

++ loofah-2.2.1.gem -> loofah-2.2.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2018-03-19 21:22:58.0 +0100
+++ new/CHANGELOG.md2018-03-22 16:10:40.0 +0100
@@ -1,5 +1,13 @@
 # Changelog
 
+## 2.2.2 / 2018-03-22
+
+Make public `Loofah::HTML5::Scrub.force_correct_attribute_escaping!`,
+which was previously a private method. This is so that downstream gems
+(like rails-html-sanitizer) can use this logic directly for their own
+attribute scrubbers should they need to address CVE-2018-8048.
+
+
 ## 2.2.1 / 2018-03-19
 
 Addresses CVE-2018-8048. Loofah allowed non-whitelisted attributes to be 
present in sanitized output when input with specially-crafted HTML fragments.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/loofah/html5/scrub.rb 
new/lib/loofah/html5/scrub.rb
--- old/lib/loofah/html5/scrub.rb   2018-03-19 21:22:58.0 +0100
+++ new/lib/loofah/html5/scrub.rb   2018-03-22 16:10:40.0 +0100
@@ -101,8 +101,6 @@
   Crass::Parser.stringify sanitized_tree
 end
 
-private
-
 #
 #  libxml2 >= 2.9.2 fails to escape comments within some attributes.
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/loofah.rb new/lib/loofah.rb
--- old/lib/loofah.rb   2018-03-19 21:22:58.0 +0100
+++ new/lib/loofah.rb   2018-03-22 16:10:40.0 +0100
@@ -28,7 +28,7 @@
 #
 module Loofah
   # The version of Loofah you are using
-  VERSION = '2.2.1'
+  VERSION = '2.2.2'
 
   class << self
 # Shortcut for Loofah::HTML::Document.parse
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2018-03-19 21:22:58.0 +0100
+++ new/metadata2018-03-22 16:10:40.0 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: loofah
 version: !ruby/object:Gem::Version
-  version: 2.2.1
+  version: 2.2.2
 platform: ruby
 authors:
 - Mike Dalessio
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2018-03-19 00:00:00.0 Z
+date: 2018-03-22 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: nokogiri
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/test/integration/test_ad_hoc.rb 
new/test/integration/test_ad_hoc.rb
--- old/test/integration/test_ad_hoc.rb 2018-03-19 21:22:58.0 +0100
+++ new/test/integration/test_ad_hoc.rb 2018-03-22 16:10:40.0 +0100
@@ -231,7 +231,7 @@
 attributes = reparsed.at_css(config[:tag]).attribute_nodes
 
 assert_equal [config[:attr]], attributes.collect(&:name)
-if Nokogiri::VersionInfo.new.libxml2?
+if Nokogiri::VersionInfo.instance.libxml2?
   if config[:unescaped]
 #
 #  this attribute was emitted wrapped in single-quotes, so a 
double quote is A-OK.




commit iprutils for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package iprutils for openSUSE:Factory 
checked in at 2018-03-26 13:05:41

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


Package is "iprutils"

Mon Mar 26 13:05:41 2018 rev:60 rq:590594 version:2.4.15

Changes:

--- /work/SRC/openSUSE:Factory/iprutils/iprutils.changes2018-03-07 
10:31:17.373811191 +0100
+++ /work/SRC/openSUSE:Factory/.iprutils.new/iprutils.changes   2018-03-26 
13:06:59.644868022 +0200
@@ -4 +4 @@
-- Fix microcode download (bsc#1082712)
+- Fix microcode download (bsc#1082712) (bsc#1081558)



Other differences:
--



commit kubernetes-salt for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package kubernetes-salt for openSUSE:Factory 
checked in at 2018-03-26 13:06:58

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


Package is "kubernetes-salt"

Mon Mar 26 13:06:58 2018 rev:8 rq:590602 version:3.0.0+git_r666_603e9dc

Changes:

--- /work/SRC/openSUSE:Factory/kubernetes-salt/kubernetes-salt.changes  
2018-03-22 12:12:13.138400408 +0100
+++ /work/SRC/openSUSE:Factory/.kubernetes-salt.new/kubernetes-salt.changes 
2018-03-26 13:07:02.288772975 +0200
@@ -1,0 +2,52 @@
+Thu Mar 22 16:53:56 UTC 2018 - containers-bugow...@suse.de
+
+- Commit 0901ff0 by Kiall Mac Innes ki...@macinnes.ie
+ Increase Kube-DNS replicas to 3
+ 
+ Having only a single Kube-DNS replica means that, during upgrades or other
+ failure scenarios, Kube-DNS will not be functional. A value of 3 matches what
+ we use for Dex.
+ 
+ Commit 2c42773 by Kiall Mac Innes ki...@macinnes.ie
+ Dex should not have cluster-admin
+ 
+ Dex does not require cluster admin access. Instead, it should use a new role
+ defined with just the permissions Dex requires.
+ 
+ Commit 38e654d by Kiall Mac Innes ki...@macinnes.ie
+ Kube-DNS should not have cluster-admin
+ 
+ Kubernetes DNS service does not require cluster admin access. Instead, it
+ should use the build in system:kube-dns role.
+ 
+ Commit 9dec359 by Kiall Mac Innes ki...@macinnes.ie
+ Remove duplicated Dex ClusterRoleBinding
+ 
+ The ClusterRoleBinding's for Dex were duplicated - this removes the extra
+ copy.
+ 
+ Commit 0aebc0d by Kiall Mac Innes ki...@macinnes.ie
+ Match addons/{dns,tiller} patterns to addons/dex
+ 
+ This pattern is cleaner, and lets Kubernetes do more of the hard work related
+ to applying and updating manifests changes. This will be further extended to
+ CNI/flannel soon.
+
+
+---
+Thu Mar 22 11:54:08 UTC 2018 - containers-bugow...@suse.de
+
+- Commit 3b3f0ae by Rafael Fernández López eresli...@ereslibre.es
+ Refresh modules before we call to any `sls`, they might use undiscovered
+ modules
+ 
+ Commit 8b49308 by Rafael Fernández López eresli...@ereslibre.es
+ When we explicitly run `haproxy` sls in the update, run `etc-hosts` too.
+ 
+ During a rename, it might happen that `haproxy` refuses to start because it
+ cannot resolve the new names `nodename.infra.caasp.local` in the
+ configuration because its
+ `/etc/hosts` file hasn't been updated yet.
+
+
+---



Other differences:
--
++ kubernetes-salt.spec ++
--- /var/tmp/diff_new_pack.nF9Tw8/_old  2018-03-26 13:07:04.420696334 +0200
+++ /var/tmp/diff_new_pack.nF9Tw8/_new  2018-03-26 13:07:04.424696190 +0200
@@ -32,7 +32,7 @@
 
 Name:   kubernetes-salt
 %define gitrepo salt
-Version:3.0.0+git_r657_c294782
+Version:3.0.0+git_r666_603e9dc
 Release:0
 BuildArch:  noarch
 Summary:Production-Grade Container Scheduling and Management

++ master.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/salt-master/pillar/params.sls 
new/salt-master/pillar/params.sls
--- old/salt-master/pillar/params.sls   2018-03-21 18:10:02.0 +0100
+++ new/salt-master/pillar/params.sls   2018-03-22 17:53:50.0 +0100
@@ -46,7 +46,7 @@
 dns:
   cluster_ip: '172.24.0.2'
   domain: 'cluster.local'
-  replicas:   '1'
+  replicas:   '3'
 
 # user and group for running services and some other stuff...
 kube_user:'kube'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/salt-master/salt/addons/dex/manifests/05-clusterrole.yaml 
new/salt-master/salt/addons/dex/manifests/05-clusterrole.yaml
--- old/salt-master/salt/addons/dex/manifests/05-clusterrole.yaml   
1970-01-01 01:00:00.0 +0100
+++ new/salt-master/salt/addons/dex/manifests/05-clusterrole.yaml   
2018-03-22 17:53:50.0 +0100
@@ -0,0 +1,12 @@
+---
+apiVersion: rbac.authorization.k8s.io/v1beta1
+kind: ClusterRole
+metadata:
+  name: suse:caasp:dex
+rules:
+- apiGroups: ["dex.coreos.com"]
+  resources: ["*"]
+  verbs: ["*"]
+- apiGroups: ["apiextensions.k8s.io"]
+  resources: ["customresourcedefinitions"]
+  verbs: ["create"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/salt-master/salt/addons/dex/manifests/10-clusterrolebinding.yaml 
new/salt-master/salt/addons/dex/manifests/10-clusterrolebinding.yaml
--- old/salt-master/salt/addons/dex/manifests/10-clusterrolebinding.yaml
2018-03-21 18:10:02.0 +0100
+++ 

commit crash for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package crash for openSUSE:Factory checked 
in at 2018-03-26 13:05:30

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


Package is "crash"

Mon Mar 26 13:05:30 2018 rev:148 rq:590461 version:7.2.1

Changes:

--- /work/SRC/openSUSE:Factory/crash/crash.changes  2018-02-12 
10:15:16.473376433 +0100
+++ /work/SRC/openSUSE:Factory/.crash.new/crash.changes 2018-03-26 
13:06:34.973754920 +0200
@@ -1,0 +2,19 @@
+Mon Mar 19 20:42:50 UTC 2018 - dm...@suse.com
+
+- Upgraded to 7.2.1 because it includes the fixes to support
+  several core cases that recently were caused tofail to open.
+  As a result, removed patches that were already superceded by
+  7.2.1 source.
+
+  Removed:
+crash-ppc64-book3s-update-hash-page-table-geometry.patch
+crash-x86_64_kvtop-usable-symtab_init.patch
+
crash-ppc64-ensure-chosen-stack-symbol-relates-to-an-actual-backtrace.patch
+crash-fix-error-cannot-resolve-schedulers-0001.patch
+crash-fix-error-cannot-resolve-schedulers-0002.patch
+crash-extend-direct-mapping-to-5TB.patch
+
+  Modified:
+   crash-allow-use-of-sadump-captured-KASLR-kernel.patch 
+
+---

Old:

  crash-7.2.0.tar.gz
  crash-extend-direct-mapping-to-5TB.patch
  crash-fix-error-cannot-resolve-schedulers-0001.patch
  crash-fix-error-cannot-resolve-schedulers-0002.patch
  crash-ppc64-book3s-update-hash-page-table-geometry.patch
  crash-ppc64-ensure-chosen-stack-symbol-relates-to-an-actual-backtrace.patch
  crash-x86_64_kvtop-usable-symtab_init.patch

New:

  crash-7.2.1.tar.gz



Other differences:
--
++ crash.spec ++
--- /var/tmp/diff_new_pack.UaFohm/_old  2018-03-26 13:06:44.297419747 +0200
+++ /var/tmp/diff_new_pack.UaFohm/_new  2018-03-26 13:06:44.301419604 +0200
@@ -54,9 +54,9 @@
 %endif
 Url:http://people.redhat.com/anderson/
 Summary:Crash utility for live systems; netdump, diskdump, LKCD or 
mcore dumpfiles
-License:GPL-3.0+ and GFDL-1.2
+License:GPL-3.0-or-later AND GFDL-1.2-only
 Group:  Development/Tools/Debuggers
-Version:7.2.0
+Version:7.2.1
 Release:0
 Source: %{name}-%{version}.tar.gz
 Source2:crash_whitepaper-%{whitepaper_version}.tar.bz2
@@ -83,13 +83,7 @@
 Patch15:%{name}_enable_snappy_support.patch
 Patch16:eppic-support-arm64.patch
 Patch18:%{name}-stop_read_error_when_intent_is_retry.patch
-Patch19:%{name}-ppc64-book3s-update-hash-page-table-geometry.patch
-Patch20:%{name}-x86_64_kvtop-usable-symtab_init.patch
 Patch21:%{name}-allow-use-of-sadump-captured-KASLR-kernel.patch
-Patch22:
%{name}-ppc64-ensure-chosen-stack-symbol-relates-to-an-actual-backtrace.patch
-Patch23:%{name}-fix-error-cannot-resolve-schedulers-0001.patch
-Patch24:%{name}-fix-error-cannot-resolve-schedulers-0002.patch
-Patch25:%{name}-extend-direct-mapping-to-5TB.patch
 Patch90:%{name}-sial-ps-2.6.29.diff
 BuildRequires:  bison
 BuildRequires:  flex
@@ -110,7 +104,7 @@
 BuildRequires:  kernel-syms
 BuildRequires:  module-init-tools
 %if 0%{?buildrt}
-%if ! 0%{?build_crash_on_obs}
+%if ! 0%{?build_crash_on_obs}
 BuildRequires:  kernel-syms-rt
 %endif
 %endif
@@ -148,7 +142,7 @@
 %package doc
 Requires:   %{name} = %{version}
 Summary:Documentation for Crash
-License:GFDL-1.2
+License:GFDL-1.2-only
 Group:  Development/Tools/Debuggers
 
 %description doc
@@ -163,7 +157,7 @@
 %package devel
 Requires:   %{name} = %{version}
 Summary:Development files for crash
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Development/Tools/Debuggers
 
 %description devel
@@ -190,7 +184,7 @@
 Obsoletes:  %{name}-sial < %{version}
 %endif
 Summary:Embeddable Pre-Processor and Interpreter for C extension for 
crash
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Development/Tools/Debuggers
 
 %description eppic
@@ -212,7 +206,7 @@
 %package sial
 Requires:   %{name} = %{version}
 Summary:SIAL extension for crash
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Development/Tools/Debuggers
 
 %description sial
@@ -235,7 +229,7 @@
 %package gcore
 Requires:   %{name} = %{version}
 Summary:Gcore extension for crash
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Development/Tools/Debuggers
 
 %description gcore
@@ -254,7 +248,7 @@
 
 %package %kmp_pkg
 Summary:Memory driver for the crash utility
-License:   

commit link-grammar for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package link-grammar for openSUSE:Factory 
checked in at 2018-03-26 13:04:56

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


Package is "link-grammar"

Mon Mar 26 13:04:56 2018 rev:46 rq:590341 version:5.4.4

Changes:

--- /work/SRC/openSUSE:Factory/link-grammar/link-grammar.changes
2018-03-14 19:35:50.256022301 +0100
+++ /work/SRC/openSUSE:Factory/.link-grammar.new/link-grammar.changes   
2018-03-26 13:05:04.373011747 +0200
@@ -1,0 +2,24 @@
+Sun Mar 18 00:08:48 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 5.4.4:
+  + Dictionary loading now thread safe.
+  + Fixes:
+- post-nominal modifiers used with pronouns.
+- comparative openers.
+- given-name single-letter abbreviations.
+- conjoined questions and conjoined WH-statements.
+- conditional sentences.
+- misc comparatives.
+- crash on invalid UTF-8 input.
+- many predicative adjective uses.
+- many paraphrasing-type constructions.
+- conjoined infinitives.
+  + Minor cleanup of word-lists.
+  + New dict definition LENGTH-LIMIT-n to limit connector link
+length to n.
+  + Speed up parsing of Russian by factor of 2x.
+  + Add assorted technical vocabulary (bac#680)
+- Pass disable-java-bindings parameter to configure to ensure java
+  bindings are not wanted.
+
+---

Old:

  link-grammar-5.4.3.tar.gz

New:

  link-grammar-5.4.4.tar.gz



Other differences:
--
++ link-grammar.spec ++
--- /var/tmp/diff_new_pack.OgzqaW/_old  2018-03-26 13:05:05.924955961 +0200
+++ /var/tmp/diff_new_pack.OgzqaW/_new  2018-03-26 13:05:05.940955386 +0200
@@ -18,13 +18,13 @@
 
 %define lname liblink-grammar5
 Name:   link-grammar
-Version:5.4.3
+Version:5.4.4
 Release:0
 Summary:Syntactic parser and grammar checker
 License:LGPL-2.1-only
 Group:  Productivity/Text/Spell
 URL:http://www.abisource.com/projects/link-grammar/
-Source: 
http://www.abisource.com/downloads/link-grammar/5.4.3/%{name}-%{version}.tar.gz
+Source: 
http://www.abisource.com/downloads/link-grammar/%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  autoconf-archive
 BuildRequires:  automake
 BuildRequires:  fdupes
@@ -99,7 +99,8 @@
 %build
 # --enable-sat-solver and --enable-corpus-stats are still at the prototype 
stage
 %configure \
---disable-static
+--disable-static \
+--disable-java-bindings
 make %{?_smp_mflags}
 
 %install
@@ -113,7 +114,7 @@
 
 %files
 %license LICENSE
-%doc ChangeLog
+%doc NEWS README.md
 %{_bindir}/*
 %{_datadir}/link-grammar
 %{_mandir}/man1/link-parser.1%{?ext_man}
@@ -129,7 +130,7 @@
 %{_libdir}/*.so.*
 
 %files devel
-%doc AUTHORS MAINTAINERS NEWS README.md
+%doc AUTHORS ChangeLog MAINTAINERS
 %dir %{_includedir}/link-grammar
 %{_includedir}/link-grammar/*.h
 %{_libdir}/*.so

++ link-grammar-5.4.3.tar.gz -> link-grammar-5.4.4.tar.gz ++
 47816 lines of diff (skipped)




commit bugzilla for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package bugzilla for openSUSE:Factory 
checked in at 2018-03-26 13:05:25

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


Package is "bugzilla"

Mon Mar 26 13:05:25 2018 rev:3 rq:590459 version:5.0.4

Changes:

--- /work/SRC/openSUSE:Factory/bugzilla/bugzilla.changes2018-03-07 
10:35:04.469619618 +0100
+++ /work/SRC/openSUSE:Factory/.bugzilla.new/bugzilla.changes   2018-03-26 
13:05:29.852095877 +0200
@@ -1,0 +2,8 @@
+Fri Mar 23 00:11:31 UTC 2018 - ec...@opensuse.org
+
+- update german language to 5.0.4
+- Add patch bugzilla-de-tagfix.patch to fix "missing closing tag 
+  in german language pack" (boo#1015765).
+  Thanks voorb...@gmx.net.
+
+---

Old:

  bugzilla-de-5.0.3-1.utf-8.tar.gz

New:

  bugzilla-de-5.0.4-1.utf-8.tar.gz
  bugzilla-de-tagfix.patch



Other differences:
--
++ bugzilla.spec ++
--- /var/tmp/diff_new_pack.9TL502/_old  2018-03-26 13:05:30.956056193 +0200
+++ /var/tmp/diff_new_pack.9TL502/_new  2018-03-26 13:05:30.964055905 +0200
@@ -27,11 +27,13 @@
 Group:  Development/Tools/Other
 Url:http://bugzilla.org/
 Source: 
http://ftp.mozilla.org/pub/mozilla.org/webtools/%{name}-%{version}.tar.gz
-Source2:
http://downloads.sourceforge.net/project/bugzilla-de/5.0/5.0.3/%{name}-de-5.0.3-1.utf-8.tar.gz
+Source2:
http://downloads.sourceforge.net/project/bugzilla-de/5.0/5.0.4/%{name}-de-5.0.4-1.utf-8.tar.gz
 Source3:MPL-2.0.html
 Source4:%{name}.conf
 Source5:%{name}-rpmlintrc
 Patch1: fix_whine_error.patch
+# PATCH-FIX-UPSTREAM bugzilla-de-tagfix.patch voorb...@gmx.net -- Fixed 
missing closing tag
+Patch2: %{name}-de-tagfix.patch
 BuildRequires:  apache
 BuildRequires:  fdupes
 Requires:   apache
@@ -117,8 +119,12 @@
 This package includes german language files for bugzilla
 
 %prep
-%setup -q
+%setup
 %patch1 -p1
+tar -xzf %{SOURCE2}  --directory "template"
+cd template/de
+%patch2 -p1
+cd ../..
 
 %build
 
@@ -145,7 +151,6 @@
xargs -r perl -i -pe 's{^#!%{_prefix}/local/}{#!%{_prefix}/}' "{}" "+"
 mkdir -p "%{buildroot}/srv/www"
 cp -a . "%{buildroot}/srv/www/%{name}"
-tar -xzf %{SOURCE2}  --directory "%{buildroot}/srv/www/%{name}/template"
 
 %fdupes %{buildroot}/srv
 

++ bugzilla-de-5.0.3-1.utf-8.tar.gz -> bugzilla-de-5.0.4-1.utf-8.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/de/default/l10n-version.html.tmpl 
new/de/default/l10n-version.html.tmpl
--- old/de/default/l10n-version.html.tmpl   2016-07-04 19:29:04.0 
+0200
+++ new/de/default/l10n-version.html.tmpl   2018-03-05 18:06:51.0 
+0100
@@ -1,4 +1,4 @@
-[% for_bz_version = '5.0.3' %]
+[% for_bz_version = '5.0.4' %]
 [% l10n_releasenumber = '1' %]
 [% SET Bugzilla_version = constants.BUGZILLA_VERSION %]
 [%+ IF Bugzilla_version.match("^$for_bz_version(-.*)?\$") %]

++ bugzilla-de-tagfix.patch ++
diff -Pdpru de.orig/default/account/auth/login-small.html.tmpl 
de/default/account/auth/login-small.html.tmpl
--- de.orig/default/account/auth/login-small.html.tmpl  2018-03-05 
18:06:51.0 +0100
+++ de/default/account/auth/login-small.html.tmpl   2018-03-23 
00:48:59.851562635 +0100
@@ -61,7 +61,7 @@
   
 | 
 
+   onclick="return show_forgot_form('[% qs_suffix %]')">Passwort 
vergessen
 
   Benutzerkonto:



commit certbot for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package certbot for openSUSE:Factory checked 
in at 2018-03-26 13:05:18

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


Package is "certbot"

Mon Mar 26 13:05:18 2018 rev:19 rq:590447 version:0.22.2

Changes:

--- /work/SRC/openSUSE:Factory/certbot/certbot.changes  2018-02-01 
21:28:38.555166270 +0100
+++ /work/SRC/openSUSE:Factory/.certbot.new/certbot.changes 2018-03-26 
13:05:25.440254466 +0200
@@ -1,0 +2,56 @@
+Thu Mar 22 23:14:55 UTC 2018 - ec...@opensuse.org
+
+- update to 0.22.2
+  * Fixed
+- A type error introduced in 0.22.1 that would occur during 
+  challenge cleanup when a Certbot plugin raises an exception 
+  while trying to complete the challenge was fixed.
+  
+  Despite us having broken lockstep, we are continuing to release 
+  new versions of all Certbot components during releases for the 
+  time being, however, the only packages with changes other than 
+  their version number were:
+
+certbot
+
+  More details about these changes can be found on our GitHub 
+  repo: https://github.com/certbot/certbot/milestone/53?closed=1
+
+- changes from 0.22.1
+  * Changed
+- The ACME server used with Certbot's --dry-run and --staging 
+  flags is now Let's Encrypt's ACMEv2 staging server which
+  allows people to also test ACMEv2 features with these flags.
+  * Fixed
+- The HTTP Content-Type header is now set to the correct value 
+  during certificate revocation with new versions of the ACME
+  protocol.
+- When using Certbot with Let's Encrypt's ACMEv2 server, 
+  it would add a blank line to the top of chain.pem and between 
+  the certificates in fullchain.pem for each lineage. 
+  These blank lines have been removed.
+- Resolved a bug that caused Certbot's --allow-subset-of-names 
+  flag not to work.
+- Fixed a regression in acme.client.Client that caused the 
+  class to not work when it was initialized without 
+  a ClientNetwork which is done by some of the other projects 
+  using our ACME library.
+
+  Despite us having broken lockstep, we are continuing to release 
+  new versions of all Certbot components during releases for the t
+  ime being, however, the only packages with changes other than
+  their version number were:
+
+acme
+certbot
+
+  More details about these changes can be found on our GitHub 
+  repo: https://github.com/certbot/certbot/milestone/51?closed=1
+
+---
+Wed Mar 14 11:24:47 UTC 2018 - ec...@opensuse.org
+
+- update to 0.22.0
+  See https://github.com/certbot/certbot/blob/master/CHANGELOG.md
+
+---

Old:

  v0.21.1.tar.gz

New:

  v0.22.2.tar.gz



Other differences:
--
++ certbot.spec ++
--- /var/tmp/diff_new_pack.xbe595/_old  2018-03-26 13:05:27.152192928 +0200
+++ /var/tmp/diff_new_pack.xbe595/_new  2018-03-26 13:05:27.156192785 +0200
@@ -19,7 +19,7 @@
 # See also http://en.opensuse.org/openSUSE:Specfile_guidelines
 
 Name:   certbot
-Version:0.21.1
+Version:0.22.2
 Release:0
 Summary:Let's Encrypt client
 License:Apache-2.0
@@ -47,7 +47,7 @@
 BuildRequires:  pkgconfig(openssl)
 BuildRequires:  pkgconfig(python) >= 2.7
 # install_requires
-BuildRequires:  python-acme = %{version}
+BuildRequires:  python-acme > 0.21.1
 BuildRequires:  python-josepy >= 1.0.1
 #BuildRequires:  python-argparse
 BuildRequires:  python-configargparse
@@ -104,7 +104,7 @@
 # requires
 Requires:   ca-certificates
 Requires:   cron
-Requires:   python-acme = %{version}
+Requires:   python-acme > 0.21.1
 #Requires:   python-argparse
 Requires:   python-certbot = %{version}
 Requires:   python-configargparse

++ v0.21.1.tar.gz -> v0.22.2.tar.gz ++
 8609 lines of diff (skipped)




commit python-acme for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package python-acme for openSUSE:Factory 
checked in at 2018-03-26 13:05:14

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


Package is "python-acme"

Mon Mar 26 13:05:14 2018 rev:16 rq:590444 version:0.22.2

Changes:

--- /work/SRC/openSUSE:Factory/python-acme/python-acme.changes  2018-02-01 
21:28:36.815247588 +0100
+++ /work/SRC/openSUSE:Factory/.python-acme.new/python-acme.changes 
2018-03-26 13:05:22.416363163 +0200
@@ -1,0 +2,12 @@
+Thu Mar 22 23:16:22 UTC 2018 - ec...@opensuse.org
+
+- update to 0.22.2
+  - No changelog from upstream
+
+---
+Wed Mar 14 11:17:47 UTC 2018 - ec...@opensuse.org
+
+- update to 0.22.0
+  - No changelog from upstream
+
+---

Old:

  acme-0.21.1.tar.gz
  acme-0.21.1.tar.gz.asc

New:

  acme-0.22.2.tar.gz
  acme-0.22.2.tar.gz.asc



Other differences:
--
++ python-acme.spec ++
--- /var/tmp/diff_new_pack.gcnWRW/_old  2018-03-26 13:05:24.140301194 +0200
+++ /var/tmp/diff_new_pack.gcnWRW/_new  2018-03-26 13:05:24.144301051 +0200
@@ -21,7 +21,7 @@
 %define libname acme
 
 Name:   python-%{libname}
-Version:0.21.1
+Version:0.22.2
 Release:0
 Summary:Python library for the ACME protocol
 License:Apache-2.0
@@ -54,13 +54,13 @@
 Requires:   python-Werkzeug
 Requires:   python-cryptography >= 0.8
 Requires:   python-dnspython >= 1.12
+Requires:   python-josepy >= 1.0.0
 Requires:   python-mock
 Requires:   python-ndg-httpsclient
 Requires:   python-pyOpenSSL >= 0.13
 Requires:   python-pyRFC3339
 Requires:   python-pyasn1
 Requires:   python-pytz
-Requires:   python-josepy >= 1.0.0
 Requires:   python-requests >= 2.10
 Requires:   python-six >= 1.5.2
 BuildArch:  noarch

++ acme-0.21.1.tar.gz -> acme-0.22.2.tar.gz ++
 1821 lines of diff (skipped)





commit gnome-taquin for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-taquin for openSUSE:Factory 
checked in at 2018-03-26 13:03:54

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


Package is "gnome-taquin"

Mon Mar 26 13:03:54 2018 rev:13 rq:590340 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-taquin/gnome-taquin.changes
2018-03-09 10:38:44.055666379 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-taquin.new/gnome-taquin.changes   
2018-03-26 13:04:49.389550332 +0200
@@ -1,0 +2,13 @@
+Thu Mar 15 23:23:59 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 3.28.0:
+  + Updated translations.
+- Drop:
+  + glib2_gsettings_schema_requires macro: it is no longer needed
+since RPM file triggers (RPM 4.13, suse_version 1330).
+  + suse_update_desktop_file macro and update-desktop-files
+BuildRequires: No longer needed.
+- Add fdupes BuildRequires and its macro for replacement of
+  duplicate files with links under the data directory.
+
+---

Old:

  gnome-taquin-3.26.1.tar.xz

New:

  gnome-taquin-3.28.0.tar.xz



Other differences:
--
++ gnome-taquin.spec ++
--- /var/tmp/diff_new_pack.ccsum5/_old  2018-03-26 13:04:57.505258611 +0200
+++ /var/tmp/diff_new_pack.ccsum5/_new  2018-03-26 13:04:57.509258467 +0200
@@ -17,25 +17,24 @@
 
 
 Name:   gnome-taquin
-Version:3.26.1
+Version:3.28.0
 Release:0
 Summary:A computer version of the 15-puzzle and other sliding puzzles
 License:GPL-3.0-or-later
 Group:  Amusements/Games/Board/Puzzle
 URL:https://wiki.gnome.org/Apps/Taquin
-Source: 
http://download.gnome.org/sources/gnome-taquin/3.26/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gnome-taquin/3.28/%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
+BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  itstool
 BuildRequires:  libxml2-tools
 BuildRequires:  pkgconfig
-BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(glib-2.0) >= 2.40.0
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.15.0
 BuildRequires:  pkgconfig(libcanberra-gtk3) >= 0.26
 BuildRequires:  pkgconfig(librsvg-2.0) >= 2.32.0
-%glib2_gsettings_schema_requires
 
 %description
 Taquin is a computer version of the 15-puzzle and other sliding puzzles.
@@ -54,8 +53,8 @@
 
 %install
 %make_install
-%suse_update_desktop_file org.gnome.taquin PuzzleGame
 %find_lang gnome-taquin %{?no_lang_C} %{name}.lang
+%fdupes %{buildroot}%{_datadir}
 
 %files
 %license COPYING
@@ -64,8 +63,7 @@
 %{_datadir}/applications/org.gnome.taquin.desktop
 %{_datadir}/glib-2.0/schemas/org.gnome.taquin.gschema.xml
 %{_datadir}/%{name}/
-%dir %{_datadir}/appdata
-%{_datadir}/appdata/org.gnome.taquin.appdata.xml
+%{_datadir}/metainfo/org.gnome.taquin.appdata.xml
 %{_datadir}/dbus-1/services/org.gnome.taquin.service
 %{_datadir}/icons/hicolor/*/apps/*
 %doc %{_datadir}/help/C/%{name}/

++ gnome-taquin-3.26.1.tar.xz -> gnome-taquin-3.28.0.tar.xz ++
 10961 lines of diff (skipped)




commit gnome-weather for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-weather for openSUSE:Factory 
checked in at 2018-03-26 13:03:50

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


Package is "gnome-weather"

Mon Mar 26 13:03:50 2018 rev:32 rq:590338 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-weather/gnome-weather.changes  
2018-03-09 10:39:03.458967685 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-weather.new/gnome-weather.changes 
2018-03-26 13:03:52.663589297 +0200
@@ -1,0 +2,8 @@
+Sat Mar 17 22:12:01 UTC 2018 - bjorn@gmail.com
+
+- Add gnome-weather-fix-clicking-rows-places-popover.patch: Fix
+  clicking on rows in the places popover. With recent gjs, the
+  access to row._info fails after the row has been removed from the
+  listbox.
+
+---

New:

  gnome-weather-fix-clicking-rows-places-popover.patch



Other differences:
--
++ gnome-weather.spec ++
--- /var/tmp/diff_new_pack.xSWjzz/_old  2018-03-26 13:03:54.371527908 +0200
+++ /var/tmp/diff_new_pack.xSWjzz/_new  2018-03-26 13:03:54.379527620 +0200
@@ -25,8 +25,12 @@
 Group:  Productivity/Other
 URL:https://live.gnome.org/Design/Apps/Weather
 Source0:
http://download.gnome.org/sources/gnome-weather/3.26/%{name}-%{version}.tar.xz
+
 # PATCH-FIX-UPSTREAM gnome-weather-fix-gettext-domain.patch 
zai...@opensuse.org -- gschema: Fix gettext-domain
 Patch0: gnome-weather-fix-gettext-domain.patch
+# PATCH-FIX-UPSTREAM gnome-weather-fix-clicking-rows-places-popover.patch 
bjorn@gmail.com -- Fix clicking on rows in the places popover
+Patch1: gnome-weather-fix-clicking-rows-places-popover.patch
+
 BuildRequires:  gjs
 BuildRequires:  intltool >= 0.26
 BuildRequires:  pkgconfig

++ gnome-weather-fix-clicking-rows-places-popover.patch ++
>From 44ed7a29bbd3a491c8ad3cd49b76870d728dfa60 Mon Sep 17 00:00:00 2001
From: Giovanni Campagna 
Date: Thu, 14 Dec 2017 09:32:43 -0800
Subject: Fix clicking on rows in the places popover

With recent gjs, the access to row._info fails after the row has been
removed from the listbox.
---
 src/app/world.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/world.js b/src/app/world.js
index 11219f8..d5f4cf2 100644
--- a/src/app/world.js
+++ b/src/app/world.js
@@ -88,9 +88,9 @@ var WorldContentView = new Lang.Class({
 });
 
 this._listbox.connect('row-activated', (listbox, row) => {
-this.hide();
-this.model.moveLocationToFront(row._info);
 this._window.showInfo(row._info, false);
+this.model.moveLocationToFront(row._info);
+this.hide();
 });
 
 this.model.connect('current-location-changed', (model, info) => {
-- 
cgit v0.12



commit log4net for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package log4net for openSUSE:Factory checked 
in at 2018-03-26 13:03:38

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


Package is "log4net"

Mon Mar 26 13:03:38 2018 rev:19 rq:590336 version:1.2.10

Changes:

--- /work/SRC/openSUSE:Factory/log4net/log4net.changes  2018-03-09 
10:40:29.023886460 +0100
+++ /work/SRC/openSUSE:Factory/.log4net.new/log4net.changes 2018-03-26 
13:03:48.639733926 +0200
@@ -1,0 +2,6 @@
+Mon Mar 19 09:21:53 UTC 2018 - dims...@opensuse.org
+
+- Make version in the injected .pc file a variable, which is
+  dynamically updated to %{version} (boo#880273).
+
+---



Other differences:
--
++ log4net.spec ++
--- /var/tmp/diff_new_pack.xutoPA/_old  2018-03-26 13:03:50.375671532 +0200
+++ /var/tmp/diff_new_pack.xutoPA/_new  2018-03-26 13:03:50.379671387 +0200
@@ -41,6 +41,7 @@
 
 %prep
 %setup -q -c
+sed -i "s|@VERSION@|%{version}|" %{SOURCE2}
 #=
 
 %build



++ log4net.pc ++
--- /var/tmp/diff_new_pack.xutoPA/_old  2018-03-26 13:03:50.459668512 +0200
+++ /var/tmp/diff_new_pack.xutoPA/_new  2018-03-26 13:03:50.471668081 +0200
@@ -4,5 +4,5 @@
 
 Name: log4net
 Description: log4net - .Net logging framework
-Version: 1.2.9
+Version: @VERSION@
 Libs: -r:${libdir}/mono/log4net/log4net.dll




commit hexchat for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package hexchat for openSUSE:Factory checked 
in at 2018-03-26 13:02:15

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


Package is "hexchat"

Mon Mar 26 13:02:15 2018 rev:25 rq:590070 version:2.14.1

Changes:

--- /work/SRC/openSUSE:Factory/hexchat/hexchat.changes  2017-08-10 
14:11:27.485902841 +0200
+++ /work/SRC/openSUSE:Factory/.hexchat.new/hexchat.changes 2018-03-26 
13:02:22.930814442 +0200
@@ -1,0 +2,59 @@
+Thu Mar 22 09:44:08 UTC 2018 - jeng...@inai.de
+
+- Ensure neutrality of description.
+
+---
+Mon Mar 19 02:46:42 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 2.14.1:
+  * Fix performance regression on Unix.
+- Changes from version 2.14.0:
+  * Rename data files to use io.github.Hexchat name.
+  * Add:
+- Option (irc_reconnect_rejoin) to disable auto-rejoin on
+  reconnect.
+- Ability to set custom tray icon separate of app icon.
+  * Fix:
+- Dnput box theming with Adwaita-dark;
+- Custom sounds not respecting omit if away option;
+- Detecting if a tray doesn’t exist on x11;
+- Cutting off ctcp text after ending \01;
+- /ignore not accepting full hosts;
+- Characters getting cut off when their width changes;
+- Various possible crashes.
+  * Change preference window to be scroll-able.
+  * Remove ctrl+w binding by default.
+  * Remove mpcinfo plugin.
+  * Doat: fix channels with / in them.
+  * Fishlim: fix key exchange; pci.ids file not being found on some
+distros.
+  * Lua: avoid loading the same script multiple times.
+  * Update translations.
+- Update '+' to '-or-later' in GPL License tag to comply with SPDX
+  3.0.
+- Switch dbus-1-glib-*, glib2-*, gtk2-*, iso-codes-*, libcanberra-*,
+  libnotify-*, libopenssl-*, libproxy-* and pciutils-* devel
+  packages BuildRequires by their respective pkgconfig modules:
+  dbus-glib-1, gio-2.0 and gmodule-2.0, gtk+-2.0, iso-codes,
+  libcanberra, libnotify, openssl, libproxy-1.0 and libpci.
+- Drop:
+  * intltool BuildRequires following upstream migration to Gettext.
+  * xz and gettext-devel BuildRequires: meson does not look for
+them and it's an implicit dependency of the build system.
+  * perl BuildRequires: it is already an implicit dependency being
+pulled by ExtUtil-Embedded perl module BuildRequires.
+  * dbus-1-devel BuildRequires: meson does not look for it and
+dbus-1-glib-devel already pulls it.
+  * update-desktop-files BuildRequires and suse_update_desktop_file
+macro: they are no longer needed.
+  * desktop_database_* and icon_theme_cache_* post/postun
+scriptlets: their functionality has been moved to RPM file
+triggers (RPM 4.13, suse_version 1330)
+- Add:
+  * meson BuildRequires and replace configure/make/make_install
+macro/command with meson/meson_build/meson_install ones
+following upstream port to Meson build system.
+  * pkgconfig(x11): new dependency.
+- Rebase patch: migrate-configuration-from-xchat.patch.
+
+---

Old:

  hexchat-2.12.4-repack.tar.xz
  hexchat-2.12.4-repack.tar.xz.asc

New:

  hexchat-2.14.1.tar.xz
  hexchat-2.14.1.tar.xz.asc



Other differences:
--
++ hexchat.spec ++
--- /var/tmp/diff_new_pack.y4mGJ6/_old  2018-03-26 13:03:15.580922142 +0200
+++ /var/tmp/diff_new_pack.y4mGJ6/_new  2018-03-26 13:03:15.584921998 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package hexchat
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 Andrey Karepin 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,38 +18,36 @@
 
 
 Name:   hexchat
-Version:2.12.4
+Version:2.14.1
 Release:0
-Summary:A popular and easy to use graphical IRC (chat) client
-License:GPL-2.0+
+Summary:A graphical IRC (chat) client
+License:GPL-2.0-or-later
 Group:  Productivity/Networking/IRC
 Url:https://hexchat.github.io/
-Source0:https://dl.%{name}.net/%{name}/%{name}-%{version}-repack.tar.xz
+Source0:https://dl.%{name}.net/%{name}/%{name}-%{version}.tar.xz
 Source1:hexchat-migrate-sh
-Source2:
https://dl.%{name}.net/%{name}/%{name}-%{version}-repack.tar.xz.asc
+Source2:https://dl.%{name}.net/%{name}/%{name}-%{version}.tar.xz.asc
 Source3:hexchat.keyring
 # PATCH-FEATURE-SLE migrate-configuration-from-xchat.patch ty...@suse.com 
fate#318480 -- replace xchat with hexchat
 Patch1: 

commit mate-indicator-applet for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package mate-indicator-applet for 
openSUSE:Factory checked in at 2018-03-26 13:02:10

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


Package is "mate-indicator-applet"

Mon Mar 26 13:02:10 2018 rev:13 rq:589746 version:1.20.0

Changes:

--- 
/work/SRC/openSUSE:Factory/mate-indicator-applet/mate-indicator-applet.changes  
2018-03-20 21:58:29.745709408 +0100
+++ 
/work/SRC/openSUSE:Factory/.mate-indicator-applet.new/mate-indicator-applet.changes
 2018-03-26 13:02:14.535116184 +0200
@@ -1,0 +2,5 @@
+Wed Mar 21 10:20:37 UTC 2018 - sor.ale...@meowr.ru
+
+- Switch to using Ayatana Indicators.
+
+---



Other differences:
--
++ mate-indicator-applet.spec ++
--- /var/tmp/diff_new_pack.OK3jJZ/_old  2018-03-26 13:02:15.827069752 +0200
+++ /var/tmp/diff_new_pack.OK3jJZ/_new  2018-03-26 13:02:15.831069607 +0200
@@ -30,10 +30,10 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  mate-common >= %{_version}
 BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(ayatana-indicator3-0.4)
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.20
-BuildRequires:  pkgconfig(indicator3-0.4)
-BuildRequires:  pkgconfig(libido3-0.1)
+BuildRequires:  pkgconfig(libayatana-ido3-0.4)
 BuildRequires:  pkgconfig(libmatepanelapplet-4.0) >= %{_version}
 BuildRequires:  pkgconfig(mate-settings-daemon) >= %{_version}
 BuildRequires:  pkgconfig(x11)
@@ -50,7 +50,7 @@
 Summary:Information from applications consistently on the panel
 Group:  System/GUI/Other
 Recommends: mate-applet-indicator-lang
-Provides:   indicator-renderer
+Provides:   ayatana-indicator-renderer
 # mate-indicator-applet was last used in openSUSE Leap 42.1.
 Provides:   %{name} = %{version}
 Obsoletes:  %{name} < %{version}
@@ -76,6 +76,7 @@
 %configure \
   --disable-static\
   --disable-scrollkeeper  \
+  --with-ayatana-indicators   \
   --libexecdir=%{_libexecdir}/%{name}
 make %{?_smp_mflags} V=1
 




commit vpp for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package vpp for openSUSE:Factory checked in 
at 2018-03-26 13:02:03

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


Package is "vpp"

Mon Mar 26 13:02:03 2018 rev:12 rq:589703 version:18.01

Changes:

--- /work/SRC/openSUSE:Factory/vpp/vpp.changes  2018-03-07 10:37:20.024730018 
+0100
+++ /work/SRC/openSUSE:Factory/.vpp.new/vpp.changes 2018-03-26 
13:02:09.759288007 +0200
@@ -1,0 +2,6 @@
+Wed Mar 21 09:28:10 UTC 2018 - marco.varl...@suse.com
+
+- Added runtime dependency on -devel package since all -api packages
+  require header/json files at runtime
+
+---



Other differences:
--
++ vpp.spec ++
--- /var/tmp/diff_new_pack.0NI8an/_old  2018-03-26 13:02:11.58375 +0200
+++ /var/tmp/diff_new_pack.0NI8an/_new  2018-03-26 13:02:11.587222131 +0200
@@ -123,6 +123,7 @@
 Group:  Development/Libraries/Other
 Requires:   %{lname} = %{version}
 Requires:   %{name} = %{version}
+Requires:   %{name}-devel = %{version}
 Conflicts:  otherproviders(%{name}-any-api-lua)
 Provides:   %{name}-any-api-lua = %{version}
 
@@ -134,6 +135,7 @@
 Group:  Development/Libraries/Java
 Requires:   %{lname} = %{version}
 Requires:   %{name} = %{version}
+Requires:   %{name}-devel = %{version}
 Conflicts:  otherproviders(%{name}-any-api-java)
 Provides:   %{name}-any-api-java = %{version}
 
@@ -145,6 +147,7 @@
 Group:  Development/Libraries/Python
 Requires:   %{lname} = %{version}
 Requires:   %{name} = %{version}
+Requires:   %{name}-devel = %{version}
 Requires:   python-setuptools
 Conflicts:  otherproviders(%{name}-any-python-api)
 Provides:   %{name}-any-python-api = %{version}




commit python-paramiko for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package python-paramiko for openSUSE:Factory 
checked in at 2018-03-26 13:01:43

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


Package is "python-paramiko"

Mon Mar 26 13:01:43 2018 rev:38 rq:587599 version:2.4.1

Changes:

--- /work/SRC/openSUSE:Factory/python-paramiko/python-paramiko.changes  
2017-11-17 11:00:24.199845412 +0100
+++ /work/SRC/openSUSE:Factory/.python-paramiko.new/python-paramiko.changes 
2018-03-26 13:01:50.179994520 +0200
@@ -1,0 +2,29 @@
+Thu Mar 15 18:38:22 CET 2018 - r...@suse.de
+
+- add paramiko-test_extend_timeout.patch (bsc#1085529)
+  extend timeout in testsuite to pass on ppc64le 
+
+---
+Thu Mar 15 07:10:09 UTC 2018 - tbecht...@suse.com
+
+update to version 2.4.1 (bsc#1085276, CVE-2018-7750):
+  * changelog: update for #1039 / #1051
+  * Screen off dev version of Python from test matrix
+  * ensure ed25519 password is bytes
+  * Cut 2.0.8
+  * Cut 2.3.2
+  * Initial tests proving CVE-2018-7750 / #1175
+  * Guess something else added this prior to the merge
+  * Fixes CVE-2018-7750 / #1175
+  * Uncaught typo in test suite
+  * Initial tests proving CVE-2018-7750 / #XXX
+  * Test proving #1039 / efficacy of #1051
+  * Changelog closes #1175
+  * Cut 2.1.5
+  * Allow overriding test client connect kwargs in Transport test suite
+  * Cut 2.4.1
+  * Fixes CVE-2018-7750 / #XXX
+  * Cut 2.2.3
+  * flake8
+
+---

Old:

  paramiko-2.4.0.tar.gz

New:

  paramiko-2.4.1.tar.gz
  paramiko-test_extend_timeout.patch



Other differences:
--
++ python-paramiko.spec ++
--- /var/tmp/diff_new_pack.LpB4M8/_old  2018-03-26 13:01:51.487947323 +0200
+++ /var/tmp/diff_new_pack.LpB4M8/_new  2018-03-26 13:01:51.495947035 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-paramiko
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -20,15 +20,16 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-paramiko
-Version:2.4.0
+Version:2.4.1
 Release:0
 Url:http://www.paramiko.org/
 Summary:SSH2 protocol library
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  Development/Languages/Python
 Source: 
https://files.pythonhosted.org/packages/source/p/paramiko/paramiko-%{version}.tar.gz
 # certificates needed by testsuite
 Source1:cert_support.tar.gz
+Patch0: paramiko-test_extend_timeout.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  %{python_module PyNaCl >= 1.0.1}
 BuildRequires:  %{python_module bcrypt >= 3.1.3}
@@ -72,6 +73,7 @@
 
 %prep
 %setup -q -n paramiko-%{version}
+%patch0 -p1
 # Fix non-executable script rpmlint issue:
 find demos -name "*.py" -exec sed -i "/#\!\/usr\/bin\/.*/d" {} \;
 tar xvzf %{SOURCE1} -C tests/

++ paramiko-2.4.0.tar.gz -> paramiko-2.4.1.tar.gz ++
 3099 lines of diff (skipped)

++ paramiko-test_extend_timeout.patch ++
--- paramiko-2.4.1/tests/test_buffered_pipe.py  2018/03/15 17:40:29 1.1
+++ paramiko-2.4.1/tests/test_buffered_pipe.py  2018/03/15 17:40:36
@@ -69,7 +69,7 @@
 self.assertTrue(False)
 except PipeTimeout:
 pass
-self.assertEqual(b'b', p.read(1, 1.0))
+self.assertEqual(b'b', p.read(1, 3.0))
 self.assertEqual(b'', p.read(1))
 
 def test_3_close_while_reading(self):



commit perl-Dist-Zilla for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package perl-Dist-Zilla for openSUSE:Factory 
checked in at 2018-03-26 13:00:42

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


Package is "perl-Dist-Zilla"

Mon Mar 26 13:00:42 2018 rev:29 rq:577177 version:6.011

Changes:

--- /work/SRC/openSUSE:Factory/perl-Dist-Zilla/perl-Dist-Zilla.changes  
2017-07-21 22:46:55.797627786 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Dist-Zilla.new/perl-Dist-Zilla.changes 
2018-03-26 13:00:48.546218560 +0200
@@ -1,0 +2,14 @@
+Mon Feb 12 11:38:58 UTC 2018 - co...@suse.com
+
+- updated to 6.011
+   see /usr/share/doc/packages/perl-Dist-Zilla/Changes
+
+  6.011 2018-02-11 12:57:02-05:00 America/New_York
+  - stashes can now be added in [%Stash] form from a bundle (thanks,
+Karen Etheridge)
+  - use $V env var as an override, when set, in [AutoVersion]
+(thanks, Karen Etheridge)
+  - all remaining uses of Class::Load are replaced with Module::Runtime
+(thanks, Karen Etheridge)
+
+---

Old:

  Dist-Zilla-6.010.tar.gz

New:

  Dist-Zilla-6.011.tar.gz



Other differences:
--
++ perl-Dist-Zilla.spec ++
--- /var/tmp/diff_new_pack.Ipzn0S/_old  2018-03-26 13:00:51.082127053 +0200
+++ /var/tmp/diff_new_pack.Ipzn0S/_new  2018-03-26 13:00:51.090126764 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Dist-Zilla
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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-Dist-Zilla
-Version:6.010
+Version:6.011
 Release:0
 %define cpan_name Dist-Zilla
 Summary:Distribution Builder; Installer Not Included!
@@ -35,6 +35,7 @@
 BuildRequires:  perl(App::Cmd::Tester) >= 0.306
 BuildRequires:  perl(App::Cmd::Tester::CaptureExternal)
 BuildRequires:  perl(Archive::Tar)
+BuildRequires:  perl(Archive::Tar::Wrapper) >= 0.15
 BuildRequires:  perl(CPAN::Meta::Check) >= 0.011
 BuildRequires:  perl(CPAN::Meta::Converter) >= 2.101550
 BuildRequires:  perl(CPAN::Meta::Merge)
@@ -109,6 +110,7 @@
 Requires:   perl(App::Cmd::Tester) >= 0.306
 Requires:   perl(App::Cmd::Tester::CaptureExternal)
 Requires:   perl(Archive::Tar)
+Requires:   perl(Archive::Tar::Wrapper) >= 0.15
 Requires:   perl(CPAN::Meta::Converter) >= 2.101550
 Requires:   perl(CPAN::Meta::Merge)
 Requires:   perl(CPAN::Meta::Prereqs) >= 2.120630

++ Dist-Zilla-6.010.tar.gz -> Dist-Zilla-6.011.tar.gz ++
 5245 lines of diff (skipped)




commit mutter for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package mutter for openSUSE:Factory checked 
in at 2018-03-26 12:57:13

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


Package is "mutter"

Mon Mar 26 12:57:13 2018 rev:125 rq:590863 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/mutter/mutter.changes2018-03-14 
19:33:34.376848238 +0100
+++ /work/SRC/openSUSE:Factory/.mutter.new/mutter.changes   2018-03-26 
12:57:17.193845181 +0200
@@ -1,0 +2,14 @@
+Thu Mar 22 20:04:16 CET 2018 - h...@suse.com
+
+- Retire mutter-xwayland-use-gdm-auth-file.patch in favor of
+  mutter-xwayland-create-xauthority.patch (bsc#1084737). We now
+  create the cookie in mutter itself.
+
+---
+Tue Mar 20 16:57:50 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---

Old:

  mutter-xwayland-use-gdm-auth-file.patch

New:

  mutter-xwayland-create-xauthority.patch



Other differences:
--
++ mutter.spec ++
--- /var/tmp/diff_new_pack.NnG9AH/_old  2018-03-26 12:57:18.245807221 +0200
+++ /var/tmp/diff_new_pack.NnG9AH/_new  2018-03-26 12:57:18.249807076 +0200
@@ -30,8 +30,8 @@
 Patch0: mutter-fix-startup.patch
 # PATCH-FEATURE-UPSTREAM 
mutter-iconcache-Support-RGB16_565-format-for-16-bit-color-.patch FATE#323412 
bgo#781704 bsc#1024748 vliaskovi...@suse.com -- iconcache: Support RGB16_565 
format for 16-bit sessions
 Patch1: 
mutter-iconcache-Support-RGB16_565-format-for-16-bit-color-.patch
-# PATCH-FIX-OPENSUSE mutter-xwayland-use-gdm-auth-file.patch bsc#1084737 
h...@suse.com -- Pass an Xauthority file to Xwayland -auth if found
-Patch2: mutter-xwayland-use-gdm-auth-file.patch
+# PATCH-FIX-OPENSUSE mutter-xwayland-create-xauthority.patch bsc#1084737 
h...@suse.com -- Create and pass an Xauthority file to Xwayland and session
+Patch2: mutter-xwayland-create-xauthority.patch
 # SLE-only patches start at 1000
 # PATCH-FEATURE-SLE mutter-SLE-bell.patch FATE#316042 bnc#889218 
idon...@suse.com -- make audible bell work out of the box.
 Patch1000:  mutter-SLE-bell.patch
@@ -45,6 +45,7 @@
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  zenity
 BuildRequires:  pkgconfig(cairo) >= 1.10.0
 BuildRequires:  pkgconfig(egl)
@@ -91,9 +92,6 @@
 Provides:   windowmanager
 # Obsolete the now private typelib.
 Obsoletes:  typelib-1_0-Meta-3_0
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Mutter is a window and compositing manager based on Clutter, forked
@@ -147,8 +145,8 @@
 %patch2 -p1
 
 # SLE-only patches and translations.
-%if !0%{?is_opensuse}
 translation-update-upstream
+%if !0%{?is_opensuse}
 %patch1000 -p1
 %patch1001 -p1
 %patch1002 -p1

++ mutter-xwayland-create-xauthority.patch ++
commit 04fab574db9c814196e81a86084a565dcdd4a26b
Author: Hans Petter Jansson 
Date:   Wed Mar 14 19:06:42 2018 +0100

Patch 3: mutter-xwayland-use-gdm-auth-file.patch

Index: mutter-3.28.0/src/wayland/meta-wayland.c
===
--- mutter-3.28.0.orig/src/wayland/meta-wayland.c
+++ mutter-3.28.0/src/wayland/meta-wayland.c
@@ -353,6 +353,7 @@ meta_wayland_init (void)
 {
   MetaWaylandCompositor *compositor = meta_wayland_compositor_get_default ();
   GSource *wayland_event_source;
+  gchar *xauthority_path = NULL;
 
   wayland_event_source = wayland_event_source_new 
(compositor->wayland_display);
 
@@ -394,7 +395,8 @@ meta_wayland_init (void)
   meta_xwayland_global_filter,
   compositor);
 
-  if (!meta_xwayland_start (>xwayland_manager, 
compositor->wayland_display))
+  if (!meta_xwayland_start (>xwayland_manager, 
compositor->wayland_display,
+_path))
 g_error ("Failed to start X Wayland");
 
   if (_display_name_override)
@@ -417,7 +419,10 @@ meta_wayland_init (void)
 }
 
   set_gnome_env ("DISPLAY", meta_wayland_get_xwayland_display_name 
(compositor));
+  set_gnome_env ("XAUTHORITY", xauthority_path);
   set_gnome_env ("WAYLAND_DISPLAY", meta_wayland_get_wayland_display_name 
(compositor));
+
+  g_free (xauthority_path);
 }
 
 const char *
Index: mutter-3.28.0/src/wayland/meta-xwayland-private.h
===
--- 

commit gdm for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gdm for openSUSE:Factory checked in 
at 2018-03-26 12:56:57

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


Package is "gdm"

Mon Mar 26 12:56:57 2018 rev:207 rq:590829 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gdm/gdm.changes  2018-03-14 19:33:25.409166728 
+0100
+++ /work/SRC/openSUSE:Factory/.gdm.new/gdm.changes 2018-03-26 
12:57:10.574084054 +0200
@@ -1,0 +2,19 @@
+Thu Mar 22 20:20:46 CET 2018 - h...@suse.com
+
+- Retire gdm-xwayland-xauth.patch (bsc#1084737): We now do this
+  in the compositor instead.
+
+---
+Tue Mar 20 17:34:03 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---
+Fri Mar 16 16:17:58 UTC 2018 - fcro...@suse.com
+
+- Add requirement on xdm package, it provides common scripts and
+  systemd service used by display managers (bsc#1084655).
+
+---

Old:

  gdm-xwayland-xauth.patch



Other differences:
--
++ gdm.spec ++
--- /var/tmp/diff_new_pack.3n4CsA/_old  2018-03-26 12:57:11.738042053 +0200
+++ /var/tmp/diff_new_pack.3n4CsA/_new  2018-03-26 12:57:11.742041909 +0200
@@ -59,8 +59,6 @@
 Patch42:gdm-fails-to-restart-gnome-shell.patch
 # PATCH-FIX-UPSTREAM 
gdm-add-runtime-option-to-disable-starting-X-server-as-u.patch bnc#1075805 
bgo#793255 m...@suse.com -- Add runtime option to start X under root instead of 
regular user. Necessary if no DRI drivers are present.
 Patch43:gdm-add-runtime-option-to-disable-starting-X-server-as-u.patch
-# PATCH-FIX-OPENSUSE gdm-xwayland-xauth.patch h...@suse.com bsc#1084737 -- 
Create Xauthority file and export XAUTHORITY for Xwayland
-Patch44:gdm-xwayland-xauth.patch
 ### NOTE: Keep please SLE-only patches at bottom (starting on 1000).
 # PATCH-FIX-SLE gdm-disable-gnome-initial-setup.patch bnc#1067976 
qz...@suse.com -- Disable gnome-initial-setup runs before gdm, g-i-s will only 
serve for CJK people to choose the input-method after login.
 Patch1002:  gdm-disable-gnome-initial-setup.patch
@@ -76,6 +74,7 @@
 BuildRequires:  pkgconfig
 BuildRequires:  pwdutils
 BuildRequires:  tcpd-devel
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-server
 BuildRequires:  xorg-x11-server-extra
@@ -104,6 +103,9 @@
 Requires:   gnome-session-core
 Requires:   gnome-settings-daemon
 Requires:   gnome-shell
+# xdm package ships systemd display-manager service and other common scripts
+# between display managers (bsc#1084655)
+Requires:   xdm
 # FIXME: use proper Requires(pre/post/preun/...)
 # For groupadd, useradd, usermod
 PreReq: pwdutils
@@ -118,9 +120,6 @@
 Provides:   gnome-applets-gdm = %{version}
 Obsoletes:  gnome-applets-gdm < %{version}
 DocDir: %{_defaultdocdir}
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %ifnarch s390 s390x
 BuildRequires:  pkgconfig(xorg-server)
 %endif
@@ -203,7 +202,6 @@
 %patch41 -p1
 %patch42 -p1
 %patch43 -p1
-%patch44 -p1
 # SLE-only patches start at 1000
 %if !0%{?is_opensuse}
 %patch1002 -p1




commit gnome-documents for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-documents for openSUSE:Factory 
checked in at 2018-03-26 12:55:49

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


Package is "gnome-documents"

Mon Mar 26 12:55:49 2018 rev:56 rq:590827 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-documents/gnome-documents.changes  
2018-03-08 10:43:54.770685174 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-documents.new/gnome-documents.changes 
2018-03-26 12:56:46.274960887 +0200
@@ -1,0 +2,33 @@
+Thu Mar 22 13:22:47 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.28.0:
+  + Make the Meson build require libgepub-0.6.
+  + Updated translations.
+
+---
+Thu Mar 22 13:05:05 UTC 2018 - bjorn@gmail.com
+
+- Replace pkgconfig(libgepub) with pkgconfig(libgepub-0.6)
+  BuildRequires.
+- Replace update-desktop-files with desktop-file-utils
+  BuildRequires and drop usage of suse_update_desktop_file macro.
+- Pass explicit documentation=true and getting_started=true to
+  meson, ensure we build the features we want.
+- Use autosetup macro.
+
+---
+Thu Mar 22 03:27:52 UTC 2018 - dims...@opensuse.org
+
+- Update to version 3.27.92:
+  + Port to Meson.
+- Add meson BuildRequires and replace configure/make/make_install
+  macros with meson/meson_build/meson_install.
+
+---
+Tue Mar 20 17:25:39 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---

Old:

  gnome-documents-3.26.2.tar.xz

New:

  gnome-documents-3.28.0.tar.xz



Other differences:
--
++ gnome-documents.spec ++
--- /var/tmp/diff_new_pack.kGt8te/_old  2018-03-26 12:56:49.582841522 +0200
+++ /var/tmp/diff_new_pack.kGt8te/_new  2018-03-26 12:56:49.586841378 +0200
@@ -21,21 +21,23 @@
 %global __requires_exclude typelib\\(LOKDocView\\)
 %endif
 Name:   gnome-documents
-Version:3.26.2
+Version:3.28.0
 Release:0
 Summary:Document Manager for GNOME
 License:GPL-2.0-or-later
 Group:  Productivity/Office/Other
 URL:https://wiki.gnome.org/Apps/Documents
-Source: 
http://download.gnome.org/sources/gnome-documents/3.26/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/gnome-documents/3.28/%{name}-%{version}.tar.xz
+BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes
 BuildRequires:  gnome-shell
 BuildRequires:  gtk-doc
 BuildRequires:  inkscape
 BuildRequires:  itstool
+BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  poppler-tools
-BuildRequires:  update-desktop-files
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(evince-document-3.0) >= 3.13.3
 BuildRequires:  pkgconfig(evince-view-3.0) >= 3.13.3
 BuildRequires:  pkgconfig(gjs-1.0) >= 1.48.0
@@ -45,7 +47,7 @@
 BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 1.31.6
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.22.15
 BuildRequires:  pkgconfig(libgdata) >= 0.13.3
-BuildRequires:  pkgconfig(libgepub) >= 0.5
+BuildRequires:  pkgconfig(libgepub-0.6) >= 0.6
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.41.3
 BuildRequires:  pkgconfig(tracker-control-2.0) >= 0.17.3
 BuildRequires:  pkgconfig(tracker-sparql-2.0) >= 0.17.3
@@ -57,9 +59,6 @@
 Recommends: %{name}-lang
 # If available, we query the Online Miners via dbus.
 Recommends: dbus(org.gnome.OnlineMiners.GData)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Documents is a document manager application for GNOME.
@@ -99,22 +98,18 @@
 %lang_package
 
 %prep
-%setup -q
-%if !0%{?is_opensuse}
+%autosetup
 translation-update-upstream
-%endif
 
 %build
-%configure \
-   --enable-documentation \
-   --disable-static \
-   --enable-getting-started
-%make_build
+%meson \
+-D documentation=true \
+-D getting_started=true \
+%{nil}
+%meson_build
 
 %install
-%make_install
-find %{buildroot} -type f -name "*.la" -delete -print
-%suse_update_desktop_file org.gnome.Documents
+%meson_install
 %find_lang %{name} %{?no_lang_C}
 %fdupes %{buildroot}%{_datadir}
 
@@ -122,11 +117,10 @@
 %doc AUTHORS NEWS README TODO
 %doc %{_datadir}/help/C/%{name}/
 %{_bindir}/gnome-documents
-%dir %{_datadir}/appdata
-%{_datadir}/appdata/org.gnome.Documents.appdata.xml
 

commit totem for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package totem for openSUSE:Factory checked 
in at 2018-03-26 12:55:44

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


Package is "totem"

Mon Mar 26 12:55:44 2018 rev:133 rq:590337 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/totem/totem.changes  2018-03-14 
19:27:21.742081302 +0100
+++ /work/SRC/openSUSE:Factory/.totem.new/totem.changes 2018-03-26 
12:55:45.289161558 +0200
@@ -1,0 +2,17 @@
+Tue Mar 20 16:47:06 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---
+Mon Mar 12 07:52:04 UTC 2018 - bjorn@gmail.com
+
+- Add totem-fix-libtotem_gir-dependency.patch: build: Fix
+  libtotem_gir dependency for vala plugins.
+- Add gstreamer-plugins-ugly Recommends: We want to pull in the
+  codecs available in that package (mp3, ac3 and mpeg2 support).
+- Drop la files rm from install section, no longer needed, we are
+  using meson build system now.
+
+---
@@ -2133 +2150 @@
-- removed gnome-icon-theme from Requieres and BuildRequieres
+- removed gnome-icon-theme from Requires and BuildRequires

New:

  totem-fix-libtotem_gir-dependency.patch



Other differences:
--
++ totem.spec ++
--- /var/tmp/diff_new_pack.8rRQJg/_old  2018-03-26 12:55:47.325088092 +0200
+++ /var/tmp/diff_new_pack.8rRQJg/_new  2018-03-26 12:55:47.341087514 +0200
@@ -37,6 +37,8 @@
 Patch4: totem-nb-translations.patch
 # PATCH-FIX-UPSTREAM totem-thumbnailer-blacklist-fixes.patch bgo#790491 
zai...@opensuse.org -- Fixes to the thumbnailer blacklists plugins
 Patch5: totem-thumbnailer-blacklist-fixes.patch
+# PATCH-FIX-UPSTREAM totem-fix-libtotem_gir-dependency.patch 
bjorn@gmail.com -- build: fix libtotem_gir dependency for vala plugins
+Patch6: totem-fix-libtotem_gir-dependency.patch
 BuildRequires:  appstream-glib
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -50,6 +52,7 @@
 BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  python3-pylint
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  vala >= 0.14.1
 BuildRequires:  yelp-tools
@@ -83,6 +86,7 @@
 # Required for cluttersink
 Recommends: gstreamer-plugin-cluttergst3
 Recommends: gstreamer-plugins-bad
+Recommends: gstreamer-plugins-ugly
 Recommends: totem-plugins
 Suggests:   gnome-dvb-daemon
 # totem-plugin-upnp has been substituted by a grilo plugin.
@@ -92,9 +96,6 @@
 Obsoletes:  totem-browser-plugin-gmp < 3.13.90
 Obsoletes:  totem-browser-plugin-vegas < 3.13.90
 %glib2_gsettings_schema_requires
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if %{build_zeitgeist_plugin}
 BuildRequires:  pkgconfig(zeitgeist-2.0) >= 0.9.12
 %endif
@@ -170,9 +171,7 @@
 
 %prep
 %autosetup -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 # FIXME once we figure out whats wrong with lirc-devel, add this to meson calls
@@ -191,9 +190,7 @@
 
 %install
 %meson_install
-
 %find_lang %{name} %{?no_lang_C}
-find %{buildroot} -type f -name "*.la" -delete -print
 %fdupes %{buildroot}/%{_prefix}
 
 %post   -p /sbin/ldconfig
@@ -201,7 +198,6 @@
 
 %files
 %license COPYING
-
 %doc %{_datadir}/help/C/%{name}/
 %{_bindir}/*
 %{_datadir}/GConf/gsettings/totem.convert

++ totem-fix-libtotem_gir-dependency.patch ++
>From 02349cfbbf6c5c1242681aa50b828f841e0e3a42 Mon Sep 17 00:00:00 2001
From: Christian Hergert 
Date: Wed, 10 Jan 2018 18:05:19 -0800
Subject: build: fix libtotem_gir dependency for vala plugins

This should fix both local builds which are racing against this and the
flatpak build which has failed a number of times.
---
 src/plugins/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/meson.build b/src/plugins/meson.build
index 95af648..6c884dc 100644
--- a/src/plugins/meson.build
+++ b/src/plugins/meson.build
@@ -115,7 +115,7 @@ if plugins_option != 'none'
 
   if have_vala
 plugins_vala_deps = [
-  declare_dependency(sources: libtotem_gir)
+  declare_dependency(sources: libtotem_gir[0])
 ]
 
 plugins_vala_flags = [
-- 
cgit v0.12




commit atk for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package atk for openSUSE:Factory checked in 
at 2018-03-26 12:55:35

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


Package is "atk"

Mon Mar 26 12:55:35 2018 rev:75 rq:590044 version:2.28.1

Changes:

--- /work/SRC/openSUSE:Factory/atk/atk.changes  2018-03-14 19:32:04.860027389 
+0100
+++ /work/SRC/openSUSE:Factory/.atk.new/atk.changes 2018-03-26 
12:55:36.477479528 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:41:32 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ atk.spec ++
--- /var/tmp/diff_new_pack.k8MF6o/_old  2018-03-26 12:55:38.193417609 +0200
+++ /var/tmp/diff_new_pack.k8MF6o/_new  2018-03-26 12:55:38.197417464 +0200
@@ -31,12 +31,9 @@
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk-doc
 BuildRequires:  meson
+BuildRequires:  translation-update-upstream
 Requires:   %{name}-lang = %{version}
 Requires:   libatk-1_0-0
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
-#
 
 %description
 The ATK library provides a set of accessibility interfaces. By
@@ -89,9 +86,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson \




commit eog for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package eog for openSUSE:Factory checked in 
at 2018-03-26 12:55:07

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


Package is "eog"

Mon Mar 26 12:55:07 2018 rev:132 rq:590036 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/eog/eog.changes  2018-03-14 19:30:33.955255694 
+0100
+++ /work/SRC/openSUSE:Factory/.eog.new/eog.changes 2018-03-26 
12:55:10.250425932 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:37:57 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ eog.spec ++
--- /var/tmp/diff_new_pack.gy6Ib2/_old  2018-03-26 12:55:11.730372528 +0200
+++ /var/tmp/diff_new_pack.gy6Ib2/_new  2018-03-26 12:55:11.734372384 +0200
@@ -29,6 +29,7 @@
 BuildRequires:  libjpeg-devel
 BuildRequires:  meson >= 0.44.0
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(exempi-2.0) >= 1.99.5
 BuildRequires:  pkgconfig(gdk-pixbuf-2.0) >= 2.36.5
@@ -47,9 +48,6 @@
 BuildRequires:  pkgconfig(librsvg-2.0) >= 2.36.2
 BuildRequires:  pkgconfig(shared-mime-info) >= 0.20
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Eye of GNOME is a simple graphics viewer for the GNOME desktop which
@@ -72,9 +70,7 @@
 
 %prep
 %autosetup
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson \




commit devhelp for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package devhelp for openSUSE:Factory checked 
in at 2018-03-26 12:55:14

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


Package is "devhelp"

Mon Mar 26 12:55:14 2018 rev:75 rq:590038 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/devhelp/devhelp.changes  2018-03-14 
19:27:12.706402148 +0100
+++ /work/SRC/openSUSE:Factory/.devhelp.new/devhelp.changes 2018-03-26 
12:55:16.110214481 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:38:46 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ devhelp.spec ++
--- /var/tmp/diff_new_pack.hsipo6/_old  2018-03-26 12:55:17.306171325 +0200
+++ /var/tmp/diff_new_pack.hsipo6/_new  2018-03-26 12:55:17.310171181 +0200
@@ -24,12 +24,13 @@
 Summary:Developer's Help Program for GNOME
 License:GPL-2.0-or-later
 Group:  Development/Tools/Other
-Url:https://wiki.gnome.org/Apps/Devhelp
+URL:https://wiki.gnome.org/Apps/Devhelp
 Source0:
http://download.gnome.org/sources/devhelp/3.28/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection-devel >= 1.30.0
 BuildRequires:  itstool
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gio-2.0) >= 2.38
 BuildRequires:  pkgconfig(gsettings-desktop-schemas)
@@ -39,9 +40,6 @@
 Suggests:   emacs-plugin-devhelp
 Suggests:   gedit-plugin-devhelp
 Suggests:   vim-plugin-devhelp
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Devhelp is an API documentation browser for GTK+ and GNOME.
@@ -100,9 +98,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure \




commit cheese for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package cheese for openSUSE:Factory checked 
in at 2018-03-26 12:55:22

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


Package is "cheese"

Mon Mar 26 12:55:22 2018 rev:102 rq:590039 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/cheese/cheese.changes2018-03-14 
19:28:22.823912319 +0100
+++ /work/SRC/openSUSE:Factory/.cheese.new/cheese.changes   2018-03-26 
12:55:26.721831561 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:39:22 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ cheese.spec ++
--- /var/tmp/diff_new_pack.1BrV9G/_old  2018-03-26 12:55:28.313774115 +0200
+++ /var/tmp/diff_new_pack.1BrV9G/_new  2018-03-26 12:55:28.317773971 +0200
@@ -31,6 +31,7 @@
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  intltool >= 0.50.0
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  vala >= 0.25.2
 BuildRequires:  yelp-tools
@@ -51,9 +52,6 @@
 Requires:   gnome-video-effects
 Recommends: %{name}-lang
 Recommends: yelp
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Cheese is an application to take photos and videos with your webcam,
@@ -126,9 +124,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure \




commit brasero for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package brasero for openSUSE:Factory checked 
in at 2018-03-26 12:55:29

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


Package is "brasero"

Mon Mar 26 12:55:29 2018 rev:88 rq:590040 version:3.12.2+20171213.567326a7

Changes:

--- /work/SRC/openSUSE:Factory/brasero/brasero.changes  2018-03-14 
19:27:17.694225036 +0100
+++ /work/SRC/openSUSE:Factory/.brasero.new/brasero.changes 2018-03-26 
12:55:31.997641183 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:39:45 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ brasero.spec ++
--- /var/tmp/diff_new_pack.cejKkE/_old  2018-03-26 12:55:33.569584459 +0200
+++ /var/tmp/diff_new_pack.cejKkE/_new  2018-03-26 12:55:33.577584171 +0200
@@ -36,6 +36,7 @@
 # We need the %%mime_database_* macros
 BuildRequires:  shared-mime-info
 BuildRequires:  tracker-devel >= 0.10.0
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(gdk-x11-3.0)
@@ -75,9 +76,6 @@
 Provides:   gnomebaker = 0.6.1
 Obsoletes:  gnomebaker < 0.6.1
 %glib2_gsettings_schema_requires
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Brasero is an application for the GNOME Desktop to write to CD/DVDs.
@@ -175,9 +173,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 NOCONFIGURE=1 ./autogen.sh




commit evince for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package evince for openSUSE:Factory checked 
in at 2018-03-26 12:54:08

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


Package is "evince"

Mon Mar 26 12:54:08 2018 rev:133 rq:590034 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/evince/evince.changes2018-03-14 
19:29:46.140953670 +0100
+++ /work/SRC/openSUSE:Factory/.evince.new/evince.changes   2018-03-26 
12:54:10.464583308 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:37:10 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ evince.spec ++
--- /var/tmp/diff_new_pack.PDPSpq/_old  2018-03-26 12:54:12.228519656 +0200
+++ /var/tmp/diff_new_pack.PDPSpq/_new  2018-03-26 12:54:12.232519511 +0200
@@ -36,6 +36,7 @@
 BuildRequires:  libtiff-devel
 BuildRequires:  pkgconfig
 BuildRequires:  texlive-devel
+BuildRequires:  translation-update-upstream
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(adwaita-icon-theme) >= 2.17.1
 BuildRequires:  pkgconfig(ddjvuapi) >= 3.5.22
@@ -64,9 +65,6 @@
 Provides:   evince-browser-plugin
 Obsoletes:  evince-browser-plugin
 %glib2_gsettings_schema_requires
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Evince is a document viewer capable of displaying multiple and
@@ -208,9 +206,7 @@
 
 %prep
 %autosetup -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 # on openSUSE, we share the browser plugins between browsers; do not use 
mozilla's default.




commit evolution-data-server for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package evolution-data-server for 
openSUSE:Factory checked in at 2018-03-26 12:54:02

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


Package is "evolution-data-server"

Mon Mar 26 12:54:02 2018 rev:188 rq:590033 version:3.28.0

Changes:

--- 
/work/SRC/openSUSE:Factory/evolution-data-server/evolution-data-server.changes  
2018-03-14 19:27:32.521698528 +0100
+++ 
/work/SRC/openSUSE:Factory/.evolution-data-server.new/evolution-data-server.changes
 2018-03-26 12:54:05.808751314 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:36:46 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ evolution-data-server.spec ++
--- /var/tmp/diff_new_pack.MSvEbG/_old  2018-03-26 12:54:07.280698198 +0200
+++ /var/tmp/diff_new_pack.MSvEbG/_new  2018-03-26 12:54:07.284698054 +0200
@@ -60,6 +60,7 @@
 # For adresbook data generating
 BuildRequires:  python3-base
 BuildRequires:  sqlite3-devel >= 3.7.17
+BuildRequires:  translation-update-upstream
 BuildRequires:  vala >= 0.22.0
 BuildRequires:  pkgconfig(gcr-base-3) >= 3.4
 BuildRequires:  pkgconfig(goa-1.0) >= 3.8
@@ -72,9 +73,6 @@
 Recommends: %{name}-lang = %{version}
 # typelib-1_0-ECalendar-1_2 was dropped with e-d-s 3.7.3 due to libical not 
being introspecatble.
 Obsoletes:  typelib-1_0-ECalendar-1_2 <= %{version}
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Evolution Data Server provides a central location for your address book
@@ -269,9 +267,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %cmake \




commit evolution for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package evolution for openSUSE:Factory 
checked in at 2018-03-26 12:53:35

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


Package is "evolution"

Mon Mar 26 12:53:35 2018 rev:209 rq:590031 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/evolution/evolution.changes  2018-03-14 
19:31:55.452361490 +0100
+++ /work/SRC/openSUSE:Factory/.evolution.new/evolution.changes 2018-03-26 
12:53:44.449522064 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:35:55 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ evolution.spec ++
--- /var/tmp/diff_new_pack.OsCcUs/_old  2018-03-26 12:53:47.137425070 +0200
+++ /var/tmp/diff_new_pack.OsCcUs/_new  2018-03-26 12:53:47.145424781 +0200
@@ -31,7 +31,7 @@
 # NOTE: Some files are currently GPL-2.0 but pending relicensing, see 
bnc#749859
 License:LGPL-2.0-only AND LGPL-3.0-only
 Group:  Productivity/Networking/Email/Clients
-Url:http://wiki.gnome.org/Apps/Evolution/
+URL:http://wiki.gnome.org/Apps/Evolution/
 Source0:
http://download.gnome.org/sources/evolution/%{evolution_base_version}/%{name}-%{version}.tar.xz
 # The icon we rely on is from adwaita-icon-theme
 BuildRequires:  adwaita-icon-theme
@@ -51,6 +51,7 @@
 BuildRequires:  psmisc
 BuildRequires:  spamassassin
 BuildRequires:  sqlite3-devel
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(atk)
@@ -89,9 +90,6 @@
 %if %{need_autogen}
 BuildRequires:  gnome-common
 %endif
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if %{use_gtkimageview}
 BuildRequires:  pkgconfig(gtkimageview-3.0)
 %endif
@@ -164,9 +162,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %cmake \




commit evolution-ews for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package evolution-ews for openSUSE:Factory 
checked in at 2018-03-26 12:53:54

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


Package is "evolution-ews"

Mon Mar 26 12:53:54 2018 rev:84 rq:590032 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/evolution-ews/evolution-ews.changes  
2018-03-14 19:27:37.537520420 +0100
+++ /work/SRC/openSUSE:Factory/.evolution-ews.new/evolution-ews.changes 
2018-03-26 12:53:55.341129039 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:36:26 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ evolution-ews.spec ++
--- /var/tmp/diff_new_pack.NVt6rI/_old  2018-03-26 12:53:57.221061201 +0200
+++ /var/tmp/diff_new_pack.NVt6rI/_new  2018-03-26 12:53:57.229060913 +0200
@@ -31,6 +31,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  intltool
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(camel-1.2) >= %{_version}
 BuildRequires:  pkgconfig(enchant)
 BuildRequires:  pkgconfig(evolution-calendar-3.0) >= %{_version}
@@ -50,9 +51,6 @@
 BuildRequires:  pkgconfig(libmspack) >= 0.4
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.42
 Recommends: %{name}-lang
-%if !0%{is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 The EWS Exchange Connector for Evolution provides a Exchange backend
@@ -69,9 +67,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 # We need to build directly with the 'final rpath':




commit file-roller for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package file-roller for openSUSE:Factory 
checked in at 2018-03-26 12:52:17

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


Package is "file-roller"

Mon Mar 26 12:52:17 2018 rev:137 rq:590030 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/file-roller/file-roller.changes  2018-03-14 
19:29:53.496692456 +0100
+++ /work/SRC/openSUSE:Factory/.file-roller.new/file-roller.changes 
2018-03-26 12:52:30.208201071 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:35:23 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ file-roller.spec ++
--- /var/tmp/diff_new_pack.cxJ8Rc/_old  2018-03-26 12:52:37.443939968 +0200
+++ /var/tmp/diff_new_pack.cxJ8Rc/_new  2018-03-26 12:52:37.459939392 +0200
@@ -36,6 +36,7 @@
 BuildRequires:  file-devel
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(glib-2.0) >= 2.36.0
 BuildRequires:  pkgconfig(gthread-2.0)
@@ -72,9 +73,6 @@
 #Suggests:   unstuff
 Obsoletes:  nautilus-file-roller
 DocDir: %{_defaultdocdir}
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 File Roller is an archive manager for GNOME. With it, you can create
@@ -88,9 +86,7 @@
 %patch0
 %patch1 -p1
 %patch2 -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson \




commit gdk-pixbuf for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2018-03-26 12:50:56

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


Package is "gdk-pixbuf"

Mon Mar 26 12:50:56 2018 rev:69 rq:590029 version:2.36.11

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2018-03-08 
10:43:11.228252937 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2018-03-26 12:52:02.477201750 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:34:41 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.Zq5y3s/_old  2018-03-26 12:52:05.817081229 +0200
+++ /var/tmp/diff_new_pack.Zq5y3s/_new  2018-03-26 12:52:05.825080941 +0200
@@ -46,14 +46,12 @@
 BuildRequires:  libtiff-devel
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(glib-2.0) >= 2.48.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 gdk-pixbuf is an image loading library that can be extended by loadable
@@ -126,9 +124,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1




commit gedit for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gedit for openSUSE:Factory checked 
in at 2018-03-26 12:50:47

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


Package is "gedit"

Mon Mar 26 12:50:47 2018 rev:123 rq:590027 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gedit/gedit.changes  2018-03-14 
19:28:49.674958831 +0100
+++ /work/SRC/openSUSE:Factory/.gedit.new/gedit.changes 2018-03-26 
12:50:49.755825916 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:33:14 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gedit.spec ++
--- /var/tmp/diff_new_pack.LL0doG/_old  2018-03-26 12:50:50.859786079 +0200
+++ /var/tmp/diff_new_pack.LL0doG/_new  2018-03-26 12:50:50.863785936 +0200
@@ -38,6 +38,7 @@
 BuildRequires:  iso-codes-devel
 BuildRequires:  pkgconfig
 BuildRequires:  python3-base >= 3.2.3
+BuildRequires:  translation-update-upstream
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(gio-2.0) >= 2.44
 BuildRequires:  pkgconfig(glib-2.0) >= 2.44
@@ -61,9 +62,6 @@
 Recommends: iso-codes
 Provides:   gedit2 = %{version}
 Obsoletes:  gedit2 < %{version}
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if %{with python_bindings}
 # See bnc#847114 - plugins generally depend on it
 Requires:   python3-gedit
@@ -108,9 +106,7 @@
 
 %prep
 %autosetup -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure \




commit gedit-plugins for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gedit-plugins for openSUSE:Factory 
checked in at 2018-03-26 12:50:41

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


Package is "gedit-plugins"

Mon Mar 26 12:50:41 2018 rev:47 rq:590026 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gedit-plugins/gedit-plugins.changes  
2018-03-14 19:28:52.674852305 +0100
+++ /work/SRC/openSUSE:Factory/.gedit-plugins.new/gedit-plugins.changes 
2018-03-26 12:50:44.704008212 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:32:18 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gedit-plugins.spec ++
--- /var/tmp/diff_new_pack.WWs3O6/_old  2018-03-26 12:50:45.839967221 +0200
+++ /var/tmp/diff_new_pack.WWs3O6/_new  2018-03-26 12:50:45.843967077 +0200
@@ -32,6 +32,7 @@
 BuildRequires:  intltool
 BuildRequires:  pkgconfig
 BuildRequires:  python3-base
+BuildRequires:  translation-update-upstream
 # configure tests for python gi-bindings of gucharmap
 BuildRequires:  typelib-1_0-Gucharmap-2_90
 BuildRequires:  vala >= 0.28.0
@@ -69,9 +70,6 @@
 Suggests:   gedit-plugin-textsize
 Suggests:   gedit-plugin-wordcompletion
 Enhances:   gedit
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 This package contains a number of plugins for gedit, such as:
@@ -287,9 +285,7 @@
 %setup -q
 %patch0 -p1
 install -m644 %{SOURCE1} .
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure




commit gnome-bluetooth for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-bluetooth for openSUSE:Factory 
checked in at 2018-03-26 12:50:18

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


Package is "gnome-bluetooth"

Mon Mar 26 12:50:18 2018 rev:89 rq:590022 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-bluetooth/gnome-bluetooth.changes  
2018-03-14 19:32:17.791568139 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-bluetooth.new/gnome-bluetooth.changes 
2018-03-26 12:50:23.596769873 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:30:22 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-bluetooth.spec ++
--- /var/tmp/diff_new_pack.JbvHZH/_old  2018-03-26 12:50:25.044717623 +0200
+++ /var/tmp/diff_new_pack.JbvHZH/_new  2018-03-26 12:50:25.052717335 +0200
@@ -23,13 +23,14 @@
 Summary:GNOME Bluetooth graphical utilities
 License:GPL-2.0-or-later AND LGPL-2.1-or-later
 Group:  System/GUI/GNOME
-Url:https://wiki.gnome.org/Projects/GnomeBluetooth
+URL:https://wiki.gnome.org/Projects/GnomeBluetooth
 Source: 
http://download.gnome.org/sources/gnome-bluetooth/3.28/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk-doc
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.12.0
 BuildRequires:  pkgconfig(libcanberra-gtk3)
@@ -39,9 +40,6 @@
 # Require bluez (mandatory, as per readme, bnc#622946)
 Requires:   bluez >= 5
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 A set of graphical utilities to setup, monitor and use Bluetooth devices.
@@ -85,9 +83,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson \




commit glib2 for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package glib2 for openSUSE:Factory checked 
in at 2018-03-26 12:50:26

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


Package is "glib2"

Mon Mar 26 12:50:26 2018 rev:196 rq:590023 version:2.56.0

Changes:

--- /work/SRC/openSUSE:Factory/glib2/glib2.changes  2018-03-14 
19:30:19.243778131 +0100
+++ /work/SRC/openSUSE:Factory/.glib2.new/glib2.changes 2018-03-26 
12:50:31.704477304 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:30:58 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ glib2.spec ++
--- /var/tmp/diff_new_pack.z2QYsb/_old  2018-03-26 12:50:34.260385074 +0200
+++ /var/tmp/diff_new_pack.z2QYsb/_new  2018-03-26 12:50:34.268384784 +0200
@@ -65,6 +65,7 @@
 BuildRequires:  python3-base
 # gdbus-codegen is run during the build, so we need python-xml
 BuildRequires:  python3-xml
+BuildRequires:  translation-update-upstream
 BuildRequires:  xsltproc
 # Needed for gresource
 BuildRequires:  pkgconfig(libelf) >= 0.8.12
@@ -83,9 +84,6 @@
 BuildRequires:  python
 %endif
 %endif
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 GLib is a general-purpose utility library, which provides many useful
@@ -252,9 +250,7 @@
 
 %prep
 %setup -q -n %{_name}-%{version}
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 %patch10 -p1
 %patch11 -p1
 %patch13 -p1




commit glib-networking for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package glib-networking for openSUSE:Factory 
checked in at 2018-03-26 12:50:35

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


Package is "glib-networking"

Mon Mar 26 12:50:35 2018 rev:57 rq:590024 version:2.56.0

Changes:

--- /work/SRC/openSUSE:Factory/glib-networking/glib-networking.changes  
2018-03-14 19:26:16.540396505 +0100
+++ /work/SRC/openSUSE:Factory/.glib-networking.new/glib-networking.changes 
2018-03-26 12:50:38.196243047 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:31:22 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ glib-networking.spec ++
--- /var/tmp/diff_new_pack.WnneIF/_old  2018-03-26 12:50:39.480196715 +0200
+++ /var/tmp/diff_new_pack.WnneIF/_new  2018-03-26 12:50:39.496196138 +0200
@@ -32,6 +32,7 @@
 BuildRequires:  libgcrypt-devel
 BuildRequires:  meson >= 0.43.0
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 # If this BuildRequires changes because of a gio library version change, 
change gio_real_package accordingly
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(glib-2.0) >= 2.55.1
@@ -45,9 +46,6 @@
 Recommends: %{name}-lang = %{version}
 Supplements:%{gio_real_package}
 %{glib2_gio_module_requires}
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 This package contains network-related GIO modules for glib.
@@ -58,10 +56,7 @@
 
 %prep
 %setup -q
-
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson




commit gnome-boxes for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-boxes for openSUSE:Factory 
checked in at 2018-03-26 12:49:14

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


Package is "gnome-boxes"

Mon Mar 26 12:49:14 2018 rev:54 rq:590021 version:3.27.92

Changes:

--- /work/SRC/openSUSE:Factory/gnome-boxes/gnome-boxes.changes  2018-03-14 
19:23:37.278051318 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-boxes.new/gnome-boxes.changes 
2018-03-26 12:49:17.411158200 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:29:59 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-boxes.spec ++
--- /var/tmp/diff_new_pack.D1JVt3/_old  2018-03-26 12:49:18.815107539 +0200
+++ /var/tmp/diff_new_pack.D1JVt3/_new  2018-03-26 12:49:18.827107106 +0200
@@ -28,6 +28,7 @@
 BuildRequires:  fdupes
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  vala >= 0.36.0
 BuildRequires:  yelp-tools
@@ -59,9 +60,6 @@
 # gnome-boxes requires org.freedesktop.Tracker.FTS schema to be available 
(bnc#785356).
 Requires:   tracker
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Boxes is an application to create, setup, access, and use: remote
@@ -87,9 +85,7 @@
 
 %prep
 %autosetup -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson




commit gnome-clocks for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-clocks for openSUSE:Factory 
checked in at 2018-03-26 12:48:59

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


Package is "gnome-clocks"

Mon Mar 26 12:48:59 2018 rev:34 rq:590019 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-clocks/gnome-clocks.changes
2018-03-14 19:26:09.412649595 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-clocks.new/gnome-clocks.changes   
2018-03-26 12:49:03.183671604 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:29:03 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-clocks.spec ++
--- /var/tmp/diff_new_pack.Js2r94/_old  2018-03-26 12:49:04.299631334 +0200
+++ /var/tmp/diff_new_pack.Js2r94/_new  2018-03-26 12:49:04.315630756 +0200
@@ -28,6 +28,7 @@
 BuildRequires:  fdupes
 BuildRequires:  meson >= 0.41.0
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  vala >= 0.23.3
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(geocode-glib-1.0) >= 1.0
@@ -41,9 +42,6 @@
 BuildRequires:  pkgconfig(gweather-3.0) >= 3.27.2
 BuildRequires:  pkgconfig(libgeoclue-2.0) >= 2.4
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 A nice simple app to show the time, date, and alarms.
@@ -62,9 +60,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson




commit gnome-contacts for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-contacts for openSUSE:Factory 
checked in at 2018-03-26 12:48:49

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


Package is "gnome-contacts"

Mon Mar 26 12:48:49 2018 rev:50 rq:590017 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-contacts/gnome-contacts.changes
2018-03-19 23:32:01.451106435 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-contacts.new/gnome-contacts.changes   
2018-03-26 12:48:55.803937905 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:28:05 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-contacts.spec ++
--- /var/tmp/diff_new_pack.yzYaKO/_old  2018-03-26 12:48:56.859899799 +0200
+++ /var/tmp/diff_new_pack.yzYaKO/_new  2018-03-26 12:48:56.867899512 +0200
@@ -28,6 +28,7 @@
 BuildRequires:  docbook_4
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  vala
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(cheese)
@@ -50,9 +51,6 @@
 BuildRequires:  pkgconfig(libedataserverui-1.2) >= 3.13.90
 BuildRequires:  pkgconfig(telepathy-glib) >= 0.22.0
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 The integraded address book for GNOME.
@@ -88,9 +86,7 @@
 
 %prep
 %autosetup -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson \




commit gnome-control-center for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-control-center for 
openSUSE:Factory checked in at 2018-03-26 12:48:39

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


Package is "gnome-control-center"

Mon Mar 26 12:48:39 2018 rev:163 rq:590016 version:3.28.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes
2018-03-14 19:29:33.549400813 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center.changes
   2018-03-26 12:48:44.740337138 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:27:38 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-control-center.spec ++
--- /var/tmp/diff_new_pack.lRA3TU/_old  2018-03-26 12:48:46.520272908 +0200
+++ /var/tmp/diff_new_pack.lRA3TU/_new  2018-03-26 12:48:46.528272620 +0200
@@ -54,6 +54,7 @@
 BuildRequires:  krb5-devel
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(accountsservice) >= 0.6.39
@@ -128,9 +129,6 @@
 Obsoletes:  gnome-control-center-branding <= 12.3
 Obsoletes:  gnome-control-center-branding-openSUSE <= 12.3
 Obsoletes:  gnome-control-center-branding-upstream <= 12.3
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 The control center is GNOME's main interface for configuration of
@@ -186,10 +184,10 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
+translation-update-upstream
 
 # SLE-only patches 1000+
 %if !0%{?is_opensuse}
-translation-update-upstream
 %patch1000 -p1
 %patch1001 -p1
 %patch1002 -p1




commit gnome-calculator for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-calculator for 
openSUSE:Factory checked in at 2018-03-26 12:49:08

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


Package is "gnome-calculator"

Mon Mar 26 12:49:08 2018 rev:37 rq:590020 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calculator/gnome-calculator.changes
2018-03-14 19:30:54.418528993 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-calculator.new/gnome-calculator.changes   
2018-03-26 12:49:11.459372972 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:29:25 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-calculator.spec ++
--- /var/tmp/diff_new_pack.tvhMUw/_old  2018-03-26 12:49:12.895321156 +0200
+++ /var/tmp/diff_new_pack.tvhMUw/_new  2018-03-26 12:49:12.903320868 +0200
@@ -29,6 +29,7 @@
 BuildRequires:  mpc-devel
 BuildRequires:  mpfr-devel
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  vala
 BuildRequires:  yelp-tools
@@ -41,9 +42,6 @@
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.42
 BuildRequires:  pkgconfig(libxml-2.0)
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 A GNOME calculator package based on calctool and MP library.
@@ -62,9 +60,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson




commit gnome-desktop for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-desktop for openSUSE:Factory 
checked in at 2018-03-26 12:47:36

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


Package is "gnome-desktop"

Mon Mar 26 12:47:36 2018 rev:142 rq:590015 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-desktop/gnome-desktop.changes  
2018-03-14 19:31:24.433463076 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-desktop.new/gnome-desktop.changes 
2018-03-26 12:48:33.616738537 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:27:01 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-desktop.spec ++
--- /var/tmp/diff_new_pack.GBrBAW/_old  2018-03-26 12:48:34.796695958 +0200
+++ /var/tmp/diff_new_pack.GBrBAW/_new  2018-03-26 12:48:34.800695814 +0200
@@ -32,6 +32,7 @@
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  intltool
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(gdk-pixbuf-2.0) >= 2.36.5
 BuildRequires:  pkgconfig(glib-2.0) >= 2.53.0
@@ -43,9 +44,6 @@
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xkbfile)
 BuildRequires:  pkgconfig(xkeyboard-config)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if 0%{?BUILD_FROM_VCS}
 BuildRequires:  gnome-common
 BuildRequires:  gtk-doc
@@ -129,9 +127,7 @@
 %prep
 %setup -q
 %patch1 -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %if 0%{?BUILD_FROM_VCS}
 [ -x ./autogen.sh] && NOCONFIGURE=1 ./autogen.sh




commit gnome-dictionary for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-dictionary for 
openSUSE:Factory checked in at 2018-03-26 12:47:28

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


Package is "gnome-dictionary"

Mon Mar 26 12:47:28 2018 rev:27 rq:590014 version:3.26.1

Changes:

--- /work/SRC/openSUSE:Factory/gnome-dictionary/gnome-dictionary.changes
2018-03-08 10:43:49.630870234 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-dictionary.new/gnome-dictionary.changes   
2018-03-26 12:47:31.330986143 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:26:35 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-dictionary.spec ++
--- /var/tmp/diff_new_pack.vPqyTZ/_old  2018-03-26 12:47:33.198918738 +0200
+++ /var/tmp/diff_new_pack.vPqyTZ/_new  2018-03-26 12:47:33.202918594 +0200
@@ -29,6 +29,7 @@
 BuildRequires:  gtk-doc
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(glib-2.0) >= 2.39.0
@@ -39,9 +40,6 @@
 # Merge the package back into the main package, obsoleting libgdict-data
 Obsoletes:  libgdict-data < %{version}
 %glib2_gsettings_schema_requires
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 The Dictionary application enables you to search words and terms on a
@@ -51,9 +49,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson




commit gnome-disk-utility for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-disk-utility for 
openSUSE:Factory checked in at 2018-03-26 12:47:20

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


Package is "gnome-disk-utility"

Mon Mar 26 12:47:20 2018 rev:58 rq:590013 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-disk-utility/gnome-disk-utility.changes
2018-03-14 19:28:18.224075659 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-disk-utility.new/gnome-disk-utility.changes   
2018-03-26 12:47:22.923289538 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:26:05 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-disk-utility.spec ++
--- /var/tmp/diff_new_pack.icYMjU/_old  2018-03-26 12:47:24.831220690 +0200
+++ /var/tmp/diff_new_pack.icYMjU/_new  2018-03-26 12:47:24.839220401 +0200
@@ -27,6 +27,7 @@
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(dvdread) >= 4.2.0
@@ -42,9 +43,6 @@
 BuildRequires:  pkgconfig(udisks2) >= 2.7.2
 Requires:   udisks2
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 The gnome-disk-utility project provides the Disks application for
@@ -54,9 +52,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson




commit gnome-font-viewer for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-font-viewer for 
openSUSE:Factory checked in at 2018-03-26 12:47:14

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


Package is "gnome-font-viewer"

Mon Mar 26 12:47:14 2018 rev:29 rq:590011 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-font-viewer/gnome-font-viewer.changes  
2018-03-14 19:32:34.342980329 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-font-viewer.new/gnome-font-viewer.changes 
2018-03-26 12:47:17.267493631 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:24:31 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-font-viewer.spec ++
--- /var/tmp/diff_new_pack.L3jJcP/_old  2018-03-26 12:47:18.155461588 +0200
+++ /var/tmp/diff_new_pack.L3jJcP/_new  2018-03-26 12:47:18.155461588 +0200
@@ -26,6 +26,7 @@
 Source0:
http://download.gnome.org/sources/gnome-font-viewer/3.28/%{name}-%{version}.tar.xz
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(fontconfig)
 BuildRequires:  pkgconfig(freetype2)
@@ -36,9 +37,6 @@
 BuildRequires:  pkgconfig(harfbuzz) >= 0.9.9
 Recommends: %{name}-lang
 Conflicts:  gnome-utils < 3.3.1
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 A utility to let you see the installed fonts at a glance.
@@ -47,9 +45,7 @@
 
 %prep
 %autosetup -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson




commit gnome-keyring for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-keyring for openSUSE:Factory 
checked in at 2018-03-26 12:47:07

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


Package is "gnome-keyring"

Mon Mar 26 12:47:07 2018 rev:130 rq:590010 version:3.28.0.1

Changes:

--- /work/SRC/openSUSE:Factory/gnome-keyring/gnome-keyring.changes  
2018-03-14 19:31:18.373678278 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-keyring.new/gnome-keyring.changes 
2018-03-26 12:47:09.371778550 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:24:03 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-keyring.spec ++
--- /var/tmp/diff_new_pack.8U8v0J/_old  2018-03-26 12:47:10.815726445 +0200
+++ /var/tmp/diff_new_pack.8U8v0J/_new  2018-03-26 12:47:10.819726301 +0200
@@ -45,6 +45,7 @@
 BuildRequires:  openssh
 BuildRequires:  pam-devel
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gck-1) >= 3.3.4
 BuildRequires:  pkgconfig(gcr-3) >= 3.27.90
@@ -54,9 +55,6 @@
 Recommends: %{name}-pam
 Provides:   dbus(org.freedesktop.secrets)
 Provides:   dbus(org.gnome.keyring)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if 0%{?BUILD_FROM_VCS}
 BuildRequires:  gnome-common
 %endif
@@ -121,8 +119,8 @@
 %if !0%{?is_opensuse}
 %patch1000 -p1
 %patch1001 -p1
-translation-update-upstream
 %endif
+translation-update-upstream
 
 %build
 autoreconf -f




commit gnome-packagekit for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-packagekit for 
openSUSE:Factory checked in at 2018-03-26 12:46:00

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


Package is "gnome-packagekit"

Mon Mar 26 12:46:00 2018 rev:128 rq:590006 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-packagekit/gnome-packagekit.changes
2018-03-14 19:27:58.676769778 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-packagekit.new/gnome-packagekit.changes   
2018-03-26 12:47:02.236036047 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:22:33 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-packagekit.spec ++
--- /var/tmp/diff_new_pack.4zffh0/_old  2018-03-26 12:47:03.587987262 +0200
+++ /var/tmp/diff_new_pack.4zffh0/_new  2018-03-26 12:47:03.591987117 +0200
@@ -45,6 +45,7 @@
 BuildRequires:  gnome-menus-devel
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(dbus-1)
@@ -59,9 +60,6 @@
 Obsoletes:  opensuse-updater-gnome < 0.4.7
 Provides:   org.freedesktop.PackageKit.service
 %glib2_gsettings_schema_requires
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if %{with_systemd}
 BuildRequires:  pkgconfig(libsystemd)
 BuildRequires:  pkgconfig(polkit-gobject-1)
@@ -89,9 +87,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1




commit gnome-settings-daemon for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-settings-daemon for 
openSUSE:Factory checked in at 2018-03-26 12:45:27

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


Package is "gnome-settings-daemon"

Mon Mar 26 12:45:27 2018 rev:148 rq:590002 version:3.28.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-settings-daemon/gnome-settings-daemon.changes  
2018-03-14 19:28:43.939162512 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-settings-daemon.new/gnome-settings-daemon.changes
 2018-03-26 12:45:31.719302387 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:20:36 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-settings-daemon.spec ++
--- /var/tmp/diff_new_pack.IRy7Ph/_old  2018-03-26 12:45:34.011219683 +0200
+++ /var/tmp/diff_new_pack.IRy7Ph/_new  2018-03-26 12:45:34.051218240 +0200
@@ -52,11 +52,13 @@
 Patch9: gnome-settings-daemon-bgo793253.patch
 BuildRequires:  cups-devel
 BuildRequires:  fdupes
+BuildRequires:  gnome-patch-translation
 BuildRequires:  gtk-doc
 BuildRequires:  meson
 BuildRequires:  pkgconfig
 # For directory ownership; it's fine to BuildRequire it since it's also a 
Requires
 BuildRequires:  polkit
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(alsa)
@@ -100,10 +102,6 @@
 %if 0%{?suse_version} == 1315
 BuildRequires:  gnome-common
 %endif
-%if !0%{?is_opensuse}
-BuildRequires:  gnome-patch-translation
-BuildRequires:  translation-update-upstream
-%endif
 %if 0%{?suse_version} == 1315
 BuildRequires:  pkgconfig(packagekit-glib2)
 %endif
@@ -151,9 +149,9 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
 gnome-patch-translation-prepare
+%if !0%{?is_opensuse}
 %patch1 -p1
 %patch2 -p1
 %patch3




commit gnome-power-manager for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-power-manager for 
openSUSE:Factory checked in at 2018-03-26 12:45:51

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


Package is "gnome-power-manager"

Mon Mar 26 12:45:51 2018 rev:123 rq:590005 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-power-manager/gnome-power-manager.changes  
2018-03-08 10:50:33.252338633 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-power-manager.new/gnome-power-manager.changes 
2018-03-26 12:45:51.454590230 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:22:08 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-power-manager.spec ++
--- /var/tmp/diff_new_pack.8nSTQx/_old  2018-03-26 12:45:52.422555300 +0200
+++ /var/tmp/diff_new_pack.8nSTQx/_new  2018-03-26 12:45:52.422555300 +0200
@@ -29,6 +29,7 @@
 BuildRequires:  libupower-glib-devel
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(gdk-3.0) >= 2.91.7
 BuildRequires:  pkgconfig(glib-2.0) >= 2.45.8
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.3.8
@@ -36,9 +37,6 @@
 Requires:   upower
 Recommends: %{name}-lang
 %glib2_gsettings_schema_requires
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 GNOME Power Manager is a GNOME session daemon that acts as a policy
@@ -49,9 +47,7 @@
 
 %prep
 %autosetup
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson \




commit gnome-screenshot for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-screenshot for 
openSUSE:Factory checked in at 2018-03-26 12:45:44

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


Package is "gnome-screenshot"

Mon Mar 26 12:45:44 2018 rev:35 rq:590004 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-screenshot/gnome-screenshot.changes
2018-03-08 10:44:29.141447657 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-screenshot.new/gnome-screenshot.changes   
2018-03-26 12:45:47.138745969 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:21:43 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-screenshot.spec ++
--- /var/tmp/diff_new_pack.7tXwCA/_old  2018-03-26 12:45:48.382701080 +0200
+++ /var/tmp/diff_new_pack.7tXwCA/_new  2018-03-26 12:45:48.386700936 +0200
@@ -28,6 +28,7 @@
 Patch0: gnome-screenshot-onlyshowin.patch
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(appstream-glib)
 BuildRequires:  pkgconfig(glib-2.0) >= 2.35.1
@@ -37,9 +38,6 @@
 BuildRequires:  pkgconfig(xext)
 Recommends: %{name}-lang
 Conflicts:  gnome-utils < 3.3.1
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 The screenshot tool captures the screen, a window, or an user-defined
@@ -50,9 +48,7 @@
 %prep
 %setup -q
 %patch0 -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson




commit gnome-session for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-session for openSUSE:Factory 
checked in at 2018-03-26 12:45:36

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


Package is "gnome-session"

Mon Mar 26 12:45:36 2018 rev:179 rq:590003 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-session/gnome-session.changes  
2018-03-14 19:32:47.298520221 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-session.new/gnome-session.changes 
2018-03-26 12:45:41.974932308 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:21:08 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-session.spec ++
--- /var/tmp/diff_new_pack.ERb1CU/_old  2018-03-26 12:45:43.062893049 +0200
+++ /var/tmp/diff_new_pack.ERb1CU/_new  2018-03-26 12:45:43.062893049 +0200
@@ -22,7 +22,7 @@
 Summary:Session Tools for the GNOME Desktop
 License:GPL-2.0-or-later
 Group:  System/GUI/GNOME
-Url:http://www.gnome.org
+URL:http://www.gnome.org
 Source: 
http://download.gnome.org/sources/gnome-session/3.28/%{name}-%{version}.tar.xz
 Source1:gnome
 Source2:gnome.desktop
@@ -33,6 +33,7 @@
 BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  tcpd-devel
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(dbus-glib-1) >= 0.76
@@ -58,9 +59,6 @@
 Requires:   %{name}-core = %{version}
 Requires:   %{name}-default-session = %{version}
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 # gnome-session-wayland not recommended by default yet: causes various issues:
 # qemu's default video mode is 'cirrus', which stays black with GNOME Wayland
 # YaST cannot be started without additional tricks
@@ -109,9 +107,7 @@
 %prep
 %setup -q
 %patch0 -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson \




commit gnome-shell-extensions for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-shell-extensions for 
openSUSE:Factory checked in at 2018-03-26 12:45:16

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


Package is "gnome-shell-extensions"

Mon Mar 26 12:45:16 2018 rev:78 rq:590001 version:3.28.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-shell-extensions/gnome-shell-extensions.changes
2018-03-14 19:41:00.233011960 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-shell-extensions.new/gnome-shell-extensions.changes
   2018-03-26 12:45:20.887693252 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:20:01 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-shell-extensions.spec ++
--- /var/tmp/diff_new_pack.PXvb77/_old  2018-03-26 12:45:22.855622238 +0200
+++ /var/tmp/diff_new_pack.PXvb77/_new  2018-03-26 12:45:22.863621950 +0200
@@ -42,17 +42,15 @@
 # PATCH-FIX-SLE gse-sle-classic-ext.patch Fate#318572 cxi...@suse.com -- add 
sle classic support
 Patch1000:  gse-sle-classic-ext.patch
 BuildRequires:  fdupes
+BuildRequires:  gnome-patch-translation
 # Needed for directory ownership
 BuildRequires:  gnome-shell
 # gobject-introspection is needed for the typelib() rpm magic.
 BuildRequires:  gobject-introspection
 BuildRequires:  meson >= 0.44.0
 BuildRequires:  sassc
-BuildArch:  noarch
-%if !0%{?is_opensuse}
-BuildRequires:  gnome-patch-translation
 BuildRequires:  translation-update-upstream
-%endif
+BuildArch:  noarch
 
 %description
 GNOME Shell Extensions is a collection of extensions providing
@@ -100,9 +98,9 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
 gnome-patch-translation-prepare
+%if !0%{?is_opensuse}
 %patch3 -p1
 %endif
 %patch1000 -p1




commit gnome-tweaks for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-tweaks for openSUSE:Factory 
checked in at 2018-03-26 12:44:01

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


Package is "gnome-tweaks"

Mon Mar 26 12:44:01 2018 rev:3 rq:589996 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-tweaks/gnome-tweaks.changes
2018-03-16 10:34:53.938729065 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-tweaks.new/gnome-tweaks.changes   
2018-03-26 12:44:03.870472985 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:17:16 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-tweaks.spec ++
--- /var/tmp/diff_new_pack.2s3hPr/_old  2018-03-26 12:44:05.914399097 +0200
+++ /var/tmp/diff_new_pack.2s3hPr/_new  2018-03-26 12:44:05.922398808 +0200
@@ -30,6 +30,7 @@
 BuildRequires:  gobject-introspection
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(gsettings-desktop-schemas) >= 3.23.3
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.12.0
 BuildRequires:  pkgconfig(pygobject-3.0) >= 3.10
@@ -43,9 +44,6 @@
 Obsoletes:  gnome-tweak-tool < 3.27.4
 Obsoletes:  gnome-tweak-tool-lang < 3.27.4
 BuildArch:  noarch
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 GNOME Tweak Tool is an application for changing the advanced settings
@@ -55,9 +53,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 # Tiny tweak to shut up rpmlint
 sed -i 's:Pantheon:X-Pantheon:g' */org.gnome.tweaks.desktop.in
 # Tweak to fix python env




commit gtk3 for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gtk3 for openSUSE:Factory checked in 
at 2018-03-26 12:43:43

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


Package is "gtk3"

Mon Mar 26 12:43:43 2018 rev:127 rq:589992 version:3.22.29

Changes:

--- /work/SRC/openSUSE:Factory/gtk3/gtk3.changes2018-03-19 
23:32:22.514346584 +0100
+++ /work/SRC/openSUSE:Factory/.gtk3.new/gtk3.changes   2018-03-26 
12:43:46.823089246 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:12:52 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gtk3.spec ++
--- /var/tmp/diff_new_pack.CEYLxK/_old  2018-03-26 12:43:48.299035890 +0200
+++ /var/tmp/diff_new_pack.CEYLxK/_new  2018-03-26 12:43:48.319035167 +0200
@@ -48,6 +48,7 @@
 BuildRequires:  gettext-tools-mini >= 0.19.7
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(atk) >= 2.15.1
 BuildRequires:  pkgconfig(atk-bridge-2.0)
@@ -74,9 +75,6 @@
 BuildRequires:  pkgconfig(xi)
 BuildRequires:  pkgconfig(xinerama)
 BuildRequires:  pkgconfig(xrandr)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if %{build_wayland_backend}
 BuildRequires:  pkgconfig(wayland-client) >= 1.9.90
 BuildRequires:  pkgconfig(wayland-cursor)
@@ -341,7 +339,6 @@
 
 %prep
 %setup -q -n %{_name}-%{version}
-%if !0%{?is_opensuse}
 # Translation this time intentionally disabled.. they fail
 translation-update-upstream
 translation-update-upstream po-properties gtk30-properties
@@ -353,7 +350,6 @@
 sed -i "/^$LNG\$/d" po/LINGUAS
 fi
 done
-%endif
 %if "%{_lib}" == "lib64"
 cp -a %{SOURCE1} .
 %patch0 -p1




commit gnome-terminal for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-terminal for openSUSE:Factory 
checked in at 2018-03-26 12:44:07

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


Package is "gnome-terminal"

Mon Mar 26 12:44:07 2018 rev:115 rq:589997 version:3.28.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-terminal/gnome-terminal.changes
2018-03-14 19:30:28.795438932 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-terminal.new/gnome-terminal.changes   
2018-03-26 12:44:11.646191894 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:18:07 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-terminal.spec ++
--- /var/tmp/diff_new_pack.V3zTGY/_old  2018-03-26 12:44:12.730152756 +0200
+++ /var/tmp/diff_new_pack.V3zTGY/_new  2018-03-26 12:44:12.742152323 +0200
@@ -29,6 +29,7 @@
 BuildRequires:  gnome-shell
 BuildRequires:  intltool >= 0.50.1
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(dconf) >= 0.14.0
@@ -44,9 +45,6 @@
 BuildRequires:  pkgconfig(x11)
 Requires(pre):  filesystem
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if 0%{?sle_version}
 BuildRequires:  pkgconfig(gconf-2.0) >= 2.31.3
 %endif
@@ -83,10 +81,7 @@
 
 %prep
 %autosetup
-
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure \




commit gucharmap for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gucharmap for openSUSE:Factory 
checked in at 2018-03-26 12:42:27

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


Package is "gucharmap"

Mon Mar 26 12:42:27 2018 rev:96 rq:589988 version:10.0.4

Changes:

--- /work/SRC/openSUSE:Factory/gucharmap/gucharmap.changes  2018-03-19 
23:31:57.415252027 +0100
+++ /work/SRC/openSUSE:Factory/.gucharmap.new/gucharmap.changes 2018-03-26 
12:42:46.745261093 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:07:37 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gucharmap.spec ++
--- /var/tmp/diff_new_pack.Rw2Ynf/_old  2018-03-26 12:43:32.671600824 +0200
+++ /var/tmp/diff_new_pack.Rw2Ynf/_new  2018-03-26 12:43:32.675600680 +0200
@@ -26,7 +26,7 @@
 Summary:A Featureful Unicode Character Map
 License:GPL-3.0-or-later AND LGPL-2.1-or-later
 Group:  System/GUI/GNOME
-Url:https://wiki.gnome.org/Apps/Gucharmap
+URL:https://wiki.gnome.org/Apps/Gucharmap
 Source: 
http://download.gnome.org/sources/gucharmap/10.0/%{name}-%{version}.tar.xz
 BuildRequires:  appdata-tools
 BuildRequires:  fdupes
@@ -36,6 +36,7 @@
 BuildRequires:  gtk3-devel >= 3.4.0
 BuildRequires:  intltool
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  unicode-ucd
 BuildRequires:  unicode-ucd-unihan
 BuildRequires:  unzip
@@ -46,9 +47,6 @@
 BuildRequires:  pkgconfig(glib-2.0) >= 2.32.0
 Recommends: %{name}-doc
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Gucharmap is a featureful unicode character map.
@@ -86,9 +84,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 export LIBS="-ldl"




commit gnome-system-monitor for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gnome-system-monitor for 
openSUSE:Factory checked in at 2018-03-26 12:44:15

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


Package is "gnome-system-monitor"

Mon Mar 26 12:44:15 2018 rev:102 rq:58 version:3.28.0

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-system-monitor/gnome-system-monitor.changes
2018-03-14 19:30:44.246890214 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-system-monitor.new/gnome-system-monitor.changes
   2018-03-26 12:44:17.109994707 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:18:31 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gnome-system-monitor.spec ++
--- /var/tmp/diff_new_pack.WV9tj1/_old  2018-03-26 12:44:18.285952272 +0200
+++ /var/tmp/diff_new_pack.WV9tj1/_new  2018-03-26 12:44:18.313951261 +0200
@@ -28,6 +28,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
 BuildRequires:  polkit-devel
+BuildRequires:  translation-update-upstream
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(gdk-x11-3.0)
 BuildRequires:  pkgconfig(giomm-2.4) >= 2.46
@@ -41,9 +42,6 @@
 BuildRequires:  pkgconfig(libsystemd) >= 44
 BuildRequires:  pkgconfig(libxml-2.0) >= 2.0
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 GNOME-system-monitor is a process and system monitor for the GNOME
@@ -54,9 +52,7 @@
 
 %prep
 %autosetup
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure \




commit gtk2 for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gtk2 for openSUSE:Factory checked in 
at 2018-03-26 12:43:52

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


Package is "gtk2"

Mon Mar 26 12:43:52 2018 rev:166 rq:589993 version:2.24.32

Changes:

--- /work/SRC/openSUSE:Factory/gtk2/gtk2.changes2018-03-05 
13:32:53.714718364 +0100
+++ /work/SRC/openSUSE:Factory/.gtk2.new/gtk2.changes   2018-03-26 
12:43:57.066718939 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:13:36 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gtk2.spec ++
--- /var/tmp/diff_new_pack.TRUOPe/_old  2018-03-26 12:43:59.338636809 +0200
+++ /var/tmp/diff_new_pack.TRUOPe/_new  2018-03-26 12:43:59.342636665 +0200
@@ -66,6 +66,7 @@
 BuildRequires:  libtool
 BuildRequires:  pango-devel
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(fontconfig)
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xcomposite)
@@ -77,9 +78,6 @@
 BuildRequires:  pkgconfig(xinerama)
 BuildRequires:  pkgconfig(xrandr) >= 1.2.99
 BuildRequires:  pkgconfig(xrender)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 GTK+ is a multi-platform toolkit for creating graphical user interfaces.
@@ -303,7 +301,6 @@
 %prep
 %setup -q -n %{_name}-%{version}
 
-%if !0%{?is_opensuse}
 translation-update-upstream
 translation-update-upstream po-properties gtk20-properties
 # remove incomplete translations caused by translation-update-upstream (global 
LINGUAS file, two domains)
@@ -314,7 +311,6 @@
 sed -i "/^$LNG\$/d" po/LINGUAS
 fi
 done
-%endif
 gnome-patch-translation-prepare
 %if "%{_lib}" == "lib64"
 cp -a %{SOURCE2} .




commit gvfs for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gvfs for openSUSE:Factory checked in 
at 2018-03-26 12:42:12

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


Package is "gvfs"

Mon Mar 26 12:42:12 2018 rev:148 rq:589987 version:1.36.0

Changes:

--- /work/SRC/openSUSE:Factory/gvfs/gvfs.changes2018-03-14 
19:28:02.996616383 +0100
+++ /work/SRC/openSUSE:Factory/.gvfs.new/gvfs.changes   2018-03-26 
12:42:24.254074178 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:07:14 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gvfs.spec ++
--- /var/tmp/diff_new_pack.8kSIvF/_old  2018-03-26 12:42:25.934013446 +0200
+++ /var/tmp/diff_new_pack.8kSIvF/_new  2018-03-26 12:42:25.938013301 +0200
@@ -43,6 +43,7 @@
 BuildRequires:  meson
 BuildRequires:  openssh
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(gcr-base-3)
 BuildRequires:  pkgconfig(gio-2.0)
@@ -74,9 +75,6 @@
 %if !%{with_udisks2}
 BuildRequires:  libgdu-devel
 %endif
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if %{with_udisks2}
 BuildRequires:  pkgconfig(udisks2) >= 1.97
 %endif
@@ -165,8 +163,8 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
+%if !0%{?is_opensuse}
 %patch1000 -p1
 %patch1001 -p1
 %endif




commit json-glib for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package json-glib for openSUSE:Factory 
checked in at 2018-03-26 12:42:01

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


Package is "json-glib"

Mon Mar 26 12:42:01 2018 rev:42 rq:589985 version:1.4.2

Changes:

--- /work/SRC/openSUSE:Factory/json-glib/json-glib.changes  2018-03-08 
10:47:38.030646937 +0100
+++ /work/SRC/openSUSE:Factory/.json-glib.new/json-glib.changes 2018-03-26 
12:42:05.346757708 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:06:18 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ json-glib.spec ++
--- /var/tmp/diff_new_pack.Fw186W/_old  2018-03-26 12:42:06.386720112 +0200
+++ /var/tmp/diff_new_pack.Fw186W/_new  2018-03-26 12:42:06.390719967 +0200
@@ -29,9 +29,7 @@
 BuildRequires:  glib2-devel >= 2.46
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  meson
-%if !0%{?is_opensuse}
 BuildRequires:  translation-update-upstream
-%endif
 
 %description
 JSON-GLib provides a parser and a generator GObject classes and various
@@ -92,9 +90,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 # These 2 options should work, but currently install fase fails.




commit libgsf for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package libgsf for openSUSE:Factory checked 
in at 2018-03-26 12:41:53

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


Package is "libgsf"

Mon Mar 26 12:41:53 2018 rev:62 rq:589980 version:1.14.42

Changes:

--- /work/SRC/openSUSE:Factory/libgsf/libgsf.changes2018-03-08 
10:52:27.144238480 +0100
+++ /work/SRC/openSUSE:Factory/.libgsf.new/libgsf.changes   2018-03-26 
12:41:55.119127456 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:01:52 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ libgsf.spec ++
--- /var/tmp/diff_new_pack.y7Jjqv/_old  2018-03-26 12:41:56.283085376 +0200
+++ /var/tmp/diff_new_pack.y7Jjqv/_new  2018-03-26 12:41:56.283085376 +0200
@@ -22,12 +22,13 @@
 Summary:I/O library for dealing with structured file formats
 License:GPL-2.0-or-later AND LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
-Url:https://www.gnome.org
+URL:https://www.gnome.org
 Source: 
http://download.gnome.org/sources/libgsf/1.14/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
 BuildRequires:  intltool
 BuildRequires:  libbz2-devel
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gdk-pixbuf-2.0)
 BuildRequires:  pkgconfig(gio-2.0) >= 2.26.0
@@ -35,11 +36,7 @@
 BuildRequires:  pkgconfig(gobject-2.0) >= 2.26.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 1.0.0
 BuildRequires:  pkgconfig(libxml-2.0) >= 2.4.16
-#
 Requires:   libgsf-1-114
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 The libgsf library is an extensible I/O abstraction library for dealing
@@ -102,9 +99,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure --disable-static \




commit libsoup for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package libsoup for openSUSE:Factory checked 
in at 2018-03-26 12:40:40

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


Package is "libsoup"

Mon Mar 26 12:40:40 2018 rev:105 rq:589976 version:2.62.0

Changes:

--- /work/SRC/openSUSE:Factory/libsoup/libsoup.changes  2018-03-14 
19:29:28.713572539 +0100
+++ /work/SRC/openSUSE:Factory/.libsoup.new/libsoup.changes 2018-03-26 
12:40:41.917773874 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 16:59:51 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ libsoup.spec ++
--- /var/tmp/diff_new_pack.OOYxKg/_old  2018-03-26 12:40:43.237726153 +0200
+++ /var/tmp/diff_new_pack.OOYxKg/_new  2018-03-26 12:40:43.257725430 +0200
@@ -29,6 +29,7 @@
 BuildRequires:  intltool >= 0.35.0
 BuildRequires:  pkgconfig
 BuildRequires:  python3-base
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(gio-2.0) >= 2.38.0
 BuildRequires:  pkgconfig(gobject-2.0) >= 2.38.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 0.9.5
@@ -37,9 +38,6 @@
 BuildRequires:  pkgconfig(libxml-2.0)
 BuildRequires:  pkgconfig(sqlite3)
 BuildRequires:  pkgconfig(vapigen)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 # We do not need these dependencies needed only for tests.
 #BuildRequires:  apache2-mod_php5 php5-xmlrpc
 
@@ -115,9 +113,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure\




commit libpeas for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package libpeas for openSUSE:Factory checked 
in at 2018-03-26 12:40:45

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


Package is "libpeas"

Mon Mar 26 12:40:45 2018 rev:37 rq:589978 version:1.22.0

Changes:

--- /work/SRC/openSUSE:Factory/libpeas/libpeas.changes  2018-03-08 
10:47:56.117995744 +0100
+++ /work/SRC/openSUSE:Factory/.libpeas.new/libpeas.changes 2018-03-26 
12:40:48.149548576 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:00:47 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ libpeas.spec ++
--- /var/tmp/diff_new_pack.Ea26MU/_old  2018-03-26 12:40:49.405503169 +0200
+++ /var/tmp/diff_new_pack.Ea26MU/_new  2018-03-26 12:40:49.409503024 +0200
@@ -32,6 +32,7 @@
 BuildRequires:  gnome-common
 BuildRequires:  intltool
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(gio-2.0) >= 2.32.0
 BuildRequires:  pkgconfig(gladeui-2.0)
 BuildRequires:  pkgconfig(gobject-2.0) >= 2.38.0
@@ -48,9 +49,6 @@
 BuildRequires:  lua51-devel >= 5.1.0
 BuildRequires:  pkgconfig(luajit) >= 2.0
 %endif
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 libpeas is a gobject-based plugin engine, and is targetted at giving
@@ -175,9 +173,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 NOCONFIGURE=1 ./autogen.sh




commit libgtop for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package libgtop for openSUSE:Factory checked 
in at 2018-03-26 12:40:53

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


Package is "libgtop"

Mon Mar 26 12:40:53 2018 rev:59 rq:589979 version:2.38.0

Changes:

--- /work/SRC/openSUSE:Factory/libgtop/libgtop.changes  2018-03-08 
10:47:18.875336583 +0100
+++ /work/SRC/openSUSE:Factory/.libgtop.new/libgtop.changes 2018-03-26 
12:40:58.405177804 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:01:20 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ libgtop.spec ++
--- /var/tmp/diff_new_pack.f6Wn1W/_old  2018-03-26 12:40:59.277146279 +0200
+++ /var/tmp/diff_new_pack.f6Wn1W/_new  2018-03-26 12:40:59.281146135 +0200
@@ -29,11 +29,9 @@
 BuildRequires:  glib2-devel
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(gobject-2.0) >= 2.26.0
 BuildRequires:  pkgconfig(xau)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 A library that fetches information about the running system, such as
@@ -106,10 +104,8 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream po libgtop
 # rpmlint note: libgtop has a separate translation for both Bengali and 
Bengali India
-%endif
 
 %build
 %configure\




commit libwnck for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package libwnck for openSUSE:Factory checked 
in at 2018-03-26 12:40:32

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


Package is "libwnck"

Mon Mar 26 12:40:32 2018 rev:83 rq:589975 version:3.24.1

Changes:

--- /work/SRC/openSUSE:Factory/libwnck/libwnck.changes  2018-03-08 
10:48:17.041242456 +0100
+++ /work/SRC/openSUSE:Factory/.libwnck.new/libwnck.changes 2018-03-26 
12:40:35.677999462 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 16:59:19 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ libwnck.spec ++
--- /var/tmp/diff_new_pack.d0Gek8/_old  2018-03-26 12:40:36.649964322 +0200
+++ /var/tmp/diff_new_pack.d0Gek8/_new  2018-03-26 12:40:36.657964033 +0200
@@ -29,13 +29,11 @@
 BuildRequires:  gettext
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.22.0
 BuildRequires:  pkgconfig(libstartup-notification-1.0)
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xres)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 The Window Navigator Construction Kit is a library that can be used to
@@ -89,10 +87,8 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
 # rpmlint note: libwnck has a separate translation for both Bengali and 
Bengali India
-%endif
 
 %build
 %configure\




commit NetworkManager-vpnc for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package NetworkManager-vpnc for 
openSUSE:Factory checked in at 2018-03-26 12:40:21

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


Package is "NetworkManager-vpnc"

Mon Mar 26 12:40:21 2018 rev:63 rq:589970 version:1.2.4

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager-vpnc/NetworkManager-vpnc.changes  
2018-03-08 10:50:20.204808357 +0100
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-vpnc.new/NetworkManager-vpnc.changes 
2018-03-26 12:40:25.722359392 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 16:54:13 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ NetworkManager-vpnc.spec ++
--- /var/tmp/diff_new_pack.VLIOed/_old  2018-03-26 12:40:27.154307623 +0200
+++ /var/tmp/diff_new_pack.VLIOed/_new  2018-03-26 12:40:27.166307189 +0200
@@ -26,6 +26,7 @@
 Source0:
http://download.gnome.org/sources/NetworkManager-vpnc/1.2/%{name}-%{version}.tar.xz
 BuildRequires:  intltool
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(NetworkManager) >= 1.2.0
 BuildRequires:  pkgconfig(dbus-glib-1)
@@ -41,9 +42,6 @@
 Requires:   vpnc
 Recommends: %{name}-lang
 ExcludeArch:s390
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 NetworkManager-vpnc provides VPN support to NetworkManager for vpnc.
@@ -63,9 +61,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure\




commit NetworkManager-applet for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package NetworkManager-applet for 
openSUSE:Factory checked in at 2018-03-26 12:39:12

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


Package is "NetworkManager-applet"

Mon Mar 26 12:39:12 2018 rev:16 rq:589969 version:1.8.10

Changes:

--- 
/work/SRC/openSUSE:Factory/NetworkManager-applet/NetworkManager-applet.changes  
2018-03-08 10:50:05.513337267 +0100
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-applet.new/NetworkManager-applet.changes
 2018-03-26 12:39:17.816814456 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 16:53:43 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ NetworkManager-applet.spec ++
--- /var/tmp/diff_new_pack.IcTmfT/_old  2018-03-26 12:39:18.864776568 +0200
+++ /var/tmp/diff_new_pack.IcTmfT/_new  2018-03-26 12:39:18.868776423 +0200
@@ -48,6 +48,7 @@
 BuildRequires:  pkgconfig
 # Needed by Patch0.
 BuildRequires:  polkit-devel
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(NetworkManager) >= 1.7
 BuildRequires:  pkgconfig(gck-1) >= 3.14
@@ -90,9 +91,6 @@
 BuildRequires:  pkgconfig(appindicator3-0.1)
 BuildRequires:  pkgconfig(dbusmenu-gtk3-0.4) >= 16.04.0
 %endif
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 %if %{with_cacert_patch}
 Requires:   NetworkManager(cacert-patch)
 %endif
@@ -183,9 +181,7 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %if %{with meson}




commit NetworkManager for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package NetworkManager for openSUSE:Factory 
checked in at 2018-03-26 12:38:54

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


Package is "NetworkManager"

Mon Mar 26 12:38:54 2018 rev:182 rq:589968 version:1.10.6

Changes:

--- /work/SRC/openSUSE:Factory/NetworkManager/NetworkManager.changes
2018-03-14 19:27:45.721229823 +0100
+++ /work/SRC/openSUSE:Factory/.NetworkManager.new/NetworkManager.changes   
2018-03-26 12:39:02.849355602 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 16:52:37 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ NetworkManager.spec ++
--- /var/tmp/diff_new_pack.mnuqyB/_old  2018-03-26 12:39:06.369228342 +0200
+++ /var/tmp/diff_new_pack.mnuqyB/_new  2018-03-26 12:39:06.373228197 +0200
@@ -61,6 +61,7 @@
 #BuildRequires:  suse-release
 # for /sbin/netconfig: integration with netconfig is required
 BuildRequires:  sysconfig-netconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  wireless-tools
 BuildRequires:  perl(YAML)
 BuildRequires:  pkgconfig(bluez) >= 5
@@ -104,9 +105,6 @@
 Provides:   dhcdbd = 1.14
 Obsoletes:  dhcdbd < 1.14
 %{?systemd_requires}
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 NetworkManager attempts to keep an active network connection available
@@ -224,9 +222,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 %patch0 -p1
 %if %{with_cacert_patch}
 %patch1 -p1




commit orca for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package orca for openSUSE:Factory checked in 
at 2018-03-26 12:38:41

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


Package is "orca"

Mon Mar 26 12:38:41 2018 rev:134 rq:589967 version:3.27.91

Changes:

--- /work/SRC/openSUSE:Factory/orca/orca.changes2018-03-14 
19:24:14.300736822 +0100
+++ /work/SRC/openSUSE:Factory/.orca.new/orca.changes   2018-03-26 
12:38:44.198029944 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 16:51:24 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ orca.spec ++
--- /var/tmp/diff_new_pack.sLqPiP/_old  2018-03-26 12:38:45.549981063 +0200
+++ /var/tmp/diff_new_pack.sLqPiP/_new  2018-03-26 12:38:45.553980918 +0200
@@ -22,7 +22,7 @@
 Summary:Screen reader for GNOME
 License:LGPL-2.1-or-later
 Group:  System/GUI/GNOME
-Url:https://wiki.gnome.org/Projects/Orca
+URL:https://wiki.gnome.org/Projects/Orca
 Source: 
http://download.gnome.org/sources/orca/3.27/%{name}-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection
@@ -34,6 +34,7 @@
 BuildRequires:  python3-brlapi >= 0.5.1
 BuildRequires:  python3-louis
 BuildRequires:  python3-speechd
+BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(atk-bridge-2.0) >= 2.18
@@ -52,9 +53,6 @@
 Recommends: %{name}-lang
 Recommends: brltty >= 3.9
 BuildArch:  noarch
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 Orca is an extensible screen reader that provides access to the
@@ -65,9 +63,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %configure




commit PackageKit for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package PackageKit for openSUSE:Factory 
checked in at 2018-03-26 12:37:35

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


Package is "PackageKit"

Mon Mar 26 12:37:35 2018 rev:172 rq:589966 version:1.1.9

Changes:

--- /work/SRC/openSUSE:Factory/PackageKit/PackageKit.changes2018-03-12 
12:09:57.339252734 +0100
+++ /work/SRC/openSUSE:Factory/.PackageKit.new/PackageKit.changes   
2018-03-26 12:37:42.820249110 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 16:50:56 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ PackageKit.spec ++
--- /var/tmp/diff_new_pack.iZNLLY/_old  2018-03-26 12:37:44.876174775 +0200
+++ /var/tmp/diff_new_pack.iZNLLY/_new  2018-03-26 12:37:44.876174775 +0200
@@ -63,6 +63,7 @@
 # We need the %%mime_database_* macros
 BuildRequires:  shared-mime-info
 BuildRequires:  sqlite-devel
+BuildRequires:  translation-update-upstream
 BuildRequires:  vala
 BuildRequires:  pkgconfig(bash-completion) >= 2.0
 BuildRequires:  pkgconfig(libsystemd)
@@ -83,9 +84,6 @@
 # the browser-plugin was dropped with version 1.1.0
 Obsoletes:  %{name}-browser-plugin < 1.1.0
 %{?systemd_requires}
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 PackageKit is a system designed to make installing and updating
@@ -227,9 +225,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %if !0%{?is_opensuse}






commit totem-pl-parser for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2018-03-26 12:37:29

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Mon Mar 26 12:37:29 2018 rev:74 rq:589959 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2018-03-08 10:45:57.114280257 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2018-03-26 12:37:30.844682104 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 16:46:28 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.YGgmvW/_old  2018-03-26 12:37:32.524621364 +0200
+++ /var/tmp/diff_new_pack.YGgmvW/_new  2018-03-26 12:37:32.528621219 +0200
@@ -30,6 +30,7 @@
 BuildRequires:  libgcrypt-devel
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(glib-2.0) >= 2.31.0
 BuildRequires:  pkgconfig(gmime-3.0)
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
@@ -39,9 +40,6 @@
 BuildRequires:  pkgconfig(libxml-2.0)
 Requires:   libquvi-scripts
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 totem-pl-parser is a simple GObject-based library to parse a host of
@@ -95,9 +93,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson \




  1   2   >