commit MozillaThunderbird for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package MozillaThunderbird for 
openSUSE:Factory checked in at 2016-06-23 23:22:36

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


Package is "MozillaThunderbird"

Changes:

--- /work/SRC/openSUSE:Factory/MozillaThunderbird/MozillaThunderbird.changes
2016-06-05 14:19:04.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.MozillaThunderbird.new/MozillaThunderbird.changes   
2016-06-23 23:22:37.0 +0200
@@ -1,0 +2,13 @@
+Thu Jun 23 10:15:51 UTC 2016 - w...@rosenauer.org
+
+- build with -fno-delete-null-pointer-checks for Tumbleweed/gcc6
+  as long as underlying issues have been addressed upstream
+  (boo#986162)
+
+---
+Mon Jun 13 20:28:01 UTC 2016 - ag...@suse.com
+
+- Fix running on 48bit va aarch64 (bsc#984126)
+  - Add patch mozilla-aarch64-48bit-va.patch
+
+---

New:

  mozilla-aarch64-48bit-va.patch



Other differences:
--
++ MozillaThunderbird.spec ++
--- /var/tmp/diff_new_pack.AcIbRI/_old  2016-06-23 23:22:43.0 +0200
+++ /var/tmp/diff_new_pack.AcIbRI/_new  2016-06-23 23:22:43.0 +0200
@@ -105,6 +105,7 @@
 Patch5: mozilla-no-stdcxx-check.patch
 Patch6: mozilla-gcc6.patch
 Patch7: mozilla-flexible-array-member-in-union.patch
+Patch8: mozilla-aarch64-48bit-va.patch
 # Thunderbird/mail
 Patch20:tb-ssldap.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -202,6 +203,7 @@
 %patch5 -p1
 %patch6 -p1
 %patch7 -p1
+%patch8 -p1
 popd
 # comm-central patches
 %patch20 -p1
@@ -228,6 +230,9 @@
 export MOZ_ESR=1
 %endif
 export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
+%if 0%{?suse_version} > 1320
+export CFLAGS="$CFLAGS -fno-delete-null-pointer-checks"
+%endif
 %if %{with mozilla_tb_optimize_for_size}
 export CFLAGS="$CFLAGS -Os"
 %endif


++ mozilla-aarch64-48bit-va.patch ++

# HG changeset patch
# User Zheng Xu 
# Date 1464657720 -7200
# Node ID dfaafbaaa2919a033c4c0abdd5830f4ea413bed6
# Parent  499f16ca85ec48d1896a1633730715f32bd62140
Bug 1143022 - Manually mmap on arm64 to ensure high 17 bits are clear. 
r=ehoogeveen

There might be 48-bit VA on arm64 depending on kernel configuration.
Manually mmap heap memory to align with the assumption made by JS engine.

diff --git a/js/src/gc/Memory.cpp b/js/src/gc/Memory.cpp
--- a/js/src/gc/Memory.cpp
+++ b/js/src/gc/Memory.cpp
@@ -430,17 +430,17 @@ InitMemorySubsystem()
 if (pageSize == 0)
 pageSize = allocGranularity = size_t(sysconf(_SC_PAGESIZE));
 }
 
 static inline void*
 MapMemoryAt(void* desired, size_t length, int prot = PROT_READ | PROT_WRITE,
 int flags = MAP_PRIVATE | MAP_ANON, int fd = -1, off_t offset = 0)
 {
-#if defined(__ia64__) || (defined(__sparc64__) && defined(__NetBSD__))
+#if defined(__ia64__) || (defined(__sparc64__) && defined(__NetBSD__)) || 
defined(__aarch64__)
 MOZ_ASSERT(0x8000ULL & (uintptr_t(desired) + length - 1) == 0);
 #endif
 void* region = mmap(desired, length, prot, flags, fd, offset);
 if (region == MAP_FAILED)
 return nullptr;
 /*
  * mmap treats the given address as a hint unless the MAP_FIXED flag is
  * used (which isn't usually what you want, as this overrides existing
@@ -480,16 +480,51 @@ MapMemory(size_t length, int prot = PROT
  * as out of memory.
  */
 if ((uintptr_t(region) + (length - 1)) & 0x8000) {
 if (munmap(region, length))
 MOZ_ASSERT(errno == ENOMEM);
 return nullptr;
 }
 return region;
+#elif defined(__aarch64__)
+   /*
+* There might be similar virtual address issue on arm64 which depends on
+* hardware and kernel configurations. But the work around is slightly
+* different due to the different mmap behavior.
+*
+* TODO: Merge with the above code block if this implementation works for
+* ia64 and sparc64.
+*/
+const uintptr_t start = UINT64_C(0x0700);
+const uintptr_t end   = UINT64_C(0x8000);
+const uintptr_t step  = ChunkSize;
+   /*
+* Optimization options if there are too many retries in practice:
+* 1. Examine /proc/self/maps to find an available address. This file is
+*not always available, however. In addition, even if we examine
+*/proc/self/maps, we may still need to retry several times due to
+*racing with other threads.
+* 2. Use a global/static variable with lock to track the addresses we have
+*allocated or tried.
+*/
+uintptr_t hint;
+   

commit chromium for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2016-06-23 23:22:24

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


Package is "chromium"

Changes:

--- /work/SRC/openSUSE:Factory/chromium/chromium.changes2016-06-19 
12:53:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2016-06-23 
23:22:25.0 +0200
@@ -1,0 +2,6 @@
+Thu Jun 23 08:10:56 UTC 2016 - tittiatc...@gmail.com
+
+- Add gcc60-fixes.diff to resolve the crashes observed with 
+  chromium when compiled with GCC6
+
+---

New:

  gcc60-fixes.diff



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.HTihbV/_old  2016-06-23 23:22:35.0 +0200
+++ /var/tmp/diff_new_pack.HTihbV/_new  2016-06-23 23:22:35.0 +0200
@@ -58,6 +58,8 @@
 Patch12:fix_building_widevinecdm_with_chromium.patch
 # PATCH-FIX-OPENSUSE fix_network_api_crash.patch - Fix crash in network API, 
e.g. when using chromecast extension
 Patch14:fix_network_api_crash.patch
+# PATCH-FIX-OPENSUSE gcc60-fixes.diff - Fix crashes due to the GCC6 
optimizations
+Patch16:gcc60-fixes.diff
 # archlinux arm enhancement patches
 Patch100:   arm-webrtc-fix.patch
 Patch101:   chromium-arm-r0.patch
@@ -252,6 +254,9 @@
 %patch11 -p1
 %patch12 -p1
 %patch14
+%if 0%{?suse_version} > 1320
+%patch16 -p0
+%endif
 
 #Upstream fixes
 



++ gcc60-fixes.diff ++
--- build/common.gypi   2016-06-15 21:03:15.0 +0200
+++ build/common.gypi   2016-06-15 21:03:15.0 +0200
@@ -4699,6 +4699,7 @@
   ['_toolset=="target"', {
 'cflags_cc': [
   '-std=gnu++11',
+  '-fno-delete-null-pointer-checks',
   # See comment for -Wno-c++11-narrowing.
   '-Wno-narrowing',
 ],
@@ -4710,6 +4711,7 @@
   ['_toolset=="host"', {
 'cflags_cc': [
   '-std=gnu++11',
+  '-fno-delete-null-pointer-checks',
   # See comment for -Wno-c++11-narrowing.
   '-Wno-narrowing',
 ],
@@ -4720,6 +4722,7 @@
 'target_conditions': [
   ['_toolset=="target"', {
 'cflags_cc': [
+  '-fno-delete-null-pointer-checks',
   # TODO(thakis): Remove, http://crbug.com/263960
   '-Wno-literal-suffix',
 ],



commit patchinfo.5233 for openSUSE:13.2:Update

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.5233 for 
openSUSE:13.2:Update checked in at 2016-06-23 13:52:56

Comparing /work/SRC/openSUSE:13.2:Update/patchinfo.5233 (Old)
 and  /work/SRC/openSUSE:13.2:Update/.patchinfo.5233.new (New)


Package is "patchinfo.5233"

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++

  Cairo Egypt has reimplemented DST so we need 
a patch to handle time change
  recommended
  low
  AndreasStieger
  This update provides the latest timezone information (2016e) for 
your
system, including the following changes:

- Africa/Cairo observes DST in 2016 from July 7 to the end of October.

This release also includes changes affecting past time stamps. For a 
comprehensive
list, please refer to the release announcement from ICANN:

http://mm.icann.org/pipermail/tz-announce/2016-June/39.html

  Recommended update for timezone




commit timezone for openSUSE:13.2:Update

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package timezone for openSUSE:13.2:Update 
checked in at 2016-06-23 13:52:52

Comparing /work/SRC/openSUSE:13.2:Update/timezone (Old)
 and  /work/SRC/openSUSE:13.2:Update/.timezone.new (New)


Package is "timezone"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.1u2ayi/_old  2016-06-23 13:52:52.0 +0200
+++ /var/tmp/diff_new_pack.1u2ayi/_new  2016-06-23 13:52:52.0 +0200
@@ -1 +1 @@
-
+




commit timezone-java.5233 for openSUSE:13.2:Update

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package timezone-java.5233 for 
openSUSE:13.2:Update checked in at 2016-06-23 13:52:43

Comparing /work/SRC/openSUSE:13.2:Update/timezone-java.5233 (Old)
 and  /work/SRC/openSUSE:13.2:Update/.timezone-java.5233.new (New)


Package is "timezone-java.5233"

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++



commit timezone-java for openSUSE:13.2:Update

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package timezone-java for 
openSUSE:13.2:Update checked in at 2016-06-23 13:52:46

Comparing /work/SRC/openSUSE:13.2:Update/timezone-java (Old)
 and  /work/SRC/openSUSE:13.2:Update/.timezone-java.new (New)


Package is "timezone-java"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.MdTko2/_old  2016-06-23 13:52:47.0 +0200
+++ /var/tmp/diff_new_pack.MdTko2/_new  2016-06-23 13:52:47.0 +0200
@@ -1 +1 @@
-
+




commit pcsc-acsccid for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package pcsc-acsccid for openSUSE:Factory 
checked in at 2016-06-23 13:37:29

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


Package is "pcsc-acsccid"

Changes:

--- /work/SRC/openSUSE:Factory/pcsc-acsccid/pcsc-acsccid.changes
2016-02-22 08:57:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.pcsc-acsccid.new/pcsc-acsccid.changes   
2016-06-23 13:37:39.0 +0200
@@ -1,0 +2,5 @@
+Thu Jun 23 07:27:59 UTC 2016 - godfrey.ch...@acs.com.hk
+
+- Updated to version 1.1.3.
+
+---

Old:

  acsccid-1.1.2.tar.bz2

New:

  acsccid-1.1.3.tar.bz2



Other differences:
--
++ pcsc-acsccid.spec ++
--- /var/tmp/diff_new_pack.NCFGJv/_old  2016-06-23 13:37:40.0 +0200
+++ /var/tmp/diff_new_pack.NCFGJv/_new  2016-06-23 13:37:40.0 +0200
@@ -34,7 +34,7 @@
 %if 0%{?suse_version} >= 1140
 BuildRequires:  udev
 %endif
-Version:1.1.2
+Version:1.1.3
 Release:0
 Url:http://acsccid.sourceforge.net/
 Summary:PCSC Driver for ACS CCID Based Smart Card Readers
@@ -58,6 +58,7 @@
 Enhances:   modalias(usb:v072fpb101d*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fpb102d*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fpb103d*dc*dsc*dp*ic*isc*ip*)
+Enhances:   modalias(usb:v072fpb10cd*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fpb104d*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fpb000d*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fp90d2d*dc*dsc*dp*ic*isc*ip*)
@@ -87,6 +88,7 @@
 Enhances:   modalias(usb:v072fp2232d*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fp2242d*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fp2238d*dc*dsc*dp*ic*isc*ip*)
+Enhances:   modalias(usb:v072fp224fd*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fp223bd*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fp223ed*dc*dsc*dp*ic*isc*ip*)
 Enhances:   modalias(usb:v072fp223dd*dc*dsc*dp*ic*isc*ip*)

++ acsccid-1.1.2.tar.bz2 -> acsccid-1.1.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/acsccid-1.1.2/ChangeLog new/acsccid-1.1.3/ChangeLog
--- old/acsccid-1.1.2/ChangeLog 2016-02-18 04:39:07.0 +0100
+++ new/acsccid-1.1.3/ChangeLog 2016-06-22 07:49:56.0 +0200
@@ -1,3 +1,115 @@
+2016-06-22  Godfrey Chung 
+
+   * README: Update README for v1.1.3.
+
+2016-06-22  Godfrey Chung 
+
+   * configure.ac: Update the version to 1.1.3 in configure.ac.
+
+2016-06-21  Godfrey Chung 
+
+   * src/ccid_usb.c: Fix random order of interfaces in OpenUSBByName().  
The value of static_interface should be increased for composite
+   devices only.
+
+2016-06-21  Godfrey Chung 
+
+   * src/ifdhandler.c: Avoid libusb timeout on Mac OS X in
+   CreateChannelByNameOrChannel().
+
+2016-06-07  Godfrey Chung 
+
+   * src/ccid_usb.c: Fix a race condition in CardDetectionThread().  
Replace libusb_handle_events() with
+   libusb_handle_events_completed().
+
+2016-06-07  Godfrey Chung 
+
+   * src/ifdhandler.c: IFDHGetCapabilities: fix
+   SCARD_ATTR_VENDOR_IFD_SERIAL_NO size.  Merge from ccid 1.4.24.
+
+2016-06-07  Godfrey Chung 
+
+   * src/ccid.c, src/ccid.h: Fix support of HID Aviator generic.  Merge 
from ccid 1.4.24.
+
+2016-06-07  Godfrey Chung 
+
+   * src/ccid.c, src/ccid.h: SCM SCL011: use a 400 ms timeout instead
+   of 100 ms.  Merge from ccid 1.4.24.
+
+2016-06-07  Godfrey Chung 
+
+   * src/ccid.c, src/ccid.h: ElatecTWN4: use a 400 ms timeout instead
+   of 100 ms.  Merge from ccid 1.4.24.
+
+2016-06-07  Godfrey Chung 
+
+   * src/ifdhandler.c: CreateChannel: allow to use a non default
+   timeout.  Merge from 1.4.24.
+
+2016-06-07  Godfrey Chung 
+
+   * src/ccid_usb.c: ccid_usb.c: fix a race condition on multi reader.  
Merge from ccid 1.4.24.
+
+2016-04-21  Godfrey Chung 
+
+   * src/ifdhandler.c: Update the copyright in ifdhandler.c
+
+2016-04-21  Godfrey Chung 
+
+   * src/ccid_ifdhandler.h: Update the copyright in ccid_ifdhandler.h.
+
+2016-04-21  Godfrey Chung 
+
+   * src/ccid_ifdhandler.h, src/ifdhandler.c: Add control codes for
+   Windows 

commit xviewer for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package xviewer for openSUSE:Factory checked 
in at 2016-06-23 13:37:19

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


Package is "xviewer"

Changes:

--- /work/SRC/openSUSE:Factory/xviewer/xviewer.changes  2016-05-29 
03:13:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.xviewer.new/xviewer.changes 2016-06-23 
13:37:31.0 +0200
@@ -1,0 +2,7 @@
+Wed Jun 22 12:01:32 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.0.4:
+  * Fix setting background in MATE.
+  * Show application name in the about dialog.
+
+---

Old:

  xviewer-1.0.3.tar.gz

New:

  xviewer-1.0.4.tar.gz



Other differences:
--
++ xviewer.spec ++
--- /var/tmp/diff_new_pack.WLnnsE/_old  2016-06-23 13:37:32.0 +0200
+++ /var/tmp/diff_new_pack.WLnnsE/_new  2016-06-23 13:37:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   xviewer
-Version:1.0.3
+Version:1.0.4
 Release:0
 Summary:Fast and functional graphics viewer
 License:GPL-2.0+ and LGPL-2.1+
@@ -29,7 +29,7 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libjpeg-devel
 BuildRequires:  libxml2-python
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(dbus-glib-1)

++ xviewer-1.0.3.tar.gz -> xviewer-1.0.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xviewer-1.0.3/configure.ac 
new/xviewer-1.0.4/configure.ac
--- old/xviewer-1.0.3/configure.ac  2016-05-24 15:40:17.0 +0200
+++ new/xviewer-1.0.4/configure.ac  2016-06-20 11:28:34.0 +0200
@@ -2,10 +2,10 @@
 
 m4_define(xviewer_major_version,  1)
 m4_define(xviewer_minor_version, 0)
-m4_define(xviewer_micro_version,  3)
+m4_define(xviewer_micro_version,  4)
 m4_define(xviewer_version, 
xviewer_major_version.xviewer_minor_version.xviewer_micro_version)
 
-AC_INIT([xviewer], xviewer_version, 
[http://bugzilla.gnome.org/enter_bug.cgi?product=xviewer], [xviewer])
+AC_INIT([xviewer], xviewer_version, 
[https://github.com/linuxmint/xviewer/issues], [xviewer])
 AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz])
 
 AC_CONFIG_MACRO_DIR([m4])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xviewer-1.0.3/debian/changelog 
new/xviewer-1.0.4/debian/changelog
--- old/xviewer-1.0.3/debian/changelog  2016-05-24 15:40:17.0 +0200
+++ new/xviewer-1.0.4/debian/changelog  2016-06-20 11:28:34.0 +0200
@@ -1,3 +1,11 @@
+xviewer (1.0.4) sarah; urgency=medium
+
+  [ Clement Lefebvre ]
+  * Fix setting background in MATE
+  * Show the program name in the about dialog
+
+ -- Clement Lefebvre   Mon, 20 Jun 2016 10:27:13 +0100
+
 xviewer (1.0.3) sarah; urgency=medium
 
   * Updated translations
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xviewer-1.0.3/src/xviewer-window.c 
new/xviewer-1.0.4/src/xviewer-window.c
--- old/xviewer-1.0.3/src/xviewer-window.c  2016-05-24 15:40:17.0 
+0200
+++ new/xviewer-1.0.4/src/xviewer-window.c  2016-06-20 11:28:34.0 
+0200
@@ -2775,7 +2775,7 @@
}
else if (g_strcmp0 (g_getenv ("XDG_CURRENT_DESKTOP"), "MATE") == 0) {
settings = g_settings_new ("org.mate.background");
-   g_settings_set_string (settings, "picture-filename", uri);
+   g_settings_set_string (settings, "picture-filename", filename);
g_object_unref (settings);
}
else {
@@ -6178,7 +6178,7 @@
g_return_if_fail (XVIEWER_IS_WINDOW (window));
 
gtk_show_about_dialog (GTK_WINDOW (window),
-  "program-name", _("Image Viewer"),
+  "program-name", "Xviewer",
   "version", VERSION,
   "website", 
"https://github.com/linuxmint/xviewer;,
   "logo-icon-name", "xviewer",




commit tclcurl for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package tclcurl for openSUSE:Factory checked 
in at 2016-06-23 13:37:10

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


Package is "tclcurl"

Changes:

--- /work/SRC/openSUSE:Factory/tclcurl/tclcurl.changes  2014-09-09 
19:01:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.tclcurl.new/tclcurl.changes 2016-06-23 
13:37:19.0 +0200
@@ -1,0 +2,6 @@
+Tue Jun 21 10:01:55 UTC 2016 - m...@suse.com
+
+- bsc#907545, tclcurl-types.patch: Fix segfaults in the multi
+  interface, caused by passing incompatible pointers.
+
+---

New:

  tclcurl-types.patch



Other differences:
--
++ tclcurl.spec ++
--- /var/tmp/diff_new_pack.PYEiE0/_old  2016-06-23 13:37:20.0 +0200
+++ /var/tmp/diff_new_pack.PYEiE0/_new  2016-06-23 13:37:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package tclcurl
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Guido Berhoerster.
 #
 # All modifications and additions to the file contributed by third parties
@@ -25,6 +25,7 @@
 Group:  Development/Languages/Tcl
 Url:
http://personal.telefonica.terra.es/web/getleft/tclcurl/index.html
 Source: 
http://personal.telefonica.terra.es/web/getleft/tclcurl/download/tarball/TclCurl-%{version}.tar.gz
+Patch0: tclcurl-types.patch
 BuildRequires:  bc
 BuildRequires:  libcurl-devel >= 7.21.7
 BuildRequires:  tcl-devel
@@ -36,6 +37,7 @@
 
 %prep
 %setup -q -n TclCurl-%{version}
+%patch0
 
 chmod 644 *.txt doc/*.txt doc/*.html
 

++ tclcurl-types.patch ++
--- generic/multi.c.orig
+++ generic/multi.c
@@ -165,12 +165,12 @@ curlMultiObjCmd (ClientData clientData,
 switch(tableIndex) {
 case 0:
 /*fprintf(stdout,"Multi add handle\n"); */
-errorCode=curlAddMultiHandle(interp,curlMultiData->mcurl,objv[2]);
+errorCode=curlAddMultiHandle(interp,curlMultiData,objv[2]);
 return curlReturnCURLMcode(interp,errorCode);
 break;
 case 1:
 /*fprintf(stdout,"Multi remove handle\n"); */
-
errorCode=curlRemoveMultiHandle(interp,curlMultiData->mcurl,objv[2]);
+errorCode=curlRemoveMultiHandle(interp,curlMultiData,objv[2]);
 return curlReturnCURLMcode(interp,errorCode);
 break;
 case 2:
@@ -184,7 +184,7 @@ curlMultiObjCmd (ClientData clientData,
 break;
 case 4:
 /*fprintf(stdout,"Multi getInfo\n"); */
-curlMultiGetInfo(interp,curlMultiData->mcurl);
+curlMultiGetInfo(interp,curlMultiData);
 break;
 case 5:
 /*fprintf(stdout,"Multi activeTransfers\n"); */
@@ -220,7 +220,7 @@ curlMultiObjCmd (ClientData clientData,
  *--
  */
 CURLMcode
-curlAddMultiHandle(Tcl_Interp *interp,CURLM *curlMultiHandlePtr
+curlAddMultiHandle(Tcl_Interp *interp,struct curlMultiObjData *curlMultiData
 ,Tcl_Obj *objvPtr) {
 
 struct curlObjData*curlDataPtr;
@@ -236,9 +236,9 @@ curlAddMultiHandle(Tcl_Interp *interp,CU
 return TCL_ERROR;
 }
 
-errorCode=curl_multi_add_handle(curlMultiHandlePtr,curlDataPtr->curl);
+errorCode=curl_multi_add_handle(curlMultiData->mcurl,curlDataPtr->curl);
 
-curlEasyHandleListAdd(curlMultiHandlePtr,curlDataPtr->curl
+curlEasyHandleListAdd(curlMultiData,curlDataPtr->curl
 ,Tcl_GetString(objvPtr));
 
 return errorCode;
@@ -262,14 +262,14 @@ curlAddMultiHandle(Tcl_Interp *interp,CU
  *--
  */
 CURLMcode
-curlRemoveMultiHandle(Tcl_Interp *interp,CURLM *curlMultiHandle
+curlRemoveMultiHandle(Tcl_Interp *interp, struct curlMultiObjData 
*curlMultiData
 ,Tcl_Obj *objvPtr) {
 struct curlObjData*curlDataPtr;
 CURLMcode  errorCode;
 
 curlDataPtr=curlGetEasyHandle(interp,objvPtr);
-errorCode=curl_multi_remove_handle(curlMultiHandle,curlDataPtr->curl);
-curlEasyHandleListRemove(curlMultiHandle,curlDataPtr->curl);
+errorCode=curl_multi_remove_handle(curlMultiData->mcurl,curlDataPtr->curl);
+curlEasyHandleListRemove(curlMultiData,curlDataPtr->curl);
 
 curlCloseFiles(curlDataPtr);
 curlResetPostData(curlDataPtr);
@@ -372,12 +372,12 @@ curlMultiDeleteCmd(ClientData clientData
  *--
  */
 int
-curlMultiGetInfo(Tcl_Interp *interp,CURLM 

commit cfengine-masterfiles for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package cfengine-masterfiles for 
openSUSE:Factory checked in at 2016-06-23 13:37:26

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


Package is "cfengine-masterfiles"

Changes:

--- 
/work/SRC/openSUSE:Factory/cfengine-masterfiles/cfengine-masterfiles.changes
2015-12-09 22:14:11.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.cfengine-masterfiles.new/cfengine-masterfiles.changes
   2016-06-23 13:37:38.0 +0200
@@ -1,0 +2,6 @@
+Wed Jun 15 15:45:11 UTC 2016 - kkae...@suse.com
+
+- Update to 3.9.0
+  See cfengine package for changelog
+
+---

Old:

  cfengine-masterfiles-3.8.0.tar.gz

New:

  cfengine-masterfiles-3.9.0.tar.gz



Other differences:
--
++ cfengine-masterfiles.spec ++
--- /var/tmp/diff_new_pack.MhUccZ/_old  2016-06-23 13:37:39.0 +0200
+++ /var/tmp/diff_new_pack.MhUccZ/_new  2016-06-23 13:37:39.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package cfengine-masterfiles
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,7 +16,7 @@
 #
 
 
-%define srcversion 3.8.0
+%define srcversion 3.9.0
 %define srcname %{name}-%{srcversion}
 Name:   cfengine-masterfiles
 

++ cfengine-masterfiles-3.8.0.tar.gz -> cfengine-masterfiles-3.9.0.tar.gz 
++
 5930 lines of diff (skipped)




commit xplayer for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package xplayer for openSUSE:Factory checked 
in at 2016-06-23 13:37:17

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


Package is "xplayer"

Changes:

--- /work/SRC/openSUSE:Factory/xplayer/xplayer.changes  2016-06-07 
23:46:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.xplayer.new/xplayer.changes 2016-06-23 
13:37:26.0 +0200
@@ -1,0 +2,9 @@
+Wed Jun 22 12:01:32 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.0.6:
+  * Recolour the xplayer-view-sidebar-symbolic.svg for it to use
+standard symbolic icon colouring.
+  * Add missing credits to the Totem developers in the AUTHORS file.
+  * Show application name in about dialog.
+
+---

Old:

  xplayer-1.0.5.tar.gz

New:

  xplayer-1.0.6.tar.gz



Other differences:
--
++ xplayer.spec ++
--- /var/tmp/diff_new_pack.Qiu4A0/_old  2016-06-23 13:37:27.0 +0200
+++ /var/tmp/diff_new_pack.Qiu4A0/_new  2016-06-23 13:37:27.0 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without zeitgeist
 Name:   xplayer
-Version:1.0.5
+Version:1.0.6
 Release:0
 Summary:Generic media player
 License:GPL-2.0+ and LGPL-2.1+
@@ -32,7 +32,7 @@
 # For gst-inspect tool
 BuildRequires:  gstreamer-utils >= 0.11.93
 BuildRequires:  lirc-devel
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  python3-devel
 BuildRequires:  python3-pylint
 BuildRequires:  translation-update-upstream

++ xplayer-1.0.5.tar.gz -> xplayer-1.0.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xplayer-1.0.5/AUTHORS new/xplayer-1.0.6/AUTHORS
--- old/xplayer-1.0.5/AUTHORS   2016-05-24 15:35:06.0 +0200
+++ new/xplayer-1.0.6/AUTHORS   2016-06-20 12:42:37.0 +0200
@@ -1 +1,12 @@
+Xplayer is based on Totem 3.10.
+
+Totem:
+--
+
+Bastien Nocera 
+Julien Moutte  (GStreamer backend)
+https://wiki.gnome.org/Apps/Videos
+
+Xplayer:
+
 https://github.com/linuxmint/xplayer/graphs/contributors
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xplayer-1.0.5/configure.ac 
new/xplayer-1.0.6/configure.ac
--- old/xplayer-1.0.5/configure.ac  2016-05-24 15:35:06.0 +0200
+++ new/xplayer-1.0.6/configure.ac  2016-06-20 12:42:37.0 +0200
@@ -2,7 +2,7 @@
 
 m4_define(xplayer_version_major, 1)
 m4_define(xplayer_version_minor, 0)
-m4_define(xplayer_version_micro, 5)
+m4_define(xplayer_version_micro, 6)
 
 # The version of the API exposed to plugins
 m4_define(xplayer_api_version_major, 1)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xplayer-1.0.5/data/icons/scalable/xplayer-view-sidebar-symbolic.svg 
new/xplayer-1.0.6/data/icons/scalable/xplayer-view-sidebar-symbolic.svg
--- old/xplayer-1.0.5/data/icons/scalable/xplayer-view-sidebar-symbolic.svg 
2016-05-24 15:35:06.0 +0200
+++ new/xplayer-1.0.6/data/icons/scalable/xplayer-view-sidebar-symbolic.svg 
2016-06-20 12:42:37.0 +0200
@@ -13,8 +13,8 @@
height="16px"
id="svg2827"
version="1.1"
-   inkscape:version="0.48.0 r9654"
-   sodipodi:docname="view-sidebar-symbolic.svg">
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="xplayer-view-sidebar-symbolic.svg">
   
 
+ inkscape:window-width="914"
+ inkscape:window-height="482"
+ inkscape:window-x="466"
+ inkscape:window-y="388"
+ inkscape:window-maximized="0">
 
@@ -65,22 +65,22 @@
  inkscape:label="Layer 1"
  inkscape:groupmode="layer">
 
 
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xplayer-1.0.5/debian/changelog 
new/xplayer-1.0.6/debian/changelog
--- old/xplayer-1.0.5/debian/changelog  2016-05-24 15:35:06.0 +0200
+++ new/xplayer-1.0.6/debian/changelog  2016-06-20 12:42:37.0 +0200
@@ -1,3 +1,14 @@
+xplayer (1.0.6) sarah; urgency=medium
+
+  [ JosephMcc ]
+  * Recolor the xplayer-view-sidebar-symbolic.svg so it uses the standard 
symbolic icon coloring
+
+  [ Clement Lefebvre ]
+  * Added missing credits to the Totem developers in the AUTHORS file
+  * Show application name in about dialog
+
+ -- Clement Lefebvre   Mon, 20 Jun 2016 11:41:57 +0100
+
 xplayer (1.0.5) sarah; urgency=medium
 
   * Updated translations
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xplayer-1.0.5/src/xplayer-menu.c 
new/xplayer-1.0.6/src/xplayer-menu.c
--- 

commit cfengine for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package cfengine for openSUSE:Factory 
checked in at 2016-06-23 13:37:22

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


Package is "cfengine"

Changes:

--- /work/SRC/openSUSE:Factory/cfengine/cfengine.changes2016-04-22 
16:26:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.cfengine.new/cfengine.changes   2016-06-23 
13:37:34.0 +0200
@@ -1,0 +2,119 @@
+Wed Jun 15 12:21:10 UTC 2016 - kkae...@suse.com
+
+- Update to 3.9.0
+  Full changelog at https://github.com/cfengine/core/blob/3.9.0/ChangeLog
+  New features:
+  - Classes promise: allow classes without an expression to default to
+defined.
+  - Add optional interface parameter to iprange() to match only one
+interface.
+  - Allow '=' in symbolic modes (Redmine #7826)
+  - Add: FreeBSD ports package module
+  - New package module for FreeBSD pkg package manager.
+  - Add support for adding/removing fifos in policy
+  - Add Linux parsing of /proc/net/ data.
+- sys.inet
+- sys.inet6
+- sys.interface_data
+- Data is returned as a data container.
+- See documentation for more details. (Jira CFE-1991)
+  - sys.ip2iface: new reverse mapping variable from IP to
+interface name
+  - Namespaced classes can now be specified on the command line.
+  - namespaces can now be passed to cf-runagent -D and --remote-bundles
+(Redmine #7856)
+  - Add 'cf-full' and 'json-full' to cf-promises '-p' option.
+They generate output based on the entire policy. The existing 'cf'
+already behaved this way, and it has now been changed to generate
+output only for a single file, which the existing 'json' option
+already does.
+  - New language functions: processexists() and findprocesses()
+(Redmine #7633)
+  - Implement new regex_replace() function. (Redmine #7346)
+  - Add log rotation policy for state/classes.jsonl log.
+(Redmine #7951)
+  - Added collect_vars utility bundle to stdlib
+  - Intoduce report_class_log attribute to body agent common.
+(Redmine #7951)
+  - Add standard_services service_method allowing for explicit usage
+  - cf-promises --show-vars can now show JSON variables.
+  - Add json_pipe mode to mapdata(), which allows piping a
+JSON container to an external program for manipulation and receiving
+JSON back. The jq tool is a good example where this mode can be
+useful. A corresponding $(def.jq) variable has also been added with
+a default path to this tool. See documentation for mapdata() for
+more information and examples. (Jira CFE-2071)
+  - behaviour change: "true" is always defined and "false" is never
+defined in a context expression.
+  - Add: nimclient package module for AIX
+This module provides basic functionality for using nimclient as a means
+to ensure packages are either present or absent. It does not support
+listing package updates available or provide any special caching.
+  - Add callstack_callers() and callstack_promisers() functions.
+  - Log variable definitions in debug output. (Redmine #7137)
+  - Add: Memory information to host info report (Jira CFE-1177)
+  - In Mustache templates, one can now use {{#-top-}} and
+{{/-top-}} tags to iterate over the top level element in a
+container. (Redmine #6545)
+  - Add network_connections() function that parses /proc/net
+  - Provide new -w argument to override the workdir for testing
+  - New feature: Emails sent by cf-execd can be filtered to get
+rid of emails for unwanted log messages. The attributes
+mailfilter_include and mailfilter_exclude in body executor
+control control what to include. See documentation for
+cf-execd for more information. (Jira CFE-2283)
+  - Add: file_make_mustache bundle to render mustache templates
+  - Add '-n' flag to cf-key to avoid host name lookups.
+  - cf-agent, cf-execd, cf-promises, cf-runagent and cf-serverd honor
+multiple -D, -N and -s arguments (Redmine #7191)
+  - Add "canonify" mode to mapdata().
+  - Add: printfile bodies to stdlib
+  - Add: New results classes body [] (Redmine #7418, #7481)
+  - Implement cf-runagent --remote-bundles and cf-serverd "bundle" access
+promise. (Redmine #7581)
+  - Add commands promise arglist attribute, augmenting args attribute.
+  - It's now possible to reference variables in inline JSON,
+for example: mergedata('[ thing, { "mykey": otherthing[123] } ]').
+thing and otherthing[123] will be resolved as variables, since
+they are unquoted. See the documentation for more details.
+(Redmine #7871)
+  - Allow inline JSON to be used in the following function calls:
+- data_expand()
+- difference()
+- every()
+- filter()
+- format()
+- getindices()
+- getvalues()
+- 

commit kdesdk3 for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package kdesdk3 for openSUSE:Factory checked 
in at 2016-06-23 13:36:52

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


Package is "kdesdk3"

Changes:

--- /work/SRC/openSUSE:Factory/kdesdk3/kdesdk3.changes  2014-12-01 
14:01:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdesdk3.new/kdesdk3.changes 2016-06-23 
13:36:54.0 +0200
@@ -1,0 +2,7 @@
+Tue Jun 21 00:44:39 UTC 2016 - i...@marguerite.su
+
+- add patch: kdesdk-3.5.10-gcc6.patch
+  * fix boo#985185
+  * fix call of overloaded abs(u_int32_t) is ambiguous
+
+---

New:

  kdesdk-3.5.10-gcc6.patch



Other differences:
--
++ kdesdk3.spec ++
--- /var/tmp/diff_new_pack.bFcysy/_old  2016-06-23 13:36:56.0 +0200
+++ /var/tmp/diff_new_pack.bFcysy/_new  2016-06-23 13:36:56.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdesdk3
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,27 +16,29 @@
 #
 
 
-Name:   kdesdk3
 %define _mandir /opt/kde3/share/man
-BuildRequires:  db-devel
-BuildRequires:  flex
-BuildRequires:  kdebase3-devel
-BuildRequires:  libtool
-%ifarch %ix86 ppc x86_64 ppc64
-BuildRequires:  valgrind-devel
-%endif
-BuildRequires:  fdupes
+Name:   kdesdk3
+Version:3.5.10
+Release:0
 Summary:The KDE Software Development Kit
 License:GPL-2.0+
 Group:  System/GUI/KDE
-Version:3.5.10
-Release:0
 Url:http://www.kde.org/
-Requires:   cvs
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:kdesdk-%{version}.tar.bz2
 Patch0: 3_5_BRANCH.diff
 Patch1: kdesdk-3.5.10-fix-bashisms.patch
+#PATCH-FIX-UPSTREAM fix call of overloaded abs(u_int32_t) is ambiguous
+Patch2: kdesdk-3.5.10-gcc6.patch
+BuildRequires:  db-devel
+BuildRequires:  fdupes
+BuildRequires:  flex
+BuildRequires:  kdebase3-devel
+BuildRequires:  libtool
+Requires:   cvs
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%ifarch %ix86 ppc x86_64 ppc64
+BuildRequires:  valgrind-devel
+%endif
 
 %description
 This is a collection of applications and tools used by KDE developers.
@@ -81,10 +83,10 @@
 poxml: translate DocBook files using translated PO files.
 
 %package devel
-Requires:   kdelibs3-devel
-Requires:   kdesdk3
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Libraries/C and C++
+Requires:   kdelibs3-devel
+Requires:   kdesdk3
 
 %description devel
 This package contains all necessary include files and libraries needed
@@ -94,19 +96,20 @@
 %setup -q -n kdesdk-%{version}
 %patch0
 %patch1 -p1
+%patch2 -p1
 # kmtrace does not work with glibc 2.3 anymore and valgrind is way better
 rm -rf kmtrace
-. /etc/opt/kde3/common_options
+. %{_sysconfdir}/opt/kde3/common_options
 update_admin
 
 %build
-. /etc/opt/kde3/common_options
-./configure $configkde --mandir=%_mandir
-do_make %{?jobs:-j %jobs}
+. %{_sysconfdir}/opt/kde3/common_options
+./configure $configkde --mandir=%{_mandir}
+do_make %{?_smp_mflags}
 
 %install
-. /etc/opt/kde3/common_options
-make DESTDIR=$RPM_BUILD_ROOT $INSTALL_TARGET
+. %{_sysconfdir}/opt/kde3/common_options
+make DESTDIR=%{buildroot} $INSTALL_TARGET
 chmod 0755 
%{buildroot}/opt/kde3/share/apps/kapptemplate/include/kapptemplate.common
 chmod 0755 %{buildroot}/opt/kde3/share/apps/kapptemplate/admin/do_make
 chmod 0755 %{buildroot}/opt/kde3/share/apps/kapptemplate/admin/config.sub
@@ -139,14 +142,11 @@
 %suse_update_desktop_filekompareDevelopment RevisionControl
 %suse_update_desktop_filekcachegrindDevelopment Profiling
 kde_post_install
-%fdupes -s $RPM_BUILD_ROOT
+%fdupes -s %{buildroot}
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
-
 %post translate -p /sbin/ldconfig
-
 %postun translate -p /sbin/ldconfig
 
 %files
@@ -190,21 +190,21 @@
 /opt/kde3/bin/package_crystalsvg
 /opt/kde3/bin/png2mng.pl
 /opt/kde3/bin/svn*
-/opt/kde3/%_lib/kde3/kabcformat_kdeaccounts.*
-/opt/kde3/%_lib/kde3/kfile_cpp.*
-/opt/kde3/%_lib/kde3/kfile_diff.*
-/opt/kde3/%_lib/kde3/kfile_ts.*
-/opt/kde3/%_lib/kde3/lib*
-/opt/kde3/%_lib/kde3/plugins*/styles/scheck.*
-/opt/kde3/%_lib/libc*
-/opt/kde3/%_lib/kde3/cervisia.*
-/opt/kde3/%_lib/kde3/cvsservice.*
-/opt/kde3/%_lib/kde3/cvsaskpass.*
-/opt/kde3/%_lib/libkdeinit_cervisia.*
-/opt/kde3/%_lib/libkdeinit_cvs*

commit cld2 for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package cld2 for openSUSE:Factory checked in 
at 2016-06-23 13:37:00

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


Package is "cld2"

Changes:

--- /work/SRC/openSUSE:Factory/cld2/cld2.changes2015-05-29 
10:40:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.cld2.new/cld2.changes   2016-06-23 
13:37:10.0 +0200
@@ -1,0 +2,5 @@
+Tue Jun 21 12:55:27 UTC 2016 - astie...@suse.com
+
+- fix build with gcc6 in Factory, build with -std=c++98 boo#985158
+
+---



Other differences:
--
++ cld2.spec ++
--- /var/tmp/diff_new_pack.WR2vA8/_old  2016-06-23 13:37:12.0 +0200
+++ /var/tmp/diff_new_pack.WR2vA8/_new  2016-06-23 13:37:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package cld2
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -73,7 +73,7 @@
-DCMAKE_SKIP_RPATH:BOOL=ON \
-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
-DCMAKE_C_FLAGS:STRING="%{optflags}" \
-   -DCMAKE_CXX_FLAGS:STRING="%{optflags}"
+   -DCMAKE_CXX_FLAGS:STRING="%{optflags} -std=c++98"
 %endif
 make %{?_smp_mflags}
 
@@ -82,11 +82,10 @@
 %cmake_install
 %else
 cd build
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 %endif
 
 %post -n libcld2-0 -p /sbin/ldconfig
-
 %postun -n libcld2-0 -p /sbin/ldconfig
 
 %files -n libcld2-0




commit machinery for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package machinery for openSUSE:Factory 
checked in at 2016-06-23 13:37:03

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


Package is "machinery"

Changes:

--- /work/SRC/openSUSE:Factory/machinery/machinery.changes  2016-04-28 
16:59:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.machinery.new/machinery.changes 2016-06-23 
13:37:13.0 +0200
@@ -1,0 +2,14 @@
+Tue Jun 21 16:28:31 CEST 2016 - thard...@suse.de
+
+- update to version 1.21.0
+  * Add attribute in patterns scope to identify the patterns manager
+  * Improve navigation in HTML view to connect "list", "show" and "compare"
+functionality
+  * Fix service inspector on systemd to include instanciated services
+  * Introduce format version 10 to allow distinction between files and 
directories
+for meta data of unmanaged files.
+This distinction is only available for newly inspected descriptions.
+Additionally, an attribute in the patterns scope was added to identify the 
patterns manager.
+
https://github.com/SUSE/machinery/blob/master/docs/System-Description-Format.md#version-10
+
+---

Old:

  machinery-tool-1.20.0.gem

New:

  machinery-tool-1.21.0.gem



Other differences:
--
++ machinery.spec ++
--- /var/tmp/diff_new_pack.Lv0Qsk/_old  2016-06-23 13:37:14.0 +0200
+++ /var/tmp/diff_new_pack.Lv0Qsk/_new  2016-06-23 13:37:14.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   machinery
-Version:1.20.0
+Version:1.21.0
 Release:0
 %define binary_name machinery
 %define mod_name machinery-tool

++ machinery-tool-1.20.0.gem -> machinery-tool-1.21.0.gem ++
 3080 lines of diff (skipped)




commit qmmp for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package qmmp for openSUSE:Factory checked in 
at 2016-06-23 13:37:07

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


Package is "qmmp"

Changes:

--- /work/SRC/openSUSE:Factory/qmmp/qmmp.changes2016-06-02 
09:38:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.qmmp.new/qmmp.changes   2016-06-23 
13:37:15.0 +0200
@@ -1,0 +2,55 @@
+Tue Jun 21 22:12:43 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.1.0:
+  * Use floating point pcm format for all lossy decoders.
+  * Use floating point pcm format for all audio effects.
+  * Add new internal audio converter.
+  * Add dithering setting.
+  * Add feature to change output bit depth.
+  * Add feature to change volume adjustment step.
+  * Add soxr-based resampler plugin.
+  * Remove libsamplerate-based resampler.
+  * Add Qt Multimedia output plugin.
+  * Add feature to refresh playlist.
+  * Add two-panel file dialog.
+  * Add feature to scrobble http streams.
+  * Add multi-thread support in the audio converter plugin.
+  * Add support for m4a files in the ReplayGain scanner.
+  * Add WASAPI output plugin.
+  * Add https support in the http plugin.
+  * Add wildmidi 0.4.0 support.
+  * Add support for XMIDI and MUS (id Software) formats.
+  * Improve skinned interface:
+- show track details when double-clicking on song title in the
+  main window;
+- improve time indicator in the shaded mode;
+- add feature to disable anti-aliasing;
+- add feature to seek by mouse wheel;
+- add column alignment option.
+  * Improve simple user interface (qsui):
+- add column alignment option;
+- add feature to add/remove sliders;
+- add feature to create multiple panels;
+- add tooltips for the sliders;
+- improve volume slider;
+- fix problem with minimum width.
+  * Improve wavpack plugin:
+- add some optimisations;
+- fix a memory leak.
+  * Improve ffmpeg plugin:
+- add support for m4a embedded album art;
+- add replaygain support
+  * Improve ladspa plugin.
+  * Improve command line parser.
+  * Improve details dialog.
+  * Improve "jump to track" dialog.
+  * Change default settings in the mpeg plugin.
+  * Fix metadata encoding issue in the http plugin.
+  * Fix compiz support.
+  * Fix disc number parsing.
+  * Update Bulgarian translation, Chinese Traditional,
+Chinese Simplified, French, German, Greek, Hebrew, Japanese,
+Portuguese, Russian, Ukrainian translations.
+- Rebase qmmp-default-pulse.patch.
+
+---

Old:

  qmmp-1.0.10.tar.bz2

New:

  qmmp-1.1.0.tar.bz2



Other differences:
--
++ qmmp.spec ++
--- /var/tmp/diff_new_pack.V3Tity/_old  2016-06-23 13:37:16.0 +0200
+++ /var/tmp/diff_new_pack.V3Tity/_new  2016-06-23 13:37:16.0 +0200
@@ -19,7 +19,7 @@
 %define sover   1
 %bcond_with restricted
 Name:   qmmp
-Version:1.0.10
+Version:1.1.0
 Release:0
 Summary:Qt-based Multimedia Player
 License:GPL-2.0+
@@ -37,9 +37,10 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libmpcdec-devel
 BuildRequires:  libqt5-qttools-devel >= 5.4
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(Qt5Core) >= 5.4
 BuildRequires:  pkgconfig(Qt5DBus) >= 5.4
+BuildRequires:  pkgconfig(Qt5Multimedia) >= 5.4
 BuildRequires:  pkgconfig(Qt5Network) >= 5.4
 BuildRequires:  pkgconfig(Qt5OpenGL) >= 5.4
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.4
@@ -66,8 +67,8 @@
 BuildRequires:  pkgconfig(libsidplayfp)
 BuildRequires:  pkgconfig(opus) >= 1.0.2
 BuildRequires:  pkgconfig(opusfile) >= 0.2
-BuildRequires:  pkgconfig(samplerate)
 BuildRequires:  pkgconfig(sndfile)
+BuildRequires:  pkgconfig(soxr)
 BuildRequires:  pkgconfig(taglib)
 BuildRequires:  pkgconfig(vorbisfile)
 BuildRequires:  pkgconfig(wavpack)

++ qmmp-1.0.10.tar.bz2 -> qmmp-1.1.0.tar.bz2 ++
 135354 lines of diff (skipped)

++ qmmp-default-pulse.patch ++
--- /var/tmp/diff_new_pack.V3Tity/_old  2016-06-23 13:37:19.0 +0200
+++ /var/tmp/diff_new_pack.V3Tity/_new  2016-06-23 13:37:19.0 +0200
@@ -1,7 +1,6 @@
-diff -Nur qmmp-1.0.6/src/qmmp/output.cpp new/src/qmmp/output.cpp
 qmmp-1.0.6/src/qmmp/output.cpp 2016-01-27 07:18:19.0 +0100
-+++ new/src/qmmp/output.cpp2016-01-30 02:07:18.299482497 +0100
-@@ -148,7 +148,7 @@
+--- a/src/qmmp/output.cpp
 b/src/qmmp/output.cpp
+@@ -149,7 +149,7 @@ OutputFactory *Output::currentFactory()
  QString name = settings.value("Output/current_plugin", 
QMMP_DEFAULT_OUTPUT).toString();
  #else
  #ifdef Q_OS_LINUX
@@ -9,4 +8,4 @@
 +

commit pix for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package pix for openSUSE:Factory checked in 
at 2016-06-23 13:37:13

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


Package is "pix"

Changes:

--- /work/SRC/openSUSE:Factory/pix/pix.changes  2016-06-07 23:45:54.0 
+0200
+++ /work/SRC/openSUSE:Factory/.pix.new/pix.changes 2016-06-23 
13:37:22.0 +0200
@@ -1,0 +2,12 @@
+Wed Jun 22 12:01:32 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.0.2:
+  * Fix wrong URL in about dialog.
+  * Toolbar: Show text under icons by default.
+  * Fix setting background in MATE.
+  * When setting backgrounds picture, don't mess with the options
+(picture aspect).
+  * Remove a couple sizes of the palette.png icon.
+  * Fix a build warning.
+
+---

Old:

  pix-1.0.1.tar.gz

New:

  pix-1.0.2.tar.gz



Other differences:
--
++ pix.spec ++
--- /var/tmp/diff_new_pack.suQDa1/_old  2016-06-23 13:37:23.0 +0200
+++ /var/tmp/diff_new_pack.suQDa1/_new  2016-06-23 13:37:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   pix
-Version:1.0.1
+Version:1.0.2
 Release:0
 Summary:Image viewer and browser utility
 License:GPL-2.0+

++ pix-1.0.1.tar.gz -> pix-1.0.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pix-1.0.1/configure.ac new/pix-1.0.2/configure.ac
--- old/pix-1.0.1/configure.ac  2016-05-16 18:44:34.0 +0200
+++ new/pix-1.0.2/configure.ac  2016-06-20 11:31:55.0 +0200
@@ -1,6 +1,6 @@
 m4_define([pix_major_version], [1])
 m4_define([pix_minor_version], [0])
-m4_define([pix_micro_version], [1])
+m4_define([pix_micro_version], [2])
 m4_define([pix_version],
   [pix_major_version.pix_minor_version.pix_micro_version])
 m4_define([pix_api_version],
@@ -8,9 +8,9 @@
 
 AC_PREREQ(2.63)
 AC_INIT([pix], [pix_version],
-[http://bugzilla.gnome.org/enter_bug.cgi?product=pix],
+[https://github.com/linuxmint/pix/issues],
 [pix])
-AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz tar-ustar])
+AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz tar-ustar subdir-objects])
 
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_MACRO_DIR([m4])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pix-1.0.1/data/icons/hicolor/22x22/actions/Makefile.am 
new/pix-1.0.2/data/icons/hicolor/22x22/actions/Makefile.am
--- old/pix-1.0.1/data/icons/hicolor/22x22/actions/Makefile.am  2016-05-16 
18:44:34.0 +0200
+++ new/pix-1.0.2/data/icons/hicolor/22x22/actions/Makefile.am  2016-06-20 
11:31:55.0 +0200
@@ -11,7 +11,6 @@
file-library.png\
file-search.png \
histogram.png   \
-   palette.png \
share.png   \
tag.png \
tool-adjust-colors.png  \
Files old/pix-1.0.1/data/icons/hicolor/22x22/actions/palette.png and 
new/pix-1.0.2/data/icons/hicolor/22x22/actions/palette.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pix-1.0.1/data/icons/hicolor/48x48/actions/Makefile.am 
new/pix-1.0.2/data/icons/hicolor/48x48/actions/Makefile.am
--- old/pix-1.0.1/data/icons/hicolor/48x48/actions/Makefile.am  2016-05-16 
18:44:34.0 +0200
+++ new/pix-1.0.2/data/icons/hicolor/48x48/actions/Makefile.am  2016-06-20 
11:31:55.0 +0200
@@ -9,7 +9,6 @@
file-catalog.png\
file-library.png\
file-search.png \
-   palette.png \
selection.png   \
selection1.png  \
selection2.png  \
Files old/pix-1.0.1/data/icons/hicolor/48x48/actions/palette.png and 
new/pix-1.0.2/data/icons/hicolor/48x48/actions/palette.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pix-1.0.1/data/org.x.pix.gschema.xml.in 
new/pix-1.0.2/data/org.x.pix.gschema.xml.in
--- old/pix-1.0.1/data/org.x.pix.gschema.xml.in 2016-05-16 18:44:34.0 
+0200
+++ new/pix-1.0.2/data/org.x.pix.gschema.xml.in 2016-06-20 11:31:55.0 
+0200
@@ -90,7 +90,7 @@
   false
 
 
-  'system'
+  'text-below'
 
 
   0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pix-1.0.1/debian/changelog 
new/pix-1.0.2/debian/changelog
--- old/pix-1.0.1/debian/changelog  2016-05-16 18:44:34.0 +0200
+++ new/pix-1.0.2/debian/changelog  2016-06-20 

commit golang-packaging for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package golang-packaging for 
openSUSE:Factory checked in at 2016-06-23 13:36:48

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


Package is "golang-packaging"

Changes:

--- /work/SRC/openSUSE:Factory/golang-packaging/golang-packaging.changes
2016-06-12 18:54:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.golang-packaging.new/golang-packaging.changes   
2016-06-23 13:36:52.0 +0200
@@ -1,0 +2,13 @@
+Tue Jun 21 09:32:43 UTC 2016 - tboer...@suse.com
+
+- Update to version 14.9.2:
+  + [SLE11]some commands need time to finish, immediate close will get wrong 
status, so use timeout 30s
+  + [SLE]ditch named group in regexp in golang.req, the oniguruma in ruby 
1.8.7 doesn't support named group
+  + fix a typo in cli.rb
+  + increate timeout to 300s or go install can't finish
+  + Remove runtime dependency for Go API
+  + simplify rpmsysinfo.rb
+  + release 14.9.1
+  + Added go_nostrip macro
+
+---

Old:

  golang-packaging-14.9.1.tar.xz

New:

  golang-packaging-14.9.2.tar.xz



Other differences:
--
++ golang-packaging.spec ++
--- /var/tmp/diff_new_pack.2FGmRE/_old  2016-06-23 13:36:54.0 +0200
+++ /var/tmp/diff_new_pack.2FGmRE/_new  2016-06-23 13:36:54.0 +0200
@@ -16,8 +16,10 @@
 #
 
 
+%define version_unconverted 14.9.2
+
 Name:   golang-packaging
-Version:14.9.1
+Version:14.9.2
 Release:0
 Summary:A toolchain to help packaging golang
 License:GPL-3.0

++ _service ++
--- /var/tmp/diff_new_pack.2FGmRE/_old  2016-06-23 13:36:54.0 +0200
+++ /var/tmp/diff_new_pack.2FGmRE/_new  2016-06-23 13:36:54.0 +0200
@@ -4,8 +4,8 @@
 git
 golang-packaging
 .git
-14.9.1
-v14.9.1
+14.9.2
+v14.9.2
 enable
   
   

++ golang-packaging-14.9.1.tar.xz -> golang-packaging-14.9.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/golang-packaging-14.9.1/ChangeLog 
new/golang-packaging-14.9.2/ChangeLog
--- old/golang-packaging-14.9.1/ChangeLog   2016-06-08 12:36:28.0 
+0200
+++ new/golang-packaging-14.9.2/ChangeLog   2016-06-21 11:32:43.0 
+0200
@@ -1,3 +1,8 @@
+== update version 14.9.2 ==
+
+  * Added go_nostrip macro to disable stripping of debug
+information and to disable a debug package
+
 == update version 14.9.1 ==
 
   * simplify rpmsysinfo.rb: don't guess variables'
@@ -7,7 +12,7 @@
 
 == update version 14.9.0 ==
 
-  * Remove runtime dependency for Go API 
+  * Remove runtime dependency for Go API
 
 == update version 14.8.1 ==
 
@@ -128,7 +133,7 @@
 == Version 3 ==
 
   * skip *example*.go/*test*.go for Requires finding
-  * support alias format (import xx "xxx") for importpath 
+  * support alias format (import xx "xxx") for importpath
   * add golang-strip-builddep, a tool to strip unneeded importpath from source 
codes
 
 == Version 2 ==
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/golang-packaging-14.9.1/macros.go 
new/golang-packaging-14.9.2/macros.go
--- old/golang-packaging-14.9.1/macros.go   2016-06-08 12:36:28.0 
+0200
+++ new/golang-packaging-14.9.2/macros.go   2016-06-21 11:32:43.0 
+0200
@@ -18,6 +18,10 @@
 %go_contribsrcdir  %{_datadir}/go/contrib/src/
 %go_tooldir%{_datadir}/go/pkg/tool/linux_%{go_arch}
 
+%go_nostrip \
+%undefine _build_create_debug \
+%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
+
 %go_exclusivearch \
 ExclusiveArch:  aarch64 %ix86 x86_64 %arm ppc64 ppc64le s390x
 
@@ -84,7 +88,7 @@
 #  go install importpath/baz
 #
 # See: go help install, go help packages
-%gobuild %{_prefix}/lib/rpm/golang-macros.rb --build 
+%gobuild %{_prefix}/lib/rpm/golang-macros.rb --build
 
 # Install all compiled packages and binaries to the buildroot
 %goinstall %{_prefix}/lib/rpm/golang-macros.rb --install




commit kdeutils3 for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package kdeutils3 for openSUSE:Factory 
checked in at 2016-06-23 13:36:47

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


Package is "kdeutils3"

Changes:

--- /work/SRC/openSUSE:Factory/kdeutils3/kdeutils3.changes  2015-03-03 
11:15:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdeutils3.new/kdeutils3.changes 2016-06-23 
13:36:48.0 +0200
@@ -1,0 +2,7 @@
+Tue Jun 21 00:37:47 UTC 2016 - i...@marguerite.su
+
+- add patch: kdeutils-3.5.10-gcc6.patch
+  * fix boo#985181
+  * fix call of overloaded abs(unsigned int) is ambiguous
+
+---

New:

  kdeutils-3.5.10-gcc6.patch



Other differences:
--
++ kdeutils3.spec ++
--- /var/tmp/diff_new_pack.GPURM4/_old  2016-06-23 13:36:49.0 +0200
+++ /var/tmp/diff_new_pack.GPURM4/_new  2016-06-23 13:36:49.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdeutils3
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,6 @@
 
 
 Name:   kdeutils3
-BuildRequires:  gmp-devel
-BuildRequires:  kdebase3-devel
-BuildRequires:  net-snmp-devel
-BuildRequires:  pcsc-lite
-BuildRequires:  python-devel
 Version:3.5.10
 Release:0
 Summary:KDE Utility Programs
@@ -45,7 +40,13 @@
 Patch18:kdeutils-3.5.8-alt-ark-rar-password.patch
 Patch19:kdeutils-3.5.8-alt-ark-zip-password.patch
 Patch20:kdeutils-3.5.8-alt-create-password-zip-rar-7zip.patch
-
+#PATCH-FIX-UPSTREAM fix call of overloaded 'abs(unsigned int) is ambiguous
+Patch21:kdeutils-3.5.10-gcc6.patch
+BuildRequires:  gmp-devel
+BuildRequires:  kdebase3-devel
+BuildRequires:  net-snmp-devel
+BuildRequires:  pcsc-lite
+BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -124,6 +125,7 @@
 pushd klaptopdaemon/linux
 %patch16
 popd
+%patch21 -p1
 sed -i 1i\ '#define HAVE_STRLCAT' ksim/monitors/snmp/snmp.cpp
 sed -i 1i\ '#define HAVE_STRLCAT' ksim/monitors/snmp/value.cpp
 sed -i 1i\ '#define HAVE_STRLCAT' ksim/monitors/snmp/session.cpp
@@ -132,11 +134,11 @@
 rm -rf kfloppy doc/kfloppy
 %endif
 rm -rf klaptopdaemon
-. /etc/opt/kde3/common_options
+. %{_sysconfdir}/opt/kde3/common_options
 update_admin
 
 %build
-. /etc/opt/kde3/common_options
+. %{_sysconfdir}/opt/kde3/common_options
 DO_NOT_COMPILE=kdessh
 %if 0%{?suse_version} >= 1140
 sed -i 's/2.6/2.7/g' ./configure
@@ -145,7 +147,7 @@
 make %{?_smp_mflags}
 
 %install
-. /etc/opt/kde3/common_options
+. %{_sysconfdir}/opt/kde3/common_options
 make DESTDIR=%{buildroot} $INSTALL_TARGET
 # remove unwanted files
 %suse_update_desktop_file KEdit   Utility TextEditor
@@ -173,15 +175,10 @@
 kde_post_install
 
 %post extra -p /sbin/ldconfig
-
 %postun extra -p /sbin/ldconfig
-
 %post laptop -p /sbin/ldconfig
-
 %postun laptop -p /sbin/ldconfig
-
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %files

++ kdeutils-3.5.10-gcc6.patch ++
Index: kdeutils-3.5.10/khexedit/lib/kbigbuffer.cpp
===
--- kdeutils-3.5.10.orig/khexedit/lib/kbigbuffer.cpp
+++ kdeutils-3.5.10/khexedit/lib/kbigbuffer.cpp
@@ -17,6 +17,7 @@
 
 // c specific
 #include 
+#include 
 // lib specific
 #include "kbigbuffer.h"
 
@@ -170,7 +171,7 @@ bool KBigBuffer::ensurePageLoaded( unsig
   if( NoOfFreePages < 1 )
   {
 // free the page which is the furthest away from the page we are loading
-if( abs(FirstPage-PageIndex) > abs(LastPage-PageIndex) )
+if( std::abs(FirstPage-PageIndex) > std::abs(LastPage-PageIndex) )
   while( !freePage(FirstPage++) );
 else
   while( !freePage(LastPage--) );



commit xreader for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package xreader for openSUSE:Factory checked 
in at 2016-06-23 13:37:18

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


Package is "xreader"

Changes:

--- /work/SRC/openSUSE:Factory/xreader/xreader.changes  2016-06-07 
23:46:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.xreader.new/xreader.changes 2016-06-23 
13:37:29.0 +0200
@@ -1,0 +2,8 @@
+Wed Jun 22 12:01:32 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.0.7:
+  * Fix Presentation and Zoom buttons greyed out, if no document
+has been loaded.
+  * Show application name in about dialog.
+
+---

Old:

  xreader-1.0.6.tar.gz

New:

  xreader-1.0.7.tar.gz



Other differences:
--
++ xreader.spec ++
--- /var/tmp/diff_new_pack.SczAYZ/_old  2016-06-23 13:37:30.0 +0200
+++ /var/tmp/diff_new_pack.SczAYZ/_new  2016-06-23 13:37:30.0 +0200
@@ -20,7 +20,7 @@
 %define typelib1 typelib-1_0-XreaderDocument-1_5_0
 %define typelib2 typelib-1_0-XreaderView-1_5_0
 Name:   xreader
-Version:1.0.6
+Version:1.0.7
 Release:0
 Summary:Simple document viewer
 License:GPL-2.0 and LGPL-2.0
@@ -31,7 +31,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  gnome-common
 BuildRequires:  libtiff-devel >= 3.6
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  texlive-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  yelp-tools

++ xreader-1.0.6.tar.gz -> xreader-1.0.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xreader-1.0.6/configure.ac 
new/xreader-1.0.7/configure.ac
--- old/xreader-1.0.6/configure.ac  2016-05-24 15:37:36.0 +0200
+++ new/xreader-1.0.7/configure.ac  2016-06-20 12:54:32.0 +0200
@@ -4,7 +4,7 @@
 
 m4_define([ev_major_version], [1])
 m4_define([ev_minor_version], [0])
-m4_define([ev_micro_version], [6])
+m4_define([ev_micro_version], [7])
 m4_define([ev_extra_version], [])
 m4_define([ev_version], 
[ev_major_version.ev_minor_version.ev_micro_version()ev_extra_version])
 
@@ -40,7 +40,7 @@
 # *
 
 AC_PREREQ([2.57])
-AC_INIT([xreader], [ev_version], [http://www.mate-desktop.org/], [xreader])
+AC_INIT([xreader], [ev_version], 
[https://github.com/linuxmint/xreader/issues], [xreader])
 AM_INIT_AUTOMAKE([1.10 foreign tar-ustar dist-xz no-dist-gzip check-news])
 
 AC_CONFIG_HEADERS([config.h])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xreader-1.0.6/debian/changelog 
new/xreader-1.0.7/debian/changelog
--- old/xreader-1.0.6/debian/changelog  2016-05-24 15:37:36.0 +0200
+++ new/xreader-1.0.7/debian/changelog  2016-06-20 12:54:32.0 +0200
@@ -1,3 +1,13 @@
+xreader (1.0.7) sarah; urgency=medium
+
+  [ Moser Peter ]
+  * Fixing BUG #7 (v2): Presentation and Zoom buttons greyed out, if no 
document has been loaded.
+
+  [ Clement Lefebvre ]
+  * Show program name in about dialog
+
+ -- Clement Lefebvre   Mon, 20 Jun 2016 11:53:29 +0100
+
 xreader (1.0.6) sarah; urgency=medium
 
   * Updated translations
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xreader-1.0.6/shell/ev-window.c 
new/xreader-1.0.7/shell/ev-window.c
--- old/xreader-1.0.6/shell/ev-window.c 2016-05-24 15:37:36.0 +0200
+++ new/xreader-1.0.7/shell/ev-window.c 2016-06-20 12:54:32.0 +0200
@@ -450,6 +450,10 @@
ev_window_set_action_sensitive (ev_window, "ViewAutoscroll", has_pages 
&& !(document->iswebdocument));
ev_window_set_action_sensitive (ev_window, "ViewInvertedColors", 
has_pages);
ev_window_set_action_sensitive (ev_window, "ViewExpandWindow", 
has_pages && !(document->iswebdocument));
+   ev_window_set_action_sensitive (ev_window, "ViewZoomIn", has_pages && 
!(document->iswebdocument));
+   ev_window_set_action_sensitive (ev_window, "ViewZoomOut", has_pages && 
!(document->iswebdocument));
+   ev_window_set_action_sensitive (ev_window, "ViewPresentation", 
has_pages && !(document->iswebdocument));
+
 
/* Bookmarks menu */
ev_window_set_action_sensitive (ev_window, "BookmarksAdd",
@@ -3897,6 +3901,8 @@
 ev_window_update_fullscreen_action (EvWindow *window)
 {
GtkAction *action;
+   EvDocument *document = window->priv->document;
+   gboolean has_pages = FALSE;
 
action = gtk_action_group_get_action (window->priv->action_group, 
"ViewFullscreen");
g_signal_handlers_block_by_func

commit libakode for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package libakode for openSUSE:Factory 
checked in at 2016-06-23 13:36:57

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


Package is "libakode"

Changes:

--- /work/SRC/openSUSE:Factory/libakode/libakode.changes2016-05-25 
21:28:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.libakode.new/libakode.changes   2016-06-23 
13:37:03.0 +0200
@@ -1,0 +2,6 @@
+Tue Jun 21 07:43:34 UTC 2016 - i...@marguerite.su
+
+- add patch: libakode-2.0.2-gcc6.patch
+  * template parameters can't be the same name
+
+---

New:

  libakode-2.0.2-gcc6.patch



Other differences:
--
++ libakode.spec ++
--- /var/tmp/diff_new_pack.ywC7bh/_old  2016-06-23 13:37:05.0 +0200
+++ /var/tmp/diff_new_pack.ywC7bh/_new  2016-06-23 13:37:05.0 +0200
@@ -17,51 +17,49 @@
 
 
 Name:   libakode
+Version:2.0.2
+Release:0
+Summary:A Simple Audio Back-End
+License:LGPL-2.1+
+Group:  Development/Libraries/KDE
+Url:http://www.kde.org/
+Source0:akode-%{version}.tar.bz2
+Patch1: flac-64bit.diff
+Patch2: gcc-4.3.diff
+#PATCH-FIX-UPSTREAM template parameter can't be the same name
+Patch3: libakode-2.0.2-gcc6.patch
 BuildRequires:  cdparanoia
 BuildRequires:  flac-devel
 BuildRequires:  kdelibs3-devel
 BuildRequires:  libao-devel
 BuildRequires:  libsamplerate-devel
 BuildRequires:  libtheora-devel
-Summary:A Simple Audio Back-End
-License:LGPL-2.1+
-Group:  Development/Libraries/KDE
-Version:2.0.2
-Release:0
-Url:http://www.kde.org/
-%define tar_version 2.0.2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:akode-%{tar_version}.tar.bz2
-Patch1: flac-64bit.diff
-Patch2: gcc-4.3.diff
 
 %description
 aKode is a simple audio back-end suitable for simple actions.
 
-
-
 %package devel
 Summary:a simple audio backend
 Group:  Development/Libraries/KDE
-Requires:   libakode = %version
+Requires:   libakode = %{version}
 Requires:   libstdc++-devel
 
 %description devel
 aKode is a simple audio backend suitable for simple actions.
 
-
-
 %prep
-%setup -q -n akode-%{tar_version} 
+%setup -q -n akode-%{version}
 %patch1
 %patch2
-. /etc/opt/kde3/common_options
+%patch3 -p1
+. %{_sysconfdir}/opt/kde3/common_options
 update_admin
 
 %build
-. /etc/opt/kde3/common_options
+. %{_sysconfdir}/opt/kde3/common_options
 ./configure \
-  --prefix=/usr \
+  --prefix=%{_prefix} \
   --enable-audio=$AUDIO \
   --with-kscd-cdda \
   --without-polypaudio \
@@ -74,33 +72,29 @@
   --disable-final \
   --without-ffmpeg \
   --enable-sdl \
-  --libdir=%_libdir
-make %{?jobs:-j%jobs}
+  --libdir=%{_libdir}
+make %{?_smp_mflags}
 
 %install
-. /etc/opt/kde3/common_options
-make DESTDIR=$RPM_BUILD_ROOT $INSTALL_TARGET
-
-%clean
-rm -rf ${RPM_BUILD_ROOT}
+. %{_sysconfdir}/opt/kde3/common_options
+make DESTDIR=%{buildroot} $INSTALL_TARGET
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root)
-/usr/bin/akodeplay
-%_libdir/libakode.*
-%_libdir/libakode_mpc_decoder.*
-%_libdir/libakode_src_resampler.*
-%_libdir/libakode_xiph_decoder.*
-%_libdir/libakode_alsa_sink.*
-%_libdir/libakode_jack_sink.*
+%{_bindir}/akodeplay
+%{_libdir}/libakode.*
+%{_libdir}/libakode_mpc_decoder.*
+%{_libdir}/libakode_src_resampler.*
+%{_libdir}/libakode_xiph_decoder.*
+%{_libdir}/libakode_alsa_sink.*
+%{_libdir}/libakode_jack_sink.*
 
 %files devel
 %defattr(-,root,root)
-/usr/bin/akode-config
-/usr/include/akode
+%{_bindir}/akode-config
+%{_includedir}/akode
 
 %changelog

++ libakode-2.0.2-gcc6.patch ++
Index: akode-2.0.2/akode/lib/fast_resampler.cpp
===
--- akode-2.0.2.orig/akode/lib/fast_resampler.cpp
+++ akode-2.0.2/akode/lib/fast_resampler.cpp
@@ -37,7 +37,7 @@ FastResampler::FastResampler() : speed(1
 // A fast resampling by linear interpolation
 // I assume you know binary arithmetics and convertions if you're reading this
 // T is the input/output type, Arithm defines the used arithmetic
-template class Arithm>
+template class Arithm>
 static bool _doBuffer(AudioFrame* in, AudioFrame* out, float speed, unsigned 
sample_rate)
 {
 unsigned long vt_pos_start = 0;  // virtual positions of new sample
Index: akode-2.0.2/akode/lib/crossfader.cpp
===
--- akode-2.0.2.orig/akode/lib/crossfader.cpp
+++ akode-2.0.2/akode/lib/crossfader.cpp
@@ -27,7 +27,7 @@ namespace aKode {
 

commit openwsman for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package openwsman for openSUSE:Factory 
checked in at 2016-06-23 13:36:59

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


Package is "openwsman"

Changes:

--- /work/SRC/openSUSE:Factory/openwsman/openwsman.changes  2015-12-24 
12:16:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.openwsman.new/openwsman.changes 2016-06-23 
13:37:08.0 +0200
@@ -1,0 +2,12 @@
+Mon Jun 20 13:20:46 UTC 2016 - kkae...@suse.com
+
+- update to 2.6.3
+  - Bugfixes
+- Prevent buffer overflow if digest realm too long
+- Ensure path starts with '/' in client data endpoint
+- Java bindings build fix
+- Fix SSL library, usage is not thread safe (vcrhonek)
+- Improve NetBSD and OSX builds (apjanke)
+- Install winrs with correct name and permissions
+
+---
@@ -5,0 +18,5 @@
+
+---
+Wed Dec  2 18:06:54 UTC 2015 - srinidhi...@microfocus.com
+
+- Install winrs with executable permissions

Old:

  add-shebang-to-winrs.patch
  openwsman-2.6.2.tar.bz2

New:

  openwsman-2.6.3.tar.bz2



Other differences:
--
++ openwsman.spec ++
--- /var/tmp/diff_new_pack.zgMAbN/_old  2016-06-23 13:37:09.0 +0200
+++ /var/tmp/diff_new_pack.zgMAbN/_new  2016-06-23 13:37:09.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package openwsman
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -122,7 +122,7 @@
 %endif
 
 Requires(pre):  sed coreutils grep /bin/hostname
-Version:2.6.2
+Version:2.6.3
 Release:0
 # Mandriva:
 # Release %%mkrel 1
@@ -141,7 +141,6 @@
 Source3:%{name}.SuSEfirewall2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source4:%{name}.service
-Patch2: add-shebang-to-winrs.patch
 
 %description
 Opensource Implementation of WS-Management protocol stack
@@ -325,7 +324,6 @@
 %if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} || 
0%{?fedora} || 0%{?rhel}
 %patch1 -p1
 %endif
-%patch2 -p1
 
 %build
 rm -rf build
@@ -390,10 +388,6 @@
 install -D -m 644 %{S:3} 
$RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/openwsman
 %endif
 
-# rename winrs.rb -> winrs
-mv $RPM_BUILD_ROOT%{_bindir}/winrs.rb $RPM_BUILD_ROOT%{_bindir}/winrs
-chmod 755 $RPM_BUILD_ROOT%{_bindir}/winrs
-
 %post -n libwsman3 -p /sbin/ldconfig
 
 %postun -n libwsman3

++ openwsman-2.6.2.tar.bz2 -> openwsman-2.6.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openwsman-2.6.2/CMakeLists.txt 
new/openwsman-2.6.3/CMakeLists.txt
--- old/openwsman-2.6.2/CMakeLists.txt  2015-10-06 11:06:58.0 +0200
+++ new/openwsman-2.6.3/CMakeLists.txt  2016-06-21 13:21:10.0 +0200
@@ -14,6 +14,9 @@
 if(COMMAND cmake_policy)
   cmake_policy(SET CMP0003 OLD)
   cmake_policy(SET CMP0005 OLD)
+  if ( POLICY CMP0042 )
+cmake_policy(SET CMP0042 NEW)
+  endif ( POLICY CMP0042 )
   if ( POLICY CMP0046 )
   cmake_policy(SET CMP0046 OLD)
   endif ( POLICY CMP0046 )
@@ -32,7 +35,7 @@
 
 # Package architecture
 IF ( NOT DEFINED PACKAGE_ARCHITECTURE )
- EXECUTE_PROCESS(COMMAND "/bin/uname" "-m" OUTPUT_VARIABLE UNAME_M)
+ EXECUTE_PROCESS(COMMAND "uname" "-m" OUTPUT_VARIABLE UNAME_M)
  # strip trailing newline
  STRING(REPLACE "\n" "" PACKAGE_ARCHITECTURE ${UNAME_M})
 ENDIF ( NOT DEFINED PACKAGE_ARCHITECTURE )
@@ -44,9 +47,13 @@
 IF ( DEFINED LIB )
   SET ( LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${LIB}" )
 ELSE ( DEFINED  LIB )
-  IF (CMAKE_SIZEOF_VOID_P MATCHES "8")
-SET( LIB_SUFFIX "64" )
-  ENDIF(CMAKE_SIZEOF_VOID_P MATCHES "8")
+  IF (APPLE)
+SET(LIB_SUFFIX "")
+  ELSE (APPLE)
+IF (CMAKE_SIZEOF_VOID_P MATCHES "8")
+  SET( LIB_SUFFIX "64" )
+ENDIF(CMAKE_SIZEOF_VOID_P MATCHES "8")
+  ENDIF (APPLE)
   SET ( LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" )
 ENDIF ( DEFINED  LIB )
 MESSAGE(STATUS "Libraries will be installed in ${LIB_INSTALL_DIR}" )
@@ -170,9 +177,9 @@
 
 IF( BUILD_PYTHON )
   MESSAGE(STATUS "Building Python bindings" )
-  FIND_PACKAGE(PythonLibs)
+  FIND_PACKAGE(PythonLibs 2.6 REQUIRED)
   IF (PYTHON_LIBRARY)
-FIND_PACKAGE(PythonInterp REQUIRED)
+FIND_PACKAGE(PythonInterp 2.6 REQUIRED)
 MESSAGE(STATUS "Found PythonLibs...")
 FIND_PACKAGE(PythonLinkLibs)
 IF (PYTHON_LINK_LIBS)
@@ -378,6 +385,10 @@
   SET(HAVE_ALLOCA 0)
   

commit kdelibs3 for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package kdelibs3 for openSUSE:Factory 
checked in at 2016-06-23 13:36:54

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


Package is "kdelibs3"

Changes:

--- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2015-09-08 
18:09:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes   2016-06-23 
13:36:57.0 +0200
@@ -1,0 +2,8 @@
+Mon Jun 20 16:12:43 UTC 2016 - i...@marguerite.su
+
+- add patch: kdelibs-3.5.10-gcc6.patch
+  * fix boo#985092
+  * fix narrowing conversion from int to char inside {}
+  * fix call of overloaded 'abs(unsigned int&)' is ambiguous
+
+---

New:

  kdelibs-3.5.10-gcc6.patch



Other differences:
--
++ kdelibs3.spec ++
--- /var/tmp/diff_new_pack.inf0kb/_old  2016-06-23 13:37:01.0 +0200
+++ /var/tmp/diff_new_pack.inf0kb/_new  2016-06-23 13:37:01.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kdelibs3
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -209,6 +209,7 @@
 Patch232:   kdelibs-3.5.10-cups20.patch
 Patch233:   kdelibs-3.5.10-CVE-2013-2074.patch
 Patch234:   fix-perl-no-defined-array.diff
+Patch235:   kdelibs-3.5.10-gcc6.patch
 
 %description
 This package contains kdelibs, one of the basic packages of the K
@@ -418,6 +419,7 @@
 %patch231 -p1
 %patch232 -p1
 %patch234 -p1
+%patch235 -p1
 
 # disable a debug feature
 sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp


++ kdelibs-3.5.10-gcc6.patch ++
Index: kdelibs-3.5.10/kate/part/katebuffer.cpp
===
--- kdelibs-3.5.10.orig/kate/part/katebuffer.cpp
+++ kdelibs-3.5.10/kate/part/katebuffer.cpp
@@ -20,6 +20,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include "katebuffer.h"
 #include "katebuffer.moc"
@@ -122,8 +123,8 @@ class KateFileLoader
   if ((c >= 2) && (m_codec->mibEnum() == 1000) && (m_buffer[1] == 
0x00))
   {
 // utf16LE, we need to put the decoder in LE mode
-char reverseUtf16[3] = {0xFF, 0xFE, 0x00};
-m_decoder->toUnicode(reverseUtf16, 2);
+unsigned char reverseUtf16[3] = {0xFF, 0xFE, 0x00};
+m_decoder->toUnicode((char *)reverseUtf16, 2);
   }
 
   processNull (c);
@@ -917,7 +918,7 @@ void KateBuffer::updatePreviousNotEmptyL
   } while (textLine->firstChar()==-1);
   kdDebug(13020)<<"updatePreviousNotEmptyLine: updating 
line:"<<(blk->startLine()+current_line)<foldingListArray();
-  while ( (foldingList.size()>0)  && ( 
abs(foldingList[foldingList.size()-2])==1)) {
+  while ( (foldingList.size()>0)  && ( 
std::abs(foldingList[foldingList.size()-2])==1)) {
 foldingList.resize(foldingList.size()-2,QGArray::SpeedOptim);
   }
   addIndentBasedFoldingInformation(foldingList,addindent,deindent);



commit thrift for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package thrift for openSUSE:Factory checked 
in at 2016-06-23 13:36:26

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


Package is "thrift"

Changes:

--- /work/SRC/openSUSE:Factory/thrift/thrift.changes2016-04-28 
16:57:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.thrift.new/thrift.changes   2016-06-23 
13:36:34.0 +0200
@@ -1,0 +2,5 @@
+Mon Jun 13 17:34:49 UTC 2016 - mplus...@suse.com
+
+- Fix a typo in changelog
+
+---
@@ -4 +9 @@
-- Update to 0.9.4
+- Update to 0.9.3



Other differences:
--





commit containerd for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package containerd for openSUSE:Factory 
checked in at 2016-06-23 13:36:06

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


Package is "containerd"

Changes:

--- /work/SRC/openSUSE:Factory/containerd/containerd.changes2016-05-04 
08:20:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.containerd.new/containerd.changes   
2016-06-23 13:36:06.0 +0200
@@ -1,0 +2,6 @@
+Fri Jun 17 14:42:43 UTC 2016 - asa...@suse.de
+
+* Update to containerd v0.2.2.
+* Includes updates to the out-of-tree patches.
+
+---

Old:

  containerd-0.2.1.tar.xz

New:

  containerd-0.2.2.tar.xz



Other differences:
--
++ containerd.spec ++
--- /var/tmp/diff_new_pack.m7Lenu/_old  2016-06-23 13:36:07.0 +0200
+++ /var/tmp/diff_new_pack.m7Lenu/_new  2016-06-23 13:36:07.0 +0200
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define go_arches %ix86 x86_64 aarch64
 
 %ifarch %go_arches
@@ -25,15 +26,15 @@
 %define GO_BUILD_FLAGS "-gccgoflags=-Wl,--add-needed -Wl,--no-as-needed 
-static-libgo -ldl"
 %endif
 
-%define version_unconverted 0.2.1
+%define version_unconverted 0.2.2
 
 Name:   containerd
-Version:0.2.1
+Version:0.2.2
 Release:0
-License:Apache-2.0
 Summary:Standalone OCI Container Daemon
-Url:https://containerd.tools
+License:Apache-2.0
 Group:  System/Management
+Url:https://containerd.tools
 Source: %{name}-%{version}.tar.xz
 Source1:%{name}.service
 Source2:%{name}.socket
@@ -134,3 +135,5 @@
 
 %files ctr
 %{_sbindir}/%{name}-%{client}
+
+%changelog

++ _service ++
--- /var/tmp/diff_new_pack.m7Lenu/_old  2016-06-23 13:36:08.0 +0200
+++ /var/tmp/diff_new_pack.m7Lenu/_new  2016-06-23 13:36:08.0 +0200
@@ -3,8 +3,8 @@
 https://github.com/docker/containerd.git
 git
 containerd
-0.2.1
-v0.2.1
+0.2.2
+v0.2.2
 .git
   
   

++ containerd-0.2.1.tar.xz -> containerd-0.2.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/containerd-0.2.1/api/grpc/server/server_linux.go 
new/containerd-0.2.2/api/grpc/server/server_linux.go
--- old/containerd-0.2.1/api/grpc/server/server_linux.go2016-04-29 
10:59:28.0 +0200
+++ new/containerd-0.2.2/api/grpc/server/server_linux.go2016-06-17 
16:39:42.0 +0200
@@ -142,6 +142,7 @@
Failcnt:  memSt.KernelUsage.Failcnt,
Limit:memSt.KernelUsage.Limit,
},
+   Stats: memSt.Stats,
}
blkSt := lcSt.CgroupStats.BlkioStats
pbSt.CgroupStats.BlkioStats = {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/containerd-0.2.1/version.go 
new/containerd-0.2.2/version.go
--- old/containerd-0.2.1/version.go 2016-04-29 10:59:28.0 +0200
+++ new/containerd-0.2.2/version.go 2016-06-17 16:39:42.0 +0200
@@ -1,5 +1,5 @@
 package containerd
 
-const Version = "0.1.0"
+const Version = "0.2.2"
 
 var GitCommit = ""

++ socket-activation-01-vendor.patch ++
--- /var/tmp/diff_new_pack.m7Lenu/_old  2016-06-23 13:36:08.0 +0200
+++ /var/tmp/diff_new_pack.m7Lenu/_new  2016-06-23 13:36:08.0 +0200
@@ -79,11 +79,11 @@
  create mode 100644 vendor/src/golang.org/x/net/proxy/proxy.go
  create mode 100644 vendor/src/golang.org/x/net/proxy/socks5.go
 
-diff --git a/hack/vendor.sh b/hack/vendor.sh
-index 6848552..31c7df2 100755
 a/hack/vendor.sh
-+++ b/hack/vendor.sh
-@@ -9,7 +9,7 @@ clone git github.com/cloudfoundry/gosigar 
3ed7c74352dae6dc00bdc8c74045375352e3ec
+Index: containerd-0.2.2/hack/vendor.sh
+===
+--- containerd-0.2.2.orig/hack/vendor.sh
 containerd-0.2.2/hack/vendor.sh
+@@ -9,7 +9,7 @@ clone git github.com/cloudfoundry/gosiga
  clone git github.com/codegangsta/cli 9fec0fad02befc9209347cc6d620e68e1b45f74d
  clone git github.com/coreos/go-systemd 
7b2428fec40033549c68f54e26e89e7ca9a9ce31
  clone git github.com/cyberdelia/go-metrics-graphite 
7e54b5c2aa6eaff4286c44129c3def899dff528c
@@ -92,7 +92,7 @@
  clone git github.com/docker/go-units 5d2041e26a699eaca682e2ea41c8f891e1060444
  clone git github.com/godbus/dbus e2cf28118e66a6a63db46cf6088a35d2054d3bb0
  clone git github.com/golang/glog 23def4e6c14b4da8ac2ed8007337bc5eb5007998
-@@ -28,4 +28,8 @@ clone git github.com/seccomp/libseccomp-golang 

commit mksusecd for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package mksusecd for openSUSE:Factory 
checked in at 2016-06-23 13:36:11

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


Package is "mksusecd"

Changes:

--- /work/SRC/openSUSE:Factory/mksusecd/mksusecd.changes2016-05-11 
16:38:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.mksusecd.new/mksusecd.changes   2016-06-23 
13:36:13.0 +0200
@@ -1,0 +2,6 @@
+Mon Jun 20 15:05:30 UTC 2016 - snw...@suse.com
+
+- create missing 'content' file
+- 1.39
+
+---

Old:

  mksusecd-1.38.tar.xz

New:

  mksusecd-1.39.tar.xz



Other differences:
--
++ mksusecd.spec ++
--- /var/tmp/diff_new_pack.i0lpJf/_old  2016-06-23 13:36:14.0 +0200
+++ /var/tmp/diff_new_pack.i0lpJf/_new  2016-06-23 13:36:14.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   mksusecd
-Version:1.38
+Version:1.39
 Release:0
 Summary:Create SUSE Linux installation ISOs
 License:GPL-3.0+

++ mksusecd-1.38.tar.xz -> mksusecd-1.39.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.38/VERSION new/mksusecd-1.39/VERSION
--- old/mksusecd-1.38/VERSION   2016-05-10 17:10:44.0 +0200
+++ new/mksusecd-1.39/VERSION   2016-06-20 17:04:52.0 +0200
@@ -1 +1 @@
-1.38
+1.39
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.38/changelog new/mksusecd-1.39/changelog
--- old/mksusecd-1.38/changelog 2016-05-10 17:10:44.0 +0200
+++ new/mksusecd-1.39/changelog 2016-06-20 17:04:52.0 +0200
@@ -1,3 +1,6 @@
+2016-06-20:1.39
+   - create missing 'content' file
+
 2016-05-10:1.38
- adjust list of specially handled initrd modules
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mksusecd-1.38/mksusecd new/mksusecd-1.39/mksusecd
--- old/mksusecd-1.38/mksusecd  2016-05-10 17:10:44.0 +0200
+++ new/mksusecd-1.39/mksusecd  2016-06-20 17:04:52.0 +0200
@@ -144,6 +144,8 @@
 sub fname;
 sub analyze_boot;
 sub build_todo;
+sub new_file;
+sub copy_or_new_file;
 sub copy_file;
 sub prepare_mkisofs;
 sub build_filelist;
@@ -850,6 +852,50 @@
 
 
 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# new_file(fname)
+#
+# Create a new empty file with name fname.
+#
+# Return full path to fname.
+#
+sub new_file
+{
+  my $fname = $_[0];
+  my $new_path = "$tmp_new/$fname";
+
+  if($fname =~ m#(.+)/([^/]+)#) {
+system "mkdir -p '$tmp_new/$1'";
+  }
+
+  if(open my $x, ">$new_path") { close $x }
+
+  # update file location database
+  $files->{$fname} = $tmp_new;
+
+  return $new_path;
+}
+
+
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# copy_or_new_file(fname)
+#
+# Create a writable copy of fname or a new empty file if fname does not exist.
+#
+# Return full path to fname.
+#
+sub copy_or_new_file
+{
+  return copy_file($_[0]) || new_file($_[0]);
+}
+
+
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# copy_file(fname)
+#
+# Create a writable copy of fname.
+#
+# Return full path to fname or undef if it does not exist.
+#
 sub copy_file
 {
   my $f = fname($_[0]);
@@ -2272,11 +2318,10 @@
 
   my $content_file = fname "content";
 
-  return unless defined $content_file;
-
   my $cont;
 
   # first, read file
+  # ($content_file may be undefined - which is ok)
   if(open(my $f, $content_file)) {
 while(<$f>) {
   next if /^\s*$/;
@@ -2329,7 +2374,7 @@
 
   # if something changed, write new file
   if($changed) {
-my $n = copy_file "content";
+my $n = copy_or_new_file "content";
 
 if($n) {
   if(open my $f, ">", $n) {
@@ -2464,8 +2509,7 @@
   my $c = copy_file "content";
   return if !defined $c;
 
-  my $k = copy_file "content.key";
-  return if !defined $k;
+  my $k = copy_or_new_file "content.key";
 
   copy_file "content.asc";
 




commit openCryptoki for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package openCryptoki for openSUSE:Factory 
checked in at 2016-06-23 13:36:32

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


Package is "openCryptoki"

Changes:

--- /work/SRC/openSUSE:Factory/openCryptoki/openCryptoki.changes
2016-06-09 16:16:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.openCryptoki.new/openCryptoki.changes   
2016-06-23 13:36:37.0 +0200
@@ -1,0 +2,7 @@
+Mon Jun 13 20:17:04 UTC 2016 - mp...@suse.com
+
+- Added ocki-3.5-sanity-checking.patch (bsc#983496).
+- Added %dir entry for %{_localstatedir}/log/opencryptoki/
+  (bsc#983990)
+
+---

New:

  ocki-3.5-sanity-checking.patch



Other differences:
--
++ openCryptoki.spec ++
--- /var/tmp/diff_new_pack.WFMNXC/_old  2016-06-23 13:36:39.0 +0200
+++ /var/tmp/diff_new_pack.WFMNXC/_new  2016-06-23 13:36:39.0 +0200
@@ -63,6 +63,7 @@
 # Patch 1 is needed because group pkcs11 doesn't exist in the build environment
 # and because we don't want(?) various file and directory permissions to be 
0700.
 Patch1: ocki-3.1-remove-make-install-chgrp.patch
+Patch2: ocki-3.5-sanity-checking.patch
 Url:https://sourceforge.net/projects/opencryptoki/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: /usr/sbin/groupadd /usr/bin/id /usr/sbin/usermod /bin/sed
@@ -141,6 +142,7 @@
 %prep
 %setup -q -n %{oc_cvs_tag}
 %patch1 -p1
+%patch2 -p1
 cp %{SOURCE2} .
 
 %build
@@ -289,6 +291,7 @@
 %dir %attr(770,root,pkcs11) %{_localstatedir}/lib/opencryptoki/lite
 %dir %attr(770,root,pkcs11) %{_localstatedir}/lib/opencryptoki/lite/TOK_OBJ
 %endif
+%dir %attr(770,root,pkcs11) %{_localstatedir}/log/opencryptoki/
 %{_mandir}/man*/*
 
 %files devel

++ ocki-3.5-sanity-checking.patch ++
 674 lines (skipped)




commit ndctl for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package ndctl for openSUSE:Factory checked 
in at 2016-06-23 13:36:46

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


Package is "ndctl"

Changes:

--- /work/SRC/openSUSE:Factory/ndctl/ndctl.changes  2016-05-31 
12:24:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.ndctl.new/ndctl.changes 2016-06-23 
13:36:46.0 +0200
@@ -1,0 +2,5 @@
+Tue Jun 21 09:22:36 UTC 2016 - jthumsh...@suse.com
+
+- Fix rpmbuild failure on factory 
+
+---



Other differences:
--
++ ndctl.spec ++
--- /var/tmp/diff_new_pack.BEfIa1/_old  2016-06-23 13:36:47.0 +0200
+++ /var/tmp/diff_new_pack.BEfIa1/_new  2016-06-23 13:36:47.0 +0200
@@ -99,8 +99,9 @@
 %doc  licenses/GPLv2 licenses/BSD-MIT licenses/CC0
 %{_bindir}/ndctl
 %{_mandir}/man1/*
-%dir %{_datarootdir}/bash-completion/completions/
-%{_datarootdir}/bash-completion/completions/ndctl
+%dir %{_datadir}/bash-completion/
+%dir %{_datadir}/bash-completion/completions/
+%{_datadir}/bash-completion/completions/ndctl
 
 %files -n %lname
 %defattr(-,root,root)




commit qbittorrent for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package qbittorrent for openSUSE:Factory 
checked in at 2016-06-23 13:36:21

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


Package is "qbittorrent"

Changes:

--- /work/SRC/openSUSE:Factory/qbittorrent/qbittorrent.changes  2016-06-19 
12:53:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.qbittorrent.new/qbittorrent.changes 
2016-06-23 13:36:27.0 +0200
@@ -1,0 +2,128 @@
+Mon Jun 20 06:54:00 UTC 2016 - aloi...@gmx.com
+
+- Update to version 3.3.5
+  * FEATURE: Implement Torrent Management Mode(TMM) (glassez)
+  * FEATURE: New cookies management dialog and various related 
+fixes (glassez)
+  * FEATURE: Use unique temp directories 
+(temp_path/). Closes #5154. (glassez)
+  * FEATURE: Display notifications when a torrent is added. 
+Closes #334 and #915. (sledgehammer999)
+  * FEATURE: Sort labels with natural sort algorithm in the 
+right-click menu. Closes #3919. (Chocobo1)
+  * FEATURE: Add option to automatically remove .torrent files 
+upon adding (Eugene Shalygin)
+  * FEATURE: Add option to bind directly to an IP instead of 
+using a network Interface (Sjoerd van der Berg, 
+sledgehammer999)
+  * FEATURE: Detailed tooltips on the progress and 
+availability bars in the General button of each torrent. 
+(Eugene Shalygin)
+  * FEATURE: Let user able to specifiy a filter when choosing 
+an IP filter file (Chocobo1)
+  * FEATURE: Improve usability of "Run External Program". 
+Users can write (platform dependent) shell scripts now. 
+(Chocobo1)
+  * PERFORMANCE: Optimize drawing in speed graph (Anton 
+Lashkov, Chocobo1)
+  * BUGFIX: Fix memory leak. (sledgehammer999)
+  * BUGFIX: Fix resizing bug in "add torrent dialog". Closes 
+#5036. (Chocobo1)
+  * BUGFIX: Fix qBittorrent doesn't exit immediately when "all 
+donwloads are done -> exit" option enabled. (glassez, Chocobo1)
+  * BUGFIX: Display the filepath when a torrent fails to load. 
+Closes #100 and #805. (sledgehammer999)
+  * BUGFIX: Fix Add tracker dialog empty trackers (ngosang)
+  * BUGFIX: Fix Add tracker dialog URL download (ngosang)
+  * BUGFIX: Fix torrent adding with existing data (glassez)
+  * BUGFIX: Try to find incomplete files for new torrent 
+(glassez)
+  * BUGFIX: Fix rechecking after torrent is finished (glassez)
+  * BUGFIX: Fix duplicate network interfaces. Closes #5131 
+(ngosang)
+  * BUGFIX: Fix .!qB extension is added when disabled (glassez)
+  * BUGFIX: Fix "IP Filtering - Apply to trackers" wasn't 
+being applied. Closes #5217. (Chocobo1)
+  * BUGFIX: Don't resize the Country column needlessly 
+(thalieht)
+  * BUGFIX: Fix crashing when exiting the program while the 
+Options window was showing. Closes #4871, #5049. (Chocobo1)
+  * BUGFIX: Fix parsing of eMule .DAT filters. Closes #5281. 
+(thalieht, sledgehammer999)
+  * WEBUI: Implement in setting/removing/showing categories. 
+(buinsky)
+  * WEBUI: Add 'Added on' column in Webui. Closes 
+#5145,#1092,#738 (Ibrahim Tachijian)
+  * WEBUI: Add command to get the logs (pmzqla)
+  * WEBUI: Expose Add trackers feature (pmzqla)
+  * WEBUI: Bump API_VERSION and API_VERSION_MIN to 10. 
+(sledgehammer999)
+  * SEARCH: Implement search filters in the proxy model. 
+(Eugene Shalygin)
+  * SEARCH: Optimize widgets inside of the search tab (Eugene 
+Shalygin)
+  * SEARCH: Remove duplicated code from search tab and widget 
+(Eugene Shalygin)
+  * SEARCH: Use nova2dl.py script instead of DownloadManager. 
+Closes #5026. (glassez)
+  * SEARCH: Various UI cleanups and optimizations. (Chocobo1, 
+ngosang)
+  * SEARCH: Fix Torrentz, Mininova, LegitTorrents, PirateBay 
+plugins (ngosang)
+  * SEARCH: Fix toolbar resizing when m_searchFilter 
+appears/disappears. Closes #5120. (Chocobo1)
+  * SEARCH: Use QPalette::LinkVisited color for downloaded 
+items in search results (Eugene Shalygin)
+  * SEARCH: Update Python version requirements (min 2.7.9 / 
+3.3.0) (ngosang)
+  * SEARCH: Remove filters from Torrentreactor, BTDigg and 
+Demonoid. It is done in the GUI now. (ngosang)
+  * RSS: default refresh interval to 30 mins (botmtl)
+  * COSMETIC: Improve TransferListDelegate::sizeHint (Chocobo1)
+  * COSMETIC: Fix long text clipping. Closes #5091. (Chocobo1)
+  * COSMETIC: Minor change in Stats dialog (ngosang)
+  * COSMETIC: Fix Update all button height in RSS tab (ngosang)
+  * COSMETIC: Disable `comboHideZero` when `checkHideZero` is 
+unchecked. (Chocobo1)
+  * COSMETIC: Disable `checkLimituTPConnections` when 
+`checkuTP` is unchecked. (Chocobo1)
+  * COSMETIC: Enable word wrap for "Run external program" help 
+text (Chocobo1)
+  * COSMETIC: Fix mutually 

commit libjaylink for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package libjaylink for openSUSE:Factory 
checked in at 2016-06-23 13:36:09

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


Package is "libjaylink"

Changes:

--- /work/SRC/openSUSE:Factory/libjaylink/libjaylink.changes2016-06-09 
16:06:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.libjaylink.new/libjaylink.changes   
2016-06-23 13:36:11.0 +0200
@@ -1,0 +2,5 @@
+Sun Jun 19 20:09:09 UTC 2016 - jeng...@inai.de
+
+- Reset RPM groups
+
+---



Other differences:
--
++ libjaylink.spec ++
--- /var/tmp/diff_new_pack.LsapsL/_old  2016-06-23 13:36:11.0 +0200
+++ /var/tmp/diff_new_pack.LsapsL/_new  2016-06-23 13:36:11.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libjaylink
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,9 +28,9 @@
 BuildRequires:  automake
 BuildRequires:  libtool
 BuildRequires:  pkg-config
+BuildRequires:  xz
 BuildRequires:  pkgconfig(libusb-1.0)
 BuildRequires:  pkgconfig(udev)
-BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(post): udev
 Requires(postun): udev
@@ -42,6 +42,7 @@
 
 %package -n libjaylink0
 Summary:USB interface library for J-Link
+Group:  System/Libraries
 Recommends: libjaylink
 
 %description -n libjaylink0
@@ -49,31 +50,27 @@
 
 %package devel
 Summary:USB interface library for J-Link -- development files
+Group:  Development/Libraries/C and C++
 Requires:   libjaylink0 = %{version}
 
 %description devel
 Library for accessing Segger J-Link USB devices.
 
-This sub-package contains development files.
+This sub-package contains the development files.
 
 %prep
 %setup -q
 
 %build
 ./autogen.sh
-./configure \
-   --prefix=%{_prefix} \
-   --includedir=%{_includedir} \
-   --libdir=%{_libdir} \
-   --disable-static \
-   CFLAGS="${RPM_OPT_FLAGS}"
+%configure --disable-static
 make %{?_smp_mflags}
 
 %install
 make %{?_smp_mflags} install DESTDIR=%{buildroot}
 rm -f %{buildroot}%{_libdir}/libjaylink.la
 mkdir -p %{buildroot}%{_udevdir}/rules.d
-cat contrib/99-libjaylink.rules | sed -e 's/GROUP="plugdev"/GROUP="users"/' > 
%{buildroot}%{_udevdir}/rules.d/99-libjaylink.rules
+sed -e 's/GROUP="plugdev"/GROUP="users"/' %{buildroot}%{_udevdir}/rules.d/99-libjaylink.rules
 
 %post
 %udev_rules_update




commit libressl for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package libressl for openSUSE:Factory 
checked in at 2016-06-23 13:36:28

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


Package is "libressl"

Changes:

--- /work/SRC/openSUSE:Factory/libressl/libressl.changes2016-06-13 
21:55:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.libressl.new/libressl.changes   2016-06-23 
13:36:35.0 +0200
@@ -1,0 +2,8 @@
+Fri Jun 10 23:10:20 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 2.4.1
+* Correct a problem that prevents the DSA signing algorithm from
+  running in constant time even if the flag BN_FLG_CONSTTIME is
+  set.
+
+---

Old:

  libressl-2.4.0.tar.gz
  libressl-2.4.0.tar.gz.asc

New:

  libressl-2.4.1.tar.gz
  libressl-2.4.1.tar.gz.asc



Other differences:
--
++ libressl.spec ++
--- /var/tmp/diff_new_pack.Qye1eU/_old  2016-06-23 13:36:37.0 +0200
+++ /var/tmp/diff_new_pack.Qye1eU/_new  2016-06-23 13:36:37.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libressl
-Version:2.4.0
+Version:2.4.1
 Release:0
 Summary:An SSL/TLS protocol implementation
 License:OpenSSL

++ libressl-2.4.0.tar.gz -> libressl-2.4.1.tar.gz ++
 1929 lines of diff (skipped)




commit sway for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package sway for openSUSE:Factory checked in 
at 2016-06-23 13:36:39

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


Package is "sway"

Changes:

--- /work/SRC/openSUSE:Factory/sway/sway.changes2016-06-02 
09:38:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.sway.new/sway.changes   2016-06-23 
13:36:41.0 +0200
@@ -1,0 +2,39 @@
+Mon Jun 20 20:03:32 UTC 2016 - tc...@suse.com
+
+- bump to 0.8
+   New Features
+You can clear the password buffer in swaylock with ESC or C-u
+swaylock now supports the --no-unlock-indicator option
+Floating views now have sane (and configurable) minimum and
+  maximum sizes
+Escaping line breaks in your configuration file is now supported
+Using exec to launch applications now opens their windows on the
+  workspace they were exec-d on (thanks @zandrmartin!) - note: does
+  not presently work with x clients
+
+   Bugs Fixed
+When hotplugging an output, workspace assignment rules are
+  re-enforced
+Spaces in quoted output command arguments now behave properly
+Changing focus into an output with a fullscreen view now behaves
+  correctly
+A number of IPC-related memory leaks were closed
+A segfault was fixed involving an edge case of include with *
+Your wallpaper is now updated on config file reload
+hide_edge_borders with smart_gaps enabled now behaves correctly
+
+   Changes
+Creating a variable via set without the leading $ is automatically
+  corrected to include it
+When hotplugging outputs, workspaces are now sorted correctly and
+  maintain their sort order on replug
+The documentation was corrected to remove the (currently
+  unimplemented) left/right bar placement options
+Missing layout modes (stacking and tabbed) were documented in
+  sway(5)
+The assign command was documented in sway(5)
+Several other small improvements to the man pages were made
+
+- drop 0001-Match-definition-with-declaration.patch
+
+---

Old:

  0.7.tar.gz
  0001-Match-definition-with-declaration.patch
  sway-0.7.tar.gz.sig

New:

  0.8.tar.gz
  sway-0.8.tar.gz.sig



Other differences:
--
++ sway.spec ++
--- /var/tmp/diff_new_pack.m4NAIM/_old  2016-06-23 13:36:42.0 +0200
+++ /var/tmp/diff_new_pack.m4NAIM/_new  2016-06-23 13:36:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   sway
-Version:0.7
+Version:0.8
 Release:0
 Summary:Window manager for Wayland compatible with i3
 License:MIT
@@ -26,8 +26,6 @@
 Source0:https://github.com/SirCmpwn/sway/archive/%{version}.tar.gz
 Source1:
https://github.com/SirCmpwn/sway/releases/download/%{version}/%{name}-%{version}.tar.gz.sig
 Source2:sway.keyring
-# PATCH-FIX-UPSTREAM - already accepted by upstream
-Patch0: 0001-Match-definition-with-declaration.patch
 BuildRequires:  asciidoc
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
@@ -53,7 +51,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %cmake \

++ 0.7.tar.gz -> 0.8.tar.gz ++
/work/SRC/openSUSE:Factory/sway/0.7.tar.gz 
/work/SRC/openSUSE:Factory/.sway.new/0.8.tar.gz differ: char 14, line 1





commit syzkaller for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package syzkaller for openSUSE:Factory 
checked in at 2016-06-23 13:36:08

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


Package is "syzkaller"

Changes:

--- /work/SRC/openSUSE:Factory/syzkaller/syzkaller.changes  2016-06-14 
23:07:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.syzkaller.new/syzkaller.changes 2016-06-23 
13:36:08.0 +0200
@@ -1,0 +2,11 @@
+Mon Jun 20 12:22:30 UTC 2016 - jsl...@suse.com
+
+- Update to version 0.0+git.20160615:
+  * Use readelf to obtain the upper 32 bits of addresses returned by kcov.
+  * Update README.md
+  * sys: support getsockopt for sctp
+  * sys: support kcm and netrom
+  * sys: update generated files
+  * stress: fix "assignment to entry in nil map" panic
+
+---

Old:

  syzkaller-0.0+git.20160606.tar.xz

New:

  syzkaller-0.0+git.20160615.tar.xz



Other differences:
--
++ syzkaller.spec ++
--- /var/tmp/diff_new_pack.eyob50/_old  2016-06-23 13:36:10.0 +0200
+++ /var/tmp/diff_new_pack.eyob50/_new  2016-06-23 13:36:10.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define version_unconverted 0.0+git.20160606
+%define version_unconverted 0.0+git.20160615
 Name:   syzkaller
-Version:0.0+git.20160606
+Version:0.0+git.20160615
 Release:0
 Summary:Distributed, unsupervised, coverage-guided Linux syscall fuzzer
 License:Apache-2.0
@@ -32,7 +32,7 @@
 # for -fsanitize-coverage
 Recommends: gcc6
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Exclusivearch:  x86_64 aarch64 ppc64le
+ExclusiveArch:  x86_64 aarch64 ppc64le
 
 %description
 syzkaller is a distributed, unsupervised, coverage-guided Linux syscall fuzzer.

++ syzkaller-0.0+git.20160606.tar.xz -> syzkaller-0.0+git.20160615.tar.xz 
++
 1849 lines of diff (skipped)




commit lshw for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package lshw for openSUSE:Factory checked in 
at 2016-06-23 13:36:35

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


Package is "lshw"

Changes:

--- /work/SRC/openSUSE:Factory/lshw/lshw.changes2016-04-30 
23:31:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.lshw.new/lshw.changes   2016-06-23 
13:36:39.0 +0200
@@ -1,0 +2,9 @@
+Mon Jun 20 11:25:53 UTC 2016 - mplus...@suse.com
+
+- Small spec file cleanup
+- Do not ship pci/usb/oter id's as they are provided by other
+  packages as well
+- Disable parallel building as it seems to cause random linking
+  failures (boo#985111)
+
+---



Other differences:
--
++ lshw.spec ++
--- /var/tmp/diff_new_pack.E8B0Fa/_old  2016-06-23 13:36:40.0 +0200
+++ /var/tmp/diff_new_pack.E8B0Fa/_new  2016-06-23 13:36:40.0 +0200
@@ -30,7 +30,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libpng-devel
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gail) >= 2.4.0
 BuildRequires:  pkgconfig(gdk-2.0) >= 2.4.0
@@ -88,20 +88,20 @@
 %setup -q
 
 %build
-make %{?_smp_mflags} \
+make \
 PREFIX="%{_prefix}" \
 SBINDIR="%{_sbindir}" \
 MANDIR="%{_mandir}" \
 DATADIR="%{_datadir}" \
 CXX="g++" \
 CC="gcc" \
-RPM_OPT_FLAGS="%{optflags}" \
+  RPM_OPT_FLAGS="%{optflags} -fno-strict-aliasing" \
 STRIP=touch \
-all \
-gui
+  all gui
 
 %install
-make  %{?_smp_mflags} \
+make \
+  %{?_smp_mflags} \
 DESTDIR=%{buildroot} \
 PREFIX="%{_prefix}" \
 SBINDIR="%{_sbindir}" \
@@ -110,8 +110,7 @@
 CXX="g++" \
 CC="gcc" \
 OPTFLAGS="%{optflags}" \
-install \
-install-gui
+  install install-gui
 
 install -d "%{buildroot}%{_datadir}/applications"
 sed 's,@@EXEC@@,%{_sbindir}/gtk-lshw,g' < "%{SOURCE1}" \
@@ -120,6 +119,11 @@
 install -D -m 0644 "%{SOURCE2}" "%{buildroot}%{_datadir}/pixmaps/%{name}.png"
 
 %suse_update_desktop_file -r "%{name}" System HardwareSettings
+# All of following are shipped by other packages as well
+rm -f %{buildroot}%{_datadir}/%{name}/pci.ids
+rm -f %{buildroot}%{_datadir}/%{name}/usb.ids
+rm -f %{buildroot}%{_datadir}/%{name}/oui.txt
+rm -f %{buildroot}%{_datadir}/%{name}/manuf.txt
 
 %find_lang lshw
 
@@ -136,8 +140,6 @@
 %doc README.md COPYING docs/TODO docs/Changelog docs/lshw.xsd
 %attr(0755,root,root) %{_sbindir}/lshw
 %dir %{_datadir}/lshw
-%{_datadir}/lshw/*.txt
-%{_datadir}/lshw/*.ids
 %{_mandir}/man1/lshw.1%{ext_man}
 
 %files gui





commit cyrus-imapd for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package cyrus-imapd for openSUSE:Factory 
checked in at 2016-06-23 13:35:56

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


Package is "cyrus-imapd"

Changes:

--- /work/SRC/openSUSE:Factory/cyrus-imapd/cyrus-imapd.changes  2015-11-17 
14:22:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.cyrus-imapd.new/cyrus-imapd.changes 
2016-06-23 13:35:58.0 +0200
@@ -1,0 +2,14 @@
+Fri May 27 12:28:46 UTC 2016 - tchva...@suse.com
+
+- Try to cleanup with spec-cleaner
+- Remove exit 0 in pre that stopped execution of the rest of the code
+- Update pre/post requires to be acutally correct
+- Disable stict-aliasing to avoid some problems
+
+---
+Mon Dec 21 18:01:23 UTC 2015 - a...@ajaissle.de
+
+- Add cyrus-imapd-2.4.18-D19-Outlook_2013_XLIST.patch to add 
+  Outlook 2013-compatible XLIST behaviour.
+
+---

New:

  cyrus-imapd-2.4.18-D19-Outlook_2013_XLIST.patch



Other differences:
--
++ cyrus-imapd.spec ++
--- /var/tmp/diff_new_pack.Y1Bzvj/_old  2016-06-23 13:36:00.0 +0200
+++ /var/tmp/diff_new_pack.Y1Bzvj/_new  2016-06-23 13:36:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package cyrus-imapd
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,35 +19,28 @@
 %global cyrus_user cyrus
 %global cyrus_groupmail
 %global cyrus_uid  96
-
 %if 0%{?suse_version} >= 1220
 # Systemd support not fully integrated, yet
 #%%global with_systemd 1
 %global with_systemd 0
 %endif
-
 %if 0%{?with_systemd}
 %global _servicename   cyrus-imapd
 %else
 %global _servicename   cyrus
 %endif
-
 Name:   cyrus-imapd
 Version:2.4.18
 Release:0
 Summary:The Cyrus IMAP and POP Mail Server
 License:BSD-3-Clause
 Group:  Productivity/Networking/Email/Servers
-
 Url:http://www.cyrusimap.org
-
 # Upstream sources
 Source0:http://cyrusimap.org/releases/%{name}-%{version}.tar.gz
 Source1:http://ftp.andrew.cmu.edu/pub/mibs/cmu/cmu.mib
-
 # Distribution specific sources
 Source10:   cyrus-imapd-rc-2.tar.gz
-
 # PATCH-FEATURE-UPSTREAM -- Add support for Dynamic Relay Authorization Control
 Patch0: cyrus-imapd-2.4.17_drac_auth.patch
 # PATCH-FEATURE-UPSTREAM -- Autocreate INBOX folders // included in 2.5
@@ -70,7 +63,9 @@
 Patch29:cyrus-imapd-2.4.18-CVE-2015-8077.patch
 # PATCH-FIX-UPSTREAM -- Fix for CVE-2015-8078
 Patch30:cyrus-imapd-2.4.18-CVE-2015-8078.patch
-
+# PATCH-FIX-UPSTREAM -- Outlook 2013-compatible XLIST behaviour
+Patch31:cyrus-imapd-2.4.18-D19-Outlook_2013_XLIST.patch
+BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  bison
 BuildRequires:  cyrus-sasl-devel
@@ -79,6 +74,7 @@
 BuildRequires:  ed
 BuildRequires:  flex
 BuildRequires:  krb5-devel
+BuildRequires:  libtool
 BuildRequires:  net-snmp-devel
 BuildRequires:  openldap2-devel
 BuildRequires:  openslp-devel
@@ -86,81 +82,27 @@
 BuildRequires:  opie
 BuildRequires:  perl-Digest-SHA1
 BuildRequires:  pwdutils
-%if 0%{?with_systemd}
-BuildRequires:  systemd
-%endif
 BuildRequires:  tcpd-devel
 BuildRequires:  zlib
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
-%if 0%{?with_systemd}
-%{systemd_requires}
-%else
-Requires(pre):  %{insserv_prereq}
-%endif
-Requires(pre):  /usr/sbin/useradd /usr/sbin/usermod %{fillup_prereq} /bin/sed
-Requires(pre):  /bin/awk /bin/grep /bin/cat /usr/bin/find /usr/bin/db_verify 
sh-utils
-Requires(pre):  aaa_base fileutils cyrus-sasl netcfg /usr/bin/strings pwdutils
-
 Requires:   perl-Cyrus-IMAP = %{version}
 Requires:   perl-Cyrus-SIEVE-managesieve = %{version}
-
+Requires(post):  cyrus-sasl
+Requires(post):  fileutils
+Requires(pre):  pwdutils
 Recommends: cron
 Recommends: cyradm
 Recommends: perl-TermReadLine-Gnu
-
+Conflicts:  courier-imap
 Conflicts:  cyrus-imapd-kolab
-Conflicts:  imap courier-imap
-
-%package snmp
-Summary:SNMP support for the Cyrus IMAP and POP Mail Server
-Group:  Productivity/Networking/Email/Utilities
-Requires:   %{name} = %{version}
-Requires:   %{name}-snmp-mibs = %{version}
-Requires:   net-snmp >= 5.0
-
-%package snmp-mibs
-Summary:MIBs for the Cyrus IMAP and POP Mail Server
-Group:  Productivity/Networking/Email/Utilities
-
-%package utils
-Summary: 

commit mate-indicator-applet for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package mate-indicator-applet for 
openSUSE:Factory checked in at 2016-06-23 13:36:18

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


Package is "mate-indicator-applet"

Changes:

--- 
/work/SRC/openSUSE:Factory/mate-indicator-applet/mate-indicator-applet.changes  
2016-04-15 19:10:06.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.mate-indicator-applet.new/mate-indicator-applet.changes
 2016-06-23 13:36:21.0 +0200
@@ -1,0 +2,12 @@
+Mon Jun 20 15:30:32 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.14.1:
+  * GTK+3: Add support for new style indicators (that load from
+directory /usr/share/unity/indicators/.
+It requires libindicator >= 12.10 and libido >= 13.10. Support
+for older versions of libindicator is left intact.
+  * GTK+3: Allow indicators to receive mouse scroll event.
+- Rename package to mate-applet-indicator.
+- Provide indicator-renderer-gtk2.
+
+---

Old:

  mate-indicator-applet-1.14.0.tar.xz

New:

  mate-indicator-applet-1.14.1.tar.xz



Other differences:
--
++ mate-indicator-applet.spec ++
--- /var/tmp/diff_new_pack.FC3afC/_old  2016-06-23 13:36:22.0 +0200
+++ /var/tmp/diff_new_pack.FC3afC/_new  2016-06-23 13:36:22.0 +0200
@@ -18,7 +18,7 @@
 
 %define _version 1.14
 Name:   mate-indicator-applet
-Version:1.14.0
+Version:1.14.1
 Release:0
 Summary:Information from applications consistently on the panel
 License:GPL-3.0 and LGPL-3.0
@@ -27,14 +27,13 @@
 Source0:
http://pub.mate-desktop.org/releases/%{_version}/%{name}-%{version}.tar.xz
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  mate-common >= %{_version}
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gtk+-2.0)
 BuildRequires:  pkgconfig(indicator-0.4)
 BuildRequires:  pkgconfig(libmatepanelapplet-4.0) >= %{_version}
 BuildRequires:  pkgconfig(mate-settings-daemon) >= %{_version}
 BuildRequires:  pkgconfig(x11)
-Recommends: %{name}-lang
-%glib2_gsettings_schema_requires
 
 %description
 The indicator applet exposes Ayatana Indicators in the MATE Panel.
@@ -44,7 +43,26 @@
 desktop panel. Existing indicators include the Message Menu,
 Battery Menu and Sound menu.
 
-%lang_package
+%package -n mate-applet-indicator
+Summary:Information from applications consistently on the panel
+Group:  System/GUI/Other
+Recommends: mate-applet-indicator-lang
+Provides:   indicator-renderer-gtk2
+# mate-indicator-applet was last used in openSUSE Leap 42.1.
+Provides:   %{name} = %{version}
+Obsoletes:  %{name} < %{version}
+Obsoletes:  %{name}-lang < %{version}
+%glib2_gsettings_schema_requires
+
+%description -n mate-applet-indicator
+The indicator applet exposes Ayatana Indicators in the MATE Panel.
+Ayatana Indicators are an initiative by Canonical to provide crisp
+and clean system and application status indication. They take the
+form of an icon and associated menu, displayed (usually) in the
+desktop panel. Existing indicators include the Message Menu,
+Battery Menu and Sound menu.
+
+%lang_package -n mate-applet-indicator
 
 %prep
 %setup -q
@@ -62,13 +80,13 @@
 %make_install
 %find_lang %{name}
 
-%post
+%post -n mate-applet-indicator
 %glib2_gsettings_schema_post
 
-%postun
+%postun -n mate-applet-indicator
 %glib2_gsettings_schema_postun
 
-%files
+%files -n mate-applet-indicator
 %defattr(-,root,root)
 %doc AUTHORS COPYING COPYING.LGPL NEWS README
 %{_libexecdir}/%{name}/
@@ -80,7 +98,7 @@
 
%{_datadir}/mate-panel/applets/org.ayatana.panel.IndicatorAppletAppmenu.mate-panel-applet
 
%{_datadir}/mate-panel/applets/org.ayatana.panel.IndicatorAppletComplete.mate-panel-applet
 
-%files lang -f %{name}.lang
+%files -n mate-applet-indicator-lang -f %{name}.lang
 %defattr(-,root,root)
 
 %changelog

++ mate-indicator-applet-1.14.0.tar.xz -> 
mate-indicator-applet-1.14.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mate-indicator-applet-1.14.0/ChangeLog 
new/mate-indicator-applet-1.14.1/ChangeLog
--- old/mate-indicator-applet-1.14.0/ChangeLog  2016-04-08 13:39:33.0 
+0200
+++ new/mate-indicator-applet-1.14.1/ChangeLog  2016-06-20 15:55:41.0 
+0200
@@ -1,3 +1,79 @@
+commit fe1c2de727c4c680cc2547cee0c42f3b0e54d9b1
+Author: monsta 
+Date:   Mon Jun 20 16:54:24 2016 +0300
+
+Release 1.14.1
+
+ NEWS | 8 
+ configure.ac | 2 +-
+ 2 files changed, 9 insertions(+), 1 deletion(-)
+
+commit 

commit rosegarden for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package rosegarden for openSUSE:Factory 
checked in at 2016-06-23 13:36:41

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


Package is "rosegarden"

Changes:

--- /work/SRC/openSUSE:Factory/rosegarden/rosegarden.changes2016-03-26 
15:25:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.rosegarden.new/rosegarden.changes   
2016-06-23 13:36:44.0 +0200
@@ -1,0 +2,6 @@
+Tue Jun 21 06:34:51 UTC 2016 - davejpla...@gmail.com
+
+- Added upstream rosegarden-16.02-gcc6.patch to fix gcc6 build see
+  boo#985242
+
+---

New:

  rosegarden-16.02-gcc6.patch



Other differences:
--
++ rosegarden.spec ++
--- /var/tmp/diff_new_pack.9Rm06S/_old  2016-06-23 13:36:45.0 +0200
+++ /var/tmp/diff_new_pack.9Rm06S/_new  2016-06-23 13:36:45.0 +0200
@@ -29,6 +29,7 @@
 # This patch fixes the file search paths for examples, templates and midi 
driver libraries.
 Patch1: rosegarden-10.10-filepaths.patch
 Patch2: rosegarden-14.02-fix-bashisms.patch
+Patch3: rosegarden-16.02-gcc6.patch
 BuildRequires:  alsa-devel
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  dssi-devel
@@ -93,6 +94,7 @@
 %setup -q
 %patch1
 %patch2
+%patch3
 # When we build svn we need to execute bootstrap.sh
 #sh bootstrap.sh
 

++ rosegarden-16.02-gcc6.patch ++
diff -Nurp rosegarden-16.02.orig/src/gui/dialogs/PitchBendSequenceDialog.cpp 
rosegarden-16.02.mod/src/gui/dialogs/PitchBendSequenceDialog.cpp
--- src/gui/dialogs/PitchBendSequenceDialog.cpp 2016-02-29 13:18:01.0 
+0100
+++ src/gui/dialogs/PitchBendSequenceDialog.cpp 2016-04-25 07:30:49.578374291 
+0200
@@ -919,7 +919,7 @@ PitchBendSequenceDialog::addStepwiseEven
 {
 const int rawStepSize = spinboxToControlDelta(m_stepSize);
 if (rawStepSize == 0) { return; }
-numSteps = abs(float(valueChange) / float(rawStepSize) + 0.5);
+numSteps = fabs(float(valueChange) / float(rawStepSize) + 0.5);
 break;
 }
 }



commit lightdm for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package lightdm for openSUSE:Factory checked 
in at 2016-06-23 13:35:58

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


Package is "lightdm"

Changes:

--- /work/SRC/openSUSE:Factory/lightdm/lightdm.changes  2016-05-17 
17:14:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.lightdm.new/lightdm.changes 2016-06-23 
13:36:00.0 +0200
@@ -1,0 +2,6 @@
+Sun Jun 19 19:09:37 UTC 2016 - mimi...@gmail.com
+
+- remove user-authority-in-system-dir=true from suse conf, fixes
+  boo#976876
+
+---



Other differences:
--
++ 50-suse-defaults.conf ++
--- /var/tmp/diff_new_pack.u3Dqjn/_old  2016-06-23 13:36:02.0 +0200
+++ /var/tmp/diff_new_pack.u3Dqjn/_new  2016-06-23 13:36:02.0 +0200
@@ -1,6 +1,3 @@
-[LightDM]
-user-authority-in-system-dir=true
-
 [Seat:*]
 pam-service = lightdm
 pam-autologin-service = lightdm-autologin




commit pumpa for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package pumpa for openSUSE:Factory checked 
in at 2016-06-23 13:36:02

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


Package is "pumpa"

Changes:

--- /work/SRC/openSUSE:Factory/pumpa/pumpa.changes  2016-02-01 
19:57:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.pumpa.new/pumpa.changes 2016-06-23 
13:36:03.0 +0200
@@ -1,0 +2,5 @@
+Mon Jun 20 07:29:30 UTC 2016 - tchva...@suse.com
+
+- Switch to libtidy-devel to avoid unresolvable on factory
+
+---



Other differences:
--
++ pumpa.spec ++
--- /var/tmp/diff_new_pack.E6OcWV/_old  2016-06-23 13:36:04.0 +0200
+++ /var/tmp/diff_new_pack.E6OcWV/_new  2016-06-23 13:36:04.0 +0200
@@ -29,8 +29,8 @@
 BuildRequires:  aspell-devel
 BuildRequires:  gcc-c++
 BuildRequires:  hicolor-icon-theme
-BuildRequires:  libtidy-0_99-0-devel
-BuildRequires:  pkg-config
+BuildRequires:  libtidy-devel
+BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(Qt5Core)
 BuildRequires:  pkgconfig(Qt5DBus)





commit python-fixtures for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package python-fixtures for openSUSE:Factory 
checked in at 2016-06-23 13:36:04

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


Package is "python-fixtures"

Changes:

--- /work/SRC/openSUSE:Factory/python-fixtures/python-fixtures.changes  
2015-09-30 05:50:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-fixtures.new/python-fixtures.changes 
2016-06-23 13:36:05.0 +0200
@@ -1,0 +2,26 @@
+Mon Jun 20 08:04:02 UTC 2016 - dmuel...@suse.com
+
+- update to 3.0.0:
+  * Release 3.0.0
+  * Fixup the MonkeyPatch patch
+  * Tweak the new tests for consistency
+  * Update the semantics on _fixtures.MonkeyPatch
+  * Avoid old versions of pbr - we require modern releases
+  * Correct MockPatchMultiple example
+  * Ignore .tox
+  * MonkeyPatch staticmethod
+  * Drop support for Python 3.2. It's history
+  * Fix print in README
+  * Add CompoundFixture
+  * Tweak hacking docs
+  * Fix "propagate" spelling everywhere
+  * Missed one: propogate -> propagate
+  * Spelling and lint fixes
+  * Release 1.4
+  * Trivial pep8 fix to logger.py
+  * FakeLogger: Mis-formatted log messages will raise Exception
+  * Use mock in preference to unittest.mock
+  * Add a .travis.yml
+  * Note how to push on releases
+
+---

Old:

  fixtures-1.3.1.tar.gz

New:

  fixtures-3.0.0.tar.gz



Other differences:
--
++ python-fixtures.spec ++
--- /var/tmp/diff_new_pack.ik6NBE/_old  2016-06-23 13:36:06.0 +0200
+++ /var/tmp/diff_new_pack.ik6NBE/_new  2016-06-23 13:36:06.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-fixtures
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   python-fixtures
-Version:1.3.1
+Version:3.0.0
 Release:0
 Summary:Fixtures, reusable state for writing clean tests and more
 License:Apache-2.0 or BSD-3-Clause
 Group:  Development/Languages/Python
 Url:https://launchpad.net/python-fixtures
-Source: 
http://pypi.python.org/packages/source/f/fixtures/fixtures-%{version}.tar.gz
+Source: 
https://pypi.io/packages/source/f/fixtures/fixtures-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-mock
 BuildRequires:  python-pbr >= 0.11

++ fixtures-1.3.1.tar.gz -> fixtures-3.0.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fixtures-1.3.1/.travis.yml 
new/fixtures-3.0.0/.travis.yml
--- old/fixtures-1.3.1/.travis.yml  1970-01-01 01:00:00.0 +0100
+++ new/fixtures-3.0.0/.travis.yml  2016-04-07 02:32:14.0 +0200
@@ -0,0 +1,23 @@
+sudo: false
+language: python
+
+python:
+  - "2.6"
+  - "2.7"
+  - "3.3"
+  - "3.4"
+  - "3.5"
+  - "pypy"
+  - pypy3
+  - "nightly"
+
+install:
+ - pip install -U pip
+ - pip install -U wheel setuptools pbr
+ - pip install -U .[docs,test]
+ - pip list
+ - python --version
+
+script:
+ - make check
+ - rst2html.py README README.html
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fixtures-1.3.1/AUTHORS new/fixtures-3.0.0/AUTHORS
--- old/fixtures-1.3.1/AUTHORS  2015-06-30 04:22:04.0 +0200
+++ new/fixtures-3.0.0/AUTHORS  2016-05-20 01:03:07.0 +0200
@@ -1,3 +1,5 @@
+Andrew Laski 
+Brant Knudson 
 Clark Boylan 
 Dan Kenigsberg 
 Francesco Banconi 
@@ -6,6 +8,7 @@
 Gavin Panella 
 Gavin Panella 
 James Westby 
+John L. Villalovos 
 Jonathan Lange 
 Jonathan Lange 
 Joshua Harlow 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fixtures-1.3.1/ChangeLog new/fixtures-3.0.0/ChangeLog
--- old/fixtures-1.3.1/ChangeLog2015-06-30 04:22:04.0 +0200
+++ new/fixtures-3.0.0/ChangeLog2016-05-20 01:03:07.0 +0200
@@ -1,6 +1,40 @@
 CHANGES
 ===
 
+3.0.0
+-
+
+* Release 3.0.0
+* Fixup the MonkeyPatch patch
+* Tweak the new tests for consistency
+* Update the semantics on _fixtures.MonkeyPatch
+* Avoid old versions of pbr - we require modern releases
+* Correct MockPatchMultiple example

commit raspberrypi-firmware for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package raspberrypi-firmware for 
openSUSE:Factory checked in at 2016-06-23 13:35:44

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


Package is "raspberrypi-firmware"

Changes:

New Changes file:

--- /dev/null   2016-04-07 01:36:33.300037506 +0200
+++ 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware.new/raspberrypi-firmware-config-rpi.changes
2016-06-23 13:35:48.0 +0200
@@ -0,0 +1,247 @@
+---
+Thu Jun 16 15:51:19 UTC 2016 - afaer...@suse.de
+
+- Fix last changelog entry
+- Run format_spec_file in pre_checkin.sh to fix spec file header
+- Restore silently dropped defattr that breaks older builds
+
+---
+Mon Jun  6 11:44:28 UTC 2016 - dmuel...@suse.com
+
+- remove branding-openSUSE subpackage and split config
+  into the 3 variants for (rpi, rpi2, rpi3)
+
+---
+Tue May 31 09:59:59 UTC 2016 - guilla...@opensuse.org
+
+- Update to ac0c0bf (2016-05-20)
+
+---
+Tue May 10 17:58:12 UTC 2016 - dmuel...@suse.com
+
+- mark package as noarch (adds rpmlintrc)
+- split extra bootloaders into separate -extra subpackage
+
+---
+Wed May  4 19:37:54 UTC 2016 - afaer...@suse.de
+
+- Enable aarch64 builds for Raspberry Pi 3
+
+---
+Fri Apr 29 08:49:32 UTC 2016 - guilla...@opensuse.org
+
+- Update to 20958cd (2016-04-27)
+
+---
+Wed Apr  6 12:11:46 UTC 2016 - guilla...@opensuse.org
+
+- Update to c065500 (2016-04-05)
+
+---
+Mon Mar  7 14:41:14 UTC 2016 - afaer...@suse.de
+
+- Revert to last actual change b48c36f (2016-03-04)
+- Fix version bug found by Guillaume by using git-log (as intended)
+
+---
+Mon Mar  7 12:54:59 UTC 2016 - guilla...@opensuse.org
+
+- Update to 845eb06 (2016-03-05)
+
+---
+Mon Mar  7 12:50:58 UTC 2016 - guilla...@opensuse.org
+
+- Fix get-from-git.sh to get version even when packaged files are 
+  not in the last commit
+
+---
+Tue Mar  1 14:49:16 UTC 2016 - guilla...@opensuse.org
+
+- Update Config.txt (add GPU mem option for 1024 MB version)
+
+---
+Tue Mar  1 14:47:38 UTC 2016 - guilla...@opensuse.org
+
+- Update to 9cd1c6c (2016-02-29)
+
+---
+Thu Feb 25 15:05:36 UTC 2016 - guilla...@opensuse.org
+
+- Update to 565197e (2016-02-19)
+
+---
+Thu Feb  4 14:37:48 UTC 2016 - guilla...@opensuse.org
+
+- Update to cb2ffaa (2016-02-01)
+
+---
+Thu Jan 14 10:58:53 UTC 2016 - guilla...@opensuse.org
+
+- Update to 7147575 (2016-01-13)
+
+---
+Tue Dec  8 16:29:07 UTC 2015 - afaer...@suse.de
+
+- Update to 224c756 (2015-12-08)
+
+---
+Tue Dec  8 16:13:14 UTC 2015 - afaer...@suse.de
+
+- Move files from /boot to /boot/vc to allow directly updating the
+  FAT partition through a /boot/vc mount
+- Require the main package for the branding package
+
+---
+Sun Nov 29 14:08:53 UTC 2015 - afaer...@suse.de
+
+- Update to ed611df (2015-11-25)
+* Clarifies licensing of start_*.elf files
+- Improve get-from-git.sh
+* Automate file removal and addition
+* Use date of last relevant change
+- Add branding-openSUSE subpackage, based on a to-do item in
+  openSUSE:Factory:ARM JeOS package's uboot-image-install.in script
+* Update comment about zImage to reflect current U-Boot situation
+
+---
+Wed Oct 28 14:07:32 UTC 2015 - afaer...@suse.de
+
+- Add get-from-git.sh script as source file (sr#341314)
+
+---
+Mon Oct 26 18:11:24 UTC 2015 - afaer...@suse.de
+
+- Update to 4047fe2 (2015-10-23)
+- Throw out all non-free gfx sub-packages and files
+
+---
+Mon Oct 12 09:45:37 UTC 2015 - guilla...@opensuse.org

commit sbd for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package sbd for openSUSE:Factory checked in 
at 2016-06-23 13:35:53

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


Package is "sbd"

Changes:

--- /work/SRC/openSUSE:Factory/sbd/sbd.changes  2016-03-07 13:24:13.0 
+0100
+++ /work/SRC/openSUSE:Factory/.sbd.new/sbd.changes 2016-06-23 
13:35:54.0 +0200
@@ -1,0 +2,11 @@
+Tue May 17 10:59:18 UTC 2016 - kgronl...@suse.com
+
+- Update to version 1.2.1.git.1463482437.d6bd23a:
+  * Add support for diskless sbd mode
+
+- Remove outdated patches:
+  * Remove sbd-pacemaker.patch
+  * Remove sbd-configure-libcoroipcc.patch
+  * Remove bug-950415_sbd-pacemaker-segfault.patch
+
+---

Old:

  bug-950415_sbd-pacemaker-segfault.patch
  sbd-1.2.1.git.1409904429.39dee2a.tar.xz
  sbd-configure-libcoroipcc.patch
  sbd-pacemaker.patch
  sbd_remote.service

New:

  sbd-1.2.1.git.1463482437.d6bd23a.tar.xz



Other differences:
--
++ sbd.spec ++
--- /var/tmp/diff_new_pack.NZRc6w/_old  2016-06-23 13:35:55.0 +0200
+++ /var/tmp/diff_new_pack.NZRc6w/_new  2016-06-23 13:35:55.0 +0200
@@ -21,15 +21,11 @@
 Summary:Storage-based death
 License:GPL-2.0+
 Group:  Productivity/Clustering/HA
-Version:1.2.1.git.1409904429.39dee2a
+Version:1.2.1.git.1463482437.d6bd23a
 Release:0
 Url:https://github.com/l-mb/sbd
 Source: %{name}-%{version}.tar.xz
-Source1:sbd_remote.service
 Patch1: add-explicit-libs.patch
-Patch2: sbd-configure-libcoroipcc.patch
-Patch3: sbd-pacemaker.patch
-Patch4: bug-950415_sbd-pacemaker-segfault.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf
 BuildRequires:  automake
@@ -39,6 +35,7 @@
 BuildRequires:  libcorosync-devel
 BuildRequires:  libglue-devel
 BuildRequires:  libpacemaker-devel
+BuildRequires:  libqb-devel
 BuildRequires:  libtool
 BuildRequires:  libuuid-devel
 BuildRequires:  libxml2-devel
@@ -56,40 +53,27 @@
 This package contains the storage-based death functionality.
 
 %prep
-###
 # %setup -n sbd-%{version} -q
-%setup
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
-###
+%autosetup -p1
 
 %build
 autoreconf -i
 export CFLAGS="$RPM_OPT_FLAGS -Wall -Werror"
 %configure
 make %{?_smp_mflags}
-###
 
 %install
-###
 make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install
 install -D -m 0755 src/sbd.sh $RPM_BUILD_ROOT/usr/share/sbd/sbd.sh
 %if %{defined _unitdir}
 install -D -m 0644 src/sbd.service $RPM_BUILD_ROOT/%{_unitdir}/sbd.service
-install -D -m 0644 %{S:1} $RPM_BUILD_ROOT/%{_unitdir}/sbd_remote.service
+install -D -m 0644 src/sbd_remote.service 
$RPM_BUILD_ROOT/%{_unitdir}/sbd_remote.service
 %endif
 mkdir -p %{buildroot}%{_localstatedir}/adm/fillup-templates
 cp -f src/sbd.sysconfig 
%{buildroot}%{_localstatedir}/adm/fillup-templates/sysconfig.sbd
 
 %clean
-###
-if
-  [ -n "${RPM_BUILD_ROOT}" -a "${RPM_BUILD_ROOT}" != "/" ]
-then
-  rm -rf $RPM_BUILD_ROOT || true
-fi
+rm -rf %{buildroot}
 
 %if %{defined _unitdir}
 %post
@@ -114,7 +98,6 @@
 %endif
 
 %files
-###
 %defattr(-,root,root)
 %{_libdir}/stonith/plugins/external/sbd
 %{_sbindir}/sbd

++ _service ++
--- /var/tmp/diff_new_pack.NZRc6w/_old  2016-06-23 13:35:55.0 +0200
+++ /var/tmp/diff_new_pack.NZRc6w/_new  2016-06-23 13:35:55.0 +0200
@@ -2,7 +2,8 @@
   
 git
 .git
-https://github.com/l-mb/sbd.git
+https://github.com/krig/sbd.git
+opensuse
 1.2.1.git.%ct.%h
 enable
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.NZRc6w/_old  2016-06-23 13:35:55.0 +0200
+++ /var/tmp/diff_new_pack.NZRc6w/_new  2016-06-23 13:35:55.0 +0200
@@ -2,4 +2,6 @@
   
 https://github.com/l-mb/sbd.git
   39dee2ac89
-
\ No newline at end of file
+
+https://github.com/krig/sbd.git
+  d6bd23a66e59801206fcb8bd265a5effad239478
\ No newline at end of file

++ add-explicit-libs.patch ++
--- /var/tmp/diff_new_pack.NZRc6w/_old  2016-06-23 13:35:55.0 +0200
+++ /var/tmp/diff_new_pack.NZRc6w/_new  2016-06-23 13:35:55.0 +0200
@@ -1,12 +1,17 @@
-Index: sbd/src/Makefile.am
-===
 sbd.orig/src/Makefile.am
-+++ 

commit gammu for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package gammu for openSUSE:Factory checked 
in at 2016-06-23 13:35:43

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


Package is "gammu"

Changes:

--- /work/SRC/openSUSE:Factory/gammu/gammu.changes  2016-03-07 
13:24:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.gammu.new/gammu.changes 2016-06-23 
13:35:45.0 +0200
@@ -1,0 +2,17 @@
+Sat May 28 10:12:45 UTC 2016 - ec...@opensuse.org
+
+- Update to 1.37.3
+  * Improved support for Huawei E398.
+  * Improved support for Huawei/Vodafone K4505.
+  * Fixed possible crash if SMSD used in library.
+  * Improved support for Huawei E180.
+- Update to 1.37.2
+  * Fixed compilation of SMSD.
+- Update to 1.37.1
+  * Properly report errors in HEX encoded strings from SMSD SQL backends.
+  * Configurable SMSD table names.
+  * Improved support for Huawei E303.
+  * Improved support for Vodafone K4511.
+  * Improved support for Telit M2M modules.
+  
+---

Old:

  gammu-1.37.0.tar.xz

New:

  gammu-1.37.3.tar.xz



Other differences:
--
++ gammu.spec ++
--- /var/tmp/diff_new_pack.eSjrCC/_old  2016-06-23 13:35:46.0 +0200
+++ /var/tmp/diff_new_pack.eSjrCC/_new  2016-06-23 13:35:46.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gammu
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define so_ver 7
 
 Name:   gammu
-Version:1.37.0
+Version:1.37.3
 Release:0
 Summary:Mobile phone management utility
 License:GPL-2.0

++ gammu-1.37.0.tar.xz -> gammu-1.37.3.tar.xz ++
 28899 lines of diff (skipped)




commit fatsort for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package fatsort for openSUSE:Factory checked 
in at 2016-06-23 13:35:40

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


Package is "fatsort"

Changes:

New Changes file:

--- /dev/null   2016-04-07 01:36:33.300037506 +0200
+++ /work/SRC/openSUSE:Factory/.fatsort.new/fatsort.changes 2016-06-23 
13:35:42.0 +0200
@@ -0,0 +1,36 @@
+---
+Sun May 29 08:00:05 UTC 2016 - mplus...@suse.com
+
+- Cleanup package
+- Update to version 1.3.365
+
+---
+Tue Apr  8 18:55:38 UTC 2014 - ma...@detebe.org
+
+- updated to version 1.3
+
+---
+Tue Dec 10 22:56:42 UTC 2013 - ma...@detebe.org
+
+- updated to version 1.2
+
+---
+Tue Jun 11 17:01:25 UTC 2013 - ma...@detebe.org
+
+- updated to version 1.1.1
+
+---
+Fri May 24 13:50:14 UTC 2013 - ma...@detebe.org
+
+- updated to version 1.1
+
+---
+Mon May 20 10:27:30 UTC 2013 - ma...@detebe.org
+
+- updated to version 1.0.1
+
+---
+Mon Apr 15 16:34:07 UTC 2013 - ma...@detebe.org
+
+- initial package build
+

New:

  fatsort-1.3.365.tar.gz
  fatsort.changes
  fatsort.spec



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

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


Name:   fatsort
Version:1.3.365
Release:0
Summary:FAT Filesystem Sorting Utility
License:GPL-2.0+
Group:  System/Filesystems
Url:http://fatsort.sourceforge.net
Source0:
https://sourceforge.net/projects/fatsort/files/fatsort-%{version}.tar.gz
BuildRequires:  help2man
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
FATsort sorts directory structures of FAT filesystems. Many MP3 hardware
players don't sort files automatically but play them in the order they were
transmitted to the device. FATSort can help here.

%prep
%setup -q

%build
make %{?_smp_mflags} CFLAGS="%{optflags}"

%install
install -D -m 0755 -p src/%{name}   %{buildroot}%{_sbindir}/%{name}
install -D -m 0644 -p man/%{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1

%files
%defattr(-,root,root,-)
%doc CHANGES LICENSE.txt README
%{_sbindir}/%{name}
%{_mandir}/man1/%{name}.1%{ext_man}

%changelog



commit python-requests for openSUSE:Factory

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package python-requests for openSUSE:Factory 
checked in at 2016-06-23 12:58:53

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


Package is "python-requests"

Changes:

--- /work/SRC/openSUSE:Factory/python-requests/python-requests.changes  
2016-06-07 23:49:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-requests.new/python-requests.changes 
2016-06-23 12:58:54.0 +0200
@@ -2,13 +1,0 @@
-Wed May 18 08:04:41 UTC 2016 - dmuel...@suse.com
-
-- update to 2.10.1:
-  * SOCKS Proxy Support! (requires PySocks; $ pip install requests[socks])
-  * Updated bundled urllib3 to 1.15.1.
-  * Change built-in CaseInsensitiveDict (used for headers) to use OrderedDict
-as its underlying datastore.
-  * Don't use redirect_cache if allow_redirects=False
-  * When passed objects that throw exceptions from ``tell()``, send them via
-chunked transfer encoding instead of failing.
-  * Raise a ProxyError for proxy related connection issues.
-


Old:

  requests-2.10.0.tar.gz

New:

  requests-2.9.1.tar.gz



Other differences:
--
++ python-requests.spec ++
--- /var/tmp/diff_new_pack.XnbBcH/_old  2016-06-23 12:58:55.0 +0200
+++ /var/tmp/diff_new_pack.XnbBcH/_new  2016-06-23 12:58:55.0 +0200
@@ -20,13 +20,13 @@
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 %endif
 Name:   python-requests
-Version:2.10.0
+Version:2.9.1
 Release:0
 Summary:Awesome Python HTTP Library That's Actually Usable
 License:Apache-2.0
 Group:  Development/Languages/Python
 Url:http://python-requests.org/
-Source: 
https://pypi.io/packages/source/r/requests/requests-%{version}.tar.gz
+Source: 
http://pypi.python.org/packages/source/r/requests/requests-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE no-default-cacert.patch -- Completely ignore the internal 
CA bundle.
 Patch0: no-default-cacert.patch
 # PATCH-FIX-UPSTREAM update urllib3 to do the proper passthrough to 
set_default_verify_paths

++ requests-2.10.0.tar.gz -> requests-2.9.1.tar.gz ++
 4022 lines of diff (skipped)




commit mariadb for openSUSE:13.2:Update

2016-06-23 Thread h_root
Hello community,

here is the log from the commit of package mariadb for openSUSE:13.2:Update 
checked in at 2016-06-23 09:53:17

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


Package is "mariadb"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.nTomAR/_old  2016-06-23 09:53:18.0 +0200
+++ /var/tmp/diff_new_pack.nTomAR/_new  2016-06-23 09:53:18.0 +0200
@@ -1 +1 @@
-
+