commit gtk2 for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gtk2 for openSUSE:Factory checked in 
at 2017-07-17 08:59:43

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


Package is "gtk2"

Mon Jul 17 08:59:43 2017 rev:159 rq:510088 version:2.24.31

Changes:

--- /work/SRC/openSUSE:Factory/gtk2/gtk2.changes2016-09-17 
14:36:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.gtk2.new/gtk2.changes   2017-07-17 
08:59:44.380420774 +0200
@@ -1,0 +2,8 @@
+Wed Jun 14 08:01:41 UTC 2017 - o...@aepfle.de
+
+- Add gtk2-updateiconcache_sort.patch: have gtk-update-icon-cache
+  sort directory entries when creating caches. The build system
+  uses this to produce an embedded cache for the stock icons. With
+  this, we can have reproducible builds.
+
+---

New:

  gtk2-updateiconcache_sort.patch



Other differences:
--
++ gtk2.spec ++
--- /var/tmp/diff_new_pack.kswpSn/_old  2017-07-17 08:59:45.644242821 +0200
+++ /var/tmp/diff_new_pack.kswpSn/_new  2017-07-17 08:59:45.648242258 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gtk2
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -35,6 +35,8 @@
 Source5:macros.gtk2
 # PATCH-FIX-UPSTREAM gtk2-window-dragging.patch bgo#611313 -- Taken from 
Fedora, to support window dragging from menubars/toolbars
 Patch0: gtk2-window-dragging.patch
+# PATCH-FEATURE-OPENSUSE gtk2-updateiconcache_sort.patch o...@opensuse.org -- 
Have gtp-update-icon-cache sort the file list before producing a cache
+Patch1: gtk2-updateiconcache_sort.patch
 # PATCH-FIX-OPENSUSE gtk2-GTK_PATH64.patch sbra...@novell.com - 64-bit dual 
install. Use GTK_PATH64 environment variable instead of GTK_PATH
 Patch8: gtk2-GTK_PATH64.patch
 # PATCH-FEATURE-UPSTREAM 
bugzilla-129753-gtk+-2.8.9-localize-font-style-name.diff bnc129753 bgo319484 
mfab...@novell.com - Translate the font styles in the GUI
@@ -324,6 +326,7 @@
 done
 gnome-patch-translation-prepare
 %patch0 -p1
+%patch1 -p1
 %if "%{_lib}" == "lib64"
 cp -a %{SOURCE2} .
 # WARNING: This patch does not patch not installed demos and tests.

++ gtk2-updateiconcache_sort.patch ++
--- a/gtk/updateiconcache.c
+++ b/gtk/updateiconcache.c
@@ -37,6 +37,7 @@
 #include 
 #endif
 
+#include 
 #include 
 #include 
 #undef GDK_PIXBUF_DISABLE_DEPRECATED
@@ -594,6 +595,50 @@ replace_backslashes_with_slashes (gchar
   path[i] = '/';
 }
 
+struct sortdir {
+  struct dirent **nl;
+  int cur;
+  int max;
+};
+
+static const gchar *sort_item(struct sortdir *sd)
+{
+  while (sd->cur >= 0) {
+if (strcmp (sd->nl[sd->cur]->d_name, "..") == 0)
+{
+  sd->cur--;
+  continue;
+}
+if (strcmp (sd->nl[sd->cur]->d_name, ".") == 0)
+{
+  sd->cur--;
+  continue;
+}
+return sd->nl[sd->cur--]->d_name;
+  }
+  return NULL;
+}
+
+static gboolean sort_open(char *path, struct sortdir *sd)
+{
+  int n;
+
+  n = scandir(path, &sd->nl, NULL, alphasort);
+  if (n <= 0)
+return FALSE;
+  sd->max = sd->cur = n - 1;
+  return TRUE;
+}
+
+static void sort_close(struct sortdir *sd)
+{
+  int i;
+
+  for (i = sd->max; i >= 0; i--)
+free(sd->nl[i]);
+  free(sd->nl);
+}
+
 static GList *
 scan_directory (const gchar *base_path, 
const gchar *subdir, 
@@ -602,7 +647,7 @@ scan_directory (const gchar *base_path,
gint depth)
 {
   GHashTable *dir_hash;
-  GDir *dir;
+  struct sortdir sortdir;
   const gchar *name;
   gchar *dir_path;
   gboolean dir_added = FALSE;
@@ -610,15 +655,12 @@ scan_directory (const gchar *base_path,
   
   dir_path = g_build_path ("/", base_path, subdir, NULL);
 
-  /* FIXME: Use the gerror */
-  dir = g_dir_open (dir_path, 0, NULL);
-  
-  if (!dir)
+  if (sort_open(dir_path, &sortdir) == FALSE)
 return directories;
   
   dir_hash = g_hash_table_new (g_str_hash, g_str_equal);
 
-  while ((name = g_dir_read_name (dir)))
+  while ((name = sort_item(&sortdir)))
 {
   gchar *path;
   gboolean retval;
@@ -698,7 +740,7 @@ scan_directory (const gchar *base_path,
   g_free (path);
 }
 
-  g_dir_close (dir);
+  sort_close(&sortdir);
 
   /* Move dir into the big file hash */
   g_hash_table_foreach_remove (dir_hash, foreach_remove_func, files);



commit gnome-settings-daemon for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gnome-settings-daemon for 
openSUSE:Factory checked in at 2017-07-17 08:59:36

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


Package is "gnome-settings-daemon"

Mon Jul 17 08:59:36 2017 rev:135 rq:510031 version:3.24.2

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-settings-daemon/gnome-settings-daemon.changes  
2017-05-31 12:14:47.430339679 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-settings-daemon.new/gnome-settings-daemon.changes
 2017-07-17 08:59:38.009317859 +0200
@@ -1,0 +2,9 @@
+Thu Jul 13 08:06:33 UTC 2017 - fezh...@suse.com
+
+- Update SLE patches:
+  + gnome-settings-daemon-bnc873545-hide-warnings.patch
+  + gnome-settings-daemon-bring-back-updates-plugin.patch
+  + gnome-settings-daemon-revert-libinput-mandatory.patch
+-  Cleanup specfile.
+
+---
@@ -206 +215 @@
-- Update gvc to fix a crash setting a headset.
+- Update gvc to fix a crash setting a headset (bsc#1045780).



Other differences:
--
++ gnome-settings-daemon.spec ++
--- /var/tmp/diff_new_pack.1XAOAc/_old  2017-07-17 08:59:38.745214241 +0200
+++ /var/tmp/diff_new_pack.1XAOAc/_new  2017-07-17 08:59:38.749213678 +0200
@@ -38,19 +38,19 @@
 Url:http://www.gnome.org
 Source: 
http://download.gnome.org/sources/gnome-settings-daemon/3.24/%{name}-%{version}.tar.xz
 # PATCH-FEATURE-SLE gnome-settings-daemon-revert-libinput-mandatory.patch 
fcro...@suse.com -- ensure libinput is not mandatory
-Patch20:gnome-settings-daemon-revert-libinput-mandatory.patch
+Patch0: gnome-settings-daemon-revert-libinput-mandatory.patch
 # PATCH-FEATURE-SLE gnome-settings-daemon-notify-idle-resumed.patch bnc#439018 
bnc#708182 bgo#575467 h...@suse.com -- notify user about auto suspend when 
returning from sleep
-Patch21:gnome-settings-daemon-notify-idle-resumed.patch
+Patch1: gnome-settings-daemon-notify-idle-resumed.patch
 # PATCH-FIX-SLE gnome-settings-daemon-bnc873545-hide-warnings.patch bnc#873545 
fezh...@suse.com -- hide the warnings when g-s-d cannot find colord running, 
which is expected on SLES
-Patch22:gnome-settings-daemon-bnc873545-hide-warnings.patch
+Patch2: gnome-settings-daemon-bnc873545-hide-warnings.patch
 # PATCH-FIX-SLE gnome-settings-daemon-sle-configure-timeout-blank.patch 
bnc#869685 bgo#710904 cxi...@suse.com -- monitor off timeout is too short, 
extends it to 5 min
-Patch24:gnome-settings-daemon-sle-configure-timeout-blank.patch
+Patch3: gnome-settings-daemon-sle-configure-timeout-blank.patch
 # PATCH-FIX-OPENSUSE gnome-settings-daemon-initial-keyboard.patch bsc#979051 
boo#1009515 feder...@suse.com -- Deal with the default keyboard being set from 
xkb instead of GNOME
-Patch29:gnome-settings-daemon-initial-keyboard.patch
+Patch4: gnome-settings-daemon-initial-keyboard.patch
 # PATCH-FIX-OPENSUSE gnome-settings-daemon-bring-back-updates-plugin.patch 
bsc#991024 sck...@suse.com -- Add the updates plugin back
-Patch31:gnome-settings-daemon-bring-back-updates-plugin.patch
+Patch5: gnome-settings-daemon-bring-back-updates-plugin.patch
 # PATCH-FEATURE-OPENSUSE gnome-settings-daemon-more-power-button-actions.patch 
bsc#996342 fezh...@suse.com -- Bring back the "shutdown" and "interactive" 
power button actions.
-Patch32:gnome-settings-daemon-more-power-button-actions.patch
+Patch6: gnome-settings-daemon-more-power-button-actions.patch
 BuildRequires:  cups-devel
 BuildRequires:  fdupes
 BuildRequires:  gtk-doc
@@ -154,15 +154,15 @@
 %if !0%{?is_opensuse}
 translation-update-upstream
 gnome-patch-translation-prepare
-%patch20 -p1
-%patch21 -p1
-%patch22 -p1
-%patch24 -p0
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p0
 %endif
-%patch29 -p1
+%patch4 -p1
 %if 0%{?suse_version} == 1315
-%patch31 -p1
-%patch32 -p1
+%patch5 -p1
+%patch6 -p1
 %endif
 
 %build

++ gnome-settings-daemon-bnc873545-hide-warnings.patch ++
--- /var/tmp/diff_new_pack.1XAOAc/_old  2017-07-17 08:59:38.777209736 +0200
+++ /var/tmp/diff_new_pack.1XAOAc/_new  2017-07-17 08:59:38.777209736 +0200
@@ -33,7 +33,7 @@
 +/* hide this warning for SLES
  g_warning ("There is no colord server available");
 +*/
- goto out;
+ return;
  }
  
 -- 

++ gnome-settings-daemon-bring-back-updates-plugin.patch ++
--- /var/tmp/diff_new_pack.1XAOAc/_old  2017-07-17 08:59:38.793207484 +0200
+++ /var/tmp/diff_new_pack.1XAOAc/_new  2017-07-17 08:59:38.793207484 +0200
@@ -4465,9 +4465,9 @@
 +plugins/

commit evince for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package evince for openSUSE:Factory checked 
in at 2017-07-17 08:59:52

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


Package is "evince"

Mon Jul 17 08:59:52 2017 rev:125 rq:510207 version:3.24.0

Changes:

--- /work/SRC/openSUSE:Factory/evince/evince.changes2017-03-22 
23:07:56.343683740 +0100
+++ /work/SRC/openSUSE:Factory/.evince.new/evince.changes   2017-07-17 
08:59:54.083054587 +0200
@@ -1,0 +2,7 @@
+Thu Jul 13 07:55:12 UTC 2017 - adrien.pla...@suse.com
+
+- Add evince-comics-remove-tar-commands-support.patch to avoid code
+  execution in the comic book backend's .tar support. (bnc#1046856,
+  bgo#784630, CVE-2017-183).
+
+---

New:

  evince-comics-remove-tar-commands-support.patch



Other differences:
--
++ evince.spec ++
--- /var/tmp/diff_new_pack.BVpDx8/_old  2017-07-17 08:59:54.694968426 +0200
+++ /var/tmp/diff_new_pack.BVpDx8/_new  2017-07-17 08:59:54.694968426 +0200
@@ -26,12 +26,16 @@
 Group:  Productivity/Office/Other
 Url:http://www.gnome.org/projects/evince/
 Source: 
http://download.gnome.org/sources/evince/3.24/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM evince-comics-remove-tar-commands-support.patch 
bnc#1046856 bgo#784630 CVE-2017-183 apla...@suse.com -- Avoid code 
execution in the comic book backend's .tar support.
+Patch1: evince-comics-remove-tar-commands-support.patch
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  ghostscript-fonts-std
 BuildRequires:  ghostscript-x11
 BuildRequires:  intltool
 BuildRequires:  libtiff-devel
+# Needed by Patch1
+BuildRequires:  libtool
 BuildRequires:  texlive-devel
 %if !0%{?is_opensuse}
 BuildRequires:  translation-update-upstream
@@ -213,8 +217,11 @@
 %if !0%{?is_opensuse}
 translation-update-upstream
 %endif
+%patch1 -p1
 
 %build
+# Needed by Patch1 as it changes configure.ac.
+autoreconf -f -i
 # on openSUSE, we share the browser plugins between browsers; do not use 
mozilla's default.
 export BROWSER_PLUGIN_DIR=%{_libdir}/browser-plugins
 %configure --disable-static --with-pic\

++ evince-comics-remove-tar-commands-support.patch ++
>From 717df38fd8509bf883b70d680c9b1b3cf36732ee Mon Sep 17 00:00:00 2001
From: Bastien Nocera 
Date: Thu, 6 Jul 2017 20:02:00 +0200
Subject: [PATCH] comics: Remove support for tar and tar-like commands

When handling tar files, or using a command with tar-compatible syntax,
to open comic-book archives, both the archive name (the name of the
comics file) and the filename (the name of a page within the archive)
are quoted to not be interpreted by the shell.

But the filename is completely with the attacker's control and can start
with "--" which leads to tar interpreting it as a command line flag.

This can be exploited by creating a CBT file (a tar archive with the
.cbt suffix) with an embedded file named something like this:
"--checkpoint-action=exec=bash -c 'touch ~/hacked;'.jpg"

CBT files are infinitely rare (CBZ is usually used for DRM-free
commercial releases, CBR for those from more dubious provenance), so
removing support is the easiest way to avoid the bug triggering. All
this code was rewritten in the development release for GNOME 3.26 to not
shell out to any command, closing off this particular attack vector.

This also removes the ability to use libarchive's bsdtar-compatible
binary for CBZ (ZIP), CB7 (7zip), and CBR (RAR) formats. The first two
are already supported by unzip and 7zip respectively. libarchive's RAR
support is limited, so unrar is a requirement anyway.

Discovered by Felix Wilhelm from the Google Security Team.

https://bugzilla.gnome.org/show_bug.cgi?id=784630
---
 backend/comics/comics-document.c | 40 +---
 configure.ac |  2 +-
 2 files changed, 2 insertions(+), 40 deletions(-)

diff --git a/backend/comics/comics-document.c b/backend/comics/comics-document.c
index 4c747310..641d7856 100644
--- a/backend/comics/comics-document.c
+++ b/backend/comics/comics-document.c
@@ -56,8 +56,7 @@ typedef enum
RARLABS,
GNAUNRAR,
UNZIP,
-   P7ZIP,
-   TAR
+   P7ZIP
 } ComicBookDecompressType;
 
 typedef struct _ComicsDocumentClass ComicsDocumentClass;
@@ -117,9 +116,6 @@ static const ComicBookDecompressCommand command_usage_def[] 
= {
 
 /* 7zip */
{NULL   , "%s l -- %s" , "%s x -y %s -o%s", FALSE, 
OFFSET_7Z},
-
-/* tar */
-   {"%s -xOf"  , "%s -tf %s"  , NULL , FALSE, 
NO_OFFSET}
 };
 
 static GSList*get_supported_image_extensions (

commit libzypp-plugin-appdata for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package libzypp-plugin-appdata for 
openSUSE:Factory checked in at 2017-07-17 08:59:58

Comparing /work/SRC/openSUSE:Factory/libzypp-plugin-appdata (Old)
 and  /work/SRC/openSUSE:Factory/.libzypp-plugin-appdata.new (New)


Package is "libzypp-plugin-appdata"

Mon Jul 17 08:59:58 2017 rev:13 rq:510243 version:1.0.1+git.20170629

Changes:

--- 
/work/SRC/openSUSE:Factory/libzypp-plugin-appdata/libzypp-plugin-appdata.changes
2017-06-30 18:39:30.906157832 +0200
+++ 
/work/SRC/openSUSE:Factory/.libzypp-plugin-appdata.new/libzypp-plugin-appdata.changes
   2017-07-17 09:00:02.713839317 +0200
@@ -1,0 +2,7 @@
+Fri Jul 14 08:49:26 UTC 2017 - dims...@opensuse.org
+
+- Bump version to 1.0.1+git.20170629: We were originally at 1.0.1
+  before switching to a git based source service, then 'downgraded'
+  to 1.0+git, which was a mistake.
+
+---

Old:

  openSUSE-appstream-1.0+git.20150408.tar.xz

New:

  openSUSE-appstream-1.0.1+git.20170629.tar.xz



Other differences:
--
++ libzypp-plugin-appdata.spec ++
--- /var/tmp/diff_new_pack.R8StZ4/_old  2017-07-17 09:00:05.105502554 +0200
+++ /var/tmp/diff_new_pack.R8StZ4/_new  2017-07-17 09:00:05.109501991 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libzypp-plugin-appdata
-Version:1.0+git.20150408
+Version:1.0.1+git.20170629
 Release:0
 Summary:Extend libzypp to handle AppStream metadata
 License:MIT AND CC0-1.0

++ _service ++
--- /var/tmp/diff_new_pack.R8StZ4/_old  2017-07-17 09:00:05.153495796 +0200
+++ /var/tmp/diff_new_pack.R8StZ4/_new  2017-07-17 09:00:05.153495796 +0200
@@ -2,7 +2,7 @@
   
 https://github.com/DimStar77/openSUSE-appstream.git
 git
-1.0+git.%cd
+1.0.1+git.%cd
   
   
 *.tar

++ openSUSE-appstream-1.0+git.20150408.tar.xz -> 
openSUSE-appstream-1.0.1+git.20170629.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openSUSE-appstream-1.0+git.20150408/LICENSE 
new/openSUSE-appstream-1.0.1+git.20170629/LICENSE
--- old/openSUSE-appstream-1.0+git.20150408/LICENSE 2015-04-08 
12:23:29.0 +0200
+++ new/openSUSE-appstream-1.0.1+git.20170629/LICENSE   1970-01-01 
01:00:00.0 +0100
@@ -1,339 +0,0 @@
-GNU GENERAL PUBLIC LICENSE
-   Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
- 51 Franklin Street, 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.
-
-Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-tha

commit samba for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package samba for openSUSE:Factory checked 
in at 2017-07-17 09:00:05

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


Package is "samba"

Mon Jul 17 09:00:05 2017 rev:217 rq:510316 version:4.6.5+git.32.af7a173b7a1

Changes:

--- /work/SRC/openSUSE:Factory/samba/samba.changes  2017-06-29 
15:12:38.546028894 +0200
+++ /work/SRC/openSUSE:Factory/.samba.new/samba.changes 2017-07-17 
09:00:06.789265468 +0200
@@ -1,0 +2,11 @@
+Thu Jul 13 21:13:21 UTC 2017 - dmul...@suse.com
+
+- Fix ctdb logs to /var/log/log.ctdb instead of /var/log/ctdb; (bsc#1048339).
+
+---
+Wed Jul 12 22:30:48 UTC 2017 - dd...@suse.com
+
+- Fix inconsistent ctdb socket path; (bsc#1048352).
+- Fix non-admin cephx authentication; (bsc#1048387).
+
+---

Old:

  samba-4.6.5+git.27.6afd48b1083.tar.bz2
  vendor-files-git.b446743.tar.bz2

New:

  samba-4.6.5+git.32.af7a173b7a1.tar.bz2
  vendor-files-git.f8c2b1c.tar.bz2



Other differences:
--
++ samba.spec ++
--- /var/tmp/diff_new_pack.JJVqgs/_old  2017-07-17 09:00:10.832696124 +0200
+++ /var/tmp/diff_new_pack.JJVqgs/_new  2017-07-17 09:00:10.836695561 +0200
@@ -26,7 +26,7 @@
 %define build_ceph 1
 %endif
 %endif
-%definevendor_files_git_vers git.b446743
+%definevendor_files_git_vers git.f8c2b1c
 
 Name:   samba
 BuildRequires:  autoconf
@@ -147,7 +147,7 @@
 %define BRANCH %{version}
 %global with_mitkrb5 1
 %global with_dc 0
-Version:4.6.5+git.27.6afd48b1083
+Version:4.6.5+git.32.af7a173b7a1
 Release:0
 Url:https://www.samba.org/
 Obsoletes:  samba-32bit < %{version}
@@ -1106,6 +1106,7 @@
 %endif
--enable-fhs \
--with-cluster-support \
+   --with-socketpath=%{_localstatedir}/lib/ctdb/ctdb.socket \
 %if 0%{?build_ceph}
--enable-ceph-reclock \
 %endif
@@ -1626,6 +1627,9 @@
 %if 0%{?suse_version} > 1220
 %service_add_pre ctdb.service
 %endif
+if [ -e %{_sysconfdir}/sysconfig/ctdb ] ; then
+   sed -i s/CTDB_LOGFILE=/CTDB_LOGGING=file:/g 
%{_sysconfdir}/sysconfig/ctdb
+fi
 
 %preun -n ctdb
 %if 0%{?suse_version} > 1220

++ samba-4.6.5+git.27.6afd48b1083.tar.bz2 -> 
samba-4.6.5+git.32.af7a173b7a1.tar.bz2 ++
/work/SRC/openSUSE:Factory/samba/samba-4.6.5+git.27.6afd48b1083.tar.bz2 
/work/SRC/openSUSE:Factory/.samba.new/samba-4.6.5+git.32.af7a173b7a1.tar.bz2 
differ: char 11, line 1

++ vendor-files-git.b446743.tar.bz2 -> vendor-files-git.f8c2b1c.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor-files-git.b446743/config/sysconfig.ctdb 
new/vendor-files-git.f8c2b1c/config/sysconfig.ctdb
--- old/vendor-files-git.b446743/config/sysconfig.ctdb  2017-05-22 
15:15:17.0 +0200
+++ new/vendor-files-git.f8c2b1c/config/sysconfig.ctdb  2017-07-14 
14:54:18.0 +0200
@@ -302,7 +302,7 @@
 ## Default: /var/log/ctdb/log.ctdb
 # where to log messages
 # the default is /var/log/ctdb/log.ctdb
-CTDB_LOGFILE=/var/log/ctdb/log.ctdb
+CTDB_LOGGING=file:/var/log/ctdb/log.ctdb
 
 ## Description: Ctdb debug level
 ## Type:integer(0:10)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor-files-git.b446743/init/nmb-1010 
new/vendor-files-git.f8c2b1c/init/nmb-1010
--- old/vendor-files-git.b446743/init/nmb-1010  2017-07-17 09:00:11.000672472 
+0200
+++ new/vendor-files-git.f8c2b1c/init/nmb-1010  2017-07-14 14:54:18.0 
+0200
@@ -1 +1,133 @@
-symbolic link to nmb
+#! /bin/sh
+# Copyright (c) 2002-2004 SuSE Linux AG, Nuernberg, Germany.
+# All rights reserved.
+#
+# Author: Lars Mueller 
+#
+# /etc/init.d/nmb
+#   and its symbolic link
+# /usr/sbin/rcnmb
+#
+#  This program is free software: you can redistribute it and/or modify
+#  it under the terms of the GNU General Public License as published by
+#  the Free Software Foundation, either version 3 of the License, or
+#  (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program.  If not, see .
+#
+### BEGIN INIT INFO
+# Provides:   nmb
+# Required-Start: $network $syslog
+# Should-Start:   $null
+# Required-Stop:  $network 

commit libgphoto2 for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package libgphoto2 for openSUSE:Factory 
checked in at 2017-07-17 09:00:12

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


Package is "libgphoto2"

Mon Jul 17 09:00:12 2017 rev:113 rq:510594 version:2.5.14

Changes:

--- /work/SRC/openSUSE:Factory/libgphoto2/libgphoto2.changes2017-06-10 
17:51:16.097562845 +0200
+++ /work/SRC/openSUSE:Factory/.libgphoto2.new/libgphoto2.changes   
2017-07-17 09:00:13.532315997 +0200
@@ -1,0 +2,6 @@
+Sun Jul 16 13:34:04 UTC 2017 - meiss...@suse.com
+
+- libgphoto2-fix-fuji.patch: check before using a ptp property that
+  is only available in some updated Fuji cameras (bsc#1048853)
+
+---

New:

  libgphoto2-fix-fuji.patch



Other differences:
--
++ libgphoto2.spec ++
--- /var/tmp/diff_new_pack.ppzPBz/_old  2017-07-17 09:00:15.292068211 +0200
+++ /var/tmp/diff_new_pack.ppzPBz/_new  2017-07-17 09:00:15.292068211 +0200
@@ -53,6 +53,7 @@
 Release:0
 Source0:
https://downloads.sourceforge.net/project/gphoto/libgphoto/%{version}/%{name}-%{version}.tar.bz2
 Source1:
https://downloads.sourceforge.net/project/gphoto/libgphoto/%{version}//%{name}-%{version}.tar.bz2.asc
+Patch0: libgphoto2-fix-fuji.patch
 Source2:%name.keyring
 Source3:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -134,6 +135,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 (cd doc; tar xaf libgphoto2-api.html.tar.gz)
 
 %build


++ libgphoto2-fix-fuji.patch ++
commit 472a9461b457b4d08ecf10a93bb7f1efdc2124c0
Author: Marcus Meissner 
Date:   Mon Jun 19 20:13:14 2017 +0200

ignore missing 0xd207 property on Fuji XT-2 without firmware update

diff --git a/camlibs/ptp2/config.c b/camlibs/ptp2/config.c
index 5a2a637f1..858f6bdbe 100644
--- a/camlibs/ptp2/config.c
+++ b/camlibs/ptp2/config.c
@@ -482,6 +482,10 @@ camera_prepare_capture (Camera *camera, GPContext *context)
{
PTPPropertyValue propval;
 
+   /* without the firmware update ... not an error... */
+   if (!have_prop (camera, PTP_VENDOR_FUJI, 0xd207))
+   return GP_OK;
+
propval.u16 = 0x0002;
C_PTP (ptp_setdevicepropvalue (params, 0xd207, 
&propval, PTP_DTC_UINT16));
return GP_OK;




commit gnome-shell for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2017-07-17 09:00:26

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


Package is "gnome-shell"

Mon Jul 17 09:00:26 2017 rev:130 rq:510611 version:3.24.2

Changes:

--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2017-06-28 
10:35:30.15003 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new/gnome-shell.changes 
2017-07-17 09:00:27.498349467 +0200
@@ -1,0 +2,22 @@
+Wed Jul 12 09:38:13 UTC 2017 - zai...@opensuse.org
+
+- Add gnome-shell-emulate-click-action.patch: Fix clicks in
+  gnome-shell shutdown dialog (bgo#781738, boo#1036681).
+
+---
+Tue Jul 11 11:24:48 UTC 2017 - alarr...@suse.com
+
+- Add
+  gnome-shell-1036494-Consistently-handle-createExtensionObject-errors.patch,
+  gnome-shell-1036494-Catch-import-errors.patch and
+  gnome-shell-1036494-Consistently-handle-initExtension-errors.patch
+  to handle correctly extensions that fail to load (bsc#1036494,
+  bgo#781728, CVE-2017-8288).
+
+---
+Mon Jul 10 10:00:39 UTC 2017 - qzh...@suse.com
+
+- Enable gnome-shell-878951-hide-list-with-no-user.patch on
+  openSUSE. Upstream commit fbc5e37 (bsc#1047262, bgo#731320).
+
+---

New:

  gnome-shell-1036494-Catch-import-errors.patch
  gnome-shell-1036494-Consistently-handle-createExtensionObject-errors.patch
  gnome-shell-1036494-Consistently-handle-initExtension-errors.patch
  gnome-shell-emulate-click-action.patch



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.d04ZZX/_old  2017-07-17 09:00:28.246244157 +0200
+++ /var/tmp/diff_new_pack.d04ZZX/_new  2017-07-17 09:00:28.250243594 +0200
@@ -42,7 +42,7 @@
 Patch3: gnome-shell-gdm-login-applet.patch
 # PATCH-FEATURE-SLE gnome-shell-domain.patch fate#307773 dli...@suse.com -- 
Active Directory Integration
 Patch4: gnome-shell-domain.patch
-# PATCH-FIX-SLE gnome-shell-878951-hide-list-with-no-user.patch bnc#878951 
dli...@suse.com -- hide use list when there is not user
+# PATCH-FIX-UPSTREAM gnome-shell-878951-hide-list-with-no-user.patch 
bnc#878951 bgo#731320 dli...@suse.com -- hide use list when there is not user
 Patch5: gnome-shell-878951-hide-list-with-no-user.patch
 # PATCH-FIX-SLE gnome-shell-screen-disappear.patch bnc#870217 dli...@suse.com 
-- screen disapper.
 Patch6: gnome-shell-screen-disappear.patch
@@ -60,6 +60,14 @@
 Patch14:gnome-shell-portalhelper-fixes.patch
 # PATCH-FEATURE-SLE gnome-shell-1007468-lock-screen-SUSE-logo-missing.patch 
xw...@suse.com -- Add SUSE logo on lock screen for GNOME theme.
 Patch15:gnome-shell-1007468-lock-screen-SUSE-logo-missing.patch
+# PATCH-FIX-UPSTREAM 
gnome-shell-1036494-Consistently-handle-createExtensionObject-errors.patch 
bsc#1036494 bgo#781728 alarr...@suse.com -- Handle errors consistently
+Patch16:
gnome-shell-1036494-Consistently-handle-createExtensionObject-errors.patch
+# PATCH-FIX-UPSTREAM gnome-shell-1036494-Catch-import-errors.patch bsc#1036494 
bgo#781728 alarr...@suse.com -- Catch import errors
+Patch17:gnome-shell-1036494-Catch-import-errors.patch
+# PATCH-FIX-UPSTREAM 
gnome-shell-1036494-Consistently-handle-initExtension-errors.patch bsc#1036494 
bgo#781728 alarr...@suse.com -- Handle errors consistently
+Patch18:
gnome-shell-1036494-Consistently-handle-initExtension-errors.patch
+# PATCH-FIX-UPSTREAM gnome-shell-emulate-click-action.patch bgo#781738 
boo#1036681 zai...@opensuse.org -- Fix clicks in gnome-shell shutdown dialog
+Patch19:gnome-shell-emulate-click-action.patch
 ## NOTE: Keep SLE Classic pathes at bottom.
 ## NOTE: Keep SLE Classic pathes at bottom.
 # PATCH-FEATURE-SLE gs-sle-classic-ext.patch bnc#862615 cxi...@suse.com -- add 
SLE Classic support
@@ -195,7 +203,6 @@
 %if !0%{?is_opensuse}
 %patch3 -p1
 %patch4 -p1
-%patch5 -p1
 %patch6 -p1
 %patch7 -p1
 %patch8 -p1
@@ -203,8 +210,14 @@
 %patch11 -p1
 %patch15 -p1
 %endif
+%patch5 -p1
 %patch13 -p1
 %patch14 -p1
+%patch16 -p1
+%patch17 -p1
+%patch18 -p1
+%patch19 -p1
+
 %if !0%{?is_opensuse}
 %patch1000 -p1
 translation-update-upstream

++ gnome-shell-1036494-Catch-import-errors.patch ++
Index: gnome-shell-3.20.4/js/ui/extensionSystem.js
===
--- gnome-shell-3.20.4.orig/js/ui/extensionSystem.js
+++ gnome-shell-3.20.4/js/ui/extensionSystem.js
@@ -224,7 +224,12 @@ function initExtension(uuid) {
 let extensionState = null

commit python-python-dateutil for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package python-python-dateutil for 
openSUSE:Factory checked in at 2017-07-17 09:00:45

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


Package is "python-python-dateutil"

Mon Jul 17 09:00:45 2017 rev:5 rq:509321 version:2.6.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-python-dateutil/python-python-dateutil.changes
2017-05-09 17:58:54.240892507 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-python-dateutil.new/python-python-dateutil.changes
   2017-07-17 09:00:47.715502705 +0200
@@ -1,0 +2,49 @@
+Mon Jul 10 18:55:45 UTC 2017 - aloi...@gmx.com
+
+- Update to version 2.6.1
+  * Updated zoneinfo file to 2017b. (gh pr #395)
+  * Added Python 3.6 to CI testing (gh pr #365)
+  * Removed duplicate test name that was preventing a test from
+being run.
+  * Reported and fixed by @jdufresne (gh pr #371)
+  * Fixed testing of folds and gaps, particularly on Windows (gh
+pr #392)
+  * Fixed deprecated escape characters in regular expressions.
+Reported by @nascheme and @thierryba (gh issue #361), fixed by
+@thierryba (gh pr #358)
+  * Many PEP8 style violations and other code smells were fixed
+by @jdufresne (gh prs #358, #363, #364, #366, #367, #368, #372,
+#374, #379, #380, #398)
+  * Improved performance of tzutc and tzoffset objects. (gh pr
+#391)
+  * Fixed issue with several time zone classes around DST
+transitions in any zones with +0 standard offset (e.g.
+Europe/London) (gh issue #321, pr #390)
+  * Fixed issue with fuzzy parsing where tokens similar to AM/PM
+that are in the end skipped were dropped in the
+fuzzy_with_tokens list. Reported and fixed by @jbrockmendel (gh
+pr #332).
+  * Fixed issue with parsing dates of the form X m YY. Reported
+by @jbrockmendel. (gh issue #333, pr #393)
+  * Added support for parser weekdays with less than 3
+characters. Reported by @arcadefoam (gh issue #343), fixed by
+@jonemo (gh pr #382)
+  * Fixed issue with the addition and subtraction of certain
+relativedeltas. Reported and fixed by @kootenpv (gh issue #346,
+pr #347)
+  * Fixed issue where the COUNT parameter of rrules was ignored
+if 0. Fixed by @mshenfield (gh pr #330), reported by @vaultah
+(gh issue #329).
+  * Updated documentation to include the new tz methods. (gh pr
+#324)
+  * Update documentation to reflect that the parser can raise
+TypeError, reported and fixed by @tomchuk (gh issue #336, pr
+#337)
+  * Fixed an incorrect year in a parser doctest. Fixed by
+@xlotlu (gh pr #357)
+  * Moved version information into _version.py and set up the
+versions more granularly.
+
+- Use recommended source URL format
+
+---

Old:

  python-dateutil-2.6.0.tar.gz

New:

  python-dateutil-2.6.1.tar.gz



Other differences:
--
++ python-python-dateutil.spec ++
--- /var/tmp/diff_new_pack.EjyxmJ/_old  2017-07-17 09:00:48.315418231 +0200
+++ /var/tmp/diff_new_pack.EjyxmJ/_new  2017-07-17 09:00:48.315418231 +0200
@@ -19,13 +19,13 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-python-dateutil
-Version:2.6.0
+Version:2.6.1
 Release:0
 Summary:A Python Datetime Library
 License:BSD-3-Clause
 Group:  Development/Libraries/Python
 Url:https://dateutil.readthedocs.org/en/latest/
-Source0:
https://pypi.io/packages/source/p/python-dateutil/python-dateutil-%{version}.tar.gz
+Source0:
https://files.pythonhosted.org/packages/source/p/python-dateutil/python-dateutil-%{version}.tar.gz
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools} >= 18.0.1
 BuildRequires:  %{python_module six} >= 1.9.0

++ python-dateutil-2.6.0.tar.gz -> python-dateutil-2.6.1.tar.gz ++
 4759 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-07-17 09:00:18

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


Package is "gdk-pixbuf"

Mon Jul 17 09:00:18 2017 rev:61 rq:510609 version:2.36.6

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-05-18 
20:37:56.371158099 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-07-17 09:00:22.871001037 +0200
@@ -1,0 +2,8 @@
+Sun Jul 16 20:57:27 CEST 2017 - h...@suse.com
+
+- Add fixes for crashes, taken from upstream git (CVE-2017-2862,
+  CVE-2017-2870, bgo#784866, bgo#780269):
+  gdk-pixbuf-cve-2017-2862-jpeg-channels.patch
+  gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch
+
+---

New:

  gdk-pixbuf-cve-2017-2862-jpeg-channels.patch
  gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.awTGTS/_old  2017-07-17 09:00:23.506911495 +0200
+++ /var/tmp/diff_new_pack.awTGTS/_new  2017-07-17 09:00:23.510910932 +0200
@@ -32,6 +32,10 @@
 Source99:   baselibs.conf
 # PATCH-FIX-UPSTREAM u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch boo#929462 
bsc#1010497 bgo#775896 msta...@suse.com -- Fix RGBA conversion for big endian 
X11 environments
 Patch0: u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch
+# PATCH-FIX-UPSTREAM gdk-pixbuf-cve-2017-2862-jpeg-channels.patch bsc#1048289 
bgo#784866 CVE-2017-2862 h...@suse.com -- fix heap overwrite when JPEG channels 
is not 3 or 4.
+Patch1: gdk-pixbuf-cve-2017-2862-jpeg-channels.patch
+# PATCH-FIX-UPSTREAM gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch 
bgo#780269 CVE-2017-2870 h...@suse.com -- fix reliance on undefined behavior to 
handle integer overflows.
+Patch2: gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch
 BuildRequires:  libjasper-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
@@ -117,6 +121,8 @@
 translation-update-upstream
 %endif
 %patch0 -p1
+%patch1 -p1
+%patch2 -p1
 %if "%_lib" == "lib64"
 cp -a %{S:2} .
 %endif

++ gdk-pixbuf-cve-2017-2862-jpeg-channels.patch ++
commit c2a40a92fe3df4111ed9da51fe3368c079b86926
Author: Tobias Mueller 
Date:   Wed Jul 12 20:36:11 2017 +0200

jpeg: Throw error when number of color components is unsupported

Explicitly check "3" or "4" output color components.

gdk-pixbuf assumed that the value of output_components to be either
3 or 4, but not an invalid value (9) or an unsupported value (1).

The way the buffer size was deduced was using a naive "== 4" check,
with a 1, 3 or 9 color component picture getting the same buffer size,
a size just sufficient for 3 color components, causing invalid writes
later when libjpeg-turbo was decoding the image.

CVE-2017-2862

Sent by from Marcin 'Icewall' Noga of Cisco Talos

https://bugzilla.gnome.org/show_bug.cgi?id=784866

diff --git a/gdk-pixbuf/io-jpeg.c b/gdk-pixbuf/io-jpeg.c
index dd88a350a..1c0eba1a9 100644
--- a/gdk-pixbuf/io-jpeg.c
+++ b/gdk-pixbuf/io-jpeg.c
@@ -1051,6 +1051,7 @@ gdk_pixbuf__jpeg_image_load_increment (gpointer data,
if (!context->got_header) {
int rc;
gchar* comment;
+   gboolean has_alpha;

jpeg_save_markers (cinfo, JPEG_APP0+1, 0x);
jpeg_save_markers (cinfo, JPEG_APP0+2, 0x);
@@ -1089,10 +1090,24 @@ gdk_pixbuf__jpeg_image_load_increment (gpointer data,
}
}
jpeg_calc_output_dimensions (cinfo);
-   
-   context->pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, 
- 
cinfo->output_components == 4 ? TRUE : FALSE,
- 8, 
+
+   if (cinfo->output_components == 3) {
+   has_alpha = FALSE;
+   } else if (cinfo->output_components == 4) {
+   has_alpha = TRUE;
+   } else {
+   g_set_error (error,
+GDK_PIXBUF_ERROR,
+GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
+_("Unsupported number of color 
components (%d)"),
+cinfo->output_components);
+ 

commit rpmlint for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory checked 
in at 2017-07-17 09:00:51

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


Package is "rpmlint"

Mon Jul 17 09:00:51 2017 rev:274 rq:509371 version:1.8

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint-tests.changes2017-05-04 
08:53:22.993609421 +0200
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint-tests.changes   
2017-07-17 09:00:52.598815085 +0200
@@ -1,0 +2,7 @@
+Sun Jul  2 16:30:01 UTC 2017 - meiss...@suse.com
+
+- rpmlint-pie-leap42.patch, rpmlint-pie-factory.patch:
+  adjust testsuite to match new PIE warning, for both
+  Leap 42.3 and Factory.
+
+---
--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes  2017-06-20 
10:57:47.873517110 +0200
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes 2017-07-17 
09:00:52.662806074 +0200
@@ -1,0 +2,11 @@
+Tue Jul 11 08:48:32 UTC 2017 - krah...@suse.com
+
+- Adding pam_dbus (bsc#1039709) 
+
+---
+Thu Jun 22 08:33:11 UTC 2017 - meiss...@suse.com
+
+- rpmlint-all-pie.patch: for non-PIE built binaries emit a warning
+  to suggest build them as PIE.
+
+---

New:

  rpmlint-all-pie.patch
  rpmlint-pie-factory.patch
  rpmlint-pie-leap42.patch



Other differences:
--
++ rpmlint-tests.spec ++
--- /var/tmp/diff_new_pack.IFRVV3/_old  2017-07-17 09:00:54.382563915 +0200
+++ /var/tmp/diff_new_pack.IFRVV3/_new  2017-07-17 09:00:54.382563915 +0200
@@ -32,6 +32,8 @@
 Url:http://www.opensuse.org/
 Source: rpmlint-tests-%version.tar.xz
 Patch1: 0001-Update-varrun-test-for-Leap-42.2-severity-reduction.patch
+Patch2: rpmlint-pie-leap42.patch
+Patch3: rpmlint-pie-factory.patch
 
 %description
 This package doesn't actually contain any files and is not meant to
@@ -43,6 +45,10 @@
 %if 0%{?sle_version} >= 120200
 %patch1 -p1
 %endif
+%if 0%{?suse_version} < 1330
+%patch2 -p1
+%endif
+%patch3 -p1
 
 %build
 mkdir rpms
@@ -50,7 +56,4 @@
 
 %install
 
-%clean
-rm -rf %buildroot
-
 %changelog

++ rpmlint.spec ++
--- /var/tmp/diff_new_pack.IFRVV3/_old  2017-07-17 09:00:54.406560536 +0200
+++ /var/tmp/diff_new_pack.IFRVV3/_new  2017-07-17 09:00:54.410559972 +0200
@@ -125,6 +125,7 @@
 Patch68:boo1027577-license_tag.patch
 # Fix check for 'missing-call-to-chdir-with-chroot' on ARM, relax check on PPC
 Patch69:BinariesCheck_fix_chroot_check_on_non_x86.patch
+Patch70:rpmlint-all-pie.patch
 # PATCHLIST END
 # BuildArch must at the end. is a bug: 
https://bugzilla.suse.com/show_bug.cgi?id=926766
 BuildArch:  noarch

++ config ++
--- /var/tmp/diff_new_pack.IFRVV3/_old  2017-07-17 09:00:54.582535757 +0200
+++ /var/tmp/diff_new_pack.IFRVV3/_new  2017-07-17 09:00:54.586535194 +0200
@@ -759,7 +759,11 @@
 # openqa (bsc#1039290)
 "org.opensuse.openqa.conf",
 "openqa-scheduler.service",
-"openqa-websockets.service"
+"openqa-websockets.service",
+# pam_dbus (bsc#1039709). Take care to
+# never enable/integrate this by default (see bsc comments)
+"pam_dbus.conf",
+"pam_dbus.service"
 ))
 
 setOption("PAMModules.WhiteList", (

++ rpmlint-all-pie.patch ++
Index: rpmlint-rpmlint-1.8/BinariesCheck.py
===
--- rpmlint-rpmlint-1.8.orig/BinariesCheck.py
+++ rpmlint-rpmlint-1.8/BinariesCheck.py
@@ -560,6 +560,9 @@ class BinariesCheck(AbstractCheck.Abstra
 if not is_shobj and pie_exec_re and pie_exec_re.search(fname):
 printError(pkg, 'non-position-independent-executable',
fname)
+if not is_shobj:
+printError(pkg, 
'position-independent-executable-suggested',
+   fname)
 
 if bin_info.readelf_error:
 continue
@@ -809,6 +812,10 @@ stripping process.''',
 '''This executable must be position independent.  Check that it is built with
 -fPIE/-fpie in compiler flags and -pie in linker flags.''',
 
+'position-independent-executable-suggested',
+'''This executable should be position independent (all binaries should).  Check
+that it is built with -fPIE/-fpie in compiler flags and -pie in linker 
flags.''',
+
 'missing-call-to-setgroups-before-setuid',
 '''This executable is calling setuid and setgid without setgroups or
 initgroups. There is a high probability this means it didn't relinquish all
++ rpmlint-pie-factory.patch ++
Index: rpm

commit perl-Tie-Cycle for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package perl-Tie-Cycle for openSUSE:Factory 
checked in at 2017-07-17 09:01:04

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


Package is "perl-Tie-Cycle"

Mon Jul 17 09:01:04 2017 rev:9 rq:509386 version:1.225

Changes:

--- /work/SRC/openSUSE:Factory/perl-Tie-Cycle/perl-Tie-Cycle.changes
2017-04-28 09:11:42.007646734 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Tie-Cycle.new/perl-Tie-Cycle.changes   
2017-07-17 09:01:46.503224685 +0200
@@ -1,0 +2,9 @@
+Mon Jul 10 06:33:55 UTC 2017 - co...@suse.com
+
+- updated to 1.225
+   see /usr/share/doc/packages/perl-Tie-Cycle/Changes
+
+  1.225 2017-07-09T17:49:10Z
+   * Bump the version to reindex (See 
https://github.com/andk/pause/issues/248 )
+
+---

Old:

  Tie-Cycle-1.224.tar.gz

New:

  Tie-Cycle-1.225.tar.gz



Other differences:
--
++ perl-Tie-Cycle.spec ++
--- /var/tmp/diff_new_pack.7VgqRS/_old  2017-07-17 09:01:47.107139645 +0200
+++ /var/tmp/diff_new_pack.7VgqRS/_new  2017-07-17 09:01:47.39082 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Tie-Cycle
-Version:1.224
+Version:1.225
 Release:0
 %define cpan_name Tie-Cycle
 Summary:Cycle through a list of values via a scalar

++ Tie-Cycle-1.224.tar.gz -> Tie-Cycle-1.225.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.224/Changes new/Tie-Cycle-1.225/Changes
--- old/Tie-Cycle-1.224/Changes 2017-04-18 13:41:44.0 +0200
+++ new/Tie-Cycle-1.225/Changes 2017-07-09 19:49:55.0 +0200
@@ -1,5 +1,8 @@
 Revision history for Perl module Tie::Cycle
 
+1.225 2017-07-09T17:49:10Z
+   * Bump the version to reindex (See 
https://github.com/andk/pause/issues/248 )
+
 1.224 2017-04-18T11:41:22Z
* Fix up various dist things and clarify that this is under
the Artistic License 2.0.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.224/MANIFEST.SKIP 
new/Tie-Cycle-1.225/MANIFEST.SKIP
--- old/Tie-Cycle-1.224/MANIFEST.SKIP   2017-04-18 13:41:44.0 +0200
+++ new/Tie-Cycle-1.225/MANIFEST.SKIP   2017-07-09 19:49:55.0 +0200
@@ -59,7 +59,8 @@
 
 
 \.travis\.yml
-\.appveyor\.yml
+\.?appveyor.yml
 \.releaserc
+\.lwpcookies
 \.gitignore
 Tie-\.*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.224/META.json 
new/Tie-Cycle-1.225/META.json
--- old/Tie-Cycle-1.224/META.json   2017-04-18 13:41:46.0 +0200
+++ new/Tie-Cycle-1.225/META.json   2017-07-09 19:49:57.0 +0200
@@ -4,7 +4,7 @@
   "brian d foy "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter 
version 2.150005",
+   "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter 
version 2.140640",
"license" : [
   "artistic_2"
],
@@ -53,6 +53,5 @@
  "web" : "https://github.com/briandfoy/tie-cycle";
   }
},
-   "version" : "1.224",
-   "x_serialization_backend" : "JSON::PP version 2.27300"
+   "version" : "1.225"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.224/META.yml new/Tie-Cycle-1.225/META.yml
--- old/Tie-Cycle-1.224/META.yml2017-04-18 13:41:46.0 +0200
+++ new/Tie-Cycle-1.225/META.yml2017-07-09 19:49:57.0 +0200
@@ -8,7 +8,7 @@
   ExtUtils::MakeMaker: '6.64'
   File::Spec::Functions: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter 
version 2.150005'
+generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 
2.140640'
 license: artistic_2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -25,5 +25,4 @@
   bugtracker: https://github.com/briandfoy/tie-cycle/issues
   homepage: https://github.com/briandfoy/tie-cycle
   repository: https://github.com/briandfoy/tie-cycle.git
-version: '1.224'
-x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
+version: '1.225'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.224/README.pod 
new/Tie-Cycle-1.225/README.pod
--- old/Tie-Cycle-1.224/README.pod  2017-04-18 13:41:44.0 +0200
+++ new/Tie-Cycle-1.225/README.pod  2017-07-09 19:49:55.0 +0200
@@ -4,7 +4,7 @@
 
 =for HTML https://travis-ci.org/briandfoy/tie-cycle";>https://travis-ci.org/briandfoy/tie-cycle.svg?branch=master"; />
 
-=for HTML 
+=for HTML 
 
 =for HTML 
 
diff 

commit perl-Mojolicious for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package perl-Mojolicious for 
openSUSE:Factory checked in at 2017-07-17 09:01:52

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


Package is "perl-Mojolicious"

Mon Jul 17 09:01:52 2017 rev:70 rq:509619 version:7.36

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojolicious/perl-Mojolicious.changes
2017-06-17 10:21:05.663789581 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojolicious.new/perl-Mojolicious.changes   
2017-07-17 09:01:57.405689460 +0200
@@ -1,0 +2,34 @@
+Wed Jul 12 05:47:03 UTC 2017 - co...@suse.com
+
+- updated to 7.36
+   see /usr/share/doc/packages/perl-Mojolicious/Changes
+
+  7.36  2017-07-09
+- Fixed basename method in Mojo::File to work with relative paths. 
(jberger)
+- Fixed a bug where Mojo::Log could not correctly identify if it was 
deployed
+  with systemd.
+- Fixed Mojo::HelloWorld to actually be a Mojolicious subclass.
+  
+  7.35  2017-07-05
+- Removed deprecated watch attribute from Mojo::Server::Morbo.
+- Added spare attribute to Mojo::Server::Prefork.
+- Added -s option to prefork command.
+- Added fd option to Mojo::IOLoop::Server::listen.
+- Added fd parameter to Mojo::Server::Daemon::listen.
+- Added spare setting to Hypnotoad.
+- Increased default graceful_timeout from 20 to 60 seconds and
+  heartbeat_timeout from 20 to 30 seconds in Mojo::Server::Prefork.
+
+---
+Tue Jul  4 05:53:43 UTC 2017 - co...@suse.com
+
+- updated to 7.34
+   see /usr/share/doc/packages/perl-Mojolicious/Changes
+
+  7.34  2017-07-02
+- Added short attribute to Mojo::Log.
+- Improved Mojo::Log to print log messages without timestamps to STDERR 
when
+  deployed with systemd.
+- Improved Mojo::DOM performance slightly.
+
+---

Old:

  Mojolicious-7.33.tar.gz

New:

  Mojolicious-7.36.tar.gz



Other differences:
--
++ perl-Mojolicious.spec ++
--- /var/tmp/diff_new_pack.Rrkif0/_old  2017-07-17 09:01:57.929615683 +0200
+++ /var/tmp/diff_new_pack.Rrkif0/_new  2017-07-17 09:01:57.933615120 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojolicious
-Version:7.33
+Version:7.36
 Release:0
 %define cpan_name Mojolicious
 Summary:Real-time web framework

++ Mojolicious-7.33.tar.gz -> Mojolicious-7.36.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-7.33/Changes new/Mojolicious-7.36/Changes
--- old/Mojolicious-7.33/Changes2017-06-05 17:05:19.0 +0200
+++ new/Mojolicious-7.36/Changes2017-07-09 19:05:11.0 +0200
@@ -1,7 +1,29 @@
 
+7.36  2017-07-09
+  - Fixed basename method in Mojo::File to work with relative paths. (jberger)
+  - Fixed a bug where Mojo::Log could not correctly identify if it was deployed
+with systemd.
+  - Fixed Mojo::HelloWorld to actually be a Mojolicious subclass.
+
+7.35  2017-07-05
+  - Removed deprecated watch attribute from Mojo::Server::Morbo.
+  - Added spare attribute to Mojo::Server::Prefork.
+  - Added -s option to prefork command.
+  - Added fd option to Mojo::IOLoop::Server::listen.
+  - Added fd parameter to Mojo::Server::Daemon::listen.
+  - Added spare setting to Hypnotoad.
+  - Increased default graceful_timeout from 20 to 60 seconds and
+heartbeat_timeout from 20 to 30 seconds in Mojo::Server::Prefork.
+
+7.34  2017-07-02
+  - Added short attribute to Mojo::Log.
+  - Improved Mojo::Log to print log messages without timestamps to STDERR when
+deployed with systemd.
+  - Improved Mojo::DOM performance slightly.
+
 7.33  2017-06-05
   - Added EXPERIMENTAL support for :matches pseudo-class and :not pseudo-class
-with compount selectors to Mojo::DOM::CSS.
+with compound selectors to Mojo::DOM::CSS.
   - Fixed a few form element value extraction bugs in Mojo::DOM.
   - Fixed version command to use the new MetaCPAN API, since the old one got
 shut down.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-7.33/META.json 
new/Mojolicious-7.36/META.json
--- old/Mojolicious-7.33/META.json  2017-06-06 00:13:11.0 +0200
+++ new/Mojolicious-7.36/META.json  2017-07-10 09:47:25.0 +0200
@@ -4,7 +4,7 @@
   "Sebastian Riedel "
],
"dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.28, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter 
version 2.150010",
"license" : [
 

commit openssl for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package openssl for openSUSE:Factory checked 
in at 2017-07-17 09:01:38

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


Package is "openssl"

Mon Jul 17 09:01:38 2017 rev:140 rq:509431 version:1.0.2l

Changes:

--- /work/SRC/openSUSE:Factory/openssl/openssl.changes  2017-06-27 
10:19:51.447193508 +0200
+++ /work/SRC/openSUSE:Factory/.openssl.new/openssl.changes 2017-07-17 
09:01:55.633938948 +0200
@@ -1,0 +2,7 @@
+Tue Jul 11 11:46:56 UTC 2017 - vci...@suse.com
+
+- Obsolete openssl-debuginfo
+  * the package doesn't exist any more, has been replaced by
+openssl-{so_version}-debuginfo (bsc#1040172)
+
+---



Other differences:
--
++ openssl.spec ++
--- /var/tmp/diff_new_pack.vxwzvb/_old  2017-07-17 09:01:56.193860103 +0200
+++ /var/tmp/diff_new_pack.vxwzvb/_new  2017-07-17 09:01:56.197859540 +0200
@@ -29,6 +29,8 @@
 Source99:   baselibs.conf
 BuildRequires:  libopenssl%{_sonum} = %{version}
 Requires:   openssl-%{_sonum} = %{version}
+# the debuginfo package is now openssl-%{_sonum}-debuginfo (boo#1040172)
+Obsoletes:  openssl-debuginfo
 BuildArch:  noarch
 
 %description




commit openexr for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package openexr for openSUSE:Factory checked 
in at 2017-07-17 09:02:16

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


Package is "openexr"

Mon Jul 17 09:02:16 2017 rev:26 rq:509954 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/openexr/openexr.changes  2015-01-30 
23:57:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.openexr.new/openexr.changes 2017-07-17 
09:02:17.318885371 +0200
@@ -1,0 +2,5 @@
+Wed Jul 12 09:22:22 UTC 2017 - tchva...@suse.com
+
+- Cleanup a bit with spec-cleaner
+
+---



Other differences:
--
++ openexr.spec ++
--- /var/tmp/diff_new_pack.XujK3h/_old  2017-07-17 09:02:18.106774423 +0200
+++ /var/tmp/diff_new_pack.XujK3h/_new  2017-07-17 09:02:18.110773860 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package openexr
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,11 +17,9 @@
 
 
 %global so_suffix -2_2-22
-
 # tests should run at least during local build
 # but do expect a HUGE number of memory, so beware
 %bcond_with tests
-
 Name:   openexr
 Version:2.2.0
 Release:0
@@ -29,20 +27,19 @@
 License:BSD-3-Clause
 Group:  Productivity/Graphics/Other
 Url:http://www.openexr.com/
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Source0:
http://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.gz
+Source1:
http://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.gz.sig
+Source2:baselibs.conf
+Source3:openexr.keyring
 BuildRequires:  automake
 BuildRequires:  fltk-devel
 BuildRequires:  freeglut-devel
 BuildRequires:  gcc-c++
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(IlmBase) = %{version}
 BuildRequires:  pkgconfig(zlib)
 Obsoletes:  OpenEXR <= 1.6.1
 Provides:   OpenEXR = %{version}
-Source0:
http://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.gz
-Source1:
http://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.gz.sig
-Source2:baselibs.conf
-Source3:openexr.keyring
 
 %description
 OpenEXR is a high dynamic-range (HDR) image file format developed by
@@ -68,11 +65,9 @@
 This package contains shared library libIlmImf
 
 %post -n libIlmImf%{so_suffix} -p /sbin/ldconfig
-
 %postun -n libIlmImf%{so_suffix} -p /sbin/ldconfig
 
 %files -n libIlmImf%{so_suffix}
-%defattr(-,root,root)
 %doc COPYING
 %{_libdir}/libIlmImf-*.so.*
 
@@ -87,26 +82,24 @@
 This package contains shared library libIlmImfUtil
 
 %post -n libIlmImfUtil%{so_suffix} -p /sbin/ldconfig
-
 %postun -n libIlmImfUtil%{so_suffix} -p /sbin/ldconfig
 
 %files -n libIlmImfUtil%{so_suffix}
-%defattr(-,root,root)
 %doc COPYING
 %{_libdir}/libIlmImfUtil-*.so.*
 
 %package devel
 Summary:Library to Handle EXR Pictures (16-bit floating-point format)
 Group:  Development/Libraries/C and C++
+Requires:   libIlmImf%{so_suffix} = %{version}
+Requires:   libIlmImfUtil%{so_suffix} = %{version}
+Requires:   libilmbase-devel
+Requires:   pkgconfig
+Requires:   pkgconfig(zlib)
 Obsoletes:  OpenEXR-devel <= 1.6.1
 Provides:   OpenEXR-devel = %{version}
 Obsoletes:  libopenexr-devel <= 1.7.0
 Provides:   libopenexr-devel = %{version}
-Requires:   libIlmImf%{so_suffix} = %{version}
-Requires:   libIlmImfUtil%{so_suffix} = %{version}
-Requires:   libilmbase-devel
-Requires:   pkg-config
-Requires:   zlib-devel
 
 %description devel
 OpenEXR is a high dynamic-range (HDR) image file format developed by
@@ -136,35 +129,32 @@
 fi
 
 # remove a non-linux file
-%{__rm} README.win32 README.OSX
+rm README.win32 README.OSX
 
 %build
-#autoreconf --force --install --include=config
-#
 export PTHREAD_LIBS="-lpthread"
-%{configure} \
+%configure \
--disable-static \
--with-pic \
--enable-large-stack \
--enable-imfexamples \
--enable-imffuzztest \
--enable-imfhugetest
-%{__make} %{?_smp_mflags}
+make %{?_smp_mflags}
 
 %install
-%{makeinstall}
-%{__rm} -f %{buildroot}%{_libdir}/*.la
+%make_install
+find %{buildroot} -type f -name "*.la" -delete -print
 
 install -d -m 0755 %{buildroot}%{_defaultdocdir}/
 mv %{buildroot}%{_datadir}/doc/OpenEXR-2* 
%{buildroot}%{_defaultdocdir}/%{name}-%{version}
 
 %check
 %if %{with tests}
-%{__make} check
+make %{?_smp_mflags

commit jsoncpp for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package jsoncpp for openSUSE:Factory checked 
in at 2017-07-17 09:01:46

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


Package is "jsoncpp"

Mon Jul 17 09:01:46 2017 rev:18 rq:509455 version:1.8.1

Changes:

--- /work/SRC/openSUSE:Factory/jsoncpp/jsoncpp.changes  2017-01-09 
11:51:05.341619915 +0100
+++ /work/SRC/openSUSE:Factory/.jsoncpp.new/jsoncpp.changes 2017-07-17 
09:01:56.453823496 +0200
@@ -1,0 +2,8 @@
+Tue Jul 11 13:09:41 UTC 2017 - mplus...@suse.com
+
+- Update to version 1.8.1:
+  * meson.build
+  * Minor bug fixes and optimizations
+  * Improved docs
+
+---

Old:

  jsoncpp-1.8.0.tar.gz

New:

  jsoncpp-1.8.1.tar.gz



Other differences:
--
++ jsoncpp.spec ++
--- /var/tmp/diff_new_pack.X9CYBw/_old  2017-07-17 09:01:56.953753099 +0200
+++ /var/tmp/diff_new_pack.X9CYBw/_new  2017-07-17 09:01:56.957752536 +0200
@@ -18,7 +18,7 @@
 
 %define sover   11
 Name:   jsoncpp
-Version:1.8.0
+Version:1.8.1
 Release:0
 Summary:C++ library that allows manipulating with JSON
 License:MIT
@@ -28,7 +28,6 @@
 BuildRequires:  cmake >= 3.1
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 JSON is a lightweight data-interchange format. It can represent numbers,
@@ -81,20 +80,18 @@
 
 %check
 # path needs to be exported otherwise unit tests will fail
-export 
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:%{_builddir}/%{name}-%{version}/build/src/lib_json
+export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:%{buildroot}%{_libdir}
 ./build/src/test_lib_json/jsoncpp_test
 
 %post -n lib%{name}%{sover} -p /sbin/ldconfig
 %postun -n lib%{name}%{sover} -p /sbin/ldconfig
 
 %files -n lib%{name}%{sover}
-%defattr(-,root,root)
 %doc LICENSE
 %{_libdir}/lib%{name}.so.%{sover}*
 %{_libdir}/lib%{name}.so.%{version}
 
 %files devel
-%defattr(-,root,root)
 %doc AUTHORS LICENSE NEWS.txt README.md
 %{_libdir}/pkgconfig/%{name}.pc
 %{_libdir}/cmake/%{name}

++ jsoncpp-1.8.0.tar.gz -> jsoncpp-1.8.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jsoncpp-1.8.0/.travis.yml 
new/jsoncpp-1.8.1/.travis.yml
--- old/jsoncpp-1.8.0/.travis.yml   2016-12-14 20:39:05.0 +0100
+++ new/jsoncpp-1.8.1/.travis.yml   2017-06-26 07:01:22.0 +0200
@@ -7,14 +7,24 @@
 # to allow C++11, though we are not yet building with -std=c++11
 
 install:
+- if [[ $TRAVIS_OS_NAME == osx ]]; then
+ brew update;
+ brew install python3 ninja;
+ python3 -m venv venv;
+ source venv/bin/activate;
+  elif [[ $TRAVIS_OS_NAME == linux ]]; then
+ wget 
https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-linux.zip;
+ unzip -q ninja-linux.zip -d build;
+  fi
+- pip3 install meson
 # /usr/bin/gcc is 4.6 always, but gcc-X.Y is available.
-- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
+- if [[ $CXX = g++ ]]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
 # /usr/bin/clang has a conflict with gcc, so use clang-X.Y.
-- if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.5" CC="clang-3.5"; fi
+- if [[ $CXX = clang++ ]]; then export CXX="clang++-3.5" CC="clang-3.5"; fi
 - echo ${PATH}
 - ls /usr/local
 - ls /usr/local/bin
-- export PATH=/usr/local/bin:/usr/bin:${PATH}
+- export PATH="${PWD}"/build:/usr/local/bin:/usr/bin:${PATH}
 - echo ${CXX}
 - ${CXX} --version
 - which valgrind
@@ -23,10 +33,7 @@
 sources:
 - ubuntu-toolchain-r-test
 - llvm-toolchain-precise-3.5
-- george-edison55-precise-backports # cmake 3.2.3
 packages:
-- cmake
-- cmake-data
 - gcc-4.9
 - g++-4.9
 - clang-3.5
@@ -40,8 +47,9 @@
 script: ./travis.sh
 env:
   matrix:
-- SHARED_LIB=ON  STATIC_LIB=ON CMAKE_PKG=ON  BUILD_TYPE=release 
VERBOSE_MAKE=false
-- SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug   
VERBOSE_MAKE=true VERBOSE
+- LIB_TYPE=static BUILD_TYPE=release
+- LIB_TYPE=shared BUILD_TYPE=debug
 notifications:
   email: false
+dist: trusty
 sudo: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jsoncpp-1.8.0/AUTHORS new/jsoncpp-1.8.1/AUTHORS
--- old/jsoncpp-1.8.0/AUTHORS   2016-12-14 20:39:05.0 +0100
+++ new/jsoncpp-1.8.1/AUTHORS   2017-06-26 07:01:22.0 +0200
@@ -1 +1,111 @@
 Baptiste Lepilleur 
+
+Aaron Jacobs 
+Aaron Jacobs 
+Adam Boseley 
+Adam Boseley 
+Aleksandr Derbenev <13ale...@gmail.com>
+Alexander Gazarov 
+Alexander V. Brezgin 
+Alexandr Brezgin 
+Alexey Kruchinin 
+Anton Indrawan 
+Baptiste Jong

commit jasper for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package jasper for openSUSE:Factory checked 
in at 2017-07-17 09:01:59

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


Package is "jasper"

Mon Jul 17 09:01:59 2017 rev:39 rq:509748 version:1.900.14

Changes:

--- /work/SRC/openSUSE:Factory/jasper/jasper.changes2017-03-31 
15:01:20.369498459 +0200
+++ /work/SRC/openSUSE:Factory/.jasper.new/jasper.changes   2017-07-17 
09:02:00.289283406 +0200
@@ -1,0 +2,50 @@
+Wed Jul 12 07:43:06 UTC 2017 - fst...@suse.com
+
+- Other bugs fixed by existing patches:
+  * jasper-CVE-2016-9395.patch
+- bsc#1010756, CVE-2016-9394: assertion in jas_matrix_t
+  *jas_seq2d_create(int, int, int, int): Assertion
+  `xstart <= xend && ystart <= yend'
+- bsc#1010757, CVE-2016-9392: pc_dec.c:1637: void
+  calcstepsizes(uint_fast16_t, int, uint_fast16_t *):
+  Assertion `!((expn + (numrlvls - 1) - (numrlvls - 1 -
+  ((bandno > 0) ? ((bandno + 2) / 3) : (0 & (~0x1f))'
+  failed.
+- bsc#1010766, CVE-2016-9393: jpc_t2cod.c:297: int
+  jpc_pi_nextrpcl(jpc_pi_t *): Assertion
+  `pi->prcno pirlvl->numprcs' failed.
+- bsc#1010977, CVE-2016-9395: jas_seq.c:90: jas_matrix_t
+  *jas_seq2d_create(int, int, int, int): Assertion `xstart
+  <= xend && ystart <= yend' failed.
+- Other bugs fixed in current version:
+  * bsc#1010774, CVE-2016-9390: jas_seq.c:90: jas_matrix_t
+*jas_seq2d_create(int, int, int, int): Assertion `xstart <=
+xend && ystart <= yend' failed.
+  * bsc#1010782, CVE-2016-9391: jpc_bs.c:197: long
+jpc_bitstream_getbits(jpc_bitstream_t *, int): Assertion
+`n >= 0 && n < 32' failed.
+  * bsc#1010968, CVE-2016-9389: Assertion `((c1)->numcols_) ==
+numcols && ((c2)->numcols_) == numcols' failed.
+  * bsc#1010975, CVE-2016-9388: ras_dec.c:330: int
+ras_getcmap(jas_stream_t *, ras_hdr_t *, ras_cmap_t *):
+Assertion `numcolors <= 256' failed.
+  * bsc#1010960, CVE-2016-9387: jas_seq.c:90: jas_matrix<= yend'
+failed.
+
+---
+Tue Jul 11 10:45:59 UTC 2017 - fst...@suse.com
+
+- Added patch:
+  * jasper-CVE-2016-9262.patch
++ Fix for Multiple overflow vulnerabilities leading to use
+  after free (bsc#1009994, CVE-2016-9262)
+
+---
+Tue Jul 11 09:02:39 UTC 2017 - fst...@suse.com
+
+- Added patch:
+  * jasper-CVE-2017-150.patch
++ Upstream fix for NULL Pointer Dereference jp2_encode
+  (bsc#1047958, CVE-2017-150)
+
+---

New:

  jasper-CVE-2016-9262.patch
  jasper-CVE-2017-150.patch



Other differences:
--
++ jasper.spec ++
--- /var/tmp/diff_new_pack.54fZeR/_old  2017-07-17 09:02:01.021180344 +0200
+++ /var/tmp/diff_new_pack.54fZeR/_new  2017-07-17 09:02:01.021180344 +0200
@@ -36,6 +36,8 @@
 Patch8: jasper-CVE-2016-9600.patch
 Patch9: jasper-CVE-2016-9583.patch
 Patch10:jasper-CVE-2017-6850.patch
+Patch11:jasper-CVE-2017-150.patch
+Patch12:jasper-CVE-2016-9262.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  gcc-c++
@@ -95,6 +97,8 @@
 %patch8 -p1
 %patch9 -p1
 %patch10 -p1
+%patch11 -p1
+%patch12 -p1
 
 %build
 libtoolize --force --copy --install

++ jasper-CVE-2016-9262.patch ++
diff -urEbwB jasper-1.900.14/src/libjasper/base/jas_image.c 
jasper-1.900.14.new/src/libjasper/base/jas_image.c
--- jasper-1.900.14/src/libjasper/base/jas_image.c  2017-07-11 
12:01:22.628016305 +0200
+++ jasper-1.900.14.new/src/libjasper/base/jas_image.c  2017-07-11 
12:38:10.115887712 +0200
@@ -78,6 +78,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include "jasper/jas_math.h"
 #include "jasper/jas_image.h"
@@ -333,8 +334,8 @@
// Compute the number of samples in the image component, while 
protecting
// against overflow.
// size = cmpt->width_ * cmpt->height_ * cmpt->cps_;
-   if (!jas_safe_size_mul(cmpt->width_, cmpt->height_, &size) ||
- !jas_safe_size_mul(size, cmpt->cps_, &size)) {
+   if (!jas_safe_size_mul3(cmpt->width_, cmpt->height_, cmpt->cps_, &size) 
||
+   size > INT_MAX) {
goto error;
}
cmpt->stream_ = (inmem) ? jas_stream_memopen(0, size) :
diff -urEbwB jasper-1.900.14/src/libjasper/include/jasper/jas_math.h 
jasper-1.900.14.new/src/libjasper/include/jasper/jas_math.h
--- jasper-1.900.14/src/libjasper/include/jasper/jas_math.h 2017-07-11 
12:01:22.616016305 +0200
+++ jasper-1.900.14.new/src/libjasper/include/jasper/jas_math.h 2017-07-11 
12:42:52.798047647

commit kcm_sddm for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package kcm_sddm for openSUSE:Factory 
checked in at 2017-07-17 09:01:30

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


Package is "kcm_sddm"

Mon Jul 17 09:01:30 2017 rev:41 rq:509427 version:5.10.3

Changes:

--- /work/SRC/openSUSE:Factory/kcm_sddm/kcm_sddm.changes2017-07-02 
13:33:43.928678843 +0200
+++ /work/SRC/openSUSE:Factory/.kcm_sddm.new/kcm_sddm.changes   2017-07-17 
09:01:52.534375412 +0200
@@ -1,0 +2,11 @@
+Tue Jul 11 11:34:41 UTC 2017 - fab...@ritter-vogt.de
+
+- Add upstream patch to fix parsing of certain session desktop files 
(kde#381982):
+  * 0001-Session-file-parser-Support-sections-and-respect-the.patch
+- Add patch to avoid showing default.desktop as duplication (kde#381982):
+  * 0002-Support-default.session-symlink.patch
+- Keep set-default-session-to-plasma5-for-autologin.patch as-is
+  to not break on 42.2 (no default.desktop), plasma5.desktop still
+  makes sense
+
+---

New:

  0001-Session-file-parser-Support-sections-and-respect-the.patch
  0002-Support-default.session-symlink.patch



Other differences:
--
++ kcm_sddm.spec ++
--- /var/tmp/diff_new_pack.3wQpm4/_old  2017-07-17 09:01:53.130291499 +0200
+++ /var/tmp/diff_new_pack.3wQpm4/_new  2017-07-17 09:01:53.134290936 +0200
@@ -26,7 +26,11 @@
 Url:https://projects.kde.org/projects/kdereview/sddm-kcm/repository
 Source: 
http://download.kde.org/stable/plasma/%{version}/sddm-kcm-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE set-default-session-to-plasma5-for-autologin.patch 
boo#951886 wba...@tmo.at -- set the default autologin session to plasma5.desktop
-Patch:  set-default-session-to-plasma5-for-autologin.patch
+Patch1: set-default-session-to-plasma5-for-autologin.patch
+# PATCH-FIX-UPSTREAM
+Patch2: 0001-Session-file-parser-Support-sections-and-respect-the.patch
+# PATCH-FIX-OPENSUSE
+Patch3: 0002-Support-default.session-symlink.patch
 BuildRequires:  extra-cmake-modules >= 1.0.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  cmake(KF5Archive)
@@ -63,7 +67,9 @@
 %lang_package
 %prep
 %setup -q -n sddm-kcm-%{version}
-%patch -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %build
   %cmake_kf5 -d build

++ 0001-Session-file-parser-Support-sections-and-respect-the.patch ++
>From 65dc9de7c45d5ea4affaa6bf9e6601a000c3e321 Mon Sep 17 00:00:00 2001
From: Fabian Vogt 
Date: Tue, 11 Jul 2017 13:05:37 +0200
Subject: [PATCH] Session file parser: Support sections and respect the Hidden
 property

Summary:
Some desktop files have multiple sections, but for now we're only
interested in [Desktop Entry]. Without this patch, every entry was seen
as part of the [Desktop Entry] session, resulting in values getting
overwritten.

Additionally, the Hidden=true property specifies that the desktop file
needs to be treated like it was non-existant.

Same as https://github.com/sddm/sddm/pull/821 for sddm.

BUG: 381982

Test Plan:
Installed the KCM, now there are no duplicate sessions and the right
Name is shown for icewm-session.desktop.

Reviewers: #plasma

Subscribers: plasma-devel

Tags: #plasma

Differential Revision: https://phabricator.kde.org/D6626
---
 src/sessionmodel.cpp | 22 --
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/src/sessionmodel.cpp b/src/sessionmodel.cpp
index d4aa025..9e52b12 100644
--- a/src/sessionmodel.cpp
+++ b/src/sessionmodel.cpp
@@ -65,9 +65,22 @@ void SessionModel::loadDir(const QString &path, SessionType 
type)
 if (!inputFile.open(QIODevice::ReadOnly))
 continue;
 SessionPtr si { new Session { session, "", "", "" } };
+bool isHidden = false;
+QString current_section;
 QTextStream in(&inputFile);
 while (!in.atEnd()) {
 QString line = in.readLine();
+
+if (line.startsWith(QLatin1String("["))) {
+// The section name ends before the last ] before the start of 
a comment
+int end = line.lastIndexOf(QLatin1Char(']'), 
line.indexOf(QLatin1Char('#')));
+if (end != -1)
+current_section = line.mid(1, end - 1);
+}
+
+if (current_section != QLatin1String("Desktop Entry"))
+continue; // We are only interested in the "Desktop Entry" 
section
+
 if (line.startsWith("Name=")) {
 si->name = line.mid(5);
 if (type == SessionTypeWayland) {
@@ -79,9 +92,14 @@ void SessionModel::loadDir(const QString &path, SessionType 
type)
 si->exec = line.mid(5);
 if

commit perl-Exception-Class for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package perl-Exception-Class for 
openSUSE:Factory checked in at 2017-07-17 09:01:10

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


Package is "perl-Exception-Class"

Mon Jul 17 09:01:10 2017 rev:16 rq:509387 version:1.43

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Exception-Class/perl-Exception-Class.changes
2017-01-11 12:05:30.170605016 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Exception-Class.new/perl-Exception-Class.changes
   2017-07-17 09:01:49.198845103 +0200
@@ -1,0 +2,12 @@
+Mon Jul 10 05:31:47 UTC 2017 - co...@suse.com
+
+- updated to 1.43
+   see /usr/share/doc/packages/perl-Exception-Class/Changes
+
+  1.432017-07-09
+  
+  - The full_message() method in Exception::Class::Base now calls message()
+instead of accessing the object's hash key. This makes it easier to 
override
+message() in a subclass. Patch by Alexander Batyrshin. PR #11.
+
+---

Old:

  Exception-Class-1.42.tar.gz

New:

  Exception-Class-1.43.tar.gz



Other differences:
--
++ perl-Exception-Class.spec ++
--- /var/tmp/diff_new_pack.17sa4K/_old  2017-07-17 09:01:49.842754431 +0200
+++ /var/tmp/diff_new_pack.17sa4K/_new  2017-07-17 09:01:49.842754431 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   perl-Exception-Class
-Version:1.42
+Version:1.43
 Release:0
 %define cpan_name Exception-Class
 Summary:Module That Allows You to Declare Real Exception Classes in 
Perl
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Exception-Class/
-Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -80,6 +80,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING.md LICENSE README.md
+%doc Changes CONTRIBUTING.md README.md
+%license LICENSE
 
 %changelog

++ Exception-Class-1.42.tar.gz -> Exception-Class-1.43.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Exception-Class-1.42/CONTRIBUTING.md 
new/Exception-Class-1.43/CONTRIBUTING.md
--- old/Exception-Class-1.42/CONTRIBUTING.md2017-01-04 21:52:24.0 
+0100
+++ new/Exception-Class-1.43/CONTRIBUTING.md2017-07-09 18:08:25.0 
+0200
@@ -106,7 +106,7 @@
 [Travis](https://travis-ci.org/) and the build status will be reported on the
 pull request page. If your build fails, please take a look at the output.
 
-## Tidyall
+## TidyAll
 
 This distribution uses
 [Code::TidyAll](https://metacpan.org/release/Code-TidyAll) to enforce a
@@ -128,4 +128,4 @@
 request to the .mailmap file to contain the correct mapping.
 
 This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 
0.013 from a
-template file originating in Dist-Zilla-PluginBundle-DROLSKY-0.78.
+template file originating in Dist-Zilla-PluginBundle-DROLSKY-0.85.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Exception-Class-1.42/Changes 
new/Exception-Class-1.43/Changes
--- old/Exception-Class-1.42/Changes2017-01-04 21:52:24.0 +0100
+++ new/Exception-Class-1.43/Changes2017-07-09 18:08:25.0 +0200
@@ -1,3 +1,10 @@
+1.432017-07-09
+
+- The full_message() method in Exception::Class::Base now calls message()
+  instead of accessing the object's hash key. This makes it easier to override
+  message() in a subclass. Patch by Alexander Batyrshin. PR #11.
+
+
 1.422017-01-04
 
 - Generated exception classes are now added to %INC. If you subclass a
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Exception-Class-1.42/MANIFEST 
new/Exception-Class-1.43/MANIFEST
--- old/Exception-Class-1.42/MANIFEST   2017-01-04 21:52:24.0 +0100
+++ new/Exception-Class-1.43/MANIFEST   2017-07-09 18:08:25.0 +0200
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v6.008.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v6.009.
 CONTRIBUTING.md
 Changes
 INSTALL
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Exception-Class-1.42/META.json 
new/Exception-Class-1.43/META.json
--- old/Exception-Class-1.42/META.json  2017-01-04 21:52:24.0 +0100
+++ new/Exception-

commit ortp for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package ortp for openSUSE:Factory checked in 
at 2017-07-17 09:02:10

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


Package is "ortp"

Mon Jul 17 09:02:10 2017 rev:12 rq:509858 version:1.0.1

Changes:

--- /work/SRC/openSUSE:Factory/ortp/ortp.changes2017-06-28 
10:34:52.603343002 +0200
+++ /work/SRC/openSUSE:Factory/.ortp.new/ortp.changes   2017-07-17 
09:02:11.407717759 +0200
@@ -1,0 +2,5 @@
+Wed Jul  5 22:13:40 UTC 2017 - jeng...@inai.de
+
+- Add deps.diff to fix the build of ortp users such as libosmo-abis.
+
+---

New:

  deps.diff



Other differences:
--
++ ortp.spec ++
--- /var/tmp/diff_new_pack.wNqR9X/_old  2017-07-17 09:02:12.363583157 +0200
+++ /var/tmp/diff_new_pack.wNqR9X/_new  2017-07-17 09:02:12.363583157 +0200
@@ -28,6 +28,7 @@
 Url:https://linphone.org/technical-corner/ortp/overview
 Source: 
https://linphone.org/releases/sources/%{name}/%{name}-%{version}.tar.gz
 Source99:   baselibs.conf
+Patch1: deps.diff
 BuildRequires:  cmake >= 3.0
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
@@ -62,6 +63,7 @@
 
 %prep
 %setup -q
+%patch -P 1 -p1
 
 %build
 %cmake \

++ deps.diff ++
From: Jan Engelhardt 
Date: 2017-07-06 00:16:45.404844863 +0200

ortp/rtpsession.h includes bctoolbox/list.h, therefore must
Require it in some form (pkgconfig / rpm - cohose pkgconfig).
---
 ortp.pc.in |1 +
 1 file changed, 1 insertion(+)

Index: ortp-1.0.1/ortp.pc.in
===
--- ortp-1.0.1.orig/ortp.pc.in
+++ ortp-1.0.1/ortp.pc.in
@@ -8,3 +8,4 @@ Description: Implement the RFC3550 (RTP)
 Version: @ORTP_PKGCONFIG_VERSION@
 Libs: -L@libdir@ -lortp @ORTPDEPS_LIBS@
 Cflags: -I@includedir@ @ORTPDEPS_CFLAGS@
+Requires: bctoolbox



commit perl-Specio for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package perl-Specio for openSUSE:Factory 
checked in at 2017-07-17 09:01:16

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


Package is "perl-Specio"

Mon Jul 17 09:01:16 2017 rev:2 rq:509396 version:0.38

Changes:

--- /work/SRC/openSUSE:Factory/perl-Specio/perl-Specio.changes  2017-06-08 
15:02:01.795264206 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Specio.new/perl-Specio.changes 
2017-07-17 09:01:50.166708814 +0200
@@ -1,0 +2,11 @@
+Sun Jul  2 06:13:44 UTC 2017 - co...@suse.com
+
+- updated to 0.38
+   see /usr/share/doc/packages/perl-Specio/Changes
+
+  0.38 2017-07-01
+  
+  - Simplify checks for overloading to not call overload::Overloaded(). Just
+checking the return value of overload::Method() is sufficient.
+
+---

Old:

  Specio-0.37.tar.gz

New:

  Specio-0.38.tar.gz



Other differences:
--
++ perl-Specio.spec ++
--- /var/tmp/diff_new_pack.vtVAlU/_old  2017-07-17 09:01:50.766624337 +0200
+++ /var/tmp/diff_new_pack.vtVAlU/_new  2017-07-17 09:01:50.766624337 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Specio
-Version:0.37
+Version:0.38
 Release:0
 %define cpan_name Specio
 Summary:Type constraints and coercions for Perl

++ Specio-0.37.tar.gz -> Specio-0.38.tar.gz ++
 1816 lines of diff (skipped)




commit ftgl for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package ftgl for openSUSE:Factory checked in 
at 2017-07-17 09:02:04

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


Package is "ftgl"

Mon Jul 17 09:02:04 2017 rev:29 rq:509846 version:2.1.3~rc5

Changes:

--- /work/SRC/openSUSE:Factory/ftgl/ftgl.changes2015-04-16 
14:12:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.ftgl.new/ftgl.changes   2017-07-17 
09:02:05.256583935 +0200
@@ -1,0 +2,21 @@
+Wed Jul 12 11:11:59 UTC 2017 - jeng...@inai.de
+
+- Remove --with-pic which is only for static libs.
+- RPM group fix.
+- Trim redundant wording from description.
+
+---
+Wed Jul 12 06:42:35 UTC 2017 - tchva...@suse.com
+
+- Trim a bit description and fix group for demo
+
+---
+Wed Jun 28 13:15:29 UTC 2017 - kkae...@suse.com
+
+- add install-FTVectoriser.h.patch
+  install FTVectoriser.h, required by tulip-5.0
+
+- fix documentation build
+  (add texlive-epstopdf and ghostscript to BuildRequires)
+
+---

New:

  install-FTVectoriser.h.patch



Other differences:
--
++ ftgl.spec ++
--- /var/tmp/diff_new_pack.hOSPji/_old  2017-07-17 09:02:05.976482562 +0200
+++ /var/tmp/diff_new_pack.hOSPji/_new  2017-07-17 09:02:05.976482562 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ftgl
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,95 +16,52 @@
 #
 
 
+%define libname libftgl2
 Name:   ftgl
 Version:2.1.3~rc5
 Release:0
 Summary:Library for Using Arbitrary Fonts in OpenGL Applications
 License:LGPL-2.1+
-Group:  System/Libraries
+Group:  Development/Libraries/C and C++
 Url:http://ftgl.wiki.sourceforge.net/
 Source0:
http://sourceforge.net/projects/ftgl/files/FTGL%%20Source/2.1.3%%7Erc5/%{name}-2.1.3-rc5.tar.bz2
 Source1:baselibs.conf
 Patch0: %{name}-autoreconf.patch
 Patch1: ftgl-pkgconfig.patch
 Patch2: ftgl-fix-no-add-needed.patch
+# PATCH-FIX-OPENSUSE: install FTVectoriser.h, required by tulip-5.0; 
kkae...@suse.de
+Patch3: install-FTVectoriser.h.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  doxygen
 BuildRequires:  freeglut-devel
 BuildRequires:  gcc-c++
+BuildRequires:  ghostscript
 BuildRequires:  libtool
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
+BuildRequires:  texlive-epstopdf
 BuildRequires:  pkgconfig(freetype2)
 BuildRequires:  pkgconfig(glu)
 BuildRequires:  pkgconfig(ice)
 BuildRequires:  pkgconfig(libdrm)
 BuildRequires:  pkgconfig(x11)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-FTGL is a free open source library that enables developers to use
-arbitrary fonts in their OpenGL (www.opengl.org) applications.
-
-Unlike other OpenGL font libraries, FTGL uses standard font file
-formats, so there is no need of a preprocessing step to convert the
-high quality font data into a lesser quality, proprietary format.
-
-FTGL uses the Freetype (www.freetype.org) font library to open and
-'decode' the fonts. It then takes that output and stores it in a format
-that is most efficient for OpenGL rendering.
-
-The supported rendering modes are:
-
-- Bit maps
-
-- Antialiased Pix maps
-
-- Outlines
-
-- Polygon meshes
-
-- Extruded polygon meshes
-
-- Texture maps
-
-- Buffer maps
+FTGL is a C++ library using Freetype2 to render fonts in OpenGL
+applications. FTGL supports bitmaps, pixmaps, texture maps, outlines,
+polygon mesh, and extruded polygon rendering modes.
 
 %package -n libftgl2
 Summary:Library for Using Arbitrary Fonts in OpenGL Applications
 Group:  System/Libraries
-Provides:   ftgl:%{_libdir}/libftgl.so.0
 
 %description -n libftgl2
-FTGL is a free open source library that enables developers to use
-arbitrary fonts in their OpenGL (www.opengl.org) applications.
-
-Unlike other OpenGL font libraries, FTGL uses standard font file
-formats, so there is no need of a preprocessing step to convert the
-high quality font data into a lesser quality, proprietary format.
-
-FTGL uses the Freetype (www.freetype.org) font library to open and
-'decode' the fonts. It then takes that output and stores it in a format
-that is most efficient for OpenGL rendering.
-
-The supported rendering modes are:
-
-- Bit maps
-
-- Antialiased Pix map

commit mariadb for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package mariadb for openSUSE:Factory checked 
in at 2017-07-17 09:00:57

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


Package is "mariadb"

Mon Jul 17 09:00:57 2017 rev:58 rq:509376 version:10.1.25

Changes:

--- /work/SRC/openSUSE:Factory/mariadb/mariadb.changes  2017-05-30 
16:10:47.485683357 +0200
+++ /work/SRC/openSUSE:Factory/.mariadb.new/mariadb.changes 2017-07-17 
09:01:42.547781666 +0200
@@ -1,0 +2,19 @@
+Mon Jul 10 11:30:59 UTC 2017 - kstreit...@suse.com
+
+- update to MariaDB 10.1.25 GA
+  * notable changes
+* MariaDB can no longer be compiled with OpenSSL version 0.9.8
+  and below. The last 0.9.8 release was in December 2015, it is
+  out of support and is no longer getting security fixes.
+* MariaDB Backup is now beta
+  * release notes and changelog:
+* https://mariadb.com/kb/en/mariadb/mariadb-10125-release-notes
+* https://mariadb.com/kb/en/mariadb/mariadb-10125-changelog
+  * refresh mariadb-10.1.12-fortify-and-O.patch
+  * remove mariadb-10.1.22-xtradb_null_checks.patch (MDEV-12358),
+a fix was merged upstream
+  * update file lists for new man-pages and tools
+- switch from 'Restart=on-failure' to 'Restart=on-abort' in
+  mysql.service in order to follow the upstream
+ 
+---

Old:

  mariadb-10.1.22.tar.gz

New:

  mariadb-10.1.25.tar.gz



Other differences:
--
++ mariadb.spec ++
--- /var/tmp/diff_new_pack.conEze/_old  2017-07-17 09:01:45.815321551 +0200
+++ /var/tmp/diff_new_pack.conEze/_new  2017-07-17 09:01:45.823320425 +0200
@@ -43,7 +43,7 @@
 %define with_cassandra 0
 %endif
 Name:   mariadb
-Version:10.1.22
+Version:10.1.25
 Release:0
 Summary:Server part of %{pretty_name}
 License:SUSE-GPL-2.0-with-FLOSS-exception
@@ -484,7 +484,7 @@
 %endif
 
 # Generate various filelists
-filelist innochecksum my_print_defaults myisam_ftdump myisamchk myisamlog 
myisampack mysql_fix_extensions mysql_fix_privilege_tables mysql_ssl_rsa_setup 
mysql_install_db mysql_secure_installation mysql_upgrade mysqlbug mysqld 
mysqld_multi mysqld_safe mysqlbinlog mysqldumpslow mysqlmanager mroonga 
resolve_stack_dump resolveip {m,}aria_chk {m,}aria_dump_log {m,}aria_ftdump 
{m,}aria_pack {m,}aria_read_log xtstat tokuft_logprint tokuftdump >mysql.files
+filelist galera_new_cluster galera_recovery innochecksum 
mariadb-service-convert my_print_defaults myisam_ftdump myisamchk myisamlog 
myisampack mysql_fix_extensions mysql_fix_privilege_tables mysql_ssl_rsa_setup 
mysql_install_db mysql_secure_installation mysql_upgrade mysqlbug mysqld 
mysqld_multi mysqld_safe mysqlbinlog mysqldumpslow mysqlmanager mroonga 
resolve_stack_dump resolveip {m,}aria_chk {m,}aria_dump_log {m,}aria_ftdump 
{m,}aria_pack {m,}aria_read_log xtstat tokuft_logprint tokuft_logdump 
tokuftdump >mysql.files
 
 filelist mysql mysqladmin mysqlcheck mysqldump mysqlimport mysqlshow 
mysql_config_editor mysqld_safe_helper >mysql-client.files
 # The dialog stuff is mariadb only
@@ -506,7 +506,7 @@
 
 filelist mysql_client_test mysql_client_test_embedded mysql_waitpid mysqltest 
mysqltest_embedded >mysql-test.files
 
-filelist msql2mysql mysql_plugin mysql_convert_table_format mysql_find_rows 
mysql_setpermission mysql_tzinfo_to_sql mysql_zap mysqlaccess mysqlhotcopy 
perror replace mysql_embedded %{name}_mytop hsclient %{_bindir}/wsrep* 
%{_datadir}/mysql/wsrep_notify >mysql-tools.files
+filelist msql2mysql mysql_plugin mysql_convert_table_format mysql_find_rows 
mysql_setpermission mysql_tzinfo_to_sql mysql_zap mysqlaccess mysqlhotcopy 
perror replace mysql_embedded %{name}_mytop hsclient wsrep_sst_common 
wsrep_sst_mariabackup wsrep_sst_mysqldump wsrep_sst_rsync 
wsrep_sst_xtrabackup-v2 wsrep_sst_xtrabackup %{_datadir}/mysql/wsrep_notify 
>mysql-tools.files
 
 filelist ndbd ndbmtd ndbd_redo_log_reader >mysql-ndb-storage.files
 
@@ -775,6 +775,8 @@
 %{_bindir}/galera_new_cluster
 %{_bindir}/galera_recovery
 %{_bindir}/mariadb-service-convert
+%{_bindir}/mariabackup
+%{_bindir}/mbstream
 %dir %{_datadir}/mysql/policy
 %dir %{_datadir}/mysql/policy/apparmor
 %{_datadir}/mysql/policy/apparmor/README
@@ -832,6 +834,9 @@
 %files test -f mysql-test.files
 %defattr(-, root, root)
 %{_bindir}/my_safe_process
+%if "%{extra_provides}" == "mariadb_101"
+%{_mandir}/man1/my_safe_process.1*
+%endif
 %{_mandir}/man1/mysql-test-run.pl.1*
 %{_mandir}/man1/mysql-stress-test.pl.1*
 %{_datadir}/mysql-test/valgrind.supp

++ configuration-tweaks.tar.xz ++

++ mariadb-10.1.22.tar.gz -> mariadb-10.1.25.tar.gz ++
/work/SRC/openSUSE:Factory/mariad

commit mpg123 for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package mpg123 for openSUSE:Factory checked 
in at 2017-07-17 09:01:23

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


Package is "mpg123"

Mon Jul 17 09:01:23 2017 rev:4 rq:509420 version:1.25.2

Changes:

--- /work/SRC/openSUSE:Factory/mpg123/mpg123.changes2017-07-10 
10:59:47.808588201 +0200
+++ /work/SRC/openSUSE:Factory/.mpg123.new/mpg123.changes   2017-07-17 
09:01:51.034586604 +0200
@@ -1,0 +2,17 @@
+Tue Jul 11 10:36:15 UTC 2017 - aloi...@gmx.com
+
+- Update to version 1.25.2
+  libmpg123:
+  * Extend pow tables for layer III to properly handle files
+with i-stereo and 5-bit scalefactors. Never observed them
+for real, just as fuzzed input to trigger the read overflow.
+Note: This one goes on record as CVE-2017-11126, calling
+remote denial of service. While the accesses are out of
+bounds for the pow tables, they still are safely within
+libmpg123's memory (other static tables). Just wrong values
+are used for computation, no actual crash unless you use
+something like GCC's AddressSanitizer, nor any information
+disclosure.
+  * Avoid left-shifts of negative integers in layer I decoding.
+
+---

Old:

  mpg123-1.25.1.tar.bz2
  mpg123-1.25.1.tar.bz2.sig

New:

  mpg123-1.25.2.tar.bz2
  mpg123-1.25.2.tar.bz2.sig



Other differences:
--
++ mpg123.spec ++
--- /var/tmp/diff_new_pack.djQobD/_old  2017-07-17 09:01:51.606506070 +0200
+++ /var/tmp/diff_new_pack.djQobD/_new  2017-07-17 09:01:51.610505507 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mpg123
-Version:1.25.1
+Version:1.25.2
 Release:0
 Summary:Console MPEG audio player and decoder library
 License:LGPL-2.1

++ mpg123-1.25.1.tar.bz2 -> mpg123-1.25.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mpg123-1.25.1/NEWS new/mpg123-1.25.2/NEWS
--- old/mpg123-1.25.1/NEWS  2017-07-03 01:19:16.0 +0200
+++ new/mpg123-1.25.2/NEWS  2017-07-11 11:36:46.0 +0200
@@ -1,3 +1,17 @@
+1.25.2
+--
+
+- libmpg123:
+-- Extend pow tables for layer III to properly handle files with i-stereo and
+   5-bit scalefactors. Never observed them for real, just as fuzzed input to
+   trigger the read overflow. Note: This one goes on record as CVE-2017-11126,
+   calling remote denial of service. While the accesses are out of bounds for
+   the pow tables, they still are safely within libmpg123's memory (other
+   static tables). Just wrong values are used for computation, no actual crash
+   unless you use something like GCC's AddressSanitizer, nor any information
+   disclosure.
+-- Avoid left-shifts of negative integers in layer I decoding.
+
 1.25.1: Hot Fuzz
 ---
 - libmpg123:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mpg123-1.25.1/configure new/mpg123-1.25.2/configure
--- old/mpg123-1.25.1/configure 2017-07-03 01:19:32.0 +0200
+++ new/mpg123-1.25.2/configure 2017-07-11 11:37:28.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for mpg123 1.25.1.
+# Generated by GNU Autoconf 2.69 for mpg123 1.25.2.
 #
 # Report bugs to .
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='mpg123'
 PACKAGE_TARNAME='mpg123'
-PACKAGE_VERSION='1.25.1'
-PACKAGE_STRING='mpg123 1.25.1'
+PACKAGE_VERSION='1.25.2'
+PACKAGE_STRING='mpg123 1.25.2'
 PACKAGE_BUGREPORT='maintai...@mpg123.org'
 PACKAGE_URL=''
 
@@ -1567,7 +1567,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures mpg123 1.25.1 to adapt to many kinds of systems.
+\`configure' configures mpg123 1.25.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1637,7 +1637,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of mpg123 1.25.1:";;
+ short | recursive ) echo "Configuration of mpg123 1.25.2:";;
esac
   cat <<\_ACEOF
 
@@ -1863,7 +1863,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-mpg123 configure 1.25.1
+mpg123 configure 1.25.2
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2469,7 +2469,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by mpg123 $as_me 1

commit dracut for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2017-07-17 09:02:47

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


Package is "dracut"

Mon Jul 17 09:02:47 2017 rev:110 rq:510121 version:044.1

Changes:

--- /work/SRC/openSUSE:Factory/dracut/dracut.changes2017-06-20 
09:33:48.327815641 +0200
+++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes   2017-07-17 
09:02:49.814309450 +0200
@@ -1,0 +2,18 @@
+Thu Jul 13 15:15:29 UTC 2017 - daniel.molken...@suse.com
+
+- switch fips checking to use the libkcapi based fipscheck toolset 
(bsc#1048565)
+ * adds 0527-switch-fips-checking-to-use-the-libkcapi-based-fipsc.patch
+
+---
+Wed Jul 12 12:27:52 UTC 2017 - daniel.molken...@suse.com
+
+- iscsiroot: call handle_firmware only for non-iface invocations (bsc#1032284)
+ * adds 0526-iscsiroot-call-handle_firmware-only-for-non-iface-in.patch
+
+---
+Tue Jul 11 09:55:00 UTC 2017 - daniel.molken...@suse.com
+
+- bail out if module directory does not exist (bsc#1043900)
+  * adds 0525-backport-bail-out-if-module-directory-does-not-exist.patch
+
+---
@@ -5 +23 @@
-  adds 0524-Suppress-nonsensical-error-message-bsc-1032029.patch
+  * adds 0524-Suppress-nonsensical-error-message-bsc-1032029.patch

New:

  0525-backport-bail-out-if-module-directory-does-not-exist.patch
  0526-iscsiroot-call-handle_firmware-only-for-non-iface-in.patch
  0527-switch-fips-checking-to-use-the-libkcapi-based-fipsc.patch



Other differences:
--
++ dracut.spec ++
--- /var/tmp/diff_new_pack.FKDQSf/_old  2017-07-17 09:02:52.365950132 +0200
+++ /var/tmp/diff_new_pack.FKDQSf/_new  2017-07-17 09:02:52.369949568 +0200
@@ -206,6 +206,9 @@
 Patch522:   0522-Fix-typo-from-commit-3f1cdb520.patch
 Patch523:   0523-98dracut-systemd-Fix-module-force-loading-with-syste.patch
 Patch524:   0524-Suppress-nonsensical-error-message-bsc-1032029.patch
+Patch525:   0525-backport-bail-out-if-module-directory-does-not-exist.patch
+Patch526:   0526-iscsiroot-call-handle_firmware-only-for-non-iface-in.patch
+Patch527:   0527-switch-fips-checking-to-use-the-libkcapi-based-fipsc.patch
 
 BuildRequires:  asciidoc
 BuildRequires:  bash
@@ -253,6 +256,7 @@
 Requires:   fipscheck
 Requires:   libcryptsetup4-hmac
 Requires:   libgcrypt20-hmac
+Requires:   libkcapi-tools
 
 %description fips
 This package requires everything which is needed to build an
@@ -436,6 +440,9 @@
 %patch522 -p1
 %patch523 -p1
 %patch524 -p1
+%patch525 -p1
+%patch526 -p1
+%patch527 -p1
 
 %build
 %configure\

++ 0524-Suppress-nonsensical-error-message-bsc-1032029.patch ++
--- /var/tmp/diff_new_pack.FKDQSf/_old  2017-07-17 09:02:52.785890996 +0200
+++ /var/tmp/diff_new_pack.FKDQSf/_new  2017-07-17 09:02:52.789890433 +0200
@@ -1,4 +1,4 @@
-From 33f374affcd65741dcef747c7cb57482d9ff3103 Mon Sep 17 00:00:00 2001
+From a651341debaf284101cb32c27373ed9a0dec7107 Mon Sep 17 00:00:00 2001
 From: Daniel Molkentin 
 Date: Mon, 19 Jun 2017 13:42:43 +0200
 Subject: [PATCH] Suppress nonsensical error message (bsc#1032029)

++ 0525-backport-bail-out-if-module-directory-does-not-exist.patch ++
>From cb1c81fc7f6bc72a72de1f87847924572aa39b54 Mon Sep 17 00:00:00 2001
From: Daniel Molkentin 
Date: Thu, 29 Jun 2017 17:18:37 +0200
Subject: [PATCH] backport: bail out if module directory does not exist

this basically reverts commit
05214a0bedc084a41c35a128609745ad04a0c6cf

if people want to build the initramfs without kernel modules,
then --no-kernel should be specified

Upstream-Commit: 106255afd46ea2be1d035aca0c5695186a3f2c41
---
 dracut.sh | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dracut.sh b/dracut.sh
index 1016d5ae..492ecbf7 100755
--- a/dracut.sh
+++ b/dracut.sh
@@ -632,12 +632,6 @@ if ! [[ $kernel ]]; then
 kernel=$(uname -r)
 fi
 
-if [[ $kernel ]]; then
-if ! [[ -d /lib/modules/$kernel ]] && [[ $no_kernel != yes ]]; then
-printf -- "Kernel version $kernel has no module directory 
/lib/modules/$kernel\n" >&2
-fi
-fi
-
 if ! [[ $outfile ]]; then
 [[ -f /etc/machine-id ]] && read MACHINE_ID < /etc/machine-id
 
@@ -892,6 +886,12 @@ else
 exit 1
 fi
 
+if [[ $no_kernel != yes ]] && ! [[ -d $srcmods ]]; then
+printf "%s\n" "dracut: Cannot find module directory $srcmods" >&2
+printf "%s\n" "dracut: and --no-kernel was not specified" >&2
+exit 1
+fi
+
 if ! [[ $print_cmdline ]]; then
 inst /bin/sh
 if ! $DRACUT_INSTALL ${initdir:+

commit uid_wrapper for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package uid_wrapper for openSUSE:Factory 
checked in at 2017-07-17 09:02:27

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


Package is "uid_wrapper"

Mon Jul 17 09:02:27 2017 rev:6 rq:510083 version:1.2.2

Changes:

--- /work/SRC/openSUSE:Factory/uid_wrapper/uid_wrapper.changes  2016-04-01 
13:01:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.uid_wrapper.new/uid_wrapper.changes 
2017-07-17 09:02:33.920547577 +0200
@@ -1,0 +2,7 @@
+Thu Jul 13 06:54:57 UTC 2017 - a...@cryptomilk.org
+
+- Update to version 1.2.2
+  * Added support for fork'ed and then exec'ed processes
+  * Added support for Alpha
+
+---

Old:

  uid_wrapper-1.2.1.tar.gz

New:

  uid_wrapper-1.2.2.tar.gz



Other differences:
--
++ uid_wrapper.spec ++
--- /var/tmp/diff_new_pack.y8LGgc/_old  2017-07-17 09:02:36.180229375 +0200
+++ /var/tmp/diff_new_pack.y8LGgc/_new  2017-07-17 09:02:36.184228812 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package uid_wrapper
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 # NOTE ##
 
 Name:   uid_wrapper
-Version:1.2.1
+Version:1.2.2
 Release:0
 
 Summary:A wrapper for privilege seperation

++ uid_wrapper-1.2.1.tar.gz -> uid_wrapper-1.2.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uid_wrapper-1.2.1/CMakeLists.txt 
new/uid_wrapper-1.2.2/CMakeLists.txt
--- old/uid_wrapper-1.2.1/CMakeLists.txt2016-03-16 14:53:33.0 
+0100
+++ new/uid_wrapper-1.2.2/CMakeLists.txt2017-07-13 08:41:33.0 
+0200
@@ -8,7 +8,7 @@
 
 set(APPLICATION_VERSION_MAJOR "1")
 set(APPLICATION_VERSION_MINOR "2")
-set(APPLICATION_VERSION_PATCH "1")
+set(APPLICATION_VERSION_PATCH "2")
 
 set(APPLICATION_VERSION 
"${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uid_wrapper-1.2.1/ChangeLog 
new/uid_wrapper-1.2.2/ChangeLog
--- old/uid_wrapper-1.2.1/ChangeLog 2016-03-16 14:53:22.0 +0100
+++ new/uid_wrapper-1.2.2/ChangeLog 2017-07-13 08:41:33.0 +0200
@@ -1,6 +1,10 @@
 ChangeLog
 ==
 
+version 1.2.2 (released 2107-07-13)
+  * Added support for fork'ed and then exec'ed processes
+  * Added support for Alpha
+
 version 1.2.1 (released 2016-03-16)
   * Documented missing options.
   * Fixed a comipilation issue with -O3.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uid_wrapper-1.2.1/src/uid_wrapper.c 
new/uid_wrapper-1.2.2/src/uid_wrapper.c
--- old/uid_wrapper-1.2.1/src/uid_wrapper.c 2016-02-17 17:15:13.0 
+0100
+++ new/uid_wrapper-1.2.2/src/uid_wrapper.c 2017-07-13 08:41:33.0 
+0200
@@ -407,6 +407,13 @@
if (handle != NULL) {
break;
}
+
+   /* glibc on Alpha and IA64 is libc.so.6.1 */
+   snprintf(soname, sizeof(soname), 
"libc.so.%d.1", i);
+   handle = dlopen(soname, flags);
+   if (handle != NULL) {
+   break;
+   }
}
 
uwrap.libc.handle = handle;
@@ -808,6 +815,66 @@
  * UWRAP ID HANDLING
  */
 
+#define GROUP_STRING_SIZE 16384
+
+/**
+ * This function exports all the IDs of the current user so if
+ * we fork and then exec we can setup uid_wrapper in the new process
+ * with those IDs.
+ */
+static void uwrap_export_ids(struct uwrap_thread *id)
+{
+   char groups_str[GROUP_STRING_SIZE] = {0};
+   size_t groups_str_size = sizeof(groups_str);
+   char unsigned_str[32] = {0};
+   int i;
+
+   /* UIDS */
+   snprintf(unsigned_str, sizeof(unsigned_str), "%u", id->ruid);
+   setenv("UID_WRAPPER_INITIAL_RUID", unsigned_str, 1);
+
+   snprintf(unsigned_str, sizeof(unsigned_str), "%u", id->euid);
+   setenv("UID_WRAPPER_INITIAL_EUID", unsigned_str, 1);
+
+   snprintf(unsigned_str, sizeof(unsigned_str), "%u", id->suid);
+   setenv

commit git for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package git for openSUSE:Factory checked in 
at 2017-07-17 09:02:21

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


Package is "git"

Mon Jul 17 09:02:21 2017 rev:200 rq:510035 version:2.13.3

Changes:

--- /work/SRC/openSUSE:Factory/git/git.changes  2017-06-30 18:41:15.259479929 
+0200
+++ /work/SRC/openSUSE:Factory/.git.new/git.changes 2017-07-17 
09:02:22.742121690 +0200
@@ -1,0 +2,12 @@
+Thu Jul 13 09:08:26 UTC 2017 - astie...@suse.com
+
+- git 2.13.3:
+  * various internal bug fixes
+  * Fix a  regression to "git rebase -i"
+  * Correct unaligned 32-bit access in pack-bitmap code
+  * Tighten error checks for invalid "git apply" input
+  * The split index code did not honor core.sharedrepository setting
+correctly
+  * Fix "git branch --list" handling of color.branch.local
+
+---

Old:

  git-2.13.2.tar.sign
  git-2.13.2.tar.xz

New:

  git-2.13.3.tar.sign
  git-2.13.3.tar.xz



Other differences:
--
++ git.spec ++
--- /var/tmp/diff_new_pack.v9AxAu/_old  2017-07-17 09:02:23.478018064 +0200
+++ /var/tmp/diff_new_pack.v9AxAu/_new  2017-07-17 09:02:23.478018064 +0200
@@ -26,7 +26,7 @@
 %endif
 
 Name:   git
-Version:2.13.2
+Version:2.13.3
 Release:0
 Summary:Fast, scalable, distributed revision control system
 License:GPL-2.0

++ git-2.13.2.tar.xz -> git-2.13.3.tar.xz ++
 2380 lines of diff (skipped)





commit libopenmpt for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package libopenmpt for openSUSE:Factory 
checked in at 2017-07-17 09:02:53

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


Package is "libopenmpt"

Mon Jul 17 09:02:53 2017 rev:5 rq:510210 version:0.2.8461~beta26

Changes:

--- /work/SRC/openSUSE:Factory/libopenmpt/libopenmpt.changes2017-06-20 
09:41:19.708174340 +0200
+++ /work/SRC/openSUSE:Factory/.libopenmpt.new/libopenmpt.changes   
2017-07-17 09:02:57.257261343 +0200
@@ -1,0 +2,6 @@
+Fri Jul 14 07:57:29 UTC 2017 - tchva...@suse.com
+
+- Version update to 0.2.8461-beta26 bsc#1048666 CVE-2017-11311:
+  * various small fixes and seciruity tweaks
+
+---

Old:

  libopenmpt-0.2.8043-beta23-autotools.tar.gz

New:

  libopenmpt-0.2.8461-beta26-autotools.tar.gz



Other differences:
--
++ libopenmpt.spec ++
--- /var/tmp/diff_new_pack.4YphYV/_old  2017-07-17 09:02:57.785187001 +0200
+++ /var/tmp/diff_new_pack.4YphYV/_new  2017-07-17 09:02:57.789186438 +0200
@@ -16,8 +16,8 @@
 #
 
 
-%define rev 0.2.8043
-%define beta beta23
+%define rev 0.2.8461
+%define beta beta26
 %define realver %{rev}-%{beta}
 %define libplug libmodplug1
 %define libopenmpt libopenmpt0

++ libopenmpt-0.2.8043-beta23-autotools.tar.gz -> 
libopenmpt-0.2.8461-beta26-autotools.tar.gz ++
 1723 lines of diff (skipped)




commit gstreamer for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gstreamer for openSUSE:Factory 
checked in at 2017-07-17 09:03:01

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


Package is "gstreamer"

Mon Jul 17 09:03:01 2017 rev:44 rq:510423 version:1.12.2

Changes:

--- /work/SRC/openSUSE:Factory/gstreamer/gstreamer.changes  2017-06-28 
10:32:56.615752442 +0200
+++ /work/SRC/openSUSE:Factory/.gstreamer.new/gstreamer.changes 2017-07-17 
09:03:07.427829129 +0200
@@ -1,0 +2,6 @@
+Fri Jul 14 11:40:32 UTC 2017 - zai...@opensuse.org
+
+- Update to version 1.12.2:
+  + Bugs fixed: bgo#784041, bgo#784932.
+
+---

Old:

  gstreamer-1.12.1.tar.xz

New:

  gstreamer-1.12.2.tar.xz



Other differences:
--
++ gstreamer.spec ++
--- /var/tmp/diff_new_pack.F59nWb/_old  2017-07-17 09:03:07.987750282 +0200
+++ /var/tmp/diff_new_pack.F59nWb/_new  2017-07-17 09:03:07.991749719 +0200
@@ -18,7 +18,7 @@
 
 Name:   gstreamer
 %define _name   gstreamer
-Version:1.12.1
+Version:1.12.2
 Release:0
 %define gst_branch 1.0
 Summary:Streaming-Media Framework Runtime

++ gstreamer-1.12.1.tar.xz -> gstreamer-1.12.2.tar.xz ++
 2894 lines of diff (skipped)




commit gstreamer-plugins-bad for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gstreamer-plugins-bad for 
openSUSE:Factory checked in at 2017-07-17 09:03:23

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


Package is "gstreamer-plugins-bad"

Mon Jul 17 09:03:23 2017 rev:60 rq:510510 version:1.12.2

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-bad/gstreamer-plugins-bad.changes  
2017-06-28 10:32:36.498598561 +0200
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-bad.new/gstreamer-plugins-bad.changes
 2017-07-17 09:03:34.871964428 +0200
@@ -1,0 +2,8 @@
+Fri Jul 14 11:49:56 UTC 2017 - zai...@opensuse.org
+
+- Update to version 1.12.2:
+  + Bugs fixed: bgo#764025, bgo#773159, bgo#782774, bgo#783028,
+bgo#783075, bgo#783244, bgo#784027, bgo#784059, bgo#784210,
+bgo#784439, bgo#784510, bgo#784755.
+
+---

Old:

  gst-plugins-bad-1.12.1.tar.xz

New:

  gst-plugins-bad-1.12.2.tar.xz



Other differences:
--
++ gstreamer-plugins-bad.spec ++
--- /var/tmp/diff_new_pack.HYWxRM/_old  2017-07-17 09:03:35.583864176 +0200
+++ /var/tmp/diff_new_pack.HYWxRM/_new  2017-07-17 09:03:35.591863050 +0200
@@ -23,7 +23,7 @@
 
 Name:   gstreamer-plugins-bad
 %define _name gst-plugins-bad
-Version:1.12.1
+Version:1.12.2
 Release:0
 %define gst_branch 1.0
 Summary:GStreamer Streaming-Media Framework Plug-Ins

++ gst-plugins-bad-1.12.1.tar.xz -> gst-plugins-bad-1.12.2.tar.xz ++
 8530 lines of diff (skipped)




commit openSUSE-EULAs for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package openSUSE-EULAs for openSUSE:Factory 
checked in at 2017-07-17 09:03:07

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


Package is "openSUSE-EULAs"

Mon Jul 17 09:03:07 2017 rev:13 rq:510433 version:84.87.20170615.dcb55c2

Changes:

--- /work/SRC/openSUSE:Factory/openSUSE-EULAs/openSUSE-EULAs.changes
2017-06-20 09:33:10.729119929 +0200
+++ /work/SRC/openSUSE:Factory/.openSUSE-EULAs.new/openSUSE-EULAs.changes   
2017-07-17 09:03:13.650952789 +0200
@@ -1,0 +2,6 @@
+Fri Jul 07 11:11:39 UTC 2017 - opensuse-packag...@opensuse.org
+
+- Update to version 84.87.20170615.dcb55c2:
+  * Translated using Weblate (Chinese (China))
+
+---

Old:

  openSUSE-EULAs-84.87.20170321.17c4011.tar.xz

New:

  openSUSE-EULAs-84.87.20170615.dcb55c2.tar.xz



Other differences:
--
++ openSUSE-EULAs.spec ++
--- /var/tmp/diff_new_pack.y1EtCr/_old  2017-07-17 09:03:14.242869436 +0200
+++ /var/tmp/diff_new_pack.y1EtCr/_new  2017-07-17 09:03:14.246868873 +0200
@@ -19,7 +19,7 @@
 %bcond_without  java
 
 Name:   openSUSE-EULAs
-Version:84.87.20170321.17c4011
+Version:84.87.20170615.dcb55c2
 Release:0
 Url:https://github.com/openSUSE/openSUSE-EULAs
 Summary:Collection of EULAs for openSUSE

++ _servicedata ++
--- /var/tmp/diff_new_pack.y1EtCr/_old  2017-07-17 09:03:14.290862677 +0200
+++ /var/tmp/diff_new_pack.y1EtCr/_new  2017-07-17 09:03:14.290862677 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/openSUSE/openSUSE-EULAs.git
-  17c4011de1743ce28fc7105f6d181792e1eeb64d
\ No newline at end of file
+  dcb55c2872ebd5d9c5d2fda2c59388e6e50f9ab7
\ No newline at end of file

++ openSUSE-EULAs-84.87.20170321.17c4011.tar.xz -> 
openSUSE-EULAs-84.87.20170615.dcb55c2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-EULAs-84.87.20170321.17c4011/Mesa-dri-nouveau/Mesa-dri-nouveau.zh_CN.po
 
new/openSUSE-EULAs-84.87.20170615.dcb55c2/Mesa-dri-nouveau/Mesa-dri-nouveau.zh_CN.po
--- 
old/openSUSE-EULAs-84.87.20170321.17c4011/Mesa-dri-nouveau/Mesa-dri-nouveau.zh_CN.po
2017-03-21 11:47:16.0 +0100
+++ 
new/openSUSE-EULAs-84.87.20170615.dcb55c2/Mesa-dri-nouveau/Mesa-dri-nouveau.zh_CN.po
2017-06-15 23:00:56.0 +0200
@@ -4,8 +4,8 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-10-27 15:27+0200\n"
-"PO-Revision-Date: 2017-03-21 10:47+\n"
-"Last-Translator: Chen jingcheng \n"
+"PO-Revision-Date: 2017-06-15 18:56+\n"
+"Last-Translator: Sarah Kriesch \n"
 "Language-Team: Chinese (China) \n"
 "Language: zh_CN\n"
@@ -35,8 +35,9 @@
 "driver\n"
 "offers over software emulation."
 msgstr ""
-"(不兼容的)的症状包括应用崩溃或操作系统图形界面的锁定&崩溃。旧版本的硬件以及性能要求较低的应用可正常运行,且确实可从该驱动提供的硬件加速功能中获得比软件"
-"模拟加速更高的性能提升。"
+"(不兼容的)的症状包括应用崩溃或操作系统图形界面的锁定&崩溃。\n"
+"旧版本的硬件以及性能要求较低的应用可正常运行,\n"
+"且确实可从该驱动提供的硬件加速功能中获得比软件模拟加速更高的性能提升。"
 
 #: Mesa-dri-nouveau/Mesa-dri-nouveau.en:12
 msgid ""
@@ -54,4 +55,7 @@
 "Please click \"I Agree\" if you accept the risks that may come with the\n"
 "installation of this driver. Choose \"I Disagree\"  to prevent installation\n"
 "of the driver and use software emulation instead."
-msgstr "如果你接收安装该驱动带来的风险,请点击“同意”。选择“不同意”以阻止驱动安装,并使用软件模拟加速替代该驱动的功能。"
+msgstr ""
+"如果你接收安装该驱动带来的风险,\n"
+"请点击“同意”。选择“不同意”以阻止驱动安装,\n"
+"并使用软件模拟加速替代该驱动的功能。"




commit gstreamer-plugins-good for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gstreamer-plugins-good for 
openSUSE:Factory checked in at 2017-07-17 09:03:16

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


Package is "gstreamer-plugins-good"

Mon Jul 17 09:03:16 2017 rev:46 rq:510509 version:1.12.2

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-good/gstreamer-plugins-good.changes
2017-06-28 10:32:44.113521222 +0200
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-good.new/gstreamer-plugins-good.changes
   2017-07-17 09:03:24.401438901 +0200
@@ -1,0 +2,7 @@
+Fri Jul 14 11:45:38 UTC 2017 - zai...@opensuse.org
+
+- Update to version 1.12.2:
+  + Bugs fixed: bgo#783778, bgo#784282, bgo#784486, bgo#784616,
+bgo#784812.
+
+---

Old:

  gst-plugins-good-1.12.1.tar.xz

New:

  gst-plugins-good-1.12.2.tar.xz



Other differences:
--
++ gstreamer-plugins-good.spec ++
--- /var/tmp/diff_new_pack.nzGpXj/_old  2017-07-17 09:03:25.801241779 +0200
+++ /var/tmp/diff_new_pack.nzGpXj/_new  2017-07-17 09:03:25.805241216 +0200
@@ -22,7 +22,7 @@
 
 Name:   gstreamer-plugins-good
 %define _name gst-plugins-good
-Version:1.12.1
+Version:1.12.2
 Release:0
 %define gst_branch 1.0
 Summary:GStreamer Streaming-Media Framework Plug-Ins

++ gst-plugins-good-1.12.1.tar.xz -> gst-plugins-good-1.12.2.tar.xz ++
 5196 lines of diff (skipped)




commit gstreamer-plugins-base for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gstreamer-plugins-base for 
openSUSE:Factory checked in at 2017-07-17 09:03:31

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


Package is "gstreamer-plugins-base"

Mon Jul 17 09:03:31 2017 rev:43 rq:510515 version:1.12.2

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-base/gstreamer-plugins-base.changes
2017-06-28 10:32:49.828712653 +0200
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-base.new/gstreamer-plugins-base.changes
   2017-07-17 09:03:43.530745082 +0200
@@ -1,0 +2,6 @@
+Fri Jul 14 11:43:21 UTC 2017 - zai...@opensuse.org
+
+- Update to version 1.12.2:
+  + Bugs fixed: bgo#784639.
+
+---

Old:

  gst-plugins-base-1.12.1.tar.xz

New:

  gst-plugins-base-1.12.2.tar.xz



Other differences:
--
++ gstreamer-plugins-base.spec ++
--- /var/tmp/diff_new_pack.qeNBkg/_old  2017-07-17 09:03:44.518605969 +0200
+++ /var/tmp/diff_new_pack.qeNBkg/_new  2017-07-17 09:03:44.522605406 +0200
@@ -18,7 +18,7 @@
 
 Name:   gstreamer-plugins-base
 %define _name gst-plugins-base
-Version:1.12.1
+Version:1.12.2
 Release:0
 %define gst_branch 1.0
 Url:http://gstreamer.freedesktop.org/

++ gst-plugins-base-1.12.1.tar.xz -> gst-plugins-base-1.12.2.tar.xz ++
 4052 lines of diff (skipped)




commit gstreamer-plugins-ugly for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gstreamer-plugins-ugly for 
openSUSE:Factory checked in at 2017-07-17 09:03:49

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


Package is "gstreamer-plugins-ugly"

Mon Jul 17 09:03:49 2017 rev:41 rq:510544 version:1.12.2

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-plugins-ugly/gstreamer-plugins-ugly.changes
2017-07-02 13:37:47.802289537 +0200
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-plugins-ugly.new/gstreamer-plugins-ugly.changes
   2017-07-17 09:03:50.869711591 +0200
@@ -1,0 +2,13 @@
+Sat Jul 15 21:53:05 UTC 2017 - zai...@opensuse.org
+
+- Drop conditional patch
+  gstreamer-plugins-ugly-1.0.1-patched_liba52.patch, no longer
+  needed due to changes in a52dec.
+
+---
+Fri Jul 14 11:48:25 UTC 2017 - zai...@opensuse.org
+
+- Update to version 1.12.2:
+  + asfdemux: Don't assume index is present at end of file.
+
+---

Old:

  gst-plugins-ugly-1.12.1.tar.xz
  gstreamer-plugins-ugly-1.0.1-patched_liba52.patch

New:

  gst-plugins-ugly-1.12.2.tar.xz



Other differences:
--
++ gstreamer-plugins-ugly.spec ++
--- /var/tmp/diff_new_pack.EzWvNU/_old  2017-07-17 09:03:51.425633305 +0200
+++ /var/tmp/diff_new_pack.EzWvNU/_new  2017-07-17 09:03:51.429632741 +0200
@@ -31,15 +31,13 @@
 %endif
 
 Name:   gstreamer-plugins-ugly
-Version:1.12.1
+Version:1.12.2
 Release:0
 Summary:GStreamer Streaming-Media Framework Plug-Ins
 License:LGPL-2.1+
 Group:  Productivity/Multimedia/Other
 Url:http://gstreamer.freedesktop.org/
 Source: 
http://gstreamer.freedesktop.org/src/gst-plugins-ugly/%{_name}-%{version}.tar.xz
-# PATCH-FIX-OPENSUSE gstreamer-plugins-ugly-1.0.1-patched_liba52.patch 
reddw...@opensuse.org -- Make it build with the VideoLAN SVN liba52 patched by 
Packman
-Patch0: gstreamer-plugins-ugly-1.0.1-patched_liba52.patch
 Source99:   baselibs.conf
 BuildRequires:  automake
 BuildRequires:  gcc-c++
@@ -145,9 +143,6 @@
 %lang_package
 %prep
 %setup -q -n %{_name}-%{version}
-%if 0%{?BUILD_ORIG} || 0%{?ENABLE_A52DEC}
-%patch0
-%endif
 
 %build
 %configure\

++ gst-plugins-ugly-1.12.1.tar.xz -> gst-plugins-ugly-1.12.2.tar.xz ++
 2664 lines of diff (skipped)




commit texlive-filesystem for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-filesystem for 
openSUSE:Factory checked in at 2017-07-17 09:04:14

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


Package is "texlive-filesystem"

Mon Jul 17 09:04:14 2017 rev:20 rq:509705 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-filesystem/texlive-filesystem.changes
2017-06-25 19:20:56.262410307 +0200
+++ 
/work/SRC/openSUSE:Factory/.texlive-filesystem.new/texlive-filesystem.changes   
2017-07-17 09:04:18.177865957 +0200
@@ -1,0 +2,12 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jul 11 12:00:53 UTC 2017 - wer...@suse.de
+
+- Modify update.texlive script in such a way that we detect old
+  format files and enforce a refresh based on hyphen (boo#1046277)
+
+---



Other differences:
--
++ update.texlive ++
--- /var/tmp/diff_new_pack.LSbmbo/_old  2017-07-17 09:04:20.281569704 +0200
+++ /var/tmp/diff_new_pack.LSbmbo/_new  2017-07-17 09:04:20.281569704 +0200
@@ -108,6 +108,14 @@
 test -L "$TEXMFCNFFILE" && TEXMFCNFFILE="$(readlink -f "$TEXMFCNFFILE" 2> 
/dev/null)"
 
 #
+# Configuration broken
+#
+if test ! -e "$TEXMFCNFFILE" ; then
+echo "${0##*/}: Configuration of texlive installation not found." 1>&2
+exit 0
+fi
+
+#
 # Language and hyphenation setup
 #
 cnf_ldat=$(TEXMF=$TEXMFSYSCONFIG kpsewhich language.dat 2> /dev/null)
@@ -137,6 +145,57 @@
 cnf_llua=$(TEXMF=$TEXMFSYSCONFIG kpsewhich language.dat.lua 2> /dev/null)
 fi
 
+#
+# Do some sanity checks as well
+#
+for hyp in ${TEXMFDIST}/tex/generic/config/language.splits/hyphen*
+do
+test -e "$hyp" || continue
+suffix=${hyp##*/}
+suffix=${suffix#*.}
+case "$suffix" in
+dat.lua)
+   test "$hyp" -nt "$cnf_llua" ;;
+dat)
+   test "$hyp" -nt "$cnf_ldat" ;;
+def)
+   test "$hyp" -nt "$cnf_ldef" ;;
+esac && {
+   > /var/run/texlive/run-hyphen
+   > /var/run/texlive/run-fmtutil.language
+}
+done
+unset hyp suffix
+
+init=false
+while read format engine language rest
+do
+line=($rest)
+last=${line[-1]}
+inifile=${last#\*}
+case "$engine" in
+mpost)  fmt="$format.mem";  kpse=mpost; engine=metapost ;;
+mf|mfw|mf-nowin) fmt="$format.base"; kpse=mf;engine=metafont ;;
+*)  fmt="$format.fmt";  kpse=tex;   engine=$engine  ;;
+esac
+inifile=$(kpsewhich -progname=$format -format=$kpse $inifile 2>/dev/null) 
|| continue
+fmt="$(find ${WEB2C}/$engine -name $fmt)"
+if test -z "$fmt"
+then
+#  init=true
+#  > /var/run/texlive/run-fmtutil
+   continue
+fi
+test "$fmt" -nt "$TEXMFCNFFILE" || init=true
+test "$fmt" -nt "$inifile" && continue
+case "$engine" in
+mpost)  fmtutil-sys --byfmt "$egine" < /dev/null 1>&4 2>&4 ;;
+mf|mfw|mf-nowin) fmtutil-sys --byfmt "$egine" < /dev/null 1>&4 2>&4 ;;
+*)  > /var/run/texlive/run-fmtutil.refresh
+esac
+done < <(sed -r "/^(\#.*|[[:blank:]]*)$/d" "$cnf_fmtu")
+unset format engine language rest line last inifile fmt kpse engine
+
 if test -n "${cnf_ldat}" -a -n "${cnf_ldef}" -a -n "${cnf_llua}" ; then
 for cfg in ${cnf_ldat} ${cnf_ldef} ${cnf_llua} ; do
test -s ${OLDMD5DIR}${cfg} || continue
@@ -208,19 +267,16 @@
 omd5ldef=0
 omd5llua=0
 if test -e ${md5_ldat} -a -r ${md5_ldat} ; then
-   test ${md5_ldat} -nt ${cnf_ldat} && md5_nt_ldat="yes"
set -- $(cat ${md5_ldat}) ; omd5ldat="$1"
 elif test ! -d ${md5_ldat%/*} ; then
mkdir -p ${md5_ldat%/*}
 fi
 if test -e ${md5_ldef} -a -r ${md5_ldef} ; then
-   test ${md5_ldef} -nt ${cnf_ldef} && md5_nt_ldef="yes"
set -- $(cat ${md5_ldef}) ; omd5ldef="$1"
 elif test ! -d ${md5_ldef%/*} ; then
mkdir -p ${md5_ldef%/*}
 fi
 if test -e ${md5_llua} -a -r ${md5_llua} ; then
-   test ${md5_llua} -nt ${cnf_llua} && md5_nt_llua="yes"
set -- $(cat ${md5_llua}) ; omd5llua="$1"
 elif test ! -d ${md5_llua%/*} ; then
mkdir -p ${md5_llua%/*}
@@ -229,18 +285,31 @@
 #
 # Create new formats for new language.dat and/or language.def if needed
 #
-if test $omd5ldat = 0 -o \( $md5ldat != $omd5ldat -o "$md5_nt_ldat" != 
"yes" \)
-then
-   > /var/run/texlive/run-fmtutil.language
-fi
-if test $omd5ldef = 0 -o \( $md5ldef != $omd5ldef -o "$md5_nt_ldef" != 
"yes" \)
-then
-   > /var/run/texlive/run-fmtutil.language
- 

commit texlive-specs-c for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-c for openSUSE:Factory 
checked in at 2017-07-17 09:04:37

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


Package is "texlive-specs-c"

Mon Jul 17 09:04:37 2017 rev:28 rq:509710 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-c/texlive-specs-c.changes  
2017-06-25 19:22:51.614106778 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-c.new/texlive-specs-c.changes 
2017-07-17 09:04:38.415016056 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-c.spec ++
--- /var/tmp/diff_new_pack.3pELZg/_old  2017-07-17 09:04:42.750405520 +0200
+++ /var/tmp/diff_new_pack.3pELZg/_new  2017-07-17 09:04:42.762403831 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -772,13 +773,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-bbold-type1-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-bbold-type1
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-bbold-type1
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-bbold-type1-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-bbold-type1-doc
@@ -3426,13 +3427,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-belleek-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-belleek
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-belleek
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-belleek-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-belleek-doc
@@ -3744,13 +3745,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-bera-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-bera
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-bera
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-bera-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-bera-doc
@@ -4202,13 +4203,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-berenisadf-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-berenisadf
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-berenisadf
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-berenisadf-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-berenisadf-doc
@@ -4892,13 +4893,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-beuron-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-beuron
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-beuron
-fc-cache %{_datadir}/fonts

commit texlive-specs-a for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-a for openSUSE:Factory 
checked in at 2017-07-17 09:04:22

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


Package is "texlive-specs-a"

Mon Jul 17 09:04:22 2017 rev:28 rq:509708 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-a/texlive-specs-a.changes  
2017-06-25 19:21:24.586407074 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-a.new/texlive-specs-a.changes 
2017-07-17 09:04:23.789075761 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-a.spec ++
--- /var/tmp/diff_new_pack.XgIrXK/_old  2017-07-17 09:04:29.028337940 +0200
+++ /var/tmp/diff_new_pack.XgIrXK/_new  2017-07-17 09:04:29.044335687 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -294,13 +295,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-Asana-Math-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-Asana-Math
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-Asana-Math
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-Asana-Math-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-Asana-Math-doc
@@ -1316,6 +1317,8 @@
 Requires(posttrans): sed
 Requires(posttrans): texlive >= %{texlive_version}
 Recommends: texlive-a2ping-doc >= %{texlive_version}
+Requires:   perl(strict)
+#!BuildIgnore:  perl(strict)
 # Download at ftp://ftp.ctan.org/pub/tex/systems/texlive/tlnet/archive/
 # from 20170520
 Source28:   a2ping.tar.xz
@@ -2198,13 +2201,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-academicons-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-academicons
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-academicons
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-academicons-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-academicons-doc
@@ -2399,13 +2402,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-accanthis-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-accanthis
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-accanthis
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-accanthis-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-accanthis-doc
@@ -3823,13 +3826,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-adforn-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-adforn
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-adforn
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-adforn-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %fil

commit a52dec for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package a52dec for openSUSE:Factory checked 
in at 2017-07-17 09:03:39

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


Package is "a52dec"

Mon Jul 17 09:03:39 2017 rev:2 rq:510543 version:0.7.5+svn613

Changes:

--- /work/SRC/openSUSE:Factory/a52dec/a52dec.changes2017-04-18 
13:51:15.867115013 +0200
+++ /work/SRC/openSUSE:Factory/.a52dec.new/a52dec.changes   2017-07-17 
09:03:45.846418983 +0200
@@ -1,0 +2,8 @@
+Sat Jul 15 21:49:12 UTC 2017 - zai...@opensuse.org
+
+- Drop a52dec-compat.diff and mm_accel.h source, not needed with
+  the svn checkout we are using.
+- Pass --enable-shared to configure, ensure we build the shared
+  library.
+
+---

Old:

  a52dec-compat.diff
  mm_accel.h



Other differences:
--
++ a52dec.spec ++
--- /var/tmp/diff_new_pack.yTO3xL/_old  2017-07-17 09:03:46.438335628 +0200
+++ /var/tmp/diff_new_pack.yTO3xL/_new  2017-07-17 09:03:46.442335065 +0200
@@ -28,9 +28,7 @@
 Group:  Productivity/Multimedia/Sound/Utilities
 Url:http://liba52.sourceforge.net/
 Source: %{name}-%{version}.tar.gz
-Source1:mm_accel.h
 Source2:baselibs.conf
-Patch0: %{name}-compat.diff
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
 Requires:   %{libname} = %{version}
@@ -68,16 +66,14 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 autoreconf -fi
-%configure --disable-static
+%configure --disable-static --enable-shared
 make %{?_smp_mflags}
 
 %install
 %make_install
-install -m 644 %{SOURCE1} %{buildroot}%{_includedir}/a52dec/
 find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -n %{libname} -p /sbin/ldconfig




commit texlive-specs-b for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-b for openSUSE:Factory 
checked in at 2017-07-17 09:04:29

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


Package is "texlive-specs-b"

Mon Jul 17 09:04:29 2017 rev:27 rq:509709 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-b/texlive-specs-b.changes  
2017-06-25 19:22:19.914587124 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-b.new/texlive-specs-b.changes 
2017-07-17 09:04:31.360009582 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-b.spec ++
--- /var/tmp/diff_new_pack.HY404P/_old  2017-07-17 09:04:36.307312875 +0200
+++ /var/tmp/diff_new_pack.HY404P/_new  2017-07-17 09:04:36.323310622 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -969,13 +970,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-arphic-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-arphic
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-arphic
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-arphic-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-arphic-doc
@@ -3040,13 +3041,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-arphic-ttf-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-arphic-ttf
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-arphic-ttf
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-arphic-ttf-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-arphic-ttf-doc
@@ -3642,13 +3643,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-asapsym-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-asapsym
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-asapsym
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-asapsym-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-asapsym-doc
@@ -3899,13 +3900,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-ascii-font-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-ascii-font
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-ascii-font
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-ascii-font-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-ascii-font-doc
@@ -4195,13 +4196,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-aspectratio-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-aspectratio
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-aspectratio
-fc-cache  

commit texlive-specs-g for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-g for openSUSE:Factory 
checked in at 2017-07-17 09:05:07

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


Package is "texlive-specs-g"

Mon Jul 17 09:05:07 2017 rev:27 rq:509714 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-g/texlive-specs-g.changes  
2017-06-25 19:25:02.299645254 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-g.new/texlive-specs-g.changes 
2017-07-17 09:05:09.662615552 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-g.spec ++
--- /var/tmp/diff_new_pack.VxK1Bv/_old  2017-07-17 09:05:14.761897429 +0200
+++ /var/tmp/diff_new_pack.VxK1Bv/_new  2017-07-17 09:05:14.777895177 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -4998,13 +4999,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-dejavu-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-dejavu
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-dejavu
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-dejavu-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-dejavu-doc
@@ -7068,13 +7069,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-dictsym-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-dictsym
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-dictsym
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-dictsym-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-dictsym-doc
@@ -9713,13 +9714,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-doublestroke-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-doublestroke
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-doublestroke
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-doublestroke-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-doublestroke-doc
@@ -10123,13 +10124,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-dozenal-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-dozenal
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-dozenal
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-dozenal-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-dozenal-doc
@@ -11469,13 +11470,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-drm-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-drm
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-drm
-fc-cache %{_datadir}/fonts
 

commit texlive-specs-e for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-e for openSUSE:Factory 
checked in at 2017-07-17 09:04:52

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


Package is "texlive-specs-e"

Mon Jul 17 09:04:52 2017 rev:28 rq:509712 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-e/texlive-specs-e.changes  
2017-06-25 19:24:02.388108808 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-e.new/texlive-specs-e.changes 
2017-07-17 09:04:53.428901705 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-e.spec ++
--- /var/tmp/diff_new_pack.ICl32U/_old  2017-07-17 09:05:00.175951536 +0200
+++ /var/tmp/diff_new_pack.ICl32U/_new  2017-07-17 09:05:00.191949283 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -703,13 +704,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-charter-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-charter
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-charter
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-charter-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-charter-doc
@@ -1166,13 +1167,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-chemarrow-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-chemarrow
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-chemarrow
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-chemarrow-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-chemarrow-doc
@@ -3316,13 +3317,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-chivo-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-chivo
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-chivo
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-chivo-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-chivo-doc
@@ -4307,13 +4308,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-cinzel-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-cinzel
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-cinzel
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-cinzel-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-cinzel-doc
@@ -4987,13 +4988,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-cjhebrew-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-cjhebrew
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-cjhebrew
-fc-cache %{_datadir}/fonts
 
 %postun -n texl

commit texlive-specs-f for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-f for openSUSE:Factory 
checked in at 2017-07-17 09:04:59

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


Package is "texlive-specs-f"

Mon Jul 17 09:04:59 2017 rev:28 rq:509713 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-f/texlive-specs-f.changes  
2017-06-25 19:24:35.375448780 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-f.new/texlive-specs-f.changes 
2017-07-17 09:05:00.967840018 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-f.spec ++
--- /var/tmp/diff_new_pack.pgzFP1/_old  2017-07-17 09:05:07.070980526 +0200
+++ /var/tmp/diff_new_pack.pgzFP1/_new  2017-07-17 09:05:07.086978274 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -1038,12 +1039,17 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.cont-en
 sed -ri 's/^\#\![[= =]]+cont-en\b.*/cont-en pdftex cont-usr.tex -8bit 
*cont-en.mkii/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.cont-en
 sed -ri 's/^\#\![[= =]]+cont-en\b.*/cont-en xetex cont-usr.tex -8bit 
*cont-en.mkii/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.cont-fr
 sed -ri 's/^\#\![[= =]]+cont-fr\b.*/cont-fr pdftex cont-usr.tex -8bit 
*cont-fr.mkii/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.cont-it
 sed -ri 's/^\#\![[= =]]+cont-it\b.*/cont-it pdftex cont-usr.tex -8bit 
*cont-it.mkii/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.cont-nl
 sed -ri 's/^\#\![[= =]]+cont-nl\b.*/cont-nl pdftex cont-usr.tex -8bit 
*cont-nl.mkii/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.cont-ro
 sed -ri 's/^\#\![[= =]]+cont-ro\b.*/cont-ro pdftex cont-usr.tex -8bit 
*cont-ro.mkii/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
 echo 'addMap original-context-symbol.map' >> /var/run/texlive/run-updmap
 
@@ -1052,13 +1058,18 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(cont-en\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/cont-en.*
 sed -ri 's/^(cont-en\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/xetex/cont-en.*
 sed -ri 's/^(cont-fr\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/cont-fr.*
 sed -ri 's/^(cont-it\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/cont-it.*
 sed -ri 's/^(cont-nl\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/cont-nl.*
 sed -ri 's/^(cont-ro\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/cont-ro.*
 echo 'deleteMap original-context-symbol.map' >> /var/run/texlive/run-updmap
 exit 0
 fi
@@ -1069,13 +1080,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -

commit texlive-specs-i for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-i for openSUSE:Factory 
checked in at 2017-07-17 09:05:31

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


Package is "texlive-specs-i"

Mon Jul 17 09:05:31 2017 rev:27 rq:509716 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-i/texlive-specs-i.changes  
2017-06-25 19:25:51.464699757 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-i.new/texlive-specs-i.changes 
2017-07-17 09:05:33.819213605 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-i.spec ++
--- /var/tmp/diff_new_pack.7FwrSZ/_old  2017-07-17 09:05:41.994062344 +0200
+++ /var/tmp/diff_new_pack.7FwrSZ/_new  2017-07-17 09:05:42.014059528 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -1329,13 +1330,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-erewhon-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-erewhon
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-erewhon
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-erewhon-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-erewhon-doc
@@ -2806,13 +2807,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-esint-type1-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-esint-type1
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-esint-type1
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-esint-type1-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-esint-type1-doc
@@ -3396,13 +3397,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-esrelation-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-esrelation
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-esrelation
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-esrelation-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-esrelation-doc
@@ -3543,13 +3544,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-esstix-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-esstix
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-esstix
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-esstix-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-esstix-doc
@@ -3856,13 +3857,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-esvect-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-esvect
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-esvect
-fc-cache %{_da

commit texlive-specs-h for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-h for openSUSE:Factory 
checked in at 2017-07-17 09:05:23

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


Package is "texlive-specs-h"

Mon Jul 17 09:05:23 2017 rev:27 rq:509715 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-h/texlive-specs-h.changes  
2017-06-25 19:25:25.900311220 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-h.new/texlive-specs-h.changes 
2017-07-17 09:05:25.416396971 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-h.spec ++
--- /var/tmp/diff_new_pack.AVYiBK/_old  2017-07-17 09:05:30.315707004 +0200
+++ /var/tmp/diff_new_pack.AVYiBK/_new  2017-07-17 09:05:30.331704751 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -691,13 +692,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-dutchcal-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-dutchcal
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-dutchcal
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-dutchcal-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-dutchcal-doc
@@ -3427,13 +3428,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-ebgaramond-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-ebgaramond
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-ebgaramond
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-ebgaramond-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-ebgaramond-doc
@@ -12045,13 +12046,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-electrum-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-electrum
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-electrum
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-electrum-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-electrum-doc
@@ -15498,13 +15499,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-epigrafica-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-epigrafica
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-epigrafica
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-epigrafica-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-epigrafica-doc
@@ -15802,13 +15803,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-epiolmec-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-epiolmec
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-epiolmec

commit texlive-specs-d for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-d for openSUSE:Factory 
checked in at 2017-07-17 09:04:44

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


Package is "texlive-specs-d"

Mon Jul 17 09:04:44 2017 rev:27 rq:509711 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-d/texlive-specs-d.changes  
2017-06-25 19:23:27.101093672 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-d.new/texlive-specs-d.changes 
2017-07-17 09:04:45.274050125 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-d.spec ++
--- /var/tmp/diff_new_pack.S6M4yl/_old  2017-07-17 09:04:50.617297653 +0200
+++ /var/tmp/diff_new_pack.S6M4yl/_new  2017-07-17 09:04:50.633295401 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -2661,13 +2662,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-bookhands-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-bookhands
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-bookhands
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-bookhands-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-bookhands-doc
@@ -3325,13 +3326,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-bookman-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-bookman
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-bookman
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-bookman-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-bookman
@@ -3928,13 +3929,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-boondox-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-boondox
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-boondox
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-boondox-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-boondox-doc
@@ -5567,13 +5568,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-brushscr-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-brushscr
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-brushscr
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-brushscr-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-brushscr-doc
@@ -5891,13 +5892,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-burmese-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-burmese
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-burmese
-fc-cache %{_datadir}/fonts
 
 

commit texlive-specs-j for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-j for openSUSE:Factory 
checked in at 2017-07-17 09:05:38

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


Package is "texlive-specs-j"

Mon Jul 17 09:05:38 2017 rev:27 rq:509717 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-j/texlive-specs-j.changes  
2017-06-25 19:26:18.608865101 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-j.new/texlive-specs-j.changes 
2017-07-17 09:05:42.897935051 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-j.spec ++
--- /var/tmp/diff_new_pack.W1FqX9/_old  2017-07-17 09:05:47.317312669 +0200
+++ /var/tmp/diff_new_pack.W1FqX9/_new  2017-07-17 09:05:47.329310979 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -2546,13 +2547,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-foekfont-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-foekfont
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-foekfont
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-foekfont-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-foekfont-doc
@@ -2757,13 +2758,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-fonetika-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-fonetika
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-fonetika
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-fonetika-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-fonetika-doc
@@ -3167,13 +3168,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-fontawesome-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-fontawesome
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-fontawesome
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-fontawesome-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-fontawesome-doc
@@ -3758,13 +3759,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-fontmfizz-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-fontmfizz
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-fontmfizz
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-fontmfizz-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-fontmfizz-doc
@@ -4138,13 +4139,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-fonts-churchslavonic-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-fonts-churchslavonic
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fo

commit texlive-specs-k for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-k for openSUSE:Factory 
checked in at 2017-07-17 09:05:45

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


Package is "texlive-specs-k"

Mon Jul 17 09:05:45 2017 rev:28 rq:509718 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-k/texlive-specs-k.changes  
2017-06-25 19:26:43.881294848 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-k.new/texlive-specs-k.changes 
2017-07-17 09:05:49.568995563 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-k.spec ++
--- /var/tmp/diff_new_pack.HC6Owq/_old  2017-07-17 09:05:54.048364730 +0200
+++ /var/tmp/diff_new_pack.HC6Owq/_new  2017-07-17 09:05:54.064362477 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -256,13 +257,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-gfsbodoni-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-gfsbodoni
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-gfsbodoni
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-gfsbodoni-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-gfsbodoni-doc
@@ -508,13 +509,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-gfscomplutum-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-gfscomplutum
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-gfscomplutum
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-gfscomplutum-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-gfscomplutum-doc
@@ -760,13 +761,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-gfsdidot-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-gfsdidot
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-gfsdidot
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-gfsdidot-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-gfsdidot-doc
@@ -1119,13 +1120,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-gfsneohellenic-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-gfsneohellenic
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-gfsneohellenic
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-gfsneohellenic-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-gfsneohellenic-doc
@@ -1370,13 +1371,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-gfsporson-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-gfsporson
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_data

commit texlive-specs-l for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-l for openSUSE:Factory 
checked in at 2017-07-17 09:05:52

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


Package is "texlive-specs-l"

Mon Jul 17 09:05:52 2017 rev:27 rq:509719 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-l/texlive-specs-l.changes  
2017-06-25 19:27:05.262274329 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-l.new/texlive-specs-l.changes 
2017-07-17 09:05:55.500160272 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-l.spec ++
--- /var/tmp/diff_new_pack.MvA5lY/_old  2017-07-17 09:05:58.619720941 +0200
+++ /var/tmp/diff_new_pack.MvA5lY/_new  2017-07-17 09:05:58.631719251 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -7356,13 +7357,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-ibygrk-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-ibygrk
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-ibygrk
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-ibygrk-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-ibygrk-doc
@@ -9595,13 +9596,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-imfellenglish-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-imfellenglish
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-imfellenglish
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-imfellenglish-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-imfellenglish-doc
@@ -10581,13 +10582,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-inconsolata-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-inconsolata
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-inconsolata
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-inconsolata-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-inconsolata-doc
@@ -11178,13 +11179,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-initials-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-initials
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-initials
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-initials-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-initials-doc




commit texlive-specs-m for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-m for openSUSE:Factory 
checked in at 2017-07-17 09:06:00

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


Package is "texlive-specs-m"

Mon Jul 17 09:06:00 2017 rev:30 rq:509720 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-m/texlive-specs-m.changes  
2017-06-25 19:31:14.319088896 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-m.new/texlive-specs-m.changes 
2017-07-17 09:06:02.319199938 +0200
@@ -1,0 +2,28 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---



Other differences:
--
++ texlive-specs-m.spec ++
--- /var/tmp/diff_new_pack.qanBSD/_old  2017-07-17 09:06:09.746153987 +0200
+++ /var/tmp/diff_new_pack.qanBSD/_new  2017-07-17 09:06:09.770150608 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   128
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -1279,13 +1280,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-ipaex-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-ipaex
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-ipaex
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-ipaex-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-ipaex-doc
@@ -2482,13 +2483,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-ipaex-type1-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-ipaex-type1
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-ipaex-type1
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-ipaex-type1-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-ipaex-type1-doc
@@ -6328,13 +6329,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-iwona-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-iwona
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-iwona
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-iwona-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-iwona-doc
@@ -7286,8 +7287,9 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.jadetex
 sed -ri 's/^\#\![[= =]]+jadetex\b.*/jadetex pdftex language.dat *jadetex.ini/' 
%{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.pdfjadetex
 sed -ri 's/^\#\![[= =]]+pdfjadetex\b.*/pdfjadetex pdftex language.dat 
*pdfjadetex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
 
 %postun -n texlive-jadetex 
@@ -7295,12 +7297,245 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(jadetex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/jadetex.*
 sed -ri 's/^(pdfjadetex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf 
|| :
+rm -f %{_texmfvardir}/web2c/pdftex/pdfjadetex.*
 exit 0
 fi
 
+%triggerin -n texlive-jadetex -- texlive-amsfonts
+> /var/run/texlive/run-fmtutil.jadete

commit texlive-specs-o for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-o for openSUSE:Factory 
checked in at 2017-07-17 09:06:14

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


Package is "texlive-specs-o"

Mon Jul 17 09:06:14 2017 rev:27 rq:509722 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-o/texlive-specs-o.changes  
2017-06-25 19:27:24.50714 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-o.new/texlive-specs-o.changes 
2017-07-17 09:06:17.549055087 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-o.spec ++
--- /var/tmp/diff_new_pack.Ldqbg0/_old  2017-07-17 09:06:22.628339758 +0200
+++ /var/tmp/diff_new_pack.Ldqbg0/_new  2017-07-17 09:06:22.640338069 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -4117,9 +4118,11 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.luatex
 sed -ri 's/^\#\![[= =]]+luatex\b.*/luatex luatex language.def,language.dat.lua 
luatex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.dviluatex
 sed -ri 's/^\#\![[= =]]+dviluatex\b.*/dviluatex luatex 
language.def,language.dat.lua dviluatex.ini/' 
%{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.luajittex
 sed -ri 's/^\#\![[= =]]+luajittex\b.*/luajittex luajittex 
language.def,language.dat.lua luatex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf 
|| :
 
 %postun -n texlive-luatex 
@@ -4127,13 +4130,85 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(luatex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/luatex/luatex.*
 sed -ri 's/^(dviluatex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || 
:
+rm -f %{_texmfvardir}/web2c/luatex/dviluatex.*
 sed -ri 's/^(luajittex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || 
:
+rm -f %{_texmfvardir}/web2c/luajittex/luajittex.*
 exit 0
 fi
 
+%triggerin -n texlive-luatex -- texlive-cm
+> /var/run/texlive/run-fmtutil.luatex
+> /var/run/texlive/run-fmtutil.dviluatex
+> /var/run/texlive/run-fmtutil.luajittex
+
+%triggerun -n texlive-luatex -- texlive-cm
+> /var/run/texlive/run-fmtutil.luatex
+> /var/run/texlive/run-fmtutil.dviluatex
+> /var/run/texlive/run-fmtutil.luajittex
+
+%triggerin -n texlive-luatex -- texlive-etex
+> /var/run/texlive/run-fmtutil.luatex
+> /var/run/texlive/run-fmtutil.dviluatex
+> /var/run/texlive/run-fmtutil.luajittex
+
+%triggerun -n texlive-luatex -- texlive-etex
+> /var/run/texlive/run-fmtutil.luatex
+> /var/run/texlive/run-fmtutil.dviluatex
+> /var/run/texlive/run-fmtutil.luajittex
+
+%triggerin -n texlive-luatex -- texlive-hyphen-base
+> /var/run/texlive/run-fmtutil.luatex
+> /var/run/texlive/run-fmtutil.dviluatex
+> /var/run/texlive/run-fmtutil.luajittex
+
+%triggerun -n texlive-luatex -- texlive-hyphen-base
+> /var/run/texlive/run-fmtutil.luatex
+> /var/run/texlive/run-fmtutil.dviluatex
+> /var/run/texlive/run-fmtutil.luajittex
+
+%triggerin -n tex

commit texlive-specs-q for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-q for openSUSE:Factory 
checked in at 2017-07-17 09:06:28

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


Package is "texlive-specs-q"

Mon Jul 17 09:06:28 2017 rev:28 rq:509724 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-q/texlive-specs-q.changes  
2017-06-25 19:27:50.319908941 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-q.new/texlive-specs-q.changes 
2017-07-17 09:06:30.719200298 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-q.spec ++
--- /var/tmp/diff_new_pack.WPwMKY/_old  2017-07-17 09:06:36.386402166 +0200
+++ /var/tmp/diff_new_pack.WPwMKY/_new  2017-07-17 09:06:36.402399913 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -511,13 +512,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-mxedruli-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-mxedruli
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-mxedruli
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-mxedruli-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-mxedruli-doc
@@ -2149,13 +2150,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-nanumtype1-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-nanumtype1
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-nanumtype1
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-nanumtype1-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-nanumtype1-doc
@@ -5352,13 +5353,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-ncntrsbk-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-ncntrsbk
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-ncntrsbk
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-ncntrsbk-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-ncntrsbk
@@ -6676,13 +6677,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-newpx-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-newpx
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-newpx
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-newpx-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-newpx-doc
@@ -7810,13 +7811,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-newtx-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-newtx
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-newtx
-fc-cache %{_datadir}/fonts
 
 %postun 

commit texlive-specs-p for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-p for openSUSE:Factory 
checked in at 2017-07-17 09:06:21

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


Package is "texlive-specs-p"

Mon Jul 17 09:06:21 2017 rev:28 rq:509723 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-p/texlive-specs-p.changes  
2017-06-25 19:32:10.923091967 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-p.new/texlive-specs-p.changes 
2017-07-17 09:06:24.124129102 +0200
@@ -1,0 +2,17 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---



Other differences:
--
++ texlive-specs-p.spec ++
--- /var/tmp/diff_new_pack.EEoYQO/_old  2017-07-17 09:06:29.803329283 +0200
+++ /var/tmp/diff_new_pack.EEoYQO/_new  2017-07-17 09:06:29.827325904 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   128
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -1085,13 +1086,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-merriweather-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-merriweather
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-merriweather
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-merriweather-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-merriweather-doc
@@ -1397,7 +1398,7 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.mf
 sed -ri 's/^\#\![[= =]]+mf\b.*/mf mf-nowin - -translate-file=cp227.tcx 
mf.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
 
 %postun -n texlive-metafont 
@@ -1405,8 +1406,8 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(mf\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/mf-nowin/mf.*
 exit 0
 fi
 
@@ -1946,13 +1947,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-metapost-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-metapost
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-metapost
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-metapost-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-metapost-doc
@@ -2791,9 +2792,11 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.mex
 sed -ri 's/^\#\![[= =]]+mex\b.*/mex pdftex mexconf.tex 
-translate-file=cp227.tcx *mex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.pdfmex
 sed -ri 's/^\#\![[= =]]+pdfmex\b.*/pdfmex pdftex mexconf.tex 
-translate-file=cp227.tcx *pdfmex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.utf8mex
 sed -ri 's/^\#\![[= =]]+utf8mex\b.*/utf8mex pdftex mexconf.tex -enc 
*utf8mex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
 
 %postun -n texlive-mex 
@@ -2801,13 +2804,95 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(mex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/mex.*
 sed -ri 's/^(pdfmex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/pdfmex.*
 sed -ri 's/^(utf8mex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/utf8mex.*
 exit 0
 fi
 
+%triggerin -n texlive-mex -- 

commit texlive-specs-n for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-n for openSUSE:Factory 
checked in at 2017-07-17 09:06:07

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


Package is "texlive-specs-n"

Mon Jul 17 09:06:07 2017 rev:27 rq:509721 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-n/texlive-specs-n.changes  
2017-06-25 19:31:41.955184519 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-n.new/texlive-specs-n.changes 
2017-07-17 09:06:10.622030636 +0200
@@ -1,0 +2,23 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---



Other differences:
--
++ texlive-specs-n.spec ++
--- /var/tmp/diff_new_pack.18zuWa/_old  2017-07-17 09:06:16.757166611 +0200
+++ /var/tmp/diff_new_pack.18zuWa/_new  2017-07-17 09:06:16.773164358 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   128
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -3337,13 +3338,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-lato-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-lato
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-lato
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-lato-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-lato-doc
@@ -8009,13 +8010,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-libertine-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-libertine
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-libertine
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-libertine-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-libertine-doc
@@ -9875,13 +9876,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-libertinus-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-libertinus
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-libertinus
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-libertinus-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-libertinus-doc
@@ -10068,13 +10069,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-libertinust1math-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-libertinust1math
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-libertinust1math
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-libertinust1math-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-libertinust1math-doc
@@ -10472,13 +10473,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-librebaskerville-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-librebaskerville
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-librebaskerville
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-librebaskerville-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-librebaskerville-doc
@@ -10820,13 +10821,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-librebodoni-fo

commit texlive-specs-r for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-r for openSUSE:Factory 
checked in at 2017-07-17 09:06:34

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


Package is "texlive-specs-r"

Mon Jul 17 09:06:34 2017 rev:26 rq:509725 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-r/texlive-specs-r.changes  
2017-06-25 19:32:37.475340678 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-r.new/texlive-specs-r.changes 
2017-07-17 09:06:37.830198830 +0200
@@ -1,0 +2,11 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---



Other differences:
--
++ texlive-specs-r.spec ++
--- /var/tmp/diff_new_pack.vXLqx8/_old  2017-07-17 09:06:43.465405202 +0200
+++ /var/tmp/diff_new_pack.vXLqx8/_new  2017-07-17 09:06:43.481402949 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   129
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -613,13 +614,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-overlock-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-overlock
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-overlock
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-overlock-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-overlock-doc
@@ -1004,13 +1005,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-padauk-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-padauk
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-padauk
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-padauk-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-padauk-doc
@@ -1705,13 +1706,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-palatino-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-palatino
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-palatino
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-palatino-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-palatino
@@ -3350,13 +3351,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-paratype-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-paratype
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-paratype
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-paratype-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-paratype-doc
@@ -7187,9 +7188,11 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.pdftex
 sed -ri 's/^\#\![[= =]]+pdftex\b.*/pdftex pdftex language.def 
-translate-file=cp227.tcx *pdfetex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.etex
 sed -ri 's/^\#\![[= =]]+etex\b.*/etex pdftex language.def 
-translate-file=cp227.tcx *etex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.pdfetex
 sed -ri 's/^\#\![[= =]]+pdfetex\b.*/pdfetex pdftex language.def 
-translate-file=cp227.tcx *pdfetex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
 echo 'addMap dummy-space.map' >> /var/run/texlive/run-updmap
 
@@ -7198,27 +7201,89 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(pdftex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/pdftex.*
 sed -ri 's/^(etex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/pdftex/etex.*
 

commit texlive-specs-t for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-t for openSUSE:Factory 
checked in at 2017-07-17 09:06:49

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


Package is "texlive-specs-t"

Mon Jul 17 09:06:49 2017 rev:27 rq:509727 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-t/texlive-specs-t.changes  
2017-06-25 19:28:43.160443979 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-t.new/texlive-specs-t.changes 
2017-07-17 09:06:57.735395493 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-t.spec ++
--- /var/tmp/diff_new_pack.WWu0S7/_old  2017-07-17 09:07:04.018510609 +0200
+++ /var/tmp/diff_new_pack.WWu0S7/_new  2017-07-17 09:07:04.034508355 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -3663,8 +3664,9 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.ptex
 sed -ri 's/^\#\![[= =]]+ptex\b.*/ptex ptex - ptex.ini/' 
%{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.eptex
 sed -ri 's/^\#\![[= =]]+eptex\b.*/eptex eptex language.def *eptex.ini/' 
%{_texmfconfdir}/web2c/fmtutil.cnf || :
 
 %postun -n texlive-ptex 
@@ -3672,12 +3674,69 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(ptex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/ptex/ptex.*
 sed -ri 's/^(eptex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/eptex/eptex.*
 exit 0
 fi
 
+%triggerin -n texlive-ptex -- texlive-cm
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerun -n texlive-ptex -- texlive-cm
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerin -n texlive-ptex -- texlive-hyphen-base
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerun -n texlive-ptex -- texlive-hyphen-base
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerin -n texlive-ptex -- texlive-knuth-lib
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerun -n texlive-ptex -- texlive-knuth-lib
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerin -n texlive-ptex -- texlive-plain
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerun -n texlive-ptex -- texlive-plain
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerin -n texlive-ptex -- texlive-ptex-base
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerun -n texlive-ptex -- texlive-ptex-base
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerin -n texlive-ptex -- texlive-ptex-fonts
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/texlive/run-fmtutil.eptex
+
+%triggerun -n texlive-ptex -- texlive-ptex-fonts
+> /var/run/texlive/run-fmtutil.ptex
+> /var/run/t

commit texlive-specs-v for openSUSE:Factory

2017-07-17 Thread root
Hello community,

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

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


Package is "texlive-specs-v"

Mon Jul 17 09:07:02 2017 rev:32 rq:509730 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-v/texlive-specs-v.changes  
2017-07-01 14:05:03.752168543 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-v.new/texlive-specs-v.changes 
2017-07-17 09:07:13.729143003 +0200
@@ -1,0 +2,6 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---



Other differences:
--
++ texlive-specs-v.spec ++
--- /var/tmp/diff_new_pack.HRMtWq/_old  2017-07-17 09:07:17.988543125 +0200
+++ /var/tmp/diff_new_pack.HRMtWq/_new  2017-07-17 09:07:18.000541436 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   130
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 




commit texlive-specs-s for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-s for openSUSE:Factory 
checked in at 2017-07-17 09:06:41

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


Package is "texlive-specs-s"

Mon Jul 17 09:06:41 2017 rev:27 rq:509726 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-s/texlive-specs-s.changes  
2017-06-25 19:28:17.288099062 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-s.new/texlive-specs-s.changes 
2017-07-17 09:06:44.525255938 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-s.spec ++
--- /var/tmp/diff_new_pack.NxUSB3/_old  2017-07-17 09:06:56.795527859 +0200
+++ /var/tmp/diff_new_pack.NxUSB3/_new  2017-07-17 09:06:56.807526169 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -658,7 +659,7 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.platex
 sed -ri 's/^\#\![[= =]]+platex\b.*/platex eptex language.dat *platex.ini/' 
%{_texmfconfdir}/web2c/fmtutil.cnf || :
 
 %postun -n texlive-platex 
@@ -666,11 +667,47 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(platex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/eptex/platex.*
 exit 0
 fi
 
+%triggerin -n texlive-platex -- texlive-babel
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerun -n texlive-platex -- texlive-babel
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerin -n texlive-platex -- texlive-cm
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerun -n texlive-platex -- texlive-cm
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerin -n texlive-platex -- texlive-hyphen-base
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerun -n texlive-platex -- texlive-hyphen-base
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerin -n texlive-platex -- texlive-latex
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerun -n texlive-platex -- texlive-latex
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerin -n texlive-platex -- texlive-latex-fonts
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerun -n texlive-platex -- texlive-latex-fonts
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerin -n texlive-platex -- texlive-ptex-fonts
+> /var/run/texlive/run-fmtutil.platex
+
+%triggerun -n texlive-platex -- texlive-ptex-fonts
+> /var/run/texlive/run-fmtutil.platex
+
 %posttrans -n texlive-platex
 test -z "$ZYPP_IS_RUNNING" || exit 0
 test -d /var/run/texlive || exit 0
@@ -1380,13 +1417,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-playfair-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-playfair
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-playfair
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-playfair-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-playfair-doc
@@ -3367,13 +3404,13 @@
 VERBOSE

commit texlive-specs-w for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-w for openSUSE:Factory 
checked in at 2017-07-17 09:07:09

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


Package is "texlive-specs-w"

Mon Jul 17 09:07:09 2017 rev:27 rq:509731 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-w/texlive-specs-w.changes  
2017-06-25 19:29:41.020269844 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-w.new/texlive-specs-w.changes 
2017-07-17 09:07:18.932410195 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-w.spec ++
--- /var/tmp/diff_new_pack.oE9ybL/_old  2017-07-17 09:07:22.771869459 +0200
+++ /var/tmp/diff_new_pack.oE9ybL/_new  2017-07-17 09:07:22.787867205 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -1751,13 +1752,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-tabvar-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-tabvar
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-tabvar
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-tabvar-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-tabvar-doc
@@ -2345,13 +2346,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-tapir-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-tapir
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-tapir
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-tapir-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-tapir-doc
@@ -3528,13 +3529,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-tempora-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-tempora
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-tempora
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-tempora-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-tempora-doc
@@ -4799,7 +4800,7 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.tex
 sed -ri 's/^\#\![[= =]]+tex\b.*/tex tex - tex.ini/' 
%{_texmfconfdir}/web2c/fmtutil.cnf || :
 
 %postun -n texlive-tex 
@@ -4807,11 +4808,35 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(tex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/tex/tex.*
 exit 0
 fi
 
+%triggerin -n texlive-tex -- texlive-cm
+> /var/run/texlive/run-fmtutil.tex
+
+%triggerun -n texlive-tex -- texlive-cm
+> /var/run/texlive/run-fmtutil.tex
+
+%triggerin -n texlive-tex -- texlive-hyphen-base
+> /var/run/texlive/run-fmtutil.tex
+
+%triggerun -n texlive-tex -- tex

commit texlive-specs-u for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-u for openSUSE:Factory 
checked in at 2017-07-17 09:06:56

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


Package is "texlive-specs-u"

Mon Jul 17 09:06:56 2017 rev:28 rq:509728 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-u/texlive-specs-u.changes  
2017-06-25 19:29:07.397019972 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-u.new/texlive-specs-u.changes 
2017-07-17 09:07:04.970376552 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-u.spec ++
--- /var/tmp/diff_new_pack.eXWFPb/_old  2017-07-17 09:07:12.769278187 +0200
+++ /var/tmp/diff_new_pack.eXWFPb/_new  2017-07-17 09:07:12.789275371 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -1907,13 +1908,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-roboto-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-roboto
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-roboto
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-roboto-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-roboto-doc
@@ -4047,13 +4048,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-romande-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-romande
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-romande
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-romande-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-romande-doc
@@ -4479,13 +4480,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-rosario-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-rosario
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-rosario
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-rosario-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-rosario-doc
@@ -5223,13 +5224,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-rsfs-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-rsfs
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-rsfs
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-rsfs-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-rsfs-doc
@@ -6712,13 +6713,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-sanskrit-t1-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-sanskrit-t1
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-sanskrit-t1
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-

commit texlive-specs-z for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-z for openSUSE:Factory 
checked in at 2017-07-17 09:07:29

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


Package is "texlive-specs-z"

Mon Jul 17 09:07:29 2017 rev:27 rq:509734 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-z/texlive-specs-z.changes  
2017-06-25 19:30:59.121236013 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-z.new/texlive-specs-z.changes 
2017-07-17 09:07:36.897879991 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-z.spec ++
--- /var/tmp/diff_new_pack.E1itfN/_old  2017-07-17 09:07:40.561364034 +0200
+++ /var/tmp/diff_new_pack.E1itfN/_new  2017-07-17 09:07:40.577361781 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -893,13 +894,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-xcharter-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-xcharter
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-xcharter
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-xcharter-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-xcharter-doc
@@ -3564,8 +3565,9 @@
 mkdir -p /var/run/texlive
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
-> /var/run/texlive/run-fmtutil
+> /var/run/texlive/run-fmtutil.xetex
 sed -ri 's/^\#\![[= =]]+xetex\b.*/xetex xetex language.def -etex xetex.ini/' 
%{_texmfconfdir}/web2c/fmtutil.cnf || :
+> /var/run/texlive/run-fmtutil.xelatex
 sed -ri 's/^\#\![[= =]]+xelatex\b.*/xelatex xetex language.dat -etex 
xelatex.ini/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
 
 %postun -n texlive-xetex 
@@ -3573,12 +3575,69 @@
 > /var/run/texlive/run-mktexlsr
 > /var/run/texlive/run-update
 if test $1 = 0; then
-> /var/run/texlive/run-fmtutil
 sed -ri 's/^(xetex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/xetex/xetex.*
 sed -ri 's/^(xelatex\b)/\#\!\ \1/' %{_texmfconfdir}/web2c/fmtutil.cnf || :
+rm -f %{_texmfvardir}/web2c/xetex/xelatex.*
 exit 0
 fi
 
+%triggerin -n texlive-xetex -- texlive-cm
+> /var/run/texlive/run-fmtutil.xetex
+> /var/run/texlive/run-fmtutil.xelatex
+
+%triggerun -n texlive-xetex -- texlive-cm
+> /var/run/texlive/run-fmtutil.xetex
+> /var/run/texlive/run-fmtutil.xelatex
+
+%triggerin -n texlive-xetex -- texlive-hyphen-base
+> /var/run/texlive/run-fmtutil.xetex
+> /var/run/texlive/run-fmtutil.xelatex
+
+%triggerun -n texlive-xetex -- texlive-hyphen-base
+> /var/run/texlive/run-fmtutil.xetex
+> /var/run/texlive/run-fmtutil.xelatex
+
+%triggerin -n texlive-xetex -- texlive-tex-ini-files
+> /var/run/texlive/run-fmtutil.xetex
+> /var/run/texlive/run-fmtutil.xelatex
+
+%triggerun -n texlive-xetex -- texlive-tex-ini-files
+> /var/run/texlive/run-fmtutil.xetex
+> /var/run/texlive/run-fmtutil.xelatex
+
+%triggerin -n texlive-xetex -- texlive-unicode-data
+> /var/run/texlive/run-fmtutil.xetex
+> /var/run/texlive/run-fmtutil.xelatex
+
+%triggerun -n 

commit texlive-specs-x for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-x for openSUSE:Factory 
checked in at 2017-07-17 09:07: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"

Mon Jul 17 09:07:17 2017 rev:27 rq:509732 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-x/texlive-specs-x.changes  
2017-06-25 19:29:57.341963984 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-x.new/texlive-specs-x.changes 
2017-07-17 09:07:23.651745539 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-x.spec ++
--- /var/tmp/diff_new_pack.5pLgJm/_old  2017-07-17 09:07:28.974995829 +0200
+++ /var/tmp/diff_new_pack.5pLgJm/_new  2017-07-17 09:07:28.986994139 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -2187,13 +2188,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-times-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-times
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-times
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-times-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-times
@@ -2640,13 +2641,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-tinos-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-tinos
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-tinos
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-tinos-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-tinos-doc
@@ -2916,13 +2917,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-tipa-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-tipa
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-tipa
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-tipa-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-tipa-doc
@@ -7553,13 +7554,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-trajan-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-trajan
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-trajan
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-trajan-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-trajan-doc
@@ -10609,13 +10610,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-txfonts-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-txfonts
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-txfonts
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-txfonts-fonts
 if test $1 = 0; the

commit texlive-specs-y for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package texlive-specs-y for openSUSE:Factory 
checked in at 2017-07-17 09:07: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"

Mon Jul 17 09:07:23 2017 rev:27 rq:509733 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-y/texlive-specs-y.changes  
2017-06-25 19:30:31.697110414 +0200
+++ /work/SRC/openSUSE:Factory/.texlive-specs-y.new/texlive-specs-y.changes 
2017-07-17 09:07:30.170827412 +0200
@@ -1,0 +2,33 @@
+Wed Jul 12 07:41:21 UTC 2017 - wer...@suse.de
+
+- Generate/remove specific formats at installation/erease of a
+  package (boo#1046277)
+
+---
+Tue Jun 27 14:31:44 UTC 2017 - wer...@suse.de
+
+- Fix some descriptions of PostScript Type 1 binary files (boo#1046104) 
+
+---
+Fri Jun 23 13:21:21 UTC 2017 - wer...@suse.de
+
+- Yet an other move for texlive-pas-cours that is move
+  doc/latex/pas-cours/macro-calculs.tex to tex/latex/pas-cours/
+
+---
+Thu Jun 22 12:50:00 UTC 2017 - wer...@suse.de
+
+- Avoid to depend on optional milog.cfg
+- texlive-milog does replace mathgl-tex 
+
+---
+Wed Jun 21 10:20:17 UTC 2017 - wer...@suse.de
+
+- Do not require own provided perl modules for latexindent 
+
+---
+Tue Jun 20 06:39:06 UTC 2017 - wer...@suse.de
+
+- Change left over texlive-pdftex-def for texlive-latex-bin 
+
+---



Other differences:
--
++ texlive-specs-y.spec ++
--- /var/tmp/diff_new_pack.FATf2B/_old  2017-07-17 09:07:35.622059674 +0200
+++ /var/tmp/diff_new_pack.FATf2B/_new  2017-07-17 09:07:35.638057421 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2017
 %define texlive_previous 2016
 %define texlive_release  20170520
-%define texlive_noarch   125
+%define texlive_noarch   131
 
 #!BuildIgnore:  texlive
 
@@ -50,6 +50,7 @@
 Version:2017
 Release:0
 BuildRequires:  ed
+BuildRequires:  t1utils
 BuildRequires:  texlive-filesystem
 BuildRequires:  xz
 BuildArch:  noarch
@@ -3673,13 +3674,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-uhc-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-uhc
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-uhc
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-uhc-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-uhc-doc
@@ -8131,13 +8132,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-umtypewriter-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-umtypewriter
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-umtypewriter
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-umtypewriter-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-umtypewriter
@@ -8756,13 +8757,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-unfonts-core-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-unfonts-core
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-unfonts-core
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-unfonts-core-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-unfonts-core-doc
@@ -8892,13 +8893,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-unfonts-extra-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-unfonts-extra
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fonts/texlive-unfonts-extra
-fc-cache %{_datadir}/fonts
 
 %postun -n texlive-unfonts-extra-fonts
 if test $1 = 0; then
-fc-cache %{_datadir}/fonts
+ fc-cache -s %{_datadir}/fonts
 fi
 
 %files -n texlive-unfonts-extra-doc
@@ -10044,13 +10045,13 @@
 VERBOSE=false %{_texmfdistdir}/texconfig/update || :
 
 %post -n texlive-universalis-fonts
+fc-cache  -s %{_datadir}/fonts
 mkfontscale  %{_datadir}/fonts/texlive-universalis
 mkfontdir -e %{_datadir}/fonts/encodings -e %{_datadir}/fonts/encodings/large 
%{_datadir}/fo

commit systemd for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package systemd for openSUSE:Factory checked 
in at 2017-07-17 09:07:55

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


Package is "systemd"

Mon Jul 17 09:07:55 2017 rev:256 rq:508718 version:233

Changes:

--- /work/SRC/openSUSE:Factory/systemd/systemd-mini.changes 2017-06-20 
09:33:37.457349207 +0200
+++ /work/SRC/openSUSE:Factory/.systemd.new/systemd-mini.changes
2017-07-17 09:07:57.490979694 +0200
@@ -1,0 +2,66 @@
+Fri Jul  7 08:19:41 UTC 2017 - jeng...@inai.de
+
+- Edit pkgconfig(liblz4) dependency: liblz4 now uses 1.x *again*
+
+---
+Thu Jul  6 14:12:34 UTC 2017 - f...@suse.com
+
+- Added 0001-core-disable-session-keyring-per-system-sevice-entir.patch 
(bnc#1045886)
+
+  Temporary patch to disable the session keyring stuff as it's
+  currently broken and may introduce some security holes.
+
+---
+Thu Jul  6 12:57:06 UTC 2017 - f...@suse.com
+
+- Import commit 21827ea0875ff197e16e72003b2bfaa1c6e8daad
+
+  1ad06735f core: fail when syntactically invalid values for User=/Group= 
fields are detected (bsc#1047023)
+  d563972e2 timesyncd: don't use compiled-in list if FallbackNTP has been 
configured explicitly
+  f4e0c16f5 gpt-auto-generator: fix the handling of the value returned by 
fstab_has_fstype() in add_swap() (#6280)
+  e1345aac5 fix add_esp() in the gpt-auto-generator.c (#6251)
+  c591ece9a automount: don't lstat(2) upon umount request (#6086) (bsc#1040968)
+  643ab2eea gpt-auto-generator: disable gpt auto logic for swaps if at least 
one is defined in fstab
+  f07d2022f fstab-util: introduce fstab_has_fstype() helper
+  bf735bb35 fstab-util: don't eat up errors in fstab_is_mount_point()
+  a4b40fbed resolved: simplify alloc size calculation (bsc#1045290 
CVE-2017-9445)
+  8b960bec0 only check signature job error if signature job exists (#6118) 
(boo#1043758)
+  1418bfb5b job: Ensure JobRunningTimeoutSec= survives serialization (#6128) 
(bsc#1004995)
+  19b6d5f08 udev: turn off -Wformat-nonliteral for one safe case
+  717ace439 udev: net_id add support for platform bus (ACPI, mostly arm64) 
devices (#5933)
+  a3bf2e6b5 core/mount: pass "-c" flag to /bin/umount (#6093)
+
+---
+Wed Jul  5 07:15:17 UTC 2017 - f...@suse.com
+
+- Add minimal support for boot.d/* scripts in systemd-sysv-convert 
(boo#1046750)
+
+  While at it, the handling of the symlink priorities is also removed
+  since it doesn't appear to be used at all.
+
+---
+Thu Jun 22 15:24:22 UTC 2017 - f...@suse.com
+
+- Don't try to restart networkd/resolved if they're disabled (boo#1045521)
+
+  "systemctl try-restart/preset" wants the unit files exist.
+
+---
+Thu Jun 22 13:50:46 UTC 2017 - f...@suse.com
+
+- Stop shipping /usr/lib/sysusers.d/basic.conf (bsc#1006978)
+
+  Ok looks like the previous change was the right thing to do and we
+  continue to follow this path by relying on the new user/group scheme
+
+  Therefore the basic system user/group are now managed and created by
+  system-sysusers and udev also relies on this for the groups it uses
+  in its rule files.
+
+  Ideally we should have listed all of the groups in the deps (with
+  "Requires: group(disk)" but the list of the groups is rather long
+  and the risk for those groups to be re-organized is probably low, so
+  currently we simply use "Requires: system-group-hardware" as a
+  shortcut.
+
+---
@@ -14 +80 @@
-  "Requires: group(post)".
+  "Requires: group(lock)".
systemd.changes: same change

New:

  0001-core-disable-session-keyring-per-system-sevice-entir.patch



Other differences:
--
++ systemd-mini.spec ++
--- /var/tmp/diff_new_pack.RlXZN8/_old  2017-07-17 09:07:58.494838312 +0200
+++ /var/tmp/diff_new_pack.RlXZN8/_new  2017-07-17 09:07:58.498837748 +0200
@@ -83,7 +83,7 @@
 BuildRequires:  systemd-rpm-macros
 BuildRequires:  pkgconfig(blkid) >= 2.26
 BuildRequires:  pkgconfig(libkmod) >= 15
-BuildRequires:  pkgconfig(liblz4) >= 125
+BuildRequires:  pkgconfig(liblz4)
 BuildRequires:  pkgconfig(liblzma)
 BuildRequires:  pkgconfig(libpci) >= 3
 BuildRequires:  pkgconfig(libpcre)
@@ -155,6 +155,14 @@
 
 Source1065: udev-remount-tmpfs
 
+# Patches listed in here are really special cases. Normally all
+# changes must go to upstream first and then are cherry-picked in the
+# SUSE git repository. But in very few cases

commit libzypp for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory checked 
in at 2017-07-17 09:08:22

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


Package is "libzypp"

Mon Jul 17 09:08:22 2017 rev:383 rq:509809 version:16.14.0

Changes:

--- /work/SRC/openSUSE:Factory/libzypp/libzypp.changes  2017-07-08 
12:25:49.894965719 +0200
+++ /work/SRC/openSUSE:Factory/.libzypp.new/libzypp.changes 2017-07-17 
09:08:24.527171922 +0200
@@ -1,0 +2,11 @@
+Wed Jul 12 17:06:14 CEST 2017 - m...@suse.de
+
+- repo refresh: Re-probe if the repository type changes (bsc#1048315)
+- MediaCurl: Propagate proper error code to DownloadProgressReport
+  (bsc#1047785)
+- Allow to trigger an appdata refresh unconditionally (bsc#1009745)
+- Support custom repo variables defined in /etc/zypp/vars.d (fixes #68)
+- rename: handle EXDEV error on OverlayFS
+- version 16.14.0 (0)
+
+---

Old:

  libzypp-16.13.0.tar.bz2

New:

  libzypp-16.14.0.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.7QoYQl/_old  2017-07-17 09:08:25.131086866 +0200
+++ /var/tmp/diff_new_pack.7QoYQl/_new  2017-07-17 09:08:25.131086866 +0200
@@ -19,7 +19,7 @@
 %define force_gcc_46 0
 
 Name:   libzypp
-Version:16.13.0
+Version:16.14.0
 Release:0
 Url:git://gitorious.org/opensuse/libzypp.git
 Summary:Package, Patch, Pattern, and Product Management
@@ -38,7 +38,7 @@
 Provides:   libzypp(plugin:services) = 1
 Provides:   libzypp(plugin:system) = 1
 Provides:   libzypp(plugin:urlresolver) = 0
-Provides:   libzypp(repovarexpand) = 0
+Provides:   libzypp(repovarexpand) = 1
 
 %if 0%{?suse_version}
 Recommends: logrotate
@@ -233,6 +233,7 @@
 %endif
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/services.d
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/systemCheck.d
+mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/vars.d
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/vendors.d
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/multiversion.d
 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/zypp/credentials.d
@@ -336,6 +337,7 @@
 %endif
 %dir   %{_sysconfdir}/zypp/services.d
 %dir   %{_sysconfdir}/zypp/systemCheck.d
+%dir   %{_sysconfdir}/zypp/vars.d
 %dir   %{_sysconfdir}/zypp/vendors.d
 %dir   %{_sysconfdir}/zypp/multiversion.d
 %dir   %{_sysconfdir}/zypp/credentials.d

++ libzypp-16.13.0.tar.bz2 -> libzypp-16.14.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-16.13.0/VERSION.cmake 
new/libzypp-16.14.0/VERSION.cmake
--- old/libzypp-16.13.0/VERSION.cmake   2017-06-30 14:42:36.0 +0200
+++ new/libzypp-16.14.0/VERSION.cmake   2017-07-12 17:11:07.0 +0200
@@ -60,9 +60,9 @@
 #
 SET(LIBZYPP_MAJOR "16")
 SET(LIBZYPP_COMPATMINOR "0")
-SET(LIBZYPP_MINOR "13")
+SET(LIBZYPP_MINOR "14")
 SET(LIBZYPP_PATCH "0")
 #
-# LAST RELEASED: 16.13.0 (0)
+# LAST RELEASED: 16.14.0 (0)
 # (The number in parenthesis is LIBZYPP_COMPATMINOR)
 #===
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libzypp-16.13.0/doc/autoinclude/EnvironmentVariables.doc 
new/libzypp-16.14.0/doc/autoinclude/EnvironmentVariables.doc
--- old/libzypp-16.13.0/doc/autoinclude/EnvironmentVariables.doc
2017-03-08 12:51:07.0 +0100
+++ new/libzypp-16.14.0/doc/autoinclude/EnvironmentVariables.doc
2017-07-07 10:31:06.0 +0200
@@ -38,10 +38,12 @@
 
 \subsection zypp-envars-plugin Variables related to plugins
 
-\li \c PLUGIN_DEBUG=1 Verbose logging from plugin framework.
-\li \c PLUGIN_TIMEOUT= Send/receive timeout for plugin communication.
-\li \c PLUGIN_SEND_TIMEOUT= Send timeout for plugin communication.
-\li \c PLUGIN_RECEIVE_TIMEOUT= Receive timeout for plugin communication.
+\li \c ZYPP_PLUGIN_DEBUG=1 Verbose logging from plugin framework.
+\li \c ZYPP_PLUGIN_TIMEOUT= Send/receive timeout for plugin communication.
+\li \c ZYPP_PLUGIN_SEND_TIMEOUT= Send timeout for plugin communication.
+\li \c ZYPP_PLUGIN_RECEIVE_TIMEOUT= Receive timeout for plugin 
communication.
+
+\li \c ZYPP_PLUGIN_APPDATA_FORCE_COLLECT=1 Make RepoManager trigger the 
appdata collector plugin unconditionally. Can be used with \c 'zypper \c lr' 
(as root) to trigger an initial collect rather than calling \c 'zypper \c ref 
\c -f' or waiting for some repo to be refreshed.
 
 \subsection zypp-envars-misc Variables not for common use (test and debug)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit gl2ps for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gl2ps for openSUSE:Factory checked 
in at 2017-07-17 09:08:49

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


Package is "gl2ps"

Mon Jul 17 09:08:49 2017 rev:12 rq:509550 version:1.4.0

Changes:

--- /work/SRC/openSUSE:Factory/gl2ps/gl2ps.changes  2017-07-06 
00:04:10.219783595 +0200
+++ /work/SRC/openSUSE:Factory/.gl2ps.new/gl2ps.changes 2017-07-17 
09:08:49.771616457 +0200
@@ -1,0 +2,6 @@
+Mon Jul 10 22:00:38 UTC 2017 - jeng...@inai.de
+
+- Remove a bit of filler wording, and compact the description a bit
+  more for length.
+
+---



Other differences:
--
++ gl2ps.spec ++
--- /var/tmp/diff_new_pack.kCx2WX/_old  2017-07-17 09:08:50.307540976 +0200
+++ /var/tmp/diff_new_pack.kCx2WX/_new  2017-07-17 09:08:50.311540413 +0200
@@ -22,7 +22,7 @@
 Release:0
 Summary:OpenGL to PostScript Printing Library
 License:LGPL-2.0+ or SUSE-GL2PS-2.0
-Group:  System/Libraries
+Group:  Development/Libraries/C and C++
 Url:http://www.geuz.org/gl2ps/
 Source0:http://geuz.org/gl2ps/src/%{name}-%{version}.tgz
 # PATCH-FIX-UPSTREAM no-copy-dt-needed-entries.patch asterios.dra...@gmail.com 
-- Fix linking with --no-copy-dt-needed-entries
@@ -43,20 +43,21 @@
 %endif
 
 %description
-GL2PS is a C library providing high quality vector output for any OpenGL
-application. The main difference between GL2PS and other similar libraries is
-the use of sorting algorithms capable of handling intersecting and stretched
-polygons, as well as non manifold objects. GL2PS provides advanced smooth
-shading and text rendering, culling of invisible primitives, mixed
-vector/bitmap output, and much more...
-
-GL2PS can currently create PostScript (PS), Encapsulated PostScript (EPS),
-Portable Document Format (PDF) and Scalable Vector Graphics (SVG) files, as
-well as LATEX files for the text fragments. GL2PS also provides limited,
-experimental support for Portable LaTeX Graphics (PGF). Adding new vector
-output formats should be relatively easy; you can also use the excellent
-pstoedit program to transform the PostScript files generated by GL2PS into many
-other vector formats such as xfig, cgm, wmf, etc.
+GL2PS is a C library providing vector output for any OpenGL
+application. It uses sorting algorithms capable of handling
+intersecting and stretched polygons, as well as non-manifold objects.
+GL2PS provides smooth shading and text rendering, culling of
+invisible primitives and mixed vector/bitmap output.
+
+GL2PS can create PostScript (PS), Encapsulated PostScript (EPS),
+Portable Document Format (PDF) and Scalable Vector Graphics (SVG)
+files, as well as LaTeX files for the text fragments. It also
+provides limited, experimental support for Portable LaTeX Graphics
+(PGF).
+
+The pstoedit program can also be used to transform the PostScript
+files generated by GL2PS into many other vector formats such as xfig,
+cgm, wmf, etc.
 
 %package devel
 Summary:Development files for GL2PS
@@ -72,20 +73,11 @@
 Group:  System/Libraries
 
 %description -n libgl2ps%{so_ver}
-GL2PS is a C library providing high quality vector output for any OpenGL
-application. The main difference between GL2PS and other similar libraries is
-the use of sorting algorithms capable of handling intersecting and stretched
-polygons, as well as non manifold objects. GL2PS provides advanced smooth
-shading and text rendering, culling of invisible primitives, mixed
-vector/bitmap output, and much more...
-
-GL2PS can currently create PostScript (PS), Encapsulated PostScript (EPS),
-Portable Document Format (PDF) and Scalable Vector Graphics (SVG) files, as
-well as LATEX files for the text fragments. GL2PS also provides limited,
-experimental support for Portable LaTeX Graphics (PGF). Adding new vector
-output formats should be relatively easy; you can also use the excellent
-pstoedit program to transform the PostScript files generated by GL2PS into many
-other vector formats such as xfig, cgm, wmf, etc.
+GL2PS is a C library providing vector output for any OpenGL
+application. It uses sorting algorithms capable of handling
+intersecting and stretched polygons, as well as non-manifold objects.
+GL2PS provides smooth shading and text rendering, culling of
+invisible primitives and mixed vector/bitmap output.
 
 %prep
 %setup -q -n %{name}-%{version}-source




commit plasma5-sdk for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package plasma5-sdk for openSUSE:Factory 
checked in at 2017-07-17 09:08:53

Comparing /work/SRC/openSUSE:Factory/plasma5-sdk (Old)
 and  /work/SRC/openSUSE:Factory/.plasma5-sdk.new (New)


Package is "plasma5-sdk"

Mon Jul 17 09:08:53 2017 rev:30 rq:509797 version:5.10.3

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-sdk/plasma5-sdk.changes  2017-07-05 
23:54:52.802307666 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-sdk.new/plasma5-sdk.changes 
2017-07-17 09:08:54.306977686 +0200
@@ -1,0 +2,6 @@
+Wed Jul 12 14:29:24 UTC 2017 - fab...@ritter-vogt.de
+
+- Add workaround for kde#382275, removing one of the installed
+  appdata files which libzypp does not like (boo#1038368)
+
+---



Other differences:
--
++ plasma5-sdk.spec ++
--- /var/tmp/diff_new_pack.wbaI2D/_old  2017-07-17 09:08:55.162857142 +0200
+++ /var/tmp/diff_new_pack.wbaI2D/_new  2017-07-17 09:08:55.162857142 +0200
@@ -115,6 +115,10 @@
   cp -L %{_kf5_iconsdir}/breeze/apps/48/cuttlefish.svg 
%{buildroot}%{_kf5_iconsdir}/hicolor/scalable/apps/
   cp -L %{_kf5_iconsdir}/breeze/actions/24/tools-wizard.svg 
%{buildroot}%{_kf5_iconsdir}/hicolor/scalable/apps/
 
+  # Workaround for kde#382275, "The following applications are going to be 
removed: Cuttlefish".
+  # The package contains two appdata files with the same Name, which libzypp 
can't handle (boo#1038368)
+  rm %{buildroot}%{_kf5_appstreamdir}/org.kde.plasma.cuttlefish.appdata.xml
+
 %if %{with lang}
 %find_lang cuttlefish %{name}.lang
 #%%find_lang kdevpackagemanagerview %{name}.lang




commit zypper for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package zypper for openSUSE:Factory checked 
in at 2017-07-17 09:08:27

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


Package is "zypper"

Mon Jul 17 09:08:27 2017 rev:268 rq:509810 version:1.13.29

Changes:

--- /work/SRC/openSUSE:Factory/zypper/zypper.changes2017-06-04 
01:49:53.684411681 +0200
+++ /work/SRC/openSUSE:Factory/.zypper.new/zypper.changes   2017-07-17 
09:08:29.546465001 +0200
@@ -1,0 +2,12 @@
+Wed Jul 12 17:13:48 CEST 2017 - m...@suse.de
+
+- dwnldProgress: Report missing/optional files as 'not found' rather
+  than 'error' (bsc#1047785)
+- Emphasize that it depends on PackageKit how fast it will respond
+  to a 'quit' request sent if PK blocks package management.
+- man: Mention support for custom repository variables defined in
+  /etc/zypp/vars.d (openSUSE/libzypp#68)
+- BuildRequires:  libzypp-devel >= 16.13.1
+- version 1.13.29
+
+---

Old:

  zypper-1.13.28.tar.bz2

New:

  zypper-1.13.29.tar.bz2



Other differences:
--
++ zypper.spec ++
--- /var/tmp/diff_new_pack.gJQO1I/_old  2017-07-17 09:08:30.302358539 +0200
+++ /var/tmp/diff_new_pack.gJQO1I/_new  2017-07-17 09:08:30.302358539 +0200
@@ -27,7 +27,7 @@
 BuildRequires:  gcc-c++ >= 4.7
 BuildRequires:  gettext-devel >= 0.15
 BuildRequires:  libxml2-devel
-BuildRequires:  libzypp-devel >= 16.11.0
+BuildRequires:  libzypp-devel >= 16.13.1
 BuildRequires:  readline-devel >= 5.1
 Requires:   procps
 %if 0%{?suse_version}
@@ -38,7 +38,7 @@
 Summary:Command line software manager using libzypp
 License:GPL-2.0+
 Group:  System/Packages
-Version:1.13.28
+Version:1.13.29
 Release:0
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ zypper-1.13.28.tar.bz2 -> zypper-1.13.29.tar.bz2 ++
/work/SRC/openSUSE:Factory/zypper/zypper-1.13.28.tar.bz2 
/work/SRC/openSUSE:Factory/.zypper.new/zypper-1.13.29.tar.bz2 differ: char 11, 
line 1




commit gasnet for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gasnet for openSUSE:Factory checked 
in at 2017-07-17 09:08:47

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


Package is "gasnet"

Mon Jul 17 09:08:47 2017 rev:6 rq:507883 version:1.28.2

Changes:

--- /work/SRC/openSUSE:Factory/gasnet/gasnet.changes2017-06-20 
09:40:38.817939590 +0200
+++ /work/SRC/openSUSE:Factory/.gasnet.new/gasnet.changes   2017-07-17 
09:08:48.227833887 +0200
@@ -1,0 +2,6 @@
+Fri Jun 30 07:37:04 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Remove BuildRequires for libpsm2-compat
+- Build with OFI support on x86
+
+---



Other differences:
--
++ gasnet.spec ++
--- /var/tmp/diff_new_pack.KBCLfT/_old  2017-07-17 09:08:49.543648564 +0200
+++ /var/tmp/diff_new_pack.KBCLfT/_new  2017-07-17 09:08:49.547648001 +0200
@@ -32,10 +32,10 @@
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  libibverbs-devel
-%ifarch x86_64
-BuildRequires:  infinipath-psm
+%ifarch x86_64 %{ix86}
 BuildRequires:  libfabric-devel
-BuildRequires:  libpsm2-compat
+%endif
+%ifarch x86_64
 BuildRequires:  libpsm2-devel
 %endif
 BuildRequires:  libtool
@@ -105,7 +105,7 @@
 
 %build
 %configure --enable-udp --enable-mpi --enable-par --enable-ibv 
--disable-aligned-segments  --enable-segment-fast --with-segment-mmap-max=4GB 
--disable-debug \
-%ifarch x86_64
+%ifarch x86_64 %{ix86}
 --enable-ofi \
 %endif
 %ifarch s390 s390x




commit rubygem-yajl-ruby for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package rubygem-yajl-ruby for 
openSUSE:Factory checked in at 2017-07-17 09:08:44

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


Package is "rubygem-yajl-ruby"

Mon Jul 17 09:08:44 2017 rev:12 rq:508345 version:1.3.0

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-yajl-ruby/rubygem-yajl-ruby.changes  
2016-11-17 12:43:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-yajl-ruby.new/rubygem-yajl-ruby.changes 
2017-07-17 09:08:44.668335214 +0200
@@ -1,0 +2,5 @@
+Tue Jul  4 09:53:24 UTC 2017 - mrueck...@suse.de
+
+- regenerate spec file
+
+---



Other differences:
--
++ rubygem-yajl-ruby.spec ++
--- /var/tmp/diff_new_pack.xBA62S/_old  2017-07-17 09:08:45.852168480 +0200
+++ /var/tmp/diff_new_pack.xBA62S/_new  2017-07-17 09:08:45.856167917 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-yajl-ruby
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,11 +29,11 @@
 %define mod_name yajl-ruby
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  ruby-macros >= 5
 BuildRequires:  %{rubydevel >= 1.8.6}
 BuildRequires:  %{rubygem gem2rpm}
-BuildRequires:  ruby-macros >= 5
 Url:http://github.com/brianmario/yajl-ruby
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:rubygem-yajl-ruby-rpmlintrc
 Source2:gem2rpm.yml
 Summary:Ruby C bindings to the excellent Yajl JSON stream-based parser




commit python-Shapely for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package python-Shapely for openSUSE:Factory 
checked in at 2017-07-17 09:08:51

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


Package is "python-Shapely"

Mon Jul 17 09:08:51 2017 rev:11 rq:509796 version:1.5.17

Changes:

--- /work/SRC/openSUSE:Factory/python-Shapely/python-Shapely.changes
2015-06-23 11:56:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Shapely.new/python-Shapely.changes   
2017-07-17 09:08:52.487233983 +0200
@@ -1,0 +2,64 @@
+Wed Jul 12 14:22:43 UTC 2017 - toddrme2...@gmail.com
+
+- Don't require ctypes, it is built-in.
+- Fix backwards-compatibility provides.
+
+---
+Wed Jul 12 10:58:17 UTC 2017 - jeng...@inai.de
+
+- Remove redundant wording from description.
+
+---
+Tue Jul 11 19:43:32 UTC 2017 - toddrme2...@gmail.com
+
+- Implement single-spec version.
+- Fix source URL.
+- Update to 1.5.17
+  * Bug fix: eliminate memory leak in geom_factory() (#408).
+  * Bug fix: remove mention of negative distances in parallel_offset and note
+that vertices of right hand offset lines are reversed (#284).
+- Update to 1.5.16
+  * Bug fix: eliminate memory leak when unpickling geometry objects (#384, 
#385).
+  * Bug fix: prevent crashes when attempting to pickle a prepared geometry,
+raising ``PicklingError`` instead (#386).
+  * Packaging: extension modules in the OS X wheels uploaded to PyPI link only
+libgeos_c.dylib now (you can verify and compare to previous releases with
+``otool -L shapely/vectorized/_vectorized.so``).
+- Update to 1.5.15
+  * Bug fix: use uintptr_t to store pointers instead of long in _geos.pxi,
+preventing an overflow error (#372, #373). Note that this bug fix was
+erroneously reported to have been made in 1.5.14, but was not.
+- Update to 1.5.14
+  * Bug fix: use ``type()`` instead of ``isinstance()`` when evaluating 
geometry
+equality, preventing instances of base and derived classes from 
+being mistaken for equals (#317).
+  * Bug fix: ensure that empty geometries are created when constructors have no
+args (#332, #333).
+  * Bug fix: support app "freezing" better on Windows by not relying on the
+  ``__file__`` attribute (#342, #377).
+  * Bug fix: ensure that empty polygons evaluate to be ``==`` (#355).
+  * Bug fix: filter out empty geometries that can cause segfaults when creating
+and loading STRtrees (#345, #348).
+  * Bug fix: no longer attempt to reuse GEOS DLLs already loaded by Rasterio
+or Fiona on OS X (#374, #375).
+- Update to 1.5.13
+  * Restore setup and runtime discovery and loading of GEOS shared library to
+state at version 1.5.9 (#326).
+  * On OS X we try to reuse any GEOS shared library that may have been loaded
+via import of Fiona or Rasterio in order to avoid a bug involving the
+GEOS AbstractSTRtree (#324, #327).
+- Update to 1.5.12
+  * Remove configuration of root logger from libgeos.py (#312).
+  * Skip test_fallbacks on Windows (#308).
+  * Call setlocale(locale.LC_ALL, "") instead of resetlocale() on Windows when
+tearing down the locale test (#308).
+  * Fix for Sphinx warnings (#309).
+  * Addition of .cache, .idea, .pyd, .pdb to .gitignore (#310).
+- Update to 1.5.11
+  * Remove packaging module requirement added in 1.5.10 (#305). Distutils 
can't 
+parse versions using 'rc', but if we stick to 'a' and 'b' we will be fine.
+- Update to 1.5.10
+  * Monkey patch affinity module by absolute reference (#299).
+  * Raise TopologicalError in relate() instead of crashing (#294, #295, #303).
+
+---

Old:

  Shapely-1.5.9.tar.gz

New:

  Shapely-1.5.17.tar.gz



Other differences:
--
++ python-Shapely.spec ++
--- /var/tmp/diff_new_pack.t3ZOSL/_old  2017-07-17 09:08:53.075151179 +0200
+++ /var/tmp/diff_new_pack.t3ZOSL/_new  2017-07-17 09:08:53.079150616 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Shapely
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,34 +16,46 @@
 #
 
 
+%bcond_without test
+
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define oldpython python
 Name:   python-Shapely
-Version:1.5.9
+Version:1.5.17
 Release:0
 Summary:Geospatial geometries, predicates, and operations
 Lice

commit libkcapi for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package libkcapi for openSUSE:Factory 
checked in at 2017-07-17 09:08:58

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


Package is "libkcapi"

Mon Jul 17 09:08:58 2017 rev:3 rq:509804 version:0.13.0

Changes:

--- /work/SRC/openSUSE:Factory/libkcapi/libkcapi.changes2017-07-09 
13:04:25.745150748 +0200
+++ /work/SRC/openSUSE:Factory/.libkcapi.new/libkcapi.changes   2017-07-17 
09:08:59.178291596 +0200
@@ -1,0 +2,6 @@
+Wed Jul 12 14:51:26 UTC 2017 - meiss...@suse.com
+
+- Change the signing to use openssl sha256/sha512 directly, to
+  avoid fipscheck / hmaccalc.
+
+---



Other differences:
--
++ libkcapi.spec ++
--- /var/tmp/diff_new_pack.YwXLh5/_old  2017-07-17 09:08:59.882192457 +0200
+++ /var/tmp/diff_new_pack.YwXLh5/_new  2017-07-17 09:08:59.882192457 +0200
@@ -30,8 +30,10 @@
 Patch1: reproduciblesort.patch
 # PATCH-FIX-UPSTREAM https://github.com/smuellerDD/libkcapi/pull/12
 Patch2: reproducibledate.patch
-BuildRequires:  docbook-utils xmlto
+BuildRequires:  docbook-utils
 BuildRequires:  fipscheck
+BuildRequires:  openssl
+BuildRequires:  xmlto
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -98,8 +100,16 @@
%{?__debug_package:%{__debug_install_post}} \
%{__arch_install_post} \
%{__os_install_post} \
-   /usr/bin/fipshmac $RPM_BUILD_ROOT/usr/%_lib/libkcapi/fipscheck \
-   /usr/bin/fipshmac $RPM_BUILD_ROOT/usr/%_lib/libkcapi/fipshmac \
+   openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/fipscheck |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.fipscheck.hmac \
+   openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/fipshmac  |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.fipshmac.hmac \
+   openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha1sum   |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha1sum.hmac \
+   openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha256sum |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha256sum.hmac \
+   openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha384sum |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha384sum.hmac \
+   openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha512sum |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha512sum.hmac \
+   openssl sha512 -hmac FIPS-FTW-RHT2009 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha1hmac   |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha1hmac.hmac \
+   openssl sha512 -hmac FIPS-FTW-RHT2009 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha256hmac |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha256hmac.hmac \
+   openssl sha512 -hmac FIPS-FTW-RHT2009 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha384hmac |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha384hmac.hmac \
+   openssl sha512 -hmac FIPS-FTW-RHT2009 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha512hmac |sed -e 's/.* //;' > 
$RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha512hmac.hmac \
%{nil}
 
 %post -n libkcapi0 -p /sbin/ldconfig




commit pocl for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package pocl for openSUSE:Factory checked in 
at 2017-07-17 09:09:02

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


Package is "pocl"

Mon Jul 17 09:09:02 2017 rev:9 rq:509806 version:0.14

Changes:

--- /work/SRC/openSUSE:Factory/pocl/pocl.changes2017-07-04 
11:58:31.164312939 +0200
+++ /work/SRC/openSUSE:Factory/.pocl.new/pocl.changes   2017-07-17 
09:09:03.301710842 +0200
@@ -1,0 +2,12 @@
+Wed Jul 12 10:50:47 UTC 2017 - jeng...@inai.de
+
+- Description should say what it is, not what it plans in the
+  future.
+
+---
+Sat Jul  8 17:29:43 UTC 2017 - mar...@gmx.de
+
+- Fix runtime linking issues (missing crtbeginS.so)
+  - Require gcc for Factory
+
+---



Other differences:
--
++ pocl.spec ++
--- /var/tmp/diff_new_pack.QAXx4z/_old  2017-07-17 09:09:03.833635924 +0200
+++ /var/tmp/diff_new_pack.QAXx4z/_new  2017-07-17 09:09:03.837635360 +0200
@@ -26,7 +26,7 @@
 # except include/utlist.h which is under BSD (and unbundled) and
 # except lib/kernel/vecmath which is under GPLv3+ or LGPLv3+ (and unbundled in 
future)
 License:MIT
-Group:  Productivity/Other
+Group:  Development/Tools/Other
 Url:http://portablecl.org/
 Source0:http://portablecl.org/downloads/%{name}-%{version}.tar.gz
 Source99:   pocl-rpmlintrc
@@ -52,6 +52,9 @@
 Requires:   clang4
 Requires:   libstdc++-devel
 Requires:   libut2
+%if 0%{?suse_version} > 1325
+Requires:   gcc
+%endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # Only armv7l is supported
 # PPC support is currently broken, due to path problems
@@ -59,34 +62,31 @@
 ExclusiveArch:  %{ix86} x86_64 armv7l armv7hl
 
 %description
-Portable Computing Language (pocl) aims to become a MIT-licensed open source
-implementation of the OpenCL standard which can be easily adapted for new 
targets
-and devices, both for homogeneous CPU and heterogenous GPUs/accelerators.
+Portable Computing Language (pocl) is an implementation of the OpenCL standard
+which can be adapted for new targets and devices, both for homogeneous CPU and
+heterogenous GPUs/accelerators.
 
 pocl uses Clang as an OpenCL C frontend and LLVM for the kernel compiler
-implementation, and as a portability layer. Thus, if your desired target
-has an LLVM backend, it should be able to get OpenCL support easily by using 
pocl.
-
-The goal is to accomplish improved performance portability using a kernel
-compiler that can generate multi-work-item work-group functions that exploit
-various types of parallel hardware resources: VLIW, superscalar, SIMD, SIMT,
-multicore, multithread ...
+implementation, and as a portability layer. If your desired target has an LLVM
+backend, it should be possible to get OpenCL support by using pocl.
 
-Additional purpose of the project is to serve as a research platform for
-issues in parallel programming on heterogeneous platforms.
+pocl yields improved performance portability by using a kernel compiler that
+can generate multi-work-item work-group functions that exploit various types of
+parallel hardware resources, such as VLIW, superscalar, SIMD, SIMT, multicore
+and multithread.
 
 %package devel
-Summary:Portable Computing Language - development files
+Summary:Development files for the Portable Computing Language
 Group:  Development/Languages/Other
 Requires:   %{name}%{?_isa} = %{version}-%{release}
 Requires:   opencl-headers
 
 %description devel
-Portable Computing Language (pocl) aims to become a MIT-licensed open source
-implementation of the OpenCL standard which can be easily adapted for new 
targets
-and devices, both for homogeneous CPU and heterogenous GPUs/accelerators.
+Portable Computing Language (pocl) is an implementation of the OpenCL standard
+which can be adapted for new targets and devices, both for homogeneous CPU and
+heterogenous GPUs/accelerators.
 
-This Subpackage provides the development files needed for pocl.
+This subpackage provides the development files needed for pocl.
 
 %prep
 %setup -q




commit PlayOnLinux for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package PlayOnLinux for openSUSE:Factory 
checked in at 2017-07-17 09:09:07

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


Package is "PlayOnLinux"

Mon Jul 17 09:09:07 2017 rev:3 rq:509817 version:4.2.12

Changes:

--- /work/SRC/openSUSE:Factory/PlayOnLinux/PlayOnLinux.changes  2017-06-15 
11:26:02.408980821 +0200
+++ /work/SRC/openSUSE:Factory/.PlayOnLinux.new/PlayOnLinux.changes 
2017-07-17 09:09:08.472982504 +0200
@@ -1,0 +2,8 @@
+Tue Jul 11 22:33:41 UTC 2017 - ec...@opensuse.org
+
+- update to 4.2.12
+  * no changelog from upstream
+- remove patch PlayOnLinux-BrokenMiscButtons.patch because now in
+  upstream
+
+---

Old:

  PlayOnLinux-BrokenMiscButtons.patch
  PlayOnLinux_4.2.11.tar.gz

New:

  PlayOnLinux_4.2.12.tar.gz



Other differences:
--
++ PlayOnLinux.spec ++
--- /var/tmp/diff_new_pack.Arbtou/_old  2017-07-17 09:09:11.932495253 +0200
+++ /var/tmp/diff_new_pack.Arbtou/_new  2017-07-17 09:09:11.936494690 +0200
@@ -18,7 +18,7 @@
 
 Name:   PlayOnLinux
 %define _name   playonlinux
-Version:4.2.11
+Version:4.2.12
 Release:0
 Summary:Play your Windows games on GNU/Linux
 License:GPL-3.0
@@ -28,7 +28,6 @@
 Source1:playonlinux.sh
 # PATCH-FIX-OPENSUSE PlayOnLinux-desktop.patch
 Patch0: %{name}-desktop.patch
-Patch1: %{name}-BrokenMiscButtons.patch
 BuildRequires:  fdupes
 BuildRequires:  python-devel
 BuildRequires:  update-desktop-files
@@ -58,7 +57,6 @@
 %prep
 %setup -q -n %{_name}
 %patch0 -p1
-%patch1 -p1
 
 %build
 # Nothing to build.

++ PlayOnLinux_4.2.11.tar.gz -> PlayOnLinux_4.2.12.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/playonlinux/Makefile new/playonlinux/Makefile
--- old/playonlinux/Makefile2017-05-30 23:38:39.0 +0200
+++ new/playonlinux/Makefile2017-06-19 21:03:38.0 +0200
@@ -28,8 +28,6 @@
 PREFIX ?= /usr
 DESTDIR ?= # root dir
 
-CFLAGS += -lGL -lX11
-
 sharedir := $(DESTDIR)$(PREFIX)/share
 bindir := $(DESTDIR)$(PREFIX)/bin
 execdir := $(DESTDIR)$(PREFIX)/libexec
@@ -46,7 +44,7 @@
$(RM) ./ChangeLog
 
 build:
-   $(CC) ./src/check_direct_rendering.c -o ./bin/playonlinux-check_dd
+   $(CC) ./src/check_direct_rendering.c -o ./bin/playonlinux-check_dd -lGL 
-lX11
$(PYTHON) ./python/*.py
$(PYTHON) ./python/lib/*.py
echo -e '#!/bin/bash\nGDK_BACKEND=x11 
${sharedir}/playonlinux/playonlinux "$$@"\nexit 0' > ./bin/playonlinux
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/playonlinux/python/configure.py 
new/playonlinux/python/configure.py
--- old/playonlinux/python/configure.py 2017-05-30 23:38:39.0 +0200
+++ new/playonlinux/python/configure.py 2017-06-19 21:03:38.0 +0200
@@ -479,13 +479,13 @@
 playonlinux.open_folder(self.s_title, 
self.display_elements["open_in"].GetValue().encode("utf-8","replace"))
 else:
 playonlinux.open_folder_prefix(self.s_prefix)
-if(param == 403):
+if(param == 404):
 if(self.s_isPrefix == False):
 subprocess.Popen(["bash", 
Variables.playonlinux_env+"/bash/POL_Command", 
self.s_title.encode('utf-8','replace'), "POL_OpenShell", 
self.s_title.encode('utf-8','replace')])
 else:
 subprocess.Popen(["bash", 
Variables.playonlinux_env+"/bash/POL_Command", "--prefix", 
self.s_prefix.encode('utf-8','replace'), "POL_OpenShell"])
 
-if(param == 404):
+if(param == 405):
 self.FileDialog = wx.FileDialog(self)
 self.FileDialog.SetDirectory("~")
 self.supported_files = "All|*.exe;*.EXE;*.msi;*.MSI\
@@ -538,7 +538,7 @@
 
 def AddMiscChamp(self, title, shortname, value, num):
 self.display_elements[shortname+"_text"] = 
wx.StaticText(self.panelMisc, -1, title,pos=(15,24+num*40))
-self.display_elements[shortname] = wx.TextCtrl(self.panelMisc, 
400+num, value, pos=(95,19+num*40), size=(420,25))
+self.display_elements[shortname] = wx.TextCtrl(self.panelMisc, 
400+num, value, pos=(245,19+num*40), size=(270,25))
 wx.EVT_TEXT(self, 400+num, self.set_open_in)
 
 def set_open_in(self, event):
@@ -591,18 +591,12 @@
 self.txtMisc = wx.StaticText(self.panelMisc, -1, _(nom), (10,10), 
wx.DefaultSize)
 self.txtMisc.SetFont(self.fontTitle)
 
-i=1
-self.AddMiscElement(_("Mouse warp 
override"),"MouseWarpOverride",["Enabled","Disabled","Force"],["enable","

commit kapidox for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package kapidox for openSUSE:Factory checked 
in at 2017-07-17 09:09:18

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


Package is "kapidox"

Mon Jul 17 09:09:18 2017 rev:42 rq:509882 version:5.36.0

Changes:

--- /work/SRC/openSUSE:Factory/kapidox/kapidox.changes  2017-07-05 
23:49:24.980483364 +0200
+++ /work/SRC/openSUSE:Factory/.kapidox.new/kapidox.changes 2017-07-17 
09:09:20.223327540 +0200
@@ -1,0 +2,10 @@
+Wed Jul 12 07:13:58 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.36.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.36.0.php
+- Changes since 5.35.0:
+  * None
+
+---

Old:

  kapidox-5.35.0.tar.xz

New:

  kapidox-5.36.0.tar.xz



Other differences:
--
++ kapidox.spec ++
--- /var/tmp/diff_new_pack.SWzuU5/_old  2017-07-17 09:09:21.015216007 +0200
+++ /var/tmp/diff_new_pack.SWzuU5/_new  2017-07-17 09:09:21.019215443 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.35
+%define _tar_path 5.36
 Name:   kapidox
-Version:5.35.0
+Version:5.36.0
 Release:0
 Requires:   doxygen
 BuildRequires:  fdupes

++ kapidox-5.35.0.tar.xz -> kapidox-5.36.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.35.0/setup.py new/kapidox-5.36.0/setup.py
--- old/kapidox-5.35.0/setup.py 2017-05-27 03:20:39.0 +0200
+++ new/kapidox-5.36.0/setup.py 2017-06-10 11:32:34.0 +0200
@@ -6,7 +6,7 @@
 
 setup(
 name='kapidox',
-version='5.35.0',
+version='5.36.0',
 description='KDE API documentation generation tools',
 maintainer = 'Olivier Churlaud',
 maintainer_email = 'oliv...@churlaud.com',




commit ldc for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package ldc for openSUSE:Factory checked in 
at 2017-07-17 09:09:22

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


Package is "ldc"

Mon Jul 17 09:09:22 2017 rev:2 rq:509950 version:0.17.4

Changes:

--- /work/SRC/openSUSE:Factory/ldc/ldc.changes  2017-07-05 23:57:38.470970636 
+0200
+++ /work/SRC/openSUSE:Factory/.ldc.new/ldc.changes 2017-07-17 
09:09:24.994655525 +0200
@@ -1,0 +2,5 @@
+Fri Jun  9 08:54:07 UTC 2017 - jeng...@inai.de
+
+- Rectify RPM groups
+
+---



Other differences:
--
++ ldc.spec ++
--- /var/tmp/diff_new_pack.yqmeGu/_old  2017-07-17 09:09:25.946521460 +0200
+++ /var/tmp/diff_new_pack.yqmeGu/_new  2017-07-17 09:09:25.950520897 +0200
@@ -48,12 +48,14 @@
 
 %package -n %{lname_runtime}%{so_ver}
 Summary:Minimal D runtime library
+Group:  System/Libraries
 
 %description -n %{lname_runtime}%{so_ver}
 The minimal runtime library required to support the D programming language.
 
 %package runtime-devel
 Summary:Development files for the D runtime library
+Group:  Development/Libraries/Other
 Requires:   %{lname_runtime}%{so_ver} = %{version}
 Recommends: ldc-phobos-devel  = %{version}
 
@@ -63,12 +65,14 @@
 
 %package -n %{lname_phobos}%{so_ver}
 Summary:The D standard library
+Group:  System/Libraries
 
 %description -n %{lname_phobos}%{so_ver}
 This package includes ldc's phobos library - The D standard library.
 
 %package phobos-devel
 Summary:Development files for the D standard library
+Group:  Development/Libraries/Other
 Requires:   %{lname_phobos}%{so_ver} = %{version}
 Requires:   %{name}-runtime-devel= %{version}
 




commit python-pickleshare for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package python-pickleshare for 
openSUSE:Factory checked in at 2017-07-17 09:09:11

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


Package is "python-pickleshare"

Mon Jul 17 09:09:11 2017 rev:2 rq:509830 version:0.7.4

Changes:

--- /work/SRC/openSUSE:Factory/python-pickleshare/python-pickleshare.changes
2015-09-30 05:48:59.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-pickleshare.new/python-pickleshare.changes   
2017-07-17 09:09:13.848225434 +0200
@@ -1,0 +2,35 @@
+Wed Jul 12 17:12:05 UTC 2017 - toddrme2...@gmail.com
+
+- Implement single-spec version
+- Fix source URL
+- update to version 0.7.4:
+  * Accept any str-able object for the root path
+  * Convert test fixture tmpdir to string before creating
+PickleShareDB
+  * Don't convert Py2 unicode path to str
+- update to version 0.7.3:
+  * Fix environment marker
+  * Include license and test files in sdists
+  * Fix for multiple processes creating a folder
+  * handle exception and keep Python 2 support
+  * Remove unused import
+- update to version 0.7.2:
+  * Fix environment marker
+  * Fix error when db location does not already exist
+  * Require pathlib2 on Python 3.3 as well
+- changes from version 0.7.0:
+  * Update metadata
+  * Fix environment marker
+  * Update .travis.yml
+  * Switch from path.py to pathlib
+  * Add MIT license
+  * Cleanup: Python 3 compatible example, remove .idea folder
+  * Update setup.py classifiers
+  * Enable 3.5 on travis
+  * specify path.py version dependency
+- update to version 0.6:
+  * Fix module import to work with the latest version
+  * remove pkg.info
+  * update main page URL
+  
+---

Old:

  pickleshare-0.5.tar.gz

New:

  pickleshare-0.7.4.tar.gz



Other differences:
--
++ python-pickleshare.spec ++
--- /var/tmp/diff_new_pack.D8HB9K/_old  2017-07-17 09:09:14.780094186 +0200
+++ /var/tmp/diff_new_pack.D8HB9K/_new  2017-07-17 09:09:14.780094186 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pickleshare
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,25 +15,31 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+%bcond_without test
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-pickleshare
-Version:0.5
+Version:0.7.4
 Release:0
 Summary:Tiny shelve-like database with concurrency support
 License:MIT
 Group:  Development/Languages/Python
 Url:https://github.com/vivainio/pickleshare
-Source: 
https://pypi.python.org/packages/source/p/pickleshare/pickleshare-%{version}.tar.gz
-BuildRequires:  python-devel
-BuildRequires:  python-path.py
-BuildRequires:  python-setuptools
-Requires:   python-path.py
+Source: 
https://files.pythonhosted.org/packages/source/p/pickleshare/pickleshare-%{version}.tar.gz
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  python-pathlib2
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
+%if %{with test}
+BuildRequires:  %{python_module pytest}
+%endif
+%ifpython2
+Requires:   python-pathlib2
+%endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
 BuildArch:  noarch
-%endif
+%python_subpackages
 
 %description
 PickleShare - a small 'shelve' like datastore with concurrency support
@@ -57,13 +63,24 @@
 sed -i '1{\@^#!/usr/bin/env python@d}' pickleshare.py
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%python_install
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
+
+%if %{with test}
+%check
+# need to set locale to avoid UnicodeEncodeError
+export LANG=en_US.UTF-8
+%python_expand py.test-%{$python_bin_suffix} .
+%endif
 
-%files
+%files %{python_files}
 %defattr(-,root,root,-)
-%{python_sitelib}/*
+%doc LICENSE
+%{python_sitelib}/pickleshare.py*
+%{python_sitelib}/pickleshare-%{version}-py*.egg-info
+%pycache_only %{python_sitelib}/__pycache__/pickleshare.*.py*
 
 %changelog

++ pickleshare-0.5.tar.gz -> pickleshare-0.7.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude

commit ghc-active for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package ghc-active for openSUSE:Factory 
checked in at 2017-07-17 09:09:29

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


Package is "ghc-active"

Mon Jul 17 09:09:29 2017 rev:5 rq:509952 version:0.2.0.13

Changes:

--- /work/SRC/openSUSE:Factory/ghc-active/ghc-active.changes2017-07-06 
00:02:15.715914590 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-active.new/ghc-active.changes   
2017-07-17 09:09:29.797979003 +0200
@@ -1,0 +2,5 @@
+Tue Jul  4 03:01:10 UTC 2017 - psim...@suse.com
+
+- Update to version 0.2.0.13 revision 2.
+
+---



Other differences:
--
++ ghc-active.spec ++
--- /var/tmp/diff_new_pack.QZxOmS/_old  2017-07-17 09:09:30.401893945 +0200
+++ /var/tmp/diff_new_pack.QZxOmS/_new  2017-07-17 09:09:30.401893945 +0200
@@ -26,7 +26,7 @@
 Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-lens-devel
 BuildRequires:  ghc-linear-devel

++ active.cabal ++
--- /var/tmp/diff_new_pack.QZxOmS/_old  2017-07-17 09:09:30.453886621 +0200
+++ /var/tmp/diff_new_pack.QZxOmS/_new  2017-07-17 09:09:30.453886621 +0200
@@ -1,6 +1,6 @@
 name:active
 version: 0.2.0.13
-x-revision: 1
+x-revision: 2
 synopsis:Abstractions for animation
 description: "Active" abstraction for animated things with finite 
start and end times.
 license: BSD3
@@ -39,7 +39,7 @@
semigroupoids >= 1.2 && < 5.3,
lens >= 4.0 && < 4.16,
linear >= 1.14 && < 1.21,
-   QuickCheck >= 2.9 && < 2.10
+   QuickCheck >= 2.9 && < 2.11
 other-modules: Data.Active
 hs-source-dirs:src, test
 default-language:  Haskell2010




commit golang-github-nsf-gocode for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package golang-github-nsf-gocode for 
openSUSE:Factory checked in at 2017-07-17 09:09:25

Comparing /work/SRC/openSUSE:Factory/golang-github-nsf-gocode (Old)
 and  /work/SRC/openSUSE:Factory/.golang-github-nsf-gocode.new (New)


Package is "golang-github-nsf-gocode"

Mon Jul 17 09:09:25 2017 rev:2 rq:509951 version:0.0.0+git20161123.5070dac

Changes:

--- 
/work/SRC/openSUSE:Factory/golang-github-nsf-gocode/golang-github-nsf-gocode.changes
2017-07-06 00:02:02.709746843 +0200
+++ 
/work/SRC/openSUSE:Factory/.golang-github-nsf-gocode.new/golang-github-nsf-gocode.changes
   2017-07-17 09:09:27.298331065 +0200
@@ -1,0 +2,5 @@
+Tue Jul  4 09:03:41 UTC 2017 - jeng...@inai.de
+
+- Trim description, don't sell standard speeds as "fast".
+
+---



Other differences:
--
++ golang-github-nsf-gocode.spec ++
--- /var/tmp/diff_new_pack.QjP1J2/_old  2017-07-17 09:09:27.942240374 +0200
+++ /var/tmp/diff_new_pack.QjP1J2/_new  2017-07-17 09:09:27.946239811 +0200
@@ -44,13 +44,10 @@
 %{go_provides}
 
 %description
-An autocompletion daemon for the Go programming language. Gocode is a helper
-tool which is intended to be integraded with your source code editor, like vim
-and emacs. It provides several advanced capabilities, which currently includes
-context-sensitive autocompletion. It is called daemon, because it uses client /
-server architecture for caching purposes. In particular, it makes
-autocompletions very fast. Typical autocompletion time with warm cache is 30ms,
-which is barely noticeable.
+Gocode is a helper tool which is intended to be integrated with your
+source code editor such as vim or emacs. It uses a client-server
+architecture for caching purposes (hence "daemon") and provides
+context-sensitive autocompletion.
 
 %package -n gocode
 Summary:An autocompletion daemon for the Go programming language
@@ -60,13 +57,10 @@
 %{go_exclusivearch}
 
 %description -n gocode
-An autocompletion daemon for the Go programming language. Gocode is a helper
-tool which is intended to be integraded with your source code editor, like vim
-and emacs. It provides several advanced capabilities, which currently includes
-context-sensitive autocompletion. It is called daemon, because it uses client /
-server architecture for caching purposes. In particular, it makes
-autocompletions very fast. Typical autocompletion time with warm cache is 30ms,
-which is barely noticeable.
+Gocode is a helper tool which is intended to be integrated with your
+source code editor such as vim or emacs. It uses a client-server
+architecture for caching purposes (hence "daemon") and provides
+context-sensitive autocompletion.
 
 %package -n vim-completion-golang
 Summary:Golang autocompletion files for Vim




commit python-ldap for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package python-ldap for openSUSE:Factory 
checked in at 2017-07-17 09:09:15

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


Package is "python-ldap"

Mon Jul 17 09:09:15 2017 rev:42 rq:509843 version:2.4.41

Changes:

--- /work/SRC/openSUSE:Factory/python-ldap/python-ldap.changes  2017-06-28 
10:37:42.859256388 +0200
+++ /work/SRC/openSUSE:Factory/.python-ldap.new/python-ldap.changes 
2017-07-17 09:09:17.827664954 +0200
@@ -1,0 +2,5 @@
+Wed Jul 12 18:07:10 UTC 2017 - mich...@stroeder.com
+
+- update to upstream release 2.4.41 (small LDIF parser enhancement)
+
+---

Old:

  python-ldap-2.4.40.tar.gz
  python-ldap-2.4.40.tar.gz.asc

New:

  python-ldap-2.4.41.tar.gz
  python-ldap-2.4.41.tar.gz.asc



Other differences:
--
++ python-ldap.spec ++
--- /var/tmp/diff_new_pack.Za4net/_old  2017-07-17 09:09:19.019497092 +0200
+++ /var/tmp/diff_new_pack.Za4net/_new  2017-07-17 09:09:19.023496529 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-ldap
-Version:2.4.40
+Version:2.4.41
 Release:0
 Summary:Python LDAP interface
 License:Python-2.0

++ python-ldap-2.4.40.tar.gz -> python-ldap-2.4.41.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-ldap-2.4.40/CHANGES 
new/python-ldap-2.4.41/CHANGES
--- old/python-ldap-2.4.40/CHANGES  2017-06-27 20:38:08.0 +0200
+++ new/python-ldap-2.4.41/CHANGES  2017-07-12 20:04:30.0 +0200
@@ -1,4 +1,12 @@
 
+Released 2.4.41 2017-07-12
+
+Changes since 2.4.40:
+
+Lib/
+* Added support for increment: lines in LDIF changes records
+
+
 Released 2.4.40 2017-06-27
 
 Changes since 2.4.39:
@@ -1452,4 +1460,4 @@
 
 Released 1.10alpha3 2000-09-19
 
-$Id: CHANGES,v 1.450 2017/06/27 18:38:08 stroeder Exp $
+$Id: CHANGES,v 1.452 2017/07/12 18:04:30 stroeder Exp $
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-ldap-2.4.40/Lib/dsml.py 
new/python-ldap-2.4.41/Lib/dsml.py
--- old/python-ldap-2.4.40/Lib/dsml.py  2017-06-23 09:16:26.0 +0200
+++ new/python-ldap-2.4.41/Lib/dsml.py  2017-07-12 19:30:12.0 +0200
@@ -4,13 +4,13 @@
 
 See http://www.python-ldap.org/ for details.
 
-$Id: dsml.py,v 1.57 2017/06/23 07:16:26 stroeder Exp $
+$Id: dsml.py,v 1.58 2017/07/12 17:30:12 stroeder Exp $
 
 Python compability note:
 Tested with Python 2.0+.
 """
 
-__version__ = '2.4.40'
+__version__ = '2.4.41'
 
 import string,base64
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-ldap-2.4.40/Lib/ldap/__init__.py 
new/python-ldap-2.4.41/Lib/ldap/__init__.py
--- old/python-ldap-2.4.40/Lib/ldap/__init__.py 2017-06-23 09:16:26.0 
+0200
+++ new/python-ldap-2.4.41/Lib/ldap/__init__.py 2017-07-12 19:30:12.0 
+0200
@@ -3,12 +3,12 @@
 
 See http://www.python-ldap.org/ for details.
 
-$Id: __init__.py,v 1.118 2017/06/23 07:16:26 stroeder Exp $
+$Id: __init__.py,v 1.119 2017/07/12 17:30:12 stroeder Exp $
 """
 
 # This is also the overall release version number
 
-__version__ = '2.4.40'
+__version__ = '2.4.41'
 
 import sys
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-ldap-2.4.40/Lib/ldapurl.py 
new/python-ldap-2.4.41/Lib/ldapurl.py
--- old/python-ldap-2.4.40/Lib/ldapurl.py   2017-06-23 09:16:26.0 
+0200
+++ new/python-ldap-2.4.41/Lib/ldapurl.py   2017-07-12 19:30:12.0 
+0200
@@ -3,7 +3,7 @@
 
 See http://www.python-ldap.org/ for details.
 
-\$Id: ldapurl.py,v 1.93 2017/06/23 07:16:26 stroeder Exp $
+\$Id: ldapurl.py,v 1.94 2017/07/12 17:30:12 stroeder Exp $
 
 Python compability note:
 This module only works with Python 2.0+ since
@@ -11,7 +11,7 @@
 2. list comprehensions are used.
 """
 
-__version__ = '2.4.40'
+__version__ = '2.4.41'
 
 __all__ = [
   # constants
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-ldap-2.4.40/Lib/ldif.py 
new/python-ldap-2.4.41/Lib/ldif.py
--- old/python-ldap-2.4.40/Lib/ldif.py  2017-06-23 09:16:26.0 +0200
+++ new/python-ldap-2.4.41/Lib/ldif.py  2017-07-12 19:30:12.0 +0200
@@ -3,13 +3,13 @@
 
 See http://www.python-ldap.org/ for details.
 
-$Id: ldif.py,v 1.113 2017/06/23 07:16:26 stroeder Exp $
+$Id: ldif.py,v 1.114 2017/07/12 17:30:12 stroeder Exp $
 
 

commit qdirstat for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package qdirstat for openSUSE:Factory 
checked in at 2017-07-17 09:08:56

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


Package is "qdirstat"

Mon Jul 17 09:08:56 2017 rev:5 rq:509799 version:1.4

Changes:

--- /work/SRC/openSUSE:Factory/qdirstat/qdirstat.changes2017-01-17 
14:36:55.356684362 +0100
+++ /work/SRC/openSUSE:Factory/.qdirstat.new/qdirstat.changes   2017-07-17 
09:08:57.810484242 +0200
@@ -1,0 +2,5 @@
+Wed Jul 12 16:00:42 CEST 2017 - shundham...@suse.de
+
+- Update to V1.4 (File size stats (histogram) and more) 
+
+---

Old:

  qdirstat-1.2.tar.bz2

New:

  qdirstat-1.4.tar.bz2



Other differences:
--
++ qdirstat.spec ++
--- /var/tmp/diff_new_pack.PhxN74/_old  2017-07-17 09:08:58.414399186 +0200
+++ /var/tmp/diff_new_pack.PhxN74/_new  2017-07-17 09:08:58.418398622 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qdirstat
 #
-# Copyright (c) 2016-2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   qdirstat
-Version:1.2
+Version:1.4
 Release:0
 Summary:Directory Statistics
 License:GPL-2.0
@@ -71,10 +71,12 @@
 
 %files
 %defattr(-,root,root)
-%doc README.md LICENSE DevHistory.md Contributing.md TODO.md 
doc/cache-file-format.txt
+%doc README.md LICENSE doc/cache-file-format.txt doc/*.md
 %{_bindir}/qdirstat
 %{_bindir}/qdirstat-cache-writer
 %{_datadir}/applications/qdirstat.desktop
 %{_datadir}/icons/hicolor/
+%dir %{_docdir}/%name/stats/
+%{_docdir}/%name/stats/*.md
 
 %changelog

++ qdirstat-1.2.tar.bz2 -> qdirstat-1.4.tar.bz2 ++
 14788 lines of diff (skipped)




commit python-pytaglib for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package python-pytaglib for openSUSE:Factory 
checked in at 2017-07-17 09:09:34

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


Package is "python-pytaglib"

Mon Jul 17 09:09:34 2017 rev:2 rq:509955 version:1.4.1

Changes:

--- /work/SRC/openSUSE:Factory/python-pytaglib/python-pytaglib.changes  
2017-07-05 23:56:49.613853011 +0200
+++ /work/SRC/openSUSE:Factory/.python-pytaglib.new/python-pytaglib.changes 
2017-07-17 09:09:35.361195452 +0200
@@ -1,0 +2,5 @@
+Fri May 26 12:11:03 UTC 2017 - jeng...@inai.de
+
+- Ensure neutrality of description.
+
+---



Other differences:
--
++ python-pytaglib.spec ++
--- /var/tmp/diff_new_pack.r8CZFe/_old  2017-07-17 09:09:36.257069273 +0200
+++ /var/tmp/diff_new_pack.r8CZFe/_new  2017-07-17 09:09:36.261068709 +0200
@@ -35,8 +35,8 @@
 %python_subpackages
 
 %description
-pytaglib is an audio metadata (“tag”) library for Python).
-It relies on the popular TagLib C++ library.
+pytaglib is an audio metadata (“tag”) library for Python.
+It relies on the TagLib C++ library.
 
 %prep
 %setup -q -n "pytaglib-%{version}"




commit gnu_ddrescue for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gnu_ddrescue for openSUSE:Factory 
checked in at 2017-07-17 09:09:47

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


Package is "gnu_ddrescue"

Mon Jul 17 09:09:47 2017 rev:16 rq:509960 version:1.22

Changes:

--- /work/SRC/openSUSE:Factory/gnu_ddrescue/gnu_ddrescue.changes
2016-03-21 12:45:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnu_ddrescue.new/gnu_ddrescue.changes   
2017-07-17 09:09:48.563335989 +0200
@@ -1,0 +2,19 @@
+Thu Jul  6 00:17:55 UTC 2017 - jeng...@inai.de
+
+- Update to new upstream release 1.22
+  * The -X option now stands for --max-read-errors instead of
+--exit-on-error and therefore requires an argument now.
+  * New options: --max-slow-reads, --delay-slow, --reset-slow,
+--log-events, --mapfile-interval, --pause-on-error
+  * The option '--pause' has been renamed to '--pause-on-pass'.
+  * The option '--max-errors' has been renamed to '--max-bad-areas'.
+  * ddrescue now shows the number of read errors, the error rate and
+(if a --min-read-rate is specified) the number of slow reads.
+  * The 'current_pass' field has been added to the mapfile. This
+allows the copying phase to resume instead of restart from
+pass 1. It also allows the retrying phase to resume in the
+same direction it was interrupted.
+  * (More option changes; see the full changelog in the "NEWS"
+file shipped inside the package.)
+
+---

Old:

  ddrescue-1.21.tar.lz
  ddrescue-1.21.tar.lz.sig

New:

  ddrescue-1.22.tar.lz
  ddrescue-1.22.tar.lz.sig



Other differences:
--
++ gnu_ddrescue.spec ++
--- /var/tmp/diff_new_pack.LJsUdB/_old  2017-07-17 09:09:49.343226145 +0200
+++ /var/tmp/diff_new_pack.LJsUdB/_new  2017-07-17 09:09:49.347225581 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnu_ddrescue
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   gnu_ddrescue
-Version:1.21
+Version:1.22
 Release:0
 Summary:Data Copying in the Presence of I/O Errors
 License:GPL-2.0+





commit pango for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package pango for openSUSE:Factory checked 
in at 2017-07-17 09:10:03

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


Package is "pango"

Mon Jul 17 09:10:03 2017 rev:106 rq:509988 version:1.40.6

Changes:

--- /work/SRC/openSUSE:Factory/pango/pango.changes  2017-05-31 
12:14:33.964240531 +0200
+++ /work/SRC/openSUSE:Factory/.pango.new/pango.changes 2017-07-17 
09:10:06.100865890 +0200
@@ -56 +56 @@
-- Update to version 1.40.1:
+- Update to version 1.40.1 (Fate#318572):
@@ -151 +151 @@
-  packages referencing them).
+  packages referencing them) (bnc#885294).



Other differences:
--



commit geany for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package geany for openSUSE:Factory checked 
in at 2017-07-17 09:10:11

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


Package is "geany"

Mon Jul 17 09:10:11 2017 rev:28 rq:509993 version:1.30.1

Changes:

--- /work/SRC/openSUSE:Factory/geany/geany.changes  2017-07-05 
23:56:54.897108776 +0200
+++ /work/SRC/openSUSE:Factory/.geany.new/geany.changes 2017-07-17 
09:10:13.879770252 +0200
@@ -1,0 +2,8 @@
+Tue Jul 11 10:25:57 UTC 2017 - badshah...@gmail.com
+
+- Drop easily-togglable support for building against gtk2 -- it
+  leads to assumptions that we want to officially support gtk2,
+  where we don't. Remove the %%{prefer_gtk2} macro.
+- Switch gtk3-devel BuildRequires to pkgconfig(gtk+-3.0).
+
+---



Other differences:
--
++ geany.spec ++
--- /var/tmp/diff_new_pack.xhlrQ1/_old  2017-07-17 09:10:15.427552251 +0200
+++ /var/tmp/diff_new_pack.xhlrQ1/_new  2017-07-17 09:10:15.431551687 +0200
@@ -16,8 +16,6 @@
 #
 
 
-%define prefer_gtk2 0
-
 Name:   geany
 Version:1.30.1
 Release:0
@@ -35,14 +33,10 @@
 BuildRequires:  doxygen
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  libtool
-%if %{prefer_gtk2}
-BuildRequires:  gtk2-devel
-%else
-BuildRequires:  gtk3-devel
-%endif
 BuildRequires:  intltool
+BuildRequires:  libtool
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(gtk+-3.0)
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %lang_package
@@ -59,11 +53,7 @@
 Summary:Small and lightweight IDE -- Development Files
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
-%if %{prefer_gtk2}
-Requires:   gtk2-devel
-%else
 Requires:   gtk3-devel
-%endif
 
 %description devel
 Geany is a small and lightweight integrated development environment.
@@ -95,9 +85,7 @@
 %build
 autoreconf -i
 %configure \
-%if !(0%{?prefer_gtk2})
--enable-gtk3 \
-%endif
--docdir=%{_defaultdocdir}/%{name}
 make %{?jobs:-j%jobs}
 




commit geany-plugins for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package geany-plugins for openSUSE:Factory 
checked in at 2017-07-17 09:10:15

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


Package is "geany-plugins"

Mon Jul 17 09:10:15 2017 rev:22 rq:509994 version:1.30

Changes:

--- /work/SRC/openSUSE:Factory/geany-plugins/geany-plugins.changes  
2017-03-10 21:46:32.244477710 +0100
+++ /work/SRC/openSUSE:Factory/.geany-plugins.new/geany-plugins.changes 
2017-07-17 09:10:16.427411423 +0200
@@ -1,0 +2,8 @@
+Tue Jul 11 10:50:07 UTC 2017 - badshah...@gmail.com
+
+- Rename misleadingly named macro %%{gtk3_enable} to
+  %%{gtk3_ready} and set it to true (1). Used to distinguish
+  between gtk-ready plugins and those that are not yet so in the
+  file-list.
+
+---



Other differences:
--
++ geany-plugins.spec ++
--- /var/tmp/diff_new_pack.VKFcB4/_old  2017-07-17 09:10:18.563110614 +0200
+++ /var/tmp/diff_new_pack.VKFcB4/_new  2017-07-17 09:10:18.563110614 +0200
@@ -16,12 +16,12 @@
 #
 
 
-%define gtk3_enable 0
+# FIXME: Files listed inside the conditional "%%if %%{gtk3_ready}" are enabled 
because they do build when compiled against gtk3. On next update, try enabling 
each of the disabled libs (in the %%else section) and check if they build with 
gtk3 or not. When all of them compile against gtk3, remove the macro and 
conditional.
+%define gtk3_ready 1
 
 Name:   geany-plugins
 Version:1.30
 Release:0
-# FIXME: Files listed inside the conditional "%if %%{gtk3_enable}" are 
disabled because they do not build when compiled against gtk3. On next update, 
try enabling each of these disabled libs and check if they build with gtk3 or 
not. When all of them compile against gtk3, remove the macro and conditional.
 # FIXME: gendoc requires ctpl (http://ctpl.tuxfamily.org/)
 Summary:A collection of different plugins for Geany
 License:GPL-2.0+ and GPL-3.0+
@@ -93,6 +93,8 @@
 %{_datadir}/geany-plugins/
 %{_datadir}/icons/hicolor/16x16/apps/prjorg*.png
 
+%if %{gtk3_ready}
+# List of gtk3 compatible plugins
 %{_libdir}/geany/addons.so
 %{_libdir}/geany/autoclose.so
 %{_libdir}/geany/automark.so
@@ -129,7 +131,8 @@
 %{_libdir}/geany/geanyprj.so
 %{_libdir}/geany/geanydoc.so
 
-%if %{gtk3_enable}
+%else
+# These plugins are not compatible with gtk3
 %{_libdir}/geany/debugger.so
 %{_libdir}/geany/devhelp.so
 %{_libdir}/geany/markdown.so




commit python-jupyter_ipython for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipython for 
openSUSE:Factory checked in at 2017-07-17 09:09:50

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


Package is "python-jupyter_ipython"

Mon Jul 17 09:09:50 2017 rev:5 rq:509963 version:5.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipython/python-jupyter_ipython-doc.changes
2017-05-17 17:11:34.878367996 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipython.new/python-jupyter_ipython-doc.changes
   2017-07-17 09:09:52.274813242 +0200
@@ -1,0 +2,5 @@
+Thu Jul 13 02:33:23 UTC 2017 - toddrme2...@gmail.com
+
+- Fix shebang rpmint errors.
+
+---
python-jupyter_ipython.changes: same change



Other differences:
--
++ python-jupyter_ipython-doc.spec ++
--- /var/tmp/diff_new_pack.keLkaY/_old  2017-07-17 09:09:54.898443713 +0200
+++ /var/tmp/diff_new_pack.keLkaY/_new  2017-07-17 09:09:54.902443150 +0200
@@ -43,7 +43,7 @@
 Provides:   %{name}-pdf = %{version}
 Obsoletes:  %{name}-html < %{version}
 Obsoletes:  %{name}-pdf < %{version}
-Provides:   python-jupyter_ipython-doc = %{version}
+Provides:   python2-jupyter_ipython-doc = %{version}
 
 %description
 Documentation and help files for python-jupyter_ipython.
@@ -55,6 +55,8 @@
 %prep
 %setup -q -n ipython-%{version}
 
+find examples -type f -name "*.py" -exec sed -i "s|#!/usr/bin/env 
python|#!/usr/bin/python2|" {} \;
+
 %build
 # Don't need to do anything here
 

++ python-jupyter_ipython.spec ++
--- /var/tmp/diff_new_pack.keLkaY/_old  2017-07-17 09:09:54.926439770 +0200
+++ /var/tmp/diff_new_pack.keLkaY/_new  2017-07-17 09:09:54.926439770 +0200
@@ -106,7 +106,7 @@
  * Easily embeddable in other Python programs and GUIs.
  * Integrated access to the pdb debugger and the Python profiler.
  
-IMPORTANT: The Python 3 version of IPython is in long-term support
+IMPORTANT: The Python 2 version of IPython is in long-term support
 mode. It will not be receiving major new features. Starting with
 IPython 6, only Python 3.3 and later is supported.
  
@@ -126,13 +126,19 @@
 This package provides the iptest command, which is used for
 testing software that uses %{name}.
  
-IMPORTANT: The Python 3 version of IPython is in long-term support
+IMPORTANT: The Python 2 version of IPython is in long-term support
 mode. It will not be receiving major new features. Starting with
 IPython 6, only Python 3.3 and later is supported.
 
 %prep
 %setup -q -n ipython-%{version}
 
+sed -i "s|#!/usr/bin/env python|#!/usr/bin/python|" 
IPython/testing/plugin/iptest.py
+sed -i "s|#!/usr/bin/env python|#!/usr/bin/python|" 
IPython/testing/plugin/setup.py
+sed -i "s|#!/usr/bin/env python|#!/usr/bin/python|" IPython/terminal/ipapp.py
+
+find . -type f -name "*.py" -exec sed -i 
"s|#!/usr/bin/python|#!/usr/bin/python2|" {} \;
+
 %build
 python setup.py build
 
@@ -147,6 +153,8 @@
 # Prepare for update-alternatives usage
 mkdir -p %{buildroot}%{_sysconfdir}/alternatives
 for p in ipython iptest ; do
+sed -i "s|#!/usr/bin/python|#!/usr/bin/python2|" 
%{buildroot}%{_bindir}/${p}
+sed -i "s|#!/usr/bin/python|#!/usr/bin/python2|" 
%{buildroot}%{_bindir}/${p}2
 mv %{buildroot}%{_bindir}/$p %{buildroot}%{_bindir}/$p-%{py_ver}
 ln -s -f %{_sysconfdir}/alternatives/$p %{buildroot}%{_bindir}/$p
 # create a dummy target for /etc/alternatives/$p




commit homebank for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package homebank for openSUSE:Factory 
checked in at 2017-07-17 09:10:07

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


Package is "homebank"

Mon Jul 17 09:10:07 2017 rev:17 rq:509992 version:5.1.5

Changes:

--- /work/SRC/openSUSE:Factory/homebank/homebank.changes2017-03-17 
15:06:42.104532555 +0100
+++ /work/SRC/openSUSE:Factory/.homebank.new/homebank.changes   2017-07-17 
09:10:10.708216958 +0200
@@ -1,0 +2,11 @@
+Tue Jul 11 09:47:47 UTC 2017 - zai...@opensuse.org
+
+- Update to version 5.1.5:
+  + Change: win32: Upgraded to gtk+ 3.22.7.
+  + Bugfix: Updating currency rate was not updating file changes
+(and enable save).
+  + Bugs fixed: lp#1689308, lp#1687117, lp#1683646, lp#1681532,
+lp#1678476, lp#1678230, lp#1676162, lp#1674020, lp#1672209,
+lp#1672205, lp#1672135, lp#1668036, lp#1667201, lp#1664916.
+
+---

Old:

  homebank-5.1.4.tar.gz

New:

  homebank-5.1.5.tar.gz



Other differences:
--
++ homebank.spec ++
--- /var/tmp/diff_new_pack.LZ9t6g/_old  2017-07-17 09:10:12.651943188 +0200
+++ /var/tmp/diff_new_pack.LZ9t6g/_new  2017-07-17 09:10:12.651943188 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   homebank
-Version:5.1.4
+Version:5.1.5
 Release:0
 Summary:Application to manage personal accounts
 License:GPL-2.0+
@@ -30,8 +30,8 @@
 # We need the %%mime_database_* macros
 BuildRequires:  shared-mime-info
 BuildRequires:  update-desktop-files
-BuildRequires:  pkgconfig(glib-2.0) >= 2.34
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.6
+BuildRequires:  pkgconfig(glib-2.0) >= 2.39
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.16
 BuildRequires:  pkgconfig(libsoup-2.4)
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ homebank-5.1.4.tar.gz -> homebank-5.1.5.tar.gz ++
 126195 lines of diff (skipped)




commit python3-jupyter_ipython for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package python3-jupyter_ipython for 
openSUSE:Factory checked in at 2017-07-17 09:09:54

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


Package is "python3-jupyter_ipython"

Mon Jul 17 09:09:54 2017 rev:12 rq:509965 version:6.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python3-jupyter_ipython/python3-jupyter_ipython-doc.changes
  2017-05-17 17:14:50.374809018 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-jupyter_ipython.new/python3-jupyter_ipython-doc.changes
 2017-07-17 09:09:55.630340629 +0200
@@ -1,0 +2,5 @@
+Thu Jul 13 02:33:23 UTC 2017 - toddrme2...@gmail.com
+
+- Fix shebang rpmint errors.
+
+---
python3-jupyter_ipython.changes: same change



Other differences:
--
++ python3-jupyter_ipython-doc.spec ++
--- /var/tmp/diff_new_pack.1q16O6/_old  2017-07-17 09:09:56.526214448 +0200
+++ /var/tmp/diff_new_pack.1q16O6/_new  2017-07-17 09:09:56.530213885 +0200
@@ -66,6 +66,8 @@
 %prep
 %setup -q -n ipython-%{version}
 
+find examples -type f -name "*.py" -exec sed -i "s|^#!/usr/bin/env 
python$|#!/usr/bin/python3|" {} \;
+
 %build
 # Build the documentation
 export LANG="en_US.UTF-8"

++ python3-jupyter_ipython.spec ++
--- /var/tmp/diff_new_pack.1q16O6/_old  2017-07-17 09:09:56.554210505 +0200
+++ /var/tmp/diff_new_pack.1q16O6/_new  2017-07-17 09:09:56.554210505 +0200
@@ -117,6 +117,12 @@
 %prep
 %setup -q -n ipython-%{version}
 
+sed -i "s|^#!/usr/bin/env python$|#!/usr/bin/python3|" 
IPython/testing/plugin/iptest.py
+sed -i "s|^#!/usr/bin/env python$|#!/usr/bin/python3|" 
IPython/testing/plugin/setup.py
+sed -i "s|^#!/usr/bin/env python$|#!/usr/bin/python3|" 
IPython/terminal/ipapp.py
+
+find . -type f -name "*.py" -exec sed -i 
"s|^#!/usr/bin/python$|#!/usr/bin/python3|" {} \;
+
 %build
 python3 setup.py build
 
@@ -131,6 +137,8 @@
 # Prepare for update-alternatives usage
 mkdir -p %{buildroot}%{_sysconfdir}/alternatives
 for p in ipython iptest ; do
+sed -i "s|^#!/usr/bin/python$|#!/usr/bin/python3|" 
%{buildroot}%{_bindir}/${p}
+sed -i "s|^#!/usr/bin/python$|#!/usr/bin/python3|" 
%{buildroot}%{_bindir}/${p}3
 mv %{buildroot}%{_bindir}/$p %{buildroot}%{_bindir}/$p-%{py3_ver}
 ln -s -f %{_sysconfdir}/alternatives/$p %{buildroot}%{_bindir}/$p
 # create a dummy target for /etc/alternatives/$p




commit rfcdiff for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package rfcdiff for openSUSE:Factory checked 
in at 2017-07-17 09:09:37

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


Package is "rfcdiff"

Mon Jul 17 09:09:37 2017 rev:2 rq:509956 version:1.45

Changes:

--- /work/SRC/openSUSE:Factory/rfcdiff/rfcdiff.changes  2017-07-05 
23:56:54.181209622 +0200
+++ /work/SRC/openSUSE:Factory/.rfcdiff.new/rfcdiff.changes 2017-07-17 
09:09:39.640592719 +0200
@@ -1,0 +2,5 @@
+Fri May 26 13:02:29 UTC 2017 - jeng...@inai.de
+
+- Typographical fixes to the description.
+
+---



Other differences:
--
++ rfcdiff.spec ++
--- /var/tmp/diff_new_pack.gNUKIa/_old  2017-07-17 09:09:40.372489635 +0200
+++ /var/tmp/diff_new_pack.gNUKIa/_new  2017-07-17 09:09:40.376489072 +0200
@@ -31,9 +31,9 @@
 
 %description
 The purpose of this program is to compare two versions of an
-internet-draft, and as output produce a diff in one of several
+Internet Draft, and as output produce a diff in one of several
 formats:
-- side-by-side html diff
+- side-by-side HTML diff
 - paged wdiff output in a text terminal
 - a text file with changebars in the left margin
 - a simple unified diff output




commit ffmpegthumbnailer for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package ffmpegthumbnailer for 
openSUSE:Factory checked in at 2017-07-17 09:09:40

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


Package is "ffmpegthumbnailer"

Mon Jul 17 09:09:40 2017 rev:2 rq:509957 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/ffmpegthumbnailer/ffmpegthumbnailer.changes  
2017-07-05 23:57:07.847284523 +0200
+++ /work/SRC/openSUSE:Factory/.ffmpegthumbnailer.new/ffmpegthumbnailer.changes 
2017-07-17 09:09:42.356210237 +0200
@@ -1,0 +2,5 @@
+Fri May 26 14:28:16 UTC 2017 - jeng...@inai.de
+
+- Trim filler wording from description.
+
+---



Other differences:
--
++ ffmpegthumbnailer.spec ++
--- /var/tmp/diff_new_pack.i9VAJR/_old  2017-07-17 09:09:43.140099829 +0200
+++ /var/tmp/diff_new_pack.i9VAJR/_new  2017-07-17 09:09:43.144099266 +0200
@@ -21,7 +21,7 @@
 Name:   ffmpegthumbnailer
 Version:2.2.0
 Release:0
-Summary:Lightweight video thumbnailer that can be used by file managers
+Summary:Video thumbnailer that can be used by file managers
 License:GPL-2.0+
 Group:  Productivity/Graphics/Viewers
 Url:https://github.com/dirkvdb/ffmpegthumbnailer
@@ -41,55 +41,34 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Lightweight video thumbnailer that can be used by file managers.
-
-This video thumbnailer can be used to create thumbnails for your
+This video thumbnailer can be used to create thumbnails for
 video files. The thumbnailer uses ffmpeg to decode frames from the
-video files, so supported videoformats depend on the configuration
+video files, so supported video formats depend on the configuration
 flags of ffmpeg.
 
-This thumbnailer was designed to be as fast and lightweight as
-possible. The only dependencies are ffmpeg, libpng and libjpeg.
-
 The project also includes a C/C++ library that can be used by
 developers to generate thumbnails in their projects.
 
 %package -n lib%{name}%{soname}
-Summary:Shared libraries for ffmpegthumbnailer
+Summary:Video thumbnail generator
 Group:  System/Libraries
 
 %description -n lib%{name}%{soname}
-Lightweight video thumbnailer that can be used by file managers.
+Video thumbnailer that can be used by file managers.
 
-This video thumbnailer can be used to create thumbnails for your
-video files. The thumbnailer uses ffmpeg to decode frames from the
-video files, so supported videoformats depend on the configuration
-flags of ffmpeg.
-
-This thumbnailer was designed to be as fast and lightweight as
-possible. The only dependencies are ffmpeg, libpng and libjpeg.
-
-The project also includes a C/C++ library that can be used by
-developers to generate thumbnails in their projects.
+This video thumbnailer can be used to create thumbnails for video
+files. The thumbnailer uses ffmpeg to decode frames from files.
 
 %package -n lib%{name}-devel
-Summary:Include Files and Libraries mandatory for Development
+Summary:Development files for ffmpegthumbnailer
 Group:  Development/Languages/C and C++
 Requires:   libffmpegthumbnailer%{soname} = %{version}
 
 %description -n lib%{name}-devel
-Lightweight video thumbnailer that can be used by file managers.
-
-This video thumbnailer can be used to create thumbnails for your
-video files. The thumbnailer uses ffmpeg to decode frames from the
-video files, so supported videoformats depend on the configuration
-flags of ffmpeg.
+Video thumbnailer that can be used by file managers.
 
-This thumbnailer was designed to be as fast and lightweight as
-possible. The only dependencies are ffmpeg, libpng and libjpeg.
-
-The project also includes a C/C++ library that can be used by
-developers to generate thumbnails in their projects.
+This video thumbnailer can be used to create thumbnails for video
+files. The thumbnailer uses ffmpeg to decode frames from files.
 
 %prep
 %setup -q




commit ghc-diagrams-lib for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package ghc-diagrams-lib for 
openSUSE:Factory checked in at 2017-07-17 09:09:32

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


Package is "ghc-diagrams-lib"

Mon Jul 17 09:09:32 2017 rev:4 rq:509953 version:1.4.1.2

Changes:

--- /work/SRC/openSUSE:Factory/ghc-diagrams-lib/ghc-diagrams-lib.changes
2017-07-06 00:02:23.882764079 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-diagrams-lib.new/ghc-diagrams-lib.changes   
2017-07-17 09:09:32.293627504 +0200
@@ -1,0 +2,5 @@
+Tue Jul  4 03:01:10 UTC 2017 - psim...@suse.com
+
+- Update to version 1.4.1.2 revision 3.
+
+---



Other differences:
--
++ ghc-diagrams-lib.spec ++
--- /var/tmp/diff_new_pack.JBcj09/_old  2017-07-17 09:09:32.961533432 +0200
+++ /var/tmp/diff_new_pack.JBcj09/_new  2017-07-17 09:09:32.965532869 +0200
@@ -26,7 +26,7 @@
 Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/3.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-JuicyPixels-devel
 BuildRequires:  ghc-active-devel

++ diagrams-lib.cabal ++
--- /var/tmp/diff_new_pack.JBcj09/_old  2017-07-17 09:09:33.005527236 +0200
+++ /var/tmp/diff_new_pack.JBcj09/_new  2017-07-17 09:09:33.005527236 +0200
@@ -1,6 +1,6 @@
 Name:diagrams-lib
 Version: 1.4.1.2
-x-revision: 2
+x-revision: 3
 Synopsis:Embedded domain-specific language for declarative graphics
 Description: Diagrams is a flexible, extensible EDSL for creating
  graphics of many types.  Graphics can be created
@@ -116,7 +116,7 @@
intervals >= 0.7 && < 0.9,
lens >= 4.6 && < 4.16,
tagged >= 0.7,
-   optparse-applicative >= 0.11 && < 0.14,
+   optparse-applicative >= 0.11 && < 0.15,
filepath,
JuicyPixels >= 3.1.5 && < 3.3,
hashable >= 1.1 && < 1.3,




commit puddletag for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package puddletag for openSUSE:Factory 
checked in at 2017-07-17 09:09:43

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


Package is "puddletag"

Mon Jul 17 09:09:43 2017 rev:2 rq:509958 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/puddletag/puddletag.changes  2017-07-05 
23:57:32.979744174 +0200
+++ /work/SRC/openSUSE:Factory/.puddletag.new/puddletag.changes 2017-07-17 
09:09:44.779868875 +0200
@@ -1,0 +2,7 @@
+Mon Jun 19 13:58:36 UTC 2017 - wba...@tmo.at
+
+- Remove python-sip requirement again. It is actually python-qt4
+  that requires it and the dependencies there have been fixed
+  meanwhile (boo#1037475)
+
+---



Other differences:
--
++ puddletag.spec ++
--- /var/tmp/diff_new_pack.yhJyFA/_old  2017-07-17 09:09:45.359787195 +0200
+++ /var/tmp/diff_new_pack.yhJyFA/_new  2017-07-17 09:09:45.359787195 +0200
@@ -31,7 +31,6 @@
 Requires:   python-mutagen
 Requires:   python-pyparsing
 Requires:   python-qt4
-Requires:   python-sip
 BuildArch:  noarch
 Requires(post): update-desktop-files
 Requires(postun): update-desktop-files




commit shorewall for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package shorewall for openSUSE:Factory 
checked in at 2017-07-17 09:09:57

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


Package is "shorewall"

Mon Jul 17 09:09:57 2017 rev:98 rq:509976 version:5.1.4.4

Changes:

--- /work/SRC/openSUSE:Factory/shorewall/shorewall.changes  2017-07-04 
09:10:37.524659394 +0200
+++ /work/SRC/openSUSE:Factory/.shorewall.new/shorewall.changes 2017-07-17 
09:09:59.773757043 +0200
@@ -1,0 +2,7 @@
+Wed Jul 12 14:53:33 UTC 2017 - br...@ioda-net.ch
+
+- bugfix release 5.1.4.4
+  A defect in 5.1.4.3 caused a startup failure when two or more
+  'fallback' providers were configured. That has been corrected. 
+
+---

Old:

  shorewall-5.1.4.3.tar.bz2
  shorewall-core-5.1.4.3.tar.bz2
  shorewall-docs-html-5.1.4.3.tar.bz2
  shorewall-init-5.1.4.3.tar.bz2
  shorewall-lite-5.1.4.3.tar.bz2
  shorewall6-5.1.4.3.tar.bz2
  shorewall6-lite-5.1.4.3.tar.bz2

New:

  shorewall-5.1.4.4.tar.bz2
  shorewall-core-5.1.4.4.tar.bz2
  shorewall-docs-html-5.1.4.4.tar.bz2
  shorewall-init-5.1.4.4.tar.bz2
  shorewall-lite-5.1.4.4.tar.bz2
  shorewall6-5.1.4.4.tar.bz2
  shorewall6-lite-5.1.4.4.tar.bz2



Other differences:
--
++ shorewall.spec ++
--- /var/tmp/diff_new_pack.U8O69u/_old  2017-07-17 09:10:00.929594247 +0200
+++ /var/tmp/diff_new_pack.U8O69u/_new  2017-07-17 09:10:00.929594247 +0200
@@ -21,7 +21,7 @@
 %define dmaj 5.1
 %define dmin 5.1.4
 Name:   shorewall
-Version:5.1.4.3
+Version:5.1.4.4
 Release:0
 Summary:Shoreline Firewall is an iptables-based firewall for Linux 
systems
 License:GPL-2.0

++ shorewall-5.1.4.3.tar.bz2 -> shorewall-5.1.4.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shorewall-5.1.4.3/Perl/Shorewall/Config.pm 
new/shorewall-5.1.4.4/Perl/Shorewall/Config.pm
--- old/shorewall-5.1.4.3/Perl/Shorewall/Config.pm  2017-06-18 
18:33:25.0 +0200
+++ new/shorewall-5.1.4.4/Perl/Shorewall/Config.pm  2017-06-23 
16:55:40.0 +0200
@@ -748,7 +748,7 @@
TC_SCRIPT   => '',
EXPORT  => 0,
KLUDGEFREE  => '',
-   VERSION => "5.1.4.3",
+   VERSION => "5.1.4.4",
CAPVERSION  => 50100 ,
BLACKLIST_LOG_TAG   => '',
RELATED_LOG_TAG => '',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shorewall-5.1.4.3/Perl/Shorewall/Providers.pm 
new/shorewall-5.1.4.4/Perl/Shorewall/Providers.pm
--- old/shorewall-5.1.4.3/Perl/Shorewall/Providers.pm   2017-06-18 
18:33:25.0 +0200
+++ new/shorewall-5.1.4.4/Perl/Shorewall/Providers.pm   2017-06-23 
16:55:40.0 +0200
@@ -357,7 +357,7 @@
 emit '';
 
 if ( $first_fallback_route ) {
-   if ( $balanced_providers == 1 ) {
+   if ( $fallback_providers == 1 ) {
if ( $gateway ) {
emit "FALLBACK_ROUTE=\"via $gateway dev $interface $realm\"";
} else {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shorewall-5.1.4.3/changelog.txt 
new/shorewall-5.1.4.4/changelog.txt
--- old/shorewall-5.1.4.3/changelog.txt 2017-06-18 18:33:25.0 +0200
+++ new/shorewall-5.1.4.4/changelog.txt 2017-06-23 16:55:40.0 +0200
@@ -1,3 +1,9 @@
+Changes in 5.1.4.4
+
+1)  Update release documents.
+
+2)  Correct handling of two or more fallback providers
+
 Changes in 5.1.4.3
 
 1)  Update release documents.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shorewall-5.1.4.3/configure 
new/shorewall-5.1.4.4/configure
--- old/shorewall-5.1.4.3/configure 2017-06-18 18:33:25.0 +0200
+++ new/shorewall-5.1.4.4/configure 2017-06-23 16:55:40.0 +0200
@@ -28,7 +28,7 @@
 #
 # Build updates this
 #
-VERSION=5.1.4.3
+VERSION=5.1.4.4
 
 case "$BASH_VERSION" in
 [4-9].*)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shorewall-5.1.4.3/configure.pl 
new/shorewall-5.1.4.4/configure.pl
--- old/shorewall-5.1.4.3/configure.pl  2017-06-18 18:33:25.0 +0200
+++ new/shorewall-5.1.4.4/configure.pl  2017-06-23 16:55:40.0 +0200
@@ -31,7 +31,7 @@
 # Build updates this
 #
 use constant {
-VERSION => '5.1.4.3'
+VERSION => '5.1.4.4'
 };
 
 my %params;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn

commit sshuttle for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package sshuttle for openSUSE:Factory 
checked in at 2017-07-17 09:09:45

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


Package is "sshuttle"

Mon Jul 17 09:09:45 2017 rev:2 rq:509959 version:0.78.1

Changes:

--- /work/SRC/openSUSE:Factory/sshuttle/sshuttle.changes2017-07-05 
23:56:43.738680626 +0200
+++ /work/SRC/openSUSE:Factory/.sshuttle.new/sshuttle.changes   2017-07-17 
09:09:46.307653693 +0200
@@ -1,0 +2,5 @@
+Thu May 25 07:13:34 UTC 2017 - jeng...@inai.de
+
+- Ensure neutrality of description.
+
+---



Other differences:
--
++ sshuttle.spec ++
--- /var/tmp/diff_new_pack.OnlhNF/_old  2017-07-17 09:09:47.015553988 +0200
+++ /var/tmp/diff_new_pack.OnlhNF/_new  2017-07-17 09:09:47.019553425 +0200
@@ -19,7 +19,7 @@
 Version:0.78.1
 Release:0
 License:LGPL-2.1
-Summary:Full-featured VPN over an SSH tunnel
+Summary:VPN over an SSH tunnel
 Url:https://github.com/sshuttle/sshuttle
 Group:  Development/Languages/Python
 Source0:
https://pypi.python.org/packages/48/be/c1c9ead0c38383c4b2a192de4679f09413ddc6701988ca56bd220c64ec50/sshuttle-%{version}.tar.gz
@@ -45,23 +45,17 @@
 
 %description
 Transparent proxy server that works as a poor man's VPN. Forwards over ssh.
-Doesn't require admin. Works with Linux and MacOS. Supports DNS tunneling.
-As far as I know, sshuttle is the only program that solves the following
-common case:
-- Your client machine (or router) is Linux, FreeBSD, or MacOS.
+Doesn't require admin. Supports DNS tunneling.
+sshuttle is a program that solves the following case:
 - You have access to a remote network via ssh.
 - You don't necessarily have admin access on the remote network.
-- The remote network has no VPN, or only stupid/complex VPN
-  protocols (IPsec, PPTP, etc). Or maybe you *are* the
-  admin and you just got frustrated with the awful state of
-  VPN tools.
-- You don't want to create an ssh port forward for every
+- The remote network has no VPN, or only complex VPN
+  protocols (IPsec, PPTP, etc).
+- You don't want to create an SSH port forward for every
   single host/port on the remote network.
-- You hate openssh's port forwarding because it's randomly
-  slow and/or stupid.
 - You can't use openssh's PermitTunnel feature because
   it's disabled by default on openssh servers; plus it does
-  TCP-over-TCP, which has terrible performance (see below).
+  TCP-over-TCP, which has terrible performance.
 
 %prep
 %setup -q -n sshuttle-%{version}




commit gnome-session for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gnome-session for openSUSE:Factory 
checked in at 2017-07-17 09:10:01

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


Package is "gnome-session"

Mon Jul 17 09:10:01 2017 rev:169 rq:509983 version:3.24.1

Changes:

--- /work/SRC/openSUSE:Factory/gnome-session/gnome-session.changes  
2017-04-29 10:49:11.001022847 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-session.new/gnome-session.changes 
2017-07-17 09:10:03.941170077 +0200
@@ -81,0 +82,10 @@
+  + Drop gnome-session-bsc979257-bgo728151-duplicated-poweroff-dialog.patch
+Fixed upstream.
+
+---
+Thu Sep 29 14:52:37 CDT 2016 - feder...@suse.com
+
+- Added gnome-session-bsc979257-bgo728151-duplicated-poweroff-dialog.patch
+  for bsc#979257.  Pressing Ctrl-Alt-Del would open a Power Off
+  dialog, but in order to cancel it one needed to press Cancel
+  twice.



Other differences:
--



commit autofdo for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package autofdo for openSUSE:Factory checked 
in at 2017-07-17 09:10:25

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


Package is "autofdo"

Mon Jul 17 09:10:25 2017 rev:3 rq:510023 version:0.16

Changes:

--- /work/SRC/openSUSE:Factory/autofdo/autofdo.changes  2017-02-21 
13:50:14.785231545 +0100
+++ /work/SRC/openSUSE:Factory/.autofdo.new/autofdo.changes 2017-07-17 
09:10:34.960801027 +0200
@@ -1,0 +2,15 @@
+Wed Jul 12 09:24:52 UTC 2017 - mli...@suse.cz
+
+- Update to version 0.16:
+  * Remove all patches that are not needed any longer: autofdo-rpath.patch,
+  0001-Newer-perf-tools-keep-adding-new-perf-record-generat.patch and
+  0002-Disabled-predicted-sanity-check-for-Atom.patch.
+
+---
+Mon Jul 10 11:20:40 UTC 2017 - mli...@suse.cz
+
+- Add 0001-Newer-perf-tools-keep-adding-new-perf-record-generat.patch and
+  0002-Disabled-predicted-sanity-check-for-Atom.patch is order to have
+  it working with new kernels.
+
+---

Old:

  autofdo-0.15.tar.gz
  autofdo-rpath.patch

New:

  autofdo-0.16.tar.gz



Other differences:
--
++ autofdo.spec ++
--- /var/tmp/diff_new_pack.iqLLE1/_old  2017-07-17 09:10:36.976517116 +0200
+++ /var/tmp/diff_new_pack.iqLLE1/_new  2017-07-17 09:10:36.980516553 +0200
@@ -17,15 +17,13 @@
 
 
 Name:   autofdo
-Version:0.15
+Version:0.16
 Release:0
 Summary:A tool to convert perf.data profile to AutoFDO profile
 License:Apache-2.0
 Group:  Development/Tools/Other
 Url:https://github.com/google/autofdo
-Source: 
https://github.com/google/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM --  autofdo-rpath.patch
-Patch0: autofdo-rpath.patch
+Source: 
https://github.com/google/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  automake
 BuildRequires:  gcc-c++
 BuildRequires:  libopenssl-devel
@@ -48,7 +46,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 autoreconf -fiv

++ autofdo-0.15.tar.gz -> autofdo-0.16.tar.gz ++
/work/SRC/openSUSE:Factory/autofdo/autofdo-0.15.tar.gz 
/work/SRC/openSUSE:Factory/.autofdo.new/autofdo-0.16.tar.gz differ: char 31, 
line 2




commit desktop-translations for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package desktop-translations for 
openSUSE:Factory checked in at 2017-07-17 09:10:30

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


Package is "desktop-translations"

Mon Jul 17 09:10:30 2017 rev:101 rq:510085 version:84.87.20170713.beab045

Changes:

--- 
/work/SRC/openSUSE:Factory/desktop-translations/desktop-translations.changes
2017-06-27 10:21:25.937838580 +0200
+++ 
/work/SRC/openSUSE:Factory/.desktop-translations.new/desktop-translations.changes
   2017-07-17 09:10:40.356041113 +0200
@@ -1,0 +2,121 @@
+Thu Jul 13 12:50:47 UTC 2017 - opensuse-packag...@opensuse.org
+
+- Update to version 84.87.20170713.beab045:
+  * Translated using a text editor + git
+
+---
+Thu Jul 13 11:17:35 UTC 2017 - opensuse-packag...@opensuse.org
+
+- Update to version 84.87.20170713.f60fae5:
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (Indonesian)
+  * Translated using Weblate (Chinese (Taiwan))
+  * Translated using Weblate (German)
+  * Translated using Weblate (Indonesian)
+  * Translated using Weblate (Ukrainian)
+  * Translated using Weblate (Chinese (Taiwan))
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Put YaST2.desktop back into update-desktop-files-apps
+  * Update POT files after YaST change, sync PO files
+
+---
+Fri Jul 07 11:08:56 UTC 2017 - opensuse-packag...@opensuse.org
+
+- Update to version 84.87.20170705.7bdbb1d:
+  * Translated using Weblate (Swedish)
+  * Translated using Weblate (Swedish)
+  * Translated using Weblate (Spanish)
+  * Translated using Weblate (German)
+  * Translated using Weblate (Greek)
+  * Translated using Weblate (Greek)
+  * Translated using Weblate (Portuguese (Brazil))
+  * Translated using Weblate (Portuguese (Brazil))
+  * Translated using Weblate (Danish)
+  * Translated using Weblate (Arabic)
+  * Translated using Weblate (Arabic)
+  * Translated using Weblate (Arabic)
+  * Translated using Weblate (Arabic)
+  * Translated using Weblate (Danish)
+  * Translated using Weblate (Russian)
+  * Translated using Weblate (Russian)
+  * Translated using Weblate (Russian)
+  * Translated using Weblate (Russian)
+  * Translated using Weblate (Russian)
+  * Translated using Weblate (Russian)
+  * Translated using Weblate (French)
+  * Translated using Weblate (French)
+  * Translated using Weblate (Ukrainian)
+  * Translated using Weblate (Ukrainian)
+  * Translated using Weblate (Ukrainian)
+  * Translated using Weblate (Ukrainian)
+  * Translated using Weblate (Ukrainian)
+  * Translated using Weblate (Lithuanian)
+  * Translated using Weblate (Lithuanian)
+  * Translated using Weblate (Lithuanian)
+  * Translated using Weblate (Lithuanian)
+  * Translated using Weblate (Portuguese (Brazil))
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (Portuguese (Brazil))
+  * Translated using Weblate (Portuguese (Brazil))
+  * Translated using Weblate (German)
+  * Translated using Weblate (Italian)
+  * Translated using Weblate (German)
+  * Translated using Weblate (Danish)
+  * Translated using Weblate (Danish)
+  * Translated using Weblate (Danish)
+  * Translated using Weblate (Danish)
+  * Translated using Weblate (Portuguese (Brazil))
+  * Translated using Weblate (Portuguese (Brazil))
+  * Translated using Weblate (Portuguese (Brazil))
+  * Translated using Weblate (German)
+  * Translated using Weblate (Dutch)
+  * Translated using Weblate (Chinese (China))
+  * Translated using Weblate (Chinese (China))
+  * Translated using Weblate (Chinese (China))
+  * Translated using Weblate (Danish)
+  * Translated using Weblate (Norwegian Bokmål)
+  * Translated using Weblate (Dutch)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (German)
+  * Translated using Weblate (French)
+  * Translated using Weblate (French)
+  * Translated using Weblate (French)
+  * Translated usi

commit kiwi-config-openSUSE for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package kiwi-config-openSUSE for 
openSUSE:Factory checked in at 2017-07-17 09:10:48

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


Package is "kiwi-config-openSUSE"

Mon Jul 17 09:10:48 2017 rev:121 rq:510103 version:13.3

Changes:

--- 
/work/SRC/openSUSE:Factory/kiwi-config-openSUSE/kiwi-config-openSUSE.changes
2017-04-20 20:57:47.529911329 +0200
+++ 
/work/SRC/openSUSE:Factory/.kiwi-config-openSUSE.new/kiwi-config-openSUSE.changes
   2017-07-17 09:10:49.902696472 +0200
@@ -1,0 +2,6 @@
+Thu Jul  6 12:28:15 UTC 2017 - dleuenber...@suse.com
+
+- Change bootkernel to 'default': we don't use other kernels for
+  the live image for a long time already.
+
+---



Other differences:
--
++ kiwi-config-openSUSE.spec ++
--- /var/tmp/diff_new_pack.gEOUxP/_old  2017-07-17 09:10:50.586600144 +0200
+++ /var/tmp/diff_new_pack.gEOUxP/_new  2017-07-17 09:10:50.590599581 +0200
@@ -102,9 +102,11 @@
   label=`echo "$volid" | sed -e 's, ,_,g'`
   sed -i -e "s,@VOLID@,$volid,; s,@LABEL@,$label," config.xml
   %ifarch x86_64
-sed -i -e "s,@BOOTKERNEL@,desktop," config.xml
+sed -i -e "s,@BOOTKERNEL@,default," config.xml
+#sed -i -e "s,@BOOTKERNEL@,desktop," config.xml
   %else
-sed -i -e "s,@BOOTKERNEL@,std," config.xml
+sed -i -e "s,@BOOTKERNEL@,default," config.xml
+#sed -i -e "s,@BOOTKERNEL@,std," config.xml
 sed -i -e 's,firmware="uefi",,' config.xml
   %endif
   xmllint --format config.xml > t && mv t config.xml

++ config.xml.in ++
--- /var/tmp/diff_new_pack.gEOUxP/_old  2017-07-17 09:10:50.690585498 +0200
+++ /var/tmp/diff_new_pack.gEOUxP/_new  2017-07-17 09:10:50.690585498 +0200
@@ -6,7 +6,7 @@
 openSUSE @VERSION@ Live system
   
   
-
+
 2.8.0
 openSUSE
 openSUSE
@@ -20,6 +20,7 @@
 
   
   
+
 
 
 




commit slib for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package slib for openSUSE:Factory checked in 
at 2017-07-17 09:10:32

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


Package is "slib"

Mon Jul 17 09:10:32 2017 rev:29 rq:510095 version:3b5

Changes:

--- /work/SRC/openSUSE:Factory/slib/slib.changes2015-03-27 
09:40:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.slib.new/slib.changes   2017-07-17 
09:10:45.527312743 +0200
@@ -1,0 +2,6 @@
+Thu Jul 13 11:46:15 UTC 2017 - tchva...@suse.com
+
+- Reduce bit a guile code for older distros, we have 1.8.5 on
+  sle11
+
+---



Other differences:
--
++ slib.spec ++
--- /var/tmp/diff_new_pack.Ig1M1m/_old  2017-07-17 09:10:46.059237822 +0200
+++ /var/tmp/diff_new_pack.Ig1M1m/_new  2017-07-17 09:10:46.063237259 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package slib
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,9 +17,6 @@
 
 
 Name:   slib
-Provides:   scheme:/usr/lib/scheme/slib/umbscheme.init
-PreReq: %install_info_prereq
-PreReq: guile1 coreutils
 Version:3b5
 Release:0
 Summary:Portable Scheme Library
@@ -29,7 +26,9 @@
 Source: 
http://groups.csail.mit.edu/mac/ftpdir/scm/slib-%{version}.tar.gz
 # this is not upstreamable (bnc#754532):
 Patch0: remove-resene-colors.diff
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Requires(post): %{install_info_prereq}
+Requires(post): coreutils
+Requires(post): guile1
 BuildArch:  noarch
 
 %description
@@ -43,74 +42,64 @@
 %build
 
 %install
-install -m 755 -d $RPM_BUILD_ROOT/usr/share/slib/
-install -m 755 -d $RPM_BUILD_ROOT/%{_infodir}/
-install -m 644 *.scm *.init $RPM_BUILD_ROOT/usr/share/slib/
-install -m 644 slib.info* $RPM_BUILD_ROOT%{_infodir}/
+install -m 755 -d %{buildroot}%{_datadir}/slib/
+install -m 755 -d %{buildroot}/%{_infodir}/
+install -m 644 *.scm *.init %{buildroot}%{_datadir}/slib/
+install -m 644 slib.info* %{buildroot}%{_infodir}/
 
 %triggerin -- guile1
 # install guile library
 # We need new guile for registration, see "Incompatible change in guile 1.8.2".
 # During update must be slib-3a5 installed first (See Conflits: slib < 3a5 in 
guile.spec)
 # because of %triggerin in slib, 3a1 for example, though.
-if [ -d usr/share/guile/site ] ; then
-  GUILE_VERSION=`guile1 -c "(display (version))" | sed "s:\.::g"`
-  # guile is instaled
-  if [ $GUILE_VERSION -ge 182 ]; then
+if [ -d %{_datadir}/guile/site ] ; then
 # we have guile >= 1.8.2
-if [ ! -e usr/share/guile/site/slib ] ; then
+  if [ ! -e %{_datadir}/guile/site/slib ] ; then
   # link slib library into guile
-  ln -sf ../../slib usr/share/guile/site/slib
-fi
-usr/bin/guile1 -c "(use-modules (ice-9 slib)) (require 'new-catalog)"
+ln -sf ../../slib %{_datadir}/guile/site/slib
   fi
+  %{_bindir}/guile1 -c "(use-modules (ice-9 slib)) (require 'new-catalog)"
 fi
 exit 0
 
 %triggerpostun -- guile1
 # Delete slib library files, only if guile1 was uninstalled.
-if ! test -e usr/bin/guile1 ; then
-rm -f usr/share/guile/site/slib
-rm -f usr/share/guile/site/slibcat
-rmdir --ignore-fail-on-non-empty usr/share/guile/site
-rmdir --ignore-fail-on-non-empty usr/share/guile
+if ! test -e %{_bindir}/guile1 ; then
+rm -f %{_datadir}/guile/site/slib
+rm -f %{_datadir}/guile/site/slibcat
+rmdir --ignore-fail-on-non-empty %{_datadir}/guile/site
+rmdir --ignore-fail-on-non-empty %{_datadir}/guile
 fi
 exit 0
 
 %post
-%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
+%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info%{ext_info}
 # install guile library
 # We need new guile for registration, see "Incompatible change in guile 1.8.2".
 # During update must be slib-3a5 installed first (See Conflits: slib < 3a5 in 
guile.spec)
 # because of %triggerin in slib, 3a1 for example, though.
-if [ -d usr/share/guile/site -o -e usr/bin/guile1 ] ; then
-  GUILE_VERSION=`guile1 -c "(display (version))" | sed "s:\.::g"`
-  # guile is instaled
-  if [ $GUILE_VERSION -ge 182 ]; then
-  # we have guile >= 1.8.2
-if [ ! -d usr/share/guile/site ] ; then
+if [ -d %{_datadir}/guile/site -o -e %{_bindir}/guile1 ] ; then
+  if [ ! -d %{_datadir}/guile/site ] ; then
   # This is in orderd to fixup eventually removed guile/site folders
   # which could have happened due to bnc#780827.
-  mkdir usr/share

commit gource for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gource for openSUSE:Factory checked 
in at 2017-07-17 09:10:54

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


Package is "gource"

Mon Jul 17 09:10:54 2017 rev:9 rq:510113 version:0.44

Changes:

--- /work/SRC/openSUSE:Factory/gource/gource.changes2017-02-03 
17:41:25.529072292 +0100
+++ /work/SRC/openSUSE:Factory/.gource.new/gource.changes   2017-07-17 
09:10:55.781868392 +0200
@@ -1,0 +2,12 @@
+Thu Jul 13 09:28:11 UTC 2017 - astie...@suse.com
+
+- update to 0.44:
+  * Fixed crash when taking a screenshot with an odd resolution
+  * Fixed type deduction compilation error with newer versions of GCC
+  * Documentation improvements
+- drop svn-gource, gource has buil-t in svn support
+- drop cvs-exp.pl
+- drop gource-0.43-gcc6.patch, no longer required
+- drop boost_ppc64le.patch, not being built for it
+
+---

Old:

  boost_ppc64le.patch
  cvs-exp.pl
  gource-0.43-gcc6.patch
  gource-0.43.tar.gz
  svn-gource.py

New:

  gource-0.44.tar.gz



Other differences:
--
++ gource.spec ++
--- /var/tmp/diff_new_pack.TzTtbz/_old  2017-07-17 09:10:56.385783330 +0200
+++ /var/tmp/diff_new_pack.TzTtbz/_new  2017-07-17 09:10:56.389782766 +0200
@@ -17,24 +17,13 @@
 
 
 Name:   gource
-Version:0.43
+Version:0.44
 Release:0
 Summary:Software version control visualization tool
 License:GPL-3.0+
 Group:  Productivity/Graphics/Visualization/Graph
-Url:https://code.google.com/p/gource/
+Url:http://gource.io/
 Source: 
https://github.com/acaudwell/Gource/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
-Source1:http://gource.googlecode.com/files/cvs-exp.pl
-Source2:
https://raw.githubusercontent.com/acaudwell/Gource/gource-%{version}/contrib/svn-gource.py
-Patch0: boost_ppc64le.patch
-# PATCH-FIX-UPSTREAM fix no matching function for call to 'max(double, float)'
-Patch1: gource-0.43-gcc6.patch
-BuildRequires:  automake
-%if 0%{?suse_version} > 1325
-BuildRequires:  libboost_filesystem-devel
-%else
-BuildRequires:  boost-devel >= 1.46
-%endif
 BuildRequires:  gcc-c++
 BuildRequires:  glew-devel
 BuildRequires:  glm-devel >= 0.9.3
@@ -44,7 +33,11 @@
 BuildRequires:  pkgconfig(libpcre)
 BuildRequires:  pkgconfig(libpng) >= 1.2
 Requires:   freefont
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} > 1325
+BuildRequires:  libboost_filesystem-devel
+%else
+BuildRequires:  boost-devel >= 1.46
+%endif
 %if 0%{?suse_version} >= 1310
 BuildRequires:  pkgconfig(SDL2_image) >= 2.0
 BuildRequires:  pkgconfig(sdl2) >= 2.0
@@ -66,11 +59,8 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 
 %build
-autoreconf -fi
 
 %configure \
--with-tinyxml=yes \
@@ -79,16 +69,11 @@
 
 %install
 %make_install
-install %{SOURCE1} %{buildroot}%{_bindir}/cvs-exp
-install %{SOURCE2} %{buildroot}%{_bindir}/svn-gource
 
 %files
-%defattr(-,root,root)
 %doc COPYING ChangeLog README THANKS
 %{_mandir}/man1/*
 %{_bindir}/gource
-%{_bindir}/cvs-exp
-%{_bindir}/svn-gource
 %{_datadir}/gource/
 
 %changelog

++ gource-0.43.tar.gz -> gource-0.44.tar.gz ++
 2114 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/gource-0.43/ChangeLog new/gource-0.44/ChangeLog
--- old/gource-0.43/ChangeLog   2014-10-16 04:23:34.0 +0200
+++ new/gource-0.44/ChangeLog   2016-07-28 02:53:40.0 +0200
@@ -1,3 +1,8 @@
+0.44:
+ * Fixed crash when taking a screenshot with an odd resolution.
+ * Fixed type deduction compilation error with newer versions of GCC.
+ * Documentation improvements.
+
 0.43:
  * Updated boost autoconf macros to fix multi-arch detection.
 
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/gource-0.43/README new/gource-0.44/README
--- old/gource-0.43/README  2014-10-16 04:23:22.0 +0200
+++ new/gource-0.44/README  2016-07-28 02:53:40.0 +0200
@@ -5,7 +5,7 @@
 
 Copyright (C) 2009 Andrew Caudwell
 
-  http://gource.goo

commit intel-cmt-cat for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package intel-cmt-cat for openSUSE:Factory 
checked in at 2017-07-17 09:10:41

Comparing /work/SRC/openSUSE:Factory/intel-cmt-cat (Old)
 and  /work/SRC/openSUSE:Factory/.intel-cmt-cat.new (New)


Package is "intel-cmt-cat"

Mon Jul 17 09:10:41 2017 rev:2 rq:510102 version:1.0.1

Changes:

--- /work/SRC/openSUSE:Factory/intel-cmt-cat/intel-cmt-cat.changes  
2017-03-17 15:06:47.447778471 +0100
+++ /work/SRC/openSUSE:Factory/.intel-cmt-cat.new/intel-cmt-cat.changes 
2017-07-17 09:10:47.179080092 +0200
@@ -1,0 +2,22 @@
+Thu Jul 13 13:05:52 UTC 2017 - bwiedem...@suse.com
+- Update to version 1.0.1:
+snmp
+- Added OS interface support to Net-SNMP sub-agent
+General
+- Build improvements (boo#1041090)
+- Bug fixes
+Library
+- Removed NO_PID_API compile time option
+- Added OS interface to support L3/L2 CAT & CDP
+- Updated support for CMT per PID
+PQoS Utility
+- Added pqos-os & pqos-msr wrapper scripts
+- Added option to select OS or MSR interface
+rdtset Utility
+- Added option to select OS or MSR interface
+Examples
+- Support for new OS/MSR interface added to CMT/MBM examples
+- Add fixsymlink.patch to create proper man page symlinks
+- Rebase fix-dynlib-generation.patch
+
+---

Old:

  intel-cmt-cat-0.1.5.tar.gz

New:

  fixsymlink.patch
  intel-cmt-cat-1.0.1.tar.gz



Other differences:
--
++ intel-cmt-cat.spec ++
--- /var/tmp/diff_new_pack.aBDGBF/_old  2017-07-17 09:10:47.743000664 +0200
+++ /var/tmp/diff_new_pack.aBDGBF/_new  2017-07-17 09:10:47.747000101 +0200
@@ -18,22 +18,25 @@
 
 
 Name:   intel-cmt-cat
-Version:0.1.5
+Version:1.0.1
 Release:0
 Summary:Provides command line interface to CMT, MBM, CAT and CDP 
technologies
 License:BSD-3-Clause
 Group:  Development/Tools
 Url:https://github.com/01org/%{name}
+# https://github.com/01org/intel-cmt-cat/archive/v1.0.1.tar.gz
 Source0:%{name}-%{version}.tar.gz
 Patch0: fix-dynlib-generation.patch
 Patch1: fix-ldconfig-call.patch
+# PATCH-FIX-UPSTREAM https://github.com/01org/intel-cmt-cat/pull/51
+Patch2: fixsymlink.patch
 BuildRequires:  doxygen
 ExclusiveArch:  x86_64 i686 i586
 
 # Since they ship libpqos and the binaries in one package but do not 
simultatious
 # updates libversion can differ from binaries version.
-%global libversion 0.1.16
-%global libname libpqos0
+%global libversion 1.0.1
+%global libname libpqos1
 
 %global make_flags EXTRA_CFLAGS="%{optflags}" SHARED=y 
PREFIX=%{buildroot}/%{_prefix} MAN_DIR=%{buildroot}/%{_mandir}/man8 
LIB_INSTALL_DIR=%{buildroot}%{_libdir}/
 
@@ -57,7 +60,9 @@
 Group:  System/Libraries
 
 %description -n %{libname}
-This package contains the shared qpos library.
+PQoS library provides API to detect and configure Intel(R) RDT including:
+Cache Monitoring Technology (CMT), Memory Bandwidth Monitoring (MBM),
+Cache Allocation Technology (CAT), Code and Data Prioritization (CDP) 
Technology.
 
 %package -n %{libname}-devel
 Version:%{libversion}
@@ -67,13 +72,18 @@
 Requires:   %{libname} = %{libversion}
 
 %description-n %{libname}-devel
+PQoS library provides API to detect and configure Intel(R) RDT including:
+Cache Monitoring Technology (CMT), Memory Bandwidth Monitoring (MBM),
+Cache Allocation Technology (CAT), Code and Data Prioritization (CDP) 
Technology.
+
 This package contains all that is needed to develop/compile
-applications that use Qpos.
+applications that use PQoS.
 
 %prep
 %setup
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 make %{?_smp_mflags} %{make_flags}
@@ -92,6 +102,10 @@
 %{_mandir}/man8/pqos.8.gz
 %{_bindir}/rdtset
 %{_mandir}/man8/rdtset.8.gz
+%{_bindir}/pqos-msr
+%{_mandir}/man8/pqos-msr.8.gz
+%{_bindir}/pqos-os
+%{_mandir}/man8/pqos-os.8.gz
 
 %files -n %{libname}-devel
 %defattr(-, root, root, -)

++ fix-dynlib-generation.patch ++
--- /var/tmp/diff_new_pack.aBDGBF/_old  2017-07-17 09:10:47.794993341 +0200
+++ /var/tmp/diff_new_pack.aBDGBF/_new  2017-07-17 09:10:47.794993341 +0200
@@ -1,12 +1,12 @@
-diff --git a/lib/Makefile b/lib/Makefile
-index 02a72cf..1a1f9eb 100644
 a/lib/Makefile
-+++ b/lib/Makefile
+Index: intel-cmt-cat-1.0.1/lib/Makefile
+===
+--- intel-cmt-cat-1.0.1.orig/lib/Makefile
 intel-cmt-cat-1.0.1/lib/Makefile
 @@ -36,6 +36,7 @@
  
  LIB = libpqos
- VERSION = 0.1.6
-+SO_VERSION = 0
+ VERSION = 1.0.1
++SO_VERSION = 1
  SHARED ?= y
  LDFLAGS = -L. -lpthread -fPIE -z noexecstack -z relro -z now
  CFLAGS = -pthread -I./ -D_GNU_

  1   2   3   >