commit java-1_8_0-openj9 for openSUSE:Leap:15.2:SLE-workarounds

2020-06-15 Thread root
Hello community,

here is the log from the commit of package java-1_8_0-openj9 for 
openSUSE:Leap:15.2:SLE-workarounds checked in at 2020-06-16 05:09:58

Comparing /work/SRC/openSUSE:Leap:15.2:SLE-workarounds/java-1_8_0-openj9 (Old)
 and  
/work/SRC/openSUSE:Leap:15.2:SLE-workarounds/.java-1_8_0-openj9.new.3606 (New)


Package is "java-1_8_0-openj9"

Tue Jun 16 05:09:58 2020 rev:1 rq: version:1.8.0.252

Changes:

New Changes file:

--- /dev/null   2020-05-28 02:28:09.919761697 +0200
+++ 
/work/SRC/openSUSE:Leap:15.2:SLE-workarounds/.java-1_8_0-openj9.new.3606/java-1_8_0-openj9.changes
  2020-06-16 05:10:02.721990951 +0200
@@ -0,0 +1,19 @@
+---
+Fri Apr 24 06:26:21 UTC 2020 - Fridrich Strba 
+
+- Update to OpenJDK 8u252 build 09 with OpenJ9 0.20.0 virtual
+  machine
+  * including Oracle April 2020 CPU changes (bsc#1169511)
+  * OpenJ9 changes,
+see https://www.eclipse.org/openj9/docs/version0.20
+
+---
+Wed Apr 15 09:07:59 UTC 2020 - Fridrich Strba 
+
+- The pack200 and unpack200 alternatives should be slaves of java
+  and not of javac, since they are part of JRE.
+
+---
+Mon Jan 27 11:50:27 UTC 2020 - Fridrich Strba 
+
+- Initial packaging of OpenJDK 1.8.0_242-b08 with OpenJ9 0.18.1

New:

  05fa2d3611f757a1ca7bd45d7312f99dd60403cc.zip
  TestCryptoLevel.java
  _constraints
  alternative-path-to-tzdb_dat.patch
  cfa47e66cd5f48491f6e235e0bf41cf753a2cacd.zip
  d4365f371ce896bead71bc601cbdb53cc35ab47b.zip
  disable-doclint-by-default.patch
  freemarker-2.3.29-sources.jar
  freemarker-2.3.29.jar
  icedtea-sound-1.0.1.tar.xz
  java-1_8_0-openj9.changes
  java-1_8_0-openj9.spec
  java-atk-wrapper-security.patch
  jconsole.desktop.in
  jdk-gcc-warnings.patch
  link-with-as-needed.patch
  multiple-pkcs11-library-init.patch
  nss.cfg
  openj9-nogit.patch.in
  policytool.desktop.in
  system-lcms.patch
  system-libjpeg.patch
  system-libpng.patch



Other differences:
--
++ java-1_8_0-openj9.spec ++
 987 lines (skipped)

++ TestCryptoLevel.java ++
/* TestCryptoLevel -- Ensure unlimited crypto policy is in use.
   Copyright (C) 2012 Red Hat, Inc.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see .
*/

import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.InvocationTargetException;

import java.security.Permission;
import java.security.PermissionCollection;

public class TestCryptoLevel
{
  public static void main(String[] args)
throws NoSuchFieldException, ClassNotFoundException,
   IllegalAccessException, InvocationTargetException
  {
Class cls = null;
Method def = null, exempt = null;

try
  {
cls = Class.forName("javax.crypto.JceSecurity");
  }
catch (ClassNotFoundException ex)
  {
System.err.println("Running a non-Sun JDK.");
System.exit(0);
  }
try
  {
def = cls.getDeclaredMethod("getDefaultPolicy");
exempt = cls.getDeclaredMethod("getExemptPolicy");
  }
catch (NoSuchMethodException ex)
  {
System.err.println("Running IcedTea with the original crypto patch.");
System.exit(0);
  }
def.setAccessible(true);
exempt.setAccessible(true);
PermissionCollection defPerms = (PermissionCollection) def.invoke(null);
PermissionCollection exemptPerms = (PermissionCollection) 
exempt.invoke(null);
Class apCls = Class.forName("javax.crypto.CryptoAllPermission");
Field apField = apCls.getDeclaredField("INSTANCE");
apField.setAccessible(true);
Permission allPerms = (Permission) apField.get(null);
if (defPerms.implies(allPerms) && (exemptPerms == null || 
exemptPerms.implies(allPerms)))
  {
System.err.println("Running with the unlimited policy.");
System.exit(0);
  }
else
  {
System.err.println("WARNING: Running with a restricted crypto policy.");
System.exit(-1);
  }
  }
}
++ _constraints ++

  

  4096


  20

  
 
++ 

commit 000release-packages for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Factory checked in at 2020-06-15 22:15:28

Comparing /work/SRC/openSUSE:Factory/000release-packages (Old)
 and  /work/SRC/openSUSE:Factory/.000release-packages.new.3606 (New)


Package is "000release-packages"

Mon Jun 15 22:15:28 2020 rev:593 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ openSUSE-Addon-NonOss-release.spec ++
--- /var/tmp/diff_new_pack.hohs6b/_old  2020-06-15 22:15:30.947049323 +0200
+++ /var/tmp/diff_new_pack.hohs6b/_new  2020-06-15 22:15:30.951049332 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package openSUSE-Addon-NonOss-release (Version 20200614)
+# spec file for package openSUSE-Addon-NonOss-release (Version 20200615)
 #
 # Copyright (c) 2020 openSUSE.
 #
@@ -16,16 +16,16 @@
 Name:   openSUSE-Addon-NonOss-release
 %define product openSUSE-Addon-NonOss
 Summary:openSUSE NonOSS Addon%{?betaversion: %{betaversion}}
-Version:20200614
+Version:    20200615
 Release:0
 License:BSD-3-Clause
 Group:  System/Fhs
 
 Provides:   %name-%version
 Provides:   product() = openSUSE-Addon-NonOss
-Provides:   product(openSUSE-Addon-NonOss) = 20200614-0
+Provides:   product(openSUSE-Addon-NonOss) = 20200615-0
 Provides:   product-label() = non%20oss%20addon
-Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Daddon%2Dnonoss%3A20200614
+Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Daddon%2Dnonoss%3A20200615
 
 
 AutoReqProv:on
@@ -49,10 +49,10 @@
 
   openSUSE
   openSUSE-Addon-NonOss
-  20200614
+  20200615
   0
   %{_target_cpu}
-  cpe:/o:opensuse:opensuse-addon-nonoss:20200614
+  cpe:/o:opensuse:opensuse-addon-nonoss:20200615
   
 
 

++ openSUSE-MicroOS-release.spec ++
--- /var/tmp/diff_new_pack.hohs6b/_old  2020-06-15 22:15:30.975049381 +0200
+++ /var/tmp/diff_new_pack.hohs6b/_new  2020-06-15 22:15:30.979049390 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   openSUSE-MicroOS-release
-Version:20200614
+Version:    20200615
 Release:0
 Summary:openSUSE MicroOS 
 License:GPL-2.0-or-later
@@ -171,9 +171,9 @@
 %include %{SOURCE100}
 Provides:   %name-%version
 Provides:   product() = openSUSE-MicroOS
-Provides:   product(openSUSE-MicroOS) = 20200614-0
+Provides:   product(openSUSE-MicroOS) = 20200615-0
 Provides:   product-label() = openSUSE%20MicroOS
-Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dmicroos%3A20200614
+Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dmicroos%3A20200615
 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-MicroOS)
@@ -189,7 +189,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(dvd)
-Provides:   product_flavor(openSUSE-MicroOS) = 20200614-0
+Provides:   product_flavor(openSUSE-MicroOS) = 20200615-0
 Summary:openSUSE MicroOS%{?betaversion: %{betaversion}}
 
 %description dvd
@@ -205,7 +205,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(kubic-dvd)
-Provides:   product_flavor(openSUSE-MicroOS) = 20200614-0
+Provides:   product_flavor(openSUSE-MicroOS) = 20200615-0
 Summary:openSUSE MicroOS%{?betaversion: %{betaversion}}
 
 %description kubic-dvd
@@ -221,7 +221,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(appliance)
-Provides:   product_flavor(openSUSE-MicroOS) = 20200614-0
+Provides:   product_flavor(openSUSE-MicroOS) = 20200615-0
 Summary:openSUSE MicroOS%{?betaversion: %{betaversion}}
 
 %description appliance
@@ -237,7 +237,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(appliance-kubic)
-Provides:   product_flavor(openSUSE-MicroOS) = 20200614-0
+Provides:   product_flavor(openSUSE-MicroOS) = 20200615-0
 Summary:openSUSE MicroOS%{?betaversion: %{betaversion}}
 
 %description appliance-kubic
@@ -295,11 +295,11 @@
 
   openSUSE
   openSUSE-MicroOS
-  20200614
+  20200615
   0
   
   %{_target_cpu}
-  cpe:/o:opensuse:opensuse-microos:20200614
+  cpe:/o:opensuse:opensuse-microos:20200615
   openSUSE-MicroOS
   
 

++ openSUSE-release.spec ++
--- /var/tmp/diff_new_pack.hohs6b/_old  2020-06-15 22:15:30.999049431 +0200
+++ /var/tmp/diff_new_pack.hohs6b/_new  2020-06-15 22:15:30.999049431 +0200
@@ -20,7 +20,7 @

commit 000product for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Factory 
checked in at 2020-06-15 22:15:32

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


Package is "000product"

Mon Jun 15 22:15:32 2020 rev:2280 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ openSUSE-Addon-NonOss-ftp-ftp-i586_x86_64.kiwi ++
--- /var/tmp/diff_new_pack.uRCZFC/_old  2020-06-15 22:15:35.639059072 +0200
+++ /var/tmp/diff_new_pack.uRCZFC/_new  2020-06-15 22:15:35.639059072 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -36,11 +36,11 @@
   true
   -x -2
   openSUSE
-  20200614
+  20200615
   11
-  cpe:/o:opensuse:opensuse-addon-nonoss:20200614,openSUSE NonOSS 
Addon
+  cpe:/o:opensuse:opensuse-addon-nonoss:20200615,openSUSE NonOSS 
Addon
   af ar be_BY bg br ca cy el et ga gl gu_IN he 
hi_IN hr ka km ko lt mk nn pa_IN rw sk sl sr_CS ss st tg th tr uk ve vi xh zu 

-  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-Addon-NonOss/20200614/i586
 
obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-Addon-NonOss/20200614/x86_64
+  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-Addon-NonOss/20200615/i586
 
obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-Addon-NonOss/20200615/x86_64
   openSUSE
   /usr/share/kiwi/modules/plugins/tumbleweed
   /usr/share/kiwi/modules/plugins/tumbleweed

++ openSUSE-MicroOS-dvd5-dvd-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.uRCZFC/_old  2020-06-15 22:15:35.663059121 +0200
+++ /var/tmp/diff_new_pack.uRCZFC/_new  2020-06-15 22:15:35.663059121 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -35,11 +35,11 @@
   true
   -x -2
   openSUSE
-  20200614
+  20200615
   11
-  cpe:/o:opensuse:opensuse-microos:20200614,openSUSE 
MicroOS
+  cpe:/o:opensuse:opensuse-microos:20200615,openSUSE 
MicroOS
   en_US 
-  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-MicroOS/20200614/x86_64
+  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE-MicroOS/20200615/x86_64
   openSUSE
   /usr/share/kiwi/modules/plugins/tumbleweed
   /usr/share/kiwi/modules/plugins/tumbleweed

openSUSE-MicroOS-dvd5-kubic-dvd-x86_64.kiwi: same change
++ openSUSE-cd-mini-i586.kiwi ++
--- /var/tmp/diff_new_pack.uRCZFC/_old  2020-06-15 22:15:35.711059221 +0200
+++ /var/tmp/diff_new_pack.uRCZFC/_new  2020-06-15 22:15:35.711059221 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -32,11 +32,11 @@
   true
   -x -2
   openSUSE
-  20200614
+  20200615
   11
-  cpe:/o:opensuse:opensuse:20200614,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20200615,openSUSE 
Tumbleweed
   cs da de el en en_GB en_US es fr hu it ja pl 
pt pt_BR ru zh zh_CN zh_TW 
-  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE/20200614/i586
+  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE/20200615/i586
   openSUSE
   /usr/share/kiwi/modules/plugins/tumbleweed
   /usr/share/kiwi/modules/plugins/tumbleweed

++ openSUSE-cd-mini-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.uRCZFC/_old  2020-06-15 22:15:35.735059271 +0200
+++ /var/tmp/diff_new_pack.uRCZFC/_new  2020-06-15 22:15:35.735059271 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -35,11 +35,11 @@
   true
   -x -2
   openSUSE
-  20200614
+  20200615
   11
-  cpe:/o:opensuse:opensuse:20200614,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20200615,openSUSE 
Tumbleweed
   cs da de el en en_GB en_US es fr hu it ja pl 
pt pt_BR ru zh zh_CN zh_TW 
-  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE/20200614/x86_64
+  obsproduct://build.opensuse.org/openSUSE:Factory/openSUSE/20200615/x86_64
   openSUSE
   /usr/share/kiwi/modules/plugins/tumbleweed
   /usr/share/kiwi/modules/plugins/tumbleweed

++ openSUSE-dvd5-dvd-i586.kiwi ++
--- /var/tmp/diff_new_pack.uRCZFC/_old  2020-06-15 22:15:35.759059321 +0200
+++ /var/tmp/diff_new_pack.uRCZFC/_new  2020-06-15 22:15:35.763059329 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -32,11 +32,11 @@
   true
   -x -2
   openSUSE
-  20200614
+  20200615
   11
-  cpe:/o:opensuse:opensuse:20200614,openSUSE 
Tumbleweed
+  cpe:/o:opensuse:opensuse:20200615,openSUSE 
Tumbleweed
   cs da de el en en_GB en_US es fr hu it ja pl 
pt pt_BR ru zh zh_CN zh_TW 
-  obsproduct://build.opensuse.org/openSUSE:Factor

commit 000release-packages for openSUSE:Leap:15.2:ARM

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Leap:15.2:ARM checked in at 2020-06-15 21:22:11

Comparing /work/SRC/openSUSE:Leap:15.2:ARM/000release-packages (Old)
 and  /work/SRC/openSUSE:Leap:15.2:ARM/.000release-packages.new.3606 (New)


Package is "000release-packages"

Mon Jun 15 21:22:11 2020 rev:185 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
stub.spec: same change
++ weakremovers.inc ++
--- /var/tmp/diff_new_pack.FCKAmK/_old  2020-06-15 21:22:13.633117431 +0200
+++ /var/tmp/diff_new_pack.FCKAmK/_new  2020-06-15 21:22:13.637117445 +0200
@@ -5884,6 +5884,7 @@
 Provides: weakremover(kubernetes-kubeadm)
 Provides: weakremover(kubernetes-kubelet-common)
 Provides: weakremover(kubernetes-kubelet1.17)
+Provides: weakremover(kubernetes-kubelet1.18)
 Provides: weakremover(kubernetes-pause)
 Provides: weakremover(kubernetes-proxy)
 Provides: weakremover(kubernetes-scheduler)
@@ -6569,6 +6570,7 @@
 Provides: weakremover(libdnf2)
 Provides: weakremover(libdouble-conversion3)
 Provides: weakremover(libdpdk-18_11)
+Provides: weakremover(libdpdk-20_0)
 Provides: weakremover(libdrm_etnaviv1)
 Provides: weakremover(libdrm_exynos1)
 Provides: weakremover(libdrm_freedreno1)
@@ -7381,6 +7383,7 @@
 Provides: weakremover(libopenvdb6_2)
 Provides: weakremover(libopenvdb7_0)
 Provides: weakremover(libopenvswitch-2_11-0)
+Provides: weakremover(libopenvswitch-2_13-0)
 Provides: weakremover(libopts-devel)
 Provides: weakremover(libopts25)
 Provides: weakremover(libopusenc-devel)
@@ -7444,6 +7447,7 @@
 Provides: weakremover(libosmvendor5)
 Provides: weakremover(libossim1)
 Provides: weakremover(libovf-glib-devel)
+Provides: weakremover(libovn-20_03-0)
 Provides: weakremover(libp11-3)
 Provides: weakremover(libp8-platform2)
 Provides: weakremover(libpackagekitqt5-1)
@@ -8377,13 +8381,23 @@
 Provides: weakremover(metronome)
 Provides: weakremover(mhvtl)
 Provides: weakremover(mhvtl-kmp-default)
+Provides: weakremover(mhvtl-kmp-preempt)
 Provides: weakremover(microdnf)
 Provides: weakremover(miltertest)
 Provides: weakremover(mimic)
 Provides: weakremover(mimic-devel)
 Provides: weakremover(minder)
 Provides: weakremover(mingw32-cross-breakpad-tools)
+Provides: weakremover(mingw64-cross-binutils)
 Provides: weakremover(mingw64-cross-breakpad-tools)
+Provides: weakremover(mingw64-cross-cpp)
+Provides: weakremover(mingw64-cross-cpp-bootstrap)
+Provides: weakremover(mingw64-cross-gcc)
+Provides: weakremover(mingw64-cross-gcc-bootstrap)
+Provides: weakremover(mingw64-cross-gcc-c++)
+Provides: weakremover(mingw64-cross-gcc-fortran)
+Provides: weakremover(mingw64-cross-gcc-objc)
+Provides: weakremover(mingw64-cross-pkgconf)
 Provides: weakremover(minidlna)
 Provides: weakremover(minikube)
 Provides: weakremover(minimodem)
@@ -8902,6 +8916,12 @@
 Provides: weakremover(ossim-devel)
 Provides: weakremover(ossim-sample-data)
 Provides: weakremover(otter-browser)
+Provides: weakremover(ovn)
+Provides: weakremover(ovn-central)
+Provides: weakremover(ovn-devel)
+Provides: weakremover(ovn-docker)
+Provides: weakremover(ovn-host)
+Provides: weakremover(ovn-vtep)
 Provides: weakremover(p7zip-full)
 Provides: weakremover(package-update-indicator)
 Provides: weakremover(packit)
@@ -11279,6 +11299,7 @@
 Provides: weakremover(solarus-gui)
 Provides: weakremover(sonic-visualiser)
 Provides: weakremover(sonnet)
+Provides: weakremover(sonnet-voikko)
 Provides: weakremover(sonobuoy)
 Provides: weakremover(sord-devel)
 Provides: weakremover(spax)




commit 000update-repos for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000update-repos for openSUSE:Factory 
checked in at 2020-06-15 21:08:40

Comparing /work/SRC/openSUSE:Factory/000update-repos (Old)
 and  /work/SRC/openSUSE:Factory/.000update-repos.new.3606 (New)


Package is "000update-repos"

Mon Jun 15 21:08:40 2020 rev:1129 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  15.1:update_1592235441.packages.xz



Other differences:
--














































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































commit 000update-repos for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000update-repos for openSUSE:Factory 
checked in at 2020-06-15 21:08:13

Comparing /work/SRC/openSUSE:Factory/000update-repos (Old)
 and  /work/SRC/openSUSE:Factory/.000update-repos.new.3606 (New)


Package is "000update-repos"

Mon Jun 15 21:08:13 2020 rev:1127 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  factory_20200612.packages.xz



Other differences:
--












































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































commit 000update-repos for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000update-repos for openSUSE:Factory 
checked in at 2020-06-15 21:08:23

Comparing /work/SRC/openSUSE:Factory/000update-repos (Old)
 and  /work/SRC/openSUSE:Factory/.000update-repos.new.3606 (New)


Package is "000update-repos"

Mon Jun 15 21:08:23 2020 rev:1128 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  factory:non-oss_2277.3.packages.xz



Other differences:
--













































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































commit 000update-repos for openSUSE:Leap:15.2

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000update-repos for 
openSUSE:Leap:15.2 checked in at 2020-06-15 21:02:33

Comparing /work/SRC/openSUSE:Leap:15.2/000update-repos (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.000update-repos.new.3606 (New)


Package is "000update-repos"

Mon Jun 15 21:02:33 2020 rev:686 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  15.2_681.4.packages.xz



Other differences:
--





























































































































































































































































































































































































































































































































































































































































































































































commit 000update-repos for openSUSE:Leap:15.2:PowerPC

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000update-repos for 
openSUSE:Leap:15.2:PowerPC checked in at 2020-06-15 21:03:25

Comparing /work/SRC/openSUSE:Leap:15.2:PowerPC/000update-repos (Old)
 and  /work/SRC/openSUSE:Leap:15.2:PowerPC/.000update-repos.new.3606 (New)


Package is "000update-repos"

Mon Jun 15 21:03:25 2020 rev:236 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  15.2:ppc_304.1.packages.xz



Other differences:
--



































































































































































































































































































































































































commit 000update-repos for openSUSE:Leap:15.2

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000update-repos for 
openSUSE:Leap:15.2 checked in at 2020-06-15 21:02:47

Comparing /work/SRC/openSUSE:Leap:15.2/000update-repos (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.000update-repos.new.3606 (New)


Package is "000update-repos"

Mon Jun 15 21:02:47 2020 rev:688 rq: version:unknown
Mon Jun 15 21:02:35 2020 rev:687 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  15.1:update_1592235441.packages.xz
  15.2:non-oss_681.4.packages.xz



Other differences:
--






























































































































































































































































































































































































































































































































































































































































































































































commit 000update-repos for openSUSE:Leap:15.2:ARM

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000update-repos for 
openSUSE:Leap:15.2:ARM checked in at 2020-06-15 21:01:41

Comparing /work/SRC/openSUSE:Leap:15.2:ARM/000update-repos (Old)
 and  /work/SRC/openSUSE:Leap:15.2:ARM/.000update-repos.new.3606 (New)


Package is "000update-repos"

Mon Jun 15 21:01:41 2020 rev:106 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  15.2:arm_197.2.packages.xz



Other differences:
--













































































































































































































































































































































































commit fossil for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package fossil for openSUSE:Factory checked 
in at 2020-06-15 20:33:31

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


Package is "fossil"

Mon Jun 15 20:33:31 2020 rev:25 rq:814710 version:2.11

Changes:

--- /work/SRC/openSUSE:Factory/fossil/fossil.changes2020-05-28 
09:16:15.644813857 +0200
+++ /work/SRC/openSUSE:Factory/.fossil.new.3606/fossil.changes  2020-06-15 
20:33:49.483080814 +0200
@@ -1,0 +2,5 @@
+Thu Jun 11 19:27:25 UTC 2020 - Bernhard Wiedemann 
+
+- Add fossil-2.11-reproducible.patch to override build date (boo#1047218)
+
+---

New:

  fossil-2.11-reproducible.patch



Other differences:
--
++ fossil.spec ++
--- /var/tmp/diff_new_pack.tQOEqN/_old  2020-06-15 20:33:52.359091137 +0200
+++ /var/tmp/diff_new_pack.tQOEqN/_new  2020-06-15 20:33:52.359091137 +0200
@@ -30,6 +30,8 @@
 URL:https://www.fossil-scm.org/
 Source: 
https://www.fossil-scm.org/index.html/uv/%{name}-src-%{version}.tar.gz
 Patch1: fossil-2.7-remove_date_time.patch
+# PATCH-FIX-UPSTREAM https://fossil-scm.org/fossil/info/1a894c08206f4c71bcc3
+Patch2: fossil-2.11-reproducible.patch
 BuildRequires:  fuse-devel
 BuildRequires:  gcc
 BuildRequires:  openssl-devel
@@ -53,9 +55,10 @@
 # test package version and source version match
 grep -qFx %{version} VERSION
 %patch1 -p1
+%patch2 -p1
 
 %build
-export CFLAGS="%{optflags}"
+export CFLAGS="%{optflags} -DFOSSIL_BUILD_EPOCH=${SOURCE_DATE_EPOCH:-42}"
 # FIXME: you should use the %%configure macro
 ./configure \
 --prefix=%{_prefix} \

++ fossil-2.11-reproducible.patch ++
Date: 2020-06-11
https://fossil-scm.org/fossil/info/99038b83b489dddb

Index: src/mkversion.c
==
--- a/src/mkversion.c
+++ b/src/mkversion.c
@@ -4,10 +4,38 @@
 ** Call this program with three arguments:
 **
 ** ./a.out manifest.uuid manifest VERSION
 **
 ** Note that the manifest.uuid and manifest files are generated by Fossil.
+**
+** The output becomes the "VERSION.h" file.  The output is a C-language
+** header that contains #defines for various properties of the build:
+**
+**   MANIFEST_UUID  These values are text strings that
+**   MANIFEST_VERSION   identify the Fossil check-in to which
+**  the source tree belongs.  They do not
+**  take into account any uncommitted edits.
+**
+**   FOSSIL_BUILD_HASH  A hexadecimal string that is a strong hash
+**  of the MANIFEST_UUID together with the
+**  current time of the build.  We normally want
+**  this to be different on each build, as the
+**  value is used to expire ETag: fields in
+**  HTTP requests.  But if you need to do
+**  repeatable byte-for-byte identical builds,
+**  add the -DFOSSIL_BUILD_EPOCH=n option.
+**
+**   MANIFEST_DATE  The date/time of the source-code check-in
+**   MANIFEST_YEAR  in various formats.
+**   MANIFEST_NUMERIC_DATE
+**   MANIFEST_NUMERIC_TIME
+**
+**   RELEASE_VERSIONThe version number (from the VERSION source
+**   RELEASE_VERSION_NUMBER file) in various format.
+**   RELEASE_RESOURCE_VERSION
+**
+** New #defines may be added in the future.
 */
 #include 
 #include 
 #include 
 #include 
@@ -79,11 +107,16 @@
 *z = 0;
 printf("#define MANIFEST_UUID \"%s\"\n",b);
 printf("#define MANIFEST_VERSION \"[%10.10s]\"\n",b);
 n = strlen(b);
 if( n + 50 < sizeof(b) ){
+#ifdef FOSSIL_BUILD_EPOCH
+#define str(s) #s
+  sprintf(b+n, "%d", (int)strtoll(str(FOSSIL_BUILD_EPOCH), 0, 10));
+#else
   sprintf(b+n, "%d", (int)time(0));
+#endif
   hash(b,33,vx);
   printf("#define FOSSIL_BUILD_HASH \"%s\"\n", vx);
 }
 m = open_for_reading(argv[2]);
 while(b ==  fgets(b, sizeof(b)-1,m)){




commit php7-lzf for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package php7-lzf for openSUSE:Factory 
checked in at 2020-06-15 20:34:06

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


Package is "php7-lzf"

Mon Jun 15 20:34:06 2020 rev:2 rq:814730 version:1.6.8

Changes:

--- /work/SRC/openSUSE:Factory/php7-lzf/php7-lzf.changes2019-12-21 
12:34:22.607448703 +0100
+++ /work/SRC/openSUSE:Factory/.php7-lzf.new.3606/php7-lzf.changes  
2020-06-15 20:34:13.191165916 +0200
@@ -1,0 +2,6 @@
+Mon Jun 15 13:23:54 UTC 2020 - Arjen de Korte 
+
+- Update to release 1.6.8
+  * Fix filter prototype for 7.2+
+
+---

Old:

  LZF-1.6.7.tgz

New:

  LZF-1.6.8.tgz



Other differences:
--
++ php7-lzf.spec ++
--- /var/tmp/diff_new_pack.X02IWi/_old  2020-06-15 20:34:14.043168974 +0200
+++ /var/tmp/diff_new_pack.X02IWi/_new  2020-06-15 20:34:14.047168989 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package php7-lzf
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,12 +20,12 @@
 %define pkg_sname   lzf
 
 Name:   php7-lzf
-Version:1.6.7
+Version:1.6.8
 Release:0
 Summary:LZF compression
 License:PHP-3.01
 Group:  Productivity/Networking/Web/Servers
-Url:https://pecl.php.net/package/%{pkg_name}
+URL:https://pecl.php.net/package/%{pkg_name}
 Source: https://pecl.php.net/get/%{pkg_name}-%{version}.tgz
 BuildRequires:  php7-devel
 Provides:   php-%{pkg_sname} = %{version}

++ LZF-1.6.7.tgz -> LZF-1.6.8.tgz ++
 3991 lines of diff (skipped)




commit liferea for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package liferea for openSUSE:Factory checked 
in at 2020-06-15 20:34:12

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


Package is "liferea"

Mon Jun 15 20:34:12 2020 rev:4 rq:814732 version:1.12.8

Changes:

--- /work/SRC/openSUSE:Factory/liferea/liferea.changes  2020-05-14 
23:27:56.213392460 +0200
+++ /work/SRC/openSUSE:Factory/.liferea.new.3606/liferea.changes
2020-06-15 20:34:19.271187740 +0200
@@ -1,0 +2,11 @@
+Fri Jun 12 13:35:30 UTC 2020 - Marcel Kuehlhorn 
+
+- Update to version 1.12.8:
+  * Fixes #734: crash when selecting empty nodes
+  * Fixes #727: Out-dated documentation on Firefox live bookmarks
+  * Fixes headline large images/videos or images with margins
+causing horizontal scrolling in headline view
+  * Fixes #840: OPML source subfolders not working
+  * Update of French translation
+
+---

Old:

  liferea-1.12.6b.tar.bz2

New:

  liferea-1.12.8.tar.bz2



Other differences:
--
++ liferea.spec ++
--- /var/tmp/diff_new_pack.rHLDbQ/_old  2020-06-15 20:34:20.671192766 +0200
+++ /var/tmp/diff_new_pack.rHLDbQ/_new  2020-06-15 20:34:20.675192780 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   liferea
-Version:1.12.6
+Version:1.12.8
 Release:0
 Summary:Linux Feed Reader
 License:GPL-2.0-only
 Group:  Productivity/Other
 URL:https://lzone.de/liferea/
-Source0:
https://github.com/lwindolf/liferea/releases/download/v%{version}/%{name}-%{version}b.tar.bz2
+Source0:
https://github.com/lwindolf/liferea/releases/download/v%{version}/%{name}-%{version}.tar.bz2
 # PATCH-FEATURE-OPENSUSE liferea-opensuse-feeds.patch -- Add openSUSE feeds to 
default feeds
 Patch0: liferea-opensuse-feeds.patch
 
@@ -60,7 +60,7 @@
 %lang_package
 
 %prep
-%setup -q -n %{name}-%{version}b
+%setup -q -n %{name}-%{version}
 %patch0
 
 %build

++ liferea-1.12.6b.tar.bz2 -> liferea-1.12.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/liferea-1.12.6b/ChangeLog 
new/liferea-1.12.8/ChangeLog
--- old/liferea-1.12.6b/ChangeLog   2018-12-06 22:04:32.0 +0100
+++ new/liferea-1.12.8/ChangeLog2020-06-11 22:26:36.0 +0200
@@ -1,5 +1,21 @@
-To be released
+2020-06-11  Lars Windolf 
 
+   Version 1.12.8
+
+   * Fixes #840: OPML source subfolders not working
+ (fixed by Tomáš Janoušek)
+
+   * Update of French translation
+
+
+2019-08-03   Lars Windolf 
+
+   Version 1.12.7
+
+   * #734: Fixes crash when selecting empty nodes
+ (Leiaz)
+   * Fixes #727: Out-dated documentation on Firefox live bookmarks
+ (reported by blueray453)
* Fixes headline large images/videos or images with margins
  causing horizontal scrolling in headline view
  (Lars Windolf)
@@ -87,7 +103,7 @@
* #614: GTK Headerbar support via plugin
  (Lars Windolf)
* #608: Refactoring UI code to switch to GAction and GtkBuilder
- Note: this implies not having icons in the main menu anymore 
+ Note: this implies not having icons in the main menu anymore
  which were still there for all non-GNOME users (see #626).
  (Leiaz)
* #589: Item list view column order rework as a preparation for
@@ -425,7 +441,7 @@
 2015-01-06   Lars Windolf 
 
Version 1.11.2
-   
+
* Fixes Github #132: Broken documentation link
  (reported by kallus)
* Fixes Github #121: Wrapping issue in folder display
@@ -437,7 +453,7 @@
  (suggested by DanMan)
* Black-list some categories used by Google Reader clones
  that should not be visible.
-   * Allowing browser history to go back to previously 
+   * Allowing browser history to go back to previously
  shown headline when browsing inside the item view.
* Dropping offline option as this is duplicated with
  desktop environment in GNOME/network manager.
@@ -452,7 +468,7 @@
 2014-08-31   Lars Windolf 
 
Version 1.11.1
-   
+
* Fixes Github #81: Inability to add subscriptions
  (reported by GreenLunar)
* Fixes Javascript links not opening in new browser tabs
@@ -470,7 +486,7 @@
 
* Fixes SF #1123: Mistakenly claims "TinyTinyRSS source is not 
self-updating"
  (reported by Dominik Grafenhoher)
-   * Fixes SF #1119: Crash on font resize at startup. 
+   * Fixes SF #1119: Crash on font resize at startup.
  (reported by David Smith)
* Fixes #1056, #1089, 

commit terraform-provider-aws for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package terraform-provider-aws for 
openSUSE:Factory checked in at 2020-06-15 20:33:46

Comparing /work/SRC/openSUSE:Factory/terraform-provider-aws (Old)
 and  /work/SRC/openSUSE:Factory/.terraform-provider-aws.new.3606 (New)


Package is "terraform-provider-aws"

Mon Jun 15 20:33:46 2020 rev:2 rq:814713 version:2.59.0

Changes:

--- 
/work/SRC/openSUSE:Factory/terraform-provider-aws/terraform-provider-aws.changes
2020-05-15 23:51:43.237475233 +0200
+++ 
/work/SRC/openSUSE:Factory/.terraform-provider-aws.new.3606/terraform-provider-aws.changes
  2020-06-15 20:33:59.179115619 +0200
@@ -799,0 +800,5 @@
+Tue Feb  4 08:36:25 UTC 2020 - David Cassany 
+
+- terraform-provider-aws upgrade is part of bsc#1162585 and jsc#ECO-134
+
+---

New:

  _constraints



Other differences:
--
++ terraform-provider-aws.spec ++
--- /var/tmp/diff_new_pack.zQuW7N/_old  2020-06-15 20:34:00.603120731 +0200
+++ /var/tmp/diff_new_pack.zQuW7N/_new  2020-06-15 20:34:00.607120745 +0200
@@ -40,9 +40,9 @@
 BuildRequires:  golang
 %endif
 %if 0%{?suse_version}
-BuildRequires:  golang(API) >= 1.14
 BuildRequires:  golang-packaging
 BuildRequires:  xz
+BuildRequires:  golang(API) >= 1.14
 %endif
 %endif
 %if 0%{?suse_version}

++ _constraints ++


  

  aarch64


  8
  
8000
  

  




commit twm for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package twm for openSUSE:Factory checked in 
at 2020-06-15 20:33:26

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


Package is "twm"

Mon Jun 15 20:33:26 2020 rev:11 rq:814708 version:1.0.11

Changes:

--- /work/SRC/openSUSE:Factory/twm/twm.changes  2018-03-08 10:58:19.603541603 
+0100
+++ /work/SRC/openSUSE:Factory/.twm.new.3606/twm.changes2020-06-15 
20:33:33.379023008 +0200
@@ -1,0 +2,6 @@
+Mon Jun 15 12:50:16 UTC 2020 - Stefan Dirsch 
+
+- Update to 1.0.11:
+  * bugfix release 
+
+---

Old:

  twm-1.0.10.tar.bz2

New:

  twm-1.0.11.tar.xz



Other differences:
--
++ twm.spec ++
--- /var/tmp/diff_new_pack.h10kaa/_old  2020-06-15 20:33:36.395033834 +0200
+++ /var/tmp/diff_new_pack.h10kaa/_new  2020-06-15 20:33:36.395033834 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package twm
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,18 +12,18 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   twm
-Version:1.0.10
+Version:1.0.11
 Release:0
 Summary:Tab Window Manager for the X Window System
 License:HPND
 Group:  System/X11/Utilities
-Url:http://xorg.freedesktop.org/
-Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
+URL:http://xorg.freedesktop.org/
+Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.xz
 Source1:twm.desktop
 Patch1: twm-suse.diff
 BuildRequires:  bison
@@ -63,7 +63,7 @@
 
 %files
 %defattr(-,root,root)
-%doc ChangeLog COPYING README
+%doc ChangeLog COPYING README.md
 %{_bindir}/twm
 %{_datadir}/X11/twm/
 %{_datadir}/xsessions/twm.desktop




commit python-IMAPClient for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-IMAPClient for 
openSUSE:Factory checked in at 2020-06-15 20:32:46

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


Package is "python-IMAPClient"

Mon Jun 15 20:32:46 2020 rev:2 rq:814680 version:2.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-IMAPClient/python-IMAPClient.changes  
2020-06-09 00:05:11.785403956 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-IMAPClient.new.3606/python-IMAPClient.changes
2020-06-15 20:32:52.334875679 +0200
@@ -1,0 +2,5 @@
+Mon Jun  8 09:22:48 UTC 2020 - Jan Engelhardt 
+
+- Trim bias and filler wording from descriptions.
+
+---



Other differences:
--
++ python-IMAPClient.spec ++
--- /var/tmp/diff_new_pack.sZoW04/_old  2020-06-15 20:32:52.978877990 +0200
+++ /var/tmp/diff_new_pack.sZoW04/_new  2020-06-15 20:32:52.982878005 +0200
@@ -21,7 +21,7 @@
 Name:   python-IMAPClient
 Version:2.1.0
 Release:0
-Summary:Easy-to-use, Pythonic and complete IMAP client library
+Summary:Pythonic IMAP client library
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 URL:https://github.com/mjs/imapclient/
@@ -37,14 +37,14 @@
 %python_subpackages
 
 %description
-IMAPClient is an easy-to-use, Pythonic and complete IMAP client library.
+IMAPClient is a Pythonic IMAP client library.
 
 Features:
 * Arguments and return values are natural Python types.
-* IMAP server responses are fully parsed and readily usable.
-* IMAP unique message IDs (UIDs) are handled transparently.
-* Internationalised mailbox names are transparently handled.
-* Time zones are correctly handled.
+* IMAP server responses are parsed and readily usable.
+* IMAP unique message IDs (UIDs) and internationalised
+  mailbox names are handled transparently.
+* Time zones are handled.
 * Convenience methods are provided for commonly used functionality.
 * Exceptions are raised when errors occur.
 




commit python-graphene for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-graphene for openSUSE:Factory 
checked in at 2020-06-15 20:32:52

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


Package is "python-graphene"

Mon Jun 15 20:32:52 2020 rev:2 rq:814681 version:3.0.0b2

Changes:

--- /work/SRC/openSUSE:Factory/python-graphene/python-graphene.changes  
2020-06-09 00:05:32.141476173 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-graphene.new.3606/python-graphene.changes
2020-06-15 20:32:56.00245 +0200
@@ -1,0 +2,5 @@
+Mon Jun  8 09:24:20 UTC 2020 - Jan Engelhardt 
+
+- Trim conjecture from descriptions.
+
+---



Other differences:
--
++ python-graphene.spec ++
--- /var/tmp/diff_new_pack.It1bzE/_old  2020-06-15 20:32:56.890892033 +0200
+++ /var/tmp/diff_new_pack.It1bzE/_new  2020-06-15 20:32:56.890892033 +0200
@@ -50,7 +50,7 @@
 %python_subpackages
 
 %description
-Graphene is a Python library for building GraphQL schemas/types fast and 
easily.
+Graphene is a Python library for building GraphQL schemas/types.
 
 %prep
 %setup -q -n graphene-%{version}




commit bowtie2 for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package bowtie2 for openSUSE:Factory checked 
in at 2020-06-15 20:32:38

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


Package is "bowtie2"

Mon Jun 15 20:32:38 2020 rev:4 rq:814674 version:2.4.1

Changes:

--- /work/SRC/openSUSE:Factory/bowtie2/bowtie2.changes  2020-05-29 
21:37:40.674703602 +0200
+++ /work/SRC/openSUSE:Factory/.bowtie2.new.3606/bowtie2.changes
2020-06-15 20:32:43.666844564 +0200
@@ -1,0 +2,6 @@
+Mon Jun 15 09:21:50 UTC 2020 - Pierre Bonamy 
+
+- Added bowtie2-processor_support.patch to fix GCC10 build fail
+- Added %fdupes in the spec files to handle duplicated binary files
+
+---

New:

  bowtie2-processor_support.patch



Other differences:
--
++ bowtie2.spec ++
--- /var/tmp/diff_new_pack.VzXpFO/_old  2020-06-15 20:32:44.510847594 +0200
+++ /var/tmp/diff_new_pack.VzXpFO/_new  2020-06-15 20:32:44.514847609 +0200
@@ -30,7 +30,9 @@
 Source1:simde-0.0~git20190101.422ed9c.tar.xz
 # PATCH-FIX-UPSTREAM bowtie2-cmake-install-targets.patch 
gh#BenLangmead/bowtie2#292 badshah...@gmail.com -- Add install targets to cmake 
scripts and fix tests; patch taken from upstream git
 Patch0: bowtie2-cmake-install-targets.patch
+Patch1: bowtie2-processor_support.patch
 BuildRequires:  cmake
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
 BuildRequires:  tbb-devel
@@ -50,6 +52,7 @@
 %setup -q
 %setup -q -b 1
 %patch0 -p1
+%patch1 -p1
 pushd third_party
 rmdir simde
 ln -s ../../simde-*/ simde
@@ -77,6 +80,8 @@
 sed -i "s:%{_bindir}/env perl:${perlbin}:" %{buildroot}%{_bindir}/bowtie2
 sed -i "s:%{_bindir}/env python:%{_bindir}/python:" 
%{buildroot}%{_bindir}/bowtie2-{build,inspect}
 
+%fdupes %{buildroot}%{_bindir}
+
 %files
 %doc AUTHORS MANUAL NEWS TUTORIAL VERSION
 %license LICENSE

++ bowtie2-processor_support.patch ++
--- a/processor_support.h
+++ b/processor_support.h
@@ -49,7 +49,7 @@
 #elif defined(USING_GCC_COMPILER)
 __get_cpuid(0x1, , , , );
 #else
-std::cerr << “ERROR: please define __cpuid() for this build.\n”; 
+std::cerr << "ERROR: please define __cpuid() for this build.\n"; 
 assert(0);
 #endif
 if( !( (regs.ECX & BIT(20)) && (regs.ECX & BIT(23)) ) ) return false;



commit btar for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package btar for openSUSE:Factory checked in 
at 2020-06-15 20:32:43

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


Package is "btar"

Mon Jun 15 20:32:43 2020 rev:2 rq:814675 version:1.1.1

Changes:

--- /work/SRC/openSUSE:Factory/btar/btar.changes2017-07-12 
19:35:22.341718881 +0200
+++ /work/SRC/openSUSE:Factory/.btar.new.3606/btar.changes  2020-06-15 
20:32:46.906856195 +0200
@@ -1,0 +2,5 @@
+Mon Jun 15 09:44:27 UTC 2020 - Martin Pluskal 
+
+- Fix building with gcc10
+
+---



Other differences:
--
++ btar.spec ++
--- /var/tmp/diff_new_pack.7vZWs2/_old  2020-06-15 20:32:47.746859210 +0200
+++ /var/tmp/diff_new_pack.7vZWs2/_new  2020-06-15 20:32:47.750859224 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package btar
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2012 Pascal Bleser 
 #
 # All modifications and additions to the file contributed by third parties
@@ -13,7 +13,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -21,9 +21,9 @@
 Version:1.1.1
 Release:0
 Summary:Featureful tar-Compatible Archiver and Compressor
-License:GPL-3.0+
+License:GPL-3.0-or-later
 Group:  Productivity/Archiving/Backup
-Url:http://freecode.com/projects/btar
+URL:http://freecode.com/projects/btar
 Source: 
http://vicerveza.homeunix.net/~viric/soft/btar/btar-%{version}.tar.gz
 # pbleser: fix various things about the Makefile, such as proper place of 
LFLAGS,
 # overridable OPTFLAGS, DESTDIR support
@@ -38,20 +38,18 @@
 archive errors.
 
 %prep
-%setup -q
-%patch1 -p1
-%patch2 -p1
+%autosetup -p1
 
 %build
-make %{?_smp_mflags} OPTFLAGS="%{optflags} -D_GNU_SOURCE" \
+%make_build OPTFLAGS="%{optflags} -fcommon -D_GNU_SOURCE" \
 
 %install
 %make_install PREFIX="%{_prefix}"
 
 %files
-%defattr(-,root,root)
-%doc AUTHORS COPYING doc/*
+%license COPYING
+%doc AUTHORS doc/*
 %{_bindir}/btar
-%{_mandir}/man1/btar.1*
+%{_mandir}/man1/btar.1%{?ext_man}
 
 %changelog




commit python-curio for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-curio for openSUSE:Factory 
checked in at 2020-06-15 20:33:11

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


Package is "python-curio"

Mon Jun 15 20:33:11 2020 rev:5 rq:814701 version:1.2

Changes:

--- /work/SRC/openSUSE:Factory/python-curio/python-curio.changes
2020-03-05 23:24:33.201385854 +0100
+++ /work/SRC/openSUSE:Factory/.python-curio.new.3606/python-curio.changes  
2020-06-15 20:33:20.506976803 +0200
@@ -1,0 +2,10 @@
+Mon Jun 15 11:58:37 UTC 2020 - Ondřej Súkup 
+
+- Update to 1.2 
+ * Removed hard dependency on contextvars
+ * Added a default selector timeout of 1 second for Windows.
+ * First crack at a Curio repl.
+ * Added a pytest plugin
+ * Slight refinement to TaskGroup result reporting.
+
+---

Old:

  curio-1.1.tar.gz

New:

  curio-1.2.tar.gz



Other differences:
--
++ python-curio.spec ++
--- /var/tmp/diff_new_pack.UcRCVn/_old  2020-06-15 20:33:22.038982303 +0200
+++ /var/tmp/diff_new_pack.UcRCVn/_new  2020-06-15 20:33:22.042982317 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-curio
-Version:1.1
+Version:1.2
 Release:0
 Summary:Concurrent I/O library for Python 3
 License:BSD-Source-Code

++ curio-1.1.tar.gz -> curio-1.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/curio-1.1/.gitignore new/curio-1.2/.gitignore
--- old/curio-1.1/.gitignore2020-03-01 13:27:43.0 +0100
+++ new/curio-1.2/.gitignore2020-04-07 03:43:23.0 +0200
@@ -2,6 +2,7 @@
 __pycache__/
 .vscode
 venv*
+*.egg-info
 
 benchmarks/curio/
 benchmarks/env/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/curio-1.1/CHANGES new/curio-1.2/CHANGES
--- old/curio-1.1/CHANGES   2020-03-01 13:27:43.0 +0100
+++ new/curio-1.2/CHANGES   2020-04-07 03:43:23.0 +0200
@@ -1,7 +1,43 @@
 CHANGES
 ---
-Version 1.1 - March 1, 2020
+Version 1.2 - In Progress
+
+04/06/2020 Removed hard dependency on contextvars.   It was unnecessary and
+   needlessly broken some things on Python 3.6.
+  
+04/06/2020 Added a default selector timeout of 1 second for Windows.  This
+   makes everything a bit more friendly for Control-C.  This can be
+  disabled or changed using the max_select_timeout argument to Kernel
+  or curio.run().
+  
+04/04/2020 First crack at a Curio repl.  Idea borrowed from the asyncio
+   REPL.  If you run `python -m curio` it will start a REPL
+  in which Curio is already running in the background. You
+  can directly await operations at the top level. For example:
+
+  bash $ python -m curio
+  Use "await" directly instead of "curio.run()".
+  Type "help", "copyright", "credits" or "license" for more 
information.
+  >>> import curio
+  >>> await curio.sleep(4)
+ >>>
+
+   Pressing Control-C causes any `await` operation to be cancelled
+  with a `curio.TaskCancelled` exception.   For normal operations
+  not involving `await, Control-C raises a `KeyboardInterrupt` as
+   normal.  Note: This feature requires Python 3.8 or newer. 
 
+03/24/2020 Added a pytest plugin for Curio. Contributed by Keith Dart.
+   See curio/pytest_plugin.py.
+
+03/02/2020 Slight refinement to TaskGroup result reporting. If no tasks
+   are spawned in a TaskGroup g, then g.exception will return None
+   to indicate no errors.  g.result will raise an exception
+   indicating that no successful result was obtained. Addresses
+   issue #314.
+
+Version 1.1 - March 1, 2020
+---
 02/24/2020 Fixed a very subtle edge case involving epoll() and duplicated
file descriptors on Linux. The fix required a new trap
_io_release() to explitly unregister a file descriptor
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/curio-1.1/curio/__init__.py 
new/curio-1.2/curio/__init__.py
--- old/curio-1.1/curio/__init__.py 2020-03-01 13:27:43.0 +0100
+++ new/curio-1.2/curio/__init__.py 2020-04-07 03:43:23.0 +0200
@@ -1,6 +1,6 @@
 # curio/__init__.py
 
-__version__ = '1.1'
+__version__ = '1.2'
 
 from .errors import *
 from .queue import *
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit b4 for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package b4 for openSUSE:Factory checked in 
at 2020-06-15 20:32:56

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


Package is "b4"

Mon Jun 15 20:32:56 2020 rev:2 rq:814692 version:0.5.0+git20200528.g204416b80fbb

Changes:

--- /work/SRC/openSUSE:Factory/b4/b4.changes2020-05-28 09:15:03.304696268 
+0200
+++ /work/SRC/openSUSE:Factory/.b4.new.3606/b4.changes  2020-06-15 
20:32:59.970903089 +0200
@@ -1,0 +2,7 @@
+Mon Jun 08 10:57:26 UTC 2020 - jsl...@suse.com
+
+- Update to version 0.5.0+git20200528.g204416b80fbb:
+  * Don't output git am suggestion for -o -
+  * Add --no-cover and -o - to output to stdout
+
+---

Old:

  b4-0.5.0+git20200526.ga926bac9e6c2.tar.xz

New:

  b4-0.5.0+git20200528.g204416b80fbb.tar.xz



Other differences:
--
++ b4.spec ++
--- /var/tmp/diff_new_pack.iiOeHx/_old  2020-06-15 20:33:00.602905357 +0200
+++ /var/tmp/diff_new_pack.iiOeHx/_new  2020-06-15 20:33:00.606905372 +0200
@@ -17,14 +17,14 @@
 
 
 %define skip_python2 1
-%define version_unconverted 0.5.0+git20200526.ga926bac9e6c2
+%define version_unconverted 0.5.0+git20200528.g204416b80fbb
 Name:   b4
-Version:0.5.0+git20200526.ga926bac9e6c2
+Version:0.5.0+git20200528.g204416b80fbb
 Release:0
 Summary:Helper scripts for kernel.org patches
 License:GPL-2.0-or-later
-URL:https://git.kernel.org/pub/scm/utils/b4/b4.git
 Group:  Development/Tools/Other
+URL:https://git.kernel.org/pub/scm/utils/b4/b4.git
 Source0:%{name}-%{version}.tar.xz
 BuildArch:  noarch
 BuildRequires:  %{python_module setuptools}

++ _servicedata ++
--- /var/tmp/diff_new_pack.iiOeHx/_old  2020-06-15 20:33:00.642905501 +0200
+++ /var/tmp/diff_new_pack.iiOeHx/_new  2020-06-15 20:33:00.642905501 +0200
@@ -1,4 +1,4 @@
 
 
 git://git.kernel.org/pub/scm/utils/b4/b4.git
-  a926bac9e6c222e1bfe87ce79d925083c5879060
\ No newline at end of file
+  204416b80fbb5853d87e6a7cfbf35a0a719c4516
\ No newline at end of file

++ b4-0.5.0+git20200526.ga926bac9e6c2.tar.xz -> 
b4-0.5.0+git20200528.g204416b80fbb.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/b4-0.5.0+git20200526.ga926bac9e6c2/b4/__init__.py 
new/b4-0.5.0+git20200528.g204416b80fbb/b4/__init__.py
--- old/b4-0.5.0+git20200526.ga926bac9e6c2/b4/__init__.py   2020-05-26 
14:40:29.0 +0200
+++ new/b4-0.5.0+git20200528.g204416b80fbb/b4/__init__.py   2020-05-28 
18:12:16.0 +0200
@@ -200,7 +200,7 @@
 if reused:
 continue
 # Try to backfill from that project
-tmp_mbox = mkstemp()[1]
+tmp_mbox = mkstemp('b4-backfill-mbox')[1]
 get_pi_thread_by_msgid(patch.msgid, tmp_mbox, 
useproject=projmap[entry[1]])
 mbx = mailbox.mbox(tmp_mbox)
 was = len(self.msgid_map)
@@ -2003,7 +2003,9 @@
 logger.debug('t_mbx_url=%s', t_mbx_url)
 
 logger.critical('Grabbing thread from %s', projurl.split('://')[1])
-in_mbxf = get_pi_thread_by_url(t_mbx_url, '%s-loose' % savefile, 
nocache=nocache)
+
+tmp_mbox = mkstemp('b4-lookup-mbox')[1]
+in_mbxf = get_pi_thread_by_url(t_mbx_url, tmp_mbox, nocache=nocache)
 if not in_mbxf:
 return None
 in_mbx = mailbox.mbox(in_mbxf)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/b4-0.5.0+git20200526.ga926bac9e6c2/b4/command.py 
new/b4-0.5.0+git20200528.g204416b80fbb/b4/command.py
--- old/b4-0.5.0+git20200526.ga926bac9e6c2/b4/command.py2020-05-26 
14:40:29.0 +0200
+++ new/b4-0.5.0+git20200528.g204416b80fbb/b4/command.py2020-05-28 
18:12:16.0 +0200
@@ -17,7 +17,7 @@
 sp.add_argument('msgid', nargs='?',
 help='Message ID to process, or pipe a raw message')
 sp.add_argument('-o', '--outdir', default='.',
-help='Output into this directory')
+help='Output into this directory (or use - to output 
mailbox contents to stdout)')
 sp.add_argument('-p', '--use-project', dest='useproject', default=None,
 help='Use a specific project instead of guessing 
(linux-mm, linux-hardening, etc)')
 sp.add_argument('-c', '--check-newer-revisions', dest='checknewer', 
action='store_true', default=False,
@@ -111,6 +111,8 @@
 sp_am.add_argument('-3', '--prep-3way', dest='threeway', 
action='store_true', default=False,
help='Prepare for 

commit onedrive for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package onedrive for openSUSE:Factory 
checked in at 2020-06-15 20:33:00

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


Package is "onedrive"

Mon Jun 15 20:33:00 2020 rev:1 rq:814697 version:2.4.2

Changes:

New Changes file:

--- /dev/null   2020-05-28 02:28:09.919761697 +0200
+++ /work/SRC/openSUSE:Factory/.onedrive.new.3606/onedrive.changes  
2020-06-15 20:33:06.742927397 +0200
@@ -0,0 +1,463 @@
+---
+Mon Jun 15 11:42:37 UTC 2020 - Enno Gotthold 
+
+- Modified service file to exclude bad file 
+
+---
+Wed May 27 09:35:51 UTC 2020 - dmacvi...@suse.com
+
+- Update to version 2.4.2:
+  * Release files for 2.4.2 (#933)
+  * Update known-issues.md
+  * Update logging output of skipped files (#932)
+  * Strengthen data preservation checks & update how bypass preservation is 
set (#931)
+  * Add developer option to display sync options (#924)
+  * Add file validation for moved / renamed files (#929)
+  * Add debugging output for retry wait time (#928)
+  * Change monitor interval default to 300 seconds (#923)
+  * Implement 'bypass_data_preservation' enhancement (Issue #824) (#831)
+  * Remove double scan of OneDrive when using --monitor --resync at 
application startup (#920)
+  * Resolve issues identified by Valgrind (#910)
+  * Check if configuration file exists before trying to load it (#909)
+  * Fix module std.digest.digest is deprecated (#916)
+  * Update enforce statement for parent id database query (Issue #912) (#913)
+  * Update README.md
+  * Catch unhandled MonitorException when inotify throws an error (Issue #903) 
(#905)
+  * Better handle out-of-space message (#907)
+  * Release 2.4.2 Dev Prep (#904)
+  * Release files for 2.4.1 (#883)
+  * Update how './' is stripped from a path before check if excluded (Issue 
#901) (#902)
+  * Update handling of fullScanRequired and syncListConfiguredFullScanOverride 
(Issue #896) (#899)
+  * Update #658 & #865 handling as when to setOneDriveFullScanTrigger (Issue 
#896) (#898)
+  * Fix assertion when attempting to compute complex path (Issue #890) (#891)
+  * Update progress bar to be more accurate when downloading large files (#888)
+  * Update known-issues.md (#889)
+  * Catch unhandled curl exception on operationTimeout being exceeded (#886)
+  * Fix Codacy issues (#881)
+  * Move build-rpm-howto.md to docs directory (#880)
+  * Update CentOS Dockerfile (Issue #878) (#879)
+  * Update README.md
+  * Update README.md
+  * Implement resync in config option (Issue #874) (#875)
+  * Add known-issues.md (#877)
+  * Update USAGE.md
+  * Update README.md
+  * Update RPM spec file (Issue #871) (#873)
+  * Differenciate between OneNote objects and other unsupported objects (#870)
+  * Perform full scan of OneDrive when required to ensure consistent local 
state (Issue #865) (#867)
+  * Update handling of folders that cannot be read if parent should be skipped 
(#866)
+  * Update link to new microsoft documentation (#861)
+  * Update skip_dotfiles handling of .folders when in monitor mode (#848)
+  * Update error logging output to be consistent (#860)
+  * Handle zero-byte modified files for OneDrive Business (#854)
+  * Handle .nosync directive when downloading new files (Issue #827) (#842)
+  * Update --single-directory handling for --dry-run and --resync (#856)
+  * Fix Alpine automated builds on Docker (#855)
+  * Update application output when using --dry-run and --resync and database 
is corrupt (Issue#844) (#845)
+  * Handle renaming dotfiles to another dotfile when skip_dotfile=true in 
monitor mode (#843)
+  * Escape parentheses from path or file names (#841)
+  * Handle renaming files to a name starting with a dot when skip_dotfile=true 
(#838)
+  * Release 2.4.1 Dev Prep (#839)
+
+---
+Wed May 27 09:31:52 UTC 2020 - Duncan Mac-Vicar 
+
+- Update to 2.4.2:
+  * Catch unhandled MonitorException when inotify throws an error (#905)
+  * Better handle out-of-space message (#907)
+  * Check if configuration file exists before trying to load it (#909)
+  * Resolve issues identified by Valgrind (#910)
+  * Update enforce statement for parent id database query (#913)
+  * Fix module std.digest.digest is deprecated (#916)
+  * Remove double scan of OneDrive when using --monitor --resync at 
application startup (#920)
+  * Change monitor interval default to 300 seconds (#923)
+  * Add developer option to display sync options (#924)
+  * Add debugging output for retry wait time (#928)
+  * Add file validation for moved / renamed files (#929)
+  * Strengthen data preservation checks & update how bypass 

commit amanda for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package amanda for openSUSE:Factory checked 
in at 2020-06-15 20:33:04

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


Package is "amanda"

Mon Jun 15 20:33:04 2020 rev:3 rq:814700 version:3.5.1

Changes:

--- /work/SRC/openSUSE:Factory/amanda/amanda.changes2019-12-09 
21:34:21.778118483 +0100
+++ /work/SRC/openSUSE:Factory/.amanda.new.3606/amanda.changes  2020-06-15 
20:33:14.358954735 +0200
@@ -1,0 +2,5 @@
+Mon Jun  8 13:04:22 UTC 2020 - Kristyna Streitova 
+
+- add amanda-3.5.1-GCC10_extern.patch to fix build with GCC10
+
+---

New:

  amanda-3.5.1-GCC10_extern.patch



Other differences:
--
++ amanda.spec ++
--- /var/tmp/diff_new_pack.BrQOZp/_old  2020-06-15 20:33:15.338958253 +0200
+++ /var/tmp/diff_new_pack.BrQOZp/_new  2020-06-15 20:33:15.342958267 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package amanda
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,6 +34,7 @@
 Patch5: amanda-timestamp.patch
 Patch6: amanda-3.5-no_return_in_nonvoid_fnc.patch
 Patch7: amanda-libnsl.patch
+Patch8: amanda-3.5.1-GCC10_extern.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  bison
@@ -90,6 +91,7 @@
 %patch5 -p1
 %patch6 -p1
 %patch7 -p1
+%patch8 -p1
 
 %build
 ./autogen

++ amanda-3.5.1-GCC10_extern.patch ++
diff --git a/common-src/testutils.h b/common-src/testutils.h
index 31f89737..2e9bb0b3 100644
--- a/common-src/testutils.h
+++ b/common-src/testutils.h
@@ -75,7 +75,7 @@ typedef struct TestUtilsTest {
 #define tu_dbg(...) if (tu_debugging_enabled) { g_fprintf(stderr, 
__VA_ARGS__); }
 
 /* Is debugging enabled for this test run? (set internally) */
-int tu_debugging_enabled;
+extern gboolean tu_debugging_enabled;
 
 /*
  * Main loop



commit remake for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package remake for openSUSE:Factory checked 
in at 2020-06-15 20:33:17

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


Package is "remake"

Mon Jun 15 20:33:17 2020 rev:4 rq:814704 version:4.2.1_1.4

Changes:

--- /work/SRC/openSUSE:Factory/remake/remake.changes2018-02-15 
19:31:47.182160402 +0100
+++ /work/SRC/openSUSE:Factory/.remake.new.3606/remake.changes  2020-06-15 
20:33:27.735002749 +0200
@@ -1,0 +2,5 @@
+Mon Jun 15 12:43:56 UTC 2020 - Martin Pluskal 
+
+- Fix building with gcc10
+
+---



Other differences:
--
++ remake.spec ++
--- /var/tmp/diff_new_pack.hQouml/_old  2020-06-15 20:33:28.847006740 +0200
+++ /var/tmp/diff_new_pack.hQouml/_new  2020-06-15 20:33:28.851006754 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package remake
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -22,9 +22,9 @@
 Version:4.2.1_1.4
 Release:0
 Summary:A gnu make version including a debuger
-License:GPL-3.0+
-Group:  Development/Tools/Building
 Summary(de):Eine gnu make Version inklusive Debugger
+License:GPL-3.0-or-later
+Group:  Development/Tools/Building
 URL:http://bashdb.sourceforge.net/remake/
 Source0:
https://downloads.sourceforge.net/project/bashdb/remake/%{base_version}/remake-%{pkg_version}.tar.bz2
 Patch1: glob-lstat.patch
@@ -32,7 +32,6 @@
 BuildRequires:  readline-devel
 Requires(post): %{install_info_prereq}
 Requires(preun): %{install_info_prereq}
-Recommends: %{name}-lang = %{version}
 
 %description
 remake is a patched and modernized version of GNU make utility that
@@ -48,13 +47,12 @@
 %lang_package
 
 %prep
-%setup -q -n "%{name}-%{pkg_version}"
-%patch1 -p1
-%patch2 -p1
+%autosetup -n %{name}-%{pkg_version} -p1
 
 %build
+export CFLAGS="%{optflags} -fcommon"
 %configure
-make %{?_smp_mflags}
+%make_build
 
 %install
 %make_install
@@ -70,10 +68,11 @@
 %install_info_delete --info-dir="%{_infodir}" "%{_infodir}"/remake.info*
 
 %files
-%doc AUTHORS ChangeLog COPYING NEWS README
+%license COPYING
+%doc AUTHORS ChangeLog NEWS README
 %{_bindir}/remake
-%{_mandir}/man1/remake.1%{ext_man}
-%{_infodir}/remake.info%{ext_info}
+%{_mandir}/man1/remake.1%{?ext_man}
+%{_infodir}/remake.info%{?ext_info}
 
 %files lang -f %{name}.lang
 




commit terraform-provider-vsphere for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package terraform-provider-vsphere for 
openSUSE:Factory checked in at 2020-06-15 20:32:02

Comparing /work/SRC/openSUSE:Factory/terraform-provider-vsphere (Old)
 and  /work/SRC/openSUSE:Factory/.terraform-provider-vsphere.new.3606 (New)


Package is "terraform-provider-vsphere"

Mon Jun 15 20:32:02 2020 rev:2 rq:814652 version:1.18.3

Changes:

--- 
/work/SRC/openSUSE:Factory/terraform-provider-vsphere/terraform-provider-vsphere.changes
2020-03-12 23:12:20.527324773 +0100
+++ 
/work/SRC/openSUSE:Factory/.terraform-provider-vsphere.new.3606/terraform-provider-vsphere.changes
  2020-06-15 20:32:14.458739721 +0200
@@ -1,0 +2,31 @@
+Mon Jun  8 07:26:10 UTC 2020 - Dirk Mueller 
+
+- update to 1.18.3:
+  * resource/custom_attribute: Fix id in error message when category is 
missing. (#1088)
+  * resource/virtual_machine: Add vApp properties with OVF deployment. (#1082)
+  * resource/host & resource/compute_cluster: Add arguments for specifying if 
cluster management should be handled in host or compute_cluster resource. 
(#1085)
+  * resource/virtual_machine: Handle OVF argument validation during VM 
creation. (#1084)
+  * resource/host: Disconnect rather than entering maintenance mode when 
deleting. (#1083)
+  * resource/virtual_machine: Skip unexpected NIC entries. (#1067)
+  * Respect session_persistence for REST sessions. (#1077)
+  * resource/virtual_machine: Allow users to deploy OVF templates from both 
from local system and remote URL. (#1052)
+  * resource/virtual_machine: Mark product_key as sensitive. (#1045)
+  * resource/virtual_machine: Increase max hardware_version for vSphere v7.0. 
(#1056)
+  * resource/virtual_machine: Fix to disk bus sorting. (#1039)
+  * resource/virtual_machine: Only include hardware_version in CreateSpecs. 
(#1055)
+  * Use built in session persistence in govmomi. (#1050)
+  * resource/virtual_disk: Support VMDK files. (#987)
+  * resource/virtual_machine: Fix disk controller sorting. (#1032)
+  * resource/virtual_machine: Add support for hardware version tracking and 
upgrading. (#1020)
+  * data/vsphere_network: Handle cases of network port groups with same name 
using distributed_virtual_switch_uuid. (#1001)
+  * resource/virtual_machine: Fix working with orphaned devices. (#1005)
+  * resource/virtual_machine: Ignore guest_id with content library. (#1014)
+  * New Data Source: content_library (#985)
+  * New Data Source: content_library_item (#985)
+  * New Resource: content_library (#985)
+  * New Resource: content_library_item (#985)
+  * resource/virtual_machine: Add poweron_timeout option for the amount of 
time to give a VM to power on. (#990)
+  * resource/virtual_machine: Optimize OS family query. (#959)
+  * Migrate provider to Terraform plugin SDK. (#982)
+
+---

Old:

  terraform-provider-vsphere-1.16.1.obscpio

New:

  terraform-provider-vsphere-1.18.3.obscpio



Other differences:
--
++ terraform-provider-vsphere.spec ++
--- /var/tmp/diff_new_pack.yByrfX/_old  2020-06-15 20:32:16.826748222 +0200
+++ /var/tmp/diff_new_pack.yByrfX/_new  2020-06-15 20:32:16.830748236 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package terraform-provider-vsphere
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,29 +12,30 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 # Make sure that the binary is not getting stripped.
 %if 0%{?suse_version}
 %{go_nostrip}
 %endif
 
 Name:   terraform-provider-vsphere
-Version:1.16.1
+Version:1.18.3
 Release:0
-License:MPL-2.0
 Summary:Terraform vSphere provider
-Url:
https://github.com/terraform-providers/terraform-provider-vsphere
+License:MPL-2.0
 Group:  System/Management
+URL:
https://github.com/terraform-providers/terraform-provider-vsphere
 Source: %{name}-%{version}.tar.xz
 %if 0%{?suse_version}
 BuildRequires:  golang-packaging
-BuildRequires:  golang(API) >= 1.8
 BuildRequires:  xz
+BuildRequires:  golang(API) >= 1.8
 %endif
-Requires:   terraform >= 0.10.0
 Requires:   mkisofs
+Requires:   terraform >= 0.10.0
 BuildRequires:  git
 BuildRequires:  xz
 %if 0%{?suse_version}

++ _service ++
--- /var/tmp/diff_new_pack.yByrfX/_old  

commit vis for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package vis for openSUSE:Factory checked in 
at 2020-06-15 20:31:54

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


Package is "vis"

Mon Jun 15 20:31:54 2020 rev:4 rq:814686 version:0.6

Changes:

--- /work/SRC/openSUSE:Factory/vis/vis.changes  2020-06-05 20:29:01.493315284 
+0200
+++ /work/SRC/openSUSE:Factory/.vis.new.3606/vis.changes2020-06-15 
20:32:05.342706999 +0200
@@ -1,0 +2,50 @@
+Mon Jun 15 07:25:48 UTC 2020 - Matej Cepl 
+
+- Update to the released version 0.6 (all changes since 0.5):
+  - bounded time syntax highlighting using the :set redrawtime
+option
+  - support optional count for sam's text commands e.g. :i3/-/
+  - make  in visual mode match next occurence of existing
+selection
+  - warn when attempting to write to an existing file
+  - improved file change detection based on inode instead of path
+information
+  - fix file saves with modifications in file pre-save events
+  - fix save on file systems without fsync(2) support on
+directory descriptors
+  - do not unlink file~ when saving file
+  - introduce distinct vis-menu(1) exit codes
+  - modify Lua package.path to include /init.lua
+  - performance improvements for the HTML, XML and YAML lexers
+  - new Julia and Elm lexers, better defaults for standard text
+lexer
+  - support optional exit status in :q and :qall commands
+  - better temporary file creation using mkstemp(2)
+  - performance improvements in highlight matching parentheses
+  - improved behavior of ^ and $ in searches and looping commands
+  - improved search wrap around behavior
+  - new :set layout option to specify window orientation
+  - improved filetype detection by matching known filenames
+exactly
+  - support DragonFly BSD in configure script
+  - better manual page, fixed warnings
+  - removed gp, gP, gq
+  - implement g~, gu and gU using tr(1), they are no longer
+operators
+  - removed v and V in operator pending mode
+  - avoid crash if $TERM is unset
+  - keep selections after :> command
+  - normalize selections after : command execution
+  - show pending input queue content in status bar
+  - make r insert a new line
+  - new :set loadmethod option, valid values are read, mmap or
+auto
+  - always apply :| command to existing selections
+  - fix terminal UI on serial console
+  - various code cleanups, removal of VLA
+  - resets count, if applicable
+  - fix :X and :Y commands which were interchanged
+  - don't strip executables by default, provide install-strip
+target
+
+---

Old:

  vis-0.5+git.1590819266.c37f09e.tar.xz

New:

  vis-0.6.tar.gz
  vis-test-0.4.tar.gz



Other differences:
--
++ vis.spec ++
--- /var/tmp/diff_new_pack.gcABv0/_old  2020-06-15 20:32:06.578711436 +0200
+++ /var/tmp/diff_new_pack.gcABv0/_new  2020-06-15 20:32:06.582711450 +0200
@@ -16,14 +16,16 @@
 #
 
 
+%define test_version 0.4
 Name:   vis
-Version:0.5+git.1590819266.c37f09e
+Version:0.6
 Release:0
 Summary:An editor combining the strengths of both vi(m) and sam
 License:ISC
 Group:  Productivity/Text/Editors
 URL:https://github.com/martanne/vis
-Source: %{name}-%{version}.tar.xz
+Source0:
https://github.com/martanne/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Source1:
https://github.com/martanne/vis-test/releases/download/v%{test_version}/vis-test-%{test_version}.tar.gz
 BuildRequires:  libtermkey-devel
 BuildRequires:  lua-devel
 BuildRequires:  lua-lpeg
@@ -39,11 +41,12 @@
 It extends vi's modal editing with built-in support for multiple 
cursors/selections and combines it with sam's structural regular expression 
based command language.
 
 %prep
-%autosetup
+%setup -q
+tar -xC test/ --strip-components 1 -f %{SOURCE1}
 
 %build
-# FIXME: you should use the %%configure macro
-./configure --prefix="%{_prefix}"
+export CFLAGS="%{optflags} -fcommon"
+%configure
 %make_build debug
 
 %install

++ _service ++
--- /var/tmp/diff_new_pack.gcABv0/_old  2020-06-15 20:32:06.606711537 +0200
+++ /var/tmp/diff_new_pack.gcABv0/_new  2020-06-15 20:32:06.606711537 +0200
@@ -9,7 +9,7 @@
   
   
 *.tar
-xz
+gz
   
   
 




commit python-ZODB for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-ZODB for openSUSE:Factory 
checked in at 2020-06-15 20:32:17

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


Package is "python-ZODB"

Mon Jun 15 20:32:17 2020 rev:9 rq:814667 version:5.6.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ZODB/python-ZODB.changes  2020-05-04 
18:43:00.093358410 +0200
+++ /work/SRC/openSUSE:Factory/.python-ZODB.new.3606/python-ZODB.changes
2020-06-15 20:32:29.642794225 +0200
@@ -1,0 +2,12 @@
+Fri Jun 12 03:50:06 UTC 2020 - Jason Craig 
+
+- Update to 5.6.0:
+  * Fix tests with transaction 3.0 (remove patch).
++ transaction3.patch
+  * Fix race with invalidations when starting a new transaction.
+  * Fix inconsistent resolution order with zope.interface v5.
+  * Drop support for Python 3.4.
+  * Add support for Python 3.8.
+  * See CHANGES.rst for more.
+
+---

Old:

  ZODB-5.5.1.tar.gz
  transaction3.patch

New:

  ZODB-5.6.0.tar.gz



Other differences:
--
++ python-ZODB.spec ++
--- /var/tmp/diff_new_pack.zPnlTv/_old  2020-06-15 20:32:30.626797757 +0200
+++ /var/tmp/diff_new_pack.zPnlTv/_new  2020-06-15 20:32:30.630797772 +0200
@@ -19,13 +19,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-ZODB
-Version:5.5.1
+Version:5.6.0
 Release:0
 Summary:Zope Object Database: object database and persistence
 License:ZPL-2.1
 URL:https://github.com/zopefoundation/ZODB
 Source: 
https://files.pythonhosted.org/packages/source/Z/ZODB/ZODB-%{version}.tar.gz
-Patch0: transaction3.patch
 BuildRequires:  %{python_module BTrees >= 4.2.0}
 BuildRequires:  %{python_module ZConfig}
 BuildRequires:  %{python_module manuel}
@@ -70,7 +69,6 @@
 
 %prep
 %setup -q -n ZODB-%{version}
-%patch0 -p1
 # delete backup files
 find . -name "*~" -print -delete
 # remove unwanted shebang

++ ZODB-5.5.1.tar.gz -> ZODB-5.6.0.tar.gz ++
 7378 lines of diff (skipped)




commit howl for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package howl for openSUSE:Factory checked in 
at 2020-06-15 20:31:36

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


Package is "howl"

Mon Jun 15 20:31:36 2020 rev:5 rq:814647 version:0.6

Changes:

--- /work/SRC/openSUSE:Factory/howl/howl.changes2019-04-08 
10:35:23.775232036 +0200
+++ /work/SRC/openSUSE:Factory/.howl.new.3606/howl.changes  2020-06-15 
20:31:50.098652280 +0200
@@ -1,0 +2,6 @@
+Tue Jun  9 12:04:21 UTC 2020 - Guillaume GARDET 
+
+- Exclude architectures unsupported by bundled LuaJIT:
+  aarch64 ppc64 ppc64le s390x
+
+---



Other differences:
--
++ howl.spec ++
--- /var/tmp/diff_new_pack.uFjW8U/_old  2020-06-15 20:31:51.410656990 +0200
+++ /var/tmp/diff_new_pack.uFjW8U/_new  2020-06-15 20:31:51.410656990 +0200
@@ -32,6 +32,8 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  update-desktop-files
 Requires:   luajit
+# Bundled LuaJIT-2.1.0-beta3 failed to compile with this architectures
+ExcludeArch:aarch64 ppc64 ppc64le s390x
 
 %description
 Howl is a general purpose editor that is customizable. It is built on




commit python-caldav for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-caldav for openSUSE:Factory 
checked in at 2020-06-15 20:31:47

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


Package is "python-caldav"

Mon Jun 15 20:31:47 2020 rev:7 rq:814646 version:0.7.1

Changes:

--- /work/SRC/openSUSE:Factory/python-caldav/python-caldav.changes  
2020-01-24 14:12:14.366431320 +0100
+++ /work/SRC/openSUSE:Factory/.python-caldav.new.3606/python-caldav.changes
2020-06-15 20:31:56.774676244 +0200
@@ -1,0 +2,14 @@
+Mon Jun 15 06:29:32 UTC 2020 - Steve Kowalik 
+
+- Update to 0.7.1:
+  * Some tweaks to support newer versions of Zimbra and other caldav server 
implementations with slightly twisted support for the RFC.
+  * API change: add_event, add_todo and add_journal methods are now deprecated 
and aliases of save_. New attributes no_create and no_overwrite if one wants to 
be sure the save_-methods does the right thing.
+  * Calendars can now be created without a display name
+  * Quite some minor bugfixes
+  * Some code refactoring, removing some duplicated code
+  * library will gracefully create an UID if fed with caldav data missing the 
UID field
+  * the code for calendar searches has been reorganized making it possible for 
"power users" to do custom calendar searches.
+- Drop nose from BuildRequires/Requires, we don't run the testsuite, and it
+  isn't listed in the requirements.
+
+---

Old:

  caldav-0.6.2.tar.gz

New:

  caldav-0.7.1.tar.gz



Other differences:
--
++ python-caldav.spec ++
--- /var/tmp/diff_new_pack.VI6rjr/_old  2020-06-15 20:31:58.246681528 +0200
+++ /var/tmp/diff_new_pack.VI6rjr/_new  2020-06-15 20:31:58.254681557 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %global modname caldav
 Name:   python-%{modname}
-Version:0.6.2
+Version:0.7.1
 Release:0
 Summary:CalDAV (RFC4791) client library for Python
 License:GPL-3.0-or-later AND Apache-2.0
@@ -27,14 +27,12 @@
 URL:https://pypi.python.org/pypi/%{modname}
 Source: 
https://files.pythonhosted.org/packages/source/c/caldav/%{modname}-%{version}.tar.gz
 BuildRequires:  %{python_module lxml}
-BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module requests}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module six}
 BuildRequires:  %{python_module vobject}
 BuildRequires:  python-rpm-macros
 Requires:   python-lxml
-Requires:   python-nose
 Requires:   python-requests
 Requires:   python-six
 Requires:   python-vobject

++ caldav-0.6.2.tar.gz -> caldav-0.7.1.tar.gz ++
 2357 lines of diff (skipped)




commit galculator for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package galculator for openSUSE:Factory 
checked in at 2020-06-15 20:31:24

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


Package is "galculator"

Mon Jun 15 20:31:24 2020 rev:25 rq:814645 version:2.1.4

Changes:

--- /work/SRC/openSUSE:Factory/galculator/galculator.changes2019-12-31 
15:49:08.832352750 +0100
+++ /work/SRC/openSUSE:Factory/.galculator.new.3606/galculator.changes  
2020-06-15 20:31:42.870626335 +0200
@@ -1,0 +2,5 @@
+Thu Jun 11 14:48:02 UTC 2020 - Paolo Stivanin 
+
+- Add -fcommon to allow building against GCC10 
+
+---



Other differences:
--
++ galculator.spec ++
--- /var/tmp/diff_new_pack.oDUx2G/_old  2020-06-15 20:31:44.142630901 +0200
+++ /var/tmp/diff_new_pack.oDUx2G/_new  2020-06-15 20:31:44.150630930 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package galculator
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -20,9 +20,9 @@
 Version:2.1.4
 Release:0
 Summary:A GTK 3 based calculator
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  System/GUI/GNOME
-Url:http://galculator.mnim.org/
+URL:http://galculator.mnim.org/
 Source0:http://galculator.mnim.org/downloads/%{name}-%{version}.tar.bz2
 BuildRequires:  flex
 BuildRequires:  intltool
@@ -32,7 +32,6 @@
 BuildRequires:  pkgconfig(gtk+-3.0)
 Recommends: %{name}-lang
 
-
 %description
 galculator is a GTK 3 based calculator with ordinary notation/reverse
 polish notation (RPN), a formula entry mode, different number bases
@@ -45,6 +44,9 @@
 %setup -q
 
 %build
+# workaround for GCC10 build failure
+export CFLAGS="%(echo %{optflags}) -fcommon"
+export CXXFLAGS="$CFLAGS"
 %configure
 make %{?_smp_mflags}
 




commit pgadmin4 for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package pgadmin4 for openSUSE:Factory 
checked in at 2020-06-15 20:32:10

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


Package is "pgadmin4"

Mon Jun 15 20:32:10 2020 rev:12 rq:814656 version:4.22

Changes:

--- /work/SRC/openSUSE:Factory/pgadmin4/pgadmin4.changes2020-05-16 
22:27:37.525432114 +0200
+++ /work/SRC/openSUSE:Factory/.pgadmin4.new.3606/pgadmin4.changes  
2020-06-15 20:32:22.722769385 +0200
@@ -1,0 +2,53 @@
+Mon Jun 15 08:10:53 UTC 2020 - Michal Vyskocil 
+
+- Update to 4.22
+  - New features
+ * Added connected pgAdmin user and connection name in the log file.
+ * Show the startup log as well as the server log in the runtime's log
+   viewer.
+  - Bugfixes
+* Gracefully informed the user that the database is already connected 
when
+  they click on "Connect Database...".
+* Fixed an issue where clicking on the cross button of the alert box on
+  the login page is not working.
+ * Fixed the SQL help issue for EDB Postgres Advanced Server.
+* Ensure that maintenance job should be worked properly for indexes 
under
+  a materialized view.
+ * Ensure that file browse "home" button should point to $HOME rather than 
/.
+* Ensure that 'With OID' option should be disabled while taking backup 
of
+  database server version 12 and above.
+* Fixed invalid literal issue when removing the connection limit for 
the
+  existing role.
+* Fixed internal server error when clicking on Triggers -> 'Enable All'
+  for partitions.
+ * Fixed generated SQL issue for auto vacuum options.
+ * Ensure that the dependencies tab shows correct information for Synonyms.
+* Fixed an issue where the newly added table is not alphabetically 
added
+  to the tree.
+ * Fixed list sorting issue in the schema diff tool.
+* Fixed an issue while comparing the two identical schemas using the
+  schema diff tool.
+ * Fixed an issue when renaming the column not added in the proper order.
+* Correct ipv4 "all interfaces" address in the container docs, per 
Frank
+  Limpert.
+* Fixed an issue where select2 hover is inconsistent for the SSL field 
in
+  create server dialog.
+* Fixed post-login redirect location when running in server mode under 
a
+  non-default root.
+* Fixed an issue where the background job creation fails if there is 
only
+  a version-specific python binary available in PATH.
+* Fixed data truncation issue when updating the data of type character
+   with length.
+* Fixed an issue where if LDAP_SEARCH_BASE_DN is not set then, the 
value
+   for LDAP_BASE_DN will be considered.
+* Fixed an issue where clicking on Select All button, not selecting all
+   the options in pgAgent job scheduler.
+* Clarify and correct the docs on enabling the pl/debugger plugin on 
the
+   server.
+ * Fixed Unicode decode error 'utf-8' codec can't decode byte.
+- Packaging:
+  * refresh fix-python-lib.patch
+  * add keyring e8697e2eef76c02d3a6332778881b2a8210976f2 enabling
+GPG source tarballs verification
+
+---

Old:

  pgadmin4-4.21.tar.gz

New:

  pgadmin4-4.22.tar.gz
  pgadmin4-4.22.tar.gz.asc
  pgadmin4.keyring



Other differences:
--
++ pgadmin4.spec ++
--- /var/tmp/diff_new_pack.fpBLjI/_old  2020-06-15 20:32:24.894777182 +0200
+++ /var/tmp/diff_new_pack.fpBLjI/_new  2020-06-15 20:32:24.894777182 +0200
@@ -18,13 +18,16 @@
 
 %globalpgadmin4instdir %{_libdir}/pgadmin4-%{version}
 Name:   pgadmin4
-Version:4.21
+Version:4.22
 Release:0
 Summary:Management tool for PostgreSQL
 License:PostgreSQL
 Group:  Productivity/Databases/Tools
 URL:http://www.pgadmin.org
 Source0:
https://download.postgresql.org/pub/pgadmin/%{name}/v%{version}/source/%{name}-%{version}.tar.gz
+Source10:   
https://download.postgresql.org/pub/pgadmin/%{name}/v%{version}/source/%{name}-%{version}.tar.gz.asc
+# https://www.pgadmin.org/download/pgadmin-4-source-code/
+Source11:   %{name}.keyring
 Source1:%{name}.conf
 Source2:%{name}.service.in
 Source3:%{name}.tmpfiles.d
@@ -142,6 +145,7 @@
 cd runtime
 export PYTHON_CONFIG=%{_bindir}/python3-config
 export PYTHON_VERSION=%{python3_version}
+export PGADMIN_PYTHON_DIR=%{_prefix}
 export CFLAGS=%{RPM_OPT_FLAGS}
 qmake-qt5 -o Makefile pgAdmin4.pro
 make %{?_smp_mflags} VERBOSE=1

commit lammps for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package lammps for openSUSE:Factory checked 
in at 2020-06-15 20:31:03

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


Package is "lammps"

Mon Jun 15 20:31:03 2020 rev:17 rq:814601 version:20200505

Changes:

--- /work/SRC/openSUSE:Factory/lammps/lammps.changes2020-06-11 
14:50:03.850349089 +0200
+++ /work/SRC/openSUSE:Factory/.lammps.new.3606/lammps.changes  2020-06-15 
20:31:21.310549879 +0200
@@ -1,0 +2,6 @@
+Sun Jun 14 20:44:26 UTC 2020 - Christoph Junghans 
+
+- disable march=native optimization by setting empty 
+  CMAKE_TUNE_FLAGS
+
+---



Other differences:
--
++ lammps.spec ++
--- /var/tmp/diff_new_pack.ShzLgS/_old  2020-06-15 20:31:23.526557556 +0200
+++ /var/tmp/diff_new_pack.ShzLgS/_new  2020-06-15 20:31:23.526557556 +0200
@@ -177,6 +177,7 @@
   -C ../cmake/presets/all_on.cmake \
   -C ../cmake/presets/nolib.cmake \
   -DCMAKE_Fortran_COMPILER="$(type -p gfortran)" \
+  -DCMAKE_TUNE_FLAGS='' \
   -DBUILD_TOOLS=ON \
   -DBUILD_OMP=ON \
   %{?with_kokkos:-DPKG_KOKKOS=ON -DEXTERNAL_KOKKOS=ON} \




commit libplacebo for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package libplacebo for openSUSE:Factory 
checked in at 2020-06-15 20:30:05

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


Package is "libplacebo"

Mon Jun 15 20:30:05 2020 rev:11 rq:814574 version:2.72.0

Changes:

--- /work/SRC/openSUSE:Factory/libplacebo/libplacebo.changes2020-05-06 
11:05:15.379390061 +0200
+++ /work/SRC/openSUSE:Factory/.libplacebo.new.3606/libplacebo.changes  
2020-06-15 20:30:40.246407623 +0200
@@ -1,0 +2,146 @@
+Sun Jun 14 15:37:17 UTC 2020 - Mia Herkt 
+
+- Update to version 2.72.0
+This is a major release with several key additions, most notably
+being the support for custom, mpv-style "user shaders" (.hook),
+giving us access to a large variety of pre-existing user shaders
+such as RAVU, FSRCNNX, Anime4K, SSimSuperRes, KrigBilateral,
+NNEDI3, and more.
+
+In addition to this, major additions include a completely
+refactored and fixed AV1 grain generation shader, support for
+Vulkan versions higher than 1.0, support for GPU-based timers,
+and improved interop APIs for both Vulkan and OpenGL, and new
+and improved aspect ratio handling.
+
+Finally, this release also brings with it a major change to the way
+HDR and SDR content are mapped between each other, including a new
+tone-mapping function based on the industry-standard
+ITU-R BT.2390 EETF.
+
+Additions:
+  * add pl_swapchain_hdr_metadata, to set HDR metadata on supported
+swapchains (currently only vulkan with VK_EXT_hdr_metadata)
+  * add support for vulkan versions higher than 1.0, communicated
+via the new fields api_version and max_api_version
+  * add support for GPU-assisted validation and best practices
+layers, via the new field pl_vk_inst_params.debug_extra
+  * add helper functions for working with pl_rects, including new
+aspect ratio handling helpers (pl_rect2df_aspect_*)
+  * add field pl_vulkan_params.device_uuid to allow choosing the
+vulkan device by its UUID
+  * add function pl_vulkan_hold_raw, to hold images without
+actually transitioning its layout and access mode
+  * add function pl_vulkan_import, to allow directly re-using an
+existing VkDevice rather than creating a new one; this requires
+communicating metadata about how the device was created
+  * add field pl_vulkan_params.features to allow loading optional
+extra device features at device creation time
+  * add support for mpv-style custom user shaders (.hook),
+using the set of functions in 
+  * add pl_render_high_quality_params, enabling debanding and
+EWA scaling
+  * add pl_timer GPU resource type and associated API functions,
+allowing the GPU execution time of shaders and texture transfer
+operations to be measured directly
+  * add PL_SHADER_SIG_SAMPLER, allowing generated sampling shaders
+to directly accept the sampler to use as function parameters
+  * add pl_image_set_chroma_location to automatically apply the
+correct chroma location to any subsampled planes
+  * add PL_TONE_MAPPING_BT_2390, a tone mapping function based on
+the EETF from ITU-R Report BT.2390 (and make it the default)
+  * add pl_peak_detect_params.overshoot_margin to help combat
+clipping on certain types of rapid scene fade-ins
+  * add pl_sampler_type to allow encoding non-standard sampler
+types such as sampler2DRect, and also generalize samplers to
+allow e.g. usampler2D or isampler3D
+  * add pl_opengl_wrap and pl_opengl_unwrap, to allow directly
+mapping between OpenGL textures and the pl_tex abstraction
+
+Changes:
+  * deprecate pl_image.width/height, which are now inferred
+automatically from the actual planes
+  * pl_vulkan_wrap now takes a pl_vulkan_wrap_params struct
+instead of directly accepting its parameters, including new
+fields sample_mode and address_mode to configure the created
+sampler
+  * change pl_dispatch_compute to allow optionally passing in a
+simulated framebuffer width/height, which will be used to
+translate vertex attributes (if any)
+  * undefine disabled config.h features, instead of defining them
+as 0
+  * remove debanding from pl_render_default_params
+  * refactor HDR<->SDR mapping; PL_COLOR_REF_WHITE has been removed
+and replaced by PL_COLOR_SDR_WHITE (203 cd/m^2)
+and PL_COLOR_SDR_WHITE_HLG (75% HLG), respectively
+  * completely refactor pl_shader_av1_grain`, which now samples
+directly from the passed texture rather than requiring the
+color be pre-sampled
+  * pl_render_image now infers the image primaries based on
+resolution, rather than always hard-coding
+PL_COLOR_SPACE_UNKNOWN as BT.709
+  * change pl_render_target.dst_rect from pl_rect2d to pl_rect2df,
+allowing more accurate aspect ratio handling, and 

commit pinfo for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package pinfo for openSUSE:Factory checked 
in at 2020-06-15 20:30:17

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


Package is "pinfo"

Mon Jun 15 20:30:17 2020 rev:27 rq:814597 version:0.6.10

Changes:

--- /work/SRC/openSUSE:Factory/pinfo/pinfo.changes  2016-01-23 
01:16:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.pinfo.new.3606/pinfo.changes2020-06-15 
20:30:48.750437083 +0200
@@ -1,0 +2,6 @@
+Sun Jun 14 06:50:01 UTC 2020 - Martin Pluskal 
+
+- Fix building with gcc10
+- Cleanup spec file with spec-cleaner
+
+---



Other differences:
--
++ pinfo.spec ++
--- /var/tmp/diff_new_pack.RmSSuj/_old  2020-06-15 20:30:51.090445189 +0200
+++ /var/tmp/diff_new_pack.RmSSuj/_new  2020-06-15 20:30:51.090445189 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pinfo
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -20,9 +20,9 @@
 Version:0.6.10
 Release:0
 Summary:Lynx-style Info Browser
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Productivity/Publishing/Texinfo
-Url:https://alioth.debian.org/projects/pinfo/
+URL:https://alioth.debian.org/projects/pinfo/
 Source: 
https://alioth.debian.org/frs/download.php/file/3351/%{name}-%{version}.tar.bz2
 Patch1: pinfo-0.6.9-nul-strings.patch
 Patch2: pinfo-0.6.10-tinfo.patch
@@ -34,7 +34,6 @@
 BuildRequires:  ncurses-devel
 Requires(post): %{install_info_prereq}
 Requires(preun): %{install_info_prereq}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Pinfo is a curses based, Lynx-style info browser.
@@ -46,16 +45,14 @@
 %patch3 -p1
 
 %build
-# This package failed when testing with -Wl,-as-needed being default.
-# So we disable it here, if you want to retest, just delete this comment and 
the line below.
-export SUSE_ASNEEDED=0
+export CFLAGS="%{optflags} -fcommon"
 autoreconf -fiv
 %configure \
--with-curses=%{_prefix}
-make %{?_smp_mflags}
+%make_build
 
 %install
-make DESTDIR=%{buildroot}/ install
+%make_install
 %find_lang %{name}
 
 %post
@@ -65,10 +62,10 @@
 %install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info%{ext_info}
 
 %files -f %{name}.lang
-%defattr(-, root, root)
-%doc AUTHORS COPYING ChangeLog NEWS README
-%{_mandir}/man1/pinfo.1%{ext_man}
-%{_infodir}/pinfo.info%{ext_info}
+%license COPYING
+%doc AUTHORS ChangeLog NEWS README
+%{_mandir}/man1/pinfo.1%{?ext_man}
+%{_infodir}/pinfo.info%{?ext_info}
 %config %{_sysconfdir}/pinforc
 %{_bindir}/pinfo
 




commit apache2-mod_nss for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package apache2-mod_nss for openSUSE:Factory 
checked in at 2020-06-15 20:30:34

Comparing /work/SRC/openSUSE:Factory/apache2-mod_nss (Old)
 and  /work/SRC/openSUSE:Factory/.apache2-mod_nss.new.3606 (New)


Package is "apache2-mod_nss"

Mon Jun 15 20:30:34 2020 rev:35 rq:814638 version:1.0.18

Changes:

--- /work/SRC/openSUSE:Factory/apache2-mod_nss/apache2-mod_nss.changes  
2020-05-13 22:56:35.291068234 +0200
+++ 
/work/SRC/openSUSE:Factory/.apache2-mod_nss.new.3606/apache2-mod_nss.changes
2020-06-15 20:30:58.782471836 +0200
@@ -1,0 +2,5 @@
+Thu Jun 11 09:53:59 UTC 2020 - Paolo Stivanin 
+
+- Add -fcommon in order to fix building with GCC10 
+
+---



Other differences:
--
++ apache2-mod_nss.spec ++
--- /var/tmp/diff_new_pack.yUYmIl/_old  2020-06-15 20:31:00.042476201 +0200
+++ /var/tmp/diff_new_pack.yUYmIl/_new  2020-06-15 20:31:00.046476215 +0200
@@ -81,7 +81,7 @@
 touch nss_expr_*.[chyl]
 
 %build
-CFLAGS="%{optflags}"
+CFLAGS="%{optflags} -fcommon"
 export CFLAGS
 NSPR_INCLUDE_DIR=`%{_bindir}/pkg-config --variable=includedir nspr`
 NSPR_LIB_DIR=`%{_bindir}/pkg-config --variable=libdir nspr`




commit python-defcon for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-defcon for openSUSE:Factory 
checked in at 2020-06-15 20:30:45

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


Package is "python-defcon"

Mon Jun 15 20:30:45 2020 rev:2 rq:814613 version:0.7.2

Changes:

--- /work/SRC/openSUSE:Factory/python-defcon/python-defcon.changes  
2020-05-29 21:36:01.830409374 +0200
+++ /work/SRC/openSUSE:Factory/.python-defcon.new.3606/python-defcon.changes
2020-06-15 20:31:06.414498275 +0200
@@ -1,0 +2,20 @@
+Mon Jun 15 05:47:09 UTC 2020 - Steve Kowalik 
+
+- Update to 0.7.2:
+  * Name the wheel file as non-universal (py3-only).
+  * [setup.py] Mark library as requiring Python 3.6+, or else pip2 will 
attempt to install it on Python 2.7, which is no longer supported (#293).
+  * Dropped support for Py2, now only Py3
+  * Updated documentation: #232
+  * Fixed docstring typos (thanks @Space0726!): #263
+  * added notification: Font.GuidelineWillBeAdded: #239
+  * Fixes for UFOZ (#209 testForExternalChanges and #218 glyphSet is 
required): #220
+  * Added close to font: #269
+  * Setting glyph.unicode will now set glyph.unicodes to a one member list: 
#258
+  * Add notifications for: Glyph.LeftMarginWillChange, 
Glyph.LeftMarginDidChange, Glyph.RightMarginWillChange, 
Glyph.RightMarginDidChange, Glyph.TopMarginWillChange, 
Glyph.TopMarginDidChange, Glyph.BottomMarginWillChange, 
Glyph.BottomMarginDidChange: #253
+  * Improved joinSegments: #259
+  * Added identifier to addComponent callback: #268
+  * Fix glyphs with components getting proper area value: #272
+  * Use ufoFormatTuple: #289
+  * Add ufoFormatVersionTuple property, deprecate ufoFormatVersion: #291
+
+---

Old:

  defcon-0.6.0.zip

New:

  defcon-0.7.2.zip



Other differences:
--
++ python-defcon.spec ++
--- /var/tmp/diff_new_pack.thjlPX/_old  2020-06-15 20:31:08.646506007 +0200
+++ /var/tmp/diff_new_pack.thjlPX/_new  2020-06-15 20:31:08.650506021 +0200
@@ -17,8 +17,9 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
 Name:   python-defcon
-Version:0.6.0
+Version:0.7.2
 Release:0
 Summary:A set of flexible objects for representing UFO data
 License:MIT
@@ -28,11 +29,11 @@
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildRequires:  unzip
-Requires:   python-FontTools >= 3.31.0
+Requires:   python-FontTools >= 4.10.2
 Suggests:   python-fontPens >= 0.1.0
 BuildArch:  noarch
 # SECTION test requirements
-BuildRequires:  %{python_module FontTools >= 3.31.0}
+BuildRequires:  %{python_module FontTools >= 4.10.2}
 BuildRequires:  %{python_module pytest >= 3.0.3}
 # /SECTION
 %python_subpackages




commit php-pear-Mail_Mime for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package php-pear-Mail_Mime for 
openSUSE:Factory checked in at 2020-06-15 20:31:17

Comparing /work/SRC/openSUSE:Factory/php-pear-Mail_Mime (Old)
 and  /work/SRC/openSUSE:Factory/.php-pear-Mail_Mime.new.3606 (New)


Package is "php-pear-Mail_Mime"

Mon Jun 15 20:31:17 2020 rev:4 rq:814598 version:1.10.8

Changes:

--- /work/SRC/openSUSE:Factory/php-pear-Mail_Mime/php-pear-Mail_Mime.changes
2020-03-21 00:03:21.469163681 +0100
+++ 
/work/SRC/openSUSE:Factory/.php-pear-Mail_Mime.new.3606/php-pear-Mail_Mime.changes
  2020-06-15 20:31:30.566582170 +0200
@@ -1,0 +2,7 @@
+Sun Jun 14 21:06:49 UTC 2020 - Arjen de Korte 
+
+- new upstream release 1.10.8
+  * Fix encoding issues with ISO-2022-JP-MS input labelled with
+ISO-2022-JP
+
+---

Old:

  Mail_Mime-1.10.7.tgz

New:

  Mail_Mime-1.10.8.tgz



Other differences:
--
++ php-pear-Mail_Mime.spec ++
--- /var/tmp/diff_new_pack.J4rXTR/_old  2020-06-15 20:31:32.810590224 +0200
+++ /var/tmp/diff_new_pack.J4rXTR/_new  2020-06-15 20:31:32.814590239 +0200
@@ -19,7 +19,7 @@
 %define pear_name  Mail_Mime
 
 Name:   php-pear-Mail_Mime
-Version:1.10.7
+Version:1.10.8
 Release:0
 Summary:PHP classes to create MIME messages
 License:BSD-3-Clause

++ Mail_Mime-1.10.7.tgz -> Mail_Mime-1.10.8.tgz ++
 9526 lines of diff (skipped)




commit bmake for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package bmake for openSUSE:Factory checked 
in at 2020-06-15 20:30:57

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


Package is "bmake"

Mon Jun 15 20:30:57 2020 rev:19 rq:814612 version:20200606

Changes:

--- /work/SRC/openSUSE:Factory/bmake/bmake.changes  2019-09-13 
14:58:54.177278722 +0200
+++ /work/SRC/openSUSE:Factory/.bmake.new.3606/bmake.changes2020-06-15 
20:31:14.790527292 +0200
@@ -1,0 +2,70 @@
+Sun Jun 14 17:07:15 UTC 2020 - Dmitriy Perlow 
+
+- Updated allow-overriding-compiler-variables.patch.
+- Update to version 20200606:
+  * make.1: cleanup
+  * Makefile: fix depends for main.o which broke MAKE_VERSION
+  * dir.c: cached_stats - don't confuse stat and lstat results.
+  * var.c: add :Or for reverse sort.
+  * configure.in: add AC_PROG_CC_C99 for mipspro compiler
+also if --with-filemon= specifies path to filemon.h
+set use_filemon=dev
+  * dirname.c: remove include of namespace.h
+  * modified dollar tests to avoid shell dependencies
+  * new tests for .INCLUDEFROM
+  * unit-tests/dollar.mk: tweak  '1 dollar literal' test
+to not depend so much on shell behavior
+  * unit test for dollar handling
+  * str.c: empty string does not match % pattern
+plus unit-test changes
+  * var.c: import handling of old sysV style modifier using '%'
+  * str.c: refactor brk_string
+  * unit-tests: add test case for lazy conditions
+  * configure.in: use_makefile=no for cygwin et al.
+case insensitive filesystems just don't work if both
+makefile and Makefile exist.
+  * meta.c: meta_oodate, CHECK_VALID_META is too aggressive for CMD
+a blank command is perfectly valid.
+  * make.h: extern debug_file
+  * meta.c: meta_oodate, check for corrupted meta file
+earlier and more often.
+  * boot-strap: unset MAKEFLAGS
+  * meta.c: meta_compat_parent check for USE_FILEMON
+patch from Soeren Tempel
+  * meta.c: fix compat mode, need to call meta_job_output()
+  * job.c: extra fds for meta mode not needed if using filemon_dev
+  * meta.c: avoid passing NULL to filemon_*() when meta_needed()
+returns FALSE.
+  * filemon/filemon_{dev,ktrace}.c: allow selection of
+filemon implementation.  filemon_dev.c uses the kernel module
+while filemon_ktrace.c leverages the fktrace api available in
+NetBSD.  filemon_ktrace.c can hopefully form the basis for
+adding support for other tracing mechanisms such as strace on
+Linux.
+  * meta.c: when target is out-of-date per normal make rules
+record value of .OODATE in meta file.
+  * parse.c: don't pass NULL to realpath(3)
+some versions cannot handle it.
+  * parse.c: ParseDoDependency: free paths rather than assert
+  * configure.in: add --without-makefile to avoid generating
+makefile and make-bootstrap.sh
+  * include Makefile.inc if it exists
+  * Use Makefile and Makefile.config.in in unit-tests
+so we can use just: make obj && make && make test
+when bmake is already available.
+We add --without-makefile to CONFIGURE_ARGS in this case.
+  * tweak bsd.after-import.mk (captures Makefile.config etc
+after import to FreeBSD for example) to cope with all the above. 
+  * parse.c: ParseVErrorInternal use .PARSEDIR
+and apply if relative, and then use .PARSEFILE
+for consistent result.
+  * parse.c: ParseVErrorInternal use .CURDIR if .PARSEDIR
+is relative
+  * var.c: avoid SEGFAULT in .unexport-env
+when MAKELEVEL is not set
+  * fix for unit-tests/varquote.mk on Debian
+  * var.c: add :q
+  * dir.c: cleanup caching of stats
+  * Makefile.config.in: use += where it makes sense.
+
+---

Old:

  bmake-20181221.tar.gz

New:

  bmake-20200606.tar.gz



Other differences:
--
++ bmake.spec ++
--- /var/tmp/diff_new_pack.UWBsK0/_old  2020-06-15 20:31:16.374532779 +0200
+++ /var/tmp/diff_new_pack.UWBsK0/_new  2020-06-15 20:31:16.378532793 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bmake
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via https://bugs.opensuse.org/
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
 
 Name:   bmake
-Version:20181221
+Version:20200606
 Release:0
 Summary:The 

commit openomf for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package openomf for openSUSE:Factory checked 
in at 2020-06-15 20:29:49

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


Package is "openomf"

Mon Jun 15 20:29:49 2020 rev:3 rq:814583 version:0.6.5+git.20190205

Changes:

--- /work/SRC/openSUSE:Factory/openomf/openomf.changes  2019-02-28 
21:44:38.701493286 +0100
+++ /work/SRC/openSUSE:Factory/.openomf.new.3606/openomf.changes
2020-06-15 20:30:05.610287634 +0200
@@ -1,0 +2,6 @@
+Sat Jun 13 18:17:49 UTC 2020 - Martin Hauke 
+
+- Add patch to workaround gcc10 compilation errors (boo#1160244):
+  * openomf-set-cflags.patch
+
+---

New:

  openomf-set-cflags.patch



Other differences:
--
++ openomf.spec ++
--- /var/tmp/diff_new_pack.PBDl0M/_old  2020-06-15 20:30:06.842291902 +0200
+++ /var/tmp/diff_new_pack.PBDl0M/_new  2020-06-15 20:30:06.850291930 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package openomf
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2019, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
@@ -29,8 +29,10 @@
 Source: %{name}-%{version}.tar.xz
 Source2:%{name}.README.SUSE
 Patch0: libshadowdive-soversion.patch
+Patch1: openomf-set-cflags.patch
 BuildRequires:  ImageMagick
 BuildRequires:  cmake
+BuildRequires:  enet-devel
 BuildRequires:  git-core
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libpng16-compat-devel
@@ -39,7 +41,6 @@
 BuildRequires:  pkgconfig(argtable2)
 BuildRequires:  pkgconfig(cunit)
 BuildRequires:  pkgconfig(libconfuse)
-BuildRequires:  pkgconfig(libenet)
 BuildRequires:  pkgconfig(libxmp)
 BuildRequires:  pkgconfig(openal)
 BuildRequires:  pkgconfig(sdl2)
@@ -86,6 +87,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %cmake \

++ openomf-set-cflags.patch ++
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c7459eb..f67a6b7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -21,7 +21,7 @@ OPTION(USE_SUBMODULES "Add libsd as submodule" ON)
 OPTION(USE_SANITIZERS "Enable Asan and Ubsan" OFF)
 
 # These flags are used for all builds
-set(CMAKE_C_FLAGS "-Wall")
+set(CMAKE_C_FLAGS "-Wall -fcommon")
 set(CMAKE_C_FLAGS_DEBUG "-ggdb -DDEBUGMODE -Werror -fno-omit-frame-pointer")
 set(CMAKE_C_FLAGS_RELWITHDEBINFO "-g -O2 -fno-omit-frame-pointer -DNDEBUG")
 set(CMAKE_C_FLAGS_RELEASE "-O2 -DNDEBUG")



commit picom for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package picom for openSUSE:Factory checked 
in at 2020-06-15 20:29:42

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


Package is "picom"

Mon Jun 15 20:29:42 2020 rev:2 rq:814595 version:8

Changes:

--- /work/SRC/openSUSE:Factory/picom/picom.changes  2019-11-28 
10:13:28.419636773 +0100
+++ /work/SRC/openSUSE:Factory/.picom.new.3606/picom.changes2020-06-15 
20:29:54.910250567 +0200
@@ -1,0 +2,51 @@
+Sun Jun 14 18:03:52 UTC 2020 - Callum Farmer 
+
+- Since it requires dbus, use dbus by default. 
+
+---
+Sat May  9 14:03:44 UTC 2020 - Callum Farmer 
+
+- Updated to version 8
+  * You can now use the time variable in window shaders to get a
+timestamp. An example usage is to create animated effects,
+e.g. https://streamable.com/e0x7r
+  * --max-brightness, which allows you to dim windows that are
+too bright. When enabled, all windows' average brightness will
+be clamped to the set value.
+  * Automatic configuration file reloading after it's changed.
+  * A lot of the artifacts seen with blur and use-damage enabled
+are fixed.
+  * _NET_WM_BYPASS_COMPOSITOR property are now handled.
+(Related to i3/i3lock#204)
+  * Completely transparent windows won't have a blurred background
+anymore.
+  * Improved fullscreen window detection. Now EWMH is used to
+detect fullscreen windows as well. You can turn it off with
+--no-ewmh-fullscreen
+  * Various improvments to the inverter.sh script
+  * wintype notify has been renamed to notification to match the
+EWMH names. (Old name still works)
+  * picom no longer sets the opacity property on windows based on
+opacity rules. This is to fix the problem where picom "forgets"
+it set the opacity property after, e.g., window manager
+restarts.
+  * libxdg-basedir is no longer a dependency
+  * Fixed wrong client window detection after i3wm restarts
+  * Fixed wallpaper disappearing after screen resolution changes.
+  * Fixed crashing when a really big window is created with shadow
+  * Fixed --frame-opacity with the experimental backends
+  * --blur-* command line options are now handled properly
+  * Various build fixes
+  * Various memory leakage fixes
+  * Various documentation fixes and improvments
+  * Various other crash, assertion failure fixes
+  * Fixed some left over problems related to terminals in floating
+scratchpads losing transparency after restarting i3
+  * Using these options is now an error: alpha-step, -d, -S,
+--no-named-pixmap xrender-sync. They were deprecated in v5.
+paint-on-overlay, --dbe. They were deprecated in v4.
+  * Error messages will no longer be printed for these removed
+options: glx-use-copysubbuffermesa, glx-copy-from-front.
+They were removed in v7
+
+---

Old:

  _service
  _servicedata
  picom-7.4+159.g9a88d97.obscpio
  picom.obsinfo

New:

  v8.tar.gz



Other differences:
--
++ picom.spec ++
--- /var/tmp/diff_new_pack.57FLeu/_old  2020-06-15 20:29:58.826264133 +0200
+++ /var/tmp/diff_new_pack.57FLeu/_new  2020-06-15 20:29:58.826264133 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package picom
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # 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:   picom
-Version:7.4+159.g9a88d97
+Version:8
 Release:0
 Summary:Stand-alone compositor for X11
 License:MPL-2.0 AND MIT
 Group:  System/X11/Utilities
 URL:https://github.com/yshui/picom
-Source0:%{name}-%{version}.tar.xz
+Source0:https://github.com/yshui/picom/archive/v8.tar.gz
 Source1:picom.desktop
 BuildRequires:  asciidoc
 BuildRequires:  c_compiler
@@ -77,7 +77,7 @@
 cp %{SOURCE1} %{buildroot}%{_datadir}/applications/%{name}.desktop
 
 %files
-%license COPYING
+%license LICENSES/MPL-2.0 LICENSES/MIT COPYING
 %doc CONTRIBUTORS README.md README_orig.md picom.sample.conf
 %{_bindir}/*
 %{_datadir}/icons/hicolor/*/apps/%{name}*

++ picom.desktop ++
--- /var/tmp/diff_new_pack.57FLeu/_old  2020-06-15 20:29:58.854264230 +0200
+++ /var/tmp/diff_new_pack.57FLeu/_new  2020-06-15 20:29:58.858264243 +0200
@@ -3,8 +3,9 @@
 Type=Application
 Name=picom
 GenericName=X compositor
-Comment=Stand-alone X compositor
+Comment=A stand-alone X compositor
 Categories=Utility;X-SuSE-DesktopUtility;
 Keywords=compositor;composite manager;window 

commit inn for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package inn for openSUSE:Factory checked in 
at 2020-06-15 20:29:38

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


Package is "inn"

Mon Jun 15 20:29:38 2020 rev:38 rq:814573 version:2.6.2

Changes:

--- /work/SRC/openSUSE:Factory/inn/inn.changes  2020-01-27 00:22:52.469509344 
+0100
+++ /work/SRC/openSUSE:Factory/.inn.new.3606/inn.changes2020-06-15 
20:29:48.786229351 +0200
@@ -1,0 +2,5 @@
+Thu Jun 11 14:32:22 UTC 2020 - Paolo Stivanin 
+
+- Add -fcommon to allow building against GCC10 
+
+---



Other differences:
--
++ inn.spec ++
--- /var/tmp/diff_new_pack.jAO55m/_old  2020-06-15 20:29:49.774232774 +0200
+++ /var/tmp/diff_new_pack.jAO55m/_new  2020-06-15 20:29:49.778232788 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package inn
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -22,7 +22,7 @@
 BuildRequires:  pam-devel
 BuildRequires:  postfix
 BuildRequires:  zlib-devel
-Url:http://www.isc.org/software/inn/
+URL:http://www.isc.org/software/inn/
 Summary:InterNetNews
 License:GPL-2.0-or-later AND BSD-4-Clause
 Group:  Productivity/Networking/News/Servers
@@ -87,7 +87,7 @@
 
 %build
 %global _lto_cflags %{_lto_cflags} -ffat-lto-objects
-LDFLAGS="-pie" CFLAGS="$RPM_OPT_FLAGS -pipe -fno-strict-aliasing 
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fPIE -fstack-protector" ./configure 
\
+LDFLAGS="-pie" CFLAGS="$RPM_OPT_FLAGS -pipe -fno-strict-aliasing 
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fPIE -fstack-protector -fcommon" 
./configure \
--enable-dual-socket \
--enable-uucp-rnews \
--enable-setgid-inews \






commit rbutil for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package rbutil for openSUSE:Factory checked 
in at 2020-06-15 20:29:33

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


Package is "rbutil"

Mon Jun 15 20:29:33 2020 rev:3 rq:814566 version:1.4.1

Changes:

--- /work/SRC/openSUSE:Factory/rbutil/rbutil.changes2018-08-03 
12:35:22.919398767 +0200
+++ /work/SRC/openSUSE:Factory/.rbutil.new.3606/rbutil.changes  2020-06-15 
20:29:42.082206127 +0200
@@ -1,0 +2,11 @@
+Sun Jun 14 10:03:38 UTC 2020 - Martin Hauke 
+
+- Update to version 1.4.1
+  * Support for mks5lboot installation (iPod 6G)
+  * Fix crash when detecting a supported player in MTP mode. 
+- Update patch:
+  * rbutil-fix-versionstring.patch
+- Add patch to fix gcc10 compilation errors (boo#1160244)
+  * 0001-imxtools-sbtools-fix-compilation-with-gcc-10.patch
+
+---

Old:

  RockboxUtility-v1.4.0-src.tar.bz2

New:

  0001-imxtools-sbtools-fix-compilation-with-gcc-10.patch
  RockboxUtility-v1.4.1-src.tar.bz2



Other differences:
--
++ rbutil.spec ++
--- /var/tmp/diff_new_pack.kDynMn/_old  2020-06-15 20:29:43.182209938 +0200
+++ /var/tmp/diff_new_pack.kDynMn/_new  2020-06-15 20:29:43.186209952 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rbutil
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2018, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
@@ -13,12 +13,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   rbutil
-Version:1.4.0
+Version:1.4.1
 Release:0
 Summary:Rockbox Firmware Manager
 License:GPL-2.0-only
@@ -26,6 +26,7 @@
 URL:https://www.rockbox.org/wiki/RockboxUtility
 Source: 
http://download.rockbox.org/rbutil/source/RockboxUtility-v%{version}-src.tar.bz2
 Patch1: rbutil-fix-versionstring.patch
+Patch2: 0001-imxtools-sbtools-fix-compilation-with-gcc-10.patch
 BuildRequires:  gcc-c++
 BuildRequires:  libqt5-linguist
 BuildRequires:  libqt5-qtbase-common-devel
@@ -34,6 +35,7 @@
 BuildRequires:  pkgconfig(Qt5Core)
 BuildRequires:  pkgconfig(Qt5Network)
 BuildRequires:  pkgconfig(Qt5Widgets)
+BuildRequires:  pkgconfig(cryptopp)
 BuildRequires:  pkgconfig(libusb-1.0)
 BuildRequires:  pkgconfig(speex)
 BuildRequires:  pkgconfig(zlib)
@@ -48,6 +50,7 @@
 %prep
 %setup -q -n RockboxUtility-v%{version}
 %patch1 -p1
+%patch2 -p1
 
 %build
 cd rbutil/rbutilqt

++ 0001-imxtools-sbtools-fix-compilation-with-gcc-10.patch ++
>From 141c9c218c31dfd6f4f9e47f25cc2764d2bb4b63 Mon Sep 17 00:00:00 2001
From: Martin Hauke 
Date: Sat, 13 Jun 2020 19:11:15 +0200
Subject: [PATCH] imxtools/sbtools: fix compilation with gcc 10

---
 utils/imxtools/sbtools/misc.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utils/imxtools/sbtools/misc.h b/utils/imxtools/sbtools/misc.h
index f803fbb..5c6b2fc 100644
--- a/utils/imxtools/sbtools/misc.h
+++ b/utils/imxtools/sbtools/misc.h
@@ -40,8 +40,8 @@ extern bool g_debug;
 extern bool g_force;
 
 typedef struct crypto_key_t *key_array_t;
-int g_nr_keys;
-key_array_t g_key_array;
+extern int g_nr_keys;
+extern key_array_t g_key_array;
 
 typedef void (*misc_printf_t)(void *user, const char *fmt, ...);
 
-- 
2.26.2

++ RockboxUtility-v1.4.0-src.tar.bz2 -> RockboxUtility-v1.4.1-src.tar.bz2 
++
 41000 lines of diff (skipped)

++ rbutil-fix-versionstring.patch ++
--- /var/tmp/diff_new_pack.kDynMn/_old  2020-06-15 20:29:44.130213222 +0200
+++ /var/tmp/diff_new_pack.kDynMn/_new  2020-06-15 20:29:44.134213236 +0200
@@ -1,11 +1,11 @@
 diff --git a/rbutil/rbutilqt/version.h b/rbutil/rbutilqt/version.h
-index b8a9661..9386c2b 100644
+index f0877ba..044c7c7 100644
 --- a/rbutil/rbutilqt/version.h
 +++ b/rbutil/rbutilqt/version.h
 @@ -40,5 +40,5 @@
  // PUREVERSION should identify the build uniquely. Use version string for now.
- #define PUREVERSION "v1.4.0"
+ #define PUREVERSION "v1.4.1"
  
--#define FULLVERSION VERSION" ("PUREVERSION"), built "__DATE__" "__TIME__
+-#define FULLVERSION VERSION " (" PUREVERSION "), built " __DATE__ " " __TIME__
 +#define FULLVERSION VERSION
  




commit gdcm for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package gdcm for openSUSE:Factory checked in 
at 2020-06-15 20:29:57

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


Package is "gdcm"

Mon Jun 15 20:29:57 2020 rev:5 rq:814644 version:3.0.6

Changes:

--- /work/SRC/openSUSE:Factory/gdcm/gdcm.changes2020-06-10 
00:48:55.907025919 +0200
+++ /work/SRC/openSUSE:Factory/.gdcm.new.3606/gdcm.changes  2020-06-15 
20:30:23.794350628 +0200
@@ -1,0 +2,7 @@
+Tue Jun  9 15:31:56 UTC 2020 - Axel Braun 
+
+- version 3.0.6
+  * no changelog available
+  * poppler_api.patch removed (included in source)
+
+---
@@ -16 +23 @@
-- poppler_api.patch added to fix API changes in poppler 
+- poppler_api.patch added to fix API changes in poppler in TW

Old:

  gdcm-3.0.5.tar.bz2
  poppler_api.patch

New:

  gdcm-3.0.6.tar.bz2



Other differences:
--
++ gdcm.spec ++
--- /var/tmp/diff_new_pack.BLUebw/_old  2020-06-15 20:30:26.382359594 +0200
+++ /var/tmp/diff_new_pack.BLUebw/_new  2020-06-15 20:30:26.386359607 +0200
@@ -1,8 +1,8 @@
 #
 # spec file for package gdcm
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
-# Copyright (c) 2019 Dr. Axel Braun
+# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2019-2020 Dr. Axel Braun
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %define soname  3_0
 %define libsocksoname  libsocketxx1_2
 Name:   gdcm
-Version:3.0.5
+Version:3.0.6
 Release:0
 Summary:Grassroots DiCoM is a C++ library to parse DICOM medical files
 License:BSD-3-Clause
@@ -29,8 +29,7 @@
 Source0:
http://sourceforge.net/projects/gdcm/files/gdcm%203.x/GDCM%20%{version}/%{name}-%{version}.tar.bz2
 Patch1: gdcm-2.4.0-usecopyright.patch
 Patch2: fix_charls_2.patch
-Patch3: poppler_api.patch
-Patch4: gdcm-2.8.8-dont_use_EOF.patch
+Patch3: gdcm-2.8.8-dont_use_EOF.patch
 BuildRequires:  CharLS-devel >= 2.0
 BuildRequires:  cmake
 BuildRequires:  docbook5-xsl-stylesheets

++ fix_charls_2.patch ++
--- /var/tmp/diff_new_pack.BLUebw/_old  2020-06-15 20:30:26.414359705 +0200
+++ /var/tmp/diff_new_pack.BLUebw/_new  2020-06-15 20:30:26.414359705 +0200
@@ -5,7 +5,7 @@
 diff -ur gdcm/CMakeLists.txt gdcm-2.8.8/CMakeLists.txt
 --- gdcm/CMakeLists.txt2019-01-13 08:57:04.807970487 +0100
 +++ gdcm-2.8.8/CMakeLists.txt  2019-01-13 08:51:36.459974494 +0100
-@@ -358,7 +358,7 @@
+@@ -357,7 +357,7 @@
  
  if(GDCM_USE_SYSTEM_CHARLS)
find_package(CharLS 2.0.0 REQUIRED)

++ gdcm-3.0.5.tar.bz2 -> gdcm-3.0.6.tar.bz2 ++
 2708 lines of diff (skipped)




commit python-ujson for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-ujson for openSUSE:Factory 
checked in at 2020-06-15 20:29:16

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


Package is "python-ujson"

Mon Jun 15 20:29:16 2020 rev:9 rq:814556 version:3.0.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ujson/python-ujson.changes
2020-03-29 14:27:50.378163286 +0200
+++ /work/SRC/openSUSE:Factory/.python-ujson.new.3606/python-ujson.changes  
2020-06-15 20:29:22.750139156 +0200
@@ -1,0 +2,14 @@
+Sun Jun 14 09:36:42 UTC 2020 - Dirk Mueller 
+
+- update to 3.0.0:
+  * Build Windows, macOS and manylinux wheels on CI and deploy to PyPI
+  * Breaking change: New reject_bytes option to raise on bytes,
+   defaults to True to align with json library. Set to False for
+   old behaviour (#266) @elelay
+  * Breaking change: Add an allow_nan keyword argument to dumps,
+  defaults to True to align with json library. Set to False for old
+  behaviour (#327) @segfault
+  Specify setuptools_scm config in pyproject.toml (#399) @BenjaminSchubert
+  * Remove python 2.x support
+
+---

Old:

  ujson-2.0.3.tar.gz

New:

  ujson-3.0.0.tar.gz



Other differences:
--
++ python-ujson.spec ++
--- /var/tmp/diff_new_pack.1GqF5g/_old  2020-06-15 20:29:26.090150727 +0200
+++ /var/tmp/diff_new_pack.1GqF5g/_new  2020-06-15 20:29:26.098150754 +0200
@@ -17,8 +17,9 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%global skip_python2 1
 Name:   python-ujson
-Version:2.0.3
+Version:3.0.0
 Release:0
 Summary:JSON encoder and decoder for Python
 License:BSD-3-Clause

++ ujson-2.0.3.tar.gz -> ujson-3.0.0.tar.gz ++
/work/SRC/openSUSE:Factory/python-ujson/ujson-2.0.3.tar.gz 
/work/SRC/openSUSE:Factory/.python-ujson.new.3606/ujson-3.0.0.tar.gz differ: 
char 5, line 1




commit mpv for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package mpv for openSUSE:Factory checked in 
at 2020-06-15 20:29:27

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


Package is "mpv"

Mon Jun 15 20:29:27 2020 rev:83 rq:814562 
version:0.32.0+git.20200610T171643.c7fe4ae73a

Changes:

--- /work/SRC/openSUSE:Factory/mpv/mpv.changes  2020-06-11 10:05:26.135303086 
+0200
+++ /work/SRC/openSUSE:Factory/.mpv.new.3606/mpv.changes2020-06-15 
20:29:32.514172981 +0200
@@ -1,0 +2,7 @@
+Sun Jun 14 10:40:46 UTC 2020 - idon...@suse.com
+
+- Update to version 0.32.0+git.20200610T171643.c7fe4ae73a:
+  * vo_gpu: move coherent specifier to the correct location
+  * player: make unpausing directly after seek work with --keep-open (again)
+
+---

Old:

  mpv-0.32.0+git.20200609T164905.d5de79d10f.obscpio

New:

  mpv-0.32.0+git.20200610T171643.c7fe4ae73a.obscpio



Other differences:
--
++ mpv.spec ++
--- /var/tmp/diff_new_pack.sGbGZW/_old  2020-06-15 20:29:33.650176916 +0200
+++ /var/tmp/diff_new_pack.sGbGZW/_new  2020-06-15 20:29:33.654176930 +0200
@@ -22,7 +22,7 @@
 %define _waf_ver 2.0.9
 %define lname   libmpv1
 Name:   mpv
-Version:0.32.0+git.20200609T164905.d5de79d10f
+Version:0.32.0+git.20200610T171643.c7fe4ae73a
 Release:0
 Summary:Advanced general-purpose multimedia player
 License:GPL-2.0-or-later

++ _servicedata ++
--- /var/tmp/diff_new_pack.sGbGZW/_old  2020-06-15 20:29:33.702177097 +0200
+++ /var/tmp/diff_new_pack.sGbGZW/_new  2020-06-15 20:29:33.706177110 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/mpv-player/mpv.git
-  d5de79d10f895aaa8f65340adf949d28bc09b2d7
\ No newline at end of file
+  c7fe4ae73ad5f073bbffe3e8a3460b728e7d0f46
\ No newline at end of file

++ mpv-0.32.0+git.20200609T164905.d5de79d10f.obscpio -> 
mpv-0.32.0+git.20200610T171643.c7fe4ae73a.obscpio ++
/work/SRC/openSUSE:Factory/mpv/mpv-0.32.0+git.20200609T164905.d5de79d10f.obscpio
 
/work/SRC/openSUSE:Factory/.mpv.new.3606/mpv-0.32.0+git.20200610T171643.c7fe4ae73a.obscpio
 differ: char 49, line 1

++ mpv.obsinfo ++
--- /var/tmp/diff_new_pack.sGbGZW/_old  2020-06-15 20:29:33.750177263 +0200
+++ /var/tmp/diff_new_pack.sGbGZW/_new  2020-06-15 20:29:33.750177263 +0200
@@ -1,5 +1,5 @@
 name: mpv
-version: 0.32.0+git.20200609T164905.d5de79d10f
-mtime: 1591714145
-commit: d5de79d10f895aaa8f65340adf949d28bc09b2d7
+version: 0.32.0+git.20200610T171643.c7fe4ae73a
+mtime: 1591802203
+commit: c7fe4ae73ad5f073bbffe3e8a3460b728e7d0f46
 





commit python-ifaddr for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-ifaddr for openSUSE:Factory 
checked in at 2020-06-15 20:28:49

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


Package is "python-ifaddr"

Mon Jun 15 20:28:49 2020 rev:5 rq:814551 version:0.1.7

Changes:

--- /work/SRC/openSUSE:Factory/python-ifaddr/python-ifaddr.changes  
2020-04-21 13:10:44.776821738 +0200
+++ /work/SRC/openSUSE:Factory/.python-ifaddr.new.3606/python-ifaddr.changes
2020-06-15 20:29:01.186064453 +0200
@@ -1,0 +2,10 @@
+Sun Jun 14 09:23:55 UTC 2020 - Dirk Mueller 
+
+- update to 0.1.7:
+  * Fixed Python 3 compatibility in the examples, thanks to Tristan Stenner 
and Josef Schlehofer
+   * Exposed network interface indexes in Adapter.index, thanks to Dmitry 
Tantsur
+  * Added the license file to distributions on PyPI, thanks to Tomáš Chvátal
+  * Fixed Illumos/Solaris compatibility based on a patch proposed by Jorge 
Schrauwen
+  * Set up universal wheels, ifaddr will have both source and wheel 
distributions on PyPI from now on
+
+---

Old:

  LICENSE.txt
  ifaddr-0.1.6.tar.gz

New:

  ifaddr-0.1.7.tar.gz



Other differences:
--
++ python-ifaddr.spec ++
--- /var/tmp/diff_new_pack.hCJ8uX/_old  2020-06-15 20:29:02.610069385 +0200
+++ /var/tmp/diff_new_pack.hCJ8uX/_new  2020-06-15 20:29:02.614069400 +0200
@@ -19,14 +19,13 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without python2
 Name:   python-ifaddr
-Version:0.1.6
+Version:0.1.7
 Release:0
 Summary:Module for enumerating IP addresses on system network adapters
 License:MIT
 Group:  Development/Languages/Python
 URL:https://github.com/pydron/ifaddr
 Source: 
https://files.pythonhosted.org/packages/source/i/ifaddr/ifaddr-%{version}.tar.gz
-Source99:   
https://raw.githubusercontent.com/pydron/ifaddr/master/LICENSE.txt
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
@@ -50,7 +49,6 @@
 
 %prep
 %setup -q -n ifaddr-%{version}
-cp %{SOURCE99} .
 sed -i -e "s/install_requires = \['ipaddress'\],//" setup.py
 dos2unix README.rst
 

++ ifaddr-0.1.6.tar.gz -> ifaddr-0.1.7.tar.gz ++
 1668 lines of diff (skipped)




commit python-docker for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-docker for openSUSE:Factory 
checked in at 2020-06-15 20:28:36

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


Package is "python-docker"

Mon Jun 15 20:28:36 2020 rev:18 rq:814541 version:4.2.1

Changes:

--- /work/SRC/openSUSE:Factory/python-docker/python-docker.changes  
2020-02-11 22:24:30.899538305 +0100
+++ /work/SRC/openSUSE:Factory/.python-docker.new.3606/python-docker.changes
2020-06-15 20:28:48.066019001 +0200
@@ -1,0 +2,7 @@
+Mon Jun  8 13:35:57 UTC 2020 - Dirk Mueller 
+
+- update to 4.2.1:
+  - Add option on when to use `tls` on Context constructor
+  - Make context orchestrator field optional
+
+---

Old:

  4.2.0.tar.gz

New:

  4.2.1.tar.gz



Other differences:
--
++ python-docker.spec ++
--- /var/tmp/diff_new_pack.SkleJf/_old  2020-06-15 20:28:50.150026221 +0200
+++ /var/tmp/diff_new_pack.SkleJf/_new  2020-06-15 20:28:50.154026235 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-docker
-Version:4.2.0
+Version:4.2.1
 Release:0
 Summary:Docker API Client
 License:Apache-2.0

++ 4.2.0.tar.gz -> 4.2.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/docker-py-4.2.0/Jenkinsfile 
new/docker-py-4.2.1/Jenkinsfile
--- old/docker-py-4.2.0/Jenkinsfile 2020-02-06 11:43:03.0 +0100
+++ new/docker-py-4.2.1/Jenkinsfile 2020-06-02 16:15:59.0 +0200
@@ -31,7 +31,7 @@
 }
 
 def getDockerVersions = { ->
-  def dockerVersions = ["17.06.2-ce"]
+  def dockerVersions = ["19.03.5"]
   wrappedNode(label: "ubuntu && !zfs && amd64") {
 def result = sh(script: """docker run --rm \\
 --entrypoint=python \\
@@ -46,8 +46,6 @@
 
 def getAPIVersion = { engineVersion ->
   def versionMap = [
-'17.06': '1.30',
-'18.03': '1.37',
 '18.09': '1.39',
 '19.03': '1.40'
   ]
@@ -84,7 +82,7 @@
 try {
   sh """docker network create ${testNetwork}"""
   sh """docker run -d --name  ${dindContainerName} -v /tmp 
--privileged --network ${testNetwork} \\
-dockerswarm/dind:${dockerVersion} dockerd -H tcp://0.0.0.0:2375
+docker:${dockerVersion}-dind dockerd -H tcp://0.0.0.0:2375
   """
   sh """docker run \\
 --name ${testContainerName} \\
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/docker-py-4.2.0/Makefile new/docker-py-4.2.1/Makefile
--- old/docker-py-4.2.0/Makefile2020-02-06 11:43:03.0 +0100
+++ new/docker-py-4.2.1/Makefile2020-06-02 16:15:59.0 +0200
@@ -42,7 +42,7 @@
docker run -t --rm -v /var/run/docker.sock:/var/run/docker.sock 
docker-sdk-python3 py.test -v tests/integration/${file}
 
 TEST_API_VERSION ?= 1.35
-TEST_ENGINE_VERSION ?= 18.09.5
+TEST_ENGINE_VERSION ?= 19.03.5
 
 .PHONY: setup-network
 setup-network:
@@ -55,7 +55,7 @@
 integration-dind-py2: build setup-network
docker rm -vf dpy-dind-py2 || :
docker run -d --network dpy-tests --name dpy-dind-py2 --privileged\
-   dockerswarm/dind:${TEST_ENGINE_VERSION} dockerd -H 
tcp://0.0.0.0:2375 --experimental
+   docker:${TEST_ENGINE_VERSION}-dind dockerd -H 
tcp://0.0.0.0:2375 --experimental
docker run -t --rm --env="DOCKER_HOST=tcp://dpy-dind-py2:2375" 
--env="DOCKER_TEST_API_VERSION=${TEST_API_VERSION}"\
--network dpy-tests docker-sdk-python py.test tests/integration
docker rm -vf dpy-dind-py2
@@ -64,7 +64,7 @@
 integration-dind-py3: build-py3 setup-network
docker rm -vf dpy-dind-py3 || :
docker run -d --network dpy-tests --name dpy-dind-py3 --privileged\
-   dockerswarm/dind:${TEST_ENGINE_VERSION} dockerd -H 
tcp://0.0.0.0:2375 --experimental
+   docker:${TEST_ENGINE_VERSION}-dind dockerd -H 
tcp://0.0.0.0:2375 --experimental
docker run -t --rm --env="DOCKER_HOST=tcp://dpy-dind-py3:2375" 
--env="DOCKER_TEST_API_VERSION=${TEST_API_VERSION}"\
--network dpy-tests docker-sdk-python3 py.test tests/integration
docker rm -vf dpy-dind-py3
@@ -76,7 +76,7 @@
docker run -d --env="DOCKER_HOST=tcp://localhost:2375" 
--env="DOCKER_TLS_VERIFY=1"\
--env="DOCKER_CERT_PATH=/certs" --volumes-from dpy-dind-certs 
--name dpy-dind-ssl\
--network dpy-tests --network-alias docker -v /tmp --privileged\
-   

commit gmic for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package gmic for openSUSE:Factory checked in 
at 2020-06-15 20:29:22

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


Package is "gmic"

Mon Jun 15 20:29:22 2020 rev:10 rq:814571 version:2.9.1

Changes:

--- /work/SRC/openSUSE:Factory/gmic/gmic.changes2020-03-29 
14:28:00.230168323 +0200
+++ /work/SRC/openSUSE:Factory/.gmic.new.3606/gmic.changes  2020-06-15 
20:29:27.186154523 +0200
@@ -1,0 +2,8 @@
+Sun Jun 14 09:25:43 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 2.9.1. No changelog.
+- Add patch to allow building gmic with older CMake versions:
+  * 0001-Don-t-use-CMake-commands-not-available-in-CMake-3.9.patch
+- Move the bash completion file to its own package
+
+---

Old:

  gmic_2.9.0.tar.gz

New:

  0001-Don-t-use-CMake-commands-not-available-in-CMake-3.9.patch
  gmic_2.9.1.tar.gz



Other differences:
--
++ gmic.spec ++
--- /var/tmp/diff_new_pack.qNSfsC/_old  2020-06-15 20:29:29.182161438 +0200
+++ /var/tmp/diff_new_pack.qNSfsC/_new  2020-06-15 20:29:29.182161438 +0200
@@ -38,7 +38,7 @@
 %bcond_with opencv
 %endif
 Name:   gmic
-Version:2.9.0
+Version:2.9.1
 Release:0
 Summary:GREYC's Magick for Image Computing (denoise and others)
 # gmic-qt is GPL-3.0-or-later, zart is CECILL-2.0, libgmic and cli program are
@@ -49,7 +49,9 @@
 # Git URL:  https://framagit.org/dtschump/gmic
 Source0:https://gmic.eu/files/source/gmic_%{version}.tar.gz
 Source1:gmic_qt.png
-BuildRequires:  cmake > 3.8
+# PATCH-FIX-UPSTREAM
+Patch:  0001-Don-t-use-CMake-commands-not-available-in-CMake-3.9.patch
+BuildRequires:  cmake >= 3.9.4
 BuildRequires:  fftw3-threads-devel
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
@@ -72,12 +74,12 @@
 BuildRequires:  pkgconfig(libtiff-4)
 BuildRequires:  pkgconfig(zlib)
 %if %{with opencv}
-# in openSUSE >= 15.2, opencv-devel is opencv4 and pkgconfig(opencv) is opencv3
-# ...and opencv3-devel doesn't exist in leap 15.0 and 15.1
-%if 0%{?suse_version} <= 1500 && 0%{?sle_version} < 150200
-BuildRequires:  opencv-devel
-%else
+# gmic first looks for opencv 4 first and falls back to opencv 3 if not found.
+# opencv in not available in leap <= 15.2
+%if 0%{?suse_version} <= 1500
 BuildRequires:  pkgconfig(opencv)
+%else
+BuildRequires:  pkgconfig(opencv4)
 %endif
 %endif
 
@@ -150,16 +152,21 @@
 manipulations on a video stream acquired from a webcam. In other words, ZArt is
 a GUI for G'MIC real-time manipulations on the output of a webcam.
 
+%package bash-completion
+Summary:Bash completion for gmic
+Requires:   bash-completion
+Supplements:(%{name} and bash-completion)
+
+%description bash-completion
+This package contain de bash completion command for gmic.
+
 %prep
-%setup -q
+%autosetup -p1
+
 # Generated file that should not be there
 rm -f zart/.qmake.stash
 
 %build
-
-# Leap 15.0 doesn't know %%cmake_build
-%{?!cmake_build:%define cmake_build() make %{?_smp_mflags} VERBOSE=1}
-
 # Build gmic
 %cmake \
 -DENABLE_DYNAMIC_LINKING=ON \
@@ -230,9 +237,6 @@
 
 %suse_update_desktop_file -c gmic_qt "G'Mic Qt" "G'MIC Qt GUI" "gmic_qt %%F" 
gmic_qt "Qt;Graphics;Photography;"
 
-install -d -m 0755 %{buildroot}%{_datadir}/bash-completion/completions
-install -m 0644 build/resources/gmic_bashcompletion.sh 
%{buildroot}%{_datadir}/bash-completion/completions
-
 # Film color lookup tables
 install -d -m 0755 %{buildroot}%{_gimpplugindir}
 install -m 0644 resources/gmic_cluts.gmz 
%{buildroot}%{_gimpplugindir}/gmic_cluts.gmz
@@ -272,9 +276,6 @@
 %{_bindir}/gmic_qt
 %{_mandir}/man1/gmic.1%{?ext_man}
 %{_datadir}/applications/gmic_qt.desktop
-%dir %{_datadir}/bash-completion
-%dir %{_datadir}/bash-completion/completions
-%{_datadir}/bash-completion/completions/gmic_bashcompletion.sh
 %{_datadir}/pixmaps/gmic_qt.png
 
 %if %{with opencv}
@@ -308,4 +309,8 @@
 %{_libdir}/libgmic.so
 %{_libdir}/cmake/gmic/
 
+%files bash-completion
+%dir %{_datadir}/bash-completion/completions
+%{_datadir}/bash-completion/completions/gmic
+
 %changelog

++ 0001-Don-t-use-CMake-commands-not-available-in-CMake-3.9.patch ++
>From a913fd2cd5512723be26704d01d9a7e7039f3491 Mon Sep 17 00:00:00 2001
From: Christophe Giboudeaux 
Date: Sun, 14 Jun 2020 14:57:05 +0200
Subject: [PATCH] Don't use CMake commands not available in CMake 3.9

---
 cmake/FindCImg.cmake | 24 +++-
 1 file changed, 15 insertions(+), 9 deletions(-)

diff --git a/cmake/FindCImg.cmake b/cmake/FindCImg.cmake
index fbc3f9c..47d1771 100644
--- a/cmake/FindCImg.cmake
+++ b/cmake/FindCImg.cmake

commit python-pysaml2 for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-pysaml2 for openSUSE:Factory 
checked in at 2020-06-15 20:28:41

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


Package is "python-pysaml2"

Mon Jun 15 20:28:41 2020 rev:16 rq:814543 version:5.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-pysaml2/python-pysaml2.changes
2020-05-06 11:04:07.391244127 +0200
+++ /work/SRC/openSUSE:Factory/.python-pysaml2.new.3606/python-pysaml2.changes  
2020-06-15 20:28:54.454041131 +0200
@@ -1,0 +2,18 @@
+Sun Jun 14 08:57:41 UTC 2020 - Dirk Mueller 
+
+- update to 5.1.0:
+  - support eIDAS RequestedAttributes per AuthnRequest
+  - fix xmlsec1 --id-attr configuration option value
+  - do not remove existing disco URL query params
+  - load attribute maps in predictable order
+  - better error message when AudienceRestriction does not validate
+  - always use base64.encodebytes instead of base64.encodestring
+  - update the eIDAS attribute mapping for legal person
+  - fix py_compile warnings
+  - fix pylint errors and warnings
+  - various small fixes
+  - add Python3.8 as supported
+  - tests: fix validity dates
+  - docs: document default value for 'want_response_signed'
+
+---

Old:

  v5.0.0.tar.gz

New:

  v5.1.0.tar.gz



Other differences:
--
++ python-pysaml2.spec ++
--- /var/tmp/diff_new_pack.dwbZpp/_old  2020-06-15 20:28:56.610048600 +0200
+++ /var/tmp/diff_new_pack.dwbZpp/_new  2020-06-15 20:28:56.610048600 +0200
@@ -20,7 +20,7 @@
 %global modname pysaml2
 %global skip_python2 1
 Name:   python-pysaml2
-Version:5.0.0
+Version:5.1.0
 Release:0
 Summary:Python implementation of SAML Version 2 to be used in a WSGI 
environment
 License:Apache-2.0

++ v5.0.0.tar.gz -> v5.1.0.tar.gz ++
 1979 lines of diff (skipped)




commit kapidox for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package kapidox for openSUSE:Factory checked 
in at 2020-06-15 20:28:25

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


Package is "kapidox"

Mon Jun 15 20:28:25 2020 rev:78 rq:814335 version:5.71.0

Changes:

--- /work/SRC/openSUSE:Factory/kapidox/kapidox.changes  2020-05-11 
16:30:39.310437006 +0200
+++ /work/SRC/openSUSE:Factory/.kapidox.new.3606/kapidox.changes
2020-06-15 20:28:32.537965208 +0200
@@ -1,0 +2,17 @@
+Sun Jun  7 08:06:18 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.71.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.71.0
+- Changes since 5.70.0:
+  * Use logo.png file as logo as default, if present
+  * Change public_example_dir to public_example_dirs, to enable multiple dirs
+  * Drop code for Python2 support
+  * Adapt links to repo to invent.kde.org
+  * Fix link to kde.org impressum
+  * History pages of KDE4 got merged into general history page
+  * Unbreak generation with dep diagrams with Python 3 (break Py2)
+  * Export metalist to json file
+
+---

Old:

  kapidox-5.70.0.tar.xz
  kapidox-5.70.0.tar.xz.sig

New:

  kapidox-5.71.0.tar.xz
  kapidox-5.71.0.tar.xz.sig



Other differences:
--
++ kapidox.spec ++
--- /var/tmp/diff_new_pack.OkvQHb/_old  2020-06-15 20:28:33.517968603 +0200
+++ /var/tmp/diff_new_pack.OkvQHb/_new  2020-06-15 20:28:33.521968617 +0200
@@ -18,13 +18,13 @@
 
 # Only needed for the package signature condition
 %bcond_without lang
-%define _tar_path 5.70
+%define _tar_path 5.71
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   kapidox
-Version:5.70.0
+Version:5.71.0
 Release:0
 Summary:Scripts and data for building API documentation
 License:BSD-2-Clause


++ kapidox-5.70.0.tar.xz -> kapidox-5.71.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.70.0/.arcconfig 
new/kapidox-5.71.0/.arcconfig
--- old/kapidox-5.70.0/.arcconfig   2020-05-01 17:03:46.0 +0200
+++ new/kapidox-5.71.0/.arcconfig   1970-01-01 01:00:00.0 +0100
@@ -1,4 +0,0 @@
-{
-"project.name" : "KApidox",
-"phabricator.uri" : "https://phabricator.kde.org/;
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.70.0/README.md new/kapidox-5.71.0/README.md
--- old/kapidox-5.70.0/README.md2020-05-01 17:03:46.0 +0200
+++ new/kapidox-5.71.0/README.md2020-06-01 17:27:12.0 +0200
@@ -15,8 +15,8 @@
 ## Dependencies
 
 ### Required
-Python 2 or 3 is required to run the scripts.  Whichever version of python you
-use needs to have the jinja2 and yaml (or pyyaml) modules.
+Python 3 is required to run the scripts. Additionally you
+need to have the jinja2 and yaml (or pyyaml) modules.
 
 The following command should install them for the current user:
 
@@ -49,7 +49,7 @@
 
 Writing dox is beyond the scope of this documentation -- see the notes at
  and the 
[doxygen
-manual](http://doxygen.nl/manual/docblocks.html).
+manual](https://doxygen.nl/manual/docblocks.html).
 
 To allow code to handle the case of being processed by kapidox a C/C++ 
preprocessor macro
 is set as defined when run: `K_DOXYGEN` (since v5.67.0).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.70.0/docs/metainfo_syntax.md 
new/kapidox-5.71.0/docs/metainfo_syntax.md
--- old/kapidox-5.70.0/docs/metainfo_syntax.md  2020-05-01 17:03:46.0 
+0200
+++ new/kapidox-5.71.0/docs/metainfo_syntax.md  2020-06-01 17:27:12.0 
+0200
@@ -17,7 +17,7 @@
 group: frameworks # optional
 subgroup: tier 1 # optional, a group must be defined
 type: functional  # optional
-logo: relative/path/to/logo.png # Used only if not part of a group
+logo: relative/path/to/logo.png # Used only if not part of a group, defaults 
to logo.png if present
 platforms:  # optional, name accepted: all, Linux, Windows, MacOSX
 - name: Linux
   note: Functional only with running BlueZ 5 # optional
@@ -26,7 +26,7 @@
   - src1
   - src2
 public_doc_dir: docs  # optional, default to docs
-public_example_dir: examples  # optional, default to examples
+public_example_dirs: examples  # optional, default to examples, 

commit python-GitPython for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-GitPython for 
openSUSE:Factory checked in at 2020-06-15 20:28:30

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


Package is "python-GitPython"

Mon Jun 15 20:28:30 2020 rev:21 rq:814539 version:3.1.3.1590895281.24cd6da

Changes:

--- /work/SRC/openSUSE:Factory/python-GitPython/python-GitPython.changes
2020-06-10 00:53:13.679697890 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-GitPython.new.3606/python-GitPython.changes  
2020-06-15 20:28:41.277995486 +0200
@@ -1,0 +2,9 @@
+Sun Jun 14 08:43:10 UTC 2020 - dmuel...@suse.com
+
+- Update to version 3.1.3.1590895281.24cd6da:
+  * Bump patch level
+  * BF: tollerate errors while parsing fetch lines
+  * Fix flake8 errors
+  * Improve unfortunate wording
+
+---

Old:

  GitPython-3.1.2.1588659169.f14903a.tar.xz

New:

  GitPython-3.1.3.1590895281.24cd6da.tar.xz



Other differences:
--
++ python-GitPython.spec ++
--- /var/tmp/diff_new_pack.9106Ce/_old  2020-06-15 20:28:42.493999699 +0200
+++ /var/tmp/diff_new_pack.9106Ce/_new  2020-06-15 20:28:42.497999712 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-GitPython
-Version:3.1.2.1588659169.f14903a
+Version:3.1.3.1590895281.24cd6da
 Release:0
 Summary:Python Git Library
 License:BSD-3-Clause

++ GitPython-3.1.2.1588659169.f14903a.tar.xz -> 
GitPython-3.1.3.1590895281.24cd6da.tar.xz ++
/work/SRC/openSUSE:Factory/python-GitPython/GitPython-3.1.2.1588659169.f14903a.tar.xz
 
/work/SRC/openSUSE:Factory/.python-GitPython.new.3606/GitPython-3.1.3.1590895281.24cd6da.tar.xz
 differ: char 27, line 1

++ _service ++
--- /var/tmp/diff_new_pack.9106Ce/_old  2020-06-15 20:28:42.56134 +0200
+++ /var/tmp/diff_new_pack.9106Ce/_new  2020-06-15 20:28:42.56548 +0200
@@ -1,12 +1,12 @@
 
   
-3.1.2
+3.1.3
 git://github.com/gitpython-developers/GitPython
 git
 yes
 enable
 enable
-refs/tags/3.1.2
+refs/tags/3.1.3
   
   
 xz

++ _servicedata ++
--- /var/tmp/diff_new_pack.9106Ce/_old  2020-06-15 20:28:42.59031 +0200
+++ /var/tmp/diff_new_pack.9106Ce/_new  2020-06-15 20:28:42.59031 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/gitpython-developers/GitPython
-  f14903a0d4bb3737c88386a5ad8a87479ddd8448
\ No newline at end of file
+  24cd6dafc0008f155271f9462ae6ba6f0c0127a4
\ No newline at end of file




commit python-smmap for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-smmap for openSUSE:Factory 
checked in at 2020-06-15 20:29:03

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


Package is "python-smmap"

Mon Jun 15 20:29:03 2020 rev:13 rq:814554 version:3.0.4

Changes:

--- /work/SRC/openSUSE:Factory/python-smmap/python-smmap.changes
2020-04-16 23:02:12.099625314 +0200
+++ /work/SRC/openSUSE:Factory/.python-smmap.new.3606/python-smmap.changes  
2020-06-15 20:29:09.942094785 +0200
@@ -1,0 +2,6 @@
+Sun Jun 14 09:32:19 UTC 2020 - Dirk Mueller 
+
+- update to 3.0.4
+  * minor changes
+
+---

Old:

  smmap-3.0.2.tar.gz

New:

  smmap-3.0.4.tar.gz



Other differences:
--
++ python-smmap.spec ++
--- /var/tmp/diff_new_pack.aDVKSd/_old  2020-06-15 20:29:14.038108975 +0200
+++ /var/tmp/diff_new_pack.aDVKSd/_new  2020-06-15 20:29:14.042108989 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-smmap
-Version:3.0.2
+Version:3.0.4
 Release:0
 Summary:A pure git implementation of a sliding window memory map 
manager
 License:BSD-2-Clause

++ smmap-3.0.2.tar.gz -> smmap-3.0.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/smmap-3.0.2/PKG-INFO new/smmap-3.0.4/PKG-INFO
--- old/smmap-3.0.2/PKG-INFO2020-04-11 08:25:55.0 +0200
+++ new/smmap-3.0.4/PKG-INFO2020-05-05 05:39:26.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: smmap
-Version: 3.0.2
+Version: 3.0.4
 Summary: A pure Python implementation of a sliding window memory map manager
 Home-page: https://github.com/gitpython-developers/smmap
 Author: Sebastian Thiel
@@ -22,8 +22,6 @@
 ## Overview
 
 ![Python 
package](https://github.com/gitpython-developers/smmap/workflows/Python%20package/badge.svg)
-[![Issue 
Stats](http://www.issuestats.com/github/gitpython-developers/smmap/badge/pr)](http://www.issuestats.com/github/gitpython-developers/smmap)
-[![Issue 
Stats](http://www.issuestats.com/github/gitpython-developers/smmap/badge/issue)](http://www.issuestats.com/github/gitpython-developers/smmap)
 
 Smmap wraps an interface around mmap and tracks the mapped files as 
well as the amount of clients who use it. If the system runs out of resources, 
or if a memory limit is reached, it will automatically unload unused maps to 
allow continued operation.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/smmap-3.0.2/README.md new/smmap-3.0.4/README.md
--- old/smmap-3.0.2/README.md   2020-04-11 08:23:19.0 +0200
+++ new/smmap-3.0.4/README.md   2020-04-11 08:46:23.0 +0200
@@ -14,8 +14,6 @@
 ## Overview
 
 ![Python 
package](https://github.com/gitpython-developers/smmap/workflows/Python%20package/badge.svg)
-[![Issue 
Stats](http://www.issuestats.com/github/gitpython-developers/smmap/badge/pr)](http://www.issuestats.com/github/gitpython-developers/smmap)
-[![Issue 
Stats](http://www.issuestats.com/github/gitpython-developers/smmap/badge/issue)](http://www.issuestats.com/github/gitpython-developers/smmap)
 
 Smmap wraps an interface around mmap and tracks the mapped files as well as 
the amount of clients who use it. If the system runs out of resources, or if a 
memory limit is reached, it will automatically unload unused maps to allow 
continued operation.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/smmap-3.0.2/smmap/__init__.py 
new/smmap-3.0.4/smmap/__init__.py
--- old/smmap-3.0.2/smmap/__init__.py   2020-04-11 08:24:14.0 +0200
+++ new/smmap-3.0.4/smmap/__init__.py   2020-05-05 05:35:13.0 +0200
@@ -3,7 +3,7 @@
 __author__ = "Sebastian Thiel"
 __contact__ = "byron...@gmail.com"
 __homepage__ = "https://github.com/gitpython-developers/smmap;
-version_info = (3, 0, 2)
+version_info = (3, 0, 4)
 __version__ = '.'.join(str(i) for i in version_info)
 
 # make everything available in root package for convenience
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/smmap-3.0.2/smmap.egg-info/PKG-INFO 
new/smmap-3.0.4/smmap.egg-info/PKG-INFO
--- old/smmap-3.0.2/smmap.egg-info/PKG-INFO 2020-04-11 08:25:55.0 
+0200
+++ new/smmap-3.0.4/smmap.egg-info/PKG-INFO 2020-05-05 05:39:26.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: smmap
-Version: 3.0.2
+Version: 3.0.4
 Summary: A pure Python implementation of a sliding window memory 

commit python-pymemcache for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-pymemcache for 
openSUSE:Factory checked in at 2020-06-15 20:28:57

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


Package is "python-pymemcache"

Mon Jun 15 20:28:57 2020 rev:9 rq:814553 version:3.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-pymemcache/python-pymemcache.changes  
2020-05-12 22:33:13.511981204 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-pymemcache.new.3606/python-pymemcache.changes
2020-06-15 20:29:04.926077409 +0200
@@ -1,0 +2,6 @@
+Sun Jun 14 09:30:56 UTC 2020 - Dirk Mueller 
+
+- update to 3.2.0:
+  * ``PooledClient`` and ``HashClient`` now support custom ``Client`` classes
+
+---

Old:

  pymemcache-3.1.0.tar.gz

New:

  pymemcache-3.2.0.tar.gz



Other differences:
--
++ python-pymemcache.spec ++
--- /var/tmp/diff_new_pack.mWFxEA/_old  2020-06-15 20:29:06.050081303 +0200
+++ /var/tmp/diff_new_pack.mWFxEA/_new  2020-06-15 20:29:06.054081316 +0200
@@ -20,7 +20,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without python2
 Name:   python-pymemcache
-Version:3.1.0
+Version:3.2.0
 Release:0
 Summary:A pure Python memcached client
 License:Apache-2.0

++ pymemcache-3.1.0.tar.gz -> pymemcache-3.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pymemcache-3.1.0/ChangeLog.rst 
new/pymemcache-3.2.0/ChangeLog.rst
--- old/pymemcache-3.1.0/ChangeLog.rst  2020-04-09 18:11:32.0 +0200
+++ new/pymemcache-3.2.0/ChangeLog.rst  2020-05-20 00:51:04.0 +0200
@@ -1,6 +1,14 @@
 Changelog
 =
 
+New in version 3.2.0
+
+* ``PooledClient`` and ``HashClient`` now support custom ``Client`` classes
+
+New in version 3.1.1
+
+* Improve ``MockMemcacheClient`` to behave even more like ``Client``
+
 New in version 3.1.0
 
 * Add TLS support for TCP sockets.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pymemcache-3.1.0/PKG-INFO 
new/pymemcache-3.2.0/PKG-INFO
--- old/pymemcache-3.1.0/PKG-INFO   2020-04-09 18:13:42.0 +0200
+++ new/pymemcache-3.2.0/PKG-INFO   2020-05-20 00:52:16.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: pymemcache
-Version: 3.1.0
+Version: 3.2.0
 Summary: "A comprehensive, fast, pure Python memcached client"
 Home-page: https://github.com/pinterest/pymemcache
 Author: Jon Parise
@@ -143,6 +143,14 @@
 Changelog
 =
 
+New in version 3.2.0
+
+* ``PooledClient`` and ``HashClient`` now support custom ``Client`` 
classes
+
+New in version 3.1.1
+
+* Improve ``MockMemcacheClient`` to behave even more like ``Client``
+
 New in version 3.1.0
 
 * Add TLS support for TCP sockets.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pymemcache-3.1.0/pymemcache/__init__.py 
new/pymemcache-3.2.0/pymemcache/__init__.py
--- old/pymemcache-3.1.0/pymemcache/__init__.py 2020-04-09 18:11:32.0 
+0200
+++ new/pymemcache-3.2.0/pymemcache/__init__.py 2020-05-20 00:51:04.0 
+0200
@@ -1,4 +1,4 @@
-__version__ = '3.1.0'
+__version__ = '3.2.0'
 
 from pymemcache.client.base import Client  # noqa
 from pymemcache.client.base import PooledClient  # noqa
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pymemcache-3.1.0/pymemcache/client/base.py 
new/pymemcache-3.2.0/pymemcache/client/base.py
--- old/pymemcache-3.1.0/pymemcache/client/base.py  2020-04-07 
17:40:36.0 +0200
+++ new/pymemcache-3.2.0/pymemcache/client/base.py  2020-04-29 
01:54:59.0 +0200
@@ -1009,6 +1009,9 @@
 in the pool. Your serde object must therefore be thread-safe.
 """
 
+#: :class:`Client` class used to create new clients
+client_class = Client
+
 def __init__(self,
  server,
  serde=None,
@@ -1054,20 +1057,20 @@
 key_prefix=self.key_prefix)
 
 def _create_client(self):
-client = Client(self.server,
-serde=self.serde,
-connect_timeout=self.connect_timeout,
-timeout=self.timeout,
-no_delay=self.no_delay,
-# We need to know when it fails *always* so that we

commit python-junos-eznc for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package python-junos-eznc for 
openSUSE:Factory checked in at 2020-06-15 20:28:05

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


Package is "python-junos-eznc"

Mon Jun 15 20:28:05 2020 rev:3 rq:811738 version:2.4.1

Changes:

--- /work/SRC/openSUSE:Factory/python-junos-eznc/python-junos-eznc.changes  
2019-12-10 22:47:11.409703008 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-junos-eznc.new.3606/python-junos-eznc.changes
2020-06-15 20:28:10.125887567 +0200
@@ -1,0 +2,83 @@
+Thu Jun  4 11:04:08 UTC 2020 - pgaj...@suse.com
+
+- version update to 2.4.1
+  ## [1.4.0]
+   ### Fixed
+- [#617] - IOS show ip ospf database router: Removed reliance on static 
spacing
+- [#620] - NXOS show fex: Allow spaces in descriptions
+- [#621] - Juniper show arp, etc.: Account for virtual chassis output 
(`{master:0}`)
+- [#626] - ASA show vpn-sessiondb anyconnect: Require index, capture 
different format style
+- [#650] - IOS show ip ospf database network: Change to allow one or more 
whitespace at the beginning of the line rather than 1 or more due to different 
output
+- [#647] - ASA show route: Allow multiline route statements
+- [#659] - IOS show mac address-table: Allow VLAN to be non-whitespace to 
allow N/A as an option
+   ### Added
+- [#618] - IOS show ip ospf database network: New template
+- [#619] - HP Comware display lldp neighbor information verbose: New 
template
+- [#625] - ASA show vpn-sessiondb anyconnect: New template
+- [#628] - Cisco WLC show mobility sum: New template
+- [#631] - ASA show vpn-sessiondb anyconnect: Account for new data for 
assigned/public IP, group policy, and tunnel group
+- [#629] - ASA show crypto ipsec sa - Add LOCAL_ADDRESS_NAME, 
CURRENT_PEER_NAME, DYNAMIC_PEER_NAME, LOCAL_CRYPTO_ENDPOINT_NAME, 
REMOTE_CRYPTO_ENDPOINT_NAME
+- [#632] - ASA show nat: Added SERVICE_PROTOCOL
+- [#635] - IOS show ip route summary: New template
+- [#636] - ASA show vpn-sessiondb: New template
+- [#638] - ASA show inventory: Capture PID and VID withoout serial
+- [#637] - Cisco WLC show band select: New template
+  ## [1.4.0]
+   ### Fixed
+- [#548] IOS show mac address-table: Account for Total Mac Addresses
+- [#565] IOS show license: Avoid trailing spaces for features
+- [#575] NXOS show version: Match N5K PLATFORM & LAST_REBOOT captures 
split words
+- [#574] ASA show failover: Account for new output (IPS)
+- [#577] IOS show mac address-table: Account for Multicast Entries
+- [#582] NXOS show interface transceiver: Remove requirement for TYPE
+- [#585] IOS show mac address-table: Fixed ordering for TYPE2
+- [#587] IOS show interfaces switchport: Account for Vepa Enabled and 
Operational Dot1q Ethertype
+- [#584] IOS show switch detail: Account for Mac persistency wait time
+- [#589] EOS show ip route: Filldown for DISTANCE and METRIC - Added new 
data formats for VRF and NEXT_HOP and INTERFACE
+- [#592] Fortinet get router info bgp summary: Account for more data, fix 
UP_DOWN regex from word to non-whitespace
+- [#603] IOS show ip access-list: Update PROTOCOL to capture numbered 
protocols
+- [610] Aruba os show arp: Fix tests to have the full output from the 
command and device
+- [#608] Vyatta VyOS show interfaces: Capture IP_ADDRESS with or without 
netmask
+- [#614] IOS show interfaces status: Remove reliance on whitespaces
+   ### Added
+- [#406] Testing: Add yamllint to test suite
+- [#407] Testing: Add python black to test suite
+- [#553] IOS show lldp neighbors: Added CAPABILITIES capture group
+- [#554] IOS show logging: New template
+- [#563] IOS show interfaces switchport: Added ADMIN_MDOE capture group
+- [#562] ASA show logging: New template
+- [#564] NXOS show interface transceiver: New template
+- [#567] XR show arp: New template
+- [#572] IOS show lldp neighbors detail: Added SERIAL capture group
+- [#573] ASA show arp: New template
+- [#578] Fortinet get system interface: New template
+- [#576] Huawei VRP display lldp neighbor: New template
+- [#581] Cisco WLC show vlan sum: New template
+- [#580] XR show interfaces summary: New template
+- [#590] IOS show ip bgp neighbors: New template
+- [#591] NXOS show vdc: New template
+- [#595] Checkpoint GAIA show arp dynamic all: New template
+- [#593] IOS show module: New template
+- [#597] Huwai VRP display version: New template
+- [#602] NXOS show vrf interface: New template
+- [#598] IOS show running-config partition access list: Added TCP_FLAG 
capture group
+- [#598] IOS show running-config partition access list: Convert 

commit opa-ff for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package opa-ff for openSUSE:Factory checked 
in at 2020-06-15 20:28:17

Comparing /work/SRC/openSUSE:Factory/opa-ff (Old)
 and  /work/SRC/openSUSE:Factory/.opa-ff.new.3606 (New)


Package is "opa-ff"

Mon Jun 15 20:28:17 2020 rev:15 rq:813053 version:10.10.1

Changes:

--- /work/SRC/openSUSE:Factory/opa-ff/opa-ff.changes2019-10-18 
14:31:21.180564484 +0200
+++ /work/SRC/openSUSE:Factory/.opa-ff.new.3606/opa-ff.changes  2020-06-15 
20:28:25.733941637 +0200
@@ -1,0 +2,7 @@
+Tue Jun  9 19:33:56 UTC 2020 - Nicolas Morey-Chaisemartin 

+
+- Update to v10.10.1.0.35
+  - No changelog available
+- Add workaround-bsc-1172755.patch to fix compilation with LTO enabled.
+
+---

Old:

  opa-ff-10.9.3.1.1.0.73b52d17053f.tar.gz

New:

  opa-ff-10.10.1.0.35.0.bd8b24a56fcb.tar.gz
  workaround-bsc-1172755.patch



Other differences:
--
++ opa-ff.spec ++
--- /var/tmp/diff_new_pack.JEz8Zl/_old  2020-06-15 20:28:27.113946418 +0200
+++ /var/tmp/diff_new_pack.JEz8Zl/_new  2020-06-15 20:28:27.113946418 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package opa-ff
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,7 @@
 #
 
 
-%define git_ver .1.1.0.73b52d17053f
+%define git_ver .0.35.0.bd8b24a56fcb
 %define opamgt_major 0
 %define opasadb_major 1_0_0
 
@@ -24,16 +24,17 @@
 %define opasysconfdir %{_sysconfdir}/opa/
 
 Name:   opa-ff
-Version:10.9.3
+Version:10.10.1
 Release:0
 Summary:Intel Omni-Path basic tools and libraries for fabric managment
 License:BSD-3-Clause OR GPL-2.0-only
 Group:  Productivity/Networking/System
-Url:https://github.com/intel/opa-ff
+URL:https://github.com/intel/opa-ff
 Source0:%{name}-%{version}%{git_ver}.tar.gz
 Source1:opa-ff.rpmlintrc
 Patch1: opa-ff-add-shebang-for-exp-files.patch
 Patch2: opa-ff-suse-build-fixes.patch
+Patch3: workaround-bsc-1172755.patch
 BuildRequires:  gcc-c++
 BuildRequires:  infiniband-diags-devel
 BuildRequires:  libexpat-devel
@@ -127,6 +128,7 @@
 %setup -q -n  %{name}-%{version}%{git_ver}
 %patch1
 %patch2
+%patch3
 
 %build
 export RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-address-of-packed-member"
@@ -178,7 +180,7 @@
 
 cd ../bin
 cp -t %{buildroot}/%{pseudo_opt}/tools/ ${ff_tools_opt}
-cp -t %{buildroot}/%{pseudo_opt}/tools/ ${opasnapconfig_bin}
+#cp -t %{buildroot}/%{pseudo_opt}/tools/ ${opasnapconfig_bin}
 
 cd ../fastfabric
 cp -t %{buildroot}%{_sbindir} ${ff_tools_sbin}

++ _service ++
--- /var/tmp/diff_new_pack.JEz8Zl/_old  2020-06-15 20:28:27.161946585 +0200
+++ /var/tmp/diff_new_pack.JEz8Zl/_new  2020-06-15 20:28:27.161946585 +0200
@@ -8,7 +8,7 @@
 @PARENT_TAG@.@TAG_OFFSET@.%h
 v(.*)
 \1
-73b52d17053f77cd00ed30cd28c39f0b683795be
+bd8b24a56fcb09dcf85443a487b832aad42654c2
   
   
 opa-ff*.tar

++ opa-ff-10.9.3.1.1.0.73b52d17053f.tar.gz -> 
opa-ff-10.10.1.0.35.0.bd8b24a56fcb.tar.gz ++
 52821 lines of diff (skipped)

++ workaround-bsc-1172755.patch ++
commit c477cf2496c1ec83a63a28629a4fdf0c2a10d458
Author: Nicolas Morey-Chaisemartin 
Date:   Tue Jun 9 22:57:52 2020 +0200

workaround bsc 1172755

GCC bug causes compilation to fail with LTO enabled.
Workaround the issue by changing mcmodel

Signed-off-by: Nicolas Morey-Chaisemartin 

diff --git IbaTools/stream/Makefile IbaTools/stream/Makefile
index 7ed670d19fee..6eb0a334c8a9 100644
--- IbaTools/stream/Makefile
+++ IbaTools/stream/Makefile
@@ -110,7 +110,7 @@ INCLUDE_SUBDIR  =
 #  (in addition to LOCALDEPLIBS)
 #LOCAL_LIB_DIRS= User library directories for libpaths [Empty]
 
-CLOCAL = $(CPIE) -mcmodel=medium -DSTREAM_ARRAY_SIZE=353783808 -fopenmp
+CLOCAL = $(CPIE) -mcmodel=large -DSTREAM_ARRAY_SIZE=353783808 -fopenmp
 LDLOCAL = -fopenmp
 
 # Include Make Rules definitions and rules



commit votca-tools for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package votca-tools for openSUSE:Factory 
checked in at 2020-06-15 20:27:28

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


Package is "votca-tools"

Mon Jun 15 20:27:28 2020 rev:14 rq:814733 version:1.6

Changes:

--- /work/SRC/openSUSE:Factory/votca-tools/votca-tools.changes  2019-11-30 
10:37:54.600168379 +0100
+++ /work/SRC/openSUSE:Factory/.votca-tools.new.3606/votca-tools.changes
2020-06-15 20:27:38.929779496 +0200
@@ -1,0 +2,39 @@
+Mon Jun 15 08:03:03 UTC 2020 - Dominique Leuenberger 
+
+- Move the miscellaneous manpages from the library package to the
+  main package. SLPP disallows non-versioned files in the
+  shared-library package as it makes them non-parallel installable
+  to newer versions. Additionally, the man page does not provide
+  information of pure library users.
+- Have the main package conflict with the old library package
+  (libvotca_tools5) that contained the man page.
+
+---
+Sat Apr 18 04:33:29 UTC 2020 - Christoph Junghans 
+
+- Update to 1.6
+  * fix clang-10 warnings ([gh#votca/tools#217])
+  * clean up VOTCARC.* ([gh#votca/tools#220])
+  * fix exported target with mkl ([gh#votca/tools#223],
+  * [gh#votca/tools#224])
+  
+---
+Mon Feb 10 16:29:24 UTC 2020 - Christoph Junghans 
+
+- Update to 1.6_rc2
+  * fix inheritance bug in cmake files ([gh#votca/tools#197])
+  * fix bug in table class ([gh#votca/tools#196])
+  * fix build on 32-bit archs ([gh#votca/tools#199])
+  * remove old doxygen target ([gh#votca/tools#211])
+
+---
+Thu Dec  5 11:02:55 UTC 2019 - Christoph Junghans 
+
+- Update to 1.6_rc1
+  * replaced fftw with Eigen3 fft
+  * replaced random with std::random implementation
+  * added many unit tests
+  * formated code with clang-format
+  * major cmake refactor
+
+---

Old:

  votca-tools-1.5.1.tar.gz

New:

  votca-tools-1.6.tar.gz



Other differences:
--
++ votca-tools.spec ++
--- /var/tmp/diff_new_pack.pbrNEB/_old  2020-06-15 20:27:40.205783916 +0200
+++ /var/tmp/diff_new_pack.pbrNEB/_new  2020-06-15 20:27:40.209783930 +0200
@@ -1,8 +1,8 @@
 #
 # spec file for package votca-tools
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
-# Copyright (c) 2013-2019 Christoph Junghans
+# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2013-2020 Christoph Junghans
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,42 +13,34 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
-#
-#
-# Originally written by Jussi Lehtola 
-# Fixed for multi-distro build by Klaus Kaempf 
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 Name:   votca-tools
-Version:1.5.1
-%define uversion %{version}
-%define sover 5
+Version:1.6
 Release:0
+%define uversion %{version}
+%define sover 6
 Summary:VOTCA tools library
-Group:  Productivity/Scientific/Chemistry
 License:Apache-2.0
+Group:  Productivity/Scientific/Chemistry
 URL:http://www.votca.org
 Source0:
https://github.com/votca/tools/archive/v%{uversion}.tar.gz#/%{name}-%{uversion}.tar.gz
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
-BuildRequires:  gcc-c++
-BuildRequires:  pkg-config
-BuildRequires:  libexpat-devel
-BuildRequires:  pkgconfig(sqlite3)
-BuildRequires:  pkgconfig(fftw3)
+BuildRequires:  cmake
 BuildRequires:  eigen3-devel
-%if 0%{?suse_version} > 1325
+BuildRequires:  fftw3-devel
+BuildRequires:  gcc-c++
 BuildRequires:  libboost_filesystem-devel
-BuildRequires:  libboost_system-devel
 BuildRequires:  libboost_program_options-devel
+BuildRequires:  libboost_system-devel
 BuildRequires:  libboost_test-devel
-%else
-BuildRequires:  boost-devel >= 1.39.0
-%endif
-BuildRequires:  cmake
-BuildRequires:  txt2tags
+BuildRequires:  libexpat-devel
+BuildRequires:  pkg-config
+Conflicts:  libvotca_tools5 < %{version}
 
 %description
 Versatile Object-oriented Toolkit for Coarse-graining Applications (VOTCA) is
@@ -69,8 +61,11 @@
 %package devel
 Summary:Development headers and libraries for votca-tools
 Group:  Development/Libraries/C and C++
-Requires:   libvotca_tools%sover = 

commit shadowsocks-libev for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package shadowsocks-libev for 
openSUSE:Factory checked in at 2020-06-15 20:27:58

Comparing /work/SRC/openSUSE:Factory/shadowsocks-libev (Old)
 and  /work/SRC/openSUSE:Factory/.shadowsocks-libev.new.3606 (New)


Package is "shadowsocks-libev"

Mon Jun 15 20:27:58 2020 rev:15 rq:813075 version:3.3.4

Changes:

--- /work/SRC/openSUSE:Factory/shadowsocks-libev/shadowsocks-libev.changes  
2020-02-04 19:54:32.789363356 +0100
+++ 
/work/SRC/openSUSE:Factory/.shadowsocks-libev.new.3606/shadowsocks-libev.changes
2020-06-15 20:28:04.213867086 +0200
@@ -1,0 +2,13 @@
+Tue Jun  9 16:03:02 UTC 2020 - Dominique Leuenberger 
+
+- Revert back to the distro default compiler (i.e. GCC 10.1 on TW):
+  + export CFLAGS+="-fcommon" until upstream makes this code
+compatible to GCC10.
+
+---
+Sun Jun  7 11:16:33 UTC 2020 - opensuse-packaging 

+
+- Update Recommends tag: use shadowsocks-v2ray-plugin instead of simple-obfs 
+- Fix build on Tumbleweed: don't use gcc10!
+
+---



Other differences:
--
++ shadowsocks-libev.spec ++
--- /var/tmp/diff_new_pack.TUbfLx/_old  2020-06-15 20:28:05.433871313 +0200
+++ /var/tmp/diff_new_pack.TUbfLx/_new  2020-06-15 20:28:05.433871313 +0200
@@ -52,21 +52,21 @@
 BuildRequires:  systemd-rpm-macros
 BuildRequires:  xmlto
 BuildRequires:  pkgconfig(systemd)
-Recommends: simple-obfs
+Recommends: shadowsocks-v2ray-plugin
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{?systemd_ordering}
 
 %description
-shadowsocks-libev is a lightweight secured SOCKS5 proxy
-for embedded devices and low-end boxes.
+shadowsocks-libev is a lightweight secured SOCKS5 proxy for embedded devices 
and
+low-end boxes.
 
 %package -n lib%{name}%{libver}
 Summary:Libev port of Shadowsocks
 Group:  System/Libraries
 
 %description -n lib%{name}%{libver}
-shadowsocks-libev is a lightweight secured SOCKS5 proxy
-for embedded devices and low-end boxes.
+shadowsocks-libev is a lightweight secured SOCKS5 proxy for embedded devices 
and
+low-end boxes.
 
 This package provides libraries for it.
 
@@ -77,8 +77,8 @@
 BuildArch:  noarch
 
 %description doc
-shadowsocks-libev is a lightweight secured SOCKS5 proxy
-for embedded devices and low-end boxes.
+shadowsocks-libev is a lightweight secured SOCKS5 proxy for embedded devices 
and
+low-end boxes.
 
 This package provides Documents for it.
 
@@ -88,8 +88,8 @@
 Requires:   lib%{name}%{libver} = %{version}
 
 %description devel
-shadowsocks-libev is a lightweight secured SOCKS5 proxy
-for embedded devices and low-end boxes.
+shadowsocks-libev is a lightweight secured SOCKS5 proxy for embedded devices 
and
+low-end boxes.
 
 This package provides development headers for it.
 
@@ -97,8 +97,11 @@
 %setup -q
 
 %build
-%configure --enable-shared
-make %{?_smp_mflags} V=1
+export CFLAGS="%{optflags} -fcommon"
+%configure \
+   --enable-shared 
+
+%make_build
 
 %install
 %make_install




commit votca-csg for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package votca-csg for openSUSE:Factory 
checked in at 2020-06-15 20:27:23

Comparing /work/SRC/openSUSE:Factory/votca-csg (Old)
 and  /work/SRC/openSUSE:Factory/.votca-csg.new.3606 (New)


Package is "votca-csg"

Mon Jun 15 20:27:23 2020 rev:16 rq:813503 version:1.6

Changes:

--- /work/SRC/openSUSE:Factory/votca-csg/votca-csg.changes  2019-11-30 
10:38:05.116167116 +0100
+++ /work/SRC/openSUSE:Factory/.votca-csg.new.3606/votca-csg.changes
2020-06-15 20:27:32.801758267 +0200
@@ -1,0 +2,54 @@
+Thu Jun 11 08:49:05 UTC 2020 - Dominique Leuenberger 
+
+- Move the miscellaneous manpages from the library package to the
+  main package. SLPP disallows non-versioned files in the
+  shared-library package as it makes them non-parallel installable
+  to newer versions. Additionally, the man page does not provide
+  information of pure library users (it's a list of what tools form
+  the csg tools).
+- have the main package conflict with the old library package
+  (libvotca_csg5) that contained the man page.
+
+---
+Sat Apr 18 04:53:20 UTC 2020 - Christoph Junghans 
+
+- Update to 1.6
+  - enforce periodic boundaries for dihedrals ([gh#votca/csg#500])
+  - add warning about dihedrals ([gh#votca/csg#500])
+  - fix typo in option in potential_extrapolate
+([gh#votca/csg#502])
+  - update gmx tab. potential warning ([gh#votca/csg#504])
+  - fix exit code with clean for potential_to_lammps.sh
+([gh#votca/csg#506])
+  - remove obsolete link to MKL from cmake ([gh#votca/csg#508])
+  - fix build with Gromacs 2021 ([gh#votca/csg#510],
+[gh#votca/csg#511])
+  - warn about too long interaction in csg_stat
+([gh#votca/csg#512])
+  - fix testing in postadd_plot.sh ([gh#votca/csg#515])
+
+---
+Mon Feb 10 17:09:59 UTC 2020 - Christoph Junghans 
+
+- Update to 1.6_rc2
+  - fix inheritance bug in cmake files ([gh#votca/csg#466])
+  - fix build on 32-bit archs ([gh#votca/csg#473])
+  - fixed alignment problem in potential class
+([gh#votca/csg#471])
+  - fix h5md reader ([gh#votca/csg#478], [gh#votca/csg#481])
+  - added more tests for gmx ([gh#votca/csg#489]) and gmx-2020
+support ([gh#votca/csg#488])
+  - add support for txt2tags-3.4 ([gh#votca/csg#491])
+  - fix cma seed for testing ([gh#votca/csg#494])
+  - remove old doxygen target ([gh#votca/csg#498])
+
+---
+Thu Dec  5 15:11:24 UTC 2019 - Christoph Junghans 
+
+- Update to 1.6_rc1
+  * Major CMake refactor
+  * Improved file readers
+  * Added more tests
+  * Added csg_imc_solve, removing octave and python solvers
+
+---

Old:

  votca-csg-1.5.1.tar.gz
  votca-csg-manual-1.5.1.pdf
  votca-csg-tutorials-1.5.1.tar.gz

New:

  votca-csg-1.6.tar.gz
  votca-csg-manual-1.6.pdf
  votca-csg-tutorials-1.6.tar.gz



Other differences:
--
++ votca-csg.spec ++
--- /var/tmp/diff_new_pack.sAaUy2/_old  2020-06-15 20:27:33.793761703 +0200
+++ /var/tmp/diff_new_pack.sAaUy2/_new  2020-06-15 20:27:33.797761717 +0200
@@ -1,8 +1,8 @@
 #
 # spec file for package votca-csg
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
-# Copyright (c) 2013-2019 Christoph Junghans
+# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2013-2020 Christoph Junghans
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,46 +13,46 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 Name:   votca-csg
-Version:1.5.1
-%define uversion %{version}
-%define sover 5
+Version:1.6
 Release:0
+%define uversion %{version}
+%define sover 6
 Summary:VOTCA coarse-graining engine
 License:Apache-2.0
 Group:  Productivity/Scientific/Chemistry
-Url:http://www.votca.org
+URL:http://www.votca.org
 Source0:
https://github.com/votca/csg/archive/v%{uversion}.tar.gz#/%{name}-%{uversion}.tar.gz
 Source1:
https://github.com/votca/csg-tutorials/archive/v%{uversion}.tar.gz#/%{name}-tutorials-%{uversion}.tar.gz
 Source2:
https://github.com/votca/csg-manual/releases/download/v%{uversion}/votca-csg-manual-%{uversion}.pdf
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
-BuildRequires:  gcc-c++

commit votca-csgapps for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package votca-csgapps for openSUSE:Factory 
checked in at 2020-06-15 20:27:14

Comparing /work/SRC/openSUSE:Factory/votca-csgapps (Old)
 and  /work/SRC/openSUSE:Factory/.votca-csgapps.new.3606 (New)


Package is "votca-csgapps"

Mon Jun 15 20:27:14 2020 rev:12 rq:796361 version:1.6

Changes:

--- /work/SRC/openSUSE:Factory/votca-csgapps/votca-csgapps.changes  
2019-11-30 10:38:08.356166727 +0100
+++ /work/SRC/openSUSE:Factory/.votca-csgapps.new.3606/votca-csgapps.changes
2020-06-15 20:27:19.073710709 +0200
@@ -1,0 +2,20 @@
+Sat Apr 18 04:55:57 UTC 2020 - Christoph Junghans 
+
+- Upgrade to 1.6
+  - details: https://github.com/votca/csg/blob/stable/CHANGELOG.md
+- Drop support for older Suse Version
+
+---
+Mon Feb 10 17:21:08 UTC 2020 - Christoph Junghans 
+
+- Upgrade to 1.6_rc2
+  - details: https://github.com/votca/csg/blob/stable/CHANGELOG.md
+
+---
+Thu Dec  5 17:21:08 UTC 2019 - Christoph Junghans 
+
+- Upgrade to 1.6_rc1
+  - update related to Eigen3 move
+  - details: https://github.com/votca/csg/blob/stable/CHANGELOG.md
+
+---

Old:

  votca-csgapps-1.5.1.tar.gz

New:

  votca-csgapps-1.6.tar.gz



Other differences:
--
++ votca-csgapps.spec ++
--- /var/tmp/diff_new_pack.hsBS3W/_old  2020-06-15 20:27:20.373715213 +0200
+++ /var/tmp/diff_new_pack.hsBS3W/_new  2020-06-15 20:27:20.377715227 +0200
@@ -1,8 +1,8 @@
 #
 # spec file for package votca-csgapps
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
-# Copyright (c) 2013-2019 Christoph Junghans
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2013-2020 Christoph Junghans
 #
 # 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:   votca-csgapps
-Version:1.5.1
+Version:1.6
 %define uversion %{version}
 Release:0
 Summary:VOTCA coarse-graining engine applications
@@ -31,11 +31,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
 BuildRequires:  fdupes
-%if 0%{?suse_version} > 1325
 BuildRequires:  libboost_program_options-devel
-%else
-BuildRequires:  boost-devel >= 1.39.0
-%endif
 BuildRequires:  votca-csg-devel = %{version}
 BuildRequires:  votca-tools-devel = %{version}
 BuildRequires:  cmake
@@ -52,10 +48,10 @@
 
 %build
 %{cmake} -DENABLE_TESTING=ON
-make %{?_smp_mflags}
+%cmake_build
 
 %install
-make -C build install DESTDIR=%{buildroot}
+%cmake_install
 
 %fdupes %{buildroot}%{_prefix}
 
@@ -63,8 +59,7 @@
 make -C build test CTEST_OUTPUT_ON_FAILURE=1
 
 %files
-%defattr(-,root,root,-)
-%doc README
+%doc README.md
 %{_bindir}/*
 
 %changelog

++ votca-csgapps-1.5.1.tar.gz -> votca-csgapps-1.6.tar.gz ++
 4620 lines of diff (skipped)




commit votca-xtp for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package votca-xtp for openSUSE:Factory 
checked in at 2020-06-15 20:27:19

Comparing /work/SRC/openSUSE:Factory/votca-xtp (Old)
 and  /work/SRC/openSUSE:Factory/.votca-xtp.new.3606 (New)


Package is "votca-xtp"

Mon Jun 15 20:27:19 2020 rev:3 rq:796690 version:1.6

Changes:

--- /work/SRC/openSUSE:Factory/votca-xtp/votca-xtp.changes  2019-11-30 
10:39:21.184157980 +0100
+++ /work/SRC/openSUSE:Factory/.votca-xtp.new.3606/votca-xtp.changes
2020-06-15 20:27:24.445729319 +0200
@@ -1,0 +2,49 @@
+Sat Apr 18 04:58:29 UTC 2020 - Christoph Junghans 
+
+- Update to 1.6
+  - fix 32-bit build ([gh#votca/xtp#381], [gh#votca/xtp#380])
+  - remove duplicated basissets ([gh#votca/xtp#384],
+[gh#votca/xtp#386], [gh#votca/xtp#387])
+  - fix clang-10 warnings ([gh#votca/xtp#394])
+  - fix unit_test_eeinteractor on OpenSUSE ([gh#votca/xtp#341],
+[gh#votca/xtp#428])
+- Drop doc package, upstream remove manual
+
+---
+Mon Feb 10 17:27:05 UTC 2020 - Christoph Junghans 
+
+- Update to 1.6_rc2
+  - fix remove giant logo from tarball ([gh#votca/xtp#337])
+  - fix assertions related to GLIBCXX_ASSERTIONS
+([gh#votca/xtp#345])
+  - remove unused boost serialisation ([gh#votca/xtp#346])
+  - fix build on 32-bit archs ([gh#votca/xtp#347])
+  - add ENABLE_HIGH_MEMORY_TESTS cmake option ([gh#votca/xtp#356])
+  - fix copyright ([gh#votca/xtp#363])
+  - remove old doxygen target ([gh#votca/xtp#365])
+  - fix some gcc10 warnings ([gh#votca/xtp#376])
+  - Add external fields to dft calculations ([gh#votca/xtp#351],
+[gh#votca/xtp#353])
+  - added def2 and cc basis sets ([gh#votca/xtp#355])
+  - added apdft ([gh#votca/xtp#350])
+  - added test to cubefile reader ([gh#votca/xtp#344])
+  - fix state tracker ([gh#votca/xtp#333])
+  - grid class refator ([gh#votca/xtp#335])
+  - changed ppm screening ([gh#votca/xtp#371])
+
+---
+Thu Dec  5 17:24:22 UTC 2019 - Christoph Junghans 
+
+- Update to 1.6_rc1
+  - completely new statefile in hdf5 format for larger systems
+  - new electrostatics with PCG solver
+  - new QM/MM engine with freely configurable regions
+  - exact GW-BSE for small systems
+  - new iterative matrix solvers for large systems
+  - full LAMMPS support
+  - improved testing
+  - deleted netbeans support
+  - removed old manual
+  - Major CMake refactor
+
+---

Old:

  votca-xtp-1.5.1.tar.gz
  votca-xtp-manual-1.5.1.pdf

New:

  _constraints
  votca-xtp-1.6.tar.gz



Other differences:
--
++ votca-xtp.spec ++
--- /var/tmp/diff_new_pack.3nYpBl/_old  2020-06-15 20:27:25.901734363 +0200
+++ /var/tmp/diff_new_pack.3nYpBl/_new  2020-06-15 20:27:25.905734377 +0200
@@ -1,8 +1,8 @@
 #
 # spec file for package votca-xtp
 #
-# Copyright (c) 2016-2017 SUSE LINUX GmbH, Nuernberg, Germany.
-# Copyright (c) 2018-2019 Christoph Junghans
+# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2018-2020 Christoph Junghans
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,49 +13,47 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   votca-xtp
-Version:1.5.1
-%define uversion %{version}
-%define sover 5
+Version:1.6
 Release:0
+%define uversion %{version}
+%define sover 6
 Summary:VOTCA excitation and charge properties module
 License:Apache-2.0
 Group:  Productivity/Scientific/Chemistry
-Url:http://www.votca.org
+URL:http://www.votca.org
 Source0:
https://github.com/votca/xtp/archive/v%{uversion}.tar.gz#/%{name}-%{uversion}.tar.gz
-Source1:
https://github.com/votca/xtp/releases/download/v%{uversion}/votca-xtp-manual-%{uversion}.pdf
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
+BuildRequires:  cmake >= 2.8.4
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  pkg-config
-%if 0%{?suse_version} > 1325
+BuildRequires:  hdf5-devel
+BuildRequires:  libboost_filesystem-devel >= 1.48.0
 BuildRequires:  libboost_program_options-devel >= 1.48.0
 BuildRequires:  libboost_serialization-devel >= 1.48.0
-BuildRequires:  libboost_filesystem-devel >= 1.48.0
 BuildRequires:  libboost_system-devel >= 1.48.0
-BuildRequires:  libboost_timer-devel >= 1.48.0
 BuildRequires:  

commit steam for openSUSE:Factory:NonFree

2020-06-15 Thread root
Hello community,

here is the log from the commit of package steam for openSUSE:Factory:NonFree 
checked in at 2020-06-15 20:26:00

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


Package is "steam"

Mon Jun 15 20:26:00 2020 rev:23 rq:813552 version:1.0.0.62

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/steam/steam.changes  2019-12-30 
12:33:12.075750149 +0100
+++ /work/SRC/openSUSE:Factory:NonFree/.steam.new.3606/steam.changes
2020-06-15 20:26:01.433441744 +0200
@@ -1,0 +2,14 @@
+Fri Jun  5 17:15:04 UTC 2020 - Matthias Mailänder 
+
+- Added recommend lsb-release to provide OS info and to support 
+   hw survey boo#1157832
+
+---
+Sat May 23 11:04:04 UTC 2020 - Callum Farmer 
+
+- Update patches for new package structure
+- Merge steam-controller and steam-vr into steam-devices like other distros.
+- Update to version 1.0.0.62
+  * Adapt for newer Steam Runtime builds
+
+---

Old:

  steam_1.0.0.61.tar.gz

New:

  steam_1.0.0.62.tar.gz



Other differences:
--
++ steam.spec ++
--- /var/tmp/diff_new_pack.Zyt3nO/_old  2020-06-15 20:26:02.433445208 +0200
+++ /var/tmp/diff_new_pack.Zyt3nO/_new  2020-06-15 20:26:02.437445222 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package steam
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # 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:   steam
-Version:1.0.0.61
+Version:1.0.0.62
 Release:0
 Summary:Installer for Valve's digital software distribution service
 # "Limited Installation License"
@@ -27,7 +27,8 @@
 Source: 
http://repo.steampowered.com/steam/pool/steam/s/steam/steam_%{version}.tar.gz
 Source2:steam.appdata.xml
 Source3:%{name}.firewall
-Patch0: 
https://raw.githubusercontent.com/steamtricks/steamtricks/master/dist/patch/steam-invoke_steamtricks.patch
+# Based on 
https://raw.githubusercontent.com/steamtricks/steamtricks/master/dist/patch/steam-invoke_steamtricks.patch
+Patch0: steam-invoke_steamtricks.patch
 # PATCH-FIX-OPENSUSE steam-path-fix.patch bnc#1025841
 Patch1:steam-path-fix.patch
 BuildRequires:  hicolor-icon-theme
@@ -36,6 +37,9 @@
 BuildRequires:  fdupes
 BuildRequires:  pkgconfig(udev)
 
+# for Steam Hardware Survey
+Recommends: lsb-release
+
 # dep_postfix macro is used to append "-32bit" to dependencies for x86_64 on 
openSUSE
 %define dep_postfix %{nil}
 %ifarch x86_64
@@ -121,34 +125,35 @@
 This package will fetch and install the Steam bootstrap. Start Steam to
 complete the installation of the client for the current user.
 
-%packagecontroller
-Summary:Steam Controller
+%packagedevices
+Summary:Device support for Steam-related hardware
+URL:https://github.com/ValveSoftware/steam-devices/
+License:MIT
 Group:  Hardware/Joystick
+Obsoletes:  steam-controller < %{version}
+Obsoletes:  steam-vr < %{version}
+Provides:   steam-controller = %{version}
+Provides:   steam-vr = %{version}
 Requires:   steam = %{version}
 %if 0%{?suse_version} >= 1330
 Requires(pre):  group(games)
 Requires(pre):  user(games)
 %endif
 
-%description controller
+%description devices
 The Steam Controller features dual trackpads, HD haptic feedback, dual-stage
 triggers, back grip buttons, and fully-customizable control schemes.
 Make sure that all users, which should have access to the steam-controller,
-are in the "games" group.
+are in the "games" group. Steam VR is a full-featured, 360° room-scale 
+virtual reality experience.
 
-%packagevr
-Summary:Steam VR
-Group:  Hardware/Joystick
-Requires:   steam = %{version}
-
-%description vr
-A full-featured, 360° room-scale virtual reality experience.
 
 %prep
-%setup -q -n steam
+%setup -q -n steam-launcher
 %patch0 -p1
 %patch1 -p1
 
+
 %build
 
 %install
@@ -156,9 +161,11 @@
 
 # TODO: Patch it so it works with zypper or at least does not invoke apt-get.
 rm %{buildroot}%{_bindir}/steamdeps
+rm %{buildroot}/usr/lib/steam/bin_steamdeps.py
 
 mkdir -p %{buildroot}%{_udevrulesdir}
-cp lib/udev/rules.d/* %{buildroot}%{_udevrulesdir}
+cp subprojects/steam-devices/60-steam-input.rules 
%{buildroot}%{_udevrulesdir}/60-steam-input.rules
+cp subprojects/steam-devices/60-steam-vr.rules 
%{buildroot}%{_udevrulesdir}/60-steam-vr.rules
 
 # https://en.opensuse.org/openSUSE:AppStore
 

commit 00Meta for openSUSE:Leap:15.2:PowerPC

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 00Meta for 
openSUSE:Leap:15.2:PowerPC checked in at 2020-06-15 18:47:22

Comparing /work/SRC/openSUSE:Leap:15.2:PowerPC/00Meta (Old)
 and  /work/SRC/openSUSE:Leap:15.2:PowerPC/.00Meta.new.3606 (New)


Package is "00Meta"

Mon Jun 15 18:47:22 2020 rev:188 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ version_totest ++
--- /var/tmp/diff_new_pack.LnCrWl/_old  2020-06-15 18:47:23.653083932 +0200
+++ /var/tmp/diff_new_pack.LnCrWl/_new  2020-06-15 18:47:23.653083932 +0200
@@ -1 +1 @@
-304.1
\ No newline at end of file
+306.1
\ No newline at end of file




commit 000product for openSUSE:Leap:15.2:PowerPC

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000product for 
openSUSE:Leap:15.2:PowerPC checked in at 2020-06-15 17:30:26

Comparing /work/SRC/openSUSE:Leap:15.2:PowerPC/000product (Old)
 and  /work/SRC/openSUSE:Leap:15.2:PowerPC/.000product.new.3606 (New)


Package is "000product"

Mon Jun 15 17:30:26 2020 rev:306 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-dvd5-dvd-ppc64le.kiwi: same change
openSUSE-ftp-ftp-ppc64le.kiwi: same change
stub.kiwi: same change
++ unsorted.yml ++
--- /var/tmp/diff_new_pack.VymdKB/_old  2020-06-15 17:30:28.344969840 +0200
+++ /var/tmp/diff_new_pack.VymdKB/_new  2020-06-15 17:30:28.344969840 +0200
@@ -13689,6 +13689,7 @@
   - openSUSE-release-appliance-kvm 
   - openSUSE-release-appliance-openstack 
   - openSUSE-release-appliance-vmware 
+  - openSUSE-release-appliance-wsl 
   - openSUSE-release-ftp 
   - openSUSE-release-livecd-gnome 
   - openSUSE-release-livecd-kde 




commit 000product for openSUSE:Leap:15.2

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Leap:15.2 
checked in at 2020-06-15 17:29:28

Comparing /work/SRC/openSUSE:Leap:15.2/000product (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.000product.new.3606 (New)


Package is "000product"

Mon Jun 15 17:29:28 2020 rev:1504 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-cd-mini-x86_64.kiwi: same change
openSUSE-dvd5-dvd-x86_64.kiwi: same change
openSUSE-ftp-ftp-x86_64.kiwi: same change
stub.kiwi: same change
++ unsorted.yml ++
--- /var/tmp/diff_new_pack.NrHgJP/_old  2020-06-15 17:29:30.156809984 +0200
+++ /var/tmp/diff_new_pack.NrHgJP/_new  2020-06-15 17:29:30.160809995 +0200
@@ -15823,6 +15823,7 @@
   - openSUSE-release-appliance-kvm 
   - openSUSE-release-appliance-openstack 
   - openSUSE-release-appliance-vmware 
+  - openSUSE-release-appliance-wsl 
   - openSUSE-release-ftp 
   - openSUSE-release-livecd-gnome 
   - openSUSE-release-livecd-kde 




commit 000product for openSUSE:Leap:15.2:ARM

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000product for 
openSUSE:Leap:15.2:ARM checked in at 2020-06-15 17:27:29

Comparing /work/SRC/openSUSE:Leap:15.2:ARM/000product (Old)
 and  /work/SRC/openSUSE:Leap:15.2:ARM/.000product.new.3606 (New)


Package is "000product"

Mon Jun 15 17:27:29 2020 rev:199 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-dvd5-dvd-aarch64.kiwi: same change
openSUSE-ftp-ftp-aarch64.kiwi: same change
openSUSE-ftp-ftp-armv7hl.kiwi: same change
stub.kiwi: same change
++ unsorted.yml ++
--- /var/tmp/diff_new_pack.0WrQnE/_old  2020-06-15 17:27:31.520485718 +0200
+++ /var/tmp/diff_new_pack.0WrQnE/_new  2020-06-15 17:27:31.524485729 +0200
@@ -13920,6 +13920,7 @@
   - openSUSE-release-appliance-kvm 
   - openSUSE-release-appliance-openstack 
   - openSUSE-release-appliance-vmware 
+  - openSUSE-release-appliance-wsl 
   - openSUSE-release-ftp 
   - openSUSE-release-livecd-gnome 
   - openSUSE-release-livecd-kde 




commit 000product for openSUSE:Leap:15.2:PowerPC

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000product for 
openSUSE:Leap:15.2:PowerPC checked in at 2020-06-15 16:25:11

Comparing /work/SRC/openSUSE:Leap:15.2:PowerPC/000product (Old)
 and  /work/SRC/openSUSE:Leap:15.2:PowerPC/.000product.new.3606 (New)


Package is "000product"

Mon Jun 15 16:25:11 2020 rev:305 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-dvd5-dvd-ppc64le.kiwi: same change
openSUSE-ftp-ftp-ppc64le.kiwi: same change
stub.kiwi: same change
++ openSUSE.product ++
--- /var/tmp/diff_new_pack.Ve4nwG/_old  2020-06-15 16:25:13.802951706 +0200
+++ /var/tmp/diff_new_pack.Ve4nwG/_new  2020-06-15 16:25:13.802951706 +0200
@@ -285,6 +285,13 @@

 
 
+
+
+
+
 
 
 




commit 000product for openSUSE:Leap:15.2

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Leap:15.2 
checked in at 2020-06-15 16:25:11

Comparing /work/SRC/openSUSE:Leap:15.2/000product (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.000product.new.3606 (New)


Package is "000product"

Mon Jun 15 16:25:11 2020 rev:1503 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-cd-mini-x86_64.kiwi: same change
openSUSE-dvd5-dvd-x86_64.kiwi: same change
openSUSE-ftp-ftp-x86_64.kiwi: same change
stub.kiwi: same change
++ openSUSE.product ++
--- /var/tmp/diff_new_pack.VLvISO/_old  2020-06-15 16:25:12.606948229 +0200
+++ /var/tmp/diff_new_pack.VLvISO/_new  2020-06-15 16:25:12.606948229 +0200
@@ -292,6 +292,13 @@

 
 
+
+
+
+
 
 
 




commit 000release-packages for openSUSE:Leap:15.2

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Leap:15.2 checked in at 2020-06-15 16:25:08

Comparing /work/SRC/openSUSE:Leap:15.2/000release-packages (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.000release-packages.new.3606 (New)


Package is "000release-packages"

Mon Jun 15 16:25:08 2020 rev:968 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ openSUSE-release.spec ++
--- /var/tmp/diff_new_pack.6F21DA/_old  2020-06-15 16:25:09.902940369 +0200
+++ /var/tmp/diff_new_pack.6F21DA/_new  2020-06-15 16:25:09.906940380 +0200
@@ -319,6 +319,21 @@
 %defattr(-,root,root)
 %doc %{_defaultdocdir}/openSUSE-release-appliance-custom
 
+%package appliance-wsl
+License:BSD-3-Clause
+Group:  System/Fhs
+Provides:   product_flavor()
+Provides:   flavor(appliance-wsl)
+Provides:   product_flavor(openSUSE) = 15.2-1
+Summary:openSUSE Leap 15.2%{?betaversion: %{betaversion}}
+
+%description appliance-wsl
+openSUSE Leap 15.2
+
+%files appliance-wsl
+%defattr(-,root,root)
+%doc %{_defaultdocdir}/openSUSE-release-appliance-wsl
+
 
 
 %prep
@@ -569,6 +584,12 @@
 
 EOF
 
+mkdir -p $RPM_BUILD_ROOT/%{_defaultdocdir}/openSUSE-release-appliance-wsl
+cat >$RPM_BUILD_ROOT/%{_defaultdocdir}/openSUSE-release-appliance-wsl/README 
<< EOF
+This package only exists for providing the product flavor 'appliance-wsl'.
+
+EOF
+
 
 #
 # fix cpe id to have leap in it




commit 000release-packages for openSUSE:Leap:15.2:PowerPC

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Leap:15.2:PowerPC checked in at 2020-06-15 16:25:08

Comparing /work/SRC/openSUSE:Leap:15.2:PowerPC/000release-packages (Old)
 and  /work/SRC/openSUSE:Leap:15.2:PowerPC/.000release-packages.new.3606 
(New)


Package is "000release-packages"

Mon Jun 15 16:25:08 2020 rev:268 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ openSUSE-release.spec ++
--- /var/tmp/diff_new_pack.N7BRER/_old  2020-06-15 16:25:11.446944857 +0200
+++ /var/tmp/diff_new_pack.N7BRER/_new  2020-06-15 16:25:11.450944868 +0200
@@ -317,6 +317,21 @@
 %defattr(-,root,root)
 %doc %{_defaultdocdir}/openSUSE-release-appliance-custom
 
+%package appliance-wsl
+License:BSD-3-Clause
+Group:  System/Fhs
+Provides:   product_flavor()
+Provides:   flavor(appliance-wsl)
+Provides:   product_flavor(openSUSE) = 15.2-1
+Summary:openSUSE Leap 15.2%{?betaversion: %{betaversion}}
+
+%description appliance-wsl
+openSUSE Leap 15.2
+
+%files appliance-wsl
+%defattr(-,root,root)
+%doc %{_defaultdocdir}/openSUSE-release-appliance-wsl
+
 
 
 %prep
@@ -559,6 +574,12 @@
 
 EOF
 
+mkdir -p $RPM_BUILD_ROOT/%{_defaultdocdir}/openSUSE-release-appliance-wsl
+cat >$RPM_BUILD_ROOT/%{_defaultdocdir}/openSUSE-release-appliance-wsl/README 
<< EOF
+This package only exists for providing the product flavor 'appliance-wsl'.
+
+EOF
+
 
 #
 # fix cpe id to have leap in it




commit 000product for openSUSE:Leap:15.2:ARM

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000product for 
openSUSE:Leap:15.2:ARM checked in at 2020-06-15 16:23:00

Comparing /work/SRC/openSUSE:Leap:15.2:ARM/000product (Old)
 and  /work/SRC/openSUSE:Leap:15.2:ARM/.000product.new.3606 (New)


Package is "000product"

Mon Jun 15 16:23:00 2020 rev:198 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-dvd5-dvd-aarch64.kiwi: same change
openSUSE-ftp-ftp-aarch64.kiwi: same change
openSUSE-ftp-ftp-armv7hl.kiwi: same change
stub.kiwi: same change
++ openSUSE.product ++
--- /var/tmp/diff_new_pack.IVu8hQ/_old  2020-06-15 16:23:01.858568141 +0200
+++ /var/tmp/diff_new_pack.IVu8hQ/_new  2020-06-15 16:23:01.862568153 +0200
@@ -284,6 +284,13 @@

 
 
+
+
+
+
 
 
 




commit 000release-packages for openSUSE:Leap:15.2:ARM

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Leap:15.2:ARM checked in at 2020-06-15 16:22:58

Comparing /work/SRC/openSUSE:Leap:15.2:ARM/000release-packages (Old)
 and  /work/SRC/openSUSE:Leap:15.2:ARM/.000release-packages.new.3606 (New)


Package is "000release-packages"

Mon Jun 15 16:22:58 2020 rev:184 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ openSUSE-release.spec ++
--- /var/tmp/diff_new_pack.0377Ec/_old  2020-06-15 16:22:59.258560583 +0200
+++ /var/tmp/diff_new_pack.0377Ec/_new  2020-06-15 16:22:59.258560583 +0200
@@ -318,6 +318,21 @@
 %defattr(-,root,root)
 %doc %{_defaultdocdir}/openSUSE-release-appliance-custom
 
+%package appliance-wsl
+License:BSD-3-Clause
+Group:  System/Fhs
+Provides:   product_flavor()
+Provides:   flavor(appliance-wsl)
+Provides:   product_flavor(openSUSE) = 15.2-1
+Summary:openSUSE Leap 15.2%{?betaversion: %{betaversion}}
+
+%description appliance-wsl
+openSUSE Leap 15.2
+
+%files appliance-wsl
+%defattr(-,root,root)
+%doc %{_defaultdocdir}/openSUSE-release-appliance-wsl
+
 
 
 %prep
@@ -564,6 +579,12 @@
 
 EOF
 
+mkdir -p $RPM_BUILD_ROOT/%{_defaultdocdir}/openSUSE-release-appliance-wsl
+cat >$RPM_BUILD_ROOT/%{_defaultdocdir}/openSUSE-release-appliance-wsl/README 
<< EOF
+This package only exists for providing the product flavor 'appliance-wsl'.
+
+EOF
+
 
 #
 # fix cpe id to have leap in it




commit 000release-packages for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Factory checked in at 2020-06-15 16:13:57

Comparing /work/SRC/openSUSE:Factory/000release-packages (Old)
 and  /work/SRC/openSUSE:Factory/.000release-packages.new.3606 (New)


Package is "000release-packages"

Mon Jun 15 16:13:57 2020 rev:592 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-MicroOS-release.spec: same change
openSUSE-release.spec: same change
stub.spec: same change
++ weakremovers.inc ++
--- /var/tmp/diff_new_pack.EgObqa/_old  2020-06-15 16:14:00.629004776 +0200
+++ /var/tmp/diff_new_pack.EgObqa/_new  2020-06-15 16:14:00.633004788 +0200
@@ -11438,9 +11438,12 @@
 Provides: weakremover(libunibilium0)
 Provides: weakremover(libunique-3_0-0)
 Provides: weakremover(libunique-devel)
+Provides: weakremover(libunity-devel)
 Provides: weakremover(libunity-gtk-parser-devel)
 Provides: weakremover(libunity-gtk2-parser0)
 Provides: weakremover(libunity-gtk3-parser0)
+Provides: weakremover(libunity-tools)
+Provides: weakremover(libunity9)
 Provides: weakremover(libunrar-devel)
 Provides: weakremover(libunrar5_4_5)
 Provides: weakremover(libunrar5_5_6)
@@ -15301,6 +15304,7 @@
 Provides: weakremover(python2-libsmdev)
 Provides: weakremover(python2-libsmraw)
 Provides: weakremover(python2-libtorrent-rasterbar)
+Provides: weakremover(python2-libunity)
 Provides: weakremover(python2-libusb1)
 Provides: weakremover(python2-libvhdi)
 Provides: weakremover(python2-libvirt-python)
@@ -16706,6 +16710,7 @@
 Provides: weakremover(python3-kde4-phonon)
 Provides: weakremover(python3-kde4-plasma)
 Provides: weakremover(python3-libgsignon)
+Provides: weakremover(python3-libunity)
 Provides: weakremover(python3-lmfit)
 Provides: weakremover(python3-lxml-doc)
 Provides: weakremover(python3-matplotlib-qt4)
@@ -21493,6 +21498,8 @@
 Provides: weakremover(typelib-1_0-TrackerControl-1_0)
 Provides: weakremover(typelib-1_0-TrackerMiner-1_0)
 Provides: weakremover(typelib-1_0-Unique-3_0)
+Provides: weakremover(typelib-1_0-Unity-7_0)
+Provides: weakremover(typelib-1_0-UnityExtras-7_0)
 Provides: weakremover(typelib-1_0-Vips-8_4)
 Provides: weakremover(typelib-1_0-Vips-8_5)
 Provides: weakremover(typelib-1_0-WebKit-1_0)
@@ -22719,6 +22726,7 @@
 Provides: weakremover(libubsan1-gcc8-32bit)
 Provides: weakremover(libunity-gtk2-parser0-32bit)
 Provides: weakremover(libunity-gtk3-parser0-32bit)
+Provides: weakremover(libunity9-32bit)
 Provides: weakremover(libupnp13-32bit)
 Provides: weakremover(libupnp15-32bit)
 Provides: weakremover(libupnp6-32bit)




commit 000product for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Factory 
checked in at 2020-06-15 16:14:01

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


Package is "000product"

Mon Jun 15 16:14:01 2020 rev:2279 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-MicroOS-dvd5-dvd-x86_64.kiwi: same change
openSUSE-MicroOS-dvd5-kubic-dvd-x86_64.kiwi: same change
openSUSE-cd-mini-i586.kiwi: same change
openSUSE-cd-mini-x86_64.kiwi: same change
openSUSE-dvd5-dvd-i586.kiwi: same change
openSUSE-dvd5-dvd-x86_64.kiwi: same change
openSUSE-ftp-ftp-i586_x86_64.kiwi: same change
stub.kiwi: same change
++ unsorted.yml ++
--- /var/tmp/diff_new_pack.RwZVgT/_old  2020-06-15 16:14:04.453015785 +0200
+++ /var/tmp/diff_new_pack.RwZVgT/_new  2020-06-15 16:14:04.457015796 +0200
@@ -12403,10 +12403,6 @@
   - libunique1-devel 
   - libunistring-devel 
   - libunistring-devel-32bit: [x86_64] 
-  - libunity-devel 
-  - libunity-tools 
-  - libunity9 
-  - libunity9-32bit: [x86_64] 
   - libunshield0 
   - libunwind-32bit: [x86_64] 
   - libunwind-devel 
@@ -18686,7 +18682,6 @@
   - python2-keyrings.alt 
   - python2-libfwsi 
   - python2-libguestfs: [x86_64] 
-  - python2-libunity 
   - python2-moviepy 
   - python2-opencensus-ext-threading 
   - python2-pip 
@@ -20152,7 +20147,6 @@
   - python3-libstoragemgmt 
   - python3-libstoragemgmt-clibs 
   - python3-libtorrent-rasterbar 
-  - python3-libunity 
   - python3-libusb1 
   - python3-libvhdi 
   - python3-libvmdk 
@@ -33279,8 +33273,6 @@
   - typelib-1_0-UDisks-2_0 
   - typelib-1_0-Uhm-0_0 
   - typelib-1_0-Unique-1_0 
-  - typelib-1_0-Unity-7_0 
-  - typelib-1_0-UnityExtras-7_0 
   - typelib-1_0-Urfkill-0_0 
   - typelib-1_0-Vips-8_9 
   - typelib-1_0-WebKit2WebExtension-4_0 




commit 000package-groups for openSUSE:Leap:15.2

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000package-groups for 
openSUSE:Leap:15.2 checked in at 2020-06-15 16:01:32

Comparing /work/SRC/openSUSE:Leap:15.2/000package-groups (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.000package-groups.new.3606 (New)


Package is "000package-groups"

Mon Jun 15 16:01:32 2020 rev:483 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ openSUSE.product.in ++
--- /var/tmp/diff_new_pack.wrsAbh/_old  2020-06-15 16:01:33.838814629 +0200
+++ /var/tmp/diff_new_pack.wrsAbh/_new  2020-06-15 16:01:33.842814640 +0200
@@ -292,6 +292,13 @@

 
 
+
+
+
+
 
 
 




commit 00Meta for openSUSE:Leap:15.2:PowerPC

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 00Meta for 
openSUSE:Leap:15.2:PowerPC checked in at 2020-06-15 13:17:11

Comparing /work/SRC/openSUSE:Leap:15.2:PowerPC/00Meta (Old)
 and  /work/SRC/openSUSE:Leap:15.2:PowerPC/.00Meta.new.3606 (New)


Package is "00Meta"

Mon Jun 15 13:17:11 2020 rev:187 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ version_snapshot ++
--- /var/tmp/diff_new_pack.HIAg8F/_old  2020-06-15 13:17:13.350228115 +0200
+++ /var/tmp/diff_new_pack.HIAg8F/_new  2020-06-15 13:17:13.354228126 +0200
@@ -1 +1 @@
-303.4
\ No newline at end of file
+304.1
\ No newline at end of file




commit 00Meta for openSUSE:Leap:15.1:ARM:Images

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 00Meta for 
openSUSE:Leap:15.1:ARM:Images checked in at 2020-06-15 11:32:07

Comparing /work/SRC/openSUSE:Leap:15.1:ARM:Images/00Meta (Old)
 and  /work/SRC/openSUSE:Leap:15.1:ARM:Images/.00Meta.new.3606 (New)


Package is "00Meta"

Mon Jun 15 11:32:07 2020 rev:82 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ version_totest ++
--- /var/tmp/diff_new_pack.xkGrVX/_old  2020-06-15 11:32:09.332148228 +0200
+++ /var/tmp/diff_new_pack.xkGrVX/_new  2020-06-15 11:32:09.336148242 +0200
@@ -1 +1 @@
-1.20
\ No newline at end of file
+1.26
\ No newline at end of file




commit livecd-openSUSE for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package livecd-openSUSE for openSUSE:Factory 
checked in at 2020-06-15 11:01:21

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


Package is "livecd-openSUSE"

Mon Jun 15 11:01:21 2020 rev:113 rq: version:unknown

Changes:




Other differences:
--
livecd-leap-kde.kiwi: same change
++ livecd-leap-x11.kiwi ++
--- /var/tmp/diff_new_pack.ONU5K2/_old  2020-06-15 11:01:23.921708084 +0200
+++ /var/tmp/diff_new_pack.ONU5K2/_new  2020-06-15 11:01:23.921708084 +0200
@@ -498,6 +498,18 @@
 
 
 
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 

livecd-tumbleweed-gnome.kiwi: same change
livecd-tumbleweed-kde.kiwi: same change
++ livecd-tumbleweed-x11.kiwi ++
--- /var/tmp/diff_new_pack.ONU5K2/_old  2020-06-15 11:01:23.997708318 +0200
+++ /var/tmp/diff_new_pack.ONU5K2/_new  2020-06-15 11:01:23.997708318 +0200
@@ -498,6 +498,18 @@
 
 
 
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 

++ list-x11.sh ++
--- /var/tmp/diff_new_pack.ONU5K2/_old  2020-06-15 11:01:24.197708932 +0200
+++ /var/tmp/diff_new_pack.ONU5K2/_new  2020-06-15 11:01:24.197708932 +0200
@@ -60,6 +60,12 @@
 buildignore iso-codes-lang
 buildignore glib2-lang
 buildignore thunar-lang
+buildignore xfce4-settings-lang
+buildignore xfce4-panel-lang
+buildignore xfce-terminal-lang
+buildignore exo-lang
+buildignore xfdesktop-lang
+buildignore xfce4-power-manager-lang
 
 # Moved here from list-common.sh. cyrus-sasl is needed by Pidgin in Xfce Live 
CD
 buildignore cyrus-sasl




commit livecd-openSUSE for openSUSE:Factory

2020-06-15 Thread root
Hello community,

here is the log from the commit of package livecd-openSUSE for openSUSE:Factory 
checked in at 2020-06-15 10:26:04

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


Package is "livecd-openSUSE"

Mon Jun 15 10:26:04 2020 rev:112 rq: version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/livecd-openSUSE/livecd-openSUSE.changes  
2020-06-13 18:11:18.745917208 +0200
+++ 
/work/SRC/openSUSE:Factory/.livecd-openSUSE.new.3606/livecd-openSUSE.changes
2020-06-15 10:26:06.687989520 +0200
@@ -1,0 +2,5 @@
+Mon Jun 15 08:25:41 UTC 2020 - Dominique Leuenberger 
+
+- Drop thunar-lang from the Rescue CD - more hunt for space.
+
+---



Other differences:
--
livecd-leap-kde.kiwi: same change
++ livecd-leap-x11.kiwi ++
--- /var/tmp/diff_new_pack.IVGvVX/_old  2020-06-15 10:26:08.491994785 +0200
+++ /var/tmp/diff_new_pack.IVGvVX/_new  2020-06-15 10:26:08.495994796 +0200
@@ -496,6 +496,8 @@
 
 
 
+
+
 
 
 

livecd-tumbleweed-gnome.kiwi: same change
livecd-tumbleweed-kde.kiwi: same change
++ livecd-tumbleweed-x11.kiwi ++
--- /var/tmp/diff_new_pack.IVGvVX/_old  2020-06-15 10:26:08.539994924 +0200
+++ /var/tmp/diff_new_pack.IVGvVX/_new  2020-06-15 10:26:08.539994924 +0200
@@ -496,6 +496,8 @@
 
 
 
+
+
 
 
 

++ list-x11.sh ++
--- /var/tmp/diff_new_pack.IVGvVX/_old  2020-06-15 10:26:08.671995310 +0200
+++ /var/tmp/diff_new_pack.IVGvVX/_new  2020-06-15 10:26:08.671995310 +0200
@@ -59,6 +59,7 @@
 buildignore midori-lang
 buildignore iso-codes-lang
 buildignore glib2-lang
+buildignore thunar-lang
 
 # Moved here from list-common.sh. cyrus-sasl is needed by Pidgin in Xfce Live 
CD
 buildignore cyrus-sasl




commit 00Meta for openSUSE:Leap:15.2:PowerPC

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 00Meta for 
openSUSE:Leap:15.2:PowerPC checked in at 2020-06-15 09:32:16

Comparing /work/SRC/openSUSE:Leap:15.2:PowerPC/00Meta (Old)
 and  /work/SRC/openSUSE:Leap:15.2:PowerPC/.00Meta.new.3606 (New)


Package is "00Meta"

Mon Jun 15 09:32:16 2020 rev:186 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ version_totest ++
--- /var/tmp/diff_new_pack.c3TdlX/_old  2020-06-15 09:32:18.330404818 +0200
+++ /var/tmp/diff_new_pack.c3TdlX/_new  2020-06-15 09:32:18.330404818 +0200
@@ -1 +1 @@
-303.4
\ No newline at end of file
+304.1
\ No newline at end of file




commit 00Meta for openSUSE:Leap:15.2:Images

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 00Meta for openSUSE:Leap:15.2:Images 
checked in at 2020-06-15 09:30:49

Comparing /work/SRC/openSUSE:Leap:15.2:Images/00Meta (Old)
 and  /work/SRC/openSUSE:Leap:15.2:Images/.00Meta.new.3606 (New)


Package is "00Meta"

Mon Jun 15 09:30:49 2020 rev:399 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ version_totest ++
--- /var/tmp/diff_new_pack.KTkAf8/_old  2020-06-15 09:30:51.062125401 +0200
+++ /var/tmp/diff_new_pack.KTkAf8/_new  2020-06-15 09:30:51.066125414 +0200
@@ -1 +1 @@
-31.68
\ No newline at end of file
+31.81
\ No newline at end of file




commit 000product for openSUSE:Leap:15.2:ARM

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000product for 
openSUSE:Leap:15.2:ARM checked in at 2020-06-15 09:22:09

Comparing /work/SRC/openSUSE:Leap:15.2:ARM/000product (Old)
 and  /work/SRC/openSUSE:Leap:15.2:ARM/.000product.new.3606 (New)


Package is "000product"

Mon Jun 15 09:22:09 2020 rev:197 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
openSUSE-dvd5-dvd-aarch64.kiwi: same change
openSUSE-ftp-ftp-aarch64.kiwi: same change
openSUSE-ftp-ftp-armv7hl.kiwi: same change
stub.kiwi: same change
++ dvd.group ++
--- /var/tmp/diff_new_pack.xbyvfV/_old  2020-06-15 09:22:11.104460986 +0200
+++ /var/tmp/diff_new_pack.xbyvfV/_new  2020-06-15 09:22:11.108460999 +0200
@@ -1465,16 +1465,16 @@
  
  
  
- 
+ 
  
  
- 
- 
- 
+ 
+ 
+ 
  
- 
- 
- 
+ 
+ 
+ 
  
  
  
@@ -1510,7 +1510,7 @@
  
  
  
- 
+ 
  
  
  
@@ -2068,7 +2068,7 @@
  
  
  
- 
+ 
  
  
  
@@ -2128,7 +2128,7 @@
  
  
  
- 
+ 
  
  
  
@@ -2341,9 +2341,9 @@
  
  
  
- 
+ 
  
- 
+ 
  
  
  

++ unsorted.yml ++
--- /var/tmp/diff_new_pack.xbyvfV/_old  2020-06-15 09:22:11.192461267 +0200
+++ /var/tmp/diff_new_pack.xbyvfV/_new  2020-06-15 09:22:11.196461280 +0200
@@ -16734,8 +16734,6 @@
   - python-keybinder 
   - python-keystoneauth1-doc 
   - python-keystoneclient-doc 
-  - python-keystonemiddleware 
-  - python-keystonemiddleware-doc 
   - python-kid-doc 
   - python-killswitch 
   - python-krbV 
@@ -16788,7 +16786,6 @@
   - python-ncclient-doc 
   - python-nemo 
   - python-networkx-doc 
-  - python-neutronclient-doc 
   - python-nlopt 
   - python-nosehtmloutput 
   - python-notify 
@@ -16800,7 +16797,6 @@
   - python-oauth2 
   - python-oauth2-test 
   - python-obexftp 
-  - python-octaviaclient-doc 
   - python-odict 
   - python-openbabel 
   - python-openstackclient-doc 
@@ -18157,7 +18153,6 @@
   - python2-netaddr 
   - python2-netifaces 
   - python2-netmiko 
-  - python2-neutronclient 
   - python2-newt 
   - python2-nine 
   - python2-nltk 
@@ -18197,7 +18192,6 @@
   - python2-oauthlib 
   - python2-objgraph 
   - python2-oci-sdk 
-  - python2-octaviaclient 
   - python2-odfpy 
   - python2-odorik 
   - python2-opcodes 
@@ -20524,7 +20518,6 @@
   - python3-netaddr 
   - python3-netmiko 
   - python3-networkx 
-  - python3-neutronclient 
   - python3-newt 
   - python3-nghttp2 
   - python3-nine 
@@ -20573,7 +20566,6 @@
   - python3-oci-sdk 
   - python3-oct2py 
   - python3-octave-kernel 
-  - python3-octaviaclient 
   - python3-odfpy 
   - python3-odorik 
   - python3-oic 




commit 000release-packages for openSUSE:Leap:15.2:ARM

2020-06-15 Thread root
Hello community,

here is the log from the commit of package 000release-packages for 
openSUSE:Leap:15.2:ARM checked in at 2020-06-15 09:22:07

Comparing /work/SRC/openSUSE:Leap:15.2:ARM/000release-packages (Old)
 and  /work/SRC/openSUSE:Leap:15.2:ARM/.000release-packages.new.3606 (New)


Package is "000release-packages"

Mon Jun 15 09:22:07 2020 rev:183 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
stub.spec: same change
++ weakremovers.inc ++
--- /var/tmp/diff_new_pack.huX1Jn/_old  2020-06-15 09:22:09.024454331 +0200
+++ /var/tmp/diff_new_pack.huX1Jn/_new  2020-06-15 09:22:09.032454357 +0200
@@ -5770,7 +5770,6 @@
 Provides: weakremover(k9s)
 Provides: weakremover(kColorPicker-devel)
 Provides: weakremover(kImageAnnotator-devel)
-Provides: weakremover(kaddressbook-doc)
 Provides: weakremover(kafka-source)
 Provides: weakremover(kail)
 Provides: weakremover(kajaani-kombat)
@@ -9372,6 +9371,8 @@
 Provides: weakremover(python-jupyter_nbconvert-doc)
 Provides: weakremover(python-jupyter_notebook-doc)
 Provides: weakremover(python-jupyter_qtconsole-doc)
+Provides: weakremover(python-keystonemiddleware)
+Provides: weakremover(python-keystonemiddleware-doc)
 Provides: weakremover(python-lammps)
 Provides: weakremover(python-libaddrxlat)
 Provides: weakremover(python-libgpiod)
@@ -9381,6 +9382,8 @@
 Provides: weakremover(python-mpmath-doc)
 Provides: weakremover(python-nautilus-common-devel)
 Provides: weakremover(python-nautilus-common-files)
+Provides: weakremover(python-neutronclient-doc)
+Provides: weakremover(python-octaviaclient-doc)
 Provides: weakremover(python-openstack.nose_plugin)
 Provides: weakremover(python-ovsdbapp-doc)
 Provides: weakremover(python-parted)
@@ -9677,6 +9680,7 @@
 Provides: weakremover(python2-nautilus-devel)
 Provides: weakremover(python2-netifaces)
 Provides: weakremover(python2-networkx)
+Provides: weakremover(python2-neutronclient)
 Provides: weakremover(python2-newt)
 Provides: weakremover(python2-nss)
 Provides: weakremover(python2-numba)
@@ -9687,6 +9691,7 @@
 Provides: weakremover(python2-numpy_1_16_5-gnu-hpc-devel)
 Provides: weakremover(python2-nwdiag)
 Provides: weakremover(python2-oct2py)
+Provides: weakremover(python2-octaviaclient)
 Provides: weakremover(python2-opencv3)
 Provides: weakremover(python2-opengl-accelerate)
 Provides: weakremover(python2-openpyxl)
@@ -10099,12 +10104,14 @@
 Provides: weakremover(python3-mysqlclient)
 Provides: weakremover(python3-nautilus)
 Provides: weakremover(python3-nautilus-devel)
+Provides: weakremover(python3-neutronclient)
 Provides: weakremover(python3-newt)
 Provides: weakremover(python3-nss)
 Provides: weakremover(python3-numba)
 Provides: weakremover(python3-numba-devel)
 Provides: weakremover(python3-numpy_1_17_3-gnu-hpc)
 Provides: weakremover(python3-numpy_1_17_3-gnu-hpc-devel)
+Provides: weakremover(python3-octaviaclient)
 Provides: weakremover(python3-onnx)
 Provides: weakremover(python3-onnx-devel)
 Provides: weakremover(python3-opencv3)
@@ -28517,6 +28524,7 @@
 Provides: weakremover(python-nautilus-devel)
 Provides: weakremover(python-netifaces)
 Provides: weakremover(python-networkx)
+Provides: weakremover(python-neutronclient)
 Provides: weakremover(python-newt)
 Provides: weakremover(python-nghttp2)
 Provides: weakremover(python-nose)