commit lshw for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package lshw for openSUSE:Factory checked in 
at 2018-02-07 18:43:37

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


Package is "lshw"

Wed Feb  7 18:43:37 2018 rev:6 rq:573782 version:B.02.18

Changes:

--- /work/SRC/openSUSE:Factory/lshw/lshw.changes2017-06-07 
09:56:36.104692204 +0200
+++ /work/SRC/openSUSE:Factory/.lshw.new/lshw.changes   2018-02-07 
18:43:41.717772080 +0100
@@ -1,0 +2,10 @@
+Wed Feb  7 15:58:41 UTC 2018 - mplus...@suse.com
+
+- Drop not needed post macros
+- Add ppc enablement patches (bsc#1079846):
+  * lshw-cpuinfo.patch
+  * lshw-devtree_cpunodes.patch 
+  * lshw-devtree_machine_describtion.patch
+  * lshw-dimminfo.patch
+
+---

New:

  lshw-cpuinfo.patch
  lshw-devtree_cpunodes.patch
  lshw-devtree_machine_describtion.patch
  lshw-dimminfo.patch



Other differences:
--
++ lshw.spec ++
--- /var/tmp/diff_new_pack.D6CaUi/_old  2018-02-07 18:43:42.469736872 +0100
+++ /var/tmp/diff_new_pack.D6CaUi/_new  2018-02-07 18:43:42.473736684 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lshw
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013 Pascal Bleser 
 #
 # All modifications and additions to the file contributed by third parties
@@ -23,18 +23,26 @@
 Summary:HardWare LiSter
 License:GPL-2.0
 Group:  Hardware/Other
-Url:https://www.ezix.org/project/wiki/HardwareLiSter
+URL:https://www.ezix.org/project/wiki/HardwareLiSter
 Source: https://www.ezix.org/software/files/lshw-%{version}.tar.gz
 Source1:lshw.desktop.in
 Source2:lshw.png
+# PATCH-FIX-UPSTREAM -- lshw-dimminfo.patch bsc#1079846
+Patch0: lshw-dimminfo.patch
+# PATCH-FIX-UPSTREAM -- lshw-devtree_cpunodes.patch bsc#1079846
+Patch1: lshw-devtree_cpunodes.patch
+# PATCH-FIX-UPSTREAM -- lshw-devtree_machine_describtion.patch bsc#1079846
+Patch2: lshw-devtree_machine_describtion.patch
+# PATCH-FIX-UPSTREAM -- lshw-cpuinfo.patch bsc#1079846
+Patch3: lshw-cpuinfo.patch
 BuildRequires:  gcc-c++
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libpng-devel
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gtk+-2.0) >= 2.4
-Recommends: hwdata
 Recommends: %{name}-lang
+Recommends: hwdata
 %lang_package
 
 %description
@@ -76,6 +84,10 @@
 
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %build
 make \
@@ -103,14 +115,6 @@
 
 %find_lang lshw
 
-%post gui
-%desktop_database_post
-%icon_theme_cache_post
-
-%postun gui
-%desktop_database_postun
-%icon_theme_cache_postun
-
 %files
 %defattr(-,root,root,0755)
 %doc README.md COPYING docs/TODO docs/Changelog docs/lshw.xsd

++ lshw-cpuinfo.patch ++
>From 9a81309286a05f2b088c9898a0e3a16e807532be Mon Sep 17 00:00:00 2001
From: Chandni Verma 
Date: Thu, 20 Oct 2016 19:24:46 +0530
Subject: [PATCH] cpuinfo: Rectify cpuinfo for IBM Power Systems

'/proc/cpuinfo' file on Power Systems represents online CPU threads,
not physical cores. Also we can dynamically change number of threads.

Previous patch added support to parse device tree and display core
information under CPU nodes.

This patch pulls useful info from cpuinfo file and updates CPU nodes.
  - description : Processor description
  - version : Processor version including subversion

Signed-off-by: Chandni Verma 
[Code cleanup, updated description - Vasant]
Signed-off-by: Vasant Hegde 
---
 src/core/cpuinfo.cc | 47 ++-
 1 file changed, 46 insertions(+), 1 deletion(-)

Index: lshw-B.02.18/src/core/cpuinfo.cc
===
--- lshw-B.02.18.orig/src/core/cpuinfo.cc
+++ lshw-B.02.18/src/core/cpuinfo.cc
@@ -13,6 +13,13 @@ __ID("@(#) $Id$");
 
 static int currentcpu = 0;
 
+static inline bool is_system_ppc_ibm(hwNode & node)
+{
+  string desc = node.getDescription();
+
+  return (desc == "PowerNV" || desc == "pSeries Guest" || desc == "pSeries 
LPAR");
+}
+
 static hwNode *getcpu(hwNode & node,
 int n = 0)
 {
@@ -33,6 +40,13 @@ int n = 0)
 return cpu;
   }
 
+  /*
+   * device-tree.cc creates all CPU nodes on Power Systems.
+   * Hence do not create new CPU nodes here.
+   */
+  if (is_system_ppc_ibm(node))
+return NULL;
+
   hwNode *core = node.getChild("core");
 
   if (core)
@@ -49,6 +63,20 @@ int n = 0)
 
 
 #ifdef __powerpc__

commit nginx for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package nginx for openSUSE:Factory checked 
in at 2018-02-07 18:43:05

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


Package is "nginx"

Wed Feb  7 18:43:05 2018 rev:19 rq:573758 version:1.13.7

Changes:

--- /work/SRC/openSUSE:Factory/nginx/nginx.changes  2017-12-19 
10:58:54.504131189 +0100
+++ /work/SRC/openSUSE:Factory/.nginx.new/nginx.changes 2018-02-07 
18:43:08.343334727 +0100
@@ -1,0 +2,12 @@
+Wed Feb  7 15:43:27 UTC 2018 - acherni...@suse.com
+
+- Install /etc/nginx/conf.d directory for custom user configuration
+  files 
+
+---
+Wed Feb  7 15:07:47 UTC 2018 - acherni...@suse.com
+
+- Install /etc/nginx/vhosts.d directory for default installation
+  to house custom virtual hosts configuration files 
+
+---



Other differences:
--
++ nginx.spec ++
--- /var/tmp/diff_new_pack.mJ0NrG/_old  2018-02-07 18:43:09.951259441 +0100
+++ /var/tmp/diff_new_pack.mJ0NrG/_new  2018-02-07 18:43:09.955259254 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package nginx
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -285,6 +285,9 @@
   %{buildroot}%{vim_data_dir}/
 
 mkdir -p %{buildroot}%{_datadir}/nginx/
+mkdir -p %{buildroot}%{ngx_conf_dir}/vhosts.d/
+mkdir -p %{buildroot}%{ngx_conf_dir}/conf.d/
+
 chmod a+rx contrib/geo2nginx.pl
 cp -av contrib/geo2nginx.pl contrib/unicode2nginx/ \
   %{buildroot}%{_datadir}/nginx/
@@ -342,6 +345,8 @@
 
 %files
 %dir %{ngx_conf_dir}/
+%dir %{ngx_conf_dir}/vhosts.d
+%dir %{ngx_conf_dir}/conf.d
 %config(noreplace) %{ngx_conf_dir}/koi-utf
 %config(noreplace) %{ngx_conf_dir}/koi-win
 %config(noreplace) %{ngx_conf_dir}/fastcgi_params






commit perl-Lingua-EN-Inflect-Phrase for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package perl-Lingua-EN-Inflect-Phrase for 
openSUSE:Factory checked in at 2018-02-07 18:43:16

Comparing /work/SRC/openSUSE:Factory/perl-Lingua-EN-Inflect-Phrase (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Lingua-EN-Inflect-Phrase.new (New)


Package is "perl-Lingua-EN-Inflect-Phrase"

Wed Feb  7 18:43:16 2018 rev:2 rq:573769 version:0.19

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Lingua-EN-Inflect-Phrase/perl-Lingua-EN-Inflect-Phrase.changes
  2015-02-16 21:14:11.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Lingua-EN-Inflect-Phrase.new/perl-Lingua-EN-Inflect-Phrase.changes
 2018-02-07 18:43:16.974930580 +0100
@@ -1,0 +2,10 @@
+Wed Feb  7 15:43:51 UTC 2018 - co...@suse.com
+
+- updated to 0.19
+   see /usr/share/doc/packages/perl-Lingua-EN-Inflect-Phrase/Changes
+
+  0.19 2018-01-31 13:59:53
+  - fix for tagged proper nouns and -ity/-ities nouns by Zak B. Elep
+(zakame) (RT#118767)
+
+---

Old:

  Lingua-EN-Inflect-Phrase-0.18.tar.gz

New:

  Lingua-EN-Inflect-Phrase-0.19.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Lingua-EN-Inflect-Phrase.spec ++
--- /var/tmp/diff_new_pack.fgxPq5/_old  2018-02-07 18:43:17.594901551 +0100
+++ /var/tmp/diff_new_pack.fgxPq5/_new  2018-02-07 18:43:17.598901365 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Lingua-EN-Inflect-Phrase
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,15 @@
 
 
 Name:   perl-Lingua-EN-Inflect-Phrase
-Version:0.18
+Version:0.19
 Release:0
 %define cpan_name Lingua-EN-Inflect-Phrase
 Summary:Inflect short English Phrases
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Lingua-EN-Inflect-Phrase/
-Source: 
http://www.cpan.org/authors/id/R/RK/RKITOVER/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/R/RK/RKITOVER/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -72,6 +73,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes README
+%license LICENSE
 
 %changelog

++ Lingua-EN-Inflect-Phrase-0.18.tar.gz -> 
Lingua-EN-Inflect-Phrase-0.19.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Lingua-EN-Inflect-Phrase-0.18/Changes 
new/Lingua-EN-Inflect-Phrase-0.19/Changes
--- old/Lingua-EN-Inflect-Phrase-0.18/Changes   2012-12-27 06:09:58.0 
+0100
+++ new/Lingua-EN-Inflect-Phrase-0.19/Changes   2018-01-31 19:59:56.0 
+0100
@@ -1,5 +1,9 @@
 Revision history for Lingua-EN-Inflect-Phrase
 
+0.19 2018-01-31 13:59:53
+- fix for tagged proper nouns and -ity/-ities nouns by Zak B. Elep
+  (zakame) (RT#118767)
+
 0.18 2012-12-27 00:09:43
 - fix meta repository info (RT#82274)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Lingua-EN-Inflect-Phrase-0.18/LICENSE 
new/Lingua-EN-Inflect-Phrase-0.19/LICENSE
--- old/Lingua-EN-Inflect-Phrase-0.18/LICENSE   2012-12-27 06:09:58.0 
+0100
+++ new/Lingua-EN-Inflect-Phrase-0.19/LICENSE   2018-01-31 19:59:56.0 
+0100
@@ -1,4 +1,4 @@
-This software is copyright (c) 2012 by Rafael Kitover.
+This software is copyright (c) 2018 by Rafael Kitover.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2012 by Rafael Kitover.
+This software is Copyright (c) 2018 by Rafael Kitover.
 
 This is free software, licensed under:
 
@@ -22,7 +22,7 @@
  Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
- 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+ 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
@@ -272,7 +272,7 @@
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2012 by Rafael Kitover.
+This software is Copyright (c) 2018 by Rafael Kitover.
 
 This is free software, licensed 

commit perl-DBIx-Class for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package perl-DBIx-Class for openSUSE:Factory 
checked in at 2018-02-07 18:43:25

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


Package is "perl-DBIx-Class"

Wed Feb  7 18:43:25 2018 rev:14 rq:573772 version:0.082841

Changes:

--- /work/SRC/openSUSE:Factory/perl-DBIx-Class/perl-DBIx-Class.changes  
2017-10-08 20:15:55.654131410 +0200
+++ /work/SRC/openSUSE:Factory/.perl-DBIx-Class.new/perl-DBIx-Class.changes 
2018-02-07 18:43:28.298400395 +0100
@@ -1,0 +2,23 @@
+Wed Feb  7 15:19:50 UTC 2018 - co...@suse.com
+
+- updated to 0.082841
+   see /usr/share/doc/packages/perl-DBIx-Class/Changes
+
+  
+  0.082841 2018-01-29 08:10 (UTC)
+  * Test-suite fixup changes only - no reason to upgrade, wait for 0.082850
+  
+  * Misc
+  - Unblock DBD::SQLite (RT#118395)
+  - Fix missing ORDER BY leading to failures of t/prefetch/grouped.t
+under upcoming libsqlite (RT#117271)
+  - Temporarily disable a non-critical portion of test failing on
+upcoming libsqlite, proper fix coming in 0.082850 (RT#119845)
+  - Add test workaround for ( largely irrelevant ) RT#120129
+  - Add temporary test-workaround for a devrel of DBD::SQLite
+RT#124227 / 
https://twitter.com/dbix_class/status/957271153751527424
+  - Add workaround for one of the most damaging "improvements" made
+during the modern-perl-era (RT#120827)
+  - Fix malformed README file encoding (RT#122028)
+
+---

Old:

  DBIx-Class-0.082840.tar.gz

New:

  DBIx-Class-0.082841.tar.gz



Other differences:
--
++ perl-DBIx-Class.spec ++
--- /var/tmp/diff_new_pack.r9yVdC/_old  2018-02-07 18:43:29.026366311 +0100
+++ /var/tmp/diff_new_pack.r9yVdC/_new  2018-02-07 18:43:29.030366124 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-DBIx-Class
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-DBIx-Class
-Version:0.082840
+Version:0.082841
 Release:0
 %define cpan_name DBIx-Class
 Summary:Extensible and flexible object <-> relational mapper

++ DBIx-Class-0.082840.tar.gz -> DBIx-Class-0.082841.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBIx-Class-0.082840/AUTHORS 
new/DBIx-Class-0.082841/AUTHORS
--- old/DBIx-Class-0.082840/AUTHORS 2016-06-20 09:02:36.0 +0200
+++ new/DBIx-Class-0.082841/AUTHORS 2018-01-29 09:17:32.0 +0100
@@ -166,7 +166,7 @@
 rdj: Ryan D Johnson 
 Relequestual: Ben Hutton 
 renormalist: Steffen Schwigon 
-ribasushi: Peter Rabbitson 
+ribasushi: Peter Rabbitson 
 rjbs: Ricardo Signes 
 Robert Krimen 
 Robert Olson 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBIx-Class-0.082840/Changes 
new/DBIx-Class-0.082841/Changes
--- old/DBIx-Class-0.082840/Changes 2016-06-20 08:58:05.0 +0200
+++ new/DBIx-Class-0.082841/Changes 2018-01-29 09:12:11.0 +0100
@@ -1,5 +1,22 @@
 Revision history for DBIx::Class
 
+
+0.082841 2018-01-29 08:10 (UTC)
+* Test-suite fixup changes only - no reason to upgrade, wait for 0.082850
+
+* Misc
+- Unblock DBD::SQLite (RT#118395)
+- Fix missing ORDER BY leading to failures of t/prefetch/grouped.t
+  under upcoming libsqlite (RT#117271)
+- Temporarily disable a non-critical portion of test failing on
+  upcoming libsqlite, proper fix coming in 0.082850 (RT#119845)
+- Add test workaround for ( largely irrelevant ) RT#120129
+- Add temporary test-workaround for a devrel of DBD::SQLite
+  RT#124227 / https://twitter.com/dbix_class/status/957271153751527424
+- Add workaround for one of the most damaging "improvements" made
+  during the modern-perl-era (RT#120827)
+- Fix malformed README file encoding (RT#122028)
+
 0.082840 2016-06-20 07:02 (UTC)
 * New Features
 - When using non-scalars (e.g. arrays) as literal bind values it is no
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBIx-Class-0.082840/LICENSE 

commit perl-Cpanel-JSON-XS for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package perl-Cpanel-JSON-XS for 
openSUSE:Factory checked in at 2018-02-07 18:43:35

Comparing /work/SRC/openSUSE:Factory/perl-Cpanel-JSON-XS (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Cpanel-JSON-XS.new (New)


Package is "perl-Cpanel-JSON-XS"

Wed Feb  7 18:43:35 2018 rev:10 rq:573776 version:4.01

Changes:

--- /work/SRC/openSUSE:Factory/perl-Cpanel-JSON-XS/perl-Cpanel-JSON-XS.changes  
2017-09-12 19:57:43.355439673 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Cpanel-JSON-XS.new/perl-Cpanel-JSON-XS.changes 
2018-02-07 18:43:36.83932 +0100
@@ -1,0 +2,29 @@
+Wed Feb  7 15:15:51 UTC 2018 - co...@suse.com
+
+- updated to 4.01
+   see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
+
+  4.01 2018-02-03 (rurban)
+  - Fix centos7 locale crash (#101 McA), fix required for all
+threaded perl's < 5.22 with glibc.
+  
+  4.00 2018-02-02 (rurban,pali)
+  - No changes
+  
+  3.99_03 2018-01-30 (rurban,pali)
+  - Fix uselocale() code.
+  - Probe for uselocale and xlocale.h with <5.22 threaded.
+  
+  3.99_02 2018-01-30 (rurban,pali)
+  - Avoid setlocale race in threads with non-C locales, where the 
threads differ
+in the LC_NUMERIC locale. (#99 pali)
+  
+  3.99_01 2018-01-30 (rurban,pali)
+  - Added Cpanel::JSON::XS::Type as 2nd optional encode argument. (#94 
pali)
+  - Removed calling get magic hooks twice in encode.
+  
+  3.0240 2017-12-17 (rurban)
+  - Simplify >allow_singlequote check, coverity cid #165321
+  - Deprecate UTF-16 or UTF-32 BOM's: RFC 8259.
+
+---

Old:

  Cpanel-JSON-XS-3.0239.tar.gz

New:

  Cpanel-JSON-XS-4.01.tar.gz



Other differences:
--
++ perl-Cpanel-JSON-XS.spec ++
--- /var/tmp/diff_new_pack.XXPp4G/_old  2018-02-07 18:43:37.277979957 +0100
+++ /var/tmp/diff_new_pack.XXPp4G/_new  2018-02-07 18:43:37.281979770 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Cpanel-JSON-XS
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Cpanel-JSON-XS
-Version:3.0239
+Version:4.01
 Release:0
 %define cpan_name Cpanel-JSON-XS
 Summary:Cpanel Fork of Json::Xs, Fast and Correct Serializing

++ Cpanel-JSON-XS-3.0239.tar.gz -> Cpanel-JSON-XS-4.01.tar.gz ++
 2283 lines of diff (skipped)




commit rubygem-faraday-0_12 for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package rubygem-faraday-0_12 for 
openSUSE:Factory checked in at 2018-02-07 18:43:30

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


Package is "rubygem-faraday-0_12"

Wed Feb  7 18:43:30 2018 rev:1 rq:573775 version:0.12.2

Changes:

New Changes file:

--- /dev/null   2018-01-05 12:14:39.755488130 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-faraday-0_12.new/rubygem-faraday-0_12.changes
   2018-02-07 18:43:33.706147196 +0100
@@ -0,0 +1,9 @@
+---
+Tue Feb  6 11:32:53 UTC 2018 - jmassaguer...@suse.com
+
+- Add 0_12 suffix cause oauth2 needs this version 
https://rubygems.org/gems/oauth2 
+
+---
+Wed Dec 20 15:44:07 UTC 2017 - msab...@suse.com
+
+- Initial commit with faraday 0.9.2

New:

  faraday-0.12.2.gem
  gem2rpm.yml
  rubygem-faraday-0_12.changes
  rubygem-faraday-0_12.spec



Other differences:
--
++ rubygem-faraday-0_12.spec ++
#
# spec file for package rubygem-faraday-0_12
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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


#
# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
# All sections marked as MANUAL, license headers, summaries and descriptions
# can be maintained in that file. Please consult this file before editing any
# of those fields
#

Name:   rubygem-faraday-0_12
Version:0.12.2
Release:0
%define mod_name faraday
%define mod_full_name %{mod_name}-%{version}
%define mod_version_suffix -0_12
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  ruby-macros >= 5
BuildRequires:  %{ruby >= 1.9}
BuildRequires:  %{rubygem gem2rpm}
Url:https://github.com/lostisland/faraday
Source: http://rubygems.org/gems/%{mod_full_name}.gem
Source1:gem2rpm.yml
Summary:HTTP/REST API client library
License:MIT
Group:  Development/Languages/Ruby

%description
HTTP/REST API client library.

%prep

%build

%install
%gem_install \
  --doc-files="LICENSE.md README.md" \
  -f

%gem_packages

%changelog
++ gem2rpm.yml ++
# ---
# ## used by gem2rpm
# :summary: this is a custom summary
# ## used by gem2rpm
# :description: |-
#   this is a custom description
#
#   it can be multiline
# ## used by gem2rpm
# :license: MIT or Ruby
# ## used by gem2rpm and gem_packages
 :version_suffix: '-0_12'
# ## used by gem2rpm and gem_packages
# :disable_docs: true
# ## used by gem2rpm
# :disable_automatic_rdoc_dep: true
# ## used by gem2rpm
# :preamble: |-
#   BuildRequires: foobar
#   Requires: foobar
# ## used by gem2rpm
# :patches:
#   foo.patch: -p1
#   bar.patch: 
# ## used by gem2rpm
# :sources:
# - foo.desktop
# - bar.desktop
# :gem_install_args: ''
# ## used by gem2rpm
# :pre_install: |-
#   %if 0%{?use_system_libev}
#   export USE_VENDORED_LIBEV="no"
#   %endif
# ## used by gem2rpm
# :post_install: |-
#   # delete custom files here or do other fancy stuff
#   install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse
# ## used by gem2rpm
# :testsuite_command: |-
#   (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name} && rake test)
# ## used by gem2rpm
# :filelist: |-
#   /usr/bin/gem2rpm-opensuse
# ## used by gem2rpm
# :scripts:
#   :post: |-
# /bin/echo foo
# ## used by gem_packages
# :main:
#   :preamble: |-
# Requires: util-linux
# Recommends: pwgen
#   :filelist: |-
# /usr/bin/gem2rpm-opensuse
# ## used by gem_packages
# :custom:
#   apache:
# :preamble: |-
#   Requires: .
# :filelist: |-
#   /etc/apache2/conf.d/passenger.conf
# :summary: Custom summary is optional
# :description: |-
#   Custom description is optional
#
#   bar
# :post: |-
#   /bin/echo foo
#



commit perl-JSON-MaybeXS for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package perl-JSON-MaybeXS for 
openSUSE:Factory checked in at 2018-02-07 18:43:21

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


Package is "perl-JSON-MaybeXS"

Wed Feb  7 18:43:21 2018 rev:4 rq:573770 version:1.003010

Changes:

--- /work/SRC/openSUSE:Factory/perl-JSON-MaybeXS/perl-JSON-MaybeXS.changes  
2017-03-28 15:20:54.452737603 +0200
+++ /work/SRC/openSUSE:Factory/.perl-JSON-MaybeXS.new/perl-JSON-MaybeXS.changes 
2018-02-07 18:43:22.814657154 +0100
@@ -1,0 +2,11 @@
+Wed Feb  7 15:42:12 UTC 2018 - co...@suse.com
+
+- updated to 1.003010
+   see /usr/share/doc/packages/perl-JSON-MaybeXS/Changes
+
+  1.003010 - 2018-01-28
+   - use bundled ExtUtils::HasCompiler rather than ExtUtils::CBuilder to detect
+ compiler availability.
+   - clarify exported JSON in documentation
+
+---

Old:

  JSON-MaybeXS-1.003009.tar.gz

New:

  JSON-MaybeXS-1.003010.tar.gz



Other differences:
--
++ perl-JSON-MaybeXS.spec ++
--- /var/tmp/diff_new_pack.AIK130/_old  2018-02-07 18:43:23.442627751 +0100
+++ /var/tmp/diff_new_pack.AIK130/_new  2018-02-07 18:43:23.446627564 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-JSON-MaybeXS
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,21 +17,20 @@
 
 
 Name:   perl-JSON-MaybeXS
-Version:1.003009
+Version:1.003010
 Release:0
 %define cpan_name JSON-MaybeXS
 Summary:Use L with a fallback to L and 
L
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/JSON-MaybeXS/
-Source0:
https://cpan.metacpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/H/HA/HAARG/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Cpanel::JSON::XS) >= 2.3310
-BuildRequires:  perl(ExtUtils::CBuilder) >= 0.27
 BuildRequires:  perl(JSON::PP) >= 2.27300
 BuildRequires:  perl(Test::More) >= 0.88
 Requires:   perl(Cpanel::JSON::XS) >= 2.3310

++ JSON-MaybeXS-1.003009.tar.gz -> JSON-MaybeXS-1.003010.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/JSON-MaybeXS-1.003009/Changes 
new/JSON-MaybeXS-1.003010/Changes
--- old/JSON-MaybeXS-1.003009/Changes   2017-02-27 08:26:50.0 +0100
+++ new/JSON-MaybeXS-1.003010/Changes   2018-01-28 02:42:13.0 +0100
@@ -1,5 +1,10 @@
 Revision history for JSON-MaybeXS
 
+1.003010 - 2018-01-28
+ - use bundled ExtUtils::HasCompiler rather than ExtUtils::CBuilder to detect
+   compiler availability.
+ - clarify exported JSON in documentation
+
 1.003009 - 2017-02-27
  - fix tests to no longer rely on . being in @INC (RT#120404)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/JSON-MaybeXS-1.003009/MANIFEST 
new/JSON-MaybeXS-1.003010/MANIFEST
--- old/JSON-MaybeXS-1.003009/MANIFEST  2017-02-27 08:27:21.0 +0100
+++ new/JSON-MaybeXS-1.003010/MANIFEST  2018-01-28 02:42:23.0 +0100
@@ -1,4 +1,5 @@
 Changes
+inc/ExtUtils/HasCompiler.pm
 lib/JSON/MaybeXS.pm
 maint/Makefile.PL.include
 Makefile.PL
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/JSON-MaybeXS-1.003009/META.json 
new/JSON-MaybeXS-1.003010/META.json
--- old/JSON-MaybeXS-1.003009/META.json 2017-02-27 08:27:21.0 +0100
+++ new/JSON-MaybeXS-1.003010/META.json 2018-01-28 02:42:22.0 +0100
@@ -4,7 +4,7 @@
   "mst - Matt S. Trout (cpan:MSTROUT) "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.2501, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter 
version 2.150010",
"keywords" : [
   "json",
   "serializer",
@@ -22,16 +22,14 @@
"no_index" : {
   "directory" : [
  "t",
- "inc"
+ "xt"
   ]
},
"prereqs" : {
+  "build" : {},
   "configure" : {
  "requires" : {
-"ExtUtils::CBuilder" : "0.27",
-"ExtUtils::MakeMaker" : "0",
-"File::Spec" : "0",
-"File::Temp" : "0"
+  

commit perl-B-Keywords for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package perl-B-Keywords for openSUSE:Factory 
checked in at 2018-02-07 18:43:10

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


Package is "perl-B-Keywords"

Wed Feb  7 18:43:10 2018 rev:19 rq:573766 version:1.18

Changes:

--- /work/SRC/openSUSE:Factory/perl-B-Keywords/perl-B-Keywords.changes  
2018-01-24 15:30:32.898238939 +0100
+++ /work/SRC/openSUSE:Factory/.perl-B-Keywords.new/perl-B-Keywords.changes 
2018-02-07 18:43:14.375052310 +0100
@@ -1,0 +2,12 @@
+Wed Feb  7 15:08:24 UTC 2018 - co...@suse.com
+
+- updated to 1.18
+   see /usr/share/doc/packages/perl-B-Keywords/Changes
+
+  1.17 Mon Jan 29 17:57:05 CET 2018 rurban
+- Added 5.27.8 changes, whereis/whereso is gone for good.
+  There's still a chance for perl6 compat
+  1.18 Mon Jan 29 18:09:23 CET 2018 rurban
+- Oops, forgot break
+
+---

Old:

  B-Keywords-1.16.tar.gz

New:

  B-Keywords-1.18.tar.gz



Other differences:
--
++ perl-B-Keywords.spec ++
--- /var/tmp/diff_new_pack.dah16M/_old  2018-02-07 18:43:14.943025717 +0100
+++ /var/tmp/diff_new_pack.dah16M/_new  2018-02-07 18:43:14.947025530 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-B-Keywords
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,9 +17,9 @@
 
 
 Name:   perl-B-Keywords
-Version:1.16
+Version:1.18
 Release:0
-#Upstream:  2017 Reini Urban, All rights reserved. This program is free 
software; you can redistribute it and/or modify it under the terms of either: 
a) the GNU General Public License as published by the Free Software Foundation; 
version 2, or b) the "Artistic License" which comes with Perl.
+#Upstream:  2017, 2018 Reini Urban, All rights reserved. This program is free 
software; you can redistribute it and/or modify it under the terms of either: 
a) the GNU General Public License as published by the Free Software Foundation; 
version 2, or b) the "Artistic License" which comes with Perl.
 %define cpan_name B-Keywords
 Summary:Lists of reserved barewords and symbol names
 License:GPL-2.0 or Artistic-1.0

++ B-Keywords-1.16.tar.gz -> B-Keywords-1.18.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Keywords-1.16/Changes new/B-Keywords-1.18/Changes
--- old/B-Keywords-1.16/Changes 2017-12-28 13:00:48.0 +0100
+++ new/B-Keywords-1.18/Changes 2018-01-29 18:09:40.0 +0100
@@ -81,3 +81,8 @@
   - Added 5.27.7 changes, RT #123948
   - Added cperl class keywords
   - Added keywords per version back to 5.004
+1.17 Mon Jan 29 17:57:05 CET 2018 rurban
+  - Added 5.27.8 changes, whereis/whereso is gone for good.
+There's still a chance for perl6 compat
+1.18 Mon Jan 29 18:09:23 CET 2018 rurban
+  - Oops, forgot break
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Keywords-1.16/META.json 
new/B-Keywords-1.18/META.json
--- old/B-Keywords-1.16/META.json   2017-12-28 13:02:19.0 +0100
+++ new/B-Keywords-1.18/META.json   2018-01-29 18:10:31.0 +0100
@@ -4,7 +4,7 @@
   "Joshua ben Jore "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 8.3004, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "unknown"
],
@@ -45,6 +45,6 @@
  "url" : "http://github.com/rurban/b-keywords;
   }
},
-   "version" : "1.16",
-   "x_serialization_backend" : "JSON::PP version 2.94_01"
+   "version" : "1.18",
+   "x_serialization_backend" : "JSON::PP version 2.97001"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Keywords-1.16/META.yml new/B-Keywords-1.18/META.yml
--- old/B-Keywords-1.16/META.yml2017-12-28 13:02:19.0 +0100
+++ new/B-Keywords-1.18/META.yml2018-01-29 18:10:31.0 +0100
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 8.3004, CPAN::Meta::Converter 
version 2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 
2.150010'
 license: unknown
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -22,5 +22,5 @@
 

commit perl-Devel-CheckOS for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package perl-Devel-CheckOS for 
openSUSE:Factory checked in at 2018-02-07 18:43:23

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


Package is "perl-Devel-CheckOS"

Wed Feb  7 18:43:23 2018 rev:7 rq:573771 version:1.81

Changes:

--- /work/SRC/openSUSE:Factory/perl-Devel-CheckOS/perl-Devel-CheckOS.changes
2017-05-27 13:20:01.173470613 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-CheckOS.new/perl-Devel-CheckOS.changes   
2018-02-07 18:43:23.766612581 +0100
@@ -1,0 +2,9 @@
+Wed Feb  7 15:24:31 UTC 2018 - co...@suse.com
+
+- updated to 1.81
+   see /usr/share/doc/packages/perl-Devel-CheckOS/CHANGELOG
+
+  1.812018-01-23  Restore 5.6 and 5.8 compatibility;
+  Cope better in tests when @INC is humungous
+
+---

Old:

  Devel-CheckOS-1.80.tar.gz

New:

  Devel-CheckOS-1.81.tar.gz



Other differences:
--
++ perl-Devel-CheckOS.spec ++
--- /var/tmp/diff_new_pack.h5yiPK/_old  2018-02-07 18:43:24.382583740 +0100
+++ /var/tmp/diff_new_pack.h5yiPK/_new  2018-02-07 18:43:24.386583553 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-CheckOS
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Devel-CheckOS
-Version:1.80
+Version:1.81
 Release:0
 #Upstream:  This software is free-as-in-speech software, and may be used, 
distributed, and modified under the terms of either the GNU General Public 
Licence version 2 or the Artistic Licence. It's up to you which one you use. 
The full text of the licences can be found in the files GPL2.txt and 
ARTISTIC.txt, respectively.
 %define cpan_name Devel-CheckOS

++ Devel-CheckOS-1.80.tar.gz -> Devel-CheckOS-1.81.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckOS-1.80/CHANGELOG 
new/Devel-CheckOS-1.81/CHANGELOG
--- old/Devel-CheckOS-1.80/CHANGELOG2017-05-25 00:30:17.0 +0200
+++ new/Devel-CheckOS-1.81/CHANGELOG2018-01-23 23:55:36.0 +0100
@@ -1,3 +1,6 @@
+1.812018-01-23  Restore 5.6 and 5.8 compatibility;
+Cope better in tests when @INC is humungous
+
 1.802017-05-24  Fix bug where tests would fail if
   AUTOMATED_TESTING=1 on perl 5.26 and higher;
 For some reason that made it break on 5.8.9,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckOS-1.80/MANIFEST 
new/Devel-CheckOS-1.81/MANIFEST
--- old/Devel-CheckOS-1.80/MANIFEST 2017-05-25 00:33:55.0 +0200
+++ new/Devel-CheckOS-1.81/MANIFEST 2018-01-24 00:07:01.0 +0100
@@ -97,7 +97,6 @@
 t/61-failing-mockery.t
 t/16-expn.t
 lib/Devel/AssertOS/EBCDIC.pm
-lib/Devel/AssertOS/MacOSX/v10_5.pm
 lib/Devel/AssertOS/GNUkFreeBSD.pm
 t/62-assertos-do-not-want.t
 lib/Devel/AssertOS/Bitrig.pm
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckOS-1.80/META.json 
new/Devel-CheckOS-1.81/META.json
--- old/Devel-CheckOS-1.80/META.json2017-05-25 00:33:55.0 +0200
+++ new/Devel-CheckOS-1.81/META.json2018-01-24 00:07:00.0 +0100
@@ -4,9 +4,10 @@
   "unknown"
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter 
version 2.150005",
+   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter 
version 2.150001",
"license" : [
-  "unknown"
+  "unknown",
+  "open_source"
],
"meta-spec" : {
   "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
@@ -49,6 +50,5 @@
  "url" : "https://github.com/DrHyde/perl-modules-Devel-CheckOS;
   }
},
-   "version" : "1.80",
-   "x_serialization_backend" : "JSON::PP version 2.27300_01"
+   "version" : "1.81"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckOS-1.80/META.yml 
new/Devel-CheckOS-1.81/META.yml
--- old/Devel-CheckOS-1.80/META.yml 2017-05-25 00:33:55.0 +0200
+++ new/Devel-CheckOS-1.81/META.yml 2018-01-24 00:07:00.0 +0100
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter 
version 

commit perl-MIME-Types for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package perl-MIME-Types for openSUSE:Factory 
checked in at 2018-02-07 18:43:14

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


Package is "perl-MIME-Types"

Wed Feb  7 18:43:14 2018 rev:42 rq:573767 version:2.17

Changes:

--- /work/SRC/openSUSE:Factory/perl-MIME-Types/perl-MIME-Types.changes  
2017-11-15 16:58:40.158122848 +0100
+++ /work/SRC/openSUSE:Factory/.perl-MIME-Types.new/perl-MIME-Types.changes 
2018-02-07 18:43:15.914980208 +0100
@@ -1,0 +2,6 @@
+Wed Feb  7 15:46:47 UTC 2018 - co...@suse.com
+
+- updated to 2.17
+   see /usr/share/doc/packages/perl-MIME-Types/ChangeLog
+
+---

Old:

  MIME-Types-2.14.tar.gz

New:

  MIME-Types-2.17.tar.gz



Other differences:
--
++ perl-MIME-Types.spec ++
--- /var/tmp/diff_new_pack.eGJjRr/_old  2018-02-07 18:43:16.658945375 +0100
+++ /var/tmp/diff_new_pack.eGJjRr/_new  2018-02-07 18:43:16.658945375 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MIME-Types
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-MIME-Types
-Version:2.14
+Version:2.17
 Release:0
 %define cpan_name MIME-Types
 Summary:Definition of MIME types
@@ -63,6 +63,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc ChangeLog README
+%doc ChangeLog README README.md
 
 %changelog

++ MIME-Types-2.14.tar.gz -> MIME-Types-2.17.tar.gz ++
 4805 lines of diff (skipped)




commit multitail for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package multitail for openSUSE:Factory 
checked in at 2018-02-07 18:42:58

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


Package is "multitail"

Wed Feb  7 18:42:58 2018 rev:14 rq:573728 version:6.4.2

Changes:

--- /work/SRC/openSUSE:Factory/multitail/multitail.changes  2015-08-23 
17:44:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.multitail.new/multitail.changes 2018-02-07 
18:43:03.303570698 +0100
@@ -1,0 +2,11 @@
+Wed Feb  7 05:45:03 UTC 2018 - avin...@opensuse.org
+
+- Update to 6.4.2
+  * Marker-line, tabs and allow to map delete as backspace
+- use https urls
+- cleanup with spec-cleaner
+- other spec cleanups
+  * simplify install
+  * remove no no longer needed sed and chmod
+
+---

Old:

  multitail-6.4.1.tgz

New:

  multitail-6.4.2.tgz



Other differences:
--
++ multitail.spec ++
--- /var/tmp/diff_new_pack.IuD9eE/_old  2018-02-07 18:43:04.095533617 +0100
+++ /var/tmp/diff_new_pack.IuD9eE/_new  2018-02-07 18:43:04.099533430 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package multitail
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2010-2012 Pascal Bleser 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,19 +18,18 @@
 
 
 Name:   multitail
-Version:6.4.1
+Version:6.4.2
 Release:0
 Summary:Tail Multiple Files
 License:GPL-2.0+
 Group:  System/X11/Terminals
-Url:http://www.vanheusden.com/multitail/
-Source: http://www.vanheusden.com/multitail/multitail-%{version}.tgz
+Url:https://www.vanheusden.com/multitail/
+Source: https://www.vanheusden.com/multitail/%{name}-%{version}.tgz
 # patch from 
https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-text/multitail/files/
 Patch0: multitail-6.4.1-gentoo.patch
 Patch3: multitail-fix_missing_proto_do_check_for_mail.patch
 BuildRequires:  ncurses-devel
-BuildRequires:  pkg-config
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  pkgconfig
 
 %description
 MultiTail lets you view one or multiple files like the original
@@ -53,38 +52,33 @@
 %patch0 -p1
 %patch3
 
-sed -i 's/\r//g' manual.html
-chmod 644 manual.html
-
+sed -i 's/\.new//g' Makefile
 sed -i 's|%{_sysconfdir}/%{name}|%{_datadir}/%{name}|g' "%{name}.conf"
 
 %build
 export CFLAGS="%{optflags} -I%{_includedir}/ncurses"
 #as there is no .pc for ncurses in some older releases, specify manually
 export LDFLAGS="-lpanelw -lncursesw "
-make \
+make %{?_smp_mflags} \
 PKG_CONFIG="pkg-config" \
 UTF8_SUPPORT=yes \
-CONFIG_FILE="%{_sysconfdir}/multitail.conf"
+CONFIG_FILE="%{_sysconfdir}/%{name}.conf"
 
 %install
-install -dm 755 %{buildroot}%{_sysconfdir}
-install  -m 644 %{name}.conf \
-%{buildroot}%{_sysconfdir}/
-
-install -dm 755 %{buildroot}%{_bindir}
-install -m 755 %{name} \
-%{buildroot}%{_bindir}/
-
-install -dm 755 %{buildroot}%{_mandir}/man1
-install  -m 644 %{name}.1 \
-%{buildroot}%{_mandir}/man1
+%make_install
+
+# docs are shipped already
+rm -fr %{buildroot}%{_datadir}/doc/%{name}-%{version}
 
 %files
-%defattr(-, root, root)
 %doc *.txt manual*.html
 %config(noreplace) %{_sysconfdir}/%{name}.conf
-%{_bindir}/multitail
-%{_mandir}/man1/multitail.1*
+%{_bindir}/%{name}
+%{_mandir}/man1/%{name}.1%{ext_man}
+%dir %{_sysconfdir}/%{name}
+%{_sysconfdir}/%{name}/colors-example.pl
+%{_sysconfdir}/%{name}/colors-example.sh
+%{_sysconfdir}/%{name}/convert-geoip.pl
+%{_sysconfdir}/%{name}/convert-simple.pl
 
 %changelog

++ multitail-6.4.1.tgz -> multitail-6.4.2.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/multitail-6.4.1/makefile.macosx 
new/multitail-6.4.2/makefile.macosx
--- old/multitail-6.4.1/makefile.macosx 2014-05-01 14:54:06.0 +0200
+++ new/multitail-6.4.2/makefile.macosx 2015-03-16 11:38:21.0 +0100
@@ -6,7 +6,7 @@
 LDFLAGS=-lpanel -lncurses -lm $(DEBUG)
 CFLAGS=-O2 -D$(shell uname) -DVERSION=\"$(VERSION)\" $(DEBUG) 
-DCONFIG_FILE=\"$(CONFIG_FILE)\"
 
-OBJS=utils.o mt.o error.o my_pty.o term.o scrollback.o help.o mem.o cv.o 
selbox.o stripstring.o color.o misc.o ui.o exec.o diff.o config.o cmdline.o 
globals.o history.o
+OBJS=utils.o mt.o error.o my_pty.o term.o scrollback.o help.o mem.o cv.o 
selbox.o stripstring.o color.o misc.o ui.o exec.o diff.o config.o cmdline.o 
globals.o history.o xclip.o
 
 all: multitail
 
diff -urN '--exclude=CVS' 

commit 96BoardsGPIO for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package 96BoardsGPIO for openSUSE:Factory 
checked in at 2018-02-07 18:43:03

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


Package is "96BoardsGPIO"

Wed Feb  7 18:43:03 2018 rev:2 rq:573729 version:0.0+git.20170225

Changes:

--- /work/SRC/openSUSE:Factory/96BoardsGPIO/96BoardsGPIO.changes
2017-08-10 14:11:08.420587143 +0200
+++ /work/SRC/openSUSE:Factory/.96BoardsGPIO.new/96BoardsGPIO.changes   
2018-02-07 18:43:05.391472939 +0100
@@ -1,0 +2,6 @@
+Wed Jan 31 13:41:50 UTC 2018 - mplus...@suse.com
+
+- Build only python3 version of bindings
+- Install placeholder config file (boo#1078266)
+
+---



Other differences:
--
++ 96BoardsGPIO.spec ++
--- /var/tmp/diff_new_pack.zIwI0S/_old  2018-02-07 18:43:06.067441289 +0100
+++ /var/tmp/diff_new_pack.zIwI0S/_new  2018-02-07 18:43:06.071441101 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package 96BoardsGPIO
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 Summary:A library to make GPIO use across 96Boards uniform
 License:LGPL-2.1
 Group:  Development/Libraries/C and C++
-Url:https://github.com/96boards/96BoardsGPIO
+URL:https://github.com/96boards/96BoardsGPIO
 Source: %{name}-%{version}.tar.xz
 Patch0: 96BoardsGPIO-implicit-declaration.patch
 BuildRequires:  autoconf
@@ -31,7 +31,7 @@
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(libsoc)
-BuildRequires:  pkgconfig(python2)
+BuildRequires:  pkgconfig(python3)
 # Usefull only on arm but x86_64 is faster for building/testing
 ExclusiveArch:  aarch64 x86_64
 
@@ -99,12 +99,12 @@
 
 This package contains common config files for %{name}.
 
-%package -n python-%{name}
+%package -n python3-%{name}
 Summary:Python bindings for %{name}
 Group:  Development/Languages/Python
 Requires:   lib%{name}%{sover} = %{version}
 
-%description -n python-%{name}
+%description -n python3-%{name}
 This is the rudimentary beginnings of the 96BoardGPIO library to control
 real world hardware via the GPIO on the 96Boards family of boards that
 confirm to the CE spec.
@@ -153,36 +153,35 @@
 
 %build
 autoreconf -fiv
+export PYTHON="python3"
 %configure \
   --enable-static=no
 make %{?_smp_mflags}
 
 %install
 %make_install
+touch %{buildroot}%{_sysconfdir}/libsoc_gpio.conf
 rm -rf %{buildroot}%{_libdir}/lib96BoardsGPIO.la
 
 %post -n lib%{name}%{sover} -p /sbin/ldconfig
 %postun -n lib%{name}%{sover} -p /sbin/ldconfig
 
 %files -n lib%{name}%{sover}
-%defattr(-,root,root)
 %{_libdir}/lib%{name}.so.%{sover}*
 
 %files -n %{name}-common
-%defattr(-,root,root)
 %doc LICENSE
+%config %{_sysconfdir}/libsoc_gpio.conf
 %dir %{_sysconfdir}/X11/Xsession.d
 %config %{_sysconfdir}/X11/Xsession.d/pin_mappings.sh
 %config %{_sysconfdir}/profile.d/pin_mappings.sh
 
 %files devel
-%defattr(-,root,root)
 %{_includedir}/gpio.h
 %{_libdir}/lib%{name}.so
 %{_libdir}/pkgconfig/%{name}.pc
 
-%files -n python-%{name}
-%defattr(-,root,root)
-%{python_sitelib}/*
+%files -n python3-%{name}
+%{python3_sitelib}/*
 
 %changelog




commit stunnel for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package stunnel for openSUSE:Factory checked 
in at 2018-02-07 18:42:12

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


Package is "stunnel"

Wed Feb  7 18:42:12 2018 rev:12 rq:573623 version:5.44

Changes:

--- /work/SRC/openSUSE:Factory/stunnel/stunnel.changes  2018-02-06 
16:50:04.273493499 +0100
+++ /work/SRC/openSUSE:Factory/.stunnel.new/stunnel.changes 2018-02-07 
18:42:23.509433948 +0100
@@ -1,0 +2,5 @@
+Tue Feb  6 13:51:49 UTC 2018 - vet...@physik.uni-wuerzburg.de
+
+- Revamp SLE11 builds
+
+---



Other differences:
--
++ stunnel.spec ++
--- /var/tmp/diff_new_pack.XzDrlW/_old  2018-02-07 18:42:24.437390498 +0100
+++ /var/tmp/diff_new_pack.XzDrlW/_new  2018-02-07 18:42:24.441390311 +0100
@@ -16,14 +16,23 @@
 #
 
 
-%define VENDOR openSUSE
+%define VENDORAFFIX openSUSE
+
 %if 0%{?suse_version} >= 1210
+
 %define has_systemd 1
 BuildRequires:  systemd
 %{?systemd_requires}
+
 %else
-PreReq: %insserv_prereq
+
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Requires(pre):  %insserv_prereq
+Requires(pre):  /usr/sbin/useradd
+# %{_sbindir} does not work here!
+
 %endif
+
 #Compat macro for new _fillupdir macro introduced in Nov 2017
 %if ! %{defined _fillupdir}
   %define _fillupdir %{_localstatedir}/adm/fillup-templates
@@ -45,14 +54,12 @@
 Source7:stunnel.README
 Patch0: stunnel-listenqueue-option.patch
 BuildRequires:  libopenssl-devel
-BuildRequires:  pkgconfig
 BuildRequires:  tcpd-devel
 BuildRequires:  zlib-devel
-BuildRequires:  pkgconfig(libsystemd)
-PreReq: %fillup_prereq
-PreReq: %{_sbindir}/useradd
-PreReq: fileutils
-PreReq: textutils
+Requires(pre): %fillup_prereq
+Requires(pre): %{_sbindir}/useradd
+Requires(pre): fileutils
+Requires(pre): textutils
 %if 0%{?suse_version} >= 1500
 Requires(pre):  group(nogroup)
 %endif
@@ -97,10 +104,14 @@
 make %{?_smp_mflags} check
 
 %install
-%make_install
+%if 0%{?suse_version} >= 1210
+  %make_install
+%else
+  make install DESTDIR=$RPM_BUILD_ROOT
+%endif
 
-cp -p %{SOURCE1} tools/stunnel.conf-sample.%{VENDOR}
-cp -p %{SOURCE2} README.%{VENDOR}
+cp -p %{SOURCE1} tools/stunnel.conf-sample.%{VENDORAFFIX}
+cp -p %{SOURCE2} README.%{VENDORAFFIX}
 mkdir -p %{buildroot}%{_fillupdir}
 cp -p %{SOURCE3} %{buildroot}%{_fillupdir}/
 %if 0%{?has_systemd}
@@ -143,7 +154,7 @@
 fi
 # first installation?
 if [ ${FIRST_ARG:-0} = 1 ] && [ ! -f etc/stunnel/stunnel.pem ]; then
-cat usr/share/doc/packages/stunnel/README.%{VENDOR}
+cat usr/share/doc/packages/stunnel/README.%{VENDORAFFIX}
 fi
 
 %preun
@@ -162,8 +173,9 @@
 %endif
 
 %files
+%defattr(-,root,root)
 %doc COPYING COPYRIGHT.GPL CREDITS
-%doc README.%{VENDOR}
+%doc README.%{VENDORAFFIX}
 %doc tools/ca.*
 %doc tools/importCA.*
 %doc tools/stunnel.conf-sample
@@ -187,6 +199,7 @@
 %endif
 
 %files doc
+%defattr(-,root,root)
 %doc AUTHORS BUGS COPYING COPYRIGHT.GPL CREDITS ChangeLog NEWS PORTS
 %doc README TODO
 %doc doc/stunnel.html






commit fence-agents for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package fence-agents for openSUSE:Factory 
checked in at 2018-02-07 18:42:53

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


Package is "fence-agents"

Wed Feb  7 18:42:53 2018 rev:35 rq:573720 version:4.0.25+git.1516265527.7ab202cf

Changes:

--- /work/SRC/openSUSE:Factory/fence-agents/fence-agents.changes
2017-11-21 15:36:02.75794 +0100
+++ /work/SRC/openSUSE:Factory/.fence-agents.new/fence-agents.changes   
2018-02-07 18:42:58.123813224 +0100
@@ -1,0 +2,9 @@
+Wed Feb 07 13:38:15 UTC 2018 - kgronl...@suse.com
+
+- Update to version 4.0.25+git.1516265527.7ab202cf (bsc#1074000):
+  * fence_ilo3: default to onoff
+  * fence_compute: Add support for keystone v3 authentication
+  * fence_ilo_ssh: fix hard reset
+  * fence_vmware_rest: new agent
+
+---

Old:

  fence-agents-4.0.25+git.1509350522.8d6f8530.tar.xz

New:

  fence-agents-4.0.25+git.1516265527.7ab202cf.tar.xz



Other differences:
--
++ fence-agents.spec ++
--- /var/tmp/diff_new_pack.wmDFiz/_old  2018-02-07 18:42:59.315757416 +0100
+++ /var/tmp/diff_new_pack.wmDFiz/_new  2018-02-07 18:42:59.319757228 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fence-agents
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 %global plugin_dir %{_libdir}/stonith/plugins/rhcs
-%define agent_list alom amt amt_ws apc apc_snmp azure_arm bladecenter brocade 
cisco_mds cisco_ucs compute docker drac5 dummy eaton_snmp emerson eps hds_cb 
hpblade ibmblade ifmib ilo ilo_moonshot ilo_mp ilo_ssh intelmodular ipdu 
ipmilan ironic kdump ldom lpar mpath netio powerman pve raritan rcd_serial 
rhevm rsa rsb sanbox2 sbd scsi vbox virsh vmware wti xenapi zvm
+%define agent_list alom amt amt_ws apc apc_snmp azure_arm bladecenter brocade 
cisco_mds cisco_ucs compute docker drac5 dummy eaton_snmp emerson eps evacuate 
hds_cb hpblade ibmblade ifmib ilo ilo_moonshot ilo_mp ilo_ssh intelmodular ipdu 
ipmilan ironic kdump ldom lpar mpath netio powerman pve raritan rcd_serial 
rhevm rsa rsb sanbox2 sbd scsi vbox virsh vmware vmware_rest wti xenapi zvm
 
 Name:   fence-agents
 Summary:Fence Agents for High Availability
 License:GPL-2.0 and LGPL-2.1
 Group:  Productivity/Clustering/HA
-Version:4.0.25+git.1509350522.8d6f8530
+Version:4.0.25+git.1516265527.7ab202cf
 Release:0
 Url:https://github.com/ClusterLabs/fence-agents
 Source0:%{name}-%{version}.tar.xz

++ _servicedata ++
--- /var/tmp/diff_new_pack.wmDFiz/_old  2018-02-07 18:42:59.375754607 +0100
+++ /var/tmp/diff_new_pack.wmDFiz/_new  2018-02-07 18:42:59.375754607 +0100
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/fence-agents.git
-  f243cfc5d8fcae96bcbe7ee7fd64bbca120dfe18
\ No newline at end of file
+  24c8fe07b21ac07c65292195a044a230a5bd2579
\ No newline at end of file

++ fence-agents-4.0.25+git.1509350522.8d6f8530.tar.xz -> 
fence-agents-4.0.25+git.1516265527.7ab202cf.tar.xz ++
 2011 lines of diff (skipped)




commit crmsh for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2018-02-07 18:42:49

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


Package is "crmsh"

Wed Feb  7 18:42:49 2018 rev:139 rq:573719 version:4.0.0+git.1518010150.a58fa637

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2018-01-17 
21:59:32.643746783 +0100
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2018-02-07 
18:42:51.896104819 +0100
@@ -1,0 +2,9 @@
+Wed Feb 07 13:50:36 UTC 2018 - kgronl...@suse.com
+
+- Update to version 4.0.0+git.1518010150.a58fa637:
+  * high: bootstrap: Add QDevice/QNetd support (bsc#1070961)
+  * medium: hb_report: implement dlm_dump info (bsc#1078710)
+  * fix: hb_report: collect sbd info (bsc#1076389)
+  * fix: hb_report: Collect irregular log file (bsc#1067438)
+
+---

Old:

  crmsh-4.0.0+git.1516124911.d66d9d1f.tar.bz2

New:

  crmsh-4.0.0+git.1518010150.a58fa637.tar.bz2



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.RsVGT5/_old  2018-02-07 18:42:52.700067176 +0100
+++ /var/tmp/diff_new_pack.RsVGT5/_new  2018-02-07 18:42:52.700067176 +0100
@@ -36,7 +36,7 @@
 Summary:High Availability cluster command-line interface
 License:GPL-2.0+
 Group:  %{pkg_group}
-Version:4.0.0+git.1516124911.d66d9d1f
+Version:4.0.0+git.1518010150.a58fa637
 Release:0
 Url:http://crmsh.github.io
 Source0:%{name}-%{version}.tar.bz2

++ _servicedata ++
--- /var/tmp/diff_new_pack.RsVGT5/_old  2018-02-07 18:42:52.748064928 +0100
+++ /var/tmp/diff_new_pack.RsVGT5/_new  2018-02-07 18:42:52.748064928 +0100
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/crmsh.git
-  d66d9d1fcee2cb4f0f4b06beaa4f5140caeb67e3
\ No newline at end of file
+  a58fa637efb583995c31c62d3fa3894b875e2f3a
\ No newline at end of file

++ crmsh-4.0.0+git.1516124911.d66d9d1f.tar.bz2 -> 
crmsh-4.0.0+git.1518010150.a58fa637.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh-4.0.0+git.1516124911.d66d9d1f/.travis.yml 
new/crmsh-4.0.0+git.1518010150.a58fa637/.travis.yml
--- old/crmsh-4.0.0+git.1516124911.d66d9d1f/.travis.yml 2018-01-16 
18:48:31.0 +0100
+++ new/crmsh-4.0.0+git.1518010150.a58fa637/.travis.yml 2018-02-07 
14:29:10.0 +0100
@@ -8,7 +8,7 @@
   - docker pull krig/crmsh:latest
 
 script:
-  - docker run -t -v "$(pwd):/app" krig/crmsh /bin/sh -c "systemctl start 
dbus; cd /app; ./test/run-in-container.sh"
+  - docker run -t -v "$(pwd):/app" krig/crmsh /bin/sh -c "systemctl start 
dbus; cd /app; ./test/run-in-travis.sh"
 
 after_failure:
   - sudo cat $TRAVIS_BUILD_DIR/crmtestout/regression.out 
$TRAVIS_BUILD_DIR/crmtestout/crm.*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/crmsh-4.0.0+git.1516124911.d66d9d1f/crmsh/bootstrap.py 
new/crmsh-4.0.0+git.1518010150.a58fa637/crmsh/bootstrap.py
--- old/crmsh-4.0.0+git.1516124911.d66d9d1f/crmsh/bootstrap.py  2018-01-16 
18:48:31.0 +0100
+++ new/crmsh-4.0.0+git.1518010150.a58fa637/crmsh/bootstrap.py  2018-02-07 
14:29:10.0 +0100
@@ -66,6 +66,7 @@
 self.connect_name = None
 self.second_hb = None
 self.ui_context = None
+self.qdevice = None
 
 
 _context = None
@@ -549,12 +550,16 @@
 
 Please note corosync uses two UDP ports mcastport (for mcast
 receives) and mcastport - 1 (for mcast sends).
+
+Also open QNetd/QDevice port if configured.
 """
 # all mcastports defined in corosync config
 udp = corosync.get_values("totem.interface.mcastport")
 udp.extend([str(int(p) - 1) for p in udp])
 
-configure_firewall(udp=udp)
+tcp = corosync.get_values("totem.quorum.device.net.port")
+
+configure_firewall(tcp=tcp, udp=udp)
 
 
 def init_cluster_local():
@@ -912,7 +917,8 @@
 mcastport=mcastport_res,
 transport="udpu",
 ipv6=_context.ipv6,
-two_rings=two_rings)
+two_rings=two_rings,
+qdevice=_context.qdevice)
 csync2_update(corosync.conf())
 
 
@@ -1032,7 +1038,8 @@
 mcastport=mcastport_res,
 ipv6=_context.ipv6,
 nodeid=nodeid,
-two_rings=two_rings)
+two_rings=two_rings,
+qdevice=_context.qdevice)
 csync2_update(corosync.conf())
 
 
@@ -1723,6 +1730,9 @@
 # get a list of nodes, excluding remote nodes
 nodelist = None
 loop_count = 0
+device_votes = 0
+nodecount = 0
+expected_votes = 0
 while True:
 rc, 

commit legion for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package legion for openSUSE:Factory checked 
in at 2018-02-07 18:42:39

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


Package is "legion"

Wed Feb  7 18:42:39 2018 rev:10 rq:573697 version:18.02.0

Changes:

--- /work/SRC/openSUSE:Factory/legion/legion.changes2017-11-18 
00:21:24.298870916 +0100
+++ /work/SRC/openSUSE:Factory/.legion.new/legion.changes   2018-02-07 
18:42:44.804436866 +0100
@@ -1,0 +2,21 @@
+Wed Feb  7 09:20:28 UTC 2018 - nmoreychaisemar...@suse.com
+
+- Update to legion 18.02.0
+  * Legion
+- Support for PowerPC vector intrinsics
+- FieldAccessors support "view" coordinates and equivalent bounds checks
+- Improved schedule priorities for Legion meta-tasks
+  * Realm
+- Operation priority can now be adjust after a task/copy is launched
+- Assorted bug/memory leak fixes
+- AffineAccessors support an optional translation from "view" coordinates
+to actual coordinates in the instance being accessed
+  * Regent
+- Experimental support for calling Regent tasks from C/C++
+- Support for building with CMake
+- Support for running on PowerPC
+  * Bindings
+- Obsolete Lua and Terra bindings have been removed. The remaining Terra
+  bindings have been renamed to Regent and now produce libregent.so
+
+---

Old:

  legion-17.10.0.0.a2b971e6.tar.gz

New:

  legion-18.02.0.0.57d01885ce18.tar.gz



Other differences:
--
++ legion.spec ++
--- /var/tmp/diff_new_pack.rnJzBR/_old  2018-02-07 18:42:45.528402968 +0100
+++ /var/tmp/diff_new_pack.rnJzBR/_new  2018-02-07 18:42:45.532402781 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package legion
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2016-2017 Christoph Junghans
 #
 # All modifications and additions to the file contributed by third parties
@@ -17,7 +17,7 @@
 #
 
 
-%define git_ver .0.a2b971e6
+%define git_ver .0.57d01885ce18
 %ifarch ppc64
 %define mpi_implem openmpi
 %else
@@ -25,7 +25,7 @@
 %endif
 
 Name:   legion
-Version:17.10.0
+Version:18.02.0
 Release:0
 Summary:A data-centric parallel programming system
 License:Apache-2.0
@@ -41,6 +41,12 @@
 BuildRequires:  gasnet-devel
 BuildRequires:  gcc-c++
 BuildRequires:  hwloc-devel
+%ifarch x86_64 %{ix86}
+BuildRequires:  libfabric-devel
+%endif
+%ifarch x86_64
+BuildRequires:  libpsm2-devel
+%endif
 
 %description
 Legion is a data-centric parallel programming system for writing portable

++ _service ++
--- /var/tmp/diff_new_pack.rnJzBR/_old  2018-02-07 18:42:45.560401470 +0100
+++ /var/tmp/diff_new_pack.rnJzBR/_new  2018-02-07 18:42:45.564401283 +0100
@@ -8,7 +8,7 @@
 @PARENT_TAG@.@TAG_OFFSET@.%h
 legion(.*)
 \1
-a2b971e6c34cce166b3ba4181ebfadc1a71dd1c8
+57d01885ce18c54b9c8f798d3c4184ae56b794d3
   
   
 legion*.tar

++ legion-17.10.0.0.a2b971e6.tar.gz -> legion-18.02.0.0.57d01885ce18.tar.gz 
++
 64148 lines of diff (skipped)




commit hawk-apiserver for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package hawk-apiserver for openSUSE:Factory 
checked in at 2018-02-07 18:41:55

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


Package is "hawk-apiserver"

Wed Feb  7 18:41:55 2018 rev:5 rq:573584 version:0.0.2+git2.9d745dc

Changes:

--- /work/SRC/openSUSE:Factory/hawk-apiserver/hawk-apiserver.changes
2017-11-22 11:22:19.389568335 +0100
+++ /work/SRC/openSUSE:Factory/.hawk-apiserver.new/hawk-apiserver.changes   
2018-02-07 18:42:08.162152546 +0100
@@ -1,0 +2,5 @@
+Thu Feb  1 16:51:44 CET 2018 - r...@suse.de
+
+- do not build on s390, only on s390x (no go on s390) 
+
+---



Other differences:
--
++ hawk-apiserver.spec ++
--- /var/tmp/diff_new_pack.QCI1r6/_old  2018-02-07 18:42:09.04656 +0100
+++ /var/tmp/diff_new_pack.QCI1r6/_new  2018-02-07 18:42:09.054110782 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package hawk-apiserver
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -33,6 +33,7 @@
 BuildRequires:  xz
 Requires:   pacemaker >= 1.1.16
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+ExcludeArch:s390
 %{go_provides}
 # Make sure that the binary is not getting stripped.
 %{go_nostrip}
@@ -64,6 +65,9 @@
 %{_mandir}/man8/hawk-apiserver.8.gz
 %if 0%{?suse_version} == 1315
 %exclude 
%go_contribdir/github.com/krig/hawk-apiserver/vendor/github.com/krig/go-pacemaker.a
+%exclude 
%go_contribdir/github.com/krig/hawk-apiserver/vendor/github.com/sirupsen/logrus.a
+%exclude 
%go_contribdir/github.com/krig/hawk-apiserver/vendor/golang.org/x/crypto/ssh/terminal.a
+%exclude 
%go_contribdir/github.com/krig/hawk-apiserver/vendor/golang.org/x/sys/unix.a
 %endif
 
 %changelog

++ hawk-apiserver.8.gz ++
--- /var/tmp/diff_new_pack.QCI1r6/_old  2018-02-07 18:42:09.130107223 +0100
+++ /var/tmp/diff_new_pack.QCI1r6/_new  2018-02-07 18:42:09.134107036 +0100
@@ -1,5 +1,5 @@
 .\" Text automatically generated by txt2man
-.TH hawk-apiserver-0.0.1  "1 January 2017" "" ""
+.TH hawk-apiserver-0.0.2  "1 January 2017" "" ""
 .SH NAME
 \fBhawk-apiserver \fP- Web server for Hawk, the HA cluster web console
 .SH SYNOPSIS
@@ -35,6 +35,10 @@
 .B
 \fB-port\fP
 TCP port to listen to for connections.
+.TP
+.B
+\fB-loglevel\fP
+Log level (debug|info|warning|error|fatal|panic)
 .SH EXAMPLE
 Below is an example configuration file for Hawk:
 .PP




commit ncdu for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package ncdu for openSUSE:Factory checked in 
at 2018-02-07 18:42:23

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


Package is "ncdu"

Wed Feb  7 18:42:23 2018 rev:10 rq:573676 version:1.13

Changes:

--- /work/SRC/openSUSE:Factory/ncdu/ncdu.changes2017-01-04 
19:38:41.457280054 +0100
+++ /work/SRC/openSUSE:Factory/.ncdu.new/ncdu.changes   2018-02-07 
18:42:31.817044965 +0100
@@ -1,0 +2,14 @@
+Wed Feb  7 05:39:38 UTC 2018 - avin...@opensuse.org
+
+- Update to 1.13
+  * Add "extended information" mode and -e flag
+  * Add file mode, modification time and uid/gid to info window
+with -e
+  * Add experimental color support and --color flag
+  * Add -rr option to disable shell spawning
+  * Remove directory nesting limit on file import
+  * Fix handling of interrupts during file import
+- cleanup with spec-cleaner
+- use https urls
+
+---

Old:

  ncdu-1.12.tar.gz
  ncdu-1.12.tar.gz.asc

New:

  ncdu-1.13.tar.gz
  ncdu-1.13.tar.gz.asc



Other differences:
--
++ ncdu.spec ++
--- /var/tmp/diff_new_pack.umecJk/_old  2018-02-07 18:42:32.501012940 +0100
+++ /var/tmp/diff_new_pack.umecJk/_new  2018-02-07 18:42:32.505012753 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ncdu
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,17 +17,16 @@
 
 
 Name:   ncdu
-Version:1.12
+Version:1.13
 Release:0
 Summary:NCurses Disk Usage
 License:MIT
 Group:  System/Filesystems
-Url:http://dev.yorhel.nl/ncdu/
-Source0:http://dev.yorhel.nl/download/ncdu-%{version}.tar.gz
-Source1:http://dev.yorhel.nl/download/ncdu-%{version}.tar.gz.asc
+Url:https://dev.yorhel.nl/ncdu/
+Source0:https://dev.yorhel.nl/download/%{name}-%{version}.tar.gz
+Source1:https://dev.yorhel.nl/download/%{name}-%{version}.tar.gz.asc
 Source2:%{name}.keyring
 BuildRequires:  ncurses-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 ncdu (NCurses Disk Usage) is a curses-based version of
@@ -39,15 +38,14 @@
 
 %build
 %configure
-make %{?_smp_flags}
+make %{?_smp_mflags}
 
 %install
 %make_install
 
 %files
-%defattr(-,root,root,-)
 %doc ChangeLog README COPYING
 %{_bindir}/%{name}
-%{_mandir}/man1/%{name}.1*
+%{_mandir}/man1/%{name}.1%{ext_man}
 
 %changelog

++ ncdu-1.12.tar.gz -> ncdu-1.13.tar.gz ++
 2885 lines of diff (skipped)




commit voxelands for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package voxelands for openSUSE:Factory 
checked in at 2018-02-07 18:42:15

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


Package is "voxelands"

Wed Feb  7 18:42:15 2018 rev:3 rq:573661 version:1709.00

Changes:

--- /work/SRC/openSUSE:Factory/voxelands/voxelands.changes  2017-10-11 
23:01:33.228375319 +0200
+++ /work/SRC/openSUSE:Factory/.voxelands.new/voxelands.changes 2018-02-07 
18:42:26.669285995 +0100
@@ -1,0 +2,5 @@
+Tue Feb  6 15:09:48 UTC 2018 - meiss...@suse.com
+
+- use freetype2-devel explicitly. was pulled in and used implicitly already.
+
+---



Other differences:
--
++ voxelands.spec ++
--- /var/tmp/diff_new_pack.hU8dGE/_old  2018-02-07 18:42:27.833231496 +0100
+++ /var/tmp/diff_new_pack.hU8dGE/_new  2018-02-07 18:42:27.833231496 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package voxelands
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,7 +28,7 @@
 Source: 
https://gitlab.com/voxelands/voxelands/repository/archive.tar.bz2?ref=v%{version}#/%{name}-%{version}.tar.bz2
 BuildRequires:  cmake
 BuildRequires:  fdupes
-BuildRequires:  freetype-devel
+BuildRequires:  freetype2-devel
 BuildRequires:  gcc-c++
 BuildRequires:  gettext-tools
 BuildRequires:  gmp-devel




commit cmus for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package cmus for openSUSE:Factory checked in 
at 2018-02-07 18:42:31

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


Package is "cmus"

Wed Feb  7 18:42:31 2018 rev:4 rq:573684 version:2.8.0~20171019.g3a4ce9c

Changes:

--- /work/SRC/openSUSE:Factory/cmus/cmus.changes2017-11-03 
16:26:58.567568153 +0100
+++ /work/SRC/openSUSE:Factory/.cmus.new/cmus.changes   2018-02-07 
18:42:36.668817793 +0100
@@ -1,0 +2,5 @@
+Wed Jan 31 10:42:14 UTC 2018 - o...@aepfle.de
+
+- Adjust usage of gccN for Leap42 and SLE12
+
+---



Other differences:
--
++ cmus.spec ++
--- /var/tmp/diff_new_pack.lLOhip/_old  2018-02-07 18:42:37.552776404 +0100
+++ /var/tmp/diff_new_pack.lLOhip/_new  2018-02-07 18:42:37.556776218 +0100
@@ -31,12 +31,12 @@
 %if 0%{?suse_version} > 1320
 BuildRequires:  gcc
 %else
-%if 0%{?sle_version} == 120100
-# Leap 42.1
-BuildRequires:  gcc5
-%else
-# Leap 42.2+ / SLE12SP2Backports
+%if 0%{?sle_version} == 120200
+# Leap 42.2
 BuildRequires:  gcc6
+%else
+# Leap 42.3+ / SLE12SP3Backports
+BuildRequires:  gcc7
 %endif
 %endif
 BuildRequires:  git-core




commit openlibm for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package openlibm for openSUSE:Factory 
checked in at 2018-02-07 18:42:27

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


Package is "openlibm"

Wed Feb  7 18:42:27 2018 rev:7 rq:573677 version:0.5.5

Changes:

--- /work/SRC/openSUSE:Factory/openlibm/openlibm.changes2018-02-02 
22:21:28.516135889 +0100
+++ /work/SRC/openSUSE:Factory/.openlibm.new/openlibm.changes   2018-02-07 
18:42:34.644912558 +0100
@@ -9,0 +10 @@
+  * No changelog available



Other differences:
--



commit patterns-caasp for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package patterns-caasp for openSUSE:Factory 
checked in at 2018-02-07 18:42:36

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


Package is "patterns-caasp"

Wed Feb  7 18:42:36 2018 rev:25 rq:573692 version:1.0

Changes:

--- /work/SRC/openSUSE:Factory/patterns-caasp/patterns-caasp.changes
2018-02-06 16:51:04.634666804 +0100
+++ /work/SRC/openSUSE:Factory/.patterns-caasp.new/patterns-caasp.changes   
2018-02-07 18:42:38.120749811 +0100
@@ -1,0 +2,10 @@
+Wed Feb  7 13:28:29 CET 2018 - ku...@suse.de
+
+- Add pciutils to MicroOS pattern [bsc#1079821]
+
+---
+Wed Feb  7 10:03:17 CET 2018 - ku...@suse.de
+
+- Add vlan to MicroOS pattern
+
+---



Other differences:
--
++ patterns-caasp.spec ++
--- /var/tmp/diff_new_pack.INEdWu/_old  2018-02-07 18:42:38.992708983 +0100
+++ /var/tmp/diff_new_pack.INEdWu/_new  2018-02-07 18:42:39.000708609 +0100
@@ -96,6 +96,7 @@
 Requires:   openssh
 Requires:   pam
 Requires:   parted
+Requires:   pciutils
 Requires:   pkg-config
 Requires:   procps
 Requires:   rebootmgr
@@ -113,6 +114,7 @@
 Requires:   transactional-update
 Requires:   udev
 Requires:   vim
+Requires:   vlan
 Requires:   which
 Requires:   wicked
 Requires:   xfsprogs




commit libkkc for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package libkkc for openSUSE:Factory checked 
in at 2018-02-07 18:42:45

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


Package is "libkkc"

Wed Feb  7 18:42:45 2018 rev:9 rq:573707 version:0.3.5+git20171220.7d365e1

Changes:

--- /work/SRC/openSUSE:Factory/libkkc/libkkc.changes2017-04-07 
13:54:40.459887294 +0200
+++ /work/SRC/openSUSE:Factory/.libkkc.new/libkkc.changes   2018-02-07 
18:42:48.572260448 +0100
@@ -1,0 +2,19 @@
+Wed Feb 07 01:26:36 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Update to version 0.3.5+git20171220.7d365e1:
+  * fix the modifier static is not applicable to constants
+  * vala 0.32: use new operator to create new objects
+  * Revert "vala 0.32: use new operator to create new objects"
+  * build: Fix compile error with Vala 0.36
+  * build: Migrate from intltool to gettext
+  * build: Require valadoc-0.40
+  * build: Use xz-compressed archive tarball
+  * build: Set DIST_SUBDIRS for maintainer-clean target
+  * Fix memory leak caused by hacking strv length.
+- drop vala-0.23.2+-static-const.patch, upstreamed
+- drop vala-0.32-new-operator.patch, upstreamed
+- add libkkc-gettext.patch, lower gettext version for Leap
+- add libkkc-public.patch, public some classes to make vala
+  0.38 happy
+
+---

Old:

  libkkc-0.3.5+git20150522.650f0d6.tar.xz
  vala-0.23.2+-static-const.patch
  vala-0.32-new-operator.patch

New:

  libkkc-0.3.5+git20171220.7d365e1.tar.xz
  libkkc-gettext.patch
  libkkc-public.patch



Other differences:
--
++ libkkc.spec ++
--- /var/tmp/diff_new_pack.AN0Wtk/_old  2018-02-07 18:42:49.584213066 +0100
+++ /var/tmp/diff_new_pack.AN0Wtk/_new  2018-02-07 18:42:49.584213066 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libkkc
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define soname 2
 %define data_version 0.2.7
 Name:   libkkc
-Version:0.3.5+git20150522.650f0d6
+Version:0.3.5+git20171220.7d365e1
 Release:0
 Summary:Japanese Kana-string to Kana-Kanji-mixed-string converter
 License:GPL-3.0
@@ -27,20 +27,19 @@
 Url:https://github.com/ueno/libkkc
 Source: %{name}-%{version}.tar.xz
 # data: https://bitbucket.org/libkkc/libkkc-data/downloads/
-Source1:
https://bitbucket.org/libkkc/libkkc-data/downloads/%{name}-data-%{data_version}.tar.xz
+Source1:%{name}-data-%{data_version}.tar.xz
 Source99:   baselibs.conf
 # PATCH-FIX-UPSTREAM marguer...@opensuse.org - use correct shared library for 
typelib generation
 Patch0: libkkc-typelib-sharelib.patch
-# PATCH-FIX-UPSTREAM marguer...@opensuse.org - fix "the modifier 'static' is 
not applicable to constants"
-Patch1: vala-0.23.2+-static-const.patch
-# PATCH-FIX-UPSTREAM marguer...@opensuse.org - fix "use 'new' operator to 
create new objects" error
-Patch2: vala-0.32-new-operator.patch
+# PATCH-FIX-OPENSUSE marguer...@opensuse.org - lower gettext version
+Patch1: libkkc-gettext.patch
+# PATCH-FIX-UPSTREAM marguer...@opensuse.org - public some classes to make 
vala 0.38 happy
+Patch2: libkkc-public.patch
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 # for autogen.sh
 BuildRequires:  gnome-common
 BuildRequires:  gobject-introspection-devel
-BuildRequires:  intltool
 # json_generator_set_pretty is not available in version below.
 BuildRequires:  json-glib-devel >= 0.14.0
 BuildRequires:  libgee-devel >= 0.12.0

++ libkkc-0.3.5+git20150522.650f0d6.tar.xz -> 
libkkc-0.3.5+git20171220.7d365e1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkkc-0.3.5+git20150522.650f0d6/.travis.yml 
new/libkkc-0.3.5+git20171220.7d365e1/.travis.yml
--- old/libkkc-0.3.5+git20150522.650f0d6/.travis.yml2015-08-25 
10:56:00.0 +0200
+++ new/libkkc-0.3.5+git20171220.7d365e1/.travis.yml2017-12-20 
08:09:09.0 +0100
@@ -1,29 +1,45 @@
+sudo: required
+
 language: c
 
 env:
-  matrix:
-- VALAC=valac-0.24
+  - BUILD_OPTS="--prefix=/usr --libdir=/usr/lib64"
+  - BUILD_OPTS="--prefix=/usr --libdir=/usr/lib64 --enable-code-coverage" 
COVERAGE=yes
+  - BUILD_OPTS="--prefix=/usr --libdir=/usr/lib64 CFLAGS='-fsanitize=address 
-g -fno-common -U_FORTIFY_SOURCE' CXXFLAGS='-fsanitize=address -g -fno-common 
-U_FORTIFY_SOURCE' LDFLAGS='-fsanitize=address -g -fno-common 

commit ncmpcpp for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package ncmpcpp for openSUSE:Factory checked 
in at 2018-02-07 18:42:43

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


Package is "ncmpcpp"

Wed Feb  7 18:42:43 2018 rev:2 rq:573705 version:0.8.1

Changes:

--- /work/SRC/openSUSE:Factory/ncmpcpp/ncmpcpp.changes  2018-01-19 
11:51:05.369644194 +0100
+++ /work/SRC/openSUSE:Factory/.ncmpcpp.new/ncmpcpp.changes 2018-02-07 
18:42:46.876339855 +0100
@@ -1,0 +2,5 @@
+Wed Jan 31 10:42:14 UTC 2018 - o...@aepfle.de
+
+- Adjust usage of gccN for Leap42 and SLE12
+
+---



Other differences:
--
++ ncmpcpp.spec ++
--- /var/tmp/diff_new_pack.y6raKt/_old  2018-02-07 18:42:47.432313823 +0100
+++ /var/tmp/diff_new_pack.y6raKt/_new  2018-02-07 18:42:47.432313823 +0100
@@ -26,19 +26,15 @@
 Source: 
https://github.com/arybczak/ncmpcpp/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  autoconf
 BuildRequires:  automake
-BuildRequires:  boost-devel >= 1.54
 BuildRequires:  curl-devel
 BuildRequires:  fftw-devel
 BuildRequires:  libtag-devel
 BuildRequires:  libtool
-BuildRequires:  ncurses-devel
+BuildRequires:  pkgconfig(ncursesw)
 BuildRequires:  pkgconfig
 BuildRequires:  readline-devel
 BuildRequires:  pkgconfig(libmpdclient)
 Requires:   mpd > 0.16
-# C++14 capable compiler is required
-%if 0%{?suse_version} > 1320
-BuildRequires:  gcc-c++ >= 5.0
 BuildRequires:  libboost_filesystem-devel
 BuildRequires:  libboost_headers-devel
 BuildRequires:  libboost_locale-devel
@@ -46,10 +42,8 @@
 BuildRequires:  libboost_regex-devel
 BuildRequires:  libboost_system-devel
 BuildRequires:  libboost_thread-devel
-%else
-BuildRequires:  boost-devel >= 1.60
-BuildRequires:  gcc6-c++
-%endif
+BuildRequires:  gcc
+BuildRequires:  gcc-c++
 
 %description
 ncmpcpp is an ncurses client for MPD (Music Player Daemon), inspired
@@ -62,10 +56,6 @@
 
 %build
 autoreconf -fiv
-%if 0%{?suse_version} < 1320
-export CC=gcc-6
-export CXX=g++-6
-%endif
 %configure \
   --enable-clock \
   --enable-visualizer




commit jameica for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package jameica for openSUSE:Factory checked 
in at 2018-02-07 18:42:19

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


Package is "jameica"

Wed Feb  7 18:42:19 2018 rev:2 rq:573663 version:2.6.6

Changes:

--- /work/SRC/openSUSE:Factory/jameica/jameica.changes  2018-01-13 
21:44:20.175336084 +0100
+++ /work/SRC/openSUSE:Factory/.jameica.new/jameica.changes 2018-02-07 
18:42:27.929227002 +0100
@@ -1,0 +2,5 @@
+Wed Feb  7 10:52:40 UTC 2018 - mailaen...@opensuse.org
+
+- unbundle velocity
+
+---



Other differences:
--
++ jameica.spec ++
--- /var/tmp/diff_new_pack.ihDFjJ/_old  2018-02-07 18:42:29.589149280 +0100
+++ /var/tmp/diff_new_pack.ihDFjJ/_new  2018-02-07 18:42:29.593149093 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package jameica
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,12 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define tag V_2_6_6_BUILD_439
 
 Name:   jameica
+Summary:Runtime environment for Java applications like Hibiscus
 License:GPL-2.0 and LGPL-2.0 and Apache-2.0 and CPL-1.0 and Zlib and 
MPL-1.0 and EPL-1.0
 Group:  Productivity/Office/Finance
-Summary:Runtime environment for Java applications like Hibiscus
 Version:2.6.6
 Release:0
 Url:http://www.willuhn.de/products/jameica/
@@ -28,16 +29,18 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ant
 BuildRequires:  dos2unix
+BuildRequires:  fdupes
 BuildRequires:  java-devel >= 1.6
 BuildRequires:  jpackage-utils
-BuildRequires:  xerces-j2-xml-apis
-BuildRequires:  fdupes
 BuildRequires:  swtcalendar
+BuildRequires:  xerces-j2-xml-apis
 Requires:   swtcalendar
 BuildRequires:  paperclips = 1.0.4
 Requires:   paperclips = 1.0.4
 BuildRequires:  nanoxml = 2.2.3
 Requires:   nanoxml = 2.2.3
+BuildRequires:  velocity = 1.7
+Requires:   velocity = 1.7
 # Don't offer libraries linked in here to other packages:
 AutoReqProv:off
 
@@ -92,6 +95,10 @@
 rm -rf lib/swtcalendar/*
 ln -sf %{_javadir}/swtcalendar.jar lib/swtcalendar/swtcalendar.jar
 
+# unbundle Velocity
+rm -rf lib/velocity/*
+ln -sf %{_javadir}/velocity.jar lib/velocity/velocity-1.7.jar
+
 %build
 export CLASSPATH="$(build-classpath xerces-j2-xml-apis)"
 ant -f build/build.xml init compile jar zip src javadoc




commit nodejs6 for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package nodejs6 for openSUSE:Factory checked 
in at 2018-02-07 18:42:07

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


Package is "nodejs6"

Wed Feb  7 18:42:07 2018 rev:21 rq:573620 version:6.12.3

Changes:

--- /work/SRC/openSUSE:Factory/nodejs6/nodejs6.changes  2018-01-17 
21:59:46.667089482 +0100
+++ /work/SRC/openSUSE:Factory/.nodejs6.new/nodejs6.changes 2018-02-07 
18:42:21.565524965 +0100
@@ -1,0 +2,6 @@
+Tue Jan 30 18:10:06 CET 2018 - r...@suse.de
+
+- even on recent codestreams there is no binutils gold on s390
+  only on s390x
+
+---



Other differences:
--
++ nodejs6.spec ++
--- /var/tmp/diff_new_pack.GC8lT2/_old  2018-02-07 18:42:22.981458668 +0100
+++ /var/tmp/diff_new_pack.GC8lT2/_new  2018-02-07 18:42:22.985458481 +0100
@@ -70,13 +70,17 @@
 %endif # aarch64
 
 # No binutils_gold on all versions of SLE 12 and Leap 42 (s390x).
-%ifarch s390x s390
+%ifarch s390x
 %if 0%{?suse_version} > 1320
 %bcond_without binutils_gold
 %else
 %bcond_withbinutils_gold
 %endif
-%endif # s390x s390
+%endif # s390x
+
+%ifarch s390
+%bcond_withbinutils_gold
+%endif
 
 %ifnarch aarch64 s390x s390
 %bcond_without binutils_gold






commit qupzilla for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package qupzilla for openSUSE:Factory 
checked in at 2018-02-07 18:42:02

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


Package is "qupzilla"

Wed Feb  7 18:42:02 2018 rev:24 rq:573613 version:2.2.5

Changes:

--- /work/SRC/openSUSE:Factory/qupzilla/qupzilla.changes2018-01-20 
11:27:05.499308607 +0100
+++ /work/SRC/openSUSE:Factory/.qupzilla.new/qupzilla.changes   2018-02-07 
18:42:18.409672730 +0100
@@ -1,0 +2,15 @@
+Wed Feb  7 08:42:04 UTC 2018 - jav...@opensuse.org
+
+- Update to 2.2.5
+  * added Unload Tab action
+  * search engine buttons to locationbar completer
+  * added option to disable automatic password completion on sites
+  * plugins are now always enabled (fixes missing AdBlock)
+  * bring back AdBlock and GreaseMonkey icons in statusbar + add new buttons
+  * fix incorrect size of buttons in bookmarks toolbar with some styles
+  * fix losing session when loading newer profile with old application version
+  * fix temporariliy enabling/disabling JavaScript using StatusBarIcons plugin
+  * fix user agent settings not being applied on startup
+  * fix calculating remaining time in download manager
+
+---

Old:

  QupZilla-2.2.4.tar.xz

New:

  QupZilla-2.2.5.tar.xz



Other differences:
--
++ qupzilla.spec ++
--- /var/tmp/diff_new_pack.nRTbLm/_old  2018-02-07 18:42:19.089640892 +0100
+++ /var/tmp/diff_new_pack.nRTbLm/_new  2018-02-07 18:42:19.093640705 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   qupzilla
-Version:2.2.4
+Version:2.2.5
 Release:0
 Summary:Qt-based web browser
 License:GPL-3.0+

++ QupZilla-2.2.4.tar.xz -> QupZilla-2.2.5.tar.xz ++
 31760 lines of diff (skipped)







commit openSUSE-release-tools for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2018-02-07 18:41:47

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


Package is "openSUSE-release-tools"

Wed Feb  7 18:41:47 2018 rev:51 rq:573561 version:20180206.faa028a

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
2018-02-06 16:50:58.258965373 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new/openSUSE-release-tools.changes
   2018-02-07 18:42:05.994254052 +0100
@@ -1,0 +2,7 @@
+Wed Feb 07 03:07:36 UTC 2018 - opensuse-releaset...@opensuse.org
+
+- Update to version 20180206.faa028a:
+  * osclib/conf: leap: incorporate proven unselect settings.
+  * osclib/conf: leap: incorporate proven splitter settings.
+
+---

Old:

  openSUSE-release-tools-20180206.453868a.obscpio

New:

  openSUSE-release-tools-20180206.faa028a.obscpio



Other differences:
--
++ openSUSE-release-tools.spec ++
--- /var/tmp/diff_new_pack.vXueGy/_old  2018-02-07 18:42:07.078203298 +0100
+++ /var/tmp/diff_new_pack.vXueGy/_new  2018-02-07 18:42:07.082203112 +0100
@@ -20,7 +20,7 @@
 %define source_dir osc-plugin-factory
 %define announcer_filename factory-package-news
 Name:   openSUSE-release-tools
-Version:20180206.453868a
+Version:20180206.faa028a
 Release:0
 Summary:Tools to aid in staging and release work for openSUSE/SUSE
 License:GPL-2.0+ AND MIT

++ _servicedata ++
--- /var/tmp/diff_new_pack.vXueGy/_old  2018-02-07 18:42:07.126201051 +0100
+++ /var/tmp/diff_new_pack.vXueGy/_new  2018-02-07 18:42:07.130200864 +0100
@@ -1,6 +1,6 @@
 
   
 https://github.com/openSUSE/osc-plugin-factory.git
-10e56c1f2e0aef798e5db823d0dd7396ce2e3abf
+faa028a805bdebf740dda3e38ac261e9e4f4f489
   
 

++ openSUSE-release-tools-20180206.453868a.obscpio -> 
openSUSE-release-tools-20180206.faa028a.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20180206.453868a/osclib/conf.py 
new/openSUSE-release-tools-20180206.faa028a/osclib/conf.py
--- old/openSUSE-release-tools-20180206.453868a/osclib/conf.py  2018-02-06 
11:57:44.0 +0100
+++ new/openSUSE-release-tools-20180206.faa028a/osclib/conf.py  2018-02-07 
04:01:04.0 +0100
@@ -70,6 +70,14 @@
 # check_source.py
 # review-team optionally added by leaper.py.
 'repo-checker': 'repo-checker',
+# 16 hour staging window for follow-ups since lower throughput.
+'splitter-staging-age-max': '57600',
+# No special packages since they will pass through SLE first.
+'splitter-special-packages': '',
+# Allow `unselect --cleanup` to operate immediately on:
+# - Update crawler requests (leaper)
+# - F-C-C submitter requests (maxlin_factory)
+'unselect-cleanup-whitelist': 'leaper maxlin_factory',
 'pkglistgen-archs': 'x86_64',
 'pkglistgen-archs-ports': 'aarch64',
 'pkglistgen-locales-from': 'openSUSE.product',

++ openSUSE-release-tools.obsinfo ++
--- /var/tmp/diff_new_pack.vXueGy/_old  2018-02-07 18:42:07.786170150 +0100
+++ /var/tmp/diff_new_pack.vXueGy/_new  2018-02-07 18:42:07.786170150 +0100
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20180206.453868a
-mtime: 1517914664
-commit: 453868ae590766f1188cdd7140c7fb8a61b98f5c
+version: 20180206.faa028a
+mtime: 1517972464
+commit: faa028a805bdebf740dda3e38ac261e9e4f4f489
 




commit f3 for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package f3 for openSUSE:Factory checked in 
at 2018-02-07 18:41:36

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


Package is "f3"

Wed Feb  7 18:41:36 2018 rev:5 rq:573554 version:7.0

Changes:

--- /work/SRC/openSUSE:Factory/f3/f3.changes2018-02-06 16:48:53.816790479 
+0100
+++ /work/SRC/openSUSE:Factory/.f3.new/f3.changes   2018-02-07 
18:41:38.19666 +0100
@@ -1,0 +2,5 @@
+Wed Feb  7 00:09:53 UTC 2018 - seroto...@gmail.com
+
+- Fix build for Leap 42.2 and SLE12.
+
+---



Other differences:
--
++ f3.spec ++
--- /var/tmp/diff_new_pack.IqLZVS/_old  2018-02-07 18:41:39.939474010 +0100
+++ /var/tmp/diff_new_pack.IqLZVS/_new  2018-02-07 18:41:39.943473823 +0100
@@ -47,7 +47,7 @@
 %build
 # workaround for libargp problem. see:
 # https://github.com/AltraMayor/f3/issues/34#issuecomment-168775122
-%if 0%{?sle_version} == 120300 && 0%{?is_opensuse} 
+%if %{?suse_version} < 1500
 export CFLAGS="%{optflags} -fgnu89-inline"
 %else
 export CFLAGS="%{optflags}"




commit ibus-rime for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package ibus-rime for openSUSE:Factory 
checked in at 2018-02-07 18:41:40

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


Package is "ibus-rime"

Wed Feb  7 18:41:40 2018 rev:11 rq:573556 version:1.2

Changes:

--- /work/SRC/openSUSE:Factory/ibus-rime/ibus-rime.changes  2017-02-03 
17:42:34.791268799 +0100
+++ /work/SRC/openSUSE:Factory/.ibus-rime.new/ibus-rime.changes 2018-02-07 
18:41:47.103138587 +0100
@@ -1,0 +2,8 @@
+Tue Feb  6 13:23:45 UTC 2018 - dims...@opensuse.org
+
+- Don't BuildRequire libyaml-cpp0_5/libyaml-cpp0_3 (depending on
+  version): explicitly buildrequiring a library is generally seen
+  always wrong. The correct library is already pulled in by
+  librime.
+
+---



Other differences:
--
++ ibus-rime.spec ++
--- /var/tmp/diff_new_pack.o9DRKs/_old  2018-02-07 18:41:47.999096635 +0100
+++ /var/tmp/diff_new_pack.o9DRKs/_new  2018-02-07 18:41:48.003096448 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ibus-rime
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -38,11 +38,6 @@
 BuildRequires:  librime-devel >= 1.0
 BuildRequires:  opencc
 BuildRequires:  opencc-devel
-%if 0%{?suse_version} > 1230
-BuildRequires:  libyaml-cpp0_5
-%else
-BuildRequires:  libyaml-cpp0_3
-%endif
 
 %description
 Rime Input Method Engine - riming with your keystrokes.




commit tnef for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package tnef for openSUSE:Factory checked in 
at 2018-02-07 18:41:20

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


Package is "tnef"

Wed Feb  7 18:41:20 2018 rev:24 rq:573533 version:1.4.17

Changes:

--- /work/SRC/openSUSE:Factory/tnef/tnef.changes2017-11-17 
11:00:53.258781884 +0100
+++ /work/SRC/openSUSE:Factory/.tnef.new/tnef.changes   2018-02-07 
18:41:22.980268093 +0100
@@ -1,0 +2,9 @@
+Mon Feb  5 21:09:20 UTC 2018 - asterios.dra...@gmail.com
+
+- Update to version 1.4.17:
+  * Fix embarrassing version number problem.
+  From version 1.4.16:
+  * Several documentation fixes.
+  * Small bug fix for UUID assertion.
+
+---

Old:

  tnef-1.4.15.tar.gz

New:

  tnef-1.4.17.tar.gz



Other differences:
--
++ tnef.spec ++
--- /var/tmp/diff_new_pack.9DPl9S/_old  2018-02-07 18:41:24.980174451 +0100
+++ /var/tmp/diff_new_pack.9DPl9S/_new  2018-02-07 18:41:24.984174264 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tnef
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   tnef
-Version:1.4.15
+Version:1.4.17
 Release:0
 Summary:Uncompress MS-TNEF Archives
 License:GPL-2.0+
@@ -25,7 +25,6 @@
 Url:https://github.com/verdammelt/tnef/
 Source: 
https://github.com/verdammelt/tnef/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  libtool
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 This tool uncompresses MS-TNEF archives as used by some mailers.
@@ -44,8 +43,7 @@
 %make_install
 
 %files
-%defattr(-,root,root,-)
-%doc AUTHORS BUGS COPYING ChangeLog NEWS README.md THANKS doc/FAQ
+%doc AUTHORS BUGS COPYING ChangeLog NEWS README.md THANKS doc/FAQ contrib/
 %{_bindir}/tnef
 %{_mandir}/man1/tnef.1%{ext_man}
 

++ tnef-1.4.15.tar.gz -> tnef-1.4.17.tar.gz ++
 3850 lines of diff (skipped)




commit python-josepy for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package python-josepy for openSUSE:Factory 
checked in at 2018-02-07 18:41:30

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


Package is "python-josepy"

Wed Feb  7 18:41:30 2018 rev:2 rq:573549 version:1.0.1

Changes:

--- /work/SRC/openSUSE:Factory/python-josepy/python-josepy.changes  
2018-01-31 19:52:24.620030104 +0100
+++ /work/SRC/openSUSE:Factory/.python-josepy.new/python-josepy.changes 
2018-02-07 18:41:35.807667474 +0100
@@ -1,0 +2,5 @@
+Tue Jan 30 22:15:57 UTC 2018 - jeng...@inai.de
+
+- Use Documentation/* as RPM group for -doc.
+
+---



Other differences:
--
++ python-josepy.spec ++
--- /var/tmp/diff_new_pack.CyZyMd/_old  2018-02-07 18:41:36.671627021 +0100
+++ /var/tmp/diff_new_pack.CyZyMd/_new  2018-02-07 18:41:36.675626834 +0100
@@ -66,7 +66,7 @@
 %package -n python-%{libname}-doc
 Summary:Documentation for python-josepy libraries
 #Provides:   %%{python_module %%{libname}-doc = %%{version}}
-Group:  Development/Languages/Python
+Group:  Documentation/HTML
 
 %description -n python-%{libname}-doc
 Documentation for the JOSE protocol implementation libraries






commit xdg-desktop-portal-kde for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package xdg-desktop-portal-kde for 
openSUSE:Factory checked in at 2018-02-07 18:41:18

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


Package is "xdg-desktop-portal-kde"

Wed Feb  7 18:41:18 2018 rev:15 rq:573514 version:5.12.0

Changes:

--- 
/work/SRC/openSUSE:Factory/xdg-desktop-portal-kde/xdg-desktop-portal-kde.changes
2018-01-25 12:39:36.949253970 +0100
+++ 
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-kde.new/xdg-desktop-portal-kde.changes
   2018-02-07 18:41:19.460432903 +0100
@@ -1,0 +2,18 @@
+Tue Feb  6 15:45:03 UTC 2018 - alarr...@suse.com
+
+- Add patch to fix build with latest Qt dev version where
+  QCUPSSupport::cupsOptionsList was removed from the private API
+  (kde#389825):
+  * 0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch
+
+---
+Fri Feb  2 21:03:45 CET 2018 - fab...@ritter-vogt.de
+
+- Update to 5.12.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.12.0.php
+- Changes since 5.11.95:
+  * None
+
+---

Old:

  xdg-desktop-portal-kde-5.11.95.tar.xz

New:

  0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch
  xdg-desktop-portal-kde-5.12.0.tar.xz



Other differences:
--
++ xdg-desktop-portal-kde.spec ++
--- /var/tmp/diff_new_pack.DUMVez/_old  2018-02-07 18:41:20.088403499 +0100
+++ /var/tmp/diff_new_pack.DUMVez/_new  2018-02-07 18:41:20.092403312 +0100
@@ -20,13 +20,15 @@
 
 %define kf5_version 5.26.0
 Name:   xdg-desktop-portal-kde
-Version:5.11.95
+Version:5.12.0
 Release:0
 Summary:QT/KF5 backend for xdg-desktop-portal
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.kde.org
-Source: 
http://download.kde.org/unstable/plasma/%{version}/xdg-desktop-portal-kde-%{version}.tar.xz
+Source: xdg-desktop-portal-kde-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM 
0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch - kde#389825
+Patch0: 0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch
 BuildRequires:  extra-cmake-modules >= %{kf5_version}
 BuildRequires:  libQt5PrintSupport-private-headers-devel
 BuildRequires:  cmake(KF5CoreAddons) >= %{kf5_version}
@@ -50,6 +52,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %cmake_kf5 -d build

++ 0001-Fix-build-with-Qt-dev-branch-where-QCUPSSupport-cups.patch ++
>From f0cc071c09d721734d0ca5bdf3baaa75d46bd64b Mon Sep 17 00:00:00 2001
From: Antonio Larrosa 
Date: Tue, 6 Feb 2018 16:54:31 +0100
Subject: [PATCH] Fix build with Qt dev branch, where
 QCUPSSupport::cupsOptionsList was removed

Summary:
Fix build with Qt dev branch, where QCUPSSupport::cupsOptionsList was removed

BUG 389825

Reviewers: aacid, jriddell

Differential Revision: https://phabricator.kde.org/D10345
---
 src/print.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/print.cpp b/src/print.cpp
index 439b6ce..d797007 100644
--- a/src/print.cpp
+++ b/src/print.cpp
@@ -636,7 +636,7 @@ uint PrintPortal::PreparePrint(const QDBusObjectPath 
,
 resultingSettings.insert(QLatin1String("page-ranges"), 
QString("%1-%2").arg(printer->fromPage()).arg(printer->toPage()));
 }
 // Set cups specific properties
-const QStringList cupsOptions = QCUPSSupport::cupsOptionsList(printer);
+const QStringList cupsOptions = 
printer->printEngine()->property(PPK_CupsOptions).toStringList();
 qCDebug(XdgDesktopPortalKdePrint) << cupsOptions;
 if (cupsOptions.contains(QLatin1String("page-set"))) {
 resultingSettings.insert(QLatin1String("page-set"), 
cupsOptions.at(cupsOptions.indexOf(QLatin1String("page-set")) + 1));
-- 
2.16.1

++ xdg-desktop-portal-kde-5.11.95.tar.xz -> 
xdg-desktop-portal-kde-5.12.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xdg-desktop-portal-kde-5.11.95/CMakeLists.txt 
new/xdg-desktop-portal-kde-5.12.0/CMakeLists.txt
--- old/xdg-desktop-portal-kde-5.11.95/CMakeLists.txt   2018-01-15 
14:46:33.0 +0100
+++ new/xdg-desktop-portal-kde-5.12.0/CMakeLists.txt2018-02-01 
15:46:26.0 +0100
@@ -3,7 +3,7 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
 
-set(PROJECT_VERSION "5.11.95")
+set(PROJECT_VERSION "5.12.0")
 set(PROJECT_VERSION_MAJOR 5)
 
 # set KDE specific information #
diff 

commit nextcloud for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package nextcloud for openSUSE:Factory 
checked in at 2018-02-07 18:41:12

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


Package is "nextcloud"

Wed Feb  7 18:41:12 2018 rev:8 rq:573418 version:13.0.0

Changes:

--- /work/SRC/openSUSE:Factory/nextcloud/nextcloud.changes  2017-12-20 
10:40:52.762578873 +0100
+++ /work/SRC/openSUSE:Factory/.nextcloud.new/nextcloud.changes 2018-02-07 
18:41:14.880647343 +0100
@@ -1,0 +2,109 @@
+Tue Feb  6 12:23:12 UTC 2018 - ec...@opensuse.org
+
+- update to 13.0.0
+  Over 1100 changes were merged in the server, with many hundreds 
+  more in existing or new apps. The main improvements include:
+  * Collaboration features
+- Nextcloud Talk, a private videoconference software integrated 
+  with Nextcloud
+  - real-time and asynchronous communication with push 
+notifications, calls and chat web and mobile devices
+  - Integration in business workflow with calendar invitations 
+and calls directly from Nextcloud Files
+  - Screen and note sharing with participant moderation 
+capabilities
+  - 100% secure peer-to-peer, end-to-end encrypted calls, 
+mediated by self-hosted server
+- auto-completion of user names in comments and notification 
+  to the mentioned user
+- support free/busy scheduling in native calendar applications 
+  like Thunderbird Lightning
+- show meeting invites in the calendar
+  * End-to-End Encryption
+- can encrypt data on a per-folder level rather than 
+  all-or-nothing approach
+- does not require users to remember or exchange passwords
+- does not require re-uploading data upon sharing
+- features an optional off-line administrator recovery key
+- allows full audit logging
+- can be combined with our File Access Control feature so 
+  administrator can enforce aspects of End-to-end Encryption
+- protects from identity theft with our Cryptographic Identity 
+  Protection feature
+This feature is in Tech Preview for Nextcloud 13 and does not 
+yet implement sharing.
+  * User Interface
+- new way of selecting files
+- easy way to quickly copy or move to a location
+- High DPI support
+- admin menu integrated in one list
+- no limitation to file uploads via the web interface
+- user quota in the side bar
+- social sharing (Twitter, G+, Facebook, Diaspora) now features
+  a preview
+- improved theming
+  * Performance
+- decreased page load times with up to 50% and faster search
+- 80% faster LDAP and up to 10x faster external storage
+- Server-side Encryption performance largely improved
+
+   See https://nextcloud.com/changelog/
+
+---
+Wed Jan 24 15:46:44 UTC 2018 - ec...@opensuse.org
+
+- update to 12.0.5
+  Many fixes were merged, the most important ones include:
+  - #7144 Unlock files even if an exception occurs
+  - #7322 Set primary action button color to same as theming color
+  - #7323 Use the correct root for shared jail when the source 
+storage is also a jail
+  - #7353 Fix translation of federation scope menu
+  - #7362 Allow to skip data dir permission checks
+  - #7407 Check if owner of share exists
+  - #7409 Add retry wrapper when reading files from swift
+  - #7451 Fix constructor spy in unit test with Sinon 4.1.3
+  - #7455 Remove wrong entry in admin_settings that causes 500
+  - #7456 CardDAV convertor check should not be to wide
+  - #7457 Fix loading icon position in the app menu
+  - #7464 Allow getting the filepath when getting cached mounts
+  - #7468 Allow 'Nextcloud' in the user agent string of Android
+  - #7558 Fix email buttons for white theme
+  - #7567 Respect sharing options when searching for Sharees
+  - #7568 Fix duplicate session token after remembered login
+  - #7577 Check userExists later, 
+saves lookups for appData_INSTANCEID userids
+  - #7672 Added additional methods for removal of sensitive info
+  - #7688 Fix scss webroot and url rewrite
+  - #7717 Throw ServerNotAvailableException when LDAP is caught 
+shutting down
+  - #7666 Fix drag shadow not visible when dragging a file on 
+a narrow screen
+  - #7674 Do no run SyncJob in cron
+  - #7684 Fix inverted app icons on IE11
+  - #7694 Don't attempt to translate login names to uids when uids
+are provided
+  - #7708 Don't show recurring msg when pages result was turned off
+  - #7742 Hide favourite icon in details view if favourite action 
+is not available
+  - #7745 Don't lie about preview types
+  - #7747 Update of composer
+  - #7758 add option to use legacy v2 auth with s3
+  - #7759 Use correct L10N files for 

commit latrace for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package latrace for openSUSE:Factory checked 
in at 2018-02-07 18:41:08

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


Package is "latrace"

Wed Feb  7 18:41:08 2018 rev:9 rq:573410 version:0.5.11

Changes:

--- /work/SRC/openSUSE:Factory/latrace/latrace.changes  2017-08-10 
14:12:51.598060025 +0200
+++ /work/SRC/openSUSE:Factory/.latrace.new/latrace.changes 2018-02-07 
18:41:09.572895870 +0100
@@ -1,0 +2,6 @@
+Mon Sep 11 19:31:07 UTC 2017 - jeng...@inai.de
+
+- Drop old RPM constructs like %clean or %__-type indirections.
+  Remove unnecessary ldconfig call.
+
+---



Other differences:
--
++ latrace.spec ++
--- /var/tmp/diff_new_pack.ohmIvP/_old  2018-02-07 18:41:10.152868714 +0100
+++ /var/tmp/diff_new_pack.ohmIvP/_new  2018-02-07 18:41:10.156868526 +0100
@@ -48,16 +48,10 @@
 %build
 autoconf
 %configure --libdir=%{_libdir}/latrace
-%__make V=1
+make V=1
 
 %install
-%makeinstall V=1
-
-%clean
-%{?buildroot:%__rm -rf "%{buildroot}"}
-
-%post   -p /sbin/ldconfig
-%postun -p /sbin/ldconfig
+%make_install V=1
 
 %files
 %defattr(-,root,root)




commit python-pymisp for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package python-pymisp for openSUSE:Factory 
checked in at 2018-02-07 18:40:49

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


Package is "python-pymisp"

Wed Feb  7 18:40:49 2018 rev:6 rq:573307 version:2.4.87

Changes:

--- /work/SRC/openSUSE:Factory/python-pymisp/python-pymisp.changes  
2017-12-31 01:14:16.963816393 +0100
+++ /work/SRC/openSUSE:Factory/.python-pymisp.new/python-pymisp.changes 
2018-02-07 18:40:53.069668690 +0100
@@ -1,0 +2,14 @@
+Tue Jan 30 12:37:13 UTC 2018 - sebix+novell@sebix.at
+
+- update to version 2.4.87:
+ - Add bindings for Galaxies and Taxonimies.
+ - Add bindings to PyMISPWarninglists.
+ - Raise an exception when distribution is sharing group, but the ID is
+   missing.
+ - Allow to pass a directory with custom object templates.
+ - Allow to pass value, UUID, or ID to a sighting.
+ - Add_hashes was broken. (#174)
+ - Add: Allow to fetch warninglists. (#180)
+- Add fix-Encode_string_in__encode_file_to_upload.patch to fix encoding 
problem (#183)
+
+---

Old:

  pymisp-2.4.85.tar.gz

New:

  fix-Encode_string_in__encode_file_to_upload.patch
  pymisp-2.4.87.tar.gz



Other differences:
--
++ python-pymisp.spec ++
--- /var/tmp/diff_new_pack.fgel3T/_old  2018-02-07 18:40:53.669640585 +0100
+++ /var/tmp/diff_new_pack.fgel3T/_new  2018-02-07 18:40:53.673640397 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pymisp
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,15 @@
 %{!?license: %global license %doc}
 %bcond_without test
 Name:   python-pymisp
-Version:2.4.85
+Version:2.4.87
 Release:0
 Summary:Python API for MISP
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Url:https://github.com/MISP/PyMISP
 Source: 
https://files.pythonhosted.org/packages/source/p/pymisp/pymisp-%{version}.tar.gz
+# PATCH_FIX_UPSTREAM: Fixes https://github.com/MISP/PyMISP/issues/183
+Patch0: 
https://github.com/MISP/PyMISP/commit/05bbfac658fb9f35ab773982b1c7dc94fbdbc96f.patch#/fix-Encode_string_in__encode_file_to_upload.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -67,6 +69,7 @@
 
 %prep
 %setup -q -n pymisp-%{version}
+%patch0 -p1
 find pymisp examples -name "*.py" -type f -exec sed -i '1s/^#!.*//' '{}' \+
 
 %build

++ fix-Encode_string_in__encode_file_to_upload.patch ++
>From 05bbfac658fb9f35ab773982b1c7dc94fbdbc96f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= 
Date: Mon, 29 Jan 2018 10:30:37 +0100
Subject: [PATCH] fix: Encode string in _encode_file_to_upload

---
 pymisp/api.py | 21 ++---
 tests/test_offline.py |  4 ++--
 2 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/pymisp/api.py b/pymisp/api.py
index e17e464e..ff21fa9c 100644
--- a/pymisp/api.py
+++ b/pymisp/api.py
@@ -815,9 +815,12 @@ def _prepare_upload(self, event_id, distribution, to_ids, 
category, comment, inf
 
 def _encode_file_to_upload(self, filepath_or_bytes):
 """Helper to encode a file to upload"""
-if isinstance(filepath_or_bytes, basestring) and 
os.path.isfile(filepath_or_bytes):
-with open(filepath_or_bytes, 'rb') as f:
-binblob = f.read()
+if isinstance(filepath_or_bytes, basestring):
+if os.path.isfile(filepath_or_bytes):
+with open(filepath_or_bytes, 'rb') as f:
+binblob = f.read()
+else:
+binblob = filepath_or_bytes.encode()
 else:
 binblob = filepath_or_bytes
 return base64.b64encode(binblob).decode()
@@ -1583,6 +1586,18 @@ def get_warninglist(self, warninglist_id):
 response = self.__prepare_request('GET', url)
 return self._check_response(response)
 
+# ## Galaxies/Clusters ##
+
+def get_galaxies(self):
+url = urljoin(self.root_url, '/galaxies')
+response = self.__prepare_request('GET', url)
+return self._check_response(response)
+
+def get_galaxy(self, galaxy_id):
+url = urljoin(self.root_url, '/galaxies/view/{}'.format(galaxy_id))
+response = self.__prepare_request('GET', url)
+return self._check_response(response)
+
 # 

commit vidcutter for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package vidcutter for openSUSE:Factory 
checked in at 2018-02-07 18:41:01

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


Package is "vidcutter"

Wed Feb  7 18:41:01 2018 rev:8 rq:573400 version:5.5.0

Changes:

--- /work/SRC/openSUSE:Factory/vidcutter/vidcutter.changes  2017-12-01 
15:54:30.962141591 +0100
+++ /work/SRC/openSUSE:Factory/.vidcutter.new/vidcutter.changes 2018-02-07 
18:41:07.185007679 +0100
@@ -1,0 +2,84 @@
+Tue Feb  6 16:10:25 UTC 2018 - aloi...@gmx.com
+
+- Install appdata xml file only in /usr/share/metainfo
+
+---
+Tue Feb  6 12:43:14 UTC 2018 - aloi...@gmx.com
+
+- Update to version 5.5.0
+  * The most requested feature is finally added; media stream
+configuration! A new media stream button has been added and
+enabled for use when clips are all derived from the same source
+media OR media files added manually all share the same codecs,
+formats, etc... A view of all detected streams including video,
+audio, text/subtitles. Chapters are not included as they are
+treated differently by FFmpeg and followng the usual rule of
+thumb in VidCutter which is they will be included in your end
+result if the original source is not corrupt or in some weird
+non-standard configuration.
+
+  * Migrated main toolbar buttons from QToolBar + QActions to new
+custom widget VCToolBarButton handling QPushButton with
+attached. This allows working pressed states on existing
+toolbar buttons which QToolBar buttons (for reasons I cannot
+fathom) do not.
+
+  * Tools section added to settings for setting paths to three
+main tools used by VidCutter; FFmpeg, FFprobe and MediaInfo.
+Set to Defaults button reverts changes to defaults, especially
+useful for users of bundled packages of app (AppImage, Windows
+and macOS which contain these tools prepacked). Allows you to
+use different versions of said tools.
+
+  * End of file is now being observed in the mpv library event
+pool so that playback state resets position back to the start,
+in pause and all controls in their default states.
+
+  * Ability to set clip index list to the left or right (default)
+of main window.
+
+  * Support for WTV (.wtv - Windows Recorded TV Show) media files
+(playback and cutting/joining) added.
+
+  * Required dependency of PyOpenGL python module introduced for
+users on slightly older Ubuntu, Fedora and Ubuntu based Linux
+distributions. such as Mint or ElementaryOS. This now fixes
+things if you were experiencing immediate segmentation faults
+when launching. no OpenGL context could be created. Again,
+this only applies to Linux and only to those distro mentioned
+above. No user manual tasks needed, Ubuntu and Fedora packaging
+scripts already updated so it should all be seamless to the end
+user.
+
+  * ffprobe code fixed for media that is either problematic or
+imperfect. stdout and stderr streams separated for ffprobe
+calls, thus fixing ffprobe JSON parsing errors and allowing the
+addition of the new .WTV media file format.
+
+  * Minor changes/improvements to a few other front panel buttons
+w/ pressed states where previously unavailable + minor cosmetic
+improvements to color schemes of hover/active state buttons
+
+  * Linux desktop and appdata metadata files switched to reverse
+domain notation file names as per freedesktop.org specs
+
+  * Fullscreen mode rewrite for Qt 5.10 changes + better support
+in wayland.
+
+  * OpenGL helpers added to X11 and Wayland based Linux platforms
+to better assist with fullscreen functionality and video render
+compatibility any where an OpenGL context can be created.
+
+  * Updated keyboard shortcuts information to include some added
+keyboard and mouse based shortcuts.
+
+  * Defined cutting regions shown on the timeline are now hidden
+during the "generating thumbnails" process (mainly evident when
+turning thumbnails on/off or resizing the application's window)
+
+  * Better detection and prompting if application exit is
+attempted while video processing jobs in progress, if user
+decides to continue quitting then kill all VidCutter associated
+jobs gracefully and force the usual cleanup routines
+
+---

Old:

  vidcutter-5.0.5.tar.gz

New:

  vidcutter-5.5.0.tar.gz



Other differences:
--
++ vidcutter.spec ++
--- /var/tmp/diff_new_pack.JE9IHe/_old  2018-02-07 18:41:08.100964791 +0100
+++ 

commit hugin for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package hugin for openSUSE:Factory checked 
in at 2018-02-07 18:40:59

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


Package is "hugin"

Wed Feb  7 18:40:59 2018 rev:58 rq:573398 version:2018.0.0

Changes:

--- /work/SRC/openSUSE:Factory/hugin/hugin.changes  2018-02-02 
22:22:45.240553960 +0100
+++ /work/SRC/openSUSE:Factory/.hugin.new/hugin.changes 2018-02-07 
18:41:03.437183165 +0100
@@ -1,0 +2,27 @@
+Tue Feb  6 08:16:56 UTC 2018 - adr...@suse.de
+
+- update to version 2018.0.0
+  The version 2018.0 is mainly a bug fix release and introduce some minor new 
features.
+
+  Several improvements for optimizer tabs:
+  * mark deselected images
+  * allow changing optimizer variables for all selected images at once
+  * option to ignore line cp
+  * hugin_stacker: New tool to stack overlapping images with several
+averaging modes (e.g. mean, median).
+  * Hugin: Added option to disable auto-rotation of images in control
+point and mask editor.
+  * Nona, verdandi and hugin_stacker can now write BigTIFF images
+  * Added expression parser to GUI: This allows to manipulate several
+image variables at once. (This is the same as running pto_var
+--set from the command line.) This can be used e.g. to prealigns
+the images in a given setup and then run cpfind --prealigned to
+search control points only in overlapping images.
+  * Add user-defined assistant and expose it in the GUI. It allows
+to set up different assistant strategies without the need to
+recompiling. Provide also some examples (scanned images,
+multi-row panoramas with orphaned images, single-shot panorama
+cameras).
+- drop python dependencies
+
+---

Old:

  hugin-2017.0.0.tar.bz2

New:

  hugin-2018.0.0.tar.bz2



Other differences:
--
++ hugin.spec ++
--- /var/tmp/diff_new_pack.fbh3QB/_old  2018-02-07 18:41:04.225146270 +0100
+++ /var/tmp/diff_new_pack.fbh3QB/_new  2018-02-07 18:41:04.229146082 +0100
@@ -43,7 +43,6 @@
 BuildRequires:  libpano-devel >= 2.9.19
 BuildRequires:  libtiff-devel
 BuildRequires:  libxml2
-BuildRequires:  python-devel
 BuildRequires:  python-wxWidgets >= 3
 BuildRequires:  sqlite3-devel
 BuildRequires:  swig
@@ -51,8 +50,8 @@
 BuildRequires:  vigra-devel
 BuildRequires:  wxWidgets-devel >= 3
 BuildRequires:  zip
-%define mversion 2017.0
-Version:2017.0.0
+%define mversion 2018.0
+Version:2018.0.0
 Release:0
 Summary:Toolchain for Stitching of Images and Creating Panoramas
 License:GPL-2.0+
@@ -116,7 +115,6 @@
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=%{_prefix} -DLIB_SUFFIX=$LIB_SUFFIX \
-DENABLE_LAPACK=ON BUILD_HSI=ON \
-   -DPYTHON_EXECUTABLE=/usr/bin/python2 \
..
 # parallel make kills our workers
 make VERBOSE=1 %{?_smp_mflags} -j1
@@ -161,7 +159,5 @@
 %dir %{_libdir}/hugin
 %{_libdir}/hugin/*.so.*
 %doc %{_mandir}/man?/*.*
-%{py_sitedir}/*hpi*
-%{py_sitedir}/*hsi*
 
 %changelog

++ hugin-2017.0.0.tar.bz2 -> hugin-2018.0.0.tar.bz2 ++
/work/SRC/openSUSE:Factory/hugin/hugin-2017.0.0.tar.bz2 
/work/SRC/openSUSE:Factory/.hugin.new/hugin-2018.0.0.tar.bz2 differ: char 11, 
line 1




commit strongswan for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package strongswan for openSUSE:Factory 
checked in at 2018-02-07 18:41:10

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


Package is "strongswan"

Wed Feb  7 18:41:10 2018 rev:66 rq:573411 version:5.6.0

Changes:

--- /work/SRC/openSUSE:Factory/strongswan/strongswan.changes2017-09-07 
22:15:53.940274130 +0200
+++ /work/SRC/openSUSE:Factory/.strongswan.new/strongswan.changes   
2018-02-07 18:41:11.660798108 +0100
@@ -1,0 +2,9 @@
+Tue Oct 17 11:27:54 UTC 2017 - jeng...@inai.de
+
+- Update summaries and descriptions. Trim filler words and
+  author list.
+- Drop %if..%endif guards that are idempotent and do not affect
+  the build result.
+- Replace old $RPM_ shell variables.
+
+---



Other differences:
--
++ strongswan.spec ++
--- /var/tmp/diff_new_pack.0TXGjS/_old  2018-02-07 18:41:12.552756343 +0100
+++ /var/tmp/diff_new_pack.0TXGjS/_new  2018-02-07 18:41:12.552756343 +0100
@@ -61,7 +61,7 @@
 %else
 %bcond_with systemd
 %endif
-Summary:OpenSource IPsec-based VPN Solution
+Summary:IPsec-based VPN solution
 License:GPL-2.0+
 Group:  Productivity/Networking/Security
 Url:http://www.strongswan.org/
@@ -127,17 +127,16 @@
 BuildRequires:  libtool
 
 %description
-StrongSwan is an OpenSource IPsec-based VPN Solution for Linux
+StrongSwan is an IPsec-based VPN solution for Linux.
 
-* runs both on Linux 2.4 (KLIPS IPsec) and Linux 2.6 (NETKEY IPsec) kernels
-* implements both the IKEv1 and IKEv2 (RFC 4306) key exchange protocols
+* Implements both the IKEv1 and IKEv2 (RFC 4306) key exchange protocols
 * Fully tested support of IPv6 IPsec tunnel and transport connections
-* Dynamical IP address and interface update with IKEv2 MOBIKE (RFC 4555)
+* Dynamic IP address and interface update with IKEv2 MOBIKE (RFC 4555)
 * Automatic insertion and deletion of IPsec-policy-based firewall rules
 * Strong 128/192/256 bit AES or Camellia encryption, 3DES support
-* NAT-Traversal via UDP encapsulation and port floating (RFC 3947)
+* NAT Traversal via UDP encapsulation and port floating (RFC 3947)
 * Dead Peer Detection (DPD, RFC 3706) takes care of dangling tunnels
-* Static virtual IPs and IKEv1 ModeConfig pull and push modes
+* Static virtual IP addresses and IKEv1 ModeConfig pull and push modes
 * XAUTH server and client functionality on top of IKEv1 Main Mode 
authentication
 * Virtual IP address pool managed by IKE daemon or SQL database
 * Secure IKEv2 EAP user authentication (EAP-SIM, EAP-AKA, EAP-MSCHAPv2, etc.)
@@ -154,46 +153,32 @@
 * Modular plugins for crypto algorithms and relational database interfaces
 * Support of elliptic curve DH groups and ECDSA certificates (Suite B, RFC 
4869)
 * Optional built-in integrity and crypto tests for plugins and libraries
-* Smooth Linux desktop integration via the strongSwan NetworkManager applet
+* Linux desktop integration via the strongSwan NetworkManager applet
 
 This package triggers the installation of both, IKEv1 and IKEv2 daemons.
 
-Authors:
-
-Andreas Steffen
-and others
-
 %package doc
 BuildArch:  noarch
-Summary:OpenSource IPsec-based VPN Solution
-Group:  Productivity/Networking/Security
+Summary:Documentation for strongSwan
+Group:  Documentation/Man
 
 %description doc
-StrongSwan is an OpenSource IPsec-based VPN Solution for Linux
+StrongSwan is an IPsec-based VPN solution for Linux.
 
 This package provides the StrongSwan documentation.
 
-
-
-Authors:
-
-Andreas Steffen
-and others
-
 %package libs0
-Summary:OpenSource IPsec-based VPN Solution
+Summary:strongSwan core libraries and basic plugins
 Group:  Productivity/Networking/Security
 Conflicts:  strongswan < %{version}
 
 %description libs0
-StrongSwan is an OpenSource IPsec-based VPN Solution for Linux
+StrongSwan is an IPsec-based VPN solution for Linux.
 
 This package provides the strongswan library and plugins.
 
-%if %{with fipscheck}
-
 %package hmac
-Summary:HMAC files for FIPS-140-2 integrity
+Summary:HMAC files for FIPS-140-2 integrity in strongSwan
 Group:  Productivity/Networking/Security
 Requires:   fipscheck
 Requires:   strongswan-ipsec = %{version}
@@ -206,10 +191,8 @@
 "ipsec start" action is executed, when FIPS-140-2 compliant operation
 mode is enabled.
 
-%endif
-
 %package ipsec
-Summary:OpenSource IPsec-based VPN Solution
+Summary:IPsec-based VPN solution
 Group:  Productivity/Networking/Security
 PreReq: grep %insserv_prereq %fillup_prereq
 

commit geda-gaf for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package geda-gaf for openSUSE:Factory 
checked in at 2018-02-07 18:41:04

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


Package is "geda-gaf"

Wed Feb  7 18:41:04 2018 rev:8 rq:573403 version:1.8.2

Changes:

--- /work/SRC/openSUSE:Factory/geda-gaf/geda-gaf.changes2015-03-05 
18:16:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.geda-gaf.new/geda-gaf.changes   2018-02-07 
18:41:08.284956176 +0100
@@ -1,0 +2,6 @@
+Sat Feb  3 08:46:15 UTC 2018 - b...@vdm-design.de
+
+- Add patch fix-gxyrs-utility.patch to fix the failed unittest
+  when building for factory
+
+---

New:

  fix-gxyrs-utility.patch



Other differences:
--
++ geda-gaf.spec ++
--- /var/tmp/diff_new_pack.N3LQli/_old  2018-02-07 18:41:09.140916097 +0100
+++ /var/tmp/diff_new_pack.N3LQli/_new  2018-02-07 18:41:09.144915909 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package geda-gaf
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,6 +30,8 @@
 Patch0: gschem-doc-path.patch
 # PATCH-FIX-OPENSUSE grenum-no-build-time.patch -- fix "W: 
file-contains-date-and-time"
 Patch1: grenum-no-build-time.patch
+# PATCH-FIX-UPSTREAM fix-gxyrs-utility.patch bnc#1078838 -- fix unittests on 
tumbleweed
+Patch2: fix-gxyrs-utility.patch
 
 BuildRequires:  bison
 BuildRequires:  cairo-devel
@@ -107,7 +109,6 @@
 Summary:Basic Library that is Used by Several gEDA Programs
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
-# Requires:   freetype2-devel
 Requires:   glib2-devel
 Requires:   gtk2-devel
 Requires:   guile-devel
@@ -222,6 +223,7 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 # export LDFLAGS="-lm $LDFLAGS"

++ fix-gxyrs-utility.patch ++
>From 9b3bf135f2ceb372e3f04c6a70ca8e68bb92112f Mon Sep 17 00:00:00 2001
From: Roland Lutz 
Date: Sun, 5 Mar 2017 17:34:52 +0100
Subject: [PATCH] Fix `gxyrs' utility

---
 utils/gxyrs/gxyrs.pl | 4 
 1 file changed, 4 insertions(+)

diff --git a/utils/gxyrs/gxyrs.pl b/utils/gxyrs/gxyrs.pl
index 3b7f21d92..5957f055e 100644
--- a/utils/gxyrs/gxyrs.pl
+++ b/utils/gxyrs/gxyrs.pl
@@ -321,6 +321,10 @@ sub usage {
usage();
 }
 
+if (defined $adjust_file && substr($adjust_file, 0, 1) ne "/") {
+   $adjust_file = "./" . $adjust_file;
+}
+
 
 if ($file_in !~ '^-$') {
open(FILE_IN, $file_in) || die ("Can't open input file $file_in: $!");



commit kopano for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package kopano for openSUSE:Factory checked 
in at 2018-02-07 18:40:53

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


Package is "kopano"

Wed Feb  7 18:40:53 2018 rev:11 rq:573320 version:8.5.0.0

Changes:

--- /work/SRC/openSUSE:Factory/kopano/kopano.changes2018-01-19 
11:53:08.195854841 +0100
+++ /work/SRC/openSUSE:Factory/.kopano.new/kopano.changes   2018-02-07 
18:40:56.105526477 +0100
@@ -1,0 +2,12 @@
+Mon Feb  5 23:10:07 UTC 2018 - jeng...@inai.de
+
+- Update to final tag 8.5.0
+  * libserver: store size for orphaned stores was reported
+incorrectly
+  * client: have OpenEntry check for NULL entryids and entryids
+too short
+  * dagent, client: fix nonfunctional HTML filter
+  * common: switch logging to stderr when pipe dies
+  * spooler: avoid printing garbage when non-worker child exits
+
+---
@@ -4 +16 @@
-- Update to new upstream tag 8.4.91
+- Update to new upstream tag 8.4.91 (RC)

Old:

  build.collax
  kopanocore-8.4.91.14.tar.xz

New:

  kopanocore-8.5.0.0.tar.xz



Other differences:
--
++ kopano.spec ++
--- /var/tmp/diff_new_pack.CwWqfd/_old  2018-02-07 18:40:58.977391988 +0100
+++ /var/tmp/diff_new_pack.CwWqfd/_new  2018-02-07 18:40:58.981391800 +0100
@@ -17,14 +17,14 @@
 #
 
 
-%define version_unconverted 8.4.91.14
+%define version_unconverted 8.5.0.0
 # Compat macro for new _fillupdir macro introduced in Nov 2017
 %if ! %{defined _fillupdir}
%define _fillupdir /var/adm/fillup-templates
 %endif
 
 Name:   kopano
-Version:8.4.91.14
+Version:8.5.0.0
 Release:0
 Summary:Groupware server suite
 License:AGPL-3.0
@@ -32,8 +32,8 @@
 Url:https://kopano.io/
 Source: kopanocore-%version.tar.xz
 Source3:%name-rpmlintrc
-Source4:build.collax
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  gcc-c++ >= 4.8
 BuildRequires:  gettext-devel
 BuildRequires:  gperftools-devel
 BuildRequires:  gsoap-devel >= 2.8.49
@@ -188,6 +188,7 @@
 Requires(pre):  %_sbindir/groupadd
 Requires(pre):  %_sbindir/useradd
 %if 0%{?distro_without_intelligent_package_manager}
+Obsoletes:  libkchl0
 Obsoletes:  libkcservice0
 Obsoletes:  libkcsoapclient0
 Obsoletes:  libkcsoapserver0
@@ -580,12 +581,11 @@
 
 %build
 autoreconf -fi
+# Grab new compiler (like devtoolset-7-gcc for RH) from prjconf
+export CC="%__cc"
+export CXX="%__cxx"
 export CFLAGS="%optflags"
 export CXXFLAGS="$CFLAGS"
-if [ -x /opt/rh/devtoolset-7/root/usr/bin/gcc ]; then
-   export CC="/opt/rh/devtoolset-7/root/usr/bin/gcc"
-   export CXX="/opt/rh/devtoolset-7/root/usr/bin/g++"
-fi
 export LDFLAGS="-Wl,-z -Wl,relro"
 %if 0%{?centos_version} == 600
 # CO6's ncurses-config is messed up
@@ -616,7 +616,7 @@
--with-userscript-prefix="%_sysconfdir/kopano/userscripts" \
--with-quotatemplate-prefix="%_sysconfdir/kopano/quotamail" \
--with-php-config="%phpconfig" --enable-epoll --enable-release \
-   PYTHON="$pyint" PYTHON_CFLAGS="$PYTHON_CFLAGS" 
PYTHON_LIBS="$PYTHON_LIBS"
+   PYTHON="$(which $pyint)" PYTHON_CFLAGS="$PYTHON_CFLAGS" 
PYTHON_LIBS="$PYTHON_LIBS"
 
 echo "%version" >version
 make V=1 %{?_smp_mflags}

++ PKGBUILD ++
--- /var/tmp/diff_new_pack.CwWqfd/_old  2018-02-07 18:40:59.017390115 +0100
+++ /var/tmp/diff_new_pack.CwWqfd/_new  2018-02-07 18:40:59.021389928 +0100
@@ -1,5 +1,5 @@
 pkgname=kopano
-pkgver=8.4.91.14
+pkgver=8.5.0.0
 pkgrel=0
 pkgdesc='Kopano'
 arch=('x86_64')

++ _service ++
--- /var/tmp/diff_new_pack.CwWqfd/_old  2018-02-07 18:40:59.037389178 +0100
+++ /var/tmp/diff_new_pack.CwWqfd/_new  2018-02-07 18:40:59.041388991 +0100
@@ -3,8 +3,8 @@
git
https://stash.kopano.io/scm/kc/kopanocore.git
kc-8.5.x
-   kopanocore-8.4.91
-   8.4.91.@TAG_OFFSET@
+   kopanocore-8.5.0
+   8.5.0.@TAG_OFFSET@


*.tar

++ debian.changelog ++
--- /var/tmp/diff_new_pack.CwWqfd/_old  2018-02-07 18:40:59.061388055 +0100
+++ /var/tmp/diff_new_pack.CwWqfd/_new  2018-02-07 18:40:59.061388055 +0100
@@ -1,4 +1,4 @@
-kopano (8.4.91.14-0) unstable; urgency=low
+kopano (8.5.0.0-0) unstable; urgency=low
 
   * Current release.
 

++ debian.control ++
--- /var/tmp/diff_new_pack.CwWqfd/_old  2018-02-07 18:40:59.105385994 +0100
+++ /var/tmp/diff_new_pack.CwWqfd/_new  2018-02-07 18:40:59.105385994 +0100
@@ -90,7 +90,7 @@
 Package: kopano-common
 Architecture: any
 Depends: lsb-base
-Replaces: libkcservice0, 

commit rubygem-rdiscount for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package rubygem-rdiscount for 
openSUSE:Factory checked in at 2018-02-07 18:40:14

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


Package is "rubygem-rdiscount"

Wed Feb  7 18:40:14 2018 rev:1 rq:570381 version:2.2.0.1

Changes:

New Changes file:

--- /dev/null   2018-01-05 12:14:39.755488130 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-rdiscount.new/rubygem-rdiscount.changes 
2018-02-07 18:40:16.443384433 +0100
@@ -0,0 +1,72 @@
+---
+Sat Oct  8 04:35:40 UTC 2016 - co...@suse.com
+
+- updated to version 2.2.0.1
+  no changelog found
+
+---
+Wed Feb 11 16:14:26 UTC 2015 - co...@suse.com
+
+- updated to version 2.1.8
+
+---
+Sun May 18 09:04:44 UTC 2014 - co...@suse.com
+
+- updated to version 2.1.7.1
+
+---
+Sun Feb 16 14:00:40 UTC 2014 - kkae...@suse.com
+
+- use new macros
+
+---
+Sun Oct 20 12:05:39 UTC 2013 - co...@suse.com
+
+- updated to version 2.1.7
+
+---
+Mon Jun  3 19:52:25 UTC 2013 - co...@suse.com
+
+- updated to version 2.1.6
+
+---
+Sat May 18 07:42:18 UTC 2013 - co...@suse.com
+
+- updated to version 2.0.7.3
+
+---
+Thu Mar 14 17:46:16 UTC 2013 - mrueck...@suse.de
+
+- update to version 2.0.7.1
+
+---
+Tue Feb 12 14:09:34 UTC 2013 - co...@suse.com
+
+- updated to version 2.0.7
+
+---
+Sun Sep 18 00:17:32 UTC 2011 - mrueck...@suse.de
+
+- update to 1.6.8
+- fix license tag: it is BSD4c
+
+---
+Mon Jun 14 15:46:54 UTC 2010 - mrueck...@suse.de
+
+- update to version 1.6.3.2
+
+---
+Fri Jun 11 10:00:01 UTC 2010 - mrueck...@suse.de
+
+- use rubygems_requires macro
+
+---
+Fri Dec 25 02:15:44 UTC 2009 - prus...@suse.cz
+
+- update to 1.5.5
+
+---
+Sat Aug  8 21:10:39 UTC 2009 - dmacvi...@novell.com
+
+- initial package for 1.3.5
+

New:

  gem2rpm.yml
  rdiscount-2.2.0.1.gem
  rubygem-rdiscount-rpmlintrc
  rubygem-rdiscount.changes
  rubygem-rdiscount.spec



Other differences:
--
++ rubygem-rdiscount.spec ++
#
# spec file for package rubygem-rdiscount
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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


#
# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
# All sections marked as MANUAL, license headers, summaries and descriptions
# can be maintained in that file. Please consult this file before editing any
# of those fields
#

Name:   rubygem-rdiscount
Version:2.2.0.1
Release:0
%define mod_name rdiscount
%define mod_full_name %{mod_name}-%{version}
# MANUAL
Conflicts:  ruby = 1.9.2
# Please comment the ruby-devel build requirements that have the "<"
# and ">" operators. Otherwise it won't build.
# This is a manual hack until the != operator for ruby gets correctly 
# translated by gem2rpm
# /MANUAL
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  ruby-macros >= 5
BuildRequires:  %{rubydevel > 1.9.2}
BuildRequires:  %{rubygem gem2rpm}
BuildRequires:  update-alternatives
Url:http://dafoster.net/projects/rdiscount/
Source: https://rubygems.org/gems/%{mod_full_name}.gem
Source1:rubygem-rdiscount-rpmlintrc
Source2:gem2rpm.yml
Summary:Fast Implementation of Gruber's Markdown in C
License:

commit hub for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package hub for openSUSE:Factory checked in 
at 2018-02-07 18:40:27

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


Package is "hub"

Wed Feb  7 18:40:27 2018 rev:1 rq:571814 version:2.3.0_pre10

Changes:

New Changes file:

--- /dev/null   2018-01-05 12:14:39.755488130 +0100
+++ /work/SRC/openSUSE:Factory/.hub.new/hub.changes 2018-02-07 
18:40:27.982843869 +0100
@@ -0,0 +1,4 @@
+---
+Sat Jan 27 17:16:10 UTC 2018 - tampak...@opensuse.org
+
+- Initial package

New:

  hub.changes
  hub.spec
  v2.3.0-pre10.tar.gz



Other differences:
--
++ hub.spec ++
#
# spec file for package hub
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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


Name:   hub
Version:2.3.0_pre10
%define ver 2.3.0-pre10
Release:0
Summary:Command-line wrapper for git and GitHub
License:MIT
Group:  Development/Tools/Version Control
Url:https://github.com/github/hub
Source: https://github.com/github/%{name}/archive/v%{ver}.tar.gz
BuildRequires:  fish
BuildRequires:  go
BuildRequires:  groff
BuildRequires:  rubygem(ronn)
BuildRequires:  zsh
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
hub is a command line tool that wraps git in order to extend it with extra 
features and commands that make working with GitHub easier.

%prep
%setup -q -n %{name}-%{ver}
sed -i -e 's#bin/ronn --#ronn --#' -e 's#script/bootstrap#true#' Makefile
chmod +x script/install.sh
sed -i -e 's#cd .*#true#' script/install.sh

%build
make bin/hub man-pages

%install
prefix=%{buildroot}%{_prefix} script/install.sh
install -Dm0644 etc/hub.bash_completion.sh 
%{buildroot}%{_datadir}/bash-completion/completions/hub
install -Dm0644 etc/hub.fish_completion 
%{buildroot}%{_datadir}/fish/vendor_completions.d/hub.fish
install -Dm0644 etc/hub.zsh_completion 
%{buildroot}%{_datadir}/zsh/site-functions/_hub

%check
#make test
#make test-all

%files
%defattr(-,root,root)
%{_bindir}/hub
%{_mandir}/man1/hub.1.gz
%{_mandir}/man1/hub-*.1.gz
%{_datadir}/bash-completion/completions/hub
%{_datadir}/fish/vendor_completions.d/hub.fish
%{_datadir}/zsh/site-functions/_hub

%changelog




commit MozillaFirefox for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:Factory 
checked in at 2018-02-07 18:39:24

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


Package is "MozillaFirefox"

Wed Feb  7 18:39:24 2018 rev:265 rq:573290 version:58.0.1

Changes:

--- /work/SRC/openSUSE:Factory/MozillaFirefox/MozillaFirefox.changes
2018-01-16 09:36:32.534057916 +0100
+++ /work/SRC/openSUSE:Factory/.MozillaFirefox.new/MozillaFirefox.changes   
2018-02-07 18:39:29.289593369 +0100
@@ -1,0 +2,103 @@
+Tue Feb  6 07:03:42 UTC 2018 - fst...@suse.com
+
+- Added patch:
+  * mozilla-alsa-sandbox.patch: Fix bmo#1430274, ALSA sound (still
+or again?) not working in Firefox 58 due to sandboxing.
+
+---
+Mon Jan 29 22:32:21 UTC 2018 - w...@rosenauer.org
+
+- update to Firefox 58.0.1
+  MFSA 2018-05
+  *  Arbitrary code execution through unsanitized browser UI (bmo#1432966)
+- use correct language packs
+- readd mozilla-enable-csd.patch as it only lands for FF59 upstream
+- allow larger number of nested elements (mozilla-bmo256180.patch)
+
+---
+Tue Jan 23 20:40:57 UTC 2018 - w...@rosenauer.org
+
+- update to Firefox 58.0 (bsc#1077291)
+  * Added Nepali (ne-NP) locale
+  * Added support for form autofill for credit card
+  * Optimize page load by caching JavaScript internal representation
+  MFSA 2018-02
+  * CVE-2018-5091 (bmo#1423086)
+Use-after-free with DTMF timers
+  * CVE-2018-5092 (bmo#1418074)
+Use-after-free in Web Workers
+  * CVE-2018-5093 (bmo#1415291)
+Buffer overflow in WebAssembly during Memory/Table resizing
+  * CVE-2018-5094 (bmo#1415883)
+Buffer overflow in WebAssembly with garbage collection on
+uninitialized memory
+  * CVE-2018-5095 (bmo#1418447)
+Integer overflow in Skia library during edge builder allocation
+  * CVE-2018-5097 (bmo#1387427)
+Use-after-free when source document is manipulated during XSLT
+  * CVE-2018-5098 (bmo#1399400)
+Use-after-free while manipulating form input elements
+  * CVE-2018-5099 (bmo#1416878)
+Use-after-free with widget listener
+  * CVE-2018-5100 (bmo#1417405)
+Use-after-free when IsPotentiallyScrollable arguments are freed
+from memory
+  * CVE-2018-5101 (bmo#1417661)
+Use-after-free with floating first-letter style elements
+  * CVE-2018-5102 (bmo#1419363)
+Use-after-free in HTML media elements
+  * CVE-2018-5103 (bmo#1423159)
+Use-after-free during mouse event handling
+  * CVE-2018-5104 (bmo#1425000)
+Use-after-free during font face manipulation
+  * CVE-2018-5105 (bmo#1390882)
+WebExtensions can save and execute files on local file system
+without user prompts
+  * CVE-2018-5106 (bmo#1408708)
+Developer Tools can expose style editor information cross-origin
+through service worker
+  * CVE-2018-5107 (bmo#1379276)
+Printing process will follow symlinks for local file access
+  * CVE-2018-5108 (bmo#1421099)
+Manually entered blob URL can be accessed by subsequent private browsing 
tabs
+  * CVE-2018-5109 (bmo#1405599)
+Audio capture prompts and starts with incorrect origin attribution
+  * CVE-2018-5110 (bmo#1423275) (affects only OS X)
+Cursor can be made invisible on OS X
+  * CVE-2018-5111 (bmo#1321619)
+URL spoofing in addressbar through drag and drop
+  * CVE-2018-5112 (bmo#1425224)
+Extension development tools panel can open a non-relative URL in the panel
+  * CVE-2018-5113 (bmo#1425267)
+WebExtensions can load non-HTTPS pages with 
browser.identity.launchWebAuthFlow
+  * CVE-2018-5114 (bmo#1421324)
+The old value of a cookie changed to HttpOnly remains accessible to scripts
+  * CVE-2018-5115 (bmo#1409449)
+Background network requests can open HTTP authentication in unrelated 
foreground tabs
+  * CVE-2018-5116 (bmo#1396399)
+WebExtension ActiveTab permission allows cross-origin frame content access
+  * CVE-2018-5117 (bmo#1395508)
+URL spoofing with right-to-left text aligned left-to-right
+  * CVE-2018-5118 (bmo#1420049)
+Activity Stream images can attempt to load local content through file:
+  * CVE-2018-5119 (bmo#1420507)
+Reader view will load cross-origin content in violation of CORS headers
+  * CVE-2018-5121 (bmo#1402368) (affects only OS X)
+OS X Tibetan characters render incompletely in the addressbar
+  * CVE-2018-5122 (bmo#1413841)
+Potential integer overflow in DoCrypt
+  * CVE-2018-5090
+Memory safety bugs fixed in Firefox 58
+  * CVE-2018-5089
+Memory safety bugs fixed in Firefox 58 and Firefox ESR 52.6
+- requires NSS 3.34.1
+- requires rust 1.21
+- removed obsolete patches:
+  mozilla-bindgen-systemlibs.patch
+  

commit tracker for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package tracker for openSUSE:Factory checked 
in at 2018-02-07 18:39:02

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


Package is "tracker"

Wed Feb  7 18:39:02 2018 rev:105 rq:573682 version:2.0.3

Changes:

--- /work/SRC/openSUSE:Factory/tracker/tracker.changes  2018-01-16 
09:28:12.729442511 +0100
+++ /work/SRC/openSUSE:Factory/.tracker.new/tracker.changes 2018-02-07 
18:39:04.746743104 +0100
@@ -1,0 +2,16 @@
+Wed Feb  7 08:04:10 UTC 2018 - bjorn@gmail.com
+
+- Update to version 2.0.3:
+  + build:
+- Improvements in meson support.
+- Remove stale dependencies after Tracker miners split.
+  + tests:
+- Many fixes to functional tests.
+- Remove old checks for maemo-specific features.
+  + libtracker-miner: Small code improvements.
+  + libtracker-sparql: use gint32 to unpack 'i' GVariant format.
+  + Updated translations.
+- Drop tracker-nb-translations.patch: Fixed upstream.
+- Minor spec-clean, use autosetup and make_build macros.
+
+---

Old:

  tracker-2.0.2.tar.xz
  tracker-nb-translations.patch

New:

  tracker-2.0.3.tar.xz



Other differences:
--
++ tracker.spec ++
--- /var/tmp/diff_new_pack.o9Avnw/_old  2018-02-07 18:39:05.306716871 +0100
+++ /var/tmp/diff_new_pack.o9Avnw/_new  2018-02-07 18:39:05.306716871 +0100
@@ -20,7 +20,7 @@
 %define TrackerAPI2.0
 %define RPMTrackerAPI 2_0
 Name:   tracker
-Version:2.0.2
+Version:2.0.3
 Release:0
 Summary:Object database, tag/metadata database, search tool and indexer
 License:GPL-2.0+
@@ -29,8 +29,6 @@
 Source0:
http://download.gnome.org/sources/tracker/2.0/%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM tracker-extract-private.patch bgo#725689 
dims...@opensuse.org -- Do not maintain LT versioning for private libs
 Patch0: tracker-extract-private.patch
-# PATCH-FIX-UPSTREAM tracker-nb-translations.patch zai...@opensuse.org -- 
Update Norwegian bokmål translations
-Patch1: tracker-nb-translations.patch
 
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -219,9 +217,7 @@
 %lang_package
 
 %prep
-%setup -q
-%patch0 -p1
-%patch1 -p1
+%autosetup -p1
 %if !0%{?is_opensuse}
 translation-update-upstream
 %endif
@@ -231,8 +227,9 @@
 autoreconf -fiv
 %configure \
 --disable-static \
---disable-functional-tests
-make %{?_smp_mflags}
+   --disable-functional-tests \
+   %{nil}
+%make_build
 
 %install
 %make_install
@@ -249,19 +246,15 @@
 %fdupes %{buildroot}%{_datadir}/vala/
 
 %post -n libtracker-control-%{RPMTrackerAPI}-0 -p /sbin/ldconfig
-
 %postun -n libtracker-control-%{RPMTrackerAPI}-0 -p /sbin/ldconfig
 
 %post -n libtracker-miner-%{RPMTrackerAPI}-0 -p /sbin/ldconfig
-
 %postun -n libtracker-miner-%{RPMTrackerAPI}-0 -p /sbin/ldconfig
 
 %post -n libtracker-sparql-%{RPMTrackerAPI}-0 -p /sbin/ldconfig
-
 %postun -n libtracker-sparql-%{RPMTrackerAPI}-0 -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
 %doc COPYING
 %{_sysconfdir}/xdg/autostart/tracker-store.desktop
 %{_bindir}/tracker
@@ -287,37 +280,29 @@
 %{_mandir}/man1/tracker-tag.1%{ext_man}
 
 %files -n libtracker-common-%{RPMTrackerAPI}
-%defattr(-,root,root)
 %{_libdir}/tracker-%{TrackerAPI}/libtracker-common.so
 %{_libdir}/tracker-%{TrackerAPI}/libtracker-data.so
 %{_datadir}/glib-2.0/schemas/org.freedesktop.Tracker.enums.xml
 
 %files -n libtracker-control-%{RPMTrackerAPI}-0
-%defattr(-,root,root)
 %{_libdir}/libtracker-control*.so.*
 
 %files -n libtracker-miner-%{RPMTrackerAPI}-0
-%defattr(-,root,root)
 %{_libdir}/libtracker-miner*.so.*
 
 %files -n libtracker-sparql-%{RPMTrackerAPI}-0
-%defattr(-, root, root)
 %{_libdir}/libtracker-sparql*.so.*
 
 %files -n typelib-1_0-Tracker-%{RPMTrackerAPI}
-%defattr(-,root,root)
 %{_libdir}/girepository-1.0/Tracker-%{TrackerAPI}.typelib
 
 %files -n typelib-1_0-TrackerControl-%{RPMTrackerAPI}
-%defattr(-,root,root)
 %{_libdir}/girepository-1.0/TrackerControl-%{TrackerAPI}.typelib
 
 %files -n typelib-1_0-TrackerMiner-%{RPMTrackerAPI}
-%defattr(-,root,root)
 %{_libdir}/girepository-1.0/TrackerMiner-%{TrackerAPI}.typelib
 
 %files -n tracker-devel
-%defattr(-,root,root)
 %doc AUTHORS ChangeLog README NEWS
 %{_libdir}/lib*.so
 %{_includedir}/tracker-%{TrackerAPI}/

++ tracker-2.0.2.tar.xz -> tracker-2.0.3.tar.xz ++
 36429 lines of diff (skipped)




commit tracker-miners for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package tracker-miners for openSUSE:Factory 
checked in at 2018-02-07 18:39:06

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


Package is "tracker-miners"

Wed Feb  7 18:39:06 2018 rev:7 rq:573683 version:2.0.4

Changes:

--- /work/SRC/openSUSE:Factory/tracker-miners/tracker-miners.changes
2018-01-16 09:28:21.165047841 +0100
+++ /work/SRC/openSUSE:Factory/.tracker-miners.new/tracker-miners.changes   
2018-02-07 18:39:08.654560037 +0100
@@ -1,0 +2,20 @@
+Wed Feb  7 08:08:29 UTC 2018 - bjorn@gmail.com
+
+- Update to version 2.0.4:
+  + build: Allow building tracker repo as a meson subproject.
+  + libtracker-common: Rename to libtracker-miners-common.
+  + libtracker-miners-common: Whitelist arm_fadvise64_64, getegid
+and getegid32 syscalls.
+  + tracker-extract:
+- Add GExiv2-based extractor module for RAW files.
+- Blacklist gstreamer modules via plugin instead of via
+  feature.
+- Blacklist video4linux2 gstreamer plugin.
+- Use enumerations for EXIF values.
+- Fix image pixel density conversions.
+  + tracker-miner-fs: Avoid setting rdf:types on empty files.
+  + meson: dependency check fixes.
+  + Updated translations.
+- Drop tracker-miners-nb-translations.patch: Fixed upstream.
+
+---

Old:

  tracker-miners-2.0.3.tar.xz
  tracker-miners-nb-translations.patch

New:

  tracker-miners-2.0.4.tar.xz



Other differences:
--
++ tracker-miners.spec ++
--- /var/tmp/diff_new_pack.CeZisM/_old  2018-02-07 18:39:09.290530245 +0100
+++ /var/tmp/diff_new_pack.CeZisM/_new  2018-02-07 18:39:09.294530057 +0100
@@ -17,17 +17,16 @@
 
 
 Name:   tracker-miners
-Version:2.0.3
+Version:2.0.4
 Release:0
 Summary:Various miners for Tracker
 License:GPL-2.0+
 Group:  System/GUI/GNOME
 Url:https://wiki.gnome.org/Projects/Tracker
 Source: 
http://download.gnome.org/sources/tracker-miners/2.0/%{name}-%{version}.tar.xz
+
 # PATCH-FIX-UPSTREAM tracker-miners-private.patch bgo#725689 
dims...@opensuse.org -- Do not maintain LT versioning for private libs
 Patch0: tracker-miners-private.patch
-# PATCH-FIX-UPSTREAM tracker-miners-nb-translations.patch zai...@opensuse.org 
-- Update Norwegian Bokmål translations
-Patch1: tracker-miners-nb-translations.patch
 
 BuildRequires:  giflib-devel
 BuildRequires:  intltool >= 0.40.0
@@ -105,9 +104,11 @@
 %build
 # Needed for patch0
 autoreconf -fiv
-%configure --disable-static \
+%configure \
+   --disable-static \
 --enable-libflac \
---enable-libvorbis
+   --enable-libvorbis \
+   %{nil}
 %make_build
 
 %install

++ tracker-miners-2.0.3.tar.xz -> tracker-miners-2.0.4.tar.xz ++
 26469 lines of diff (skipped)




commit gvfs for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package gvfs for openSUSE:Factory checked in 
at 2018-02-07 18:38:57

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


Package is "gvfs"

Wed Feb  7 18:38:57 2018 rev:145 rq:573681 version:1.34.2

Changes:

--- /work/SRC/openSUSE:Factory/gvfs/gvfs.changes2018-01-20 
11:19:26.392773418 +0100
+++ /work/SRC/openSUSE:Factory/.gvfs.new/gvfs.changes   2018-02-07 
18:38:58.695026604 +0100
@@ -0,0 +1,15 @@
+---
+Tue Feb  6 20:30:28 UTC 2018 - bjorn@gmail.com
+
+- Update to version 1.34.2:
+  + Recent: Prevent crash when recent file changed.
+  + Trash: Fix trash::orig-path for relative paths.
+  + Mtp:
+- Handle read-past-EOF ourselves to prevent hangs.
+- Fix volume removal with current udev behavior.
+  + Gphoto2: Fix volume removal with current udev behavior.
+  + Updated translations.
+- Drop gvfs-fix-mtp-volume-removal.patch and
+  gvfs-mtp-handle-read-past-eof.patch: Fixed upstream.
+
+---

Old:

  gvfs-1.34.1.tar.xz
  gvfs-fix-mtp-volume-removal.patch
  gvfs-mtp-handle-read-past-eof.patch

New:

  gvfs-1.34.2.tar.xz



Other differences:
--
++ gvfs.spec ++
--- /var/tmp/diff_new_pack.PJy0xh/_old  2018-02-07 18:38:59.334996624 +0100
+++ /var/tmp/diff_new_pack.PJy0xh/_new  2018-02-07 18:38:59.338996437 +0100
@@ -19,7 +19,7 @@
 %define with_udisks2 1
 %define with_cdda 1
 Name:   gvfs
-Version:1.34.1
+Version:1.34.2
 Release:0
 Summary:Virtual File System functionality for GLib
 License:LGPL-2.0+ AND GPL-3.0
@@ -27,10 +27,7 @@
 Url:http://www.gnome.org
 Source0:
http://download.gnome.org/sources/gvfs/1.34/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM gvfs-fix-mtp-volume-removal.patch bgo#789491 
zai...@opensuse.org -- Fix various mtp issues with volume management
-Patch0: gvfs-fix-mtp-volume-removal.patch
-# PATCH-FIX-UPSTREAM gvfs-mtp-handle-read-past-eof.patch boo#1069030 
bgo#784477 mgo...@suse.com -- fix hang when transferring on some Android 
devices.
-Patch1: gvfs-mtp-handle-read-past-eof.patch
+
 # PATCH-FEATURE-SLE gvfs-nvvfs.patch ksam...@novell.com -- Provides gvfs 
backend for novell nautilus plugin
 Patch5: gvfs-nvvfs.patch
 # PATCH-FEATURE-SLE gvfs-nds.patch ksam...@novell.com -- Provides NDS browsing 
for nautilus
@@ -169,8 +166,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 %if !0%{?is_opensuse}
 translation-update-upstream
 %patch5 -p1

++ gvfs-1.34.1.tar.xz -> gvfs-1.34.2.tar.xz ++
 11027 lines of diff (skipped)




commit gnome-music for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package gnome-music for openSUSE:Factory 
checked in at 2018-02-07 18:38:51

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


Package is "gnome-music"

Wed Feb  7 18:38:51 2018 rev:33 rq:573680 version:3.26.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-music/gnome-music.changes  2017-10-06 
10:59:02.317369530 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-music.new/gnome-music.changes 
2018-02-07 18:38:54.251234780 +0100
@@ -1,0 +2,12 @@
+Tue Feb  6 20:26:03 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.26.2:
+  + Bugs fixed:
+- Block spotify plugin (glgo#gnome-music#132).
+- DiscListBoxWidget: Update favorites playlist (bgo#784998).
+- Albumartcache: Fix order in method call.
+- Flatpak: Update music repository URL (glgo#gnome-music#138).
+- Misc flatpak fixes.
+  + Updated translations.
+
+---

Old:

  gnome-music-3.26.1.tar.xz

New:

  gnome-music-3.26.2.tar.xz



Other differences:
--
++ gnome-music.spec ++
--- /var/tmp/diff_new_pack.d47EDA/_old  2018-02-07 18:38:54.851206673 +0100
+++ /var/tmp/diff_new_pack.d47EDA/_new  2018-02-07 18:38:54.851206673 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-music
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-music
-Version:3.26.1
+Version:3.26.2
 Release:0
 Summary:Music Player for GNOME
 License:SUSE-GPL-2.0-with-plugin-exception and LGPL-2.1+

++ gnome-music-3.26.1.tar.xz -> gnome-music-3.26.2.tar.xz ++
 2581 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gnome-music-3.26.1/AUTHORS new/gnome-music-3.26.2/AUTHORS
--- old/gnome-music-3.26.1/AUTHORS  2017-10-03 00:13:02.0 +0200
+++ new/gnome-music-3.26.2/AUTHORS  2018-02-06 19:59:04.0 +0100
@@ -185,6 +185,8 @@
 Marek Černocký 
 Maria Mavridou 
 Marinus Schraal 
+Marinus Schraal 
+Marinus Schraal 
 Marinus Schraal 
 Mario Blättermann 
 MarMav 
@@ -278,6 +280,7 @@
 Wolfgang Stöggl 
 Wouter Bolsterlee 
 Wylmer Wang 
+Xavi Ivars 
 Yaron Shahrabani 
 Yash Singh 
 Yosef Or Boczko 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gnome-music-3.26.1/INSTALL new/gnome-music-3.26.2/INSTALL
--- old/gnome-music-3.26.1/INSTALL  2017-10-03 00:12:40.0 +0200
+++ new/gnome-music-3.26.2/INSTALL  2018-02-06 19:58:41.0 +0100
@@ -1,8 +1,8 @@
 Installation Instructions
 *
 
-Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
-Inc.
+   Copyright (C) 1994-1996, 1999-2002, 2004-2016 Free Software
+Foundation, Inc.
 
Copying and distribution of this file, with or without modification,
 are permitted in any medium without royalty provided the copyright
@@ -12,97 +12,96 @@
 Basic Installation
 ==
 
-   Briefly, the shell command `./configure && make && make install'
+   Briefly, the shell command './configure && make && make install'
 should configure, build, and install this package.  The following
-more-detailed instructions are generic; see the `README' file for
+more-detailed instructions are generic; see the 'README' file for
 instructions specific to this package.  Some packages provide this
-`INSTALL' file but do not implement all of the features documented
+'INSTALL' file but do not implement all of the features documented
 below.  The lack of an optional feature in a given package is not
 necessarily a bug.  More recommendations for GNU packages can 

commit gupnp-igd for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package gupnp-igd for openSUSE:Factory 
checked in at 2018-02-07 18:38:30

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


Package is "gupnp-igd"

Wed Feb  7 18:38:30 2018 rev:28 rq:572987 version:0.2.5

Changes:

--- /work/SRC/openSUSE:Factory/gupnp-igd/gupnp-igd.changes  2017-03-22 
22:59:29.319545420 +0100
+++ /work/SRC/openSUSE:Factory/.gupnp-igd.new/gupnp-igd.changes 2018-02-07 
18:38:31.704291028 +0100
@@ -1,0 +2,8 @@
+Mon Nov 20 20:31:34 UTC 2017 - luc1...@linuxmail.org
+
+- Update to version 0.2.5:
+  + Update gtk-doc to newer version to fix build failures.
+- Update Url to https://wiki.gnome.org/Projects/GUPnP: current
+  GUPnP's web page.
+
+---

Old:

  gupnp-igd-0.2.4.tar.xz

New:

  gupnp-igd-0.2.5.tar.xz



Other differences:
--
++ gupnp-igd.spec ++
--- /var/tmp/diff_new_pack.icURi5/_old  2018-02-07 18:38:32.232266294 +0100
+++ /var/tmp/diff_new_pack.icURi5/_new  2018-02-07 18:38:32.232266294 +0100
@@ -17,12 +17,12 @@
 
 
 Name:   gupnp-igd
-Version:0.2.4
+Version:0.2.5
 Release:0
 Summary:Library to handle UPnP IGD port mapping
 License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
-Url:http://www.gupnp.org/
+Url:https://wiki.gnome.org/Projects/GUPnP
 Source: 
http://download.gnome.org/sources/gupnp-igd/0.2/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  pkgconfig

++ gupnp-igd-0.2.4.tar.xz -> gupnp-igd-0.2.5.tar.xz ++
 29343 lines of diff (skipped)




commit evolution-data-server for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package evolution-data-server for 
openSUSE:Factory checked in at 2018-02-07 18:38:34

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


Package is "evolution-data-server"

Wed Feb  7 18:38:34 2018 rev:183 rq:573056 version:3.26.5

Changes:

--- 
/work/SRC/openSUSE:Factory/evolution-data-server/evolution-data-server.changes  
2018-01-16 09:28:45.475910425 +0100
+++ 
/work/SRC/openSUSE:Factory/.evolution-data-server.new/evolution-data-server.changes
 2018-02-07 18:38:35.676104962 +0100
@@ -1,0 +2,13 @@
+Mon Feb  5 13:17:05 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.26.5:
+  + Prevent early free of an ESource when it has pending
+operations.
+  + IMAPx:
+- Select destination mailbox only when permanentflags not known
+  yet.
+- Sort array of UIDs before syncing changes to the server.
+  + Prevent passing NULL ldap handle into LDAP functions ][.
+  + Bugs fixed: bgo#792513, bgo#789522.
+
+---

Old:

  evolution-data-server-3.26.4.tar.xz

New:

  evolution-data-server-3.26.5.tar.xz



Other differences:
--
++ evolution-data-server.spec ++
--- /var/tmp/diff_new_pack.PZTy2g/_old  2018-02-07 18:38:36.452068610 +0100
+++ /var/tmp/diff_new_pack.PZTy2g/_new  2018-02-07 18:38:36.452068610 +0100
@@ -32,7 +32,7 @@
 
 Name:   evolution-data-server
 %define _evo_version 3.26
-Version:3.26.4
+Version:3.26.5
 Release:0
 Summary:Evolution Data Server
 License:LGPL-2.1+

++ evolution-data-server-3.26.4.tar.xz -> 
evolution-data-server-3.26.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-data-server-3.26.4/CMakeLists.txt 
new/evolution-data-server-3.26.5/CMakeLists.txt
--- old/evolution-data-server-3.26.4/CMakeLists.txt 2018-01-08 
11:05:37.0 +0100
+++ new/evolution-data-server-3.26.5/CMakeLists.txt 2018-02-05 
11:57:20.0 +0100
@@ -4,7 +4,7 @@
 cmake_policy(VERSION 3.1)
 
 project(evolution-data-server
-   VERSION 3.26.4
+   VERSION 3.26.5
LANGUAGES C CXX)
 set(PROJECT_BUGREPORT 
"http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution-Data-Server;)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-data-server-3.26.4/NEWS 
new/evolution-data-server-3.26.5/NEWS
--- old/evolution-data-server-3.26.4/NEWS   2018-01-08 11:05:37.0 
+0100
+++ new/evolution-data-server-3.26.5/NEWS   2018-02-05 11:57:20.0 
+0100
@@ -1,3 +1,16 @@
+Evolution-Data-Server 3.26.5 2018-02-05
+---
+
+Bug Fixes:
+   Bug 792513 - [IMAPx] Deadlock after deleting messages (with real Trash) 
(Milan Crha)
+   Bug 789522 - Decode of empty base64 encoded part causes runtime 
warnings (Milan Crha)
+
+Miscellaneous:
+   Prevent early free of an ESource when it has pending operations (Milan 
Crha)
+   [IMAPx] Select destination mailbox only when permanentflags not known 
yet (Milan Crha)
+   Prevent passing NULL ldap handle into LDAP functions ][ (Milan Crha)
+   [IMAPx] Sort array of UIDs before syncing changes to the server (Milan 
Crha)
+
 Evolution-Data-Server 3.26.4 2018-01-08
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/evolution-data-server-3.26.4/src/addressbook/backends/ldap/e-book-backend-ldap.c
 
new/evolution-data-server-3.26.5/src/addressbook/backends/ldap/e-book-backend-ldap.c
--- 
old/evolution-data-server-3.26.4/src/addressbook/backends/ldap/e-book-backend-ldap.c
2018-01-08 11:05:37.0 +0100
+++ 
new/evolution-data-server-3.26.5/src/addressbook/backends/ldap/e-book-backend-ldap.c
2018-02-05 11:57:20.0 +0100
@@ -3989,8 +3989,8 @@
ldap_memfree (dn);
if (ldap_uid) *ldap_uid = NULL;
 
-   for (attr = ldap_first_attribute (bl->priv->ldap, e, ); attr;
-attr = ldap_next_attribute (bl->priv->ldap, e, ber)) {
+   for (attr = ldap_first_attribute (bl->priv->ldap, e, ); attr && 
bl->priv->ldap;
+attr = bl->priv->ldap ? ldap_next_attribute (bl->priv->ldap, e, 
ber) : NULL) {
gint i;
struct prop_info *info = NULL;
gchar **values;
@@ -4032,7 +4032,6 @@
 
if (info) {
if (info->prop_type & PROP_WRITE_ONLY) {
-   g_rec_mutex_lock 
(_ldap_handler_lock);

commit evolution-ews for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package evolution-ews for openSUSE:Factory 
checked in at 2018-02-07 18:38:46

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


Package is "evolution-ews"

Wed Feb  7 18:38:46 2018 rev:81 rq:573058 version:3.26.5

Changes:

--- /work/SRC/openSUSE:Factory/evolution-ews/evolution-ews.changes  
2018-01-16 09:28:52.595577321 +0100
+++ /work/SRC/openSUSE:Factory/.evolution-ews.new/evolution-ews.changes 
2018-02-07 18:38:50.315419159 +0100
@@ -1,0 +2,6 @@
+Mon Feb  5 13:23:55 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.26.5:
+  + Bugs fixed: bgo#793037.
+
+---

Old:

  evolution-ews-3.26.4.tar.xz

New:

  evolution-ews-3.26.5.tar.xz



Other differences:
--
++ evolution-ews.spec ++
--- /var/tmp/diff_new_pack.OZ3BXb/_old  2018-02-07 18:38:50.879392739 +0100
+++ /var/tmp/diff_new_pack.OZ3BXb/_new  2018-02-07 18:38:50.883392551 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   evolution-ews
-Version:3.26.4
+Version:3.26.5
 Release:0
 # _version needs to be %{version} stripped to major.minor.micro only...
 %define _version %(echo %{version} | grep -E -o '[0-9]+\.[0-9]+\.[0-9]+')

++ evolution-ews-3.26.4.tar.xz -> evolution-ews-3.26.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-ews-3.26.4/CMakeLists.txt 
new/evolution-ews-3.26.5/CMakeLists.txt
--- old/evolution-ews-3.26.4/CMakeLists.txt 2018-01-08 11:34:32.0 
+0100
+++ new/evolution-ews-3.26.5/CMakeLists.txt 2018-02-05 12:21:53.0 
+0100
@@ -4,7 +4,7 @@
 cmake_policy(VERSION 3.1)
 
 project(evolution-ews
-   VERSION 3.26.4
+   VERSION 3.26.5
LANGUAGES C)
 set(PROJECT_BUGREPORT 
"http://bugzilla.gnome.org/enter_bug.cgi?product=evolution-ews;)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-ews-3.26.4/NEWS 
new/evolution-ews-3.26.5/NEWS
--- old/evolution-ews-3.26.4/NEWS   2018-01-08 11:34:32.0 +0100
+++ new/evolution-ews-3.26.5/NEWS   2018-02-05 12:21:53.0 +0100
@@ -1,3 +1,9 @@
+Evolution-EWS 3.26.5 2018-02-05
+---
+
+Bug Fixes:
+   Bug 793037 - Some appointments displayed as meetings (Milan Crha)
+
 Evolution-EWS 3.26.4 2018-01-08
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/evolution-ews-3.26.4/src/calendar/e-cal-backend-ews.c 
new/evolution-ews-3.26.5/src/calendar/e-cal-backend-ews.c
--- old/evolution-ews-3.26.4/src/calendar/e-cal-backend-ews.c   2018-01-08 
11:34:32.0 +0100
+++ new/evolution-ews-3.26.5/src/calendar/e-cal-backend-ews.c   2018-02-05 
12:21:53.0 +0100
@@ -85,6 +85,7 @@
" calendar:UID" \
" calendar:Resources" \
" calendar:ModifiedOccurrences" \
+   " calendar:IsMeeting" \
" calendar:MyResponseType" \
" calendar:RequiredAttendees" \
" calendar:OptionalAttendees"
@@ -657,59 +658,63 @@
const EwsId *item_id;
const GSList *l = NULL;
const gchar *uid = e_ews_item_get_uid (item);
-   gchar *user_email;
 
item_id = e_ews_item_get_id (item);
-   user_email = camel_ews_settings_dup_email (ews_settings);
 
-   /* Attendees */
-   for (l = e_ews_item_get_attendees (item); l != NULL; l = 
g_slist_next (l)) {
-   icalparameter *param, *cu_type;
-   gchar *mailtoname;
-   const gchar *email = NULL;
-   EwsAttendee *attendee = (EwsAttendee *) l->data;
+   if (e_ews_item_get_is_meeting (item)) {
+   gchar *user_email;
 
-   if (!attendee->mailbox)
-   continue;
+   user_email = camel_ews_settings_dup_email 
(ews_settings);
 
-   if (g_strcmp0 (attendee->mailbox->routing_type, "EX") 
== 0)
-   email = e_ews_item_util_strip_ex_address 
(attendee->mailbox->email);
+   /* Attendees */
+   for (l = e_ews_item_get_attendees (item); l != NULL; l 
= g_slist_next (l)) {
+   icalparameter *param, *cu_type;
+   gchar *mailtoname;
+   const gchar *email = NULL;
+   EwsAttendee *attendee = (EwsAttendee *) l->data;
 
-   mailtoname 

commit gnome-photos for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package gnome-photos for openSUSE:Factory 
checked in at 2018-02-07 18:38:20

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


Package is "gnome-photos"

Wed Feb  7 18:38:20 2018 rev:39 rq:572959 version:3.26.3

Changes:

--- /work/SRC/openSUSE:Factory/gnome-photos/gnome-photos.changes
2017-12-19 10:46:41.615510821 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-photos.new/gnome-photos.changes   
2018-02-07 18:38:22.076742049 +0100
@@ -1,0 +2,10 @@
+Sat Feb  3 00:07:17 UTC 2018 - bjorn@gmail.com
+
+- Add gnome-photos-Dont-leak-thumbnailer-path-string.patch:
+  thumbnail-factory: Don't leak the thumbnailer path string.
+- Add gnome-photos-application-fixes.patch: application: Avoid
+  CRITICALs.
+- Add gnome-photos-Check-RDF-type-before-using-it.patch: utils:
+  Check the RDF type before using it, not the MIME type.
+
+---

New:

  gnome-photos-Check-RDF-type-before-using-it.patch
  gnome-photos-Dont-leak-thumbnailer-path-string.patch
  gnome-photos-application-fixes.patch



Other differences:
--
++ gnome-photos.spec ++
--- /var/tmp/diff_new_pack.AgvaeC/_old  2018-02-07 18:38:22.608717128 +0100
+++ /var/tmp/diff_new_pack.AgvaeC/_new  2018-02-07 18:38:22.608717128 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-photos
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,14 @@
 Group:  Productivity/Graphics/Viewers
 Url:https://wiki.gnome.org/Design/Apps/Photos
 Source0:
https://download.gnome.org/sources/gnome-photos/3.26/%{name}-%{version}.tar.xz
+
+# PATCH-FIX-UPSTREAM gnome-photos-Dont-leak-thumbnailer-path-string.patch 
bjorn.lie@gmail-com -- thumbnail-factory: Don't leak the thumbnailer path string
+Patch0: gnome-photos-Dont-leak-thumbnailer-path-string.patch
+# PATCH-FIX-UPSTREAM gnome-photos-application-fixes.patch bjorn.lie@gmail-com 
-- application: Avoid CRITICALs
+Patch1: gnome-photos-application-fixes.patch
+# PATCH-FIX-UPSTREAM gnome-photos-Check-RDF-type-before-using-it.patch 
bjorn.lie@gmail-com -- utils: Check the RDF type before using it, not the MIME 
type
+Patch2: gnome-photos-Check-RDF-type-before-using-it.patch
+
 BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes
 # Technically seen, glib2-tools would require this, but it introduces a loop 
there. So explictly require here

++ gnome-photos-Check-RDF-type-before-using-it.patch ++
>From 6d8bbd5b02885f2c0def8e0e4b1daefd76164ebe Mon Sep 17 00:00:00 2001
From: Debarshi Ray 
Date: Wed, 24 Jan 2018 20:29:18 +0100
Subject: [PATCH] utils: Check the RDF type before using it, not the MIME type

---
 src/photos-utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/photos-utils.c b/src/photos-utils.c
index a9d8f13..12ff40f 100644
--- a/src/photos-utils.c
+++ b/src/photos-utils.c
@@ -470,7 +470,7 @@ photos_utils_get_icon_from_cursor (TrackerSparqlCursor 
*cursor)
 goto out;
 
   rdf_type = tracker_sparql_cursor_get_string (cursor, 
PHOTOS_QUERY_COLUMNS_RDF_TYPE, NULL);
-  if (mime_type != NULL)
+  if (rdf_type != NULL)
 icon = photos_utils_icon_from_rdf_type (rdf_type);
 
   if (icon != NULL)
--
libgit2 0.26.0

++ gnome-photos-Dont-leak-thumbnailer-path-string.patch ++
>From 88a18f26b3ff979067162f1bdfceabd1d0fa2965 Mon Sep 17 00:00:00 2001
From: Debarshi Ray 
Date: Mon, 1 Jan 2018 14:14:46 +0100
Subject: [PATCH] thumbnail-factory: Don't leak the thumbnailer path string

---
 src/photos-thumbnail-factory.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/photos-thumbnail-factory.c b/src/photos-thumbnail-factory.c
index bc84500..522c522 100644
--- a/src/photos-thumbnail-factory.c
+++ b/src/photos-thumbnail-factory.c
@@ -440,13 +440,15 @@ photos_thumbnail_factory_generate_thumbnail 
(PhotosThumbnailFactory *self,
  "--address",
  address,
  NULL);
+
+  g_free (thumbnailer_path);
+
   if (local_error != NULL)
 goto out;
 
   g_mutex_unlock (>mutex_connection);
   mutex_connection_unlocked = TRUE;
 
-  g_free (thumbnailer_path);
   g_object_unref (subprocess);
 }
 
--
libgit2 0.26.0

++ gnome-photos-application-fixes.patch ++
>From 

commit libgexiv2 for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package libgexiv2 for openSUSE:Factory 
checked in at 2018-02-07 18:38:24

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


Package is "libgexiv2"

Wed Feb  7 18:38:24 2018 rev:31 rq:572978 version:0.10.7

Changes:

--- /work/SRC/openSUSE:Factory/libgexiv2/libgexiv2.changes  2018-02-03 
15:38:23.376897375 +0100
+++ /work/SRC/openSUSE:Factory/.libgexiv2.new/libgexiv2.changes 2018-02-07 
18:38:25.468583152 +0100
@@ -1,0 +2,11 @@
+Sat Feb  3 02:01:13 UTC 2018 - bjorn@gmail.com
+
+- Update to version 0.10.7:
+  + Add meson build support.
+  + Use glib-mkenums for enum types.
+  + Fix make check when running out of tree.
+  + Use version script to clean up exported functions.
+  + Fix --disable-vala.
+  + Bugs fixed: bgo#784045, bgo#787455.
+
+---

Old:

  gexiv2-0.10.6.tar.xz

New:

  gexiv2-0.10.7.tar.xz



Other differences:
--
++ libgexiv2.spec ++
--- /var/tmp/diff_new_pack.mGjnH8/_old  2018-02-07 18:38:26.104553359 +0100
+++ /var/tmp/diff_new_pack.mGjnH8/_new  2018-02-07 18:38:26.108553171 +0100
@@ -21,13 +21,14 @@
 %bcond_without python2
 %bcond_without python3
 Name:   libgexiv2
-Version:0.10.6
+Version:0.10.7
 Release:0
 Summary:A GObject-based Exiv2 wrapper
 License:GPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:https://wiki.gnome.org/Projects/gexiv2
 Source: 
http://ftp.gnome.org/pub/gnome/sources/gexiv2/0.10/%{tarname}-%{version}.tar.xz
+
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module gobject}
 BuildRequires:  gcc-c++

++ gexiv2-0.10.6.tar.xz -> gexiv2-0.10.7.tar.xz ++
 2025 lines of diff (skipped)




commit evolution for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package evolution for openSUSE:Factory 
checked in at 2018-02-07 18:38:40

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


Package is "evolution"

Wed Feb  7 18:38:40 2018 rev:205 rq:573057 version:3.26.5

Changes:

--- /work/SRC/openSUSE:Factory/evolution/evolution.changes  2018-01-16 
09:28:50.551672949 +0100
+++ /work/SRC/openSUSE:Factory/.evolution.new/evolution.changes 2018-02-07 
18:38:49.035479120 +0100
@@ -1,0 +2,12 @@
+Mon Feb  5 13:20:06 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.26.5:
+  + Crash under message-list.c:free_message_info_data().
+  + Indentation in plain text adds unwanted spaces around links.
+  + Composer-autosave: Use-after-free during snapshot save to file.
+  + Bugs fixed: bgo#339675, bgo#792343, bgo#792385, bgo#792480,
+bgo#792781, bgo#792736, bgo#792909, bgo#788589, bgo#788823,
+bgo#720387.
+  + Updated translations.
+
+---

Old:

  evolution-3.26.4.tar.xz

New:

  evolution-3.26.5.tar.xz



Other differences:
--
++ evolution.spec ++
--- /var/tmp/diff_new_pack.XFHDJN/_old  2018-02-07 18:38:49.767444830 +0100
+++ /var/tmp/diff_new_pack.XFHDJN/_new  2018-02-07 18:38:49.771444642 +0100
@@ -24,14 +24,14 @@
 Name:   evolution
 # This should be updated upon major version changes; it should match 
BASE_VERSION as defined in configure.in.
 %define evolution_base_version 3.26
-Version:3.26.4
+Version:3.26.5
 Release:0
 # _version needs to be %{version} stripped to major.minor.micro only...
 %define _version %(echo %{version} | grep -E -o '[0-9]+\.[0-9]+\.[0-9]+')
 # FIXME: check if note on license is still valid (comment before license)
 Summary:The Integrated GNOME Mail, Calendar, and Address Book Suite
 # NOTE: Some files are currently GPL-2.0 but pending relicensing, see 
bnc#749859
-License:LGPL-2.0 and LGPL-3.0
+License:LGPL-2.0 AND LGPL-3.0
 Group:  Productivity/Networking/Email/Clients
 Url:http://wiki.gnome.org/Apps/Evolution/
 Source0:
http://download.gnome.org/sources/evolution/3.26/%{name}-%{version}.tar.xz

++ evolution-3.26.4.tar.xz -> evolution-3.26.5.tar.xz ++
/work/SRC/openSUSE:Factory/evolution/evolution-3.26.4.tar.xz 
/work/SRC/openSUSE:Factory/.evolution.new/evolution-3.26.5.tar.xz differ: char 
27, line 1




commit vala for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package vala for openSUSE:Factory checked in 
at 2018-02-07 18:38:15

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


Package is "vala"

Wed Feb  7 18:38:15 2018 rev:81 rq:572945 version:0.38.7

Changes:

--- /work/SRC/openSUSE:Factory/vala/vala.changes2018-02-03 
15:38:47.955749338 +0100
+++ /work/SRC/openSUSE:Factory/.vala.new/vala.changes   2018-02-07 
18:38:16.417007191 +0100
@@ -1,0 +2,8 @@
+Sun Feb  4 14:11:55 UTC 2018 - bjorn@gmail.com
+
+- Update to version 0.38.7:
+  + Regression fix: codegen: Don't try to infer error argument on
+async begin methods (bgo#793158). This was a regression
+introduced by (bgo#614294).
+
+---

Old:

  vala-0.38.6.tar.xz

New:

  vala-0.38.7.tar.xz



Other differences:
--
++ vala.spec ++
--- /var/tmp/diff_new_pack.1mqRfd/_old  2018-02-07 18:38:17.056977211 +0100
+++ /var/tmp/diff_new_pack.1mqRfd/_new  2018-02-07 18:38:17.060977023 +0100
@@ -23,7 +23,7 @@
 # decimal separator, hoping they will not get to the idea to create a 0.100 
release.
 %define vala_priority 36
 Name:   vala
-Version:0.38.6
+Version:0.38.7
 Release:0
 Summary:Programming language for GNOME
 License:LGPL-2.0

++ vala-0.38.6.tar.xz -> vala-0.38.7.tar.xz ++
 3418 lines of diff (skipped)




commit mysql-connector-cpp for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package mysql-connector-cpp for 
openSUSE:Factory checked in at 2018-02-07 18:37:51

Comparing /work/SRC/openSUSE:Factory/mysql-connector-cpp (Old)
 and  /work/SRC/openSUSE:Factory/.mysql-connector-cpp.new (New)


Package is "mysql-connector-cpp"

Wed Feb  7 18:37:51 2018 rev:25 rq:573119 version:1.1.9

Changes:

--- /work/SRC/openSUSE:Factory/mysql-connector-cpp/mysql-connector-cpp.changes  
2017-11-30 12:44:05.612749703 +0100
+++ 
/work/SRC/openSUSE:Factory/.mysql-connector-cpp.new/mysql-connector-cpp.changes 
2018-02-07 18:37:52.402132224 +0100
@@ -1,0 +2,6 @@
+Mon Feb  5 14:15:08 UTC 2018 - w01dn...@gmail.com
+
+- add mysql-connector-cpp-mariadb.patch
+  to fix compatibility with MariaDB, not supported options removed
+
+---

New:

  mysql-connector-cpp-mariadb.patch



Other differences:
--
++ mysql-connector-cpp.spec ++
--- /var/tmp/diff_new_pack.pF2RJQ/_old  2018-02-07 18:37:53.038102431 +0100
+++ /var/tmp/diff_new_pack.pF2RJQ/_new  2018-02-07 18:37:53.038102431 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mysql-connector-cpp
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,6 +29,7 @@
 Patch2: mysql-connector-cpp-1.1.0-disable_tests_and_examples.patch
 # PATCH-FIX-UPSTREAM - bsc#1067883 kstreit...@suse.com -- fix build with 
libmariadb by fixing copypaste errors in libmysql_dynamic_proxy.cpp file
 Patch3: mysql-connector-cpp-1.1.9-libmysql_dynamic_proxy_typos.patch
+Patch4: mysql-connector-cpp-mariadb.patch
 %if 0%{?suse_version} > 1325
 BuildRequires:  libboost_headers-devel
 %else
@@ -88,6 +89,7 @@
 %setup -q -n mysql-connector-c++-%{version}
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 chmod -x examples/*
 
 %build

++ mysql-connector-cpp-mariadb.patch ++
diff -uNr mysql-connector-c++-1.1.9.org/driver/mysql_connection.cpp 
mysql-connector-c++-1.1.9/driver/mysql_connection.cpp
--- mysql-connector-c++-1.1.9.org/driver/mysql_connection.cpp   2017-05-10 
19:14:59.0 +0300
+++ mysql-connector-c++-1.1.9/driver/mysql_connection.cpp   2018-02-05 
11:50:27.376483448 +0200
@@ -231,7 +231,7 @@
 {"OPT_REPORT_DATA_TRUNCATION",  MYSQL_REPORT_DATA_TRUNCATION, false},
 {"OPT_ENABLE_CLEARTEXT_PLUGIN", MYSQL_ENABLE_CLEARTEXT_PLUGIN, false},
 {"sslVerify",   MYSQL_OPT_SSL_VERIFY_SERVER_CERT, false}, 
// Deprecated
-{"OPT_CAN_HANDLE_EXPIRED_PASSWORDS", 
MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS, true},
+//{"OPT_CAN_HANDLE_EXPIRED_PASSWORDS", 
MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS, true},
 {"OPT_CONNECT_ATTR_RESET",  MYSQL_OPT_CONNECT_ATTR_RESET, true},
 {"OPT_RECONNECT",   MYSQL_OPT_RECONNECT, true},
 {"sslEnforce",  MYSQL_OPT_SSL_ENFORCE, false} // Deprecated
@@ -246,7 +246,8 @@
 {"OPT_LOCAL_INFILE",MYSQL_OPT_LOCAL_INFILE, false},
 {"OPT_MAX_ALLOWED_PACKET",  MYSQL_OPT_MAX_ALLOWED_PACKET, false},
 {"OPT_NET_BUFFER_LENGTH",   MYSQL_OPT_NET_BUFFER_LENGTH, false},
-{"OPT_SSL_MODE",MYSQL_OPT_SSL_MODE, false},
+{"OPT_SSL_ENFORCE", MYSQL_OPT_SSL_ENFORCE, false},
+//{"OPT_SSL_MODE",MYSQL_OPT_SSL_MODE, false},
 
   };
 /* Array for mapping of string connection options to mysql_options call */
@@ -268,7 +269,7 @@
 {"readDefaultGroup", MYSQL_READ_DEFAULT_GROUP, false},
 {"readDefaultFile",  MYSQL_READ_DEFAULT_FILE, false},
 {"OPT_CHARSET_NAME", MYSQL_SET_CHARSET_NAME, true},
-{"OPT_TLS_VERSION",  MYSQL_OPT_TLS_VERSION, false},
+//{"OPT_TLS_VERSION",  MYSQL_OPT_TLS_VERSION, false},
   };
 
 template
diff -uNr mysql-connector-c++-1.1.9.org/driver/mysql_connection_options.h 
mysql-connector-c++-1.1.9/driver/mysql_connection_options.h
--- mysql-connector-c++-1.1.9.org/driver/mysql_connection_options.h 
2017-05-10 19:14:59.0 +0300
+++ mysql-connector-c++-1.1.9/driver/mysql_connection_options.h 2018-02-05 
12:38:10.760832179 +0200
@@ -55,8 +55,8 @@
   MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS,
   MYSQL_OPT_SSL_ENFORCE,
   MYSQL_OPT_MAX_ALLOWED_PACKET, MYSQL_OPT_NET_BUFFER_LENGTH,
-  MYSQL_OPT_TLS_VERSION,
-  MYSQL_OPT_SSL_MODE
+  //MYSQL_OPT_TLS_VERSION,
+  //MYSQL_OPT_SSL_MODE
 };
 
 }



commit libstorage-ng for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package libstorage-ng for openSUSE:Factory 
checked in at 2018-02-07 18:37:20

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


Package is "libstorage-ng"

Wed Feb  7 18:37:20 2018 rev:5 rq:573632 version:3.3.149

Changes:

--- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes  
2018-02-02 22:18:32.168368672 +0100
+++ /work/SRC/openSUSE:Factory/.libstorage-ng.new/libstorage-ng.changes 
2018-02-07 18:37:22.503532910 +0100
@@ -1,0 +2,111 @@
+Wed Feb 7 09:58:11 UTC 2018 - shundham...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#450
+- Ensure not to write malformed /etc/fstab entries (bsc#1066763)
+- 3.3.149
+
+
+Wed Feb 7 06:44:22 UTC 2018 - aschn...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#451
+- work on error handling
+- 3.3.148
+
+
+Tue Feb 6 11:22:54 UTC 2018 - aschn...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#449
+- fixed default value
+- 3.3.147
+
+
+Tue Feb 6 10:56:42 UTC 2018 - an...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#448
+- Add GraphvizFlags::DISPLAYNAME to Devicegraph
+
+
+Mon Feb 5 13:46:26 UTC 2018 - aschn...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#447
+- allow finer control of flags in write_graphviz
+
+
+Mon Feb 5 09:40:59 UTC 2018 - aschn...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#446
+- use sid as vertex id
+
+
+Sat Feb 3 00:01:43 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Translated using Weblate (Hungarian)
+
+
+Fri Feb 2 16:44:56 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Translated using Weblate (Hungarian)
+
+
+Fri Feb 2 12:02:24 UTC 2018 - aschn...@suse.com
+
+- Translated using Weblate (Afrikaans)
+
+
+Fri Feb 2 11:48:26 UTC 2018 - aschn...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#444
+- added Mountable::remove_mount_point()
+
+
+Fri Feb 2 11:16:54 UTC 2018 - aschn...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#443
+- added PRETTY_CLASSNAME to GraphvizFlags
+
+
+Fri Feb 2 06:31:47 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Translated using Weblate (Chinese (Taiwan))
+
+
+Thu Feb 1 11:02:32 UTC 2018 - aschn...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#442
+- renamed integration tests
+- added integration tests
+
+
+Thu Feb 1 10:04:12 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Translated using Weblate (Chinese (Taiwan))
+
+
+Wed Jan 31 11:33:18 UTC 2018 - aschn...@suse.de
+
+- merge gh#openSUSE/libstorage-ng#441
+- added integration test
+- added udevadm settle call
+
+
+Wed Jan 31 07:04:28 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Translated using Weblate (Korean)
+
+
+Wed Jan 31 07:03:54 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Translated using Weblate (Korean)
+
+
+Tue Jan 30 15:03:36 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Translated using Weblate (Arabic)
+
+
+Tue Jan 30 15:00:49 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Translated using Weblate (Arabic)
+- 3.3.146
+
+

Old:

  libstorage-ng-3.3.145.tar.xz

New:

  libstorage-ng-3.3.149.tar.xz



Other differences:
--
++ libstorage-ng.spec ++
--- /var/tmp/diff_new_pack.6BtNEL/_old  2018-02-07 18:37:23.247498057 +0100
+++ /var/tmp/diff_new_pack.6BtNEL/_new  2018-02-07 18:37:23.255497682 +0100
@@ -18,7 +18,7 @@
 
 %define libname %{name}1
 Name:   libstorage-ng
-Version:3.3.145
+Version:3.3.149
 Release:0
 Summary:Library for storage management
 License:

commit yast2-storage-ng for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package yast2-storage-ng for 
openSUSE:Factory checked in at 2018-02-07 18:37:34

Comparing /work/SRC/openSUSE:Factory/yast2-storage-ng (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-storage-ng.new (New)


Package is "yast2-storage-ng"

Wed Feb  7 18:37:34 2018 rev:5 rq:573829 version:4.0.84

Changes:

--- /work/SRC/openSUSE:Factory/yast2-storage-ng/yast2-storage-ng.changes
2018-02-02 22:18:41.883915107 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-storage-ng.new/yast2-storage-ng.changes   
2018-02-07 18:37:34.786957456 +0100
@@ -1,0 +2,12 @@
+Wed Feb  7 00:18:34 UTC 2018 - an...@suse.com
+
+- Partitioner: fixed 'Device Graph' section (part of fate#318196).
+- 4.0.84
+
+---
+Mon Feb  5 15:26:35 UTC 2018 - an...@suse.com
+
+- Added a new 'disk' client, alias for 'partitioner' (bsc#1078900).
+- 4.0.83
+
+---

Old:

  yast2-storage-ng-4.0.82.tar.bz2

New:

  yast2-storage-ng-4.0.84.tar.bz2



Other differences:
--
++ yast2-storage-ng.spec ++
--- /var/tmp/diff_new_pack.EHnQ7r/_old  2018-02-07 18:37:35.250935720 +0100
+++ /var/tmp/diff_new_pack.EHnQ7r/_new  2018-02-07 18:37:35.254935532 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-storage-ng
-Version:4.0.82
+Version:4.0.84
 Release:0
 BuildArch:  noarch
 

++ yast2-storage-ng-4.0.82.tar.bz2 -> yast2-storage-ng-4.0.84.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-ng-4.0.82/package/yast2-storage-ng.changes 
new/yast2-storage-ng-4.0.84/package/yast2-storage-ng.changes
--- old/yast2-storage-ng-4.0.82/package/yast2-storage-ng.changes
2018-02-01 11:13:40.0 +0100
+++ new/yast2-storage-ng-4.0.84/package/yast2-storage-ng.changes
2018-02-07 10:51:09.0 +0100
@@ -1,4 +1,16 @@
 ---
+Wed Feb  7 00:18:34 UTC 2018 - an...@suse.com
+
+- Partitioner: fixed 'Device Graph' section (part of fate#318196).
+- 4.0.84
+
+---
+Mon Feb  5 15:26:35 UTC 2018 - an...@suse.com
+
+- Added a new 'disk' client, alias for 'partitioner' (bsc#1078900).
+- 4.0.83
+
+---
 Wed Jan 31 16:06:25 UTC 2018 - shundham...@suse.com
 
 - Handle arbitrary mount options for /etc/fstab properly
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-ng-4.0.82/package/yast2-storage-ng.spec 
new/yast2-storage-ng-4.0.84/package/yast2-storage-ng.spec
--- old/yast2-storage-ng-4.0.82/package/yast2-storage-ng.spec   2018-02-01 
11:13:40.0 +0100
+++ new/yast2-storage-ng-4.0.84/package/yast2-storage-ng.spec   2018-02-07 
10:51:09.0 +0100
@@ -16,7 +16,7 @@
 #
 
 Name:  yast2-storage-ng
-Version:4.0.82
+Version:4.0.84
 Release:   0
 BuildArch: noarch
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-ng-4.0.82/src/clients/disk.rb 
new/yast2-storage-ng-4.0.84/src/clients/disk.rb
--- old/yast2-storage-ng-4.0.82/src/clients/disk.rb 1970-01-01 
01:00:00.0 +0100
+++ new/yast2-storage-ng-4.0.84/src/clients/disk.rb 2018-02-07 
18:37:35.578920354 +0100
@@ -0,0 +1 @@
+symbolic link to partitioner.rb
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-ng-4.0.82/src/clients/storage.rb 
new/yast2-storage-ng-4.0.84/src/clients/storage.rb
--- old/yast2-storage-ng-4.0.82/src/clients/storage.rb  1970-01-01 
01:00:00.0 +0100
+++ new/yast2-storage-ng-4.0.84/src/clients/storage.rb  2018-02-07 
18:37:35.586919979 +0100
@@ -0,0 +1 @@
+symbolic link to partitioner.rb
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-ng-4.0.82/src/lib/y2partitioner/widgets/device_graph_with_buttons.rb
 
new/yast2-storage-ng-4.0.84/src/lib/y2partitioner/widgets/device_graph_with_buttons.rb
--- 
old/yast2-storage-ng-4.0.82/src/lib/y2partitioner/widgets/device_graph_with_buttons.rb
  1970-01-01 01:00:00.0 +0100
+++ 
new/yast2-storage-ng-4.0.84/src/lib/y2partitioner/widgets/device_graph_with_buttons.rb
  2018-02-07 10:51:09.0 +0100
@@ -0,0 +1,136 @@
+# encoding: utf-8
+
+# Copyright (c) [2018] SUSE LLC
+#
+# All Rights Reserved.
+#
+# This program is free software; you can redistribute it and/or modify it
+# under the terms of version 2 of the GNU General Public License as 

commit yast2-registration for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package yast2-registration for 
openSUSE:Factory checked in at 2018-02-07 18:37:29

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


Package is "yast2-registration"

Wed Feb  7 18:37:29 2018 rev:10 rq:573711 version:4.0.21

Changes:

--- /work/SRC/openSUSE:Factory/yast2-registration/yast2-registration.changes
2018-02-02 22:19:32.413556149 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-registration.new/yast2-registration.changes   
2018-02-07 18:37:30.379163952 +0100
@@ -1,0 +2,7 @@
+Wed Feb  7 12:26:17 UTC 2018 - lsle...@suse.cz
+
+- Do no send the product release version ("11.4-1.109") at upgrade,
+  send only the major and minor version ("11.4") (bsc#1079051)
+- 4.0.21
+
+---

Old:

  yast2-registration-4.0.20.tar.bz2

New:

  yast2-registration-4.0.21.tar.bz2



Other differences:
--
++ yast2-registration.spec ++
--- /var/tmp/diff_new_pack.g3riiW/_old  2018-02-07 18:37:30.887140154 +0100
+++ /var/tmp/diff_new_pack.g3riiW/_new  2018-02-07 18:37:30.895139779 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-registration
-Version:4.0.20
+Version:4.0.21
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-registration-4.0.20.tar.bz2 -> yast2-registration-4.0.21.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-registration-4.0.20/package/yast2-registration.changes 
new/yast2-registration-4.0.21/package/yast2-registration.changes
--- old/yast2-registration-4.0.20/package/yast2-registration.changes
2018-02-02 18:26:29.0 +0100
+++ new/yast2-registration-4.0.21/package/yast2-registration.changes
2018-02-07 14:31:08.0 +0100
@@ -1,4 +1,11 @@
 ---
+Wed Feb  7 12:26:17 UTC 2018 - lsle...@suse.cz
+
+- Do no send the product release version ("11.4-1.109") at upgrade,
+  send only the major and minor version ("11.4") (bsc#1079051)
+- 4.0.21
+
+---
 Fri Feb  2 14:20:22 UTC 2018 - lsle...@suse.cz
 
 - Fixes for the SLE11 -> SLE15 offline migration (fate#323395)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-registration-4.0.20/package/yast2-registration.spec 
new/yast2-registration-4.0.21/package/yast2-registration.spec
--- old/yast2-registration-4.0.20/package/yast2-registration.spec   
2018-02-02 18:26:29.0 +0100
+++ new/yast2-registration-4.0.21/package/yast2-registration.spec   
2018-02-07 14:31:08.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-registration
-Version:4.0.20
+Version:4.0.21
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-registration-4.0.20/src/clients/registration.rb 
new/yast2-registration-4.0.21/src/clients/registration.rb
--- old/yast2-registration-4.0.20/src/clients/registration.rb   1970-01-01 
01:00:00.0 +0100
+++ new/yast2-registration-4.0.21/src/clients/registration.rb   2018-02-07 
18:37:31.015134158 +0100
@@ -0,0 +1 @@
+symbolic link to scc.rb
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-registration-4.0.20/src/lib/registration/sw_mgmt.rb 
new/yast2-registration-4.0.21/src/lib/registration/sw_mgmt.rb
--- old/yast2-registration-4.0.20/src/lib/registration/sw_mgmt.rb   
2018-02-02 18:26:29.0 +0100
+++ new/yast2-registration-4.0.21/src/lib/registration/sw_mgmt.rb   
2018-02-07 14:31:08.0 +0100
@@ -213,11 +213,13 @@
 # convert a libzypp Product Hash to a SUSE::Connect::Remote::Product object
 # @param product [Hash] product Hash obtained from pkg-bindings
 # @return [SUSE::Connect::Remote::Product] the remote product
-def self.remote_product(product)
+def self.remote_product(product, version_release: true)
   OpenStruct.new(
 arch: product["arch"],
 identifier:   product["name"],
-version:  product["version"],
+# the "version_version" key does not contain the release number,
+# e.g. if "version" is "11.4-1.109" then "version_version" is just 
"11.4"
+version:  version_release ? product["version"] : 
product["version_version"],
 release_type: product["release_type"]
   )
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit yast2-rdp for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package yast2-rdp for openSUSE:Factory 
checked in at 2018-02-07 18:37:24

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


Package is "yast2-rdp"

Wed Feb  7 18:37:24 2018 rev:2 rq:573709 version:4.0.0

Changes:

--- /work/SRC/openSUSE:Factory/yast2-rdp/yast2-rdp.changes  2017-04-29 
10:53:08.423481995 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-rdp.new/yast2-rdp.changes 2018-02-07 
18:37:25.687383753 +0100
@@ -1,0 +2,6 @@
+Mon Feb  5 14:07:24 UTC 2018 - knut.anders...@suse.com
+
+- Replace SuSEFirewall2 by firewalld (fate#323460)
+- 4.0.0
+
+---

Old:

  yast2-rdp-3.1.3.tar.bz2

New:

  yast2-rdp-4.0.0.tar.bz2



Other differences:
--
++ yast2-rdp.spec ++
--- /var/tmp/diff_new_pack.zrj8xw/_old  2018-02-07 18:37:26.135362766 +0100
+++ /var/tmp/diff_new_pack.zrj8xw/_new  2018-02-07 18:37:26.135362766 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-rdp
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-rdp
-Version:3.1.3
+Version:4.0.0
 Release:0
 Summary:Setup Remote Desktop Protocol service for remote administration
 License:GPL-2.0
@@ -25,13 +25,15 @@
 Url:https://www.suse.com
 Source0:%{name}-%{version}.tar.bz2
 BuildArch:  noarch
+# SuSEFirewall2 replaced by firewalld (fate#323460)
 BuildRequires:  perl-XML-Writer
 BuildRequires:  update-desktop-files
-BuildRequires:  yast2
+BuildRequires:  yast2 >= 4.0.39
 BuildRequires:  yast2-devtools
 BuildRequires:  yast2-network
 BuildRequires:  yast2-testsuite
-Requires:   yast2
+# SuSEFirewall2 replaced by firewalld (fate#323460)
+Requires:   yast2 >= 4.0.39
 Requires:   yast2-ruby-bindings
 
 %description

++ yast2-rdp-3.1.3.tar.bz2 -> yast2-rdp-4.0.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-rdp-3.1.3/.yardopts 
new/yast2-rdp-4.0.0/.yardopts
--- old/yast2-rdp-3.1.3/.yardopts   1970-01-01 01:00:00.0 +0100
+++ new/yast2-rdp-4.0.0/.yardopts   2018-02-07 14:27:00.0 +0100
@@ -0,0 +1,7 @@
+--no-private
+--markup markdown
+--protected
+--readme README.md
+--output-dir ./doc/autodocs
+--files *.md
+src/**/*.rb
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-rdp-3.1.3/package/yast2-rdp.changes 
new/yast2-rdp-4.0.0/package/yast2-rdp.changes
--- old/yast2-rdp-3.1.3/package/yast2-rdp.changes   2016-09-19 
10:21:35.708473868 +0200
+++ new/yast2-rdp-4.0.0/package/yast2-rdp.changes   2018-02-07 
14:27:00.0 +0100
@@ -1,4 +1,10 @@
 ---
+Mon Feb  5 14:07:24 UTC 2018 - knut.anders...@suse.com
+
+- Replace SuSEFirewall2 by firewalld (fate#323460)
+- 4.0.0
+
+---
 Thu Aug  4 13:57:21 UTC 2016 - h...@suse.com
 
 - Remove unnecessary files from source archive and fix build errors.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-rdp-3.1.3/package/yast2-rdp.spec 
new/yast2-rdp-4.0.0/package/yast2-rdp.spec
--- old/yast2-rdp-3.1.3/package/yast2-rdp.spec  2016-09-19 10:21:35.708473868 
+0200
+++ new/yast2-rdp-4.0.0/package/yast2-rdp.spec  2018-02-07 14:27:00.0 
+0100
@@ -16,7 +16,7 @@
 #
 
 Name:   yast2-rdp
-Version:3.1.3
+Version:4.0.0
 Release:0
 License:GPL-2.0
 Group:  System/YaST
@@ -24,9 +24,13 @@
 URL:https://www.suse.com
 Source0:%{name}-%{version}.tar.bz2
 BuildArch:  noarch
-BuildRequires:  perl-XML-Writer update-desktop-files yast2 yast2-testsuite 
yast2-network
+# SuSEFirewall2 replaced by firewalld (fate#323460)
+BuildRequires:  yast2 >= 4.0.39
+BuildRequires:  perl-XML-Writer update-desktop-files yast2-testsuite 
yast2-network
 BuildRequires:  yast2-devtools
-Requires:   yast2 yast2-ruby-bindings
+# SuSEFirewall2 replaced by firewalld (fate#323460)
+Requires:   yast2 >= 4.0.39
+Requires:   yast2-ruby-bindings
 
 %description
 Configure RDP (remote desktop protocol) daemon to allow remote system 
administration.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-rdp-3.1.3/src/modules/RDP.rb 

commit texlive-specs-y for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-y for openSUSE:Factory 
checked in at 2018-02-07 18:17:23

Comparing /work/SRC/openSUSE:Factory/texlive-specs-y (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-y.new (New)


Package is "texlive-specs-y"

Wed Feb  7 18:17:23 2018 rev:32 rq:573377 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-y/texlive-specs-y.changes  
2018-01-13 21:39:52.575807482 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-y.new/texlive-specs-y.changes 
2018-02-07 18:17:59.146042490 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-y.spec ++
--- /var/tmp/diff_new_pack.NkYS9u/_old  2018-02-07 18:18:05.357751441 +0100
+++ /var/tmp/diff_new_pack.NkYS9u/_new  2018-02-07 18:18:05.377750504 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -24344,6 +24344,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/generic/vntex/vntex-update-maps
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 # Move font files
 mkdir -p %{buildroot}%{_datadir}/fonts/texlive-vntex
 for font in 
%{buildroot}/%{_texmfdistdir}/fonts/type1/vntex/arevvn/*.{pf[ab],[ot]tf} \




commit texlive for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive for openSUSE:Factory checked 
in at 2018-02-07 18:17:34

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


Package is "texlive"

Wed Feb  7 18:17:34 2018 rev:45 rq:573590 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive/texlive.changes  2018-01-30 
15:40:01.942849535 +0100
+++ /work/SRC/openSUSE:Factory/.texlive.new/texlive.changes 2018-02-07 
18:18:17.865165408 +0100
@@ -1,0 +2,5 @@
+Tue Feb  6 15:14:53 UTC 2018 - meiss...@suse.com
+
+- drop freetype-devel buildrequires, we use freetype2 here.
+
+---



Other differences:
--
++ texlive.spec ++
--- /var/tmp/diff_new_pack.WM1poY/_old  2018-02-07 18:18:20.069062146 +0100
+++ /var/tmp/diff_new_pack.WM1poY/_new  2018-02-07 18:18:20.073061958 +0100
@@ -125,7 +125,6 @@
 BuildRequires:  fftw3-devel
 BuildRequires:  flex
 BuildRequires:  freeglut-devel
-BuildRequires:  freetype-devel
 BuildRequires:  freetype2-devel
 BuildRequires:  gc-devel
 BuildRequires:  gcc-c++
@@ -3559,10 +3558,8 @@
--with-system-libpng\
--with-system-pnglib\
--with-system-gd\
-   --with-system-freetype  \
--with-system-zziplib   \
--with-system-libgs \
-   --with-freetype-includes=/usr/include/freetype \
--with-system-freetype2 \
--with-freetype2-includes=/usr/include/freetype2 \
--with-system-cairo \




commit yast2-kdump for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package yast2-kdump for openSUSE:Factory 
checked in at 2018-02-07 18:17:58

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


Package is "yast2-kdump"

Wed Feb  7 18:17:58 2018 rev:88 rq:573095 version:4.0.1

Changes:

--- /work/SRC/openSUSE:Factory/yast2-kdump/yast2-kdump.changes  2017-12-19 
10:48:05.063482434 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-kdump.new/yast2-kdump.changes 
2018-02-07 18:18:21.484995803 +0100
@@ -1,0 +2,6 @@
+Mon Feb 05 14:57:23 CET 2018 - aschn...@suse.com
+
+- added supplements for yast2 and kdump (bsc#1070423)
+- 4.0.1
+
+---

Old:

  yast2-kdump-4.0.0.tar.bz2

New:

  yast2-kdump-4.0.1.tar.bz2



Other differences:
--
++ yast2-kdump.spec ++
--- /var/tmp/diff_new_pack.Ou3Kdu/_old  2018-02-07 18:18:21.952973876 +0100
+++ /var/tmp/diff_new_pack.Ou3Kdu/_new  2018-02-07 18:18:21.952973876 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-kdump
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-kdump
-Version:4.0.0
+Version:4.0.1
 Release:0
 Summary:Configuration of kdump
 License:GPL-2.0
@@ -50,6 +50,7 @@
 %else
 Requires:   kdump
 %endif
+Supplements:packageand(yast2:kdump)
 
 %description
 Configuration of kdump

++ yast2-kdump-4.0.0.tar.bz2 -> yast2-kdump-4.0.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-kdump-4.0.0/package/yast2-kdump.changes 
new/yast2-kdump-4.0.1/package/yast2-kdump.changes
--- old/yast2-kdump-4.0.0/package/yast2-kdump.changes   2017-12-15 
13:49:58.0 +0100
+++ new/yast2-kdump-4.0.1/package/yast2-kdump.changes   2018-02-05 
17:25:26.0 +0100
@@ -1,4 +1,10 @@
 ---
+Mon Feb 05 14:57:23 CET 2018 - aschn...@suse.com
+
+- added supplements for yast2 and kdump (bsc#1070423)
+- 4.0.1
+
+---
 Fri Dec 15 11:34:57 UTC 2017 - jreidin...@suse.com
 
 - Show kdump as disabled in an installation proposal if the product
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-kdump-4.0.0/package/yast2-kdump.spec 
new/yast2-kdump-4.0.1/package/yast2-kdump.spec
--- old/yast2-kdump-4.0.0/package/yast2-kdump.spec  2017-12-15 
13:49:58.0 +0100
+++ new/yast2-kdump-4.0.1/package/yast2-kdump.spec  2018-02-05 
17:25:26.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-kdump
-Version:4.0.0
+Version:4.0.1
 Release:0
 Summary:Configuration of kdump
 License:GPL-2.0
@@ -50,6 +50,7 @@
 %else
 Requires:   kdump
 %endif
+Supplements:   packageand(yast2:kdump)
 
 %description
 Configuration of kdump




commit yast2-installation for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package yast2-installation for 
openSUSE:Factory checked in at 2018-02-07 18:18:18

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


Package is "yast2-installation"

Wed Feb  7 18:18:18 2018 rev:394 rq:573291 version:4.0.31

Changes:

--- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes
2018-02-02 22:19:09.814611175 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-installation.new/yast2-installation.changes   
2018-02-07 18:18:25.128825073 +0100
@@ -1,0 +2,8 @@
+Tue Feb  6 12:24:34 CET 2018 - sch...@suse.de
+
+- Added requirement iproute2 to spec file. This is needed by
+  the VNC AutoYaST installation in the second stage.
+  (Follow up of bnc#1077236)
+- 4.0.31
+
+---

Old:

  yast2-installation-4.0.30.tar.bz2

New:

  yast2-installation-4.0.31.tar.bz2



Other differences:
--
++ yast2-installation.spec ++
--- /var/tmp/diff_new_pack.4sVqaU/_old  2018-02-07 18:18:25.832792089 +0100
+++ /var/tmp/diff_new_pack.4sVqaU/_new  2018-02-07 18:18:25.832792089 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-installation
-Version:4.0.30
+Version:4.0.31
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -138,6 +138,9 @@
 # BNC 446533, /sbin/lspci called but not installed
 Requires:   pciutils
 
+# Needed call /sbin/ip in vnc.sh/network.sh
+Requires:   iproute2
+
 # install the registration module only in SLE (bsc#1043122)
 %if !0%{?is_opensuse}
 Recommends: yast2-registration

++ yast2-installation-4.0.30.tar.bz2 -> yast2-installation-4.0.31.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-4.0.30/package/yast2-installation.changes 
new/yast2-installation-4.0.31/package/yast2-installation.changes
--- old/yast2-installation-4.0.30/package/yast2-installation.changes
2018-02-02 17:05:49.0 +0100
+++ new/yast2-installation-4.0.31/package/yast2-installation.changes
2018-02-06 12:31:01.0 +0100
@@ -1,4 +1,12 @@
 ---
+Tue Feb  6 12:24:34 CET 2018 - sch...@suse.de
+
+- Added requirement iproute2 to spec file. This is needed by
+  the VNC AutoYaST installation in the second stage.
+  (Follow up of bnc#1077236)
+- 4.0.31
+
+---
 Fri Feb  2 15:26:05 UTC 2018 - jreidin...@suse.com
 
 - do not crash if no role is selected (bsc#1078809)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-4.0.30/package/yast2-installation.spec 
new/yast2-installation-4.0.31/package/yast2-installation.spec
--- old/yast2-installation-4.0.30/package/yast2-installation.spec   
2018-02-02 17:05:49.0 +0100
+++ new/yast2-installation-4.0.31/package/yast2-installation.spec   
2018-02-06 12:31:01.0 +0100
@@ -16,7 +16,7 @@
 #
 
 Name:   yast2-installation
-Version:4.0.30
+Version:4.0.31
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -136,6 +136,9 @@
 # BNC 446533, /sbin/lspci called but not installed
 Requires:  pciutils
 
+# Needed call /sbin/ip in vnc.sh/network.sh
+Requires:  iproute2
+
 # install the registration module only in SLE (bsc#1043122)
 %if !0%{?is_opensuse}
 Recommends:yast2-registration




commit yast2-firewall for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package yast2-firewall for openSUSE:Factory 
checked in at 2018-02-07 18:18:04

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


Package is "yast2-firewall"

Wed Feb  7 18:18:04 2018 rev:58 rq:573225 version:4.0.11

Changes:

--- /work/SRC/openSUSE:Factory/yast2-firewall/yast2-firewall.changes
2018-02-02 22:18:51.959444736 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-firewall.new/yast2-firewall.changes   
2018-02-07 18:18:22.220961320 +0100
@@ -1,0 +2,8 @@
+Mon Feb  5 21:02:57 UTC 2018 - knut.anders...@suse.com
+
+- AutoYaST: When a profile using the SuSEFirewall2 schema is used,
+  the user is reported with an error if some property is not
+  supported or with a warning in other case. (fate#323460)
+- 4.0.11
+
+---

Old:

  yast2-firewall-4.0.10.tar.bz2

New:

  yast2-firewall-4.0.11.tar.bz2



Other differences:
--
++ yast2-firewall.spec ++
--- /var/tmp/diff_new_pack.YkoGfg/_old  2018-02-07 18:18:22.704938643 +0100
+++ /var/tmp/diff_new_pack.YkoGfg/_new  2018-02-07 18:18:22.704938643 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-firewall
-Version:4.0.10
+Version:4.0.11
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-firewall-4.0.10.tar.bz2 -> yast2-firewall-4.0.11.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firewall-4.0.10/package/yast2-firewall.changes 
new/yast2-firewall-4.0.11/package/yast2-firewall.changes
--- old/yast2-firewall-4.0.10/package/yast2-firewall.changes2018-02-02 
11:16:34.0 +0100
+++ new/yast2-firewall-4.0.11/package/yast2-firewall.changes2018-02-06 
09:27:57.0 +0100
@@ -1,4 +1,12 @@
 ---
+Mon Feb  5 21:02:57 UTC 2018 - knut.anders...@suse.com
+
+- AutoYaST: When a profile using the SuSEFirewall2 schema is used,
+  the user is reported with an error if some property is not
+  supported or with a warning in other case. (fate#323460)
+- 4.0.11
+
+---
 Wed Jan 31 07:41:26 UTC 2018 - knut.anders...@suse.com
 
 - AutoYaST: (fate#323460)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firewall-4.0.10/package/yast2-firewall.spec 
new/yast2-firewall-4.0.11/package/yast2-firewall.spec
--- old/yast2-firewall-4.0.10/package/yast2-firewall.spec   2018-02-02 
11:16:34.0 +0100
+++ new/yast2-firewall-4.0.11/package/yast2-firewall.spec   2018-02-06 
09:27:57.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-firewall
-Version:4.0.10
+Version:4.0.11
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-firewall-4.0.10/src/lib/y2firewall/importer_strategies/suse_firewall.rb
 
new/yast2-firewall-4.0.11/src/lib/y2firewall/importer_strategies/suse_firewall.rb
--- 
old/yast2-firewall-4.0.10/src/lib/y2firewall/importer_strategies/suse_firewall.rb
   2018-02-02 11:16:34.0 +0100
+++ 
new/yast2-firewall-4.0.11/src/lib/y2firewall/importer_strategies/suse_firewall.rb
   2018-02-06 09:27:57.0 +0100
@@ -19,7 +19,9 @@
 # current contact information at www.suse.com.
 # 
--
 
+require "yast"
 require "y2firewall/firewalld"
+require "ui/text_helpers"
 
 module Y2Firewall
   module ImporterStrategies
@@ -27,9 +29,13 @@
 # section configuring the Y2Firewall::Firewalld instance according to it.
 class SuseFirewall
   include Yast::Logger
+  include Yast::I18n
+  include UI::TextHelpers
   # @return [Hash] AutoYaST profile firewall's section
   attr_accessor :profile
 
+  Yast.import "Report"
+
   # SuSEFirewall2 zones
   ZONES = ["DMZ", "INT", "EXT"].freeze
 
@@ -50,6 +56,27 @@
 "samba-server"  => ["samba"]
   }.freeze
 
+  SUPPORTED_PROPERTIES = [
+"FW_CONFIGURATIONS_DMZ",
+"FW_CONFIGURATIONS_EXT",
+"FW_CONFIGURATIONS_INT",
+"FW_DEV_DMZ",
+"FW_DEV_EXT",
+"FW_DEV_INT",
+"FW_SERVICES_DMZ_TCP",
+"FW_SERVICES_EXT_TCP",
+"FW_SERVICES_INT_TCP",
+"FW_SERVICES_DMZ_UDP",
+"FW_SERVICES_EXT_UDP",
+"FW_SERVICES_INT_UDP",
+"FW_SERVICES_DMZ_IP",
+"FW_SERVICES_EXT_IP",
+"FW_SERVICES_INT_IP",
+"FW_LOG_ACCEPT_CRIT",
+

commit autoyast2 for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2018-02-07 18:18:12

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


Package is "autoyast2"

Wed Feb  7 18:18:12 2018 rev:232 rq:573246 version:4.0.29

Changes:

--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes  2018-02-02 
22:18:46.783686363 +0100
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2018-02-07 
18:18:23.100920089 +0100
@@ -1,0 +2,8 @@
+Mon Feb  5 09:22:20 UTC 2018 - mfi...@suse.com
+
+- fate#323460
+  - support for disabling edit action per module. Currently used
+mainly by the new firewall module
+- 4.0.29
+
+---

Old:

  autoyast2-4.0.28.tar.bz2

New:

  autoyast2-4.0.29.tar.bz2



Other differences:
--
++ autoyast2.spec ++
--- /var/tmp/diff_new_pack.0tgKrw/_old  2018-02-07 18:18:23.692892353 +0100
+++ /var/tmp/diff_new_pack.0tgKrw/_new  2018-02-07 18:18:23.696892165 +0100
@@ -22,7 +22,7 @@
 %endif
 
 Name:   autoyast2
-Version:4.0.28
+Version:4.0.29
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ autoyast2-4.0.28.tar.bz2 -> autoyast2-4.0.29.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-4.0.28/package/autoyast2.changes 
new/autoyast2-4.0.29/package/autoyast2.changes
--- old/autoyast2-4.0.28/package/autoyast2.changes  2018-02-01 
15:05:23.0 +0100
+++ new/autoyast2-4.0.29/package/autoyast2.changes  2018-02-06 
10:32:31.0 +0100
@@ -1,4 +1,12 @@
 ---
+Mon Feb  5 09:22:20 UTC 2018 - mfi...@suse.com
+
+- fate#323460
+  - support for disabling edit action per module. Currently used
+mainly by the new firewall module
+- 4.0.29
+
+---
 Thu Feb  1 12:59:08 CET 2018 - sch...@suse.de
 
 - Report packages which cannot be select for installation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-4.0.28/package/autoyast2.spec 
new/autoyast2-4.0.29/package/autoyast2.spec
--- old/autoyast2-4.0.28/package/autoyast2.spec 2018-02-01 15:05:23.0 
+0100
+++ new/autoyast2-4.0.29/package/autoyast2.spec 2018-02-06 10:32:31.0 
+0100
@@ -22,7 +22,7 @@
 %endif
 
 Name:   autoyast2
-Version:4.0.28
+Version:4.0.29
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-4.0.28/src/fillup/sysconfig.autoinstall 
new/autoyast2-4.0.29/src/fillup/sysconfig.autoinstall
--- old/autoyast2-4.0.28/src/fillup/sysconfig.autoinstall   2018-02-01 
15:05:23.0 +0100
+++ new/autoyast2-4.0.29/src/fillup/sysconfig.autoinstall   2018-02-06 
10:32:31.0 +0100
@@ -28,3 +28,9 @@
 #
 
FORBID_WRITENOW="add-on,suse_register,partitioning,bootloader,general,report,software"
 
+## Type:string
+## Default: "firewall"
+#
+# Listed modules have Edit button / action disabled at AutoYaST UI
+#
+FORBID_EDIT="firewall"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-4.0.28/src/include/autoinstall/conftree.rb 
new/autoyast2-4.0.29/src/include/autoinstall/conftree.rb
--- old/autoyast2-4.0.28/src/include/autoinstall/conftree.rb2018-02-01 
15:05:23.0 +0100
+++ new/autoyast2-4.0.29/src/include/autoinstall/conftree.rb2018-02-06 
10:32:31.0 +0100
@@ -253,6 +253,8 @@
 UI.ChangeWidget(Id(:writeNow), :Enabled, false)
   end
 
+  UI.ChangeWidget(Id(:configure), :Enabled, false) if 
AutoinstConfig.dont_edit.include?(selectedModule)
+
   # set read button status
   resourceMap = Y2ModuleConfig.ModuleMap.fetch(selectedModule, {})
   clonable = resourceMap["X-SuSE-YaST-AutoInstClonable"] == "true"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-4.0.28/src/modules/AutoinstConfig.rb 
new/autoyast2-4.0.29/src/modules/AutoinstConfig.rb
--- old/autoyast2-4.0.28/src/modules/AutoinstConfig.rb  2018-02-01 
15:05:23.0 +0100
+++ new/autoyast2-4.0.29/src/modules/AutoinstConfig.rb  2018-02-06 
10:32:31.0 +0100
@@ -13,6 +13,7 @@
   import "ServicesManagerTarget"
 
   class AutoinstConfigClass < Module
+attr_reader(:dont_edit)
 
 module Target
   include ServicesManagerTargetClass::BaseTargets
@@ -180,6 +181,9 @@
   #
   @noWriteNow = []
 
+  # Edit 

commit yast2-bootloader for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package yast2-bootloader for 
openSUSE:Factory checked in at 2018-02-07 18:18:23

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


Package is "yast2-bootloader"

Wed Feb  7 18:18:23 2018 rev:251 rq:573362 version:4.0.15

Changes:

--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes
2018-02-02 22:18:19.768947531 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-bootloader.new/yast2-bootloader.changes   
2018-02-07 18:18:26.436763790 +0100
@@ -1,0 +2,7 @@
+Tue Feb  6 14:48:12 UTC 2018 - jreidin...@suse.com
+
+- Fix activating partition by UUID or label (bsc#1077427,
+  bsc#1076424)
+- 4.0.15
+
+---

Old:

  yast2-bootloader-4.0.14.tar.bz2

New:

  yast2-bootloader-4.0.15.tar.bz2



Other differences:
--
++ yast2-bootloader.spec ++
--- /var/tmp/diff_new_pack.Zou0zz/_old  2018-02-07 18:18:26.916741301 +0100
+++ /var/tmp/diff_new_pack.Zou0zz/_new  2018-02-07 18:18:26.920741113 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:4.0.14
+Version:4.0.15
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-bootloader-4.0.14.tar.bz2 -> yast2-bootloader-4.0.15.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-4.0.14/package/yast2-bootloader.changes 
new/yast2-bootloader-4.0.15/package/yast2-bootloader.changes
--- old/yast2-bootloader-4.0.14/package/yast2-bootloader.changes
2018-01-30 12:37:25.0 +0100
+++ new/yast2-bootloader-4.0.15/package/yast2-bootloader.changes
2018-02-06 15:55:34.0 +0100
@@ -1,4 +1,11 @@
 ---
+Tue Feb  6 14:48:12 UTC 2018 - jreidin...@suse.com
+
+- Fix activating partition by UUID or label (bsc#1077427,
+  bsc#1076424)
+- 4.0.15
+
+---
 Tue Jan 30 11:22:10 UTC 2018 - jreidin...@suse.com
 
 - fix crash when clicking link in proposal (bsc#1078227)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-4.0.14/package/yast2-bootloader.spec 
new/yast2-bootloader-4.0.15/package/yast2-bootloader.spec
--- old/yast2-bootloader-4.0.14/package/yast2-bootloader.spec   2018-01-30 
12:37:25.0 +0100
+++ new/yast2-bootloader-4.0.15/package/yast2-bootloader.spec   2018-02-06 
15:55:34.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:4.0.14
+Version:4.0.15
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-4.0.14/src/lib/bootloader/mbr_update.rb 
new/yast2-bootloader-4.0.15/src/lib/bootloader/mbr_update.rb
--- old/yast2-bootloader-4.0.14/src/lib/bootloader/mbr_update.rb
2018-01-30 12:37:25.0 +0100
+++ new/yast2-bootloader-4.0.15/src/lib/bootloader/mbr_update.rb
2018-02-06 15:55:34.0 +0100
@@ -155,7 +155,7 @@
 # boot partition
 # @return a list of partitions to activate
 def partitions_to_activate
-  result = @stage1.devices.map { |dev| devicegraph.find_by_name(dev) }
+  result = @stage1.devices.map { |dev| devicegraph.find_by_any_name(dev) }
   result.compact!
 
   result.map! do |device|
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-4.0.14/src/lib/bootloader/stage1.rb 
new/yast2-bootloader-4.0.15/src/lib/bootloader/stage1.rb
--- old/yast2-bootloader-4.0.14/src/lib/bootloader/stage1.rb2018-01-30 
12:37:25.0 +0100
+++ new/yast2-bootloader-4.0.15/src/lib/bootloader/stage1.rb2018-02-06 
15:55:34.0 +0100
@@ -42,8 +42,7 @@
 # @param [String] dev device to check, it can be kernel or udev name,
 #   it can also be virtual or real device, method convert it as needed
 def include?(dev)
-  kernel_dev = Bootloader::UdevMapping.to_kernel_device(dev)
-  real_devs = Yast::BootStorage.stage1_devices_for_name(kernel_dev)
+  real_devs = Yast::BootStorage.stage1_devices_for_name(dev)
   real_devs_names = real_devs.map(&:name)
 
   include_real_devs?(real_devs_names)
@@ -53,8 +52,7 @@
 # @param dev [String] device to add. Can be also logical device that is 
translated to
 #   physical one. If specific string should be added as it is then use 
#add_device
 def add_udev_device(dev)
-  kernel_dev = 

commit yast2-nis-client for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package yast2-nis-client for 
openSUSE:Factory checked in at 2018-02-07 18:17:53

Comparing /work/SRC/openSUSE:Factory/yast2-nis-client (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-nis-client.new (New)


Package is "yast2-nis-client"

Wed Feb  7 18:17:53 2018 rev:64 rq:572975 version:4.0.2

Changes:

--- /work/SRC/openSUSE:Factory/yast2-nis-client/yast2-nis-client.changes
2018-01-20 11:19:50.547644192 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-nis-client.new/yast2-nis-client.changes   
2018-02-07 18:18:20.841025976 +0100
@@ -1,0 +2,6 @@
+Mon Feb  5 08:18:52 UTC 2018 - knut.anders...@suse.com
+
+- Replace SuSEFirewall2 by firewalld (fate#323460)
+- 4.0.2
+
+---

Old:

  yast2-nis-client-4.0.1.tar.bz2

New:

  yast2-nis-client-4.0.2.tar.bz2



Other differences:
--
++ yast2-nis-client.spec ++
--- /var/tmp/diff_new_pack.1lWlsy/_old  2018-02-07 18:18:21.277005548 +0100
+++ /var/tmp/diff_new_pack.1lWlsy/_new  2018-02-07 18:18:21.281005361 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-nis-client
-Version:4.0.1
+Version:4.0.2
 Release:0
 Url:https://github.com/yast/yast-nis-client
 

++ yast2-nis-client-4.0.1.tar.bz2 -> yast2-nis-client-4.0.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-nis-client-4.0.1/package/yast2-nis-client.changes 
new/yast2-nis-client-4.0.2/package/yast2-nis-client.changes
--- old/yast2-nis-client-4.0.1/package/yast2-nis-client.changes 2018-01-18 
13:09:46.0 +0100
+++ new/yast2-nis-client-4.0.2/package/yast2-nis-client.changes 2018-02-05 
11:53:21.0 +0100
@@ -1,4 +1,10 @@
 ---
+Mon Feb  5 08:18:52 UTC 2018 - knut.anders...@suse.com
+
+- Replace SuSEFirewall2 by firewalld (fate#323460)
+- 4.0.2
+
+---
 Tue Nov 14 14:25:11 CET 2017 - ku...@suse.de
 
 - Link ypserv agent against libtirpc, sunrpc is deprecated and does
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nis-client-4.0.1/package/yast2-nis-client.spec 
new/yast2-nis-client-4.0.2/package/yast2-nis-client.spec
--- old/yast2-nis-client-4.0.1/package/yast2-nis-client.spec2018-01-18 
13:09:46.0 +0100
+++ new/yast2-nis-client-4.0.2/package/yast2-nis-client.spec2018-02-05 
11:53:21.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-nis-client
-Version:4.0.1
+Version:4.0.2
 Release:0
 Url:https://github.com/yast/yast-nis-client
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nis-client-4.0.1/src/include/nis/ui.rb 
new/yast2-nis-client-4.0.2/src/include/nis/ui.rb
--- old/yast2-nis-client-4.0.1/src/include/nis/ui.rb2018-01-18 
13:09:46.0 +0100
+++ new/yast2-nis-client-4.0.2/src/include/nis/ui.rb2018-02-05 
11:53:21.0 +0100
@@ -222,7 +222,7 @@
 
   firewall_widget = CWMFirewallInterfaces.CreateOpenFirewallWidget(
 {
-  "services"=> ["service:ypbind"],
+  "services"=> ["ypbind"],
   "display_details" => true,
   # firewall opening help
   "help"=> _(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nis-client-4.0.1/src/modules/Nis.rb 
new/yast2-nis-client-4.0.2/src/modules/Nis.rb
--- old/yast2-nis-client-4.0.1/src/modules/Nis.rb   2018-01-18 
13:09:46.0 +0100
+++ new/yast2-nis-client-4.0.2/src/modules/Nis.rb   2018-02-05 
11:53:21.0 +0100
@@ -36,6 +36,7 @@
 # $Id$
 #
 require "yast"
+require "y2firewall/firewalld"
 
 module Yast
   class NisClass < Module
@@ -53,7 +54,6 @@
   Yast.import "Report"
   Yast.import "Service"
   Yast.import "Summary"
-  Yast.import "SuSEFirewall"
   Yast.import "Wizard"
 
   # default value of settings modified
@@ -940,9 +940,7 @@
 
   Autologin.Read
 
-  progress_orig = Progress.set(false)
-  SuSEFirewall.Read
-  Progress.set(progress_orig)
+  Y2Firewall::Firewalld.instance.read
 
   true
 end
@@ -1193,9 +1191,7 @@
 end
   end
 
-  progress_orig = Progress.set(false)
-  SuSEFirewall.WriteOnly
-  Progress.set(progress_orig)
+  Y2Firewall::Firewalld.instance.write_only
 
   true
 end
@@ -1288,8 +1284,7 @@
 end 
   end
 
-  SuSEFirewall.ActivateConfiguration
-
+  Y2Firewall::Firewalld.instance.reload
   # final stage
   

commit texlive-specs-x for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-x for openSUSE:Factory 
checked in at 2018-02-07 18:17:17

Comparing /work/SRC/openSUSE:Factory/texlive-specs-x (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-x.new (New)


Package is "texlive-specs-x"

Wed Feb  7 18:17:17 2018 rev:32 rq:573376 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-x/texlive-specs-x.changes  
2018-01-13 21:39:46.568087431 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-x.new/texlive-specs-x.changes 
2018-02-07 18:17:53.590302805 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-x.spec ++
--- /var/tmp/diff_new_pack.Xo1Li5/_old  2018-02-07 18:17:57.994096464 +0100
+++ /var/tmp/diff_new_pack.Xo1Li5/_new  2018-02-07 18:17:58.006095902 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 




commit texlive-specs-z for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-z for openSUSE:Factory 
checked in at 2018-02-07 18:17:28

Comparing /work/SRC/openSUSE:Factory/texlive-specs-z (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-z.new (New)


Package is "texlive-specs-z"

Wed Feb  7 18:17:28 2018 rev:32 rq:573378 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-z/texlive-specs-z.changes  
2018-01-13 21:39:58.703521940 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-z.new/texlive-specs-z.changes 
2018-02-07 18:18:09.961535731 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-z.spec ++
--- /var/tmp/diff_new_pack.Zr52Bw/_old  2018-02-07 18:18:14.885305029 +0100
+++ /var/tmp/diff_new_pack.Zr52Bw/_new  2018-02-07 18:18:14.901304279 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -20893,6 +20893,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:9} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:10} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/fonts/xcharter/altone.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 # Move font files
 mkdir -p %{buildroot}%{_datadir}/fonts/texlive-xcharter
 for font in 
%{buildroot}/%{_texmfdistdir}/fonts/opentype/public/xcharter/*.{pf[ab],[ot]tf} \
@@ -21052,6 +21064,21 @@
q
EOF
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/xelatex/xepersian/dkun-0.3.py \
+  %{_texmfdistdir}/doc/xelatex/xepersian/dkun-0.4.py \
+  %{_texmfdistdir}/doc/xelatex/xepersian/undk-0.6.py \
+  %{_texmfdistdir}/doc/xelatex/xepersian/unldk-0.2.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-xesearch-%{texlive_version}.%{texlive_noarch}.svn16041-%{release}-zypper
@@ -21183,6 +21210,18 @@
q
EOF
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/fonts/xits/postprocess.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 # Move font files
 mkdir -p %{buildroot}%{_datadir}/fonts/texlive-xits
 for font in 
%{buildroot}/%{_texmfdistdir}/fonts/opentype/public/xits/*.{pf[ab],[ot]tf}
@@ -21703,6 +21742,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/fonts/zhmetrics-uptex/makemetrics.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-zhnumber-%{texlive_version}.%{texlive_noarch}.2.4svn41123-%{release}-zypper




commit texlive-specs-w for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-w for openSUSE:Factory 
checked in at 2018-02-07 18:17:11

Comparing /work/SRC/openSUSE:Factory/texlive-specs-w (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-w.new (New)


Package is "texlive-specs-w"

Wed Feb  7 18:17:11 2018 rev:32 rq:573375 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-w/texlive-specs-w.changes  
2018-01-13 21:40:04.367258016 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-w.new/texlive-specs-w.changes 
2018-02-07 18:17:48.694532197 +0100
@@ -1,0 +2,11 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---



Other differences:
--
++ texlive-specs-w.spec ++
--- /var/tmp/diff_new_pack.YMEj0e/_old  2018-02-07 18:17:52.706344223 +0100
+++ /var/tmp/diff_new_pack.YMEj0e/_new  2018-02-07 18:17:52.722343473 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   134
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -17941,6 +17941,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:67} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:68} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/bash or similar
+for scr in 
%{_texmfdistdir}/doc/latex/tengwarscript/install-tengwar-scripts.sh
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@^#!.*bash@#!/bin/bash@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-tensor-%{texlive_version}.%{texlive_noarch}.2.1svn15878-%{release}-zypper
@@ -17991,6 +18003,20 @@
 mv -f  %{buildroot}%{_texmfdistdir}/web2c/updmap.cfg 
%{buildroot}%{_texmfconfdir}/web2c/
 rm -f  %{buildroot}%{_texmfdistdir}/web2c/updmap.cfg
 ln -sf %{_texmfconfdir}/web2c/updmap.cfg 
%{buildroot}%{_texmfdistdir}/web2c/updmap.cfg
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/texlive/fmtutil.pl \
+  %{_texmfdistdir}/scripts/texlive/mktexlsr.pl \
+  %{_texmfdistdir}/scripts/texlive/updmap.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-teubner-%{texlive_version}.%{texlive_noarch}.4.8svn40197-%{release}-zypper
@@ -18148,6 +18174,18 @@
q
EOF
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/tex4ebook/tex4ebook
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-tex4ht-%{texlive_version}.%{texlive_noarch}.svn44379-%{release}-zypper
@@ -18157,6 +18195,18 @@
 pushd %{buildroot}%{_datadir}/texlive/texmf-dist
patch --reject-format=unified --quoting-style=literal -f -p1 -F0 -T < 
%{S:107}
 popd
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/tex4ht/mk4ht.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-texapi-%{texlive_version}.%{texlive_noarch}.1.04svn24237-%{release}-zypper
@@ -18186,18 +18236,54 @@
 %endif
 tar --use-compress-program=xz -xf %{S:114} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:115} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/texcount/texcount.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed 

commit texlive-specs-u for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-u for openSUSE:Factory 
checked in at 2018-02-07 18:17:01

Comparing /work/SRC/openSUSE:Factory/texlive-specs-u (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-u.new (New)


Package is "texlive-specs-u"

Wed Feb  7 18:17:01 2018 rev:33 rq:573373 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-u/texlive-specs-u.changes  
2018-01-13 21:39:35.148619552 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-u.new/texlive-specs-u.changes 
2018-02-07 18:17:34.223210257 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-u.spec ++
--- /var/tmp/diff_new_pack.CbkLtt/_old  2018-02-07 18:17:41.170884720 +0100
+++ /var/tmp/diff_new_pack.CbkLtt/_new  2018-02-07 18:17:41.186883971 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -16078,6 +16078,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:50} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:51} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/rubik/rubikrotation.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-ruhyphen-%{texlive_version}.%{texlive_noarch}.1.6svn21081-%{release}-zypper
@@ -16297,6 +16309,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:101} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:102} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/latex/scanpages/replicate.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 # Move font files
 mkdir -p %{buildroot}%{_datadir}/fonts/texlive-scanpages
 for font in 
%{buildroot}/%{_texmfdistdir}/fonts/type1/public/scanpages/*.{pf[ab],[ot]tf}




commit texlive-specs-v for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-v for openSUSE:Factory 
checked in at 2018-02-07 18:17:06

Comparing /work/SRC/openSUSE:Factory/texlive-specs-v (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-v.new (New)


Package is "texlive-specs-v"

Wed Feb  7 18:17:06 2018 rev:37 rq:573374 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-v/texlive-specs-v.changes  
2018-01-13 21:39:41.232336066 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-v.new/texlive-specs-v.changes 
2018-02-07 18:17:41.978846863 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-v.spec ++
--- /var/tmp/diff_new_pack.Z9MtNM/_old  2018-02-07 18:17:47.906569117 +0100
+++ /var/tmp/diff_new_pack.Z9MtNM/_new  2018-02-07 18:17:47.922568368 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -18360,6 +18360,19 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/splitindex/splitindex.tlu \
+  %{_texmfdistdir}/scripts/splitindex/splitindex_main.tlu
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-spot-%{texlive_version}.%{texlive_noarch}.1.1svn22408-%{release}-zypper
@@ -18408,6 +18421,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:101} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:102} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/srcredact/srcredact.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-sseq-%{texlive_version}.%{texlive_noarch}.2.01svn31585-%{release}-zypper
@@ -18714,6 +18739,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:156} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:157} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/sty2dtx/sty2dtx.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-suanpan-%{texlive_version}.%{texlive_noarch}.svn15878-%{release}-zypper




commit texlive-specs-t for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-t for openSUSE:Factory 
checked in at 2018-02-07 18:16:55

Comparing /work/SRC/openSUSE:Factory/texlive-specs-t (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-t.new (New)


Package is "texlive-specs-t"

Wed Feb  7 18:16:55 2018 rev:32 rq:573372 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-t/texlive-specs-t.changes  
2018-01-13 21:39:29.332890550 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-t.new/texlive-specs-t.changes 
2018-02-07 18:17:26.483572902 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-t.spec ++
--- /var/tmp/diff_new_pack.AlVG6J/_old  2018-02-07 18:17:33.175259359 +0100
+++ /var/tmp/diff_new_pack.AlVG6J/_new  2018-02-07 18:17:33.191258609 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -14649,6 +14649,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:68} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:69} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/ps2eps/ps2eps.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-pstricks-%{texlive_version}.%{texlive_noarch}.2.73asvn44506-%{release}-zypper
@@ -14696,6 +14708,19 @@
 %endif
 tar --use-compress-program=xz -xf %{S:83} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:84} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/ptex-fontmaps/kanji-config-updmap.pl \
+  %{_texmfdistdir}/scripts/ptex-fontmaps/kanji-fontmap-creator.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-ptex-fonts-fonts-%{texlive_version}.%{texlive_noarch}.svn42950-%{release}-zypper
@@ -14738,6 +14763,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:87} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:88} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/ptex2pdf/ptex2pdf.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-ptext-%{texlive_version}.%{texlive_noarch}.1.1svn30171-%{release}-zypper
@@ -14810,6 +14847,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:99} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:100} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/purifyeps/purifyeps
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-pxbase-%{texlive_version}.%{texlive_noarch}.1.1svn44482-%{release}-zypper
@@ -14906,6 +14955,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:121} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:122} -C 

commit texlive-specs-s for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-s for openSUSE:Factory 
checked in at 2018-02-07 18:16:50

Comparing /work/SRC/openSUSE:Factory/texlive-specs-s (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-s.new (New)


Package is "texlive-specs-s"

Wed Feb  7 18:16:50 2018 rev:32 rq:573371 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-s/texlive-specs-s.changes  
2018-01-13 21:39:20.625296298 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-s.new/texlive-specs-s.changes 
2018-02-07 18:17:16.752028882 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-s.spec ++
--- /var/tmp/diff_new_pack.5K0WcX/_old  2018-02-07 18:17:25.575615445 +0100
+++ /var/tmp/diff_new_pack.5K0WcX/_new  2018-02-07 18:17:25.591614696 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -14583,6 +14583,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:33} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:34} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/pmxchords/pmxchords.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-pnas2009-%{texlive_version}.%{texlive_noarch}.1.0svn16287-%{release}-zypper
@@ -15149,6 +15161,19 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/generic/pst-geo/pst-geo-compress.pl \
+  %{_texmfdistdir}/doc/generic/pst-geo/pst-geo-decompress.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-pst-ghsb-%{texlive_version}.%{texlive_noarch}.svn15878-%{release}-zypper




commit texlive-specs-r for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-r for openSUSE:Factory 
checked in at 2018-02-07 18:16:44

Comparing /work/SRC/openSUSE:Factory/texlive-specs-r (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-r.new (New)


Package is "texlive-specs-r"

Wed Feb  7 18:16:44 2018 rev:31 rq:573370 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-r/texlive-specs-r.changes  
2018-01-13 21:39:14.413585744 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-r.new/texlive-specs-r.changes 
2018-02-07 18:17:10.604316939 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-r.spec ++
--- /var/tmp/diff_new_pack.gkcEcw/_old  2018-02-07 18:17:14.844118279 +0100
+++ /var/tmp/diff_new_pack.gkcEcw/_new  2018-02-07 18:17:14.856117717 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -15558,9 +15558,9 @@
 %endif
 tar --use-compress-program=xz -xf %{S:58} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:59} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-solides.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-solides.tex
 mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-calculs.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-calculs.tex
 mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-styles.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-styles.tex
-mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-solides.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-solides.tex
 mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-patrons.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-patrons.tex
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \
@@ -15630,6 +15630,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:78} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:79} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/pax/pdfannotextractor.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-pb-diagram-%{texlive_version}.%{texlive_noarch}.5.0svn15878-%{release}-zypper
@@ -15678,6 +15690,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:92} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:93} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/pdfbook2/pdfbook2
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-pdfcomment-%{texlive_version}.%{texlive_noarch}.2.4svn41484-%{release}-zypper
@@ -15696,6 +15720,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:98} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:99} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/pdfcrop/pdfcrop.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \


commit texlive-specs-p for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-p for openSUSE:Factory 
checked in at 2018-02-07 18:16:32

Comparing /work/SRC/openSUSE:Factory/texlive-specs-p (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-p.new (New)


Package is "texlive-specs-p"

Wed Feb  7 18:16:32 2018 rev:33 rq:573367 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-p/texlive-specs-p.changes  
2018-01-13 21:39:01.346194634 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-p.new/texlive-specs-p.changes 
2018-02-07 18:16:57.196945158 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-p.spec ++
--- /var/tmp/diff_new_pack.liC1iW/_old  2018-02-07 18:17:02.832681088 +0100
+++ /var/tmp/diff_new_pack.liC1iW/_new  2018-02-07 18:17:02.856679963 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -23445,6 +23445,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:108} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:109} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/mkgrkindex/mkgrkindex
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-mkjobtexmf-%{texlive_version}.%{texlive_noarch}.0.0.8svn29725-%{release}-zypper
@@ -23458,6 +23470,20 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/mkjobtexmf/mkjobtexmf.pl \
+  %{_texmfdistdir}/doc/generic/mkjobtexmf/clean-case.pl \
+  %{_texmfdistdir}/doc/generic/mkjobtexmf/version.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-mkpattern-%{texlive_version}.%{texlive_noarch}.1.2svn15878-%{release}-zypper
@@ -23470,6 +23496,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:114} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:115} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/mkpic/mkpic
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-mla-paper-%{texlive_version}.%{texlive_noarch}.svn20885-%{release}-zypper
@@ -23956,6 +23994,19 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/musixtex/musixflx.lua \
+  %{_texmfdistdir}/scripts/musixtex/musixtex.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-musixtex-fonts-fonts-%{texlive_version}.%{texlive_noarch}.svn37762-%{release}-zypper




commit texlive-specs-n for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-n for openSUSE:Factory 
checked in at 2018-02-07 18:16:21

Comparing /work/SRC/openSUSE:Factory/texlive-specs-n (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-n.new (New)


Package is "texlive-specs-n"

Wed Feb  7 18:16:21 2018 rev:32 rq:573365 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-n/texlive-specs-n.changes  
2018-01-13 21:38:50.078719649 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-n.new/texlive-specs-n.changes 
2018-02-07 18:16:43.289596807 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-n.spec ++
--- /var/tmp/diff_new_pack.uB9qqs/_old  2018-02-07 18:16:50.545256832 +0100
+++ /var/tmp/diff_new_pack.uB9qqs/_new  2018-02-07 18:16:50.561256082 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -19147,6 +19147,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:2} -C %{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:3} -C %{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/latex-papersize/latex-papersize.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-latex-referenz-%{texlive_version}.%{texlive_noarch}.2svn36671-%{release}-zypper
@@ -19187,6 +19199,18 @@
q
EOF
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/source/latex/latex-tds/build.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-latex-veryshortguide-%{texlive_version}.%{texlive_noarch}.svn41844-%{release}-zypper
@@ -19227,6 +19251,18 @@
 pushd %{buildroot}%{_datadir}/texlive/texmf-dist
patch --reject-format=unified --quoting-style=literal -f -p1 -F0 -T < 
%{S:15}
 popd
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/latex2man/latex2man
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-latex2nemeth-%{texlive_version}.%{texlive_noarch}.1.0svn42300-%{release}-zypper
@@ -19336,6 +19372,23 @@
q
EOF
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/latexdiff/latexdiff-vc.pl \
+  %{_texmfdistdir}/scripts/latexdiff/latexdiff.pl \
+  %{_texmfdistdir}/scripts/latexdiff/latexrevise.pl \
+  %{_texmfdistdir}/doc/support/latexdiff/contrib/latexchanges.py \
+  %{_texmfdistdir}/doc/support/latexdiff/latexdiff \
+  %{_texmfdistdir}/doc/support/latexdiff/latexdiff-fast
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-latexfileinfo-pkgs-%{texlive_version}.%{texlive_noarch}.0.0.22svn26760-%{release}-zypper
@@ -19348,6 +19401,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:37} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf 

commit texlive-specs-o for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-o for openSUSE:Factory 
checked in at 2018-02-07 18:16:26

Comparing /work/SRC/openSUSE:Factory/texlive-specs-o (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-o.new (New)


Package is "texlive-specs-o"

Wed Feb  7 18:16:26 2018 rev:32 rq:573366 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-o/texlive-specs-o.changes  
2018-01-13 21:38:55.814452390 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-o.new/texlive-specs-o.changes 
2018-02-07 18:16:51.393217100 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-o.spec ++
--- /var/tmp/diff_new_pack.zrIZQU/_old  2018-02-07 18:16:55.845008505 +0100
+++ /var/tmp/diff_new_pack.zrIZQU/_new  2018-02-07 18:16:55.861007755 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -15214,6 +15214,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/support/lua-alt-getopt/alt_getopt
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-lua-check-hyphen-%{texlive_version}.%{texlive_noarch}.0.0.4svn40229-%{release}-zypper
@@ -15350,6 +15362,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/tex/luatex/lualibs/lualibs-compat.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-luamesh-%{texlive_version}.%{texlive_noarch}.0.0.51svn43814-%{release}-zypper
@@ -15398,6 +15422,30 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/luaotfload/luaotfload-tool.lua \
+  %{_texmfdistdir}/scripts/luaotfload/mkcharacters \
+  %{_texmfdistdir}/scripts/luaotfload/mkglyphlist \
+  %{_texmfdistdir}/scripts/luaotfload/mkimport \
+  %{_texmfdistdir}/scripts/luaotfload/mkstatus \
+  %{_texmfdistdir}/scripts/luaotfload/mktests \
+  %{_texmfdistdir}/tex/luatex/luaotfload/luaotfload-auxiliary.lua \
+  
%{_texmfdistdir}/tex/luatex/luaotfload/luaotfload-configuration.lua \
+  
%{_texmfdistdir}/tex/luatex/luaotfload/luaotfload-diagnostics.lua \
+  %{_texmfdistdir}/tex/luatex/luaotfload/luaotfload-init.lua \
+  %{_texmfdistdir}/tex/luatex/luaotfload/luaotfload-loaders.lua \
+  %{_texmfdistdir}/tex/luatex/luaotfload/luaotfload-parsers.lua \
+  %{_texmfdistdir}/tex/luatex/luaotfload/luaotfload-resolvers.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-luapackageloader-%{texlive_version}.%{texlive_noarch}.0.0.1svn44500-%{release}-zypper
@@ -15491,6 +15539,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:98} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:99} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/lwarp/lwarpmk.lua
+do
+  

commit texlive-specs-q for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-q for openSUSE:Factory 
checked in at 2018-02-07 18:16:39

Comparing /work/SRC/openSUSE:Factory/texlive-specs-q (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-q.new (New)


Package is "texlive-specs-q"

Wed Feb  7 18:16:39 2018 rev:33 rq:573369 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-q/texlive-specs-q.changes  
2018-01-13 21:39:07.729897178 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-q.new/texlive-specs-q.changes 
2018-02-07 18:17:03.848633484 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-q.spec ++
--- /var/tmp/diff_new_pack.MBkqlU/_old  2018-02-07 18:17:09.640362106 +0100
+++ /var/tmp/diff_new_pack.MBkqlU/_new  2018-02-07 18:17:09.664360982 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -21948,6 +21948,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/latex/newcommand/newcommand.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-newenviron-%{texlive_version}.%{texlive_noarch}.1.0svn29331-%{release}-zypper
@@ -22250,6 +22262,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:98} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:99} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/latex/nmbib/nmbibtex.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-noconflict-%{texlive_version}.%{texlive_noarch}.1.0svn30140-%{release}-zypper
@@ -22525,6 +22549,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:165} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:166} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/oberdiek/pdfatfi.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-objectz-%{texlive_version}.%{texlive_noarch}.svn19389-%{release}-zypper




commit texlive-specs-m for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-m for openSUSE:Factory 
checked in at 2018-02-07 18:16:15

Comparing /work/SRC/openSUSE:Factory/texlive-specs-m (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-m.new (New)


Package is "texlive-specs-m"

Wed Feb  7 18:16:15 2018 rev:35 rq:573364 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-m/texlive-specs-m.changes  
2018-01-13 21:38:43.255037599 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-m.new/texlive-specs-m.changes 
2018-02-07 18:16:34.166024308 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-m.spec ++
--- /var/tmp/diff_new_pack.9h0lu9/_old  2018-02-07 18:16:42.433636915 +0100
+++ /var/tmp/diff_new_pack.9h0lu9/_new  2018-02-07 18:16:42.453635978 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -31000,6 +31000,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:75} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:76} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/jmlr/makejmlrbook
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-jmn-fonts-%{texlive_version}.%{texlive_noarch}.svn22719-%{release}-zypper
@@ -31407,6 +31419,20 @@
 %endif
 tar --use-compress-program=xz -xf %{S:163} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:164} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/kotex-utils/jamo-normalize.pl \
+  %{_texmfdistdir}/scripts/kotex-utils/komkindex.pl \
+  %{_texmfdistdir}/scripts/kotex-utils/ttf2kotexfont.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-kpathsea-%{texlive_version}.%{texlive_noarch}.svn44223-%{release}-zypper
@@ -31694,6 +31720,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:223} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:224} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/latex-git-log/latex-git-log
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-latex-graphics-companion-%{texlive_version}.%{texlive_noarch}.svn29235-%{release}-zypper
@@ -31705,6 +31743,22 @@
 %endif
 tar --use-compress-program=xz -xf %{S:226} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:227} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/latex-make/figdepth.py \
+  %{_texmfdistdir}/scripts/latex-make/gensubfig.py \
+  %{_texmfdistdir}/scripts/latex-make/latexfilter.py \
+  %{_texmfdistdir}/scripts/latex-make/svg2dev.py \
+  %{_texmfdistdir}/scripts/latex-make/svgdepth.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done

commit texlive-specs-l for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-l for openSUSE:Factory 
checked in at 2018-02-07 18:16:09

Comparing /work/SRC/openSUSE:Factory/texlive-specs-l (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-l.new (New)


Package is "texlive-specs-l"

Wed Feb  7 18:16:09 2018 rev:32 rq:573363 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-l/texlive-specs-l.changes  
2018-01-13 21:38:39.147229002 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-l.new/texlive-specs-l.changes 
2018-02-07 18:16:27.726326052 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-l.spec ++
--- /var/tmp/diff_new_pack.NFcDbv/_old  2018-02-07 18:16:32.462104149 +0100
+++ /var/tmp/diff_new_pack.NFcDbv/_new  2018-02-07 18:16:32.470103773 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -12884,6 +12884,19 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/generic/huhyphen/searchforerrors.rb \
+  %{_texmfdistdir}/doc/generic/huhyphen/testhyphenation.rb
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-hyphen-icelandic-%{texlive_version}.%{texlive_noarch}.svn40340-%{release}-zypper




commit texlive-specs-k for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-k for openSUSE:Factory 
checked in at 2018-02-07 18:16:04

Comparing /work/SRC/openSUSE:Factory/texlive-specs-k (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-k.new (New)


Package is "texlive-specs-k"

Wed Feb  7 18:16:04 2018 rev:33 rq:573361 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-k/texlive-specs-k.changes  
2018-01-13 21:38:33.683483583 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-k.new/texlive-specs-k.changes 
2018-02-07 18:16:20.322672966 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-k.spec ++
--- /var/tmp/diff_new_pack.jbBaTf/_old  2018-02-07 18:16:26.854366910 +0100
+++ /var/tmp/diff_new_pack.jbBaTf/_new  2018-02-07 18:16:26.870366160 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -16976,6 +16976,20 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/support/gitfile-info/gfi-run.py \
+  %{_texmfdistdir}/doc/support/gitfile-info/post-commit.py \
+  %{_texmfdistdir}/doc/support/gitfile-info/post-merge.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-gitinfo-%{texlive_version}.%{texlive_noarch}.1.0svn34049-%{release}-zypper
@@ -17025,6 +17039,19 @@
 tar --use-compress-program=xz -xf %{S:37} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:38} -C 
%{buildroot}%{_datadir}/texlive
 rm -vf  %{buildroot}%{_texmfdistdir}/scripts/glossaries/makeglossaries.bat
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/glossaries/makeglossaries \
+  %{_texmfdistdir}/scripts/glossaries/makeglossaries-lite.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-glossaries-danish-%{texlive_version}.%{texlive_noarch}.1.0svn35665-%{release}-zypper
@@ -17195,6 +17222,18 @@
q
EOF
 done
+# Avoid /usr/bin/env 
+for scr in 
%{_texmfdistdir}/doc/fonts/gnu-freefont/tools/utility/hex_range.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 # Move font files
 mkdir -p %{buildroot}%{_datadir}/fonts/texlive-gnu-freefont
 for font in 
%{buildroot}/%{_texmfdistdir}/fonts/opentype/public/gnu-freefont/*.{pf[ab],[ot]tf}
 \
@@ -17835,6 +17874,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/bash or similar
+for scr in %{_texmfdistdir}/doc/latex/hepthesis/example/getNewBibtex
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@^#!.*bash@#!/bin/bash@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-hepunits-%{texlive_version}.%{texlive_noarch}.1.1.1svn15878-%{release}-zypper
@@ -17902,13 +17953,6 @@
 %endif
 tar --use-compress-program=xz -xf %{S:232} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:233} -C 

commit texlive-specs-i for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-i for openSUSE:Factory 
checked in at 2018-02-07 18:15:52

Comparing /work/SRC/openSUSE:Factory/texlive-specs-i (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-i.new (New)


Package is "texlive-specs-i"

Wed Feb  7 18:15:52 2018 rev:32 rq:573359 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-i/texlive-specs-i.changes  
2018-01-13 21:38:18.316199608 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-i.new/texlive-specs-i.changes 
2018-02-07 18:16:04.107432768 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-i.spec ++
--- /var/tmp/diff_new_pack.dLOdH6/_old  2018-02-07 18:16:12.007062612 +0100
+++ /var/tmp/diff_new_pack.dLOdH6/_new  2018-02-07 18:16:12.027061675 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -21756,6 +21756,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:145} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:146} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/latex/fancytooltips/fancy-preview
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-fancyvrb-%{texlive_version}.%{texlive_noarch}.2.8svn18492-%{release}-zypper
@@ -22093,6 +22105,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:196} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:197} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/fig4latex/fig4latex
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-figbas-fonts-%{texlive_version}.%{texlive_noarch}.1.0.3svn28943-%{release}-zypper




commit texlive-specs-j for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-j for openSUSE:Factory 
checked in at 2018-02-07 18:15:58

Comparing /work/SRC/openSUSE:Factory/texlive-specs-j (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-j.new (New)


Package is "texlive-specs-j"

Wed Feb  7 18:15:58 2018 rev:32 rq:573360 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-j/texlive-specs-j.changes  
2018-01-13 21:38:28.135742077 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-j.new/texlive-specs-j.changes 
2018-02-07 18:16:12.963017819 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-j.spec ++
--- /var/tmp/diff_new_pack.PfaywF/_old  2018-02-07 18:16:19.430714760 +0100
+++ /var/tmp/diff_new_pack.PfaywF/_new  2018-02-07 18:16:19.442714198 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -13223,6 +13223,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/flowfram/flowfram.perl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-fltpoint-%{texlive_version}.%{texlive_noarch}.1.1bsvn15878-%{release}-zypper
@@ -13495,6 +13507,20 @@
 %endif
 tar --use-compress-program=xz -xf %{S:80} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:81} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/fontools/afm2afm \
+  %{_texmfdistdir}/scripts/fontools/autoinst \
+  %{_texmfdistdir}/scripts/fontools/ot2kpx
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-fonts-churchslavonic-fonts-%{texlive_version}.%{texlive_noarch}.1.1svn43121-%{release}-zypper
@@ -14180,6 +14206,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:231} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:232} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/getmap/getmapdl.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-getoptk-%{texlive_version}.%{texlive_noarch}.1.0svn23567-%{release}-zypper




commit texlive-specs-g for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-g for openSUSE:Factory 
checked in at 2018-02-07 18:15:41

Comparing /work/SRC/openSUSE:Factory/texlive-specs-g (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-g.new (New)


Package is "texlive-specs-g"

Wed Feb  7 18:15:41 2018 rev:32 rq:573357 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-g/texlive-specs-g.changes  
2018-01-13 21:38:06.380755722 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-g.new/texlive-specs-g.changes 
2018-02-07 18:15:51.920003842 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-g.spec ++
--- /var/tmp/diff_new_pack.LjiquM/_old  2018-02-07 18:15:56.891770876 +0100
+++ /var/tmp/diff_new_pack.LjiquM/_new  2018-02-07 18:15:56.907770127 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -16595,6 +16595,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:124} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:125} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/diadia/diadia.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-diagbox-%{texlive_version}.%{texlive_noarch}.2.2svn42843-%{release}-zypper
@@ -16838,6 +16850,20 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/dosepsbin/dosepsbin.pl \
+  %{_texmfdistdir}/doc/support/dosepsbin/clean-case.pl \
+  %{_texmfdistdir}/doc/support/dosepsbin/version.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-dot2texi-%{texlive_version}.%{texlive_noarch}.3.0svn26237-%{release}-zypper




commit texlive-specs-e for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-e for openSUSE:Factory 
checked in at 2018-02-07 18:15:28

Comparing /work/SRC/openSUSE:Factory/texlive-specs-e (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-e.new (New)


Package is "texlive-specs-e"

Wed Feb  7 18:15:28 2018 rev:33 rq:573355 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-e/texlive-specs-e.changes  
2018-01-13 21:37:51.117466881 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-e.new/texlive-specs-e.changes 
2018-02-07 18:15:34.980797578 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-e.spec ++
--- /var/tmp/diff_new_pack.0xyQPW/_old  2018-02-07 18:15:43.888380187 +0100
+++ /var/tmp/diff_new_pack.0xyQPW/_new  2018-02-07 18:15:43.908379250 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -20942,6 +20942,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:17} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:18} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/checkcites/checkcites.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-checklistings-%{texlive_version}.%{texlive_noarch}.1.0svn38300-%{release}-zypper
@@ -21169,6 +21181,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:71} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:72} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/chktex/deweb.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-chletter-%{texlive_version}.%{texlive_noarch}.2.0svn20060-%{release}-zypper
@@ -21366,6 +21390,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/cjk-gs-integrate/cjk-gs-integrate.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-cjk-ko-%{texlive_version}.%{texlive_noarch}.1.8svn40373-%{release}-zypper
@@ -22104,6 +22140,23 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in 
%{_texmfdistdir}/doc/latex/comprehensive/source/makefakeMnSymbol \
+  %{_texmfdistdir}/doc/latex/comprehensive/source/makefakeboisik \
+  %{_texmfdistdir}/doc/latex/comprehensive/source/makefakefdsymbol 
\
+  %{_texmfdistdir}/doc/latex/comprehensive/source/makefakestarfont 
\
+  %{_texmfdistdir}/doc/latex/comprehensive/source/makefakestix \
+  %{_texmfdistdir}/doc/latex/comprehensive/source/makerawtables
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \


commit texlive-specs-h for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-h for openSUSE:Factory 
checked in at 2018-02-07 18:15:46

Comparing /work/SRC/openSUSE:Factory/texlive-specs-h (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-h.new (New)


Package is "texlive-specs-h"

Wed Feb  7 18:15:46 2018 rev:32 rq:573358 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-h/texlive-specs-h.changes  
2018-01-13 21:38:11.844501148 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-h.new/texlive-specs-h.changes 
2018-02-07 18:15:57.891724021 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-h.spec ++
--- /var/tmp/diff_new_pack.ebJOSv/_old  2018-02-07 18:16:03.079480936 +0100
+++ /var/tmp/diff_new_pack.ebJOSv/_new  2018-02-07 18:16:03.091480373 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -18012,6 +18012,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:20} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:21} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/dviasm/dviasm.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-dvicopy-%{texlive_version}.%{texlive_noarch}.1.5svn44166-%{release}-zypper
@@ -18041,6 +18053,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:26} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:27} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/dviinfox/dviinfox.pl
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-dviljk-%{texlive_version}.%{texlive_noarch}.svn44166-%{release}-zypper
@@ -18230,6 +18254,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:68} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:69} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/ebong/ebong.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-ebook-%{texlive_version}.%{texlive_noarch}.svn29466-%{release}-zypper
@@ -18425,6 +18461,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:123} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:124} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/latex/ejpecp/mgetmref.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-ekaia-%{texlive_version}.%{texlive_noarch}.1.04svn42578-%{release}-zypper
@@ -18671,6 +18719,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/tex/generic/enigma/enigma.lua
+do
+   test -e %{buildroot}/$scr || continue
+ 

commit texlive-specs-f for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-f for openSUSE:Factory 
checked in at 2018-02-07 18:15:33

Comparing /work/SRC/openSUSE:Factory/texlive-specs-f (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-f.new (New)


Package is "texlive-specs-f"

Wed Feb  7 18:15:33 2018 rev:33 rq:573356 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-f/texlive-specs-f.changes  
2018-01-13 21:37:58.829107575 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-f.new/texlive-specs-f.changes 
2018-02-07 18:15:45.060325272 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-f.spec ++
--- /var/tmp/diff_new_pack.zEfOxU/_old  2018-02-07 18:15:51.028045637 +0100
+++ /var/tmp/diff_new_pack.zEfOxU/_new  2018-02-07 18:15:51.044044888 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -18109,6 +18109,30 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/context/lua/mtxrun.lua \
+  %{_texmfdistdir}/scripts/context/ruby/ctxtools.rb \
+  %{_texmfdistdir}/scripts/context/ruby/imgtopdf.rb \
+  %{_texmfdistdir}/scripts/context/ruby/pdftools.rb \
+  %{_texmfdistdir}/scripts/context/ruby/pstopdf.rb \
+  %{_texmfdistdir}/scripts/context/ruby/rlxtools.rb \
+  %{_texmfdistdir}/scripts/context/ruby/texexec.rb \
+  %{_texmfdistdir}/scripts/context/ruby/texmfstart.rb \
+  %{_texmfdistdir}/scripts/context/ruby/textools.rb \
+  %{_texmfdistdir}/scripts/context/ruby/tmftools.rb \
+  %{_texmfdistdir}/scripts/context/ruby/xmltools.rb \
+  %{_texmfdistdir}/scripts/context/stubs/unix/mtxrun \
+  %{_texmfdistdir}/scripts/context/stubs/win64/mtxrun.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 # Strip executable bit from non-scripts
 for txt in %{_texmfdistdir}/scripts/context/stubs/win64/mtxrun.dll
 do
@@ -18210,6 +18234,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in 
%{_texmfdistdir}/tex/context/third/cyrillicnumbers/cyrillicnumbers.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-context-degrade-%{texlive_version}.%{texlive_noarch}.svn23167-%{release}-zypper
@@ -18304,6 +18340,23 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/context/lua/third/rst/mtx-t-rst.lua \
+  %{_texmfdistdir}/tex/context/third/rst/rst_context.lua \
+  %{_texmfdistdir}/tex/context/third/rst/rst_directives.lua \
+  %{_texmfdistdir}/tex/context/third/rst/rst_helpers.lua \
+  %{_texmfdistdir}/tex/context/third/rst/rst_parser.lua \
+  %{_texmfdistdir}/tex/context/third/rst/rst_setups.lua
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-context-ruby-%{texlive_version}.%{texlive_noarch}.svn28434-%{release}-zypper
@@ -18340,6 +18393,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 

commit texlive-specs-a for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-a for openSUSE:Factory 
checked in at 2018-02-07 18:15:02

Comparing /work/SRC/openSUSE:Factory/texlive-specs-a (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-a.new (New)


Package is "texlive-specs-a"

Wed Feb  7 18:15:02 2018 rev:34 rq:573351 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-a/texlive-specs-a.changes  
2018-01-13 21:37:18.402991099 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-a.new/texlive-specs-a.changes 
2018-02-07 18:15:04.666218072 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-a.spec ++
--- /var/tmp/diff_new_pack.9YNF7E/_old  2018-02-07 18:15:13.121821854 +0100
+++ /var/tmp/diff_new_pack.9YNF7E/_new  2018-02-07 18:15:13.153820354 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -22624,6 +22624,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:220} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:221} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/latex/aramaic-serto/serto.py
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 # Move font files
 mkdir -p %{buildroot}%{_datadir}/fonts/texlive-aramaic-serto
 for font in 
%{buildroot}/%{_texmfdistdir}/fonts/type1/public/aramaic-serto/*.{pf[ab],[ot]tf}




commit texlive-specs-d for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-d for openSUSE:Factory 
checked in at 2018-02-07 18:15:22

Comparing /work/SRC/openSUSE:Factory/texlive-specs-d (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-d.new (New)


Package is "texlive-specs-d"

Wed Feb  7 18:15:22 2018 rev:32 rq:573354 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-d/texlive-specs-d.changes  
2018-01-13 21:37:44.46239 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-d.new/texlive-specs-d.changes 
2018-02-07 18:15:26.513194355 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-d.spec ++
--- /var/tmp/diff_new_pack.Rns0g6/_old  2018-02-07 18:15:33.316875546 +0100
+++ /var/tmp/diff_new_pack.Rns0g6/_new  2018-02-07 18:15:33.336874609 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -20973,6 +20973,19 @@
 %endif
 tar --use-compress-program=xz -xf %{S:110} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:111} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/bundledoc/arlatex \
+  %{_texmfdistdir}/scripts/bundledoc/bundledoc
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-burmese-fonts-%{texlive_version}.%{texlive_noarch}.svn25185-%{release}-zypper
@@ -21160,6 +21173,18 @@
 %endif
 tar --use-compress-program=xz -xf %{S:152} -C 
%{buildroot}%{_datadir}/texlive
 tar --use-compress-program=xz -xf %{S:153} -C 
%{buildroot}%{_datadir}/texlive
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/scripts/cachepic/cachepic.tlu
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-caladea-fonts-%{texlive_version}.%{texlive_noarch}.svn34991-%{release}-zypper




commit texlive-specs-b for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-b for openSUSE:Factory 
checked in at 2018-02-07 18:15:09

Comparing /work/SRC/openSUSE:Factory/texlive-specs-b (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-b.new (New)


Package is "texlive-specs-b"

Wed Feb  7 18:15:09 2018 rev:33 rq:573352 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-b/texlive-specs-b.changes  
2018-01-26 13:57:20.991281887 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-b.new/texlive-specs-b.changes 
2018-02-07 18:15:14.105775747 +0100
@@ -1,0 +2,6 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---



Other differences:
--
++ texlive-specs-b.spec ++
--- /var/tmp/diff_new_pack.g5h86b/_old  2018-02-07 18:15:19.737511852 +0100
+++ /var/tmp/diff_new_pack.g5h86b/_new  2018-02-07 18:15:19.749511290 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   135
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 




commit texlive-specs-c for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package texlive-specs-c for openSUSE:Factory 
checked in at 2018-02-07 18:15:15

Comparing /work/SRC/openSUSE:Factory/texlive-specs-c (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-c.new (New)


Package is "texlive-specs-c"

Wed Feb  7 18:15:15 2018 rev:33 rq:573353 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-c/texlive-specs-c.changes  
2018-01-13 21:37:37.258112616 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-c.new/texlive-specs-c.changes 
2018-02-07 18:15:20.669468182 +0100
@@ -1,0 +2,16 @@
+Tue Feb  6 11:20:16 UTC 2018 - wer...@suse.de
+
+- Avoid broken scripts due former env correction, only repair
+  those scripts where the shebang exists 
+
+---
+Wed Jan 24 08:46:16 UTC 2018 - wer...@suse.de
+
+- Switch over to python 3 (boo#1077170)
+
+---
+Thu Jan 11 12:48:35 UTC 2018 - wer...@suse.de
+
+- Avoid nasty warning about missing batchmode in ENVironment 
+
+---



Other differences:
--
++ texlive-specs-c.spec ++
--- /var/tmp/diff_new_pack.jhdNnI/_old  2018-02-07 18:15:25.569238587 +0100
+++ /var/tmp/diff_new_pack.jhdNnI/_new  2018-02-07 18:15:25.581238025 +0100
@@ -21,7 +21,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   133
+%define texlive_noarch   136
 
 #!BuildIgnore:  texlive
 
@@ -14955,6 +14955,18 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
+# Avoid /usr/bin/env 
+for scr in %{_texmfdistdir}/doc/bibtex/bibhtml/bibhtml
+do
+   test -e %{buildroot}/$scr || continue
+   ed %{buildroot}/${scr} <<-'EOF'
+   1
+   s@/env[[:blank:]]\+@/@
+   .
+   w
+   q
+   EOF
+done
 %if %{with zypper_posttrans}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-biblatex-%{texlive_version}.%{texlive_noarch}.3.7svn42680-%{release}-zypper




commit Mesa for openSUSE:Factory

2018-02-07 Thread root
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2018-02-07 09:33:25

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


Package is "Mesa"

Wed Feb  7 09:33:25 2018 rev:314 rq:573596 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/Mesa/Mesa-drivers.changes2018-02-03 
15:40:38.686577362 +0100
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa-drivers.changes   2018-02-07 
09:33:26.685495155 +0100
@@ -1,0 +2,6 @@
+Tue Feb  6 08:42:03 UTC 2018 - m...@suse.com
+
+- u_mesa-st-shader_cache-restore-num_tgsi_tokens-when-loading.patch
+  * Fix crash when loading shader. (bnc#1079465)
+
+---
Mesa.changes: same change

New:

  u_mesa-st-shader_cache-restore-num_tgsi_tokens-when-loading.patch



Other differences:
--
++ Mesa-drivers.spec ++
--- /var/tmp/diff_new_pack.1pghJB/_old  2018-02-07 09:33:28.469411864 +0100
+++ /var/tmp/diff_new_pack.1pghJB/_new  2018-02-07 09:33:28.473411677 +0100
@@ -141,6 +141,7 @@
 Patch32:archlinux_glvnd-fix-gl-dot-pc.patch
 # Upstream
 Patch43:u_mesa-python3-only.patch
+Patch44:
u_mesa-st-shader_cache-restore-num_tgsi_tokens-when-loading.patch
 Patch45:n_Disable-AMDGPU-GFX9-Vega-on-LLVM-lessthan-6.0.0.patch
 
 BuildRequires:  autoconf >= 2.60
@@ -749,6 +750,7 @@
 %endif
 
 %patch43 -p1
+%patch44 -p1
 %patch45 -p1
 
 # Remove requires to libglvnd/libglvnd-devel from baselibs.conf when

Mesa.spec: same change


++ u_mesa-st-shader_cache-restore-num_tgsi_tokens-when-loading.patch ++
Git-commit: 041b18cf23a0acf7b0eddf63cd7a2a10192432a1
Author: Timothy Arceri 
Subject: st/shader_cache: restore num_tgsi_tokens when loading from cache
References: bnc#1079465 fdo#104762
Patch-Mainline: Upstream
Signed-off-by: Michal Srb 

Without this we will fail to correctly serialise programs when
using glGetProgramBinary() if the program was retrieved from
the disk cache rather than freshly compiled.

Fixes: c69b0dd6817b "st/glsl_to_tgsi: store num_tgsi_tokens in st_*_program"

Reviewed-by: Gert Wollny 
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=104762
---
 src/mesa/state_tracker/st_shader_cache.c | 25 -
 1 file changed, 16 insertions(+), 9 deletions(-)

diff --git a/src/mesa/state_tracker/st_shader_cache.c 
b/src/mesa/state_tracker/st_shader_cache.c
index b1b9d275f8..12d73965bf 100644
--- a/src/mesa/state_tracker/st_shader_cache.c
+++ b/src/mesa/state_tracker/st_shader_cache.c
@@ -142,10 +142,11 @@ read_stream_out_from_cache(struct blob_reader 
*blob_reader,
 
 static void
 read_tgsi_from_cache(struct blob_reader *blob_reader,
- const struct tgsi_token **tokens)
+ const struct tgsi_token **tokens,
+ unsigned *num_tokens)
 {
-   uint32_t num_tokens  = blob_read_uint32(blob_reader);
-   unsigned tokens_size = num_tokens * sizeof(struct tgsi_token);
+   *num_tokens  = blob_read_uint32(blob_reader);
+   unsigned tokens_size = *num_tokens * sizeof(struct tgsi_token);
*tokens = (const struct tgsi_token*) MALLOC(tokens_size);
blob_copy_bytes(blob_reader, (uint8_t *) *tokens, tokens_size);
 }
@@ -175,7 +176,8 @@ st_deserialise_tgsi_program(struct gl_context *ctx,
   sizeof(stvp->result_to_output));
 
   read_stream_out_from_cache(_reader, >tgsi);
-  read_tgsi_from_cache(_reader, >tgsi.tokens);
+  read_tgsi_from_cache(_reader, >tgsi.tokens,
+   >num_tgsi_tokens);
 
   if (st->vp == stvp)
  st->dirty |= ST_NEW_VERTEX_PROGRAM(st, stvp);
@@ -189,7 +191,8 @@ st_deserialise_tgsi_program(struct gl_context *ctx,
 >variants, >tgsi);
 
   read_stream_out_from_cache(_reader, >tgsi);
-  read_tgsi_from_cache(_reader, >tgsi.tokens);
+  read_tgsi_from_cache(_reader, >tgsi.tokens,
+   >num_tgsi_tokens);
 
   if (st->tcp == sttcp)
  st->dirty |= sttcp->affected_states;
@@ -203,7 +206,8 @@ st_deserialise_tgsi_program(struct gl_context *ctx,
 >variants, >tgsi);
 
   read_stream_out_from_cache(_reader, >tgsi);
-  read_tgsi_from_cache(_reader, >tgsi.tokens);
+  read_tgsi_from_cache(_reader, >tgsi.tokens,
+   >num_tgsi_tokens);
 
   if (st->tep == sttep)
  st->dirty |= sttep->affected_states;
@@ -217,7 +221,8 @@ st_deserialise_tgsi_program(struct gl_context *ctx,
 >tgsi);
 
   read_stream_out_from_cache(_reader, >tgsi);
-