commit cyrus-imapd for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package cyrus-imapd for openSUSE:Factory 
checked in at 2017-06-26 15:56:43

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


Package is "cyrus-imapd"

Mon Jun 26 15:56:43 2017 rev:67 rq:506147 version:2.4.19

Changes:

--- /work/SRC/openSUSE:Factory/cyrus-imapd/cyrus-imapd.changes  2017-06-22 
10:40:49.309995002 +0200
+++ /work/SRC/openSUSE:Factory/.cyrus-imapd.new/cyrus-imapd.changes 
2017-06-26 15:56:44.661747673 +0200
@@ -1,0 +2,6 @@
+Sun Jun 25 21:22:24 UTC 2017 - a...@ajaissle.de
+
+- Add cyrus-imapd-2.4.19-lmtpd_crash.patch:
+  * lmtpd: fix uninitialised variable crash [boo#1045899]
+
+---

New:

  cyrus-imapd-2.4.19-lmtpd_crash.patch



Other differences:
--
++ cyrus-imapd.spec ++
--- /var/tmp/diff_new_pack.0bLgLN/_old  2017-06-26 15:56:45.377646706 +0200
+++ /var/tmp/diff_new_pack.0bLgLN/_new  2017-06-26 15:56:45.381646142 +0200
@@ -62,6 +62,8 @@
 Patch28:cyrus-imapd-2.4.19-implicit_definitions.patch
 # PATCH-FIX-UPSTREAM -- Outlook 2013-compatible XLIST behaviour
 Patch31:cyrus-imapd-2.4.18-D19-Outlook_2013_XLIST.patch
+# PATCH-FIX-UPSTREAM -- lmtpd: fix uninitialised variable crash
+Patch32:cyrus-imapd-2.4.19-lmtpd_crash.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  bison
@@ -218,6 +220,7 @@
 %patch27 -p1
 %patch28 -p1
 %patch31 -p1
+%patch32 -p1
 
 # remove executable bit from docs
 find doc -type f -name '*.html' -exec chmod -x {} \;

++ cyrus-imapd-2.4.19-lmtpd_crash.patch ++
>From 129d3aedbba82d6457fc7cbd436e68f278e0628b Mon Sep 17 00:00:00 2001
From: ellie timoney 
Date: Mon, 22 May 2017 13:06:04 +1000
Subject: [PATCH] lmtpd: fix uninitialised variable crash

---
 imap/lmtpd.c | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/imap/lmtpd.c b/imap/lmtpd.c
index 5fe507a80..7428f72b5 100644
--- a/imap/lmtpd.c
+++ b/imap/lmtpd.c
@@ -712,9 +712,10 @@ int deliver(message_data_t *msgdata, char *authuser,
 
 /* loop through each recipient, attempting delivery for each */
 for (n = 0; n < nrcpts; n++) {
-   char namebuf[MAX_MAILBOX_BUFFER] = "", *server;
+   char namebuf[MAX_MAILBOX_BUFFER] = "";
char userbuf[MAX_MAILBOX_BUFFER];
const char *rcpt, *user, *domain, *mailbox;
+   char *server = NULL;
int r = 0;
 
rcpt = msg_getrcptall(msgdata, n);
@@ -954,7 +955,7 @@ static int verify_user(const char *user, const char 
*domain, char *mailbox,
 }
 
 if (!r) {
-   char *server, *acl;
+   char *server = NULL, *acl = NULL;
long aclcheck = !user ? ACL_POST : 0;
/*
 * check to see if mailbox exists and we can append to it:
@@ -1061,8 +1062,9 @@ FILE *spoolfile(message_data_t *msgdata)
(don't bother if we're only a proxy) */
 n = isproxy ? 0 : msg_getnumrcpt(msgdata);
 for (i = 0; !f && (i < n); i++) {
-   char namebuf[MAX_MAILBOX_BUFFER] = "", *server;
+   char namebuf[MAX_MAILBOX_BUFFER] = "";
const char *user, *domain, *mailbox;
+   char *server = NULL;
int r;
 
/* build the mailboxname from the recipient address */




commit nvme-cli for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package nvme-cli for openSUSE:Factory 
checked in at 2017-06-26 15:56:56

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


Package is "nvme-cli"

Mon Jun 26 15:56:56 2017 rev:15 rq:506236 version:1.2

Changes:

--- /work/SRC/openSUSE:Factory/nvme-cli/nvme-cli.changes2017-06-20 
09:39:38.450450936 +0200
+++ /work/SRC/openSUSE:Factory/.nvme-cli.new/nvme-cli.changes   2017-06-26 
15:56:59.611639203 +0200
@@ -1,0 +2,11 @@
+Mon Jun 26 08:31:50 UTC 2017 - jthumsh...@suse.com
+
+- Create nvme files and directories in /etc/nvme (bsc#1045931 )
+
+---
+Mon Jun 26 08:25:16 UTC 2017 - jthumsh...@suse.com
+
+- Provide nvme ns-descs subcommand (bsc#1038235) 
+  + 0005-nvme-cli-add-ns-descs-subcommand.patch
+
+---

New:

  0005-nvme-cli-add-ns-descs-subcommand.patch



Other differences:
--
++ nvme-cli.spec ++
--- /var/tmp/diff_new_pack.qVYF8x/_old  2017-06-26 15:57:00.215554029 +0200
+++ /var/tmp/diff_new_pack.qVYF8x/_new  2017-06-26 15:57:00.219553465 +0200
@@ -25,6 +25,7 @@
 Url:https://github.com/linux-nvme/nvme-cli
 Source: %{name}-v%{version}.tar.gz
 BuildRequires:  asciidoc
+BuildRequires:  libuuid-devel
 BuildRequires:  xmlto
 BuildRequires:  pkgconfig(libudev)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -33,6 +34,7 @@
 Patch2: add-missing-nvme_id_crtl-fileds.patch
 Patch3: 0003-nvme-cli-show-more-fields-for-id-ctrl.patch
 Patch4: 0004-nvme-cli-id-ctrl-display-additional-fields.patch
+Patch5: 0005-nvme-cli-add-ns-descs-subcommand.patch
 
 %description
 NVMe is a fast, scalable, direct attached storage interface. The nvme
@@ -45,6 +47,7 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 
 %build
 echo %{version} > version
@@ -52,8 +55,14 @@
 
 %install
 make PREFIX=%{_prefix} DESTDIR=%{buildroot} install-bin install-man 
%{?_smp_mflags}
+install -m 644 -D /dev/null %{buildroot}%{_sysconfdir}/nvme/hostnqn
 install -m 644 -D completions/bash-nvme-completion.sh 
%{buildroot}%{_sysconfdir}/bash_completion.d/nvme
 
+%post
+if [ ! -e %{_sysconfdir}/nvme/hostnqn ]; then
+   %{_sbindir}/nvme gen-hostnqn > %{_sysconfdir}/nvme/hostnqn
+fi
+
 %files
 %defattr(-,root,root)
 %doc README.md LICENSE
@@ -61,5 +70,7 @@
 %{_mandir}/man1/nvme*.1*
 %dir %{_sysconfdir}/bash_completion.d/
 %{_sysconfdir}/bash_completion.d/nvme
+%dir %{_sysconfdir}/nvme/
+%ghost %{_sysconfdir}/nvme/hostnqn
 
 %changelog

++ 0005-nvme-cli-add-ns-descs-subcommand.patch ++
>From 84937e83e86e11328c8931abc60f7655fae44823 Mon Sep 17 00:00:00 2001
From: Johannes Thumshirn 
Date: Fri, 23 Jun 2017 09:36:35 +0200
Subject: nvme-cli: add ns-descs subcommand
Git-commit: 84937e83e86e11328c8931abc60f7655fae44823
Patch-mainline: v1.4
References: bsc#1038235

NVMe 1.3 defines the "Namespace Identification Descriptor" command in
NVMe Identify NS. This command returns a list of so called Namespace
Identificastion Descriptors which currently can either be a EUI-64,
a NGUID or a UUID.

Signed-off-by: Johannes Thumshirn 
Signed-off-by: Keith Busch 
---
 linux/nvme.h   |  14 +++
 nvme-builtin.h |   1 +
 nvme-ioctl.c   |   6 +++
 nvme-ioctl.h   |   1 +
 nvme-print.c   | 122 +
 nvme-print.h   |   2 +
 nvme.c |  63 +
 7 files changed, 209 insertions(+)

diff --git a/linux/nvme.h b/linux/nvme.h
index 08bf0b1..d1a322b 100644
--- a/linux/nvme.h
+++ b/linux/nvme.h
@@ -863,6 +863,20 @@ struct nvme_command {
};
 };
 
+#define NVME_IDENTIFY_CMD_LEN 4096
+#define NVME_ID_CNS_NS_DESC_LIST 0x3
+enum {
+   NVME_NIDT_EUI64 = 0x1,
+   NVME_NIDT_NGUID = 0x2,
+   NVME_NIDT_UUID  = 0x3,
+};
+
+struct nvme_ns_id_desc {
+   __u8 nidt;
+   __u8 nidl;
+   __u16 reserved;
+};
+
 static inline bool nvme_is_write(struct nvme_command *cmd)
 {
/*
diff --git a/nvme-builtin.h b/nvme-builtin.h
index 087fc19..91f361d 100644
--- a/nvme-builtin.h
+++ b/nvme-builtin.h
@@ -11,6 +11,7 @@ COMMAND_LIST(
ENTRY("id-ctrl", "Send NVMe Identify Controller", id_ctrl)
ENTRY("id-ns", "Send NVMe Identify Namespace, display structure", id_ns)
ENTRY("list-ns", "Send NVMe Identify List, display structure", list_ns)
+   ENTRY("ns-descs", "Send NVMe Namespace Descriptor List, display 
structure", ns_descs)
ENTRY("create-ns", "Creates a namespace with the provided parameters", 
create_ns)

commit perl-PPI for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-PPI for openSUSE:Factory 
checked in at 2017-06-26 15:56:24

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


Package is "perl-PPI"

Mon Jun 26 15:56:24 2017 rev:17 rq:506083 version:1.234

Changes:

--- /work/SRC/openSUSE:Factory/perl-PPI/perl-PPI.changes2017-05-24 
16:47:18.400415132 +0200
+++ /work/SRC/openSUSE:Factory/.perl-PPI.new/perl-PPI.changes   2017-06-26 
15:56:25.860399090 +0200
@@ -1,0 +2,38 @@
+Thu Jun 22 06:03:57 UTC 2017 - co...@suse.com
+
+- updated to 1.234
+   see /usr/share/doc/packages/perl-PPI/Changes
+
+  1.234 Sun 21 June 2017
+   Summary:
+   - Prevent sub names like v10 from being version strings
+ (GitHub #65) (MOREGAN)
+  
+  1.232 Sun 21 June 2017
+   Summary:
+   - add Changes entries forgotten in 1.230
+  
+  1.230 Sun 21 June 2017
+   Summary:
+   - remove temporary fix introduced in 1.226
+   - prevent possible regex on undefined scalar in
+ __current_token_is_forced_word
+
+---
+Wed Jun 21 06:11:28 UTC 2017 - co...@suse.com
+
+- updated to 1.228
+   see /usr/share/doc/packages/perl-PPI/Changes
+
+  1.228 Sun 20 June 2017
+   Summary:
+   - keep PPI::Dumper from breaking Perl::Critic under cperl 5.27
+(RURBAN)
+  
+  1.226 Sun 20 June 2017
+   Summary:
+   - Fix test reliance on '.' in @INC (KENTNL)
+   - temporary fix to keep an untested combination from blocking
+ Perl::Critic (https://github.com/chriscapaci)
+
+---

Old:

  PPI-1.224.tar.gz

New:

  PPI-1.234.tar.gz



Other differences:
--
++ perl-PPI.spec ++
--- /var/tmp/diff_new_pack.rWddnH/_old  2017-06-26 15:56:26.352329720 +0200
+++ /var/tmp/diff_new_pack.rWddnH/_new  2017-06-26 15:56:26.356329156 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-PPI
-Version:1.224
+Version:1.234
 Release:0
 %define cpan_name PPI
 Summary:Parse, Analyze and Manipulate Perl (without perl)
@@ -44,7 +44,6 @@
 BuildRequires:  perl(Test::More) >= 0.86
 BuildRequires:  perl(Test::Object) >= 0.07
 BuildRequires:  perl(Test::SubCalls) >= 1.07
-BuildRequires:  perl(Test::Warn) >= 0.30
 Requires:   perl(Clone) >= 0.30
 #Requires:   perl(File::Spec) >= 3.2701
 Requires:   perl(IO::String) >= 1.07

++ PPI-1.224.tar.gz -> PPI-1.234.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PPI-1.224/Changes new/PPI-1.234/Changes
--- old/PPI-1.224/Changes   2017-05-14 16:50:50.0 +0200
+++ new/PPI-1.234/Changes   2017-06-21 13:59:23.0 +0200
@@ -1,5 +1,31 @@
 Revision history for Perl extension PPI
 
+1.234 Sun 21 June 2017
+   Summary:
+   - Prevent sub names like v10 from being version strings
+ (GitHub #65) (MOREGAN)
+
+1.232 Sun 21 June 2017
+   Summary:
+   - add Changes entries forgotten in 1.230
+
+1.230 Sun 21 June 2017
+   Summary:
+   - remove temporary fix introduced in 1.226
+   - prevent possible regex on undefined scalar in
+ __current_token_is_forced_word
+
+1.228 Sun 20 June 2017
+   Summary:
+   - keep PPI::Dumper from breaking Perl::Critic under cperl 5.27
+ (RURBAN)
+
+1.226 Sun 20 June 2017
+   Summary:
+   - Fix test reliance on '.' in @INC (KENTNL)
+   - temporary fix to keep an untested combination from blocking
+ Perl::Critic (https://github.com/chriscapaci)
+
 1.224 Sun 14 May 2017
Summary:
- updating an out-of-date meta.yml caused by Module::Install
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PPI-1.224/META.yml new/PPI-1.234/META.yml
--- old/PPI-1.224/META.yml  2017-05-14 16:56:55.0 +0200
+++ new/PPI-1.234/META.yml  2017-06-21 14:01:15.0 +0200
@@ -10,7 +10,6 @@
   Test::More: '0.86'
   Test::Object: '0.07'
   Test::SubCalls: '1.07'
-  Test::Warn: '0.30'
 configure_requires:
   ExtUtils::MakeMaker: 6.59
 distribution_type: module
@@ -43,4 +42,4 @@
   homepage: https://github.com/adamkennedy/PPI
   license: http://dev.perl.org/licenses/
   repository: https://github.com/adamkennedy/PPI
-version: '1.224'
+version: '1.234'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PPI-1.224/Makefile.PL new/PPI-1.234/Makefile.PL
--- old/PPI-1.224/Makefile.PL   2017-05-14 16:26:03.0 +0200
+++ new/PPI-1.234/Makefile.PL   2017-06-21 13:08:46.0 +0200
@@ -40,7 +40,6 @@
 test_requires 'Class::Inspector' => 

commit Rivet for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package Rivet for openSUSE:Factory checked 
in at 2017-06-26 15:56:41

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


Package is "Rivet"

Mon Jun 26 15:56:41 2017 rev:11 rq:506115 version:2.5.4

Changes:

--- /work/SRC/openSUSE:Factory/Rivet/Rivet.changes  2017-03-12 
20:00:21.972607841 +0100
+++ /work/SRC/openSUSE:Factory/.Rivet.new/Rivet.changes 2017-06-26 
15:56:41.702165080 +0200
@@ -1,0 +2,213 @@
+Fri Jun 23 20:25:55 UTC 2017 - antoine.belv...@opensuse.org
+
+- Update to version 2.5.4:
+  * Fix 8 TeV DY (ATLAS_2016_I1467454), EL/MU bits were bissing.
+  * Add 13 TeV DY (ATLAS_2017_I1514251) and mark
+ATLAS_2015_CONF_2015_041 obsolete.
+  * Add missing install statement for
+ATLAS_2016_I1448301.yoda/plot/info leading to segfault.
+  * Slight improvements to Particle constructors.
+  * Improvement to Beam projection: before falling back to
+barcodes 1 & 2, try a manual search for status=4 particles.
+Based on a patch from Andrii Verbytskyi.
+  * Add CMS_2016_I1430892: dilepton channel ttbar charge asymmetry
+analysis.
+  * Add CMS_2016_I1413748: dilepton channel ttbar spin
+correlations and polarisation analysis.
+  * Add CMS_2017_I1518399: leading jet mass for boosted top
+quarks at 8 TeV.
+  * Add convenience constructors for ChargedLeptons projection.
+  * Add FinalState and Cut (optional) constructor arguments and
+usage to DISFinalState. Thanks to Andrii Verbytskyi for the
+idea and initial patch.
+  * Add ATLAS_2016_I1448301, Z/gamma cross section measurement at
+8 TeV.
+  * Add ATLAS_2016_I1426515, WW production at 8 TeV.
+  * Add BELLE measurement of semileptonic B0bar -> D*+ ell nu
+decays. I took the liberty to correct the data in the sense
+that I take the bin widths into account in the normalisation.
+BELLE_2017_I1512299.
+This is a nice analysis as it probes the hadronic and the
+leptonic side of the decay so very valuable for model building
+and of course it is rare as it is an unfolded B measurement.
+  * Add ALEPH measurement of hadronic tau decays,
+ALEPH_2014_I1267648.
+  * Add ALEPH dimuon invariant mass (OS and SS) analysis,
+ALEPH_2016_I1492968.
+  * The latter needed GENKTEE FastJet algorithm so I added that
+FastJets.
+  * Protection against logspace exception in histobooking of
+MC_JetAnalysis.
+  * Fix compiler complaints about uninitialised variable in
+OPAL_2004.
+  * Tidy ALEPH_1999 charm fragmentation analysis and normalise to
+data integral. Added DSTARPLUS and DSTARMINUS to PID.
+  * Add ATLAS_2016_CONF_2016_092, inclusive jet cross sections
+using early 13 TeV data.
+  * Add ATLAS_2017_I1591327, isolated diphoton + X differential
+cross-sections.
+  * Add ATLAS_2017_I1589844, ATLAS_2017_I1589844_EL,
+ATLAS_2017_I1589844_MU:  kT splittings in Z events at 8 TeV.
+  * Add ATLAS_2017_I1509919, track-based underlying event at 13
+TeV in ATLAS.
+  * Add ATLAS_2016_I1492320_2l2j and ATLAS_2016_I1492320_3l, the
+WWW cross-section at 8 TeV.
+  * Add ATLAS_2016_I1449082, charge asymmetry in top quark pair
+production in dilepton channel.
+  * Add ATLAS_2015_I1394865, inclusive 4-lepton/ZZ lineshape.
+  * Add ATLAS_2013_I1234228, high-mass Drell-Yan at 7 TeV.
+  * Add CMS_2017_I1519995, search for new physics with dijet
+angular distributions in proton-proton collisions at
+sqrt{(s) = 13 TeV.
+  * Add CMS_2017_I1511284, inclusive energy spectrum in the very
+forward direction in proton-proton collisions at 13 TeV.
+  * Add CMS_2016_I1486238, studies of 2 b-jet + 2 jet production
+in proton-proton collisions at 7 TeV.
+  * Add CMS_2016_I1454211, boosted ttbar in pp collisions at
+sqrtS = 8 TeV.
+  * Add CMS_2016_I1421646, CMS azimuthal decorrelations at 8 TeV.
+  * Add CMS_2015_I1380605, per-event yield of the highest
+transverse momentum charged particle and charged-particle jet.
+  * Add CMS_2015_I1370682_PARTON, a partonic-top version of the CMS
+7 TeV pseudotop ttbar differential cross-section analysis.
+  * Adding EHS_1988_I265504 from Felix Riehn: charged-particle
+production in K+ p, pi+ p and pp interactions at 250 GeV/c.
+  * Fix ALICE_2012_I1116147 for pi0 and Lambda feed-down.
+  * Add protection against leptons from QED FSR photon conversions
+in assigning PartonicTop decay modes. Thanks to Markus Seidel
+for the report and suggested fix.
+  * Reimplement FastJets methods in terms of new static helper
+functions.
+  * Add new mkClusterInputs, mkJet and mkJets static methods to
+FastJets, to help with direct calls to FastJet where particle
+lookup for constituents and ghost tags are required.
+  * Fix Doxygen config and Makefile target to allow 

commit perl-Module-Reader for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-Module-Reader for 
openSUSE:Factory checked in at 2017-06-26 15:56:28

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


Package is "perl-Module-Reader"

Mon Jun 26 15:56:28 2017 rev:5 rq:506084 version:0.003003

Changes:

--- /work/SRC/openSUSE:Factory/perl-Module-Reader/perl-Module-Reader.changes
2017-01-10 10:41:56.288409591 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Module-Reader.new/perl-Module-Reader.changes   
2017-06-26 15:56:31.055666476 +0200
@@ -1,0 +2,12 @@
+Thu Jun 22 05:53:38 UTC 2017 - co...@suse.com
+
+- updated to 0.003003
+   see /usr/share/doc/packages/perl-Module-Reader/Changes
+
+  0.003003 - 2017-06-21
+- fix EACCES handling to match the current perl
+- fix raw file handle access for unopened files
+- call @INC hooks for ./, ../, and / paths if they weren't found directly
+- add handling for a string reference prefix return from a hook
+
+---

Old:

  Module-Reader-0.003002.tar.gz

New:

  Module-Reader-0.003003.tar.gz



Other differences:
--
++ perl-Module-Reader.spec ++
--- /var/tmp/diff_new_pack.ly2fQ6/_old  2017-06-26 15:56:31.747568907 +0200
+++ /var/tmp/diff_new_pack.ly2fQ6/_new  2017-06-26 15:56:31.751568343 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Module-Reader
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:   perl-Module-Reader
-Version:0.003002
+Version:0.003003
 Release:0
 %define cpan_name Module-Reader
 Summary:Find and read perl modules like perl does
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Module-Reader/
-Source0:
http://www.cpan.org/authors/id/H/HA/HAARG/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/H/HA/HAARG/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ Module-Reader-0.003002.tar.gz -> Module-Reader-0.003003.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Reader-0.003002/Changes 
new/Module-Reader-0.003003/Changes
--- old/Module-Reader-0.003002/Changes  2016-12-14 09:13:32.0 +0100
+++ new/Module-Reader-0.003003/Changes  2017-06-21 18:21:27.0 +0200
@@ -1,5 +1,11 @@
 Revision history for Module-Reader
 
+0.003003 - 2017-06-21
+  - fix EACCES handling to match the current perl
+  - fix raw file handle access for unopened files
+  - call @INC hooks for ./, ../, and / paths if they weren't found directly
+  - add handling for a string reference prefix return from a hook
+
 0.003002 - 2016-12-14
   - releasing as stable
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Reader-0.003002/MANIFEST 
new/Module-Reader-0.003003/MANIFEST
--- old/Module-Reader-0.003002/MANIFEST 2016-12-14 09:13:41.0 +0100
+++ new/Module-Reader-0.003003/MANIFEST 2017-06-21 18:21:35.0 +0200
@@ -4,9 +4,10 @@
 Makefile.PL
 MANIFEST   This list of files
 t/file-types.t
-t/lib/TestLib.pm
+t/lib/InlineModule.pm
 t/main.t
 t/memory.t
+t/test-data/lib/MyTestModule.pm
 META.yml Module YAML meta-data (added by 
MakeMaker)
 META.jsonModule JSON meta-data (added by 
MakeMaker)
 README   README file (added by Distar)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Module-Reader-0.003002/META.json 
new/Module-Reader-0.003003/META.json
--- old/Module-Reader-0.003002/META.json2016-12-14 09:13:41.0 
+0100
+++ new/Module-Reader-0.003003/META.json2017-06-21 18:21:35.0 
+0200
@@ -10,7 +10,7 @@
],
"meta-spec" : {
   "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
-  "version" : "2"
+  "version" : 2
},
"name" : "Module-Reader",
"no_index" : {
@@ -53,6 +53,6 @@
  "web" : "https://github.com/haarg/Module-Reader;
   }
},
-   "version" : "0.003002",
-   "x_serialization_backend" : "JSON::PP version 2.27300"
+   "version" : "0.003003",
+   "x_serialization_backend" : "JSON::PP version 2.94"
 }
diff -urN 

commit perl-ExtUtils-MakeMaker-CPANfile for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-ExtUtils-MakeMaker-CPANfile for 
openSUSE:Factory checked in at 2017-06-26 15:56:36

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


Package is "perl-ExtUtils-MakeMaker-CPANfile"

Mon Jun 26 15:56:36 2017 rev:3 rq:506088 version:0.08

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-ExtUtils-MakeMaker-CPANfile/perl-ExtUtils-MakeMaker-CPANfile.changes
2015-12-16 17:42:25.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-MakeMaker-CPANfile.new/perl-ExtUtils-MakeMaker-CPANfile.changes
   2017-06-26 15:56:40.226373219 +0200
@@ -1,0 +2,10 @@
+Wed Jun 21 05:36:40 UTC 2017 - co...@suse.com
+
+- updated to 0.08
+   see /usr/share/doc/packages/perl-ExtUtils-MakeMaker-CPANfile/Changes
+
+  0.08  2017/06/18
+  - fixed to convert META_ADD/MERGE properly when 2.0 elements
+are found (RT-122124)
+
+---

Old:

  ExtUtils-MakeMaker-CPANfile-0.07.tar.gz

New:

  ExtUtils-MakeMaker-CPANfile-0.08.tar.gz



Other differences:
--
++ perl-ExtUtils-MakeMaker-CPANfile.spec ++
--- /var/tmp/diff_new_pack.NS5n4f/_old  2017-06-26 15:56:41.282224307 +0200
+++ /var/tmp/diff_new_pack.NS5n4f/_new  2017-06-26 15:56:41.286223743 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-ExtUtils-MakeMaker-CPANfile
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,22 +17,24 @@
 
 
 Name:   perl-ExtUtils-MakeMaker-CPANfile
-Version:0.07
+Version:0.08
 Release:0
 %define cpan_name ExtUtils-MakeMaker-CPANfile
 Summary:Cpanfile Support for Eumm
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/ExtUtils-MakeMaker-CPANfile/
-Source0:
http://www.cpan.org/authors/id/I/IS/ISHIGAKI/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(CPAN::Meta::Converter) >= 2.141170
 BuildRequires:  perl(Module::CPANfile)
 BuildRequires:  perl(Test::More) >= 0.88
 BuildRequires:  perl(version) >= 0.76
+Requires:   perl(CPAN::Meta::Converter) >= 2.141170
 Requires:   perl(Module::CPANfile)
 Requires:   perl(Test::More) >= 0.88
 Requires:   perl(version) >= 0.76
@@ -65,6 +67,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README.md
+%doc Changes README.md
+%license LICENSE
 
 %changelog

++ ExtUtils-MakeMaker-CPANfile-0.07.tar.gz -> 
ExtUtils-MakeMaker-CPANfile-0.08.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-MakeMaker-CPANfile-0.07/Changes 
new/ExtUtils-MakeMaker-CPANfile-0.08/Changes
--- old/ExtUtils-MakeMaker-CPANfile-0.07/Changes2015-12-09 
15:20:08.0 +0100
+++ new/ExtUtils-MakeMaker-CPANfile-0.08/Changes2017-06-18 
04:47:02.0 +0200
@@ -1,5 +1,9 @@
 Revision history for Perl extension ExtUtils-MakeMaker-CPANfile
 
+0.08  2017/06/18
+- fixed to convert META_ADD/MERGE properly when 2.0 elements
+  are found (RT-122124)
+
 0.07  2015/12/09
 - supported recommends, suggests, conflicts
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-MakeMaker-CPANfile-0.07/META.json 
new/ExtUtils-MakeMaker-CPANfile-0.08/META.json
--- old/ExtUtils-MakeMaker-CPANfile-0.07/META.json  2015-12-09 
15:20:58.0 +0100
+++ new/ExtUtils-MakeMaker-CPANfile-0.08/META.json  2017-06-18 
04:47:16.0 +0200
@@ -4,13 +4,13 @@
   "Kenichi Ishigaki "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.143240",
+   "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter 
version 2.143240",
"license" : [
   "perl_5"
],
"meta-spec" : {
   "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
-  "version" : "2"
+  "version" : 2
},
"name" : "ExtUtils-MakeMaker-CPANfile",
"no_index" : {
@@ -32,6 +32,7 @@
   },
   "runtime" : {
  "requires" : {
+

commit bitlbee for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package bitlbee for openSUSE:Factory checked 
in at 2017-06-26 15:56:46

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


Package is "bitlbee"

Mon Jun 26 15:56:46 2017 rev:9 rq:506199 version:3.5.1

Changes:

--- /work/SRC/openSUSE:Factory/bitlbee/bitlbee.changes  2017-03-08 
01:16:21.894383835 +0100
+++ /work/SRC/openSUSE:Factory/.bitlbee.new/bitlbee.changes 2017-06-26 
15:56:47.621330266 +0200
@@ -1,0 +2,9 @@
+Wed Jun 14 12:05:51 UTC 2017 - tchva...@suse.com
+
+- Drop the xinetd service from the package
+  * We are switching to socket services, on this service it does
+not make much sense to actually enable it like that thus
+simply drom the xinetd binding
+- Remove always true version check
+
+---

Old:

  bitlbee.xinetd-suse.in



Other differences:
--
++ bitlbee.spec ++
--- /var/tmp/diff_new_pack.LmXNlt/_old  2017-06-26 15:56:48.137257502 +0200
+++ /var/tmp/diff_new_pack.LmXNlt/_new  2017-06-26 15:56:48.137257502 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bitlbee
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Pascal Bleser 
 #
 # All modifications and additions to the file contributed by third parties
@@ -26,7 +26,6 @@
 Group:  Productivity/Networking/IRC
 Url:http://www.bitlbee.org/
 Source: http://get.bitlbee.org/src/bitlbee-%{version}.tar.gz
-Source1:%{name}.xinetd-suse.in
 Source2:%{name}.service-suse.in
 BuildRequires:  fdupes
 BuildRequires:  glibc-devel
@@ -34,6 +33,7 @@
 BuildRequires:  libgcrypt-devel
 BuildRequires:  lzo-devel
 BuildRequires:  pkgconfig
+BuildRequires:  util-linux-systemd
 BuildRequires:  w3m
 BuildRequires:  xmlto
 BuildRequires:  pkgconfig(glib-2.0)
@@ -42,12 +42,7 @@
 BuildRequires:  pkgconfig(systemd)
 BuildRequires:  pkgconfig(zlib)
 Requires:   logrotate
-Requires:   xinetd
 Requires(pre):  shadow
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} > 1310
-BuildRequires:  util-linux-systemd
-%endif
 
 %description
 We are both console lovers. But it is annoying to have a few tty's open with
@@ -162,10 +157,6 @@
 make DESTDIR=%{buildroot} install install-etc
 make DESTDIR=%{buildroot} install-dev
 
-install -d "%{buildroot}%{_sysconfdir}/xinetd.d"
-sed -e "s+@@BITLBEE@@+%{_sbindir}/bitlbee+g" \
-< "%{SOURCE1}" > "%{buildroot}%{_sysconfdir}/xinetd.d/bitlbee"
-
 %fdupes -s
 
 install -D -p -m 0644 %{SOURCE2} %{buildroot}%{_unitdir}/%{name}.service
@@ -203,7 +194,6 @@
 %files -f %{name}.lang
 %defattr(-,root,root)
 %doc %dir %{_docdir}/%{name}
-%config(noreplace) %{_sysconfdir}/xinetd.d/bitlbee
 %attr(0750,root,bitlbee) %dir %{_sysconfdir}/bitlbee
 %{_unitdir}/%{name}.service
 %{_sbindir}/rc%{name}




commit cinnamon-screensaver for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package cinnamon-screensaver for 
openSUSE:Factory checked in at 2017-06-26 15:56:51

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


Package is "cinnamon-screensaver"

Mon Jun 26 15:56:51 2017 rev:9 rq:506202 version:3.4.1

Changes:

--- 
/work/SRC/openSUSE:Factory/cinnamon-screensaver/cinnamon-screensaver.changes
2017-05-27 13:14:50.921332639 +0200
+++ 
/work/SRC/openSUSE:Factory/.cinnamon-screensaver.new/cinnamon-screensaver.changes
   2017-06-26 15:56:52.728609957 +0200
@@ -1,0 +2,33 @@
+Mon Jun 26 08:54:15 UTC 2017 - sor.ale...@meowr.ru
+
+- Add the missing python3-xapp dependency (boo#1045920).
+
+---
+Wed Jun 21 16:11:48 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 3.4.1:
+  * stage.py: Kill any screensaver plugins when destroying all of
+the widgets - this will leave unfinished plugin processes.
+  * framedImage: Render images at their native size using the theme
+value as the maximum size, rather than desired size.
+This ensures the image displays at its best possible size for
+quality, but still makes sure an oversize image doesn't break
+anything.
+  * stage.py: Don't re-allocate the floating widgets unless
+necessary to prevent obscuring of the unlock widget.
+This prevents the small jump of the clock when waking the
+computer, depending on settings.
+  * framedImage: Remove some dead lines, use the correct css
+property, update commenting.
+  * Fix a typo in the GTK+ 3.20 CSS file.
+  * clock: Update to use new wall-clock api to set the correct
+update interval depending on the provided date/time format.
+  * Don't lock the screen in live or guest sessions
+  * framedImage.py: Stop using CSS for image size - since we now
+use the image's native size if it is reasonable to do so,
+there's no need for a theme to be involved.
+Just hardcode a sane maximum and keep images that size or less.
+It is not valid CSS (even though that's what we're using
+min-height for here).
+
+---

Old:

  cinnamon-screensaver-3.4.0.tar.gz

New:

  cinnamon-screensaver-3.4.1.tar.gz



Other differences:
--
++ cinnamon-screensaver.spec ++
--- /var/tmp/diff_new_pack.FbwFw1/_old  2017-06-26 15:56:53.272533245 +0200
+++ /var/tmp/diff_new_pack.FbwFw1/_new  2017-06-26 15:56:53.276532680 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   cinnamon-screensaver
-Version:3.4.0
+Version:3.4.1
 Release:0
 Summary:Cinnamon screensaver and locker
 License:GPL-2.0+
@@ -51,6 +51,7 @@
 Requires:   python3-gobject
 Requires:   python3-gobject-cairo
 Requires:   python3-setproctitle
+Requires:   python3-xapp
 Recommends: cinnamon-translations
 Recommends: xscreensaver-data
 Suggests:   xscreensaver-data-extra

++ cinnamon-screensaver-3.4.0.tar.gz -> cinnamon-screensaver-3.4.1.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cinnamon-screensaver-3.4.0/configure.ac 
new/cinnamon-screensaver-3.4.1/configure.ac
--- old/cinnamon-screensaver-3.4.0/configure.ac 2017-05-04 15:02:52.0 
+0200
+++ new/cinnamon-screensaver-3.4.1/configure.ac 2017-06-20 15:40:52.0 
+0200
@@ -2,7 +2,7 @@
 
 AC_PREREQ(2.60)
 AC_INIT([cinnamon-screensaver],
-[3.4.0],
+[3.4.1],
 [https://github.com/linuxmint/cinnamon-screensaver/issues])
 
 PKG_PROG_PKG_CONFIG([0.26])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cinnamon-screensaver-3.4.0/debian/changelog 
new/cinnamon-screensaver-3.4.1/debian/changelog
--- old/cinnamon-screensaver-3.4.0/debian/changelog 2017-05-04 
15:02:52.0 +0200
+++ new/cinnamon-screensaver-3.4.1/debian/changelog 2017-06-20 
15:40:52.0 +0200
@@ -1,3 +1,24 @@
+cinnamon-screensaver (3.4.1) sonya; urgency=medium
+
+  [ Michael Webster ]
+  * stage.py: Kill any screensaver plugins when destroying all of the widgets 
- this will leave unfinished plugin processes.
+  * framedImage: render images at their native size using the theme value as 
the maximum size, rather than desired size.  This ensures the image displays at 
its best possible size for quality, but still makes sure an oversize image 
doesn't break anything.
+  * stage.py: Don't re-allocate the floating widgets unless necessary to 
prevent obscuring of the unlock widget.  This prevents the small jump of the 
clock when waking the computer, depending on settings.
+  * 

commit python-Whoosh for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package python-Whoosh for openSUSE:Factory 
checked in at 2017-06-26 15:56:54

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


Package is "python-Whoosh"

Mon Jun 26 15:56:54 2017 rev:2 rq:506215 version:2.7.4

Changes:

--- /work/SRC/openSUSE:Factory/python-Whoosh/python-Whoosh.changes  
2015-04-27 22:09:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Whoosh.new/python-Whoosh.changes 
2017-06-26 15:56:55.552211728 +0200
@@ -1,0 +2,96 @@
+Mon Jun 26 09:07:38 UTC 2017 - tbecht...@suse.com
+
+- convert to singlespec
+- split -doc package
+- use files.pythonhosted.org as Source url
+- update to 2.7.4:
+  * Changed version number to 2.7.0.
+  * Added tag 2.7.0 for changeset 8abeb09483b9
+  * Results.extend() didn't update the cached length.
+  * Fixed VarBytesListColumn and FixedBytesListColumn.
+  * Handle an empty queue exception in mpwriter.
+  * Merging pull request with local commit.
+  * Added test for storing tuples.
+  * Remove caching decorator from VarBytesColumn reader.
+  * Added test for has_deletions() after an optimization.
+  * Try to avoid an UnboundLocalError in the DFA when MultiTerm.matcher() has
+an empty string.
+  * Don't try to write a vector if the list of items is empty.
+  * Implemented use of score_fn argument to NestedParent.
+  * Don't cache query -> bitset, since this somehow prevents the Searcher from
+being collected.
+  * Changed README docs link to point to readthedocs.org.
+  * Change uses of dump[s]() to always use protocol 2 instead of -1
+("use latest protocol") so indices created with Python 3.x are backwards
+compatible.
+  * Fix the analyzer in test_vector_unicode() to not lowercase, since this
+makes the test fail on some Python versions.
+  * Actually use the split_fn passed by the user. Not sure what happened here.
+  * Handle pickled Schema objects that don't have a _subfields attribute.
+  * Added fix and tests for calling expand_prefix() with unicode.
+  * Fix short code for Swedish in language aliases.
+  * Fix missing a consecutive token during highlighting
+  * Added estimate_size() methods to SpanNear2.
+  * Removed reference to "allfields" keyword argument.
+  * Added tests/english-words.10.gz to manifest so it's included in the 
distribution.
+  * Fix warnings in docs build.
+  * BufferedWriter should call close() instead of commit() when exiting a 
context.
+  * Reinstate fields.IDLIST's analyzer.
+  * Change the version of my fork to be distinct from the base repo.
+  * Backed out changeset 96255fc8ff17
+  * A typo in `whoosh.fields.KEYWORD` documentation
+  * Created new branch romanian-stemmer
+  * Skip ISO-8859-1 suffixes on Unicode strings
+  * Created new branch spanish-tokenizer
+  * Add sanity check for Spanish stemmer
+  * Fix sample highlight class
+  * Reorder the self._tempstorage.destroy() in SegmentWriter._finish to
+before the lock is released
+  * IOError from rmdir is ok if the error was ENOENT
+  * Fix reporting of total count in FilterCollector, based on PR #63 by Jannon 
Frank.
+  * Added a test for pickling a schema with a stemming analyzer.
+  * Initial unfinished, massive checkin of next-gen architecture.
+  * Fix forward-compatibility issue for Python 3.x.
+  * Write offsets in VarBytesColumn when there are more than a certain number 
of rows.
+  * Replaced porter stemming algorithm implementation with one based on the 
one in NLTK.
+  * Add IDEA's .cache directory to hgignore.
+  * Add IDEA's .cache directory to hgignore.
+  * Remove docstring chickenscratch.
+  * Fix test accidentally left with assert False at the end.
+  * Removed accidentally committed debug prints.
+  * Bumped version number for bugfix release.
+  * Added tag 2.7.1 for changeset 1bd4b9792eed
+  * Merging Bitbucket and local heads.
+  * Bumped version number.
+  * Added tag 2.7.2 for changeset f6bf123ac708
+  * Fixed logic for checking if floats are all whole in encode_weights.
+  * Change posting storage so the data from individual posts can be pulled
+out as raw bytes.
+  * Fixed error in CommaSeparatedTokenizer.
+  * Fixed import error.
+  * Minor changes.
+  * Updated VarBytesColumn to store offsets as well as lengths.
+  * Added context protocol to Index class. Store TOC file name in object.
+  * Switched to lighter-weight posting block format.
+  * Forgot to check in pfor.py.
+  * Reduced size of and references to whoosh.compat, in anticipation of
+using 3to2 for most things.
+  * Remove (object) from class definitions, assuming 3to2 will take care of it.
+  * Fixed problems from compat refactoring.
+  * Fixed problem with calling leaf matcher methods on a MultiMatcher.
+  * Don't encode bytes in _kws_to_query.
+  * Removed typing 

commit weechat for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package weechat for openSUSE:Factory checked 
in at 2017-06-26 15:56:45

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


Package is "weechat"

Mon Jun 26 15:56:45 2017 rev:43 rq:506197 version:1.9

Changes:

--- /work/SRC/openSUSE:Factory/weechat/weechat.changes  2017-05-16 
14:46:42.558027865 +0200
+++ /work/SRC/openSUSE:Factory/.weechat.new/weechat.changes 2017-06-26 
15:56:45.677604401 +0200
@@ -1,0 +2,17 @@
+Sun Jun 25 20:29:56 UTC 2017 - mimi...@gmail.com
+
+- update to 1.9
+* improve speed of nicklist bar item callback
+* add auto scroll of buflist bar with new option buflist.look.auto_scroll
+* add option buflist.format.name
+* add variables ${format_name}, ${current_buffer} and ${merged}@@ in buflist
+* display a warning in buflist when the script buffers.pl is loaded
+* add server/channel pointers in trigger IRC callbacks
+* add API functions config_option_get_string and hdata_compare
+* fix bind of Space key
+* many bugs fixed.
+* buflist.format.name
+* buflist.look.auto_scroll
+* F1/F2: scroll buflist bar
+
+---

Old:

  weechat-1.8.tar.xz
  weechat-1.8.tar.xz.asc

New:

  weechat-1.9.tar.xz
  weechat-1.9.tar.xz.asc



Other differences:
--
++ weechat.spec ++
--- /var/tmp/diff_new_pack.WVfw2W/_old  2017-06-26 15:56:46.489489897 +0200
+++ /var/tmp/diff_new_pack.WVfw2W/_new  2017-06-26 15:56:46.493489332 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   weechat
-Version:1.8
+Version:1.9
 Release:0
 Summary:Portable, Fast, Light and Extensible Chat Client
 License:GPL-3.0+

++ weechat-1.8.tar.xz -> weechat-1.9.tar.xz ++
 9818 lines of diff (skipped)





commit nemo for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package nemo for openSUSE:Factory checked in 
at 2017-06-26 15:56:48

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


Package is "nemo"

Mon Jun 26 15:56:48 2017 rev:14 rq:506200 version:3.4.4

Changes:

--- /work/SRC/openSUSE:Factory/nemo/nemo.changes2017-06-22 
10:40:51.297714749 +0200
+++ /work/SRC/openSUSE:Factory/.nemo.new/nemo.changes   2017-06-26 
15:56:49.869013263 +0200
@@ -1,0 +2,13 @@
+Mon Jun 26 08:54:15 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 3.4.4:
+  * nemo-icon-view-grid-container.c: Skip default placement if we
+are in auto-layout mode. We get false lazy flags on new icons
+since the original desktop did not use auto-layout. We need to
+handle this because we both store layout timestamps and provide
+auto-layout.
+  * nemo-window-slot.c: Initialise cache_bar to NULL, this is
+checked for in nemo-window-manage-views
+(nemo_window_slot_check_bad_cache_bar).
+
+---

Old:

  nemo-3.4.3.tar.gz

New:

  nemo-3.4.4.tar.gz



Other differences:
--
++ nemo.spec ++
--- /var/tmp/diff_new_pack.d2HnZb/_old  2017-06-26 15:56:50.424934858 +0200
+++ /var/tmp/diff_new_pack.d2HnZb/_new  2017-06-26 15:56:50.424934858 +0200
@@ -20,7 +20,7 @@
 %define sover   1
 %define typelib typelib-1_0-Nemo-3_0
 Name:   nemo
-Version:3.4.3
+Version:3.4.4
 Release:0
 Summary:File browser for Cinnamon
 License:GPL-2.0+

++ nemo-3.4.3.tar.gz -> nemo-3.4.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nemo-3.4.3/configure.ac new/nemo-3.4.4/configure.ac
--- old/nemo-3.4.3/configure.ac 2017-06-20 15:44:34.0 +0200
+++ new/nemo-3.4.4/configure.ac 2017-06-22 15:00:46.0 +0200
@@ -18,7 +18,7 @@
 m4_define(nemo_extension_current,  5)
 m4_define(nemo_extension_revision, 0)
 
-AC_INIT(nemo, 3.4.3, https://github.com/linuxmint/nemo)
+AC_INIT(nemo, 3.4.4, https://github.com/linuxmint/nemo)
 
 dnl ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nemo-3.4.3/debian/changelog 
new/nemo-3.4.4/debian/changelog
--- old/nemo-3.4.3/debian/changelog 2017-06-20 15:44:34.0 +0200
+++ new/nemo-3.4.4/debian/changelog 2017-06-22 15:00:46.0 +0200
@@ -1,3 +1,11 @@
+nemo (3.4.4) sonya; urgency=medium
+
+  [ Michael Webster ]
+  * nemo-icon-view-grid-container.c: skip default placement if we're in 
auto-layout mode.  We get false lazy flags on new icons since the original 
desktop did not use auto-layout.  We need to handle this because we both store 
layout timestamps and provide auto-layout.
+  * nemo-window-slot.c: Initialize cache_bar to NULL, this is checked for in 
nemo-window-manage-views (nemo_window_slot_check_bad_cache_bar)
+
+ -- Clement Lefebvre   Thu, 22 Jun 2017 15:00:12 +0200
+
 nemo (3.4.3) sonya; urgency=medium
 
   [ leigh123linux ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nemo-3.4.3/libnemo-private/nemo-file-operations.c 
new/nemo-3.4.4/libnemo-private/nemo-file-operations.c
--- old/nemo-3.4.3/libnemo-private/nemo-file-operations.c   2017-06-20 
15:44:34.0 +0200
+++ new/nemo-3.4.4/libnemo-private/nemo-file-operations.c   2017-06-22 
15:00:46.0 +0200
@@ -4338,15 +4338,16 @@
transfer_info->num_files ++;
report_copy_progress (copy_job, source_info, transfer_info);
 
-   if (debuting_files) {
+if (debuting_files) {
 if (target_is_desktop && position) {
 nemo_file_changes_queue_schedule_position_set (dest, 
*position, job->monitor_num);
-} else if (source_is_desktop) {
+} else if (source_is_desktop && copy_job->is_move) {
 nemo_file_changes_queue_schedule_position_remove (dest);
+}
+
+g_hash_table_replace (debuting_files, g_object_ref (dest), 
GINT_TO_POINTER (TRUE));
 }
 
-   g_hash_table_replace (debuting_files, g_object_ref 
(dest), GINT_TO_POINTER (TRUE));
-   }
if (copy_job->is_move) {
nemo_file_changes_queue_file_moved (src, dest);
} else {
@@ -5461,22 +5462,11 @@
char *primary, *secondary, *details;
int response;
gboolean handled_invalid_filename;
-gboolean target_is_desktop, source_is_desktop;
+gboolean target_is_desktop;
 
 

commit perl-RDF-Trine for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-RDF-Trine for openSUSE:Factory 
checked in at 2017-06-26 15:56:32

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


Package is "perl-RDF-Trine"

Mon Jun 26 15:56:32 2017 rev:7 rq:506085 version:1.018

Changes:

--- /work/SRC/openSUSE:Factory/perl-RDF-Trine/perl-RDF-Trine.changes
2017-06-12 15:33:08.726321157 +0200
+++ /work/SRC/openSUSE:Factory/.perl-RDF-Trine.new/perl-RDF-Trine.changes   
2017-06-26 15:56:35.866988005 +0200
@@ -1,0 +2,18 @@
+Wed Jun 21 06:17:22 UTC 2017 - co...@suse.com
+
+- updated to 1.018
+   see /usr/share/doc/packages/perl-RDF-Trine/Changes.ttl
+
+  
+  dcterms:isVersionOf  ;
+  dcterms:replaces
 ;
+  
+  doap:Version[
+  doap:revision "1.018" ;
+  doap:created  "2017-06-20" ;
+  ];
+  asc:changes [
+  asc:update   "Fix API inconsistency in 
RDF::Trine::Store::SPARQL (#149, #150 from @minusdavid)." ;
+  ] .
+
+---

Old:

  RDF-Trine-1.017.tar.gz

New:

  RDF-Trine-1.018.tar.gz



Other differences:
--
++ perl-RDF-Trine.spec ++
--- /var/tmp/diff_new_pack.Qmqzit/_old  2017-06-26 15:56:37.082816553 +0200
+++ /var/tmp/diff_new_pack.Qmqzit/_new  2017-06-26 15:56:37.086815990 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-RDF-Trine
-Version:1.017
+Version:1.018
 Release:0
 %define cpan_name RDF-Trine
 Summary:An RDF Framework for Perl

++ RDF-Trine-1.017.tar.gz -> RDF-Trine-1.018.tar.gz ++
 1916 lines of diff (skipped)




commit perl-Class-Unload for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-Class-Unload for 
openSUSE:Factory checked in at 2017-06-26 15:56:21

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


Package is "perl-Class-Unload"

Mon Jun 26 15:56:21 2017 rev:8 rq:506082 version:0.11

Changes:

--- /work/SRC/openSUSE:Factory/perl-Class-Unload/perl-Class-Unload.changes  
2015-07-08 06:59:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Class-Unload.new/perl-Class-Unload.changes 
2017-06-26 15:56:24.380607763 +0200
@@ -1,0 +2,14 @@
+Fri Jun 23 05:13:05 UTC 2017 - co...@suse.com
+
+- updated to 0.11
+   see /usr/share/doc/packages/perl-Class-Unload/Changes
+
+  0.11  2017-06-22 17:41:44+01:00 Europe/London
+  
+  - No changes since 0.10-TRIAL
+  
+  0.10  2017-06-08 13:12:04+01:00 Europe/London (TRIAL RELEASE)
+  
+  - Remove Moose metaclasses (RT#122048)
+
+---

Old:

  Class-Unload-0.09.tar.gz

New:

  Class-Unload-0.11.tar.gz



Other differences:
--
++ perl-Class-Unload.spec ++
--- /var/tmp/diff_new_pack.ESRj2p/_old  2017-06-26 15:56:25.228488199 +0200
+++ /var/tmp/diff_new_pack.ESRj2p/_new  2017-06-26 15:56:25.236487071 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Class-Unload
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,20 +17,22 @@
 
 
 Name:   perl-Class-Unload
-Version:0.09
+Version:0.11
 Release:0
 %define cpan_name Class-Unload
 Summary:Unload a class
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Class-Unload/
-Source0:
http://www.cpan.org/authors/id/I/IL/ILMARI/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/I/IL/ILMARI/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Class::Inspector)
+BuildRequires:  perl(Test::More) >= 0.88
+BuildRequires:  perl(Test::Requires)
 Requires:   perl(Class::Inspector)
 %{perl_requires}
 
@@ -54,6 +56,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes README
+%license LICENSE
 
 %changelog

++ Class-Unload-0.09.tar.gz -> Class-Unload-0.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Unload-0.09/Changes 
new/Class-Unload-0.11/Changes
--- old/Class-Unload-0.09/Changes   2015-07-03 12:11:34.0 +0200
+++ new/Class-Unload-0.11/Changes   2017-06-22 18:41:46.0 +0200
@@ -1,5 +1,13 @@
 Revision history for Class-Unload
 
+0.11  2017-06-22 17:41:44+01:00 Europe/London
+
+- No changes since 0.10-TRIAL
+
+0.10  2017-06-08 13:12:04+01:00 Europe/London (TRIAL RELEASE)
+
+- Remove Moose metaclasses (RT#122048)
+
 0.09  2015-07-03 11:11:32+01:00 Europe/London
 
 - Add META.json and resources metadata (RT#105634)
@@ -27,7 +35,7 @@
 
 0.02 Tue Apr 15, 2008
 - Fix deleting of parent symbol table entry for
-  multi-level class names.  
+  multi-level class names.
 - Clear @ISA before clearing the symbol table to
   make perl 5.10 invalidate its inheritance cache.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Unload-0.09/LICENSE 
new/Class-Unload-0.11/LICENSE
--- old/Class-Unload-0.09/LICENSE   2015-07-03 12:11:34.0 +0200
+++ new/Class-Unload-0.11/LICENSE   2017-06-22 18:41:46.0 +0200
@@ -1,4 +1,4 @@
-This software is copyright (c) 2015 by Dagfinn Ilmari Mannsåker.
+This software is copyright (c) 2017 by Dagfinn Ilmari Mannsåker.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2015 by Dagfinn Ilmari Mannsåker.
+This software is Copyright (c) 2017 by Dagfinn Ilmari Mannsåker.
 
 This is free software, licensed under:
 
@@ -272,7 +272,7 @@
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2015 by Dagfinn Ilmari Mannsåker.
+This software is Copyright (c) 2017 by Dagfinn Ilmari 

commit perl-Future for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-Future for openSUSE:Factory 
checked in at 2017-06-26 15:56:09

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


Package is "perl-Future"

Mon Jun 26 15:56:09 2017 rev:4 rq:506080 version:0.35

Changes:

--- /work/SRC/openSUSE:Factory/perl-Future/perl-Future.changes  2016-10-06 
12:46:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Future.new/perl-Future.changes 
2017-06-26 15:56:18.133488703 +0200
@@ -1,0 +2,14 @@
+Sat Jun 24 05:37:50 UTC 2017 - co...@suse.com
+
+- updated to 0.35
+   see /usr/share/doc/packages/perl-Future/Changes
+
+  0.352017/06/23 20:37:57
+  [CHANGES]
+   * Link to YAPC::EU talk video in SEE ALSO
+  
+  [BUGFIXES]
+   * Handle cancelled/completed slots when fmap is cancelled (RT120469)
+ (thanks tm604)
+
+---

Old:

  Future-0.34.tar.gz

New:

  Future-0.35.tar.gz



Other differences:
--
++ perl-Future.spec ++
--- /var/tmp/diff_new_pack.DYIDhF/_old  2017-06-26 15:56:19.041360679 +0200
+++ /var/tmp/diff_new_pack.DYIDhF/_new  2017-06-26 15:56:19.041360679 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Future
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:   perl-Future
-Version:0.34
+Version:0.35
 Release:0
 %define cpan_name Future
 Summary:Represent an Operation Awaiting Completion
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Future/
-Source0:
http://www.cpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -90,6 +90,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes examples LICENSE README
+%doc Changes examples README
+%license LICENSE
 
 %changelog

++ Future-0.34.tar.gz -> Future-0.35.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Future-0.34/Changes new/Future-0.35/Changes
--- old/Future-0.34/Changes 2016-10-02 19:42:55.0 +0200
+++ new/Future-0.35/Changes 2017-06-23 21:39:17.0 +0200
@@ -1,5 +1,13 @@
 Revision history for Future
 
+0.352017/06/23 20:37:57
+[CHANGES]
+ * Link to YAPC::EU talk video in SEE ALSO
+
+[BUGFIXES]
+ * Handle cancelled/completed slots when fmap is cancelled (RT120469)
+   (thanks tm604)
+
 0.342016/10/02 18:40:06
 [CHANGES]
  * Added Future::Mutex
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Future-0.34/LICENSE new/Future-0.35/LICENSE
--- old/Future-0.34/LICENSE 2016-10-02 19:42:55.0 +0200
+++ new/Future-0.35/LICENSE 2017-06-23 21:39:17.0 +0200
@@ -1,4 +1,4 @@
-This software is copyright (c) 2016 by Paul Evans .
+This software is copyright (c) 2017 by Paul Evans .
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2016 by Paul Evans .
+This software is Copyright (c) 2017 by Paul Evans .
 
 This is free software, licensed under:
 
@@ -272,7 +272,7 @@
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2016 by Paul Evans .
+This software is Copyright (c) 2017 by Paul Evans .
 
 This is free software, licensed under:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Future-0.34/META.json new/Future-0.35/META.json
--- old/Future-0.34/META.json   2016-10-02 19:42:55.0 +0200
+++ new/Future-0.35/META.json   2017-06-23 21:39:17.0 +0200
@@ -4,7 +4,7 @@
   "Paul Evans "
],
"dynamic_config" : 1,
-   "generated_by" : "Module::Build version 0.4218",
+   "generated_by" : "Module::Build version 0.422",
"license" : [
   "perl_5"
],
@@ -34,19 

commit perl-Test-Simple for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-Test-Simple for 
openSUSE:Factory checked in at 2017-06-26 15:56:18

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


Package is "perl-Test-Simple"

Mon Jun 26 15:56:18 2017 rev:5 rq:506081 version:1.302086

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Simple/perl-Test-Simple.changes
2017-05-16 14:38:08.050318422 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Test-Simple.new/perl-Test-Simple.changes   
2017-06-26 15:56:20.845106324 +0200
@@ -1,0 +2,10 @@
+Fri Jun 23 06:24:18 UTC 2017 - co...@suse.com
+
+- updated to 1.302086
+   see /usr/share/doc/packages/perl-Test-Simple/Changes
+
+  1.302086  2017-06-20 10:43:13-07:00 America/Los_Angeles
+  
+  - Make it possible to turn off result logging in Test::Builder
+
+---

Old:

  Test-Simple-1.302085.tar.gz

New:

  Test-Simple-1.302086.tar.gz



Other differences:
--
++ perl-Test-Simple.spec ++
--- /var/tmp/diff_new_pack.f4tHTS/_old  2017-06-26 15:56:21.401027930 +0200
+++ /var/tmp/diff_new_pack.f4tHTS/_new  2017-06-26 15:56:21.401027930 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Test-Simple
-Version:1.302085
+Version:1.302086
 Release:0
 %define cpan_name Test-Simple
 Summary:Basic utilities for writing tests

++ Test-Simple-1.302085.tar.gz -> Test-Simple-1.302086.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.302085/Changes 
new/Test-Simple-1.302086/Changes
--- old/Test-Simple-1.302085/Changes2017-05-02 04:24:38.0 +0200
+++ new/Test-Simple-1.302086/Changes2017-06-20 19:43:15.0 +0200
@@ -1,3 +1,7 @@
+1.302086  2017-06-20 10:43:13-07:00 America/Los_Angeles
+
+- Make it possible to turn off result logging in Test::Builder
+
 1.302085  2017-05-01 19:24:37-07:00 America/Los_Angeles
 
 - No Changes since last TRIAL
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.302085/MANIFEST 
new/Test-Simple-1.302086/MANIFEST
--- old/Test-Simple-1.302085/MANIFEST   2017-05-02 04:24:38.0 +0200
+++ new/Test-Simple-1.302086/MANIFEST   2017-06-20 19:43:15.0 +0200
@@ -149,6 +149,7 @@
 t/Legacy/is_deeply_with_threads.t
 t/Legacy/missing.t
 t/Legacy/new_ok.t
+t/Legacy/no_log_results.t
 t/Legacy/no_plan.t
 t/Legacy/no_tests.t
 t/Legacy/note.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.302085/META.json 
new/Test-Simple-1.302086/META.json
--- old/Test-Simple-1.302085/META.json  2017-05-02 04:24:38.0 +0200
+++ new/Test-Simple-1.302086/META.json  2017-06-20 19:43:15.0 +0200
@@ -47,7 +47,7 @@
  "url" : "http://github.com/Test-More/test-more/;
   }
},
-   "version" : "1.302085",
+   "version" : "1.302086",
"x_breaks" : {
   "Log::Dispatch::Config::TestLog" : "<= 0.02",
   "Net::BitTorrent" : "<= 0.052",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.302085/META.yml 
new/Test-Simple-1.302086/META.yml
--- old/Test-Simple-1.302085/META.yml   2017-05-02 04:24:38.0 +0200
+++ new/Test-Simple-1.302086/META.yml   2017-06-20 19:43:15.0 +0200
@@ -23,7 +23,7 @@
 resources:
   bugtracker: http://github.com/Test-More/test-more/issues
   repository: http://github.com/Test-More/test-more/
-version: '1.302085'
+version: '1.302086'
 x_breaks:
   Log::Dispatch::Config::TestLog: '<= 0.02'
   Net::BitTorrent: '<= 0.052'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.302085/Makefile.PL 
new/Test-Simple-1.302086/Makefile.PL
--- old/Test-Simple-1.302085/Makefile.PL2017-05-02 04:24:38.0 
+0200
+++ new/Test-Simple-1.302086/Makefile.PL2017-06-20 19:43:15.0 
+0200
@@ -24,7 +24,7 @@
 "Storable" => 0,
 "utf8" => 0
   },
-  "VERSION" => "1.302085",
+  "VERSION" => "1.302086",
   "test" => {
 "TESTS" => "t/*.t t/Legacy/*.t t/Legacy/Bugs/*.t t/Legacy/Builder/*.t 
t/Legacy/Regression/*.t t/Legacy/Simple/*.t t/Legacy/Test2/*.t 
t/Legacy/Tester/*.t t/Legacy/subtest/*.t t/Legacy_And_Test2/*.t 
t/Test2/acceptance/*.t t/Test2/behavior/*.t t/Test2/legacy/*.t 
t/Test2/modules/*.t t/Test2/modules/API/*.t t/Test2/modules/Event/*.t 
t/Test2/modules/Formatter/*.t t/Test2/modules/Hub/*.t 
t/Test2/modules/Hub/Interceptor/*.t t/Test2/modules/IPC/*.t 
t/Test2/modules/IPC/Driver/*.t t/Test2/modules/Tools/*.t 
t/Test2/modules/Util/*.t t/Test2/regression/*.t 

commit qtodotxt for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package qtodotxt for openSUSE:Factory 
checked in at 2017-06-26 15:55:08

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


Package is "qtodotxt"

Mon Jun 26 15:55:08 2017 rev:5 rq:506064 version:1.9.0

Changes:

--- /work/SRC/openSUSE:Factory/qtodotxt/qtodotxt.changes2017-05-16 
14:44:59.820463036 +0200
+++ /work/SRC/openSUSE:Factory/.qtodotxt.new/qtodotxt.changes   2017-06-26 
15:55:52.237140477 +0200
@@ -1,0 +2,5 @@
+Sat Jun 24 16:09:06 UTC 2017 - bwiedem...@suse.com
+
+- Use convert -strip to not add timestamps to png files
+
+---



Other differences:
--
++ qtodotxt.spec ++
--- /var/tmp/diff_new_pack.E8RRSF/_old  2017-06-26 15:55:52.801060956 +0200
+++ /var/tmp/diff_new_pack.E8RRSF/_new  2017-06-26 15:55:52.805060392 +0200
@@ -55,7 +55,7 @@
   --prefix=%{_prefix}
 
 # A tricky way to get all available icon sizes.
-convert %{name}/ui/resources/%{name}.ico packaging/%{name}.png
+convert -strip %{name}/ui/resources/%{name}.ico packaging/%{name}.png
 iter=0
 for size in 48 32 16; do
 install -Dpm 0644 packaging/%{name}-$iter.png \




commit perl-AnyEvent for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-AnyEvent for openSUSE:Factory 
checked in at 2017-06-26 15:56:04

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


Package is "perl-AnyEvent"

Mon Jun 26 15:56:04 2017 rev:32 rq:506078 version:7.14

Changes:

--- /work/SRC/openSUSE:Factory/perl-AnyEvent/perl-AnyEvent.changes  
2016-09-30 15:32:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-AnyEvent.new/perl-AnyEvent.changes 
2017-06-26 15:56:08.806803908 +0200
@@ -1,0 +2,6 @@
+Sun Jun 25 05:02:30 UTC 2017 - co...@suse.com
+
+- updated to 7.14
+   see /usr/share/doc/packages/perl-AnyEvent/Changes
+
+---

Old:

  AnyEvent-7.13.tar.gz

New:

  AnyEvent-7.14.tar.gz



Other differences:
--
++ perl-AnyEvent.spec ++
--- /var/tmp/diff_new_pack.ITHZp9/_old  2017-06-26 15:56:09.554698443 +0200
+++ /var/tmp/diff_new_pack.ITHZp9/_new  2017-06-26 15:56:09.558697879 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-AnyEvent
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-AnyEvent
-Version:7.13
+Version:7.14
 Release:0
 #Upstream: CHECK(GPL-1.0+ or Artistic-1.0)
 %define cpan_name AnyEvent
@@ -25,7 +25,7 @@
 License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/AnyEvent/
-Source0:
http://www.cpan.org/authors/id/M/ML/MLEHMANN/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 # MANUAL
 #BuildArch: noarch
@@ -94,6 +94,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes COPYING mktest README util
+%doc Changes mktest README util
+%license COPYING
 
 %changelog

++ AnyEvent-7.13.tar.gz -> AnyEvent-7.14.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-7.13/Changes new/AnyEvent-7.14/Changes
--- old/AnyEvent-7.13/Changes   2016-09-17 04:33:43.0 +0200
+++ new/AnyEvent-7.14/Changes   2017-06-24 01:44:56.0 +0200
@@ -9,9 +9,27 @@
 TODO: invalid. and localhost. specialcasing inside AEDNS and not AESocket 
(rfc6761)
 TODO: maybe implement env variable to give hosts precedence
 TODO: more formats for parse_ipv6 (single ipv6 address without port, ...p80, 
...#80)
-
 TODO: inet_aton maybe pack C4? no, add a comment why not
-TODO: hosts read multiple times for initial concurrent tcp_connect's?
+TODO: socket prepare callbacks, can they easily signal failure as well?
+
+7.14 Sat Jun 24 01:44:19 CEST 2017
+   - fix a crash bug in AnyEvent::Handle with openssl 1.1.0 (patched
+ by Paul Howarth and apparently tracked down by Mike McCauley).
+   - AnyEvent::Handle->keepalive was documented (and defined) twice
+  (found by Matt Merhar).
+- AnyEvent::Socket::tcp_bind/tcp_server would immediately unlink a unix
+  listening socket unless a guard is used. Change this so that no
+  cleanup will be performed unless a guard is used and document this 
more
+  clearly.
+- make tcp_bind/tcp_server error messages more regular.
+- work around latest perl upstream breakage - this time, perl5porters 
were
+  apparently bullied by a bogus CVE (CVE-2016-1238), and since distros
+  stupidly apply anything that has "security fix" stamped on it, it's 
likely
+  going to be a problem in practise (and working around it is trivial 
on
+  windows and unix).
+- add TCP_FASTOPEN/MSG_FASTOPEN and MSG_NOSIGNAL/MSG_MORE/MSG_DONTWAIT
+  to constants.
+- update warnings to common::sense 3.74 standards.
 
 7.13 Sat Sep 17 04:31:49 CEST 2016
- Only call tlsext_host_name for non-empty common names (reported
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-7.13/META.json new/AnyEvent-7.14/META.json
--- old/AnyEvent-7.13/META.json 2016-09-17 04:33:45.0 +0200
+++ new/AnyEvent-7.14/META.json 2017-06-24 01:50:35.0 +0200
@@ -4,7 +4,7 @@
   "unknown"
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter 
version 2.150001",
+   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 

commit qsyncthingtray for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package qsyncthingtray for openSUSE:Factory 
checked in at 2017-06-26 15:55:13

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


Package is "qsyncthingtray"

Mon Jun 26 15:55:13 2017 rev:2 rq:506065 version:0.5.7

Changes:

--- /work/SRC/openSUSE:Factory/qsyncthingtray/qsyncthingtray.changes
2017-05-17 10:54:10.704310998 +0200
+++ /work/SRC/openSUSE:Factory/.qsyncthingtray.new/qsyncthingtray.changes   
2017-06-26 15:55:56.592526304 +0200
@@ -1,0 +2,5 @@
+Sat Jun 24 15:55:41 UTC 2017 - bwiedem...@suse.com
+
+- Use convert -strip to not add timestamps to png files
+
+---



Other differences:
--
++ qsyncthingtray.spec ++
--- /var/tmp/diff_new_pack.sZ6Fav/_old  2017-06-26 15:55:57.748363313 +0200
+++ /var/tmp/diff_new_pack.sZ6Fav/_new  2017-06-26 15:55:57.752362750 +0200
@@ -89,7 +89,7 @@
 
 for size in 16 32 48 64 128 256 512; do
 mkdir -p %{buildroot}%{_datadir}/icons/hicolor/${size}x${size}/apps/
-convert -resize ${size}x${size} resources/images/Icon1024.png \
+convert -strip -resize ${size}x${size} resources/images/Icon1024.png \
   %{buildroot}%{_datadir}/icons/hicolor/${size}x${size}/apps/%{name}.png
 done
 




commit perl-CPAN-Perl-Releases for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-CPAN-Perl-Releases for 
openSUSE:Factory checked in at 2017-06-26 15:55:52

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


Package is "perl-CPAN-Perl-Releases"

Mon Jun 26 15:55:52 2017 rev:47 rq:506076 version:3.24

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-CPAN-Perl-Releases/perl-CPAN-Perl-Releases.changes
  2017-06-09 15:58:24.587180460 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-CPAN-Perl-Releases.new/perl-CPAN-Perl-Releases.changes
 2017-06-26 15:56:03.863500988 +0200
@@ -1,0 +2,6 @@
+Wed Jun 21 05:09:28 UTC 2017 - co...@suse.com
+
+- updated to 3.24
+   see /usr/share/doc/packages/perl-CPAN-Perl-Releases/Changes
+
+---

Old:

  CPAN-Perl-Releases-3.22.tar.gz

New:

  CPAN-Perl-Releases-3.24.tar.gz



Other differences:
--
++ perl-CPAN-Perl-Releases.spec ++
--- /var/tmp/diff_new_pack.4PLQcx/_old  2017-06-26 15:56:04.563402291 +0200
+++ /var/tmp/diff_new_pack.4PLQcx/_new  2017-06-26 15:56:04.571401163 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-CPAN-Perl-Releases
-Version:3.22
+Version:3.24
 Release:0
 %define cpan_name CPAN-Perl-Releases
 Summary:Mapping Perl releases on CPAN to the location of the tarballs

++ CPAN-Perl-Releases-3.22.tar.gz -> CPAN-Perl-Releases-3.24.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Perl-Releases-3.22/Changes 
new/CPAN-Perl-Releases-3.24/Changes
--- old/CPAN-Perl-Releases-3.22/Changes 2017-05-31 23:29:03.0 +0200
+++ new/CPAN-Perl-Releases-3.24/Changes 2017-06-20 11:08:34.0 +0200
@@ -1,8 +1,18 @@
 ==
-Changes from 2012-06-01 00:00:00 + to present.
+Changes from 2012-06-21 00:00:00 + to present.
 ==
 
 -
+version 3.24 at 2017-06-20 07:09:56 +
+-
+
+  Change: a38248b3e1a07cb2dc01ada285c6b83f1faa55a2
+  Author: Chris 'BinGOs' Williams 
+  Date : 2017-06-20 08:09:56 +
+
+Updated for v5.27.1 
+
+-
 version 3.22 at 2017-05-31 21:26:56 +
 -
 
@@ -1367,16 +1377,6 @@
 
 Updated for v5.17.2 
 
--
-version 0.60 at 2012-06-20 12:22:32 +
--
-
-  Change: 7b6fdfd80d1867dc3bee6fc2f60f618aaf15651b
-  Author: Chris 'BinGOs' Williams 
-  Date : 2012-06-20 13:22:32 +
-
-Updated for v5.17.1 
-
 =
-Plus 29 releases after 2012-06-01 00:00:00 +.
+Plus 30 releases after 2012-06-21 00:00:00 +.
 =
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Perl-Releases-3.22/META.json 
new/CPAN-Perl-Releases-3.24/META.json
--- old/CPAN-Perl-Releases-3.22/META.json   2017-05-31 23:29:03.0 
+0200
+++ new/CPAN-Perl-Releases-3.24/META.json   2017-06-20 11:08:34.0 
+0200
@@ -54,7 +54,7 @@
  "web" : "https://github.com/bingos/cpan-perl-releases;
   }
},
-   "version" : "3.22",
+   "version" : "3.24",
"x_serialization_backend" : "Cpanel::JSON::XS version 3.0233"
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Perl-Releases-3.22/META.yml 
new/CPAN-Perl-Releases-3.24/META.yml
--- old/CPAN-Perl-Releases-3.22/META.yml2017-05-31 23:29:03.0 
+0200
+++ new/CPAN-Perl-Releases-3.24/META.yml2017-06-20 11:08:34.0 
+0200
@@ -21,5 +21,5 @@
 resources:
   homepage: https://github.com/bingos/cpan-perl-releases
   repository: https://github.com/bingos/cpan-perl-releases.git
-version: '3.22'
+version: '3.24'
 x_serialization_backend: 'YAML::Tiny version 1.70'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CPAN-Perl-Releases-3.22/Makefile.PL 
new/CPAN-Perl-Releases-3.24/Makefile.PL
--- old/CPAN-Perl-Releases-3.22/Makefile.PL 2017-05-31 23:29:03.0 
+0200
+++ new/CPAN-Perl-Releases-3.24/Makefile.PL 2017-06-20 11:08:34.0 
+0200
@@ -26,7 +26,7 @@
 "IPC::Open3" => 0,
 "Test::More" => "0.47"
   },
-  "VERSION" => "3.22",
+  "VERSION" => "3.24",
   "test" => {
 "TESTS" => "t/*.t"
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit perl-Net-Whois-Raw for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-Net-Whois-Raw for 
openSUSE:Factory checked in at 2017-06-26 15:56:00

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


Package is "perl-Net-Whois-Raw"

Mon Jun 26 15:56:00 2017 rev:29 rq:506077 version:2.99009

Changes:

--- /work/SRC/openSUSE:Factory/perl-Net-Whois-Raw/perl-Net-Whois-Raw.changes
2017-06-09 15:58:17.760144031 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Net-Whois-Raw.new/perl-Net-Whois-Raw.changes   
2017-06-26 15:56:04.963345893 +0200
@@ -1,0 +2,9 @@
+Sun Jun 25 06:04:07 UTC 2017 - co...@suse.com
+
+- updated to 2.99009
+   see /usr/share/doc/packages/perl-Net-Whois-Raw/Changes
+
+  2.99009  Jun 24 2017 Gregory Oschwald
+  - Do not warn if newsrv is undefined
+
+---

Old:

  Net-Whois-Raw-2.99008.tar.gz

New:

  Net-Whois-Raw-2.99009.tar.gz



Other differences:
--
++ perl-Net-Whois-Raw.spec ++
--- /var/tmp/diff_new_pack.Xa1dtQ/_old  2017-06-26 15:56:05.447277651 +0200
+++ /var/tmp/diff_new_pack.Xa1dtQ/_new  2017-06-26 15:56:05.451277088 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Net-Whois-Raw
-Version:2.99008
+Version:2.99009
 Release:0
 %define cpan_name Net-Whois-Raw
 Summary:Get Whois information of domains and IP addresses

++ Net-Whois-Raw-2.99008.tar.gz -> Net-Whois-Raw-2.99009.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-Raw-2.99008/Changes 
new/Net-Whois-Raw-2.99009/Changes
--- old/Net-Whois-Raw-2.99008/Changes   2017-06-07 11:36:08.0 +0200
+++ new/Net-Whois-Raw-2.99009/Changes   2017-06-24 17:20:26.0 +0200
@@ -1,5 +1,8 @@
 Revision history for Perl module Net::Whois::Raw.
 
+2.99009  Jun 24 2017 Gregory Oschwald
+- Do not warn if newsrv is undefined 
+
 2.99008  Jun 7 2017 Alexander Nalobin
 - can bypass recursing to custom servers 
($Net::Whois::Raw::Data::whois_servers_no_recurse)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-Raw-2.99008/META.json 
new/Net-Whois-Raw-2.99009/META.json
--- old/Net-Whois-Raw-2.99008/META.json 2017-06-07 11:36:08.0 +0200
+++ new/Net-Whois-Raw-2.99009/META.json 2017-06-24 17:20:26.0 +0200
@@ -59,6 +59,6 @@
  "web" : "https://github.com/regru/Net-Whois-Raw;
   }
},
-   "version" : "2.99008"
+   "version" : "2.99009"
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-Raw-2.99008/META.yml 
new/Net-Whois-Raw-2.99009/META.yml
--- old/Net-Whois-Raw-2.99008/META.yml  2017-06-07 11:36:08.0 +0200
+++ new/Net-Whois-Raw-2.99009/META.yml  2017-06-24 17:20:26.0 +0200
@@ -36,4 +36,4 @@
 resources:
   bugtracker: https://github.com/regru/Net-Whois-Raw/issues
   repository: git://github.com/regru/Net-Whois-Raw.git
-version: '2.99008'
+version: '2.99009'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-Raw-2.99008/Makefile.PL 
new/Net-Whois-Raw-2.99009/Makefile.PL
--- old/Net-Whois-Raw-2.99008/Makefile.PL   2017-06-07 11:36:08.0 
+0200
+++ new/Net-Whois-Raw-2.99009/Makefile.PL   2017-06-24 17:20:26.0 
+0200
@@ -43,7 +43,7 @@
 "Test::More" => 0,
 "Test::RequiresInternet" => 0
   },
-  "VERSION" => "2.99008",
+  "VERSION" => "2.99009",
   "test" => {
 "TESTS" => "t/*.t"
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-Raw-2.99008/bin/pwhois 
new/Net-Whois-Raw-2.99009/bin/pwhois
--- old/Net-Whois-Raw-2.99008/bin/pwhois2017-06-07 11:36:08.0 
+0200
+++ new/Net-Whois-Raw-2.99009/bin/pwhois2017-06-24 17:20:26.0 
+0200
@@ -240,7 +240,7 @@
 
 =head1 VERSION
 
-version 2.99008
+version 2.99009
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-Raw-2.99008/dist.ini 
new/Net-Whois-Raw-2.99009/dist.ini
--- old/Net-Whois-Raw-2.99008/dist.ini  2017-06-07 11:36:08.0 +0200
+++ new/Net-Whois-Raw-2.99009/dist.ini  2017-06-24 17:20:26.0 +0200
@@ -4,7 +4,7 @@
 copyright_holder = Alexander Nalobin
 copyright_year   = 2002-2017
 
-version = 2.99008
+version = 2.99009
 
 [@Filter]
 -bundle = @Basic
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Net-Whois-Raw-2.99008/lib/Net/Whois/Raw/Common.pm 
new/Net-Whois-Raw-2.99009/lib/Net/Whois/Raw/Common.pm
--- 

commit texamator for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package texamator for openSUSE:Factory 
checked in at 2017-06-26 15:55:40

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


Package is "texamator"

Mon Jun 26 15:55:40 2017 rev:2 rq:506066 version:2.4.5+git.20170512.09c0307

Changes:

--- /work/SRC/openSUSE:Factory/texamator/texamator.changes  2017-05-24 
16:52:00.168740331 +0200
+++ /work/SRC/openSUSE:Factory/.texamator.new/texamator.changes 2017-06-26 
15:56:00.651953864 +0200
@@ -0,0 +1,5 @@
+---
+Sat Jun 24 15:49:25 UTC 2017 - bwiedem...@suse.com
+
+- Use convert -strip to not add timestamps to png files
+



Other differences:
--
++ texamator.spec ++
--- /var/tmp/diff_new_pack.ndYyrP/_old  2017-06-26 15:56:01.267867011 +0200
+++ /var/tmp/diff_new_pack.ndYyrP/_new  2017-06-26 15:56:01.271866447 +0200
@@ -85,7 +85,7 @@
   if [ "$_width" -ge 256 ]; then
 for s in 16 32 48 64 128 256; do
   mkdir -p %{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps
-  convert \
+  convert -strip \
 $_file -resize $s \
 %{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps/%{name}.png
 done




commit gifsicle for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package gifsicle for openSUSE:Factory 
checked in at 2017-06-26 15:55:04

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


Package is "gifsicle"

Mon Jun 26 15:55:04 2017 rev:3 rq:506061 version:1.88

Changes:

--- /work/SRC/openSUSE:Factory/gifsicle/gifsicle.changes2017-04-26 
21:43:59.857346590 +0200
+++ /work/SRC/openSUSE:Factory/.gifsicle.new/gifsicle.changes   2017-06-26 
15:55:40.794754020 +0200
@@ -1,0 +2,16 @@
+Sat Jun 24 23:25:25 CEST 2017 - manfre...@gmx.ch
+
+- add initialize_missing_image.patch:
+upstream fix, first hunk of commit a0a365136f44e5519f7f486b00a67387f641d0e8
+- add correct_zero-element_colormaps.patch:
+upstream fix, commit 1638a43201436f796bdf46d33b87468c089e90b8
+
+---
+Fri Apr 21 17:34:28 CEST 2017 - manfre...@gmx.ch
+
+- add no_status-1_when_valid_output.patch:
+  upstream fix, commit 0e02f7b62a9a3a344c34f92ddb7e178ad3b3e3ff
+- add fix_ignore-errors_and_merge_mode.patch:
+  upstream fix, commit 62110e4392230a7e49c339173ee41128ba4ccea9
+
+---

New:

  correct_zero-element_colormaps.patch
  fix_ignore-errors_and_merge_mode.patch
  initialize_missing_image.patch
  no_status-1_when_valid_output.patch



Other differences:
--
++ gifsicle.spec ++
--- /var/tmp/diff_new_pack.rtLu37/_old  2017-06-26 15:55:50.905328282 +0200
+++ /var/tmp/diff_new_pack.rtLu37/_new  2017-06-26 15:55:50.909327718 +0200
@@ -29,6 +29,10 @@
 Patch2: coverity2.patch
 Patch3: document-no-conserve-memory.patch
 Patch4: fix-out-of-bound.patch
+Patch5: no_status-1_when_valid_output.patch
+Patch6: fix_ignore-errors_and_merge_mode.patch
+Patch7: initialize_missing_image.patch
+Patch8: correct_zero-element_colormaps.patch
 Obsoletes:  ungifsicle < %{version}
 Provides:   ungifsicle = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -69,6 +73,10 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
+%patch6 -p1
+%patch7 -p1
+%patch8 -p1
 autoreconf
 
 %build

++ correct_zero-element_colormaps.patch ++
Correct uninitialized-memory bug with zero-element colormaps.
Tim Strazzere report. Also fixed by a0a3651.

diff --git a/src/opttemplate.c b/src/opttemplate.c
index 1f96c41..407b940 100644
--- a/src/opttemplate.c
+++ b/src/opttemplate.c
@@ -146,8 +146,9 @@ X(apply_frame)(palindex_type *dst, Gif_Stream* gfs, 
Gif_Image* gfi,
   for (i = 0; i < colormap->ncol; i++)
 map[i] = colormap->col[i].pixel;
   /* out-of-bounds colors map to 0, for the sake of argument */
+  y = colormap->ncol ? colormap->col[0].pixel : 0;
   for (i = colormap->ncol; i < 256; i++)
-map[i] = colormap->col[0].pixel;
+map[i] = y;
   if (gfi->transparent >= 0 && gfi->transparent < 256)
 map[gfi->transparent] = TRANSP;
   else
++ fix_ignore-errors_and_merge_mode.patch ++
diff --git a/src/gifsicle.c b/src/gifsicle.c
index d474dfc..c0de94b 100644
--- a/src/gifsicle.c
+++ b/src/gifsicle.c
@@ -521,8 +521,6 @@ show_frame(int imagenumber, int usename)
  * input a stream
  **/
 
-static int gifread_error_count;
-
 static void
 gifread_error(Gif_Stream* gfs, Gif_Image* gfi,
   int is_error, const char* message)
@@ -732,15 +730,20 @@ input_stream(const char *name)
 verbose_open('<', name);
 
   /* read file */
-  gifread_error_count = 0;
-  gfs = Gif_FullReadFile(f, gif_read_flags | GIF_READ_COMPRESSED,
- name, gifread_error);
+  {
+int old_error_count = error_count;
+gfs = Gif_FullReadFile(f, gif_read_flags | GIF_READ_COMPRESSED,
+   name, gifread_error);
+if ((!gfs || (Gif_ImageCount(gfs) == 0 && gfs->errors > 0))
+&& componentno != 1)
+  lerror(name, "trailing garbage ignored");
+if (!no_ignore_errors)
+  error_count = old_error_count;
+  }
 
   if (!gfs || (Gif_ImageCount(gfs) == 0 && gfs->errors > 0)) {
 if (componentno == 1)
   lerror(name, "file not in GIF format");
-else
-  lerror(name, "trailing garbage ignored");
 Gif_DeleteStream(gfs);
 if (verbosing)
   verbose_close('>');
++ initialize_missing_image.patch ++
Set missing image data to 0, rather than leaving it uninitialized.
Avoid valgrind warnings.

diff --git a/src/gifread.c b/src/gifread.c
index d2021ee..e9a58dd 100644
--- a/src/gifread.c
+++ b/src/gifread.c
@@ -373,6 +373,7 @@ read_image_data(Gif_Context *gfc, Gif_Reader *grr)
   sprintf(buf, "missing %ld %s of image data", delta,
   delta == 1 ? "pixel" : "pixels");
   

commit praat for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package praat for openSUSE:Factory checked 
in at 2017-06-26 15:54:43

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


Package is "praat"

Mon Jun 26 15:54:43 2017 rev:3 rq:506037 version:6.0.29

Changes:

--- /work/SRC/openSUSE:Factory/praat/praat.changes  2017-06-21 
13:58:04.355914195 +0200
+++ /work/SRC/openSUSE:Factory/.praat.new/praat.changes 2017-06-26 
15:55:04.971805557 +0200
@@ -1,0 +2,5 @@
+Sat Jun 24 16:10:28 UTC 2017 - bwiedem...@suse.com
+
+- Use convert -strip to not add timestamps to png files
+
+---



Other differences:
--
++ praat.spec ++
--- /var/tmp/diff_new_pack.VqvHDH/_old  2017-06-26 15:55:05.759694454 +0200
+++ /var/tmp/diff_new_pack.VqvHDH/_new  2017-06-26 15:55:05.763693890 +0200
@@ -61,7 +61,7 @@
  %{buildroot}/%{_datadir}/pixmaps \
  %{buildroot}/%{_datadir}/applications
 install -m 0755 %{name} %{buildroot}/%{_bindir}
-convert -resize 128x128 main/praat_win.ico %{name}.png
+convert -strip -resize 128x128 main/praat_win.ico %{name}.png
 install -m 0644 %{name}.png %{buildroot}/%{_datadir}/pixmaps
 # create .desktop file
 tee %{buildroot}/%{_datadir}/applications/%{name}.desktop << "EOF"




commit umbrello for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package umbrello for openSUSE:Factory 
checked in at 2017-06-26 15:55:01

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


Package is "umbrello"

Mon Jun 26 15:55:01 2017 rev:53 rq:506053 version:17.04.2

Changes:

--- /work/SRC/openSUSE:Factory/umbrello/umbrello.changes2017-06-15 
11:24:13.720323623 +0200
+++ /work/SRC/openSUSE:Factory/.umbrello.new/umbrello.changes   2017-06-26 
15:55:13.190646588 +0200
@@ -1,0 +2,6 @@
+Fri Jun 23 08:56:43 UTC 2017 - wba...@tmo.at
+
+- Fix the desktop file's Exec line, the executable is named
+  umbrello5 (boo#1045654)
+
+---



Other differences:
--
++ umbrello.spec ++
--- /var/tmp/diff_new_pack.Ls9eJQ/_old  2017-06-26 15:55:14.782422126 +0200
+++ /var/tmp/diff_new_pack.Ls9eJQ/_new  2017-06-26 15:55:14.782422126 +0200
@@ -24,7 +24,7 @@
 Summary:UML Modeller
 License:GPL-2.0 and GFDL-1.2
 Group:  Development/Tools/Other
-Url: http://www.kde.org
+Url:http://www.kde.org/
 Source0:%{name}-%{version}.tar.xz
 BuildRequires:  boost-devel
 BuildRequires:  extra-cmake-modules
@@ -82,6 +82,8 @@
 
 %install
   %kf5_makeinstall -C build
+  # fix desktop file (boo#1045654)
+  sed -i "s/Exec=umbrello/Exec=umbrello5/" 
%{buildroot}%{_kf5_applicationsdir}/org.kde.umbrello5.desktop
   %suse_update_desktop_fileorg.kde.umbrello5   Development Design
 
 %post -p /sbin/ldconfig




commit orion for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package orion for openSUSE:Factory checked 
in at 2017-06-26 15:54:39

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


Package is "orion"

Mon Jun 26 15:54:39 2017 rev:8 rq:506008 version:1.5.1+git~20170622

Changes:

--- /work/SRC/openSUSE:Factory/orion/orion.changes  2017-06-20 
09:40:04.466782845 +0200
+++ /work/SRC/openSUSE:Factory/.orion.new/orion.changes 2017-06-26 
15:55:03.603998436 +0200
@@ -1,0 +2,14 @@
+Fri Jun 23 07:38:06 UTC 2017 - pousadua...@gmail.com
+
+- Update to version 1.5.1+git~20170622:
+  * What I needed to do to build on MacOS (#182)
+  * Travis Mac build config (#184)
+
+---
+Wed Jun 21 09:01:50 UTC 2017 - pousadua...@gmail.com
+
+- Update to version 1.5.1+git~20170620:
+  * Build Windows installer on AppVeyor (#181)
+  * Provide "Watch live" menu item even when channel is offline (#176)
+
+---

Old:

  orion-1.5.1+git~20170612.tar.xz

New:

  orion-1.5.1+git~20170622.tar.xz



Other differences:
--
++ orion.spec ++
--- /var/tmp/diff_new_pack.uWjta6/_old  2017-06-26 15:55:04.183916660 +0200
+++ /var/tmp/diff_new_pack.uWjta6/_new  2017-06-26 15:55:04.183916660 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   orion
-Version:1.5.1+git~20170612
+Version:1.5.1+git~20170622
 Release:0
 Summary:Twitch stream client using Qt
 License:GPL-3.0

++ _servicedata ++
--- /var/tmp/diff_new_pack.uWjta6/_old  2017-06-26 15:55:04.223911020 +0200
+++ /var/tmp/diff_new_pack.uWjta6/_new  2017-06-26 15:55:04.223911020 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/alamminsalo/orion.git
-  d61db488c96621d8ffdf0ddf203a12e9966e707a
\ No newline at end of file
+  3f7c5df0a3672753567728e10004a84e315cb95f
\ No newline at end of file

++ orion-1.5.1+git~20170612.tar.xz -> orion-1.5.1+git~20170622.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orion-1.5.1+git~20170612/.travis.yml 
new/orion-1.5.1+git~20170622/.travis.yml
--- old/orion-1.5.1+git~20170612/.travis.yml1970-01-01 01:00:00.0 
+0100
+++ new/orion-1.5.1+git~20170622/.travis.yml2017-06-22 08:04:12.0 
+0200
@@ -0,0 +1,58 @@
+os:
+  - osx
+  
+env:
+  - QTBREWVER=5.9
+  
+language: cpp
+  
+compiler:
+  - clang
+  
+cache:
+  directories:
+- $HOME/Library/Caches/Homebrew
+
+before_install:
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install qt@$QTBREWVER jq; fi
+
+script:
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export QTDIR=$(brew info 
--json=v1 qt | jq -r '.[0].bottle.stable.cellar + "/" + .[0].name + "/" + 
.[0].installed[0].version'); fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export ORIONCONFIG=multimedia; fi
+  - $QTDIR/bin/qmake orion.pro CONFIG+=$ORIONCONFIG
+  - make
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash distfiles/deploy_mac.sh; fi
+  - mkdir -p artifacts
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then zip -vr --symlinks 
artifacts/orion.app.zip orion.app/; fi
+  
+deploy:
+  - provider: releases
+# To use this, create a Github token with the "public_repo" permission, 
and create an env var GITHUB_API_KEY in the Travis' project settings, making 
sure "Display value in build log" is set to OFF
+api_key: '$GITHUB_API_KEY'
+file: 'artifacts/orion.app.zip'
+skip_cleanup: true
+on:
+  tags: true
+  all_branches: true
+# To use this, create an AWS S3 bucket with public read access, create IAM 
policy with the text below replacing the placeholder with the bucket name, 
+# create an AWS user for automation (with access key/secret) and give them 
that IAM policy, and set the env vars indicated in the Travis' project 
settings, making sure "Display value in build log" is set to OFF
+  - provider: s3
+access_key_id: "$AWS_ACCESS_KEY_ID"
+secret_access_key: "$AWS_SECRET_ACCESS_KEY"
+bucket: "$AWS_S3_BUCKET"
+region: "$AWS_REGION"
+# Example policy to allow writes to a bucket
+# {
+# "Version": "2012-10-17",
+# "Statement": [
+# {
+# "Effect": "Allow",
+# "Action": "s3:PutObject",
+# "Resource": "arn:aws:s3:::BUCKET-NAME-GOES-HERE/*"
+# }
+# ]
+# }
+local_dir: artifacts
+skip_cleanup: true
+on:
+  all_branches: true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orion-1.5.1+git~20170612/README.md 
new/orion-1.5.1+git~20170622/README.md

commit love for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package love for openSUSE:Factory checked in 
at 2017-06-26 15:54:58

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


Package is "love"

Mon Jun 26 15:54:58 2017 rev:4 rq:506052 version:0.10.2

Changes:

--- /work/SRC/openSUSE:Factory/love/love.changes2017-04-28 
09:13:32.720034849 +0200
+++ /work/SRC/openSUSE:Factory/.love.new/love.changes   2017-06-26 
15:55:09.463172213 +0200
@@ -1,0 +2,5 @@
+Sat Jun 24 18:04:51 UTC 2017 - r...@fthiessen.de
+
+- Added update-luasocket.patch from upstream  to fix build with lua53
+
+---

New:

  update-luasocket.patch



Other differences:
--
++ love.spec ++
--- /var/tmp/diff_new_pack.v0rGsc/_old  2017-06-26 15:55:12.018811833 +0200
+++ /var/tmp/diff_new_pack.v0rGsc/_new  2017-06-26 15:55:12.022811269 +0200
@@ -26,6 +26,8 @@
 Url:http://love2d.org/
 Source: 
https://bitbucket.org/rude/love/downloads/%{name}-%{version}-linux-src.tar.gz
 Patch0: love.mpg123.patch
+# PATCH-FIX-UPSTREAM update-luasocket.patch -- 
https://bitbucket.org/rude/love/issues/1217/embedded-luasocket-should-be-updated
 
+Patch1: update-luasocket.patch
 Requires(pre):  desktop-file-utils
 Requires(pre):  shared-mime-info
 BuildRequires:  autoconf
@@ -57,6 +59,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 sed -i 's/\r$//' *.txt
 
 %build

++ update-luasocket.patch ++
 13616 lines (skipped)




commit java-9-openjdk for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package java-9-openjdk for openSUSE:Factory 
checked in at 2017-06-26 15:54:33

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


Package is "java-9-openjdk"

Mon Jun 26 15:54:33 2017 rev:5 rq:505977 version:9.0.0.0~174

Changes:

--- /work/SRC/openSUSE:Factory/java-9-openjdk/java-9-openjdk.changes
2017-05-27 13:17:48.69216 +0200
+++ /work/SRC/openSUSE:Factory/.java-9-openjdk.new/java-9-openjdk.changes   
2017-06-26 15:54:42.498974524 +0200
@@ -1,0 +2,31 @@
+Thu Jun 22 09:25:27 UTC 2017 - dims...@opensuse.org
+
+- Also require jpackage-utils instead of jpackage-utils-java9 in
+  java-9-openjdk-javadoc (boo#1042550).
+
+---
+Fri Jun 16 20:21:11 UTC 2017 - dims...@opensuse.org
+
+- Require jpackage-utils instead of jpackage-utils-java9: that
+  symbol had been dropped a while back, resulting in java 9 being
+  uninstallable (boo#1042550).
+
+---
+Fri Jun 16 14:05:59 UTC 2017 - fst...@suse.com
+
+- Update to upstream tag jdk-9+174
+- Removed patch:
+  * java-9-openjdk-minmax.patch
++ fixed upstream
+
+---
+Fri Jun  9 13:02:48 UTC 2017 - fst...@suse.com
+
+- Update to upstream tag jdk-9+173
+
+---
+Sun May 28 08:56:05 UTC 2017 - fst...@suse.com
+
+- Update to upstream tag jdk-9+171
+
+---

Old:

  0e522ff8b9f5.tar.bz2
  131e25008015.tar.bz2
  16d692be099c.tar.bz2
  177436a54ca1.tar.bz2
  5d9d2a65fb26.tar.bz2
  912cf69806d5.tar.bz2
  b2218d41edef.tar.bz2
  b25838a28195.tar.bz2
  java-9-openjdk-minmax.patch

New:

  3615768c1290.tar.bz2
  42f18c931bd4.tar.bz2
  50c077995aa2.tar.bz2
  5466f409346e.tar.bz2
  7d4006eaa088.tar.bz2
  944791f81601.tar.bz2
  b9c0b1050022.tar.bz2
  c2296642010f.tar.bz2



Other differences:
--
++ java-9-openjdk.spec ++
--- /var/tmp/diff_new_pack.aYK01d/_old  2017-06-26 15:54:44.478695357 +0200
+++ /var/tmp/diff_new_pack.aYK01d/_new  2017-06-26 15:54:44.482694794 +0200
@@ -32,17 +32,17 @@
 %global minorver0
 %global securityver 0
 %global patchver0
-%global buildver169
+%global buildver174
 %global root_projectjdk9
 %global root_repository jdk9
-%global root_revision   b25838a28195
-%global corba_revision  b2218d41edef
-%global hotspot_revision 16d692be099c
-%global jaxp_revision   5d9d2a65fb26
-%global jaxws_revision  912cf69806d5
-%global jdk_revision177436a54ca1
-%global langtools_revision 0e522ff8b9f5
-%global nashorn_revision 131e25008015
+%global root_revision   5466f409346e
+%global corba_revision  3615768c1290
+%global hotspot_revision 944791f81601
+%global jaxp_revision   b9c0b1050022
+%global jaxws_revision  c2296642010f
+%global jdk_revision42f18c931bd4
+%global langtools_revision 50c077995aa2
+%global nashorn_revision 7d4006eaa088
 %global icedtea_sound_version 1.0.1
 # priority must be 6 digits in total
 %global priority1905
@@ -175,8 +175,6 @@
 # Fix: implicit-pointer-decl
 Patch13:implicit-pointer-decl.patch
 #
-Patch14:java-9-openjdk-minmax.patch
-#
 Patch15:system-pcsclite.patch
 #
 # OpenJDK specific patches
@@ -294,9 +292,8 @@
 
 %package headless
 Summary:OpenJDK Runtime Environment
-# Require jpackage-utils (with java9 compatibility) for ownership of 
/usr/lib/jvm/
 Group:  Development/Languages/Java
-Requires:   jpackage-utils-java9
+Requires:   jpackage-utils
 # Require zoneinfo data in java8+ format provided by tzdata-java8 subpackage.
 Requires:   tzdata-java8
 # Post requires update-alternatives to install tool update-alternatives.
@@ -374,7 +371,7 @@
 %package javadoc
 Summary:OpenJDK API Documentation
 Group:  Development/Languages/Java
-Requires:   jpackage-utils-java9
+Requires:   jpackage-utils
 # Post requires update-alternatives to install javadoc alternative.
 Requires(post): update-alternatives
 # Postun requires update-alternatives to uninstall javadoc alternative.
@@ -463,7 +460,6 @@
 %patch10 -p1
 %patch12 -p1
 %patch13 -p1
-%patch14 -p1
 
 %if %{with_system_pcsc}
 %patch15 -p1

++ 16d692be099c.tar.bz2 -> 3615768c1290.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-9-openjdk/16d692be099c.tar.bz2 
/work/SRC/openSUSE:Factory/.java-9-openjdk.new/3615768c1290.tar.bz2 differ: 
char 11, line 1

++ 0e522ff8b9f5.tar.bz2 -> 42f18c931bd4.tar.bz2 ++
/work/SRC/openSUSE:Factory/java-9-openjdk/0e522ff8b9f5.tar.bz2 

commit jigdo for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package jigdo for openSUSE:Factory checked 
in at 2017-06-26 15:54:55

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


Package is "jigdo"

Mon Jun 26 15:54:55 2017 rev:7 rq:506051 version:0.7.3

Changes:

--- /work/SRC/openSUSE:Factory/jigdo/jigdo.changes  2017-03-20 
17:10:14.944056136 +0100
+++ /work/SRC/openSUSE:Factory/.jigdo.new/jigdo.changes 2017-06-26 
15:55:07.307476196 +0200
@@ -1,0 +2,8 @@
+Thu Jun 22 10:19:45 UTC 2017 - tchva...@suse.com
+
+- Disable libdb build as we want to remove berley db and this is
+  the only package depending on old 4.5 version
+- Add patch jigdo-0.7.1-debug.patch to build debug packages
+  Taken from Fedora
+
+---

New:

  jigdo-0.7.1-debug.patch



Other differences:
--
++ jigdo.spec ++
--- /var/tmp/diff_new_pack.uLt2It/_old  2017-06-26 15:55:07.951385395 +0200
+++ /var/tmp/diff_new_pack.uLt2It/_new  2017-06-26 15:55:07.955384832 +0200
@@ -28,9 +28,9 @@
 Patch2: jigdo-0.7.3-makefile-paths.patch
 Patch3: jigdo-0.7.3-add-includes.patch
 Patch4: jigdo-0.7.3-gcc7.patch
+Patch5: jigdo-0.7.1-debug.patch
 BuildRequires:  gcc-c++
 BuildRequires:  libbz2-devel
-BuildRequires:  libdb-4_5-devel
 BuildRequires:  zlib-devel
 Requires:   wget
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -52,14 +52,15 @@
 %patch2
 %patch3
 %patch4 -p1
+%patch5 -p1
 
 %build
 %configure \
--prefix=%{_prefix} \
--infodir=%{_infodir} \
--mandir=%{_mandir} \
+   --without-libdb \
--with-gui=no
-
 make %{?_smp_mflags}
 
 %install
@@ -71,7 +72,6 @@
 %doc changelog COPYING README THANKS doc/*.html doc/*.txt
 %{_bindir}/*
 %{_mandir}/*/*
-%{_datadir}/locale/*/*/*
 %{_datadir}/%{name}
 
 %changelog

++ jigdo-0.7.1-debug.patch ++
diff -up jigdo-0.7.3/configure.debug jigdo-0.7.3/configure
--- jigdo-0.7.3/configure.debug 2006-05-19 17:16:14.0 -0400
+++ jigdo-0.7.3/configure   2008-08-05 11:03:24.0 -0400
@@ -2676,8 +2676,6 @@ ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS 
 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS 
conftest.$ac_ext $LIBS >&5'
 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
 
-CFLAGS=`echo "$CFLAGS" | sed 's/\(^\| \)-g\( \|$\)/ /'`
-CXXFLAGS=`echo "$CXXFLAGS" | sed 's/\(^\| \)-g\( \|$\)/ /'`
 IF_GXX2="#"
 IFNOT_GXX2=""
 if test "$GXX" = yes; then



commit clipgrab for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package clipgrab for openSUSE:Factory 
checked in at 2017-06-26 15:54:48

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


Package is "clipgrab"

Mon Jun 26 15:54:48 2017 rev:2 rq:506038 version:3.6.4

Changes:

--- /work/SRC/openSUSE:Factory/clipgrab/clipgrab.changes2017-06-04 
01:50:50.488385952 +0200
+++ /work/SRC/openSUSE:Factory/.clipgrab.new/clipgrab.changes   2017-06-26 
15:55:06.691563048 +0200
@@ -1,0 +2,5 @@
+Sat Jun 24 15:41:31 UTC 2017 - bwiedem...@suse.com
+
+- use convert -strip to not add timestamps to .png files
+
+---



Other differences:
--
++ clipgrab.spec ++
--- /var/tmp/diff_new_pack.7o1SfD/_old  2017-06-26 15:55:07.151498191 +0200
+++ /var/tmp/diff_new_pack.7o1SfD/_new  2017-06-26 15:55:07.151498191 +0200
@@ -53,7 +53,7 @@
 # can't use ImageeMagick convert directly for it has no jpeg2000 support, cf. 
(boo#1036939)
 j2k_to_image -i icon512.jp2 -o 512.png
 for s in 16 32 128 256 ; do
-convert -resize ${s}x${s} 512.png ${s}.png
+convert -strip -resize ${s}x${s} 512.png ${s}.png
 done
 #cleanup
 rm -f moc_*




commit python-jedi for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package python-jedi for openSUSE:Factory 
checked in at 2017-06-26 15:54:30

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


Package is "python-jedi"

Mon Jun 26 15:54:30 2017 rev:6 rq:505954 version:0.10.2

Changes:

--- /work/SRC/openSUSE:Factory/python-jedi/python-jedi.changes  2017-05-17 
17:17:50.489412859 +0200
+++ /work/SRC/openSUSE:Factory/.python-jedi.new/python-jedi.changes 
2017-06-26 15:54:31.268558157 +0200
@@ -1,0 +2,5 @@
+Mon Jun 19 18:58:25 UTC 2017 - sebix+novell@sebix.at
+
+- only require python3-typing if necessary
+
+---



Other differences:
--
++ python-jedi.spec ++
--- /var/tmp/diff_new_pack.1VeJbZ/_old  2017-06-26 15:54:31.720494429 +0200
+++ /var/tmp/diff_new_pack.1VeJbZ/_new  2017-06-26 15:54:31.724493864 +0200
@@ -46,7 +46,11 @@
 BuildRequires:  %{python_module docopt}
 BuildRequires:  %{python_module pytest >= 2.3.5}
 BuildRequires:  %{python_module pytest-cache}
-BuildRequires:  %{python_module typing}
+BuildRequires:  python2-typing
+# do not require python3-typing for python >= 3.5
+%if 0%{?suse_version} <= 1320
+BuildRequires:  python3-typing
+%endif
 BuildRequires:  python3-tox
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit jamin for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package jamin for openSUSE:Factory checked 
in at 2017-06-26 15:54:06

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


Package is "jamin"

Mon Jun 26 15:54:06 2017 rev:22 rq:505913 version:0.95.0

Changes:

--- /work/SRC/openSUSE:Factory/jamin/jamin.changes  2012-09-26 
10:00:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.jamin.new/jamin.changes 2017-06-26 
15:54:14.846873820 +0200
@@ -1,0 +2,6 @@
+Fri Jun 23 16:44:22 CEST 2017 - ti...@suse.de
+
+- Fix segfault with the recent gtk update (bsc#1044765):
+  jamin-gtk-type-fix.patch
+
+---

New:

  jamin-gtk-type-fix.patch



Other differences:
--
++ jamin.spec ++
--- /var/tmp/diff_new_pack.kv9FDS/_old  2017-06-26 15:54:16.086698990 +0200
+++ /var/tmp/diff_new_pack.kv9FDS/_new  2017-06-26 15:54:16.094697861 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package jamin
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -40,6 +40,7 @@
 Source: %{name}-%{version}.tar.bz2
 Patch1: jamin-ladspa-path-fix.diff
 Patch2: jamin-link-to-dl.patch
+Patch3: jamin-gtk-type-fix.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: shared-mime-info
 
@@ -53,6 +54,7 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 intltoolize -f

++ jamin-gtk-type-fix.patch ++
---
 src/gtkmeter.c  |   32 +++-
 src/gtkmeter.h  |2 +-
 src/gtkmeterscale.c |   33 +++--
 src/gtkmeterscale.h |2 +-
 4 files changed, 8 insertions(+), 61 deletions(-)

--- a/src/gtkmeter.c
+++ b/src/gtkmeter.c
@@ -54,31 +54,7 @@ static int meter_count = 0;
 
 /* Local data */
 
-static GtkWidgetClass *parent_class = NULL;
-
-guint
-gtk_meter_get_type ()
-{
-  static guint meter_type = 0;
-
-  if (!meter_type)
-{
-  GtkTypeInfo meter_info =
-  {
-   "GtkMeter",
-   sizeof (GtkMeter),
-   sizeof (GtkMeterClass),
-   (GtkClassInitFunc) gtk_meter_class_init,
-   (GtkObjectInitFunc) gtk_meter_init,
-   /*(GtkArgSetFunc)*/ NULL,
-   /*(GtkArgGetFunc)*/ NULL,
-  };
-
-  meter_type = gtk_type_unique (gtk_widget_get_type (), _info);
-}
-
-  return meter_type;
-}
+G_DEFINE_TYPE (GtkMeter, gtk_meter, GTK_TYPE_WIDGET);
 
 static void
 gtk_meter_class_init (GtkMeterClass *class)
@@ -89,8 +65,6 @@ gtk_meter_class_init (GtkMeterClass *cla
   object_class = (GtkObjectClass*) class;
   widget_class = (GtkWidgetClass*) class;
 
-  parent_class = gtk_type_class (gtk_widget_get_type ());
-
   object_class->destroy = gtk_meter_destroy;
 
   widget_class->realize = gtk_meter_realize;
@@ -145,8 +119,8 @@ gtk_meter_destroy (GtkObject *object)
   if (meter->adjustment)
 gtk_object_unref (GTK_OBJECT (meter->adjustment));
 
-  if (GTK_OBJECT_CLASS (parent_class)->destroy)
-(* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
+  if (GTK_OBJECT_CLASS (gtk_meter_parent_class)->destroy)
+(* GTK_OBJECT_CLASS (gtk_meter_parent_class)->destroy) (object);
 }
 
 GtkAdjustment*
--- a/src/gtkmeterscale.c
+++ b/src/gtkmeterscale.c
@@ -43,32 +43,7 @@ static void meterscale_draw_notch(GtkMet
 
 /* Local data */
 
-static GtkWidgetClass *parent_class = NULL;
-
-guint
-gtk_meterscale_get_type ()
-{
-  static guint meterscale_type = 0;
-
-  if (!meterscale_type)
-{
-  GtkTypeInfo meterscale_info =
-  {
-   "GtkMeterScale",
-   sizeof (GtkMeterScale),
-   sizeof (GtkMeterScaleClass),
-   (GtkClassInitFunc) gtk_meterscale_class_init,
-   (GtkObjectInitFunc) gtk_meterscale_init,
-   /*(GtkArgSetFunc)*/ NULL,
-   /*(GtkArgGetFunc)*/ NULL,
-  };
-
-  meterscale_type = gtk_type_unique (gtk_widget_get_type (),
- _info);
-}
-
-  return meterscale_type;
-}
+G_DEFINE_TYPE (GtkMeterScale, gtk_meterscale, GTK_TYPE_WIDGET);
 
 static void
 gtk_meterscale_class_init (GtkMeterScaleClass *class)
@@ -79,8 +54,6 @@ gtk_meterscale_class_init (GtkMeterScale
   object_class = (GtkObjectClass*) class;
   widget_class = (GtkWidgetClass*) class;
 
-  parent_class = gtk_type_class (gtk_widget_get_type ());
-
   object_class->destroy = gtk_meterscale_destroy;
 
   widget_class->realize = gtk_meterscale_realize;
@@ -127,8 +100,8 @@ gtk_meterscale_destroy (GtkObject *objec
 
   meterscale = GTK_METERSCALE (object);
 
-  if (GTK_OBJECT_CLASS 

commit ibsim for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package ibsim for openSUSE:Factory checked 
in at 2017-06-26 15:54:21

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


Package is "ibsim"

Mon Jun 26 15:54:21 2017 rev:6 rq:505930 version:0.7

Changes:

--- /work/SRC/openSUSE:Factory/ibsim/ibsim.changes  2017-06-09 
15:57:00.475052164 +0200
+++ /work/SRC/openSUSE:Factory/.ibsim.new/ibsim.changes 2017-06-26 
15:54:25.121424981 +0200
@@ -1,0 +2,5 @@
+Fri Jun 23 15:40:51 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Replace dependency from libibmad-devel to infiniband-diags-devel
+
+---



Other differences:
--
++ ibsim.spec ++
--- /var/tmp/diff_new_pack.KE5UvG/_old  2017-06-26 15:54:25.981303727 +0200
+++ /var/tmp/diff_new_pack.KE5UvG/_new  2017-06-26 15:54:25.985303163 +0200
@@ -31,7 +31,7 @@
 Url:http://www.openfabrics.org
 BuildRequires:  autoconf
 BuildRequires:  automake
-BuildRequires:  libibmad-devel
+BuildRequires:  infiniband-diags-devel
 BuildRequires:  libibumad-devel
 BuildRequires:  libibverbs-devel
 BuildRequires:  libtool




commit python-imbox for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package python-imbox for openSUSE:Factory 
checked in at 2017-06-26 15:54:26

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


Package is "python-imbox"

Mon Jun 26 15:54:26 2017 rev:1 rq:505949 version:0.8.5

Changes:

New Changes file:

--- /dev/null   2017-06-22 07:57:20.067658250 +0200
+++ /work/SRC/openSUSE:Factory/.python-imbox.new/python-imbox.changes   
2017-06-26 15:54:26.685204468 +0200
@@ -0,0 +1,11 @@
+---
+Wed Apr 12 20:01:19 UTC 2017 - sebix+novell@sebix.at
+
+- convert to singlespec
+
+---
+Sat Jul 30 16:15:01 UTC 2016 - sebix+novell@sebix.at
+
+- Changes in 0.8.5 (9 June 2016)
+  ssl_context: Check SSLContext for IMAP4_SSL connections (issue #69)
+

New:

  imbox-0.8.5.tar.gz
  python-imbox.changes
  python-imbox.spec



Other differences:
--
++ python-imbox.spec ++
#
# spec file for package python-imbox
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# 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/
#


%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name:   python-imbox
Version:0.8.5
Release:0
Summary:Python IMAP for Human beings
License:MIT
Group:  Development/Languages/Python
Url:https://github.com/martinrusev/imbox
Source: 
https://files.pythonhosted.org/packages/source/i/imbox/imbox-%{version}.tar.gz
BuildRequires:  %{python_module devel}
BuildRequires:  %{python_module setuptools}
BuildRequires:  %{python_module six}
BuildRequires:  fdupes
BuildRequires:  python-rpm-macros
Requires:   python-six
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%python_subpackages

%description
Python library for reading IMAP mailboxes and converting email content to 
machine readable data

%prep
%setup -q -n imbox-%{version}

%build
%python_build

%install
%python_install
%fdupes %{buildroot}

%files %{python_files}
%defattr(-,root,root,-)
%doc README.md LICENSE
%{python_sitelib}/*

%changelog



commit mstflint for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package mstflint for openSUSE:Factory 
checked in at 2017-06-26 15:54:19

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


Package is "mstflint"

Mon Jun 26 15:54:19 2017 rev:8 rq:505929 version:4.6.0

Changes:

--- /work/SRC/openSUSE:Factory/mstflint/mstflint.changes2017-05-31 
12:21:10.752229038 +0200
+++ /work/SRC/openSUSE:Factory/.mstflint.new/mstflint.changes   2017-06-26 
15:54:21.109990643 +0200
@@ -1,0 +2,5 @@
+Fri Jun 23 15:40:51 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Replace dependency from libibmad-devel to infiniband-diags-devel
+
+---



Other differences:
--
++ mstflint.spec ++
--- /var/tmp/diff_new_pack.Qh9pxO/_old  2017-06-26 15:54:22.369812993 +0200
+++ /var/tmp/diff_new_pack.Qh9pxO/_new  2017-06-26 15:54:22.369812993 +0200
@@ -42,7 +42,7 @@
 Patch5: mstflint-gcc7.patch
 
 BuildRequires:  gcc-c++
-BuildRequires:  libibmad-devel
+BuildRequires:  infiniband-diags-devel
 BuildRequires:  libtool
 BuildRequires:  zlib-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit opa-fm for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package opa-fm for openSUSE:Factory checked 
in at 2017-06-26 15:54:14

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


Package is "opa-fm"

Mon Jun 26 15:54:14 2017 rev:3 rq:505928 version:10.4.0

Changes:

--- /work/SRC/openSUSE:Factory/opa-fm/opa-fm.changes2017-06-09 
15:57:14.881018873 +0200
+++ /work/SRC/openSUSE:Factory/.opa-fm.new/opa-fm.changes   2017-06-26 
15:54:19.202259657 +0200
@@ -1,0 +2,5 @@
+Fri Jun 23 15:40:51 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Replace dependency from libibmad-devel to infiniband-diags-devel
+
+---



Other differences:
--
++ opa-fm.spec ++
--- /var/tmp/diff_new_pack.smVS0d/_old  2017-06-26 15:54:20.078136148 +0200
+++ /var/tmp/diff_new_pack.smVS0d/_new  2017-06-26 15:54:20.078136148 +0200
@@ -31,8 +31,8 @@
 Patch1: 0001-Fall-back-to-custom-vendor-if-os_vendor-fails.patch
 Patch2: opa-fm-use-RPM_OPT_FLAGS.patch
 BuildRequires:  gcc-c++
+BuildRequires:  infiniband-diags-devel
 BuildRequires:  libexpat-devel
-BuildRequires:  libibmad-devel
 BuildRequires:  libopenssl-devel
 BuildRequires:  ncurses-devel
 BuildRequires:  rdma-core-devel




commit redis for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package redis for openSUSE:Factory checked 
in at 2017-06-26 15:53:58

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


Package is "redis"

Mon Jun 26 15:53:58 2017 rev:33 rq:505868 version:3.2.9

Changes:

--- /work/SRC/openSUSE:Factory/redis/redis.changes  2017-05-18 
20:52:00.532026828 +0200
+++ /work/SRC/openSUSE:Factory/.redis.new/redis.changes 2017-06-26 
15:54:05.964126396 +0200
@@ -1,0 +2,9 @@
+Wed Jun 21 16:28:36 UTC 2017 - ch...@computersalat.de
+
+- cleanup service file
+- add redis.sysctl file
+- update README.SUSE
+  * add info for socket usage per service
+  * add info for limits per service (LimitNOFILE=10240)
+
+---

New:

  redis.sysctl



Other differences:
--
++ redis.spec ++
--- /var/tmp/diff_new_pack.Al6AWP/_old  2017-06-26 15:54:07.627891785 +0200
+++ /var/tmp/diff_new_pack.Al6AWP/_new  2017-06-26 15:54:07.631891220 +0200
@@ -37,6 +37,7 @@
 Source3:redis@.service
 Source4:redis.tmpfiles.d
 Source5:README.SUSE
+Source6:%{name}.sysctl
 # PATCH-FIX-OPENSUSE -- openSUSE-style init script
 Patch0: %{name}-initscript.patch
 # PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
@@ -96,6 +97,9 @@
 install -D -m 0640 redis.conf   
%{buildroot}%{_conf_dir}/default.conf.example
 install -D -m 0640 sentinel.conf
%{buildroot}%{_conf_dir}/sentinel.conf.example
 
+# some sysctl stuff
+install -D -m 0644 %{S:6}   
%{buildroot}%{_sysconfdir}/sysctl.d/00-redis.conf
+
 #
 # init
 #
@@ -166,6 +170,7 @@
 %defattr(-,root,root,-)
 %doc 00-RELEASENOTES BUGS CONTRIBUTING COPYING README.md
 %config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
+%config(noreplace) %{_sysconfdir}/sysctl.d/00-redis.conf
 %{_bindir}/redis-*
 %{_sbindir}/redis-*
 %{_sbindir}/rc%{name}

++ README.SUSE ++
--- /var/tmp/diff_new_pack.Al6AWP/_old  2017-06-26 15:54:07.663886709 +0200
+++ /var/tmp/diff_new_pack.Al6AWP/_new  2017-06-26 15:54:07.663886709 +0200
@@ -13,13 +13,25 @@
 
 If you want to run more than one instance you also have to change the
 socket path and/or the ip:port combination.
+ e.g. /var/run/redis/otherapp.sock
+
+If you plan to use redis in combination with apache, then you should
+add 'redis' to apache group and set 'unixsocketperm 770':
+$ usermod -a -G redis wwwrun
+$ systemctl restart apache2
+then apache is able to connect to redis socket
 
 Also make sure if you copy configurations from somewhere, that "daemonize"
 should be set to "no".
 
-3. create the database dir:
+3a. create the database dir:
 $ install -d -o redis -g redis -m 0750 /var/lib/redis/otherapp/
 
+3b. add limits (ulimit) to each service
+$ install -d -m 0755 /etc/systemd/system/redis@otherapp.service.d
+$ echo "[Service]
+LimitNOFILE=10240" > /etc/systemd/system/redis@otherapp.service.d/limits.conf
+
 4. systemctl start redis@otherapp
 5. systemctl enable redis@otherapp
 

++ redis.sysctl ++
### remove redis Warnings about

# WARNING: The TCP backlog setting of 511 cannot be enforced because
#  /proc/sys/net/core/somaxconn is set to the lower value of 128.
net.core.somaxconn=512

# WARNING overcommit_memory is set to 0! Background save may fail
# under low memory condition. To fix this issue add
# 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or
# run the command 'sysctl -w vm.overcommit_memory=1' for this to take
# effect.
vm.overcommit_memory=1
++ redis@.service ++
--- /var/tmp/diff_new_pack.Al6AWP/_old  2017-06-26 15:54:07.735876557 +0200
+++ /var/tmp/diff_new_pack.Al6AWP/_new  2017-06-26 15:54:07.739875994 +0200
@@ -12,9 +12,5 @@
 ExecStart=/usr/sbin/redis-server /etc/redis/%i.conf
 Restart=on-failure
 
-#ExecStart=/usr/sbin/openvpn --daemon --suppress-timestamps --writepid 
/var/run/openvpn/%i.pid --cd /etc/openvpn/ --config %i.conf
-#ExecReload=/sbin/killproc -p /var/run/openvpn/%i.pid -HUP /usr/sbin/openvpn
-
 [Install]
 WantedBy=multi-user.target redis.target
-




commit live-fat-stick for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package live-fat-stick for openSUSE:Factory 
checked in at 2017-06-26 15:53:42

Comparing /work/SRC/openSUSE:Factory/live-fat-stick (Old)
 and  /work/SRC/openSUSE:Factory/.live-fat-stick.new (New)


Package is "live-fat-stick"

Mon Jun 26 15:53:42 2017 rev:9 rq:505864 version:0.4.2

Changes:

--- /work/SRC/openSUSE:Factory/live-fat-stick/live-fat-stick.changes
2016-08-17 12:06:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.live-fat-stick.new/live-fat-stick.changes   
2017-06-26 15:53:47.786689630 +0200
@@ -1,0 +2,7 @@
+Wed Jun 21 12:18:47 UTC 2017 - opensuse.lietuviu.ka...@gmail.com
+
+- tag 0.4.2 version
+- use --force to install grub
+- more explanations in GUI
+
+---



Other differences:
--
++ live-fat-stick.spec ++
--- /var/tmp/diff_new_pack.ELCpJG/_old  2017-06-26 15:53:48.846540178 +0200
+++ /var/tmp/diff_new_pack.ELCpJG/_new  2017-06-26 15:53:48.850539615 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   live-fat-stick
-Version:0.4.1
+Version:0.4.2
 Release:0
 Summary:Create live usb stick on fat partition
 License:GPL-2.0+
@@ -32,7 +32,11 @@
 Requires:   parted
 Requires:   syslinux
 Requires:   util-linux
+%if 0%{?fedora_version}
+Requires:   qemu-kvm
+%else
 Requires:   qemu-tools 
+%endif
 %if 0%{?suse_version}
 BuildRequires:  update-desktop-files
 %endif
@@ -77,7 +81,11 @@
 Requires:   grub2
 Requires:   parted
 Requires:   util-linux
+%if 0%{?fedora_version}
+Requires:   qemu-kvm
+%else
 Requires:   qemu-tools
+%endif
 Summary:Create multiboot live usb stick using grub2
 Group:  System/Management
 

++ live-grub-stick ++
--- /var/tmp/diff_new_pack.ELCpJG/_old  2017-06-26 15:53:48.886534539 +0200
+++ /var/tmp/diff_new_pack.ELCpJG/_new  2017-06-26 15:53:48.886534539 +0200
@@ -328,7 +328,7 @@
 grub2_stuff () {
echo "installing grub2 on $stickdevice"
mkdir -p $stickmount/boot
-   $grubinstall --target=i386-pc --boot-directory=$stickmount/boot 
$stickdevice
+   $grubinstall --force --target=i386-pc --boot-directory=$stickmount/boot 
$stickdevice
echo "setting $stickdevice partition $stickpart active"
parted $stickdevice set $stickpart boot on &>/dev/null
cfg_setup

++ live-usb-gui ++
--- /var/tmp/diff_new_pack.ELCpJG/_old  2017-06-26 15:53:48.906531719 +0200
+++ /var/tmp/diff_new_pack.ELCpJG/_new  2017-06-26 15:53:48.906531719 +0200
@@ -48,8 +48,15 @@
 fileselectpath="/"
 fileselectfilter="*iso"
 usbselecttitle="Select the target USB device"
+usbselecttext="Select the correct device, usually the one with a number at the 
end;\n\
+usually device without a number at the end is for isohybrid."
+nousbmedia="No USB media found. Please insert USB stick and try again."
 distributionlist="suse suse-persistent fedora mint ubuntu ubuntu-persistent 
ipxe isohybrid"
 distrotitle="Select the distribution of the iso"
+scriptstitle="Select script to run"
+scriptstext="Select live-fat-stick for vfat/fat32 partition,\n\
+live-grub-stick for vfat/fat32/ntfs/etx3/ext4\n\
+and any other partition supported by grub2"
 supportedscripts="live-grub-stick live-fat-stick"
 for i in $(echo "$supportedscripts"); do
 if which $i > /dev/null 2>&1; then
@@ -64,6 +71,15 @@
echo $i
 #fi
 done)
+if [ -z "$usbdevicelist" ] ; then
+   if [[ $popup == zenity ]]; then
+   zenity --error --text="$nousbmedia"
+   else
+   kdialog --error "$nousbmedia"
+   fi
+   clean_up
+   exit 1
+fi
 usbdevicelistkd=$(for device in $usbdevicelist; do
printf "%s %s %s" ${device} ${device} off 
printf "\n"
@@ -86,20 +102,20 @@
 if [[ $popup == zenity ]]; then
sourceiso=$(zenity --file-selection --title="$fileselecttitle" 
--file-filter="$fileselectfilter")
check_variable $sourceiso
-   usbdevice=$(zenity --list --title="$usbselecttitle" --column="USB 
device" $usbdevicelist)
-   check_variable $usbdevice
distroname=$(zenity --list --title="distrotitle" 
--column="Distribution:" $distributionlist)
check_variable $distroname
-   scriptorun=$(zenity --list --title="Select script to run" 
--column="Scripts:" $scriptlist)
+   usbdevice=$(zenity --list --title="$usbselecttitle" --text 
"$usbselecttext" --column="USB device" $usbdevicelist)
+   check_variable $usbdevice
+   scriptorun=$(zenity --list --title="Select script to run" --text 
"$scriptstext" --column="Scripts:" $scriptlist)
 check_variable $scriptorun
 else
sourceiso=$(kdialog --title 

commit conky for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package conky for openSUSE:Factory checked 
in at 2017-06-26 15:53:22

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


Package is "conky"

Mon Jun 26 15:53:22 2017 rev:18 rq:505862 version:1.10.6

Changes:

--- /work/SRC/openSUSE:Factory/conky/conky.changes  2017-03-21 
22:51:54.774732206 +0100
+++ /work/SRC/openSUSE:Factory/.conky.new/conky.changes 2017-06-26 
15:53:29.217308125 +0200
@@ -1,0 +2,5 @@
+Tue Jun 20 09:18:31 UTC 2017 - o...@aepfle.de
+
+- Fix build with conky.luamm.patch
+
+---

New:

  conky.luamm.patch



Other differences:
--
++ conky.spec ++
--- /var/tmp/diff_new_pack.sFjRTD/_old  2017-06-26 15:53:32.032911093 +0200
+++ /var/tmp/diff_new_pack.sFjRTD/_new  2017-06-26 15:53:32.036910529 +0200
@@ -34,6 +34,7 @@
 # our ncurses doesn't supply a .pc file
 Patch2: conky-1.10.4-ncurses.patch
 Patch3: conky.timestamp.patch
+Patch4: conky.luamm.patch
 BuildRequires:  cmake
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  docbook2x
@@ -147,6 +148,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 mkdir build && cd build

++ conky.luamm.patch ++
--- a/src/luamm.hh
+++ b/src/luamm.hh
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 



commit bluefish for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package bluefish for openSUSE:Factory 
checked in at 2017-06-26 15:53:49

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


Package is "bluefish"

Mon Jun 26 15:53:49 2017 rev:11 rq:505865 version:2.2.10

Changes:

--- /work/SRC/openSUSE:Factory/bluefish/bluefish.changes2017-04-11 
09:36:47.991966732 +0200
+++ /work/SRC/openSUSE:Factory/.bluefish.new/bluefish.changes   2017-06-26 
15:53:54.669719042 +0200
@@ -1,0 +2,6 @@
+Wed Jun 21 13:49:54 UTC 2017 - tchva...@suse.com
+
+- Remove aspell and rely on enchant for spellcheck
+  * This means the bluefish will use hunspell now
+
+---



Other differences:
--
++ bluefish.spec ++
--- /var/tmp/diff_new_pack.IulOzj/_old  2017-06-26 15:53:56.937399272 +0200
+++ /var/tmp/diff_new_pack.IulOzj/_new  2017-06-26 15:53:56.937399272 +0200
@@ -28,7 +28,6 @@
 Source2:%{name}.keyring
 # PATCH-FIX-OPENSUSE remove-python-class-shebang.patch - Remove unneeded 
shebang from python class files.
 Patch0: remove-python-class-shebang.patch
-BuildRequires:  aspell-devel
 BuildRequires:  enchant-devel
 BuildRequires:  fdupes
 BuildRequires:  gettext-devel






commit crmsh for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2017-06-26 15:52:59

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


Package is "crmsh"

Mon Jun 26 15:52:59 2017 rev:125 rq:505852 version:3.0.0

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2017-06-23 
09:18:50.798350125 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2017-06-26 
15:52:59.997428443 +0200
@@ -1,0 +2,10 @@
+Fri Jun 23 09:27:04 UTC 2017 - kgronl...@suse.com
+
+- medium: bootstrap: Fix watchdog SBD envvars (bsc#1045118)
+  * Add 0019-medium-bootstrap-Fix-watchdog-SBD-envvars-bsc-104511.patch
+- medium: scripts: Relax broadcast IP validation (bsc#1044233)
+  * Add 0018-medium-scripts-Relax-broadcast-IP-validation-bsc-104.patch
+- medium: scripts: Clarify help text for NFS wizard (bsc#1044244)
+  * Add 0017-medium-scripts-Clarify-help-text-for-NFS-wizard-bsc-.patch
+
+---

New:

  0017-medium-scripts-Clarify-help-text-for-NFS-wizard-bsc-.patch
  0018-medium-scripts-Relax-broadcast-IP-validation-bsc-104.patch
  0019-medium-bootstrap-Fix-watchdog-SBD-envvars-bsc-104511.patch



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.2hHnUj/_old  2017-06-26 15:53:00.757321290 +0200
+++ /var/tmp/diff_new_pack.2hHnUj/_new  2017-06-26 15:53:00.757321290 +0200
@@ -74,6 +74,12 @@
 Patch15:0015-medium-ui_cluster-Add-force-to-ha-cluster-remove-bsc.patch
 # PATCH-FIX-UPSTREAM: high: bootstrap: Add option to enable diskless SBD mode 
to cluster init (bsc#1045118)
 Patch16:0016-high-bootstrap-Add-option-to-enable-diskless-SBD-mod.patch
+# PATCH-FIX-UPSTREAM: medium: scripts: Clarify help text for NFS wizard 
(bsc#1044244)
+Patch17:0017-medium-scripts-Clarify-help-text-for-NFS-wizard-bsc-.patch
+# PATCH-FIX-UPSTREAM: medium: scripts: Relax broadcast IP validation 
(bsc#1044233)
+Patch18:0018-medium-scripts-Relax-broadcast-IP-validation-bsc-104.patch
+# PATCH-FIX-UPSTREAM: medium: bootstrap: Fix watchdog SBD envvars (bsc#1045118)
+Patch19:0019-medium-bootstrap-Fix-watchdog-SBD-envvars-bsc-104511.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
@@ -192,6 +198,9 @@
 %patch14 -p1
 %patch15 -p1
 %patch16 -p1
+%patch17 -p1
+%patch18 -p1
+%patch19 -p1
 
 # Force the local time
 #

++ 0017-medium-scripts-Clarify-help-text-for-NFS-wizard-bsc-.patch ++
>From cf59cfdbdc63dc397f178d87b91fb9715b7722a7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= 
Date: Thu, 22 Jun 2017 18:04:14 +0200
Subject: [PATCH 17/19] medium: scripts: Clarify help text for NFS wizard
 (bsc#1044244)

---
 scripts/drbd/main.yml   | 2 ++
 scripts/lvm/main.yml| 5 +
 scripts/nfsserver-lvm-drbd/main.yml | 2 +-
 3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/scripts/drbd/main.yml b/scripts/drbd/main.yml
index afb4f8ba..29ba472a 100644
--- a/scripts/drbd/main.yml
+++ b/scripts/drbd/main.yml
@@ -6,6 +6,8 @@ longdesc: >-
 
   Also creates a multistate resource managing the state of DRBD.
 
+  Does not create or modify the referenced DRBD configuration.
+
 parameters:
   - name: id
 shortdesc: DRBD Cluster Resource ID
diff --git a/scripts/lvm/main.yml b/scripts/lvm/main.yml
index ecde5244..381f56c4 100644
--- a/scripts/lvm/main.yml
+++ b/scripts/lvm/main.yml
@@ -1,5 +1,10 @@
 version: 2.2
 category: Script
+longdesc: >-
+  Configure a resource for managing an LVM volume group.
+
+  Does not create the referenced volume group.
+
 include:
   - agent: ocf:heartbeat:LVM
 name: lvm
diff --git a/scripts/nfsserver-lvm-drbd/main.yml 
b/scripts/nfsserver-lvm-drbd/main.yml
index 7a2a0050..233f26f4 100644
--- a/scripts/nfsserver-lvm-drbd/main.yml
+++ b/scripts/nfsserver-lvm-drbd/main.yml
@@ -28,7 +28,7 @@ longdesc: |
   For more details on what needs to be prepared to use
   this wizard, see the Highly Available NFS Storage with
   DRBD and Pacemaker section of the SUSE Linux Enterprise
-  High Availability Extension 12 SP1 documentation.
+  High Availability Extension documentation.
 
 parameters:
   - name: nfsserver_id
-- 
2.12.2

++ 0018-medium-scripts-Relax-broadcast-IP-validation-bsc-104.patch ++
>From 2ea05e740c1068527b38a899dc053a0a728a517e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= 
Date: Thu, 22 Jun 2017 18:06:41 +0200
Subject: [PATCH 18/19] medium: scripts: Relax broadcast IP validation
 (bsc#1044233)

The broadcast field can also contain non-IP values
like "+" and "-".
---
 scripts/virtual-ip/main.yml | 2 +-
 1 file 

commit libmemcached for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package libmemcached for openSUSE:Factory 
checked in at 2017-06-26 15:53:00

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


Package is "libmemcached"

Mon Jun 26 15:53:00 2017 rev:26 rq:505860 version:1.0.18

Changes:

--- /work/SRC/openSUSE:Factory/libmemcached/libmemcached.changes
2016-05-17 17:15:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmemcached.new/libmemcached.changes   
2017-06-26 15:53:02.237112624 +0200
@@ -1,0 +2,6 @@
+Thu Jun 22 16:51:01 UTC 2017 - antoine.belv...@opensuse.org
+
+- Add libmemcached-1.0.18-fix-build-gcc7.patch: Fix build with GCC
+  7, picked from Fedora (boo#1041295).
+
+---

New:

  libmemcached-1.0.18-fix-build-gcc7.patch



Other differences:
--
++ libmemcached.spec ++
--- /var/tmp/diff_new_pack.ye1E9B/_old  2017-06-26 15:53:08.620212539 +0200
+++ /var/tmp/diff_new_pack.ye1E9B/_new  2017-06-26 15:53:08.624211975 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libmemcached
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -32,6 +32,8 @@
 Patch1: libmemcached-automake1_14.diff
 # PATCH-FIX-UPSTREAM libmemcached-no-docs-available.patch dims...@opensuse.org 
-- Do not build docs if not VCS checkout
 Patch2: libmemcached-no-docs-available.patch
+# PATCH-FIX-UPSTREAM libmemcached-1.0.18-fix-build-gcc7.patch -- Fix build 
with GCC 7
+Patch3: libmemcached-1.0.18-fix-build-gcc7.patch
 # List of additional build dependencies
 BuildRequires:  automake >= 1.13
 BuildRequires:  bison
@@ -91,6 +93,7 @@
 %setup -q
 %patch -P 0 -P 1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 autoreconf -fiv

++ libmemcached-1.0.18-fix-build-gcc7.patch ++
diff -up ./clients/memflush.cc.old ./clients/memflush.cc
--- ./clients/memflush.cc.old   2017-02-12 10:12:59.615209225 +0100
+++ ./clients/memflush.cc   2017-02-12 10:13:39.998382783 +0100
@@ -39,7 +39,7 @@ int main(int argc, char *argv[])
 {
   options_parse(argc, argv);
 
-  if (opt_servers == false)
+  if (!opt_servers)
   {
 char *temp;
 
@@ -48,7 +48,7 @@ int main(int argc, char *argv[])
   opt_servers= strdup(temp);
 }
 
-if (opt_servers == false)
+if (!opt_servers)
 {
   std::cerr << "No Servers provided" << std::endl;
   exit(EXIT_FAILURE);




commit lcms for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package lcms for openSUSE:Factory checked in 
at 2017-06-26 15:52:53

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


Package is "lcms"

Mon Jun 26 15:52:53 2017 rev:31 rq:505848 version:1.19

Changes:

--- /work/SRC/openSUSE:Factory/lcms/lcms.changes2013-12-13 
13:05:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.lcms.new/lcms.changes   2017-06-26 
15:52:58.897583532 +0200
@@ -1,0 +2,6 @@
+Fri Jun 16 07:02:24 UTC 2017 - o...@aepfle.de
+
+- Run autoreconf due to apply changes to Makefile.am
+- Build with -O1 to avoid make check errors with gcc7 (bnc#1041220)
+
+---



Other differences:
--
++ lcms.spec ++
--- /var/tmp/diff_new_pack.tvgdMW/_old  2017-06-26 15:52:59.529494426 +0200
+++ /var/tmp/diff_new_pack.tvgdMW/_new  2017-06-26 15:52:59.533493862 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lcms
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -32,6 +32,9 @@
 # PATCH-FIX-SECURITY CVE-2013-4276.patch bnc843716 sbra...@suse.cz -- Stack 
overflow fix.
 Patch3: CVE-2013-4276.patch
 
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libtool
 %if 0%{?fedora_version}   
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
@@ -59,8 +62,8 @@
 
 %package -n liblcms1
 Summary:Libraries for the Little CMS Engine
-Group:  System/Libraries
 #workaround for wrong package naming
+Group:  System/Libraries
 Provides:   liblcms0 = %{version}
 Obsoletes:  liblcms0 <= %{version}
 
@@ -105,6 +108,9 @@
 chmod -x COPYING AUTHORS NEWS README doc/*.TXT
 
 %build
+autoreconf -fi
+export CFLAGS='%{optflags} -O1'
+export CXXFLAGS='%{optflags} -O1'
 %configure\
--disable-static\
--with-python




commit forkstat for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package forkstat for openSUSE:Factory 
checked in at 2017-06-26 15:53:31

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


Package is "forkstat"

Mon Jun 26 15:53:31 2017 rev:3 rq:505863 version:0.01.19

Changes:

--- /work/SRC/openSUSE:Factory/forkstat/forkstat.changes2017-05-18 
20:50:14.035055450 +0200
+++ /work/SRC/openSUSE:Factory/.forkstat.new/forkstat.changes   2017-06-26 
15:53:32.992775741 +0200
@@ -1,0 +2,17 @@
+Thu Jun 22 08:15:16 UTC 2017 - mar...@gmx.de
+
+- update to version 0.01.19
+  * Makefile: bump version again
+  * Debian/control: update standards version to 4.0.0
+  * Update man page date
+  * forkstat: add flag for line buffered output
+
+---
+Tue Jun 20 14:58:59 UTC 2017 - mar...@gmx.de
+
+- update to version 0.01.18
+  * Makefile: bump version
+  * Only add proc_info if strtol parses pid correctly.
+  * snapcraft: add default type and grade keys
+
+---

Old:

  forkstat-0.01.17.tar.gz

New:

  forkstat-0.01.19.tar.gz



Other differences:
--
++ forkstat.spec ++
--- /var/tmp/diff_new_pack.3tOfrx/_old  2017-06-26 15:53:35.028488683 +0200
+++ /var/tmp/diff_new_pack.3tOfrx/_new  2017-06-26 15:53:35.032488119 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   forkstat
-Version:0.01.17
+Version:0.01.19
 Release:0
 Summary:Process fork/exec/exit monitoring tool
 License:GPL-2.0+
@@ -44,7 +44,7 @@
 
 %files
 %defattr(-,root,root)
-%%doc COPYING
+%doc COPYING
 %{_bindir}/forkstat
 %{_mandir}/man8/forkstat.8%{ext_man}
 

++ forkstat-0.01.17.tar.gz -> forkstat-0.01.19.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/forkstat-0.01.17/Makefile 
new/forkstat-0.01.19/Makefile
--- old/forkstat-0.01.17/Makefile   2017-04-14 18:37:45.0 +0200
+++ new/forkstat-0.01.19/Makefile   2017-06-21 18:59:39.0 +0200
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
 #
 
-VERSION=0.01.17
+VERSION=0.01.19
 #
 # Version "Frantic Forking Finder"
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/forkstat-0.01.17/forkstat.8 
new/forkstat-0.01.19/forkstat.8
--- old/forkstat-0.01.17/forkstat.8 2017-04-14 18:37:45.0 +0200
+++ new/forkstat-0.01.19/forkstat.8 2017-06-21 18:59:39.0 +0200
@@ -2,7 +2,7 @@
 .\" First parameter, NAME, should be all caps
 .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
 .\" other parameters are allowed: see man(7), man(1)
-.TH FORKSTAT 8 "14 April, 2017"
+.TH FORKSTAT 8 "21 June, 2017"
 .\" Please adjust this date whenever revising the manpage.
 .\"
 .\" Some roff macros, for reference:
@@ -25,6 +25,7 @@
 .RI [ \-D ]
 .RI [ \-e ]
 .RI [ \-h ]
+.RI [ \-l ]
 .RI [ \-s ]
 .RI [ \-S ]
 .RI [ \-q ]
@@ -88,6 +89,9 @@
 .TP
 .B \-q
 run quietly and enable the \-S option.
+.TP
+.B \-l
+set stdout to line-buffered mode.
 .SH EXAMPLES
 .LP
 Show process activity with short process names and directory base path 
stripped off:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/forkstat-0.01.17/forkstat.c 
new/forkstat-0.01.19/forkstat.c
--- old/forkstat-0.01.17/forkstat.c 2017-04-14 18:37:45.0 +0200
+++ new/forkstat-0.01.19/forkstat.c 2017-06-21 18:59:39.0 +0200
@@ -849,9 +849,10 @@
 
errno = 0;
pid = (pid_t)strtol(dirent->d_name, NULL, 10);
-   (void)proc_info_add(pid, NULL);
-   if (!errno)
+   if (!errno) {
+   (void)proc_info_add(pid, NULL);
proc_thread_info_add(pid);
+   }
}
}
 
@@ -1188,11 +1189,12 @@
 static void show_help(char *const argv[])
 {
printf("%s, version %s\n\n", APP_NAME, VERSION);
-   printf("usage: %s [-d|-D|-e|-h|-s|-S|-q]\n", argv[0]);
+   printf("usage: %s [-d|-D|-e|-h|-l|-s|-S|-q]\n", argv[0]);
printf("-d\tstrip off directory path from process name.\n");
printf("-D\tspecify run duration in seconds.\n");
printf("-e\tselect which events to monitor.\n");
printf("-h\tshow this help.\n");
+   printf("-l\tforce stdout line buffering.\n");
printf("-s\tshow short process name.\n");
printf("-S\tshow event statistics at end of the run.\n");
printf("-q\trun quietly and enable -S option.\n");

commit powerstat for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package powerstat for openSUSE:Factory 
checked in at 2017-06-26 15:53:16

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


Package is "powerstat"

Mon Jun 26 15:53:16 2017 rev:2 rq:505861 version:0.02.12

Changes:

--- /work/SRC/openSUSE:Factory/powerstat/powerstat.changes  2017-05-17 
23:54:35.822326937 +0200
+++ /work/SRC/openSUSE:Factory/.powerstat.new/powerstat.changes 2017-06-26 
15:53:21.606381349 +0200
@@ -1,0 +2,14 @@
+Wed Jun 21 06:43:41 UTC 2017 - mar...@gmx.de
+
+- update to version 0.02.12
+  * Makefile: bump version
+  * Makefile: add snapcraft files to dist rule
+  * Fix incorrect GPU stats when sample rate is not 1 second (LP: #1699134)
+  * snapcraft: add default type and grade keys
+  * snapcraft: Makefile: remove icon hack
+  * reduce the scope of the variable 'buf'
+  * snapcraft.yaml: remove bogos unnecessary libs
+  * Add snapcraft files
+  * update copyright year
+
+---

Old:

  powerstat-0.02.11.tar.gz

New:

  powerstat-0.02.12.tar.gz



Other differences:
--
++ powerstat.spec ++
--- /var/tmp/diff_new_pack.34tfeD/_old  2017-06-26 15:53:22.242291679 +0200
+++ /var/tmp/diff_new_pack.34tfeD/_new  2017-06-26 15:53:22.242291679 +0200
@@ -1,6 +1,7 @@
 #
 # spec file for package powerstat
 #
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2017, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
@@ -17,7 +18,7 @@
 
 
 Name:   powerstat
-Version:0.02.11
+Version:0.02.12
 Release:0
 Summary:Laptop power measuring tool
 License:GPL-2.0

++ powerstat-0.02.11.tar.gz -> powerstat-0.02.12.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerstat-0.02.11/Makefile 
new/powerstat-0.02.12/Makefile
--- old/powerstat-0.02.11/Makefile  2016-12-01 13:28:27.0 +0100
+++ new/powerstat-0.02.12/Makefile  2017-06-20 15:06:38.0 +0200
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2011-2016 Canonical, Ltd.
+# Copyright (C) 2011-2017 Canonical, Ltd.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
 #
 
-VERSION=0.02.11
+VERSION=0.02.12
 
 CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"'
 
@@ -42,7 +42,7 @@
 dist:
rm -rf powerstat-$(VERSION)
mkdir powerstat-$(VERSION)
-   cp -rp Makefile mascot powerstat.c powerstat.8 COPYING \
+   cp -rp Makefile mascot powerstat.c powerstat.8 COPYING snapcraft \
powerstat-$(VERSION)
tar -zcf powerstat-$(VERSION).tar.gz powerstat-$(VERSION)
rm -rf powerstat-$(VERSION)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerstat-0.02.11/powerstat.c 
new/powerstat-0.02.12/powerstat.c
--- old/powerstat-0.02.11/powerstat.c   2016-12-01 13:28:27.0 +0100
+++ new/powerstat-0.02.12/powerstat.c   2017-06-20 15:06:38.0 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2016 Canonical
+ * Copyright (C) 2011-2017 Canonical
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -1626,7 +1626,6 @@
 static const char *rapl_get_domain(const int n)
 {
int i;
-   static char buf[128];
 
rapl_info_t *rapl = rapl_list;
 
@@ -1635,6 +1634,8 @@
}
if (rapl) {
if (rapl->is_package) {
+   static char buf[128];
+
snprintf(buf, sizeof(buf), "pkg-%s", rapl->domain_name 
+ 8);
return buf;
}
@@ -1852,9 +1853,10 @@
res->inaccurate[POWER_GPU] = true;
ret = -1;
} else {
-   s2->value[POWER_GPU] = (double)val / 100.0;
-   res->value[POWER_GPU] = stats_sane(s1, s2, POWER_GPU);
+   s2->value[POWER_GPU] = ((double)val / 100.0) / sample_delay;
+   s2->inaccurate[POWER_GPU] = false;
res->inaccurate[POWER_GPU] = false;
+   res->value[POWER_GPU] = stats_sane(s1, s2, POWER_GPU);
ret = 0;
}
return ret;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerstat-0.02.11/snapcraft/Makefile 
new/powerstat-0.02.12/snapcraft/Makefile
--- old/powerstat-0.02.11/snapcraft/Makefile

commit product-builder-plugin-Tumbleweed for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package product-builder-plugin-Tumbleweed 
for openSUSE:Factory checked in at 2017-06-26 15:52:43

Comparing /work/SRC/openSUSE:Factory/product-builder-plugin-Tumbleweed (Old)
 and  /work/SRC/openSUSE:Factory/.product-builder-plugin-Tumbleweed.new 
(New)


Package is "product-builder-plugin-Tumbleweed"

Mon Jun 26 15:52:43 2017 rev:4 rq:505846 version:1.0~pre.1497944896.b201a36

Changes:

--- 
/work/SRC/openSUSE:Factory/product-builder-plugin-Tumbleweed/product-builder-plugin-Tumbleweed.changes
  2017-06-01 16:34:22.289265622 +0200
+++ 
/work/SRC/openSUSE:Factory/.product-builder-plugin-Tumbleweed.new/product-builder-plugin-Tumbleweed.changes
 2017-06-26 15:52:52.822440190 +0200
@@ -1,0 +2,5 @@
+Fri Jun 23 08:58:26 UTC 2017 - adr...@suse.de
+
+- fixes for mini media
+
+---

Old:

  product-builder-plugins-1.0~pre.1495630701.9f80a3d.obscpio

New:

  product-builder-plugins-1.0~pre.1497944896.b201a36.obscpio



Other differences:
--
++ product-builder-plugin-Tumbleweed.spec ++
--- /var/tmp/diff_new_pack.eJwZxT/_old  2017-06-26 15:52:55.174108580 +0200
+++ /var/tmp/diff_new_pack.eJwZxT/_new  2017-06-26 15:52:55.178108017 +0200
@@ -20,7 +20,7 @@
 Summary:openSUSE - KIWI Image System
 License:GPL-2.0+
 Group:  System/Management
-Version:1.0~pre.1495630701.9f80a3d
+Version:1.0~pre.1497944896.b201a36
 Release:0
 Source: product-builder-plugins-%version.tar.xz
 Provides:   product-builder-plugin = %version-%release

++ product-builder-plugins.obsinfo ++
--- /var/tmp/diff_new_pack.eJwZxT/_old  2017-06-26 15:52:55.238099558 +0200
+++ /var/tmp/diff_new_pack.eJwZxT/_new  2017-06-26 15:52:55.238099558 +0200
@@ -1,5 +1,5 @@
 name: product-builder-plugins
-version: 1.0~pre.1495630701.9f80a3d
-mtime: 1495630701
-commit: 9f80a3df15eab50d528398916a32a0117169d6ec
+version: 1.0~pre.1497944896.b201a36
+mtime: 1497944896
+commit: b201a365665a9407143c3b9f30abd514bbb2be19
 




commit product-builder for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package product-builder for openSUSE:Factory 
checked in at 2017-06-26 15:52:35

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


Package is "product-builder"

Mon Jun 26 15:52:35 2017 rev:4 rq:505845 version:1.0~pre.1497939465.cb6f23f

Changes:

--- /work/SRC/openSUSE:Factory/product-builder/product-builder.changes  
2017-05-27 13:16:47.460856610 +0200
+++ /work/SRC/openSUSE:Factory/.product-builder.new/product-builder.changes 
2017-06-26 15:52:41.74466 +0200
@@ -1,0 +2,5 @@
+Fri Jun 23 08:56:24 UTC 2017 - adr...@suse.de
+
+- fix unpacking of meta packages and plugin execution
+
+---

Old:

  product-builder-1.0~pre.1495619642.e97a217.obscpio

New:

  product-builder-1.0~pre.1497939465.cb6f23f.obscpio



Other differences:
--
++ product-builder.spec ++
--- /var/tmp/diff_new_pack.vaFcRQ/_old  2017-06-26 15:52:43.179799900 +0200
+++ /var/tmp/diff_new_pack.vaFcRQ/_new  2017-06-26 15:52:43.183799336 +0200
@@ -23,7 +23,7 @@
 Name:   product-builder
 Conflicts:  kiwi
 Conflicts:  kiwi-instsource
-Version:1.0~pre.1495619642.e97a217
+Version:1.0~pre.1497939465.cb6f23f
 Release:0
 Provides:   kiwi-schema = 6.2
 Source: product-builder-%version.tar.xz

++ product-builder.obsinfo ++
--- /var/tmp/diff_new_pack.vaFcRQ/_old  2017-06-26 15:52:43.223793696 +0200
+++ /var/tmp/diff_new_pack.vaFcRQ/_new  2017-06-26 15:52:43.223793696 +0200
@@ -1,5 +1,5 @@
 name: product-builder
-version: 1.0~pre.1495619642.e97a217
-mtime: 1495619642
-commit: e97a217d968555d71f3bbb5fa23de56675be9ffc
+version: 1.0~pre.1497939465.cb6f23f
+mtime: 1497939465
+commit: cb6f23f74a8aa397af9024c7556b5a16c4533647
 




commit odp-thunderx for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package odp-thunderx for openSUSE:Factory 
checked in at 2017-06-26 15:52:16

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


Package is "odp-thunderx"

Mon Jun 26 15:52:16 2017 rev:3 rq:505195 version:1.11.0.0

Changes:

--- /work/SRC/openSUSE:Factory/odp-thunderx/odp-thunderx.changes
2017-03-16 09:36:08.224613534 +0100
+++ /work/SRC/openSUSE:Factory/.odp-thunderx.new/odp-thunderx.changes   
2017-06-26 15:52:22.318741512 +0200
@@ -1,0 +2,10 @@
+Wed Jun 14 07:08:27 UTC 2017 - marco.varl...@suse.com
+
+- Following instructions from upstream to build with gcc-7
+
+---
+Mon Jun  5 14:10:59 UTC 2017 - marco.varl...@suse.com
+
+- Support for GCC-7
+
+---



Other differences:
--
++ odp-thunderx.spec ++
--- /var/tmp/diff_new_pack.6smSlk/_old  2017-06-26 15:52:24.062495626 +0200
+++ /var/tmp/diff_new_pack.6smSlk/_new  2017-06-26 15:52:24.066495062 +0200
@@ -30,7 +30,11 @@
 BuildRequires:  automake
 BuildRequires:  chrpath
 BuildRequires:  doxygen
+%if %{suse_version} >= 1330
+BuildRequires:  gcc
+%else
 BuildRequires:  gcc6
+%endif
 BuildRequires:  graphviz
 BuildRequires:  libopenssl-devel
 BuildRequires:  libtool
@@ -82,7 +86,11 @@
 sed -i "s|^AC_INIT.*|AC_INIT([OpenDataPlane], [%{version}], 
[lng-...@lists.linaro.org])|" configure.ac
 
 %build
-export CFLAGS="%{optflags} -O3"
+%if %{suse_version} >= 1330
+export CFLAGS="%{optflags} -Wformat-overflow=0 -Wimplicit-fallthrough=0 
-Wformat-truncation=0 -latomic"
+%else
+export CFLAGS="%{optflags}"
+%endif
 ./bootstrap
 %configure --with-platform=linux-thunder \
--disable-static \
@@ -91,7 +99,11 @@
LIBS="-ldl"
 
 %install
+%if %{suse_version} >= 1330
+make V=1 DESTDIR=%{buildroot} %{?_smp_mflags} install
+%else
 make V=1 CC=gcc-6 DESTDIR=%{buildroot} %{?_smp_mflags} install
+%endif
 find %{buildroot} -type f -name 'libodp*.la' |xargs rm -f
 chrpath --delete %{buildroot}%{_bindir}/*
 




commit perl-MooseX-Storage for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-MooseX-Storage for 
openSUSE:Factory checked in at 2017-06-26 15:52:05

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


Package is "perl-MooseX-Storage"

Mon Jun 26 15:52:05 2017 rev:8 rq:433942 version:0.52

Changes:

--- /work/SRC/openSUSE:Factory/perl-MooseX-Storage/perl-MooseX-Storage.changes  
2015-04-16 14:14:40.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Storage.new/perl-MooseX-Storage.changes 
2017-06-26 15:52:09.236586218 +0200
@@ -1,0 +2,16 @@
+Sat Oct  8 16:23:18 UTC 2016 - co...@suse.com
+
+- updated to 0.52
+   see /usr/share/doc/packages/perl-MooseX-Storage/Changes
+
+  0.52  2016-06-22 03:22:12Z
+- when looking for a serializer for a type constraint, always use the
+  user-defined type handler first, before recursing into parent types
+  
+  0.51  2016-02-10 20:06:41Z (TRIAL RELEASE)
+- support serialization of "maybe" types created by MooseX::Types (PR#12)
+  
+  0.50  2015-05-05 20:09:42Z
+- revert changes in 0.49 for deeply-nested objects (see RT#104106)
+
+---

Old:

  MooseX-Storage-0.49.tar.gz

New:

  MooseX-Storage-0.52.tar.gz



Other differences:
--
++ perl-MooseX-Storage.spec ++
--- /var/tmp/diff_new_pack.Ht6F0A/_old  2017-06-26 15:52:10.736374734 +0200
+++ /var/tmp/diff_new_pack.Ht6F0A/_new  2017-06-26 15:52:10.740374170 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-Storage
 #
-# 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,7 +17,7 @@
 
 
 Name:   perl-MooseX-Storage
-Version:0.49
+Version:0.52
 Release:0
 #Upstream: Artistic-1.0 or GPL-1.0+
 %define cpan_name MooseX-Storage
@@ -31,8 +31,11 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(CPAN::Meta::Requirements) >= 2.120620
 BuildRequires:  perl(IO::AtomicFile)
 BuildRequires:  perl(JSON::MaybeXS) >= 1.001000
+BuildRequires:  perl(JSON::PP)
+BuildRequires:  perl(Module::Metadata)
 BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(Moose) >= 0.99
 BuildRequires:  perl(Moose::Meta::Attribute)
@@ -40,6 +43,7 @@
 BuildRequires:  perl(Moose::Util::TypeConstraints)
 BuildRequires:  perl(String::RewritePrefix)
 BuildRequires:  perl(Test::Deep)
+BuildRequires:  perl(Test::Deep::Type)
 BuildRequires:  perl(Test::Fatal)
 BuildRequires:  perl(Test::More) >= 0.88
 BuildRequires:  perl(Test::Requires)

++ MooseX-Storage-0.49.tar.gz -> MooseX-Storage-0.52.tar.gz ++
 6621 lines of diff (skipped)




commit apache2-mod_security2 for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package apache2-mod_security2 for 
openSUSE:Factory checked in at 2017-06-26 15:52:32

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


Package is "apache2-mod_security2"

Mon Jun 26 15:52:32 2017 rev:24 rq:505810 version:2.9.0

Changes:

--- 
/work/SRC/openSUSE:Factory/apache2-mod_security2/apache2-mod_security2.changes  
2017-03-31 15:08:40.423287574 +0200
+++ 
/work/SRC/openSUSE:Factory/.apache2-mod_security2.new/apache2-mod_security2.changes
 2017-06-26 15:52:34.417035536 +0200
@@ -1,0 +2,6 @@
+Wed Jun 21 10:16:28 UTC 2017 - dims...@opensuse.org
+
+- Update modsecurity-fixes.patch: additionally include netdb.h in
+  order to have gethostbyname defined.
+
+---



Other differences:
--


++ modsecurity-fixes.patch ++
--- /var/tmp/diff_new_pack.k6OZxJ/_old  2017-06-26 15:52:35.792841534 +0200
+++ /var/tmp/diff_new_pack.k6OZxJ/_new  2017-06-26 15:52:35.796840970 +0200
@@ -1,3 +1,5 @@
+Index: modsecurity-2.9.0/apache2/mod_security2.c
+===
 --- modsecurity-2.9.0.orig/apache2/mod_security2.c
 +++ modsecurity-2.9.0/apache2/mod_security2.c
 @@ -457,17 +457,13 @@ static void store_tx_context(modsec_rec
@@ -19,6 +21,8 @@
  
  msr->modsecurity = modsecurity;
  msr->r = r;
+Index: modsecurity-2.9.0/apache2/msc_reqbody.c
+===
 --- modsecurity-2.9.0.orig/apache2/msc_reqbody.c
 +++ modsecurity-2.9.0/apache2/msc_reqbody.c
 @@ -88,7 +88,7 @@ apr_status_t modsecurity_request_body_st
@@ -30,16 +34,21 @@
  
  /* Initialise request body processors, if any. */
  
+Index: modsecurity-2.9.0/apache2/msc_status_engine.c
+===
 --- modsecurity-2.9.0.orig/apache2/msc_status_engine.c
 +++ modsecurity-2.9.0/apache2/msc_status_engine.c
-@@ -37,6 +37,7 @@
+@@ -37,6 +37,8 @@
  #if (defined(__linux__) || defined(__gnu_linux__))
  #include 
  #include 
 +#include 
++#include 
  #endif
  #ifdef HAVE_SYS_UTSNAME_H
  #include 
+Index: modsecurity-2.9.0/apache2/msc_remote_rules.c
+===
 --- modsecurity-2.9.0.orig/apache2/msc_remote_rules.c
 +++ modsecurity-2.9.0/apache2/msc_remote_rules.c
 @@ -792,6 +792,7 @@ next:
@@ -50,6 +59,8 @@
  }
  
  
+Index: modsecurity-2.9.0/apache2/msc_util.c
+===
 --- modsecurity-2.9.0.orig/apache2/msc_util.c
 +++ modsecurity-2.9.0/apache2/msc_util.c
 @@ -18,6 +18,7 @@





commit odp for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package odp for openSUSE:Factory checked in 
at 2017-06-26 15:52:13

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


Package is "odp"

Mon Jun 26 15:52:13 2017 rev:2 rq:505192 version:1.11.0.0

Changes:

--- /work/SRC/openSUSE:Factory/odp/odp.changes  2017-03-16 09:36:16.379458854 
+0100
+++ /work/SRC/openSUSE:Factory/.odp.new/odp.changes 2017-06-26 
15:52:15.831656252 +0200
@@ -1,0 +2,16 @@
+Wed Jun 14 07:03:51 UTC 2017 - marco.varl...@suse.com
+
+- Removed 0002-fix-PKTIO_NAME_LEN.patch
+- Following instructions from upstream to build with gcc-7
+
+---
+Mon Jun  5 15:24:42 UTC 2017 - marco.varl...@suse.com
+
+- Added 0002-fix-PKTIO_NAME_LEN.patch
+
+---
+Mon Jun  5 14:04:03 UTC 2017 - marco.varl...@suse.com
+
+- Support for GCC-7
+
+---



Other differences:
--
++ odp.spec ++
--- /var/tmp/diff_new_pack.b8NPwF/_old  2017-06-26 15:52:16.611546280 +0200
+++ /var/tmp/diff_new_pack.b8NPwF/_new  2017-06-26 15:52:16.615545717 +0200
@@ -24,12 +24,16 @@
 Group:  Development/Libraries/C and C++
 Url:https://www.opendataplane.org
 Source0:
https://git.linaro.org/lng/odp.git/snapshot/odp-1.11.0.0_monarch.tar.gz
-Patch1: 0001-increase_ODP_CPUMASK_SIZE.patch
+Patch0: 0001-increase_ODP_CPUMASK_SIZE.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  chrpath
 BuildRequires:  doxygen
+%if %{suse_version} >= 1330
+BuildRequires:  gcc
+%else
 BuildRequires:  gcc6
+%endif
 BuildRequires:  graphviz
 BuildRequires:  libopenssl-devel
 BuildRequires:  libtool
@@ -79,15 +83,23 @@
 %setup -q -n odp-1.11.0.0_monarch
 # The below command is used to replace the use of git-hash with the version of 
the source code
 sed -i "s|^AC_INIT.*|AC_INIT([OpenDataPlane], [%{version}], 
[lng-...@lists.linaro.org])|" configure.ac
-%patch1
+%patch0
 
 %build
-export CFLAGS="%{optflags} -O3"
+%if %{suse_version} >= 1330
+export CFLAGS="%{optflags} -Wformat-overflow=0 -Wimplicit-fallthrough=0 
-Wformat-truncation=0 -latomic"
+%else
+export CFLAGS="%{optflags}"
+%endif
 ./bootstrap
 %configure --disable-static
 
 %install
+%if %{suse_version} >= 1330
+make V=1 DESTDIR=%{buildroot} %{?_smp_mflags} install
+%else
 make V=1 CC=gcc-6 DESTDIR=%{buildroot} %{?_smp_mflags} install
+%endif
 find %{buildroot} -type f -name 'libodp*.la' |xargs rm -f
 rm -f %{buildroot}%{_bindir}/odp_ipsec_run*
 chrpath -k -d %{buildroot}%{_bindir}/*




commit osinfo-db for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package osinfo-db for openSUSE:Factory 
checked in at 2017-06-26 15:51:40

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


Package is "osinfo-db"

Mon Jun 26 15:51:40 2017 rev:5 rq:505957 version:20170423

Changes:

--- /work/SRC/openSUSE:Factory/osinfo-db/osinfo-db.changes  2017-04-12 
17:12:08.985800413 +0200
+++ /work/SRC/openSUSE:Factory/.osinfo-db.new/osinfo-db.changes 2017-06-26 
15:51:44.164121656 +0200
@@ -1,0 +2,6 @@
+Tue Jun 13 15:07:32 MDT 2017 - carn...@suse.com
+
+- fate#322156 - Update database to version 20170423
+  osinfo-db-20170423.tar.xz
+
+---

Old:

  osinfo-db-20170326.tar.xz

New:

  osinfo-db-20170423.tar.xz



Other differences:
--
++ osinfo-db.spec ++
--- /var/tmp/diff_new_pack.gLvuIl/_old  2017-06-26 15:51:45.035998714 +0200
+++ /var/tmp/diff_new_pack.gLvuIl/_new  2017-06-26 15:51:45.039998150 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   osinfo-db
-Version:20170326
+Version:20170423
 Release:0
 Summary:Osinfo database files
 License:LGPL-2.1+ and GPL-2.0+

++ osinfo-db-20170326.tar.xz -> osinfo-db-20170423.tar.xz ++
 1615 lines of diff (skipped)




commit perl-Gravatar-URL for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package perl-Gravatar-URL for 
openSUSE:Factory checked in at 2017-06-26 15:51:59

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


Package is "perl-Gravatar-URL"

Mon Jun 26 15:51:59 2017 rev:13 rq:433927 version:1.07

Changes:

--- /work/SRC/openSUSE:Factory/perl-Gravatar-URL/perl-Gravatar-URL.changes  
2012-05-31 17:08:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Gravatar-URL.new/perl-Gravatar-URL.changes 
2017-06-26 15:52:00.309844969 +0200
@@ -1,0 +2,22 @@
+Sat Oct  8 16:03:41 UTC 2016 - co...@suse.com
+
+- updated to 1.07
+   see /usr/share/doc/packages/perl-Gravatar-URL/Changes
+
+  1.07  Wed Aug 10 17:47:19 PDT 2016
+  Bug Fixes
+  * Require an updated version of Net::DNS to avoid
+"resolver->dnssec(1) without Net::DNS::SEC installed"
+(Schwern) [github #4]
+  
+  Test Fixes
+  * Fix our fake random number generator to avoid cross platform issues.
+[rt.cpan.org 71064] [github #7] (Lisa Hare)
+  
+  Distribution
+  * Kwalitee fixups (BooK) (Lisa Hare)
+  * Added a LICENSE file (Lisa Hare)
+  * Now using Travis CI for Unix testing (Schwern)
+  * Now using AppVeyor for Windows testing (Schwern)
+
+---

Old:

  Gravatar-URL-1.06.tar.gz

New:

  Gravatar-URL-1.07.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Gravatar-URL.spec ++
--- /var/tmp/diff_new_pack.gFY06J/_old  2017-06-26 15:52:01.205718642 +0200
+++ /var/tmp/diff_new_pack.gFY06J/_new  2017-06-26 15:52:01.209718078 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Gravatar-URL
 #
-# Copyright (c) 2012 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,28 +17,28 @@
 
 
 Name:   perl-Gravatar-URL
-Version:1.06
+Version:1.07
 Release:0
 %define cpan_name Gravatar-URL
 Summary:Make URLs for Gravatars from an email address
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Gravatar-URL/
-Source: 
http://www.cpan.org/authors/id/M/MS/MSCHWERN/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/M/MS/MSCHWERN/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Digest::SHA)
-BuildRequires:  perl(Module::Build)
-BuildRequires:  perl(Net::DNS::Resolver)
+BuildRequires:  perl(Module::Build) >= 0.42
+BuildRequires:  perl(Net::DNS) >= 1.01
+BuildRequires:  perl(Test::MockRandom) >= 1.01
 BuildRequires:  perl(Test::Warn) >= 0.11
 BuildRequires:  perl(URI::Escape)
 BuildRequires:  perl(parent)
-#BuildRequires: perl(Gravatar::URL)
-#BuildRequires: perl(Unicornify::URL)
 Requires:   perl(Digest::SHA)
-Requires:   perl(Net::DNS::Resolver)
+Requires:   perl(Net::DNS) >= 1.01
 Requires:   perl(URI::Escape)
 Requires:   perl(parent)
 %{perl_requires}
@@ -47,16 +47,15 @@
 A Gravatar is a Globally Recognized Avatar for a given email address. This
 allows you to have a global picture associated with your email address. You
 can look up the Gravatar for any email address by constructing a URL to get
-the image from the gravatar.com manpage. This module does that.
+the image from gravatar.com. This module does that.
 
-Examples of use include the author faces on the http://search.cpan.org
-manpage.
+Examples of use include the author faces on http://search.cpan.org.
 
-See the http://gravatar.com manpage for more info.
+See http://gravatar.com for more info.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Build.PL installdirs=vendor
@@ -71,6 +70,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes
+%doc Changes LICENSE README
 
 %changelog

++ Gravatar-URL-1.06.tar.gz -> Gravatar-URL-1.07.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gravatar-URL-1.06/.travis.yml 
new/Gravatar-URL-1.07/.travis.yml
--- old/Gravatar-URL-1.06/.travis.yml   1970-01-01 01:00:00.0 +0100
+++ new/Gravatar-URL-1.07/.travis.yml   2016-08-11 02:48:57.0 +0200
@@ -0,0 +1,10 @@
+language: perl
+perl:
+  - 

commit python-tornado for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package python-tornado for openSUSE:Factory 
checked in at 2017-06-26 15:51:35

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


Package is "python-tornado"

Mon Jun 26 15:51:35 2017 rev:38 rq:505956 version:4.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-tornado/python-tornado.changes
2017-04-28 10:36:31.721211138 +0200
+++ /work/SRC/openSUSE:Factory/.python-tornado.new/python-tornado.changes   
2017-06-26 15:51:37.213101808 +0200
@@ -1,0 +2,17 @@
+Fri Jun 23 17:41:45 UTC 2017 - jmate...@suse.com
+
+- in %pre, remove egg-info file if installed, because it's being
+  replaced by a directory (bsc#1035604)
+
+---
+Tue Jun 13 14:57:15 UTC 2017 - jmate...@suse.com
+
+- replace the complicated condition for requiring backports.ssl_match_hostname
+  with unconditional requirement for Python >= 2.7.9
+
+---
+Wed May 31 19:25:46 UTC 2017 - dmuel...@suse.com
+
+- require python-backports.ssl_hostname only on python 2.x 
+
+---



Other differences:
--
++ python-tornado.spec ++
--- /var/tmp/diff_new_pack.1BynZr/_old  2017-06-26 15:51:37.857011011 +0200
+++ /var/tmp/diff_new_pack.1BynZr/_new  2017-06-26 15:51:37.857011011 +0200
@@ -20,63 +20,38 @@
 Name:   python-tornado
 Version:4.4.3
 Release:0
-Url:http://www.tornadoweb.org
 Summary:Open source version of scalable, non-blocking web server that 
power FriendFeed
 License:Apache-2.0
 Group:  Development/Languages/Python
+Url:http://www.tornadoweb.org
 Source: 
https://files.pythonhosted.org/packages/source/t/tornado/tornado-%{version}.tar.gz
 Patch0: tornado-configtest.patch
 Patch1: tornado-async-deprecations.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module pycurl}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module simplejson}
-# SECTION test requirements
-BuildRequires:  %{python_module backports_abc}
-BuildRequires:  python-singledispatch
-# /SECTION
 BuildRequires:  fdupes
 BuildRequires:  python-futures
 BuildRequires:  python-rpm-macros
-
-# Tornado requires python-certifi when the ssl module
-# does not provide the 'create_default_context' function.
-# The ssl module is part of the python package.
-# Starting from python 2.7.9 the ssl module satisfies
-# tornado's requirement, making the python-certifi package
-# optional.
-# Python 2.7.9 is availalbe on SLE12 Updates channel and is going
-# to be available also on openSUSE leap.
-%if 0%{?sles_version} >= 12 || 0%{?suse_version} > 1320
 Requires:   python >= 2.7.9
-%else
-BuildRequires:  %{python_module certifi}
-BuildRequires:  python-backports.ssl_match_hostname
-Requires:   python-backports.ssl_match_hostname
-Requires:   python-certifi
-%endif
-
+Requires:   python-simplejson
+Recommends: python-Twisted
+Recommends: python-pycares
+Recommends: python-pycurl
+Recommends: python-service_identity
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# SECTION test requirements
+BuildRequires:  %{python_module backports_abc}
+BuildRequires:  python-singledispatch
+# /SECTION
 %if %python_version_nodots < 35
 Requires:   python-backports_abc
 %endif
-
-# Python 2 specific backports
 %ifpython2
 Requires:   python-singledispatch
 Recommends: python-futures
 %endif
-# end python 2 specific
-
-Requires:   python-simplejson
-
-Recommends: python-pycares
-Recommends: python-pycurl
-Recommends: python-Twisted
-Recommends: python-service_identity
-
-BuildRequires:  fdupes
-
 %python_subpackages
 
 %description
@@ -102,6 +77,12 @@
 %patch0 -p1
 %patch1 -p1
 
+%pre
+# remove egg-info _file_, being replaced by an egg-info directory
+if [ -f %{python_sitearch}/tornado-%{version}-py%{python_version}.egg-info ]; 
then
+rm %{python_sitearch}/tornado-%{version}-py%{python_version}.egg-info
+fi
+
 %build
 %python_build
 




commit python-M2Crypto for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package python-M2Crypto for openSUSE:Factory 
checked in at 2017-06-26 15:51:29

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


Package is "python-M2Crypto"

Mon Jun 26 15:51:29 2017 rev:21 rq:505953 version:0.26.0

Changes:

--- /work/SRC/openSUSE:Factory/python-M2Crypto/python-M2Crypto.changes  
2017-05-09 17:58:44.366287896 +0200
+++ /work/SRC/openSUSE:Factory/.python-M2Crypto.new/python-M2Crypto.changes 
2017-06-26 15:51:31.365926308 +0200
@@ -1,0 +2,5 @@
+Mon Jun 19 21:47:35 UTC 2017 - sebix+novell@sebix.at
+
+- only require python3-typing if necessary
+
+---



Other differences:
--
++ python-M2Crypto.spec ++
--- /var/tmp/diff_new_pack.7BPdox/_old  2017-06-26 15:51:32.001836640 +0200
+++ /var/tmp/diff_new_pack.7BPdox/_new  2017-06-26 15:51:32.001836640 +0200
@@ -32,7 +32,6 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
-BuildRequires:  %{python_module typing}
 BuildRequires:  fdupes
 BuildRequires:  openssl
 BuildRequires:  openssl-devel
@@ -43,7 +42,15 @@
 %else
 BuildRequires:  swig
 %endif
+%if 0%{?suse_version} <= 1320
+BuildRequires:  %{python_module typing}
 Requires:   python-typing
+%else
+BuildRequires:  python2-typing
+%endif
+%ifpython2 && 0%{?suse_version} > 1320
+Requires:   python2-typing
+%endif
 %ifpython2
 Provides:   %{oldpython}-m2crypto = %{version}
 Obsoletes:  %{oldpython}-m2crypto < %{version}




commit opensm for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package opensm for openSUSE:Factory checked 
in at 2017-06-26 15:51:15

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


Package is "opensm"

Mon Jun 26 15:51:15 2017 rev:8 rq:505931 version:3.3.20

Changes:

--- /work/SRC/openSUSE:Factory/opensm/opensm.changes2017-06-12 
15:36:36.097073162 +0200
+++ /work/SRC/openSUSE:Factory/.opensm.new/opensm.changes   2017-06-26 
15:51:16.687996013 +0200
@@ -1,0 +2,13 @@
+Fri Jun 23 12:23:04 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Have new libs packages obsolete the old opensm-libs3
+
+---
+Mon Jun 19 18:53:39 UTC 2017 - jeng...@inai.de
+
+- Implement shared library packaging guideline
+- Rectify opensm-type_punning.patch:
+  a union does not fix type punning problems (let alone
+  misalignmened pointers), one must use memcpy.
+
+---



Other differences:
--
++ opensm.spec ++
--- /var/tmp/diff_new_pack.F7fQer/_old  2017-06-26 15:51:17.459887170 +0200
+++ /var/tmp/diff_new_pack.F7fQer/_new  2017-06-26 15:51:17.463886606 +0200
@@ -43,34 +43,50 @@
 Requires:   logrotate
 %{?systemd_requires}
 
-%define so_major 3
-%define opensm_libname libs%{so_major}
-
 %description
 OpenSM provides an implementation for an InfiniBand Subnet Manager and
 Administration. Such a software entity is required to run for in order
 to initialize the InfiniBand hardware (at least one per each InfiniBand
 subnet).
 
-%package%{opensm_libname}
-Summary:Opensm runtime libraries
+%package -n libopensm5
+Summary:Opensm runtime library
+Group:  System/Libraries
+Obsoletes:  opensm-libs3
+
+%description -n libopensm5
+This package contains one of the opensm runtime libraries.
+
+%package -n libosmcomp3
+Summary:Opensm runtime library
+Group:  System/Libraries
+Obsoletes:  opensm-libs3
+
+%description -n libosmcomp3
+This package contains one of the opensm runtime libraries.
+
+%package -n libosmvendor4
+Summary:Opensm runtime library
 Group:  System/Libraries
+Obsoletes:  opensm-libs3
 
-%description  %{opensm_libname}
-This package contains the opensm runtime libraries.
+%description -n libosmvendor4
+This package contains one of the opensm runtime libraries.
 
 %packagedevel
 Summary:Development files for OpenSM
 Group:  Development/Libraries/C and C++
-Requires:   %{name}-%{opensm_libname} = %{version}
 Requires:   libibumad-devel
+Requires:   libopensm5 = %{version}
+Requires:   libosmcomp3 = %{version}
+Requires:   libosmvendor4 = %{version}
 
 %description devel
 Symlinks for the dynamic libraries and header files for OpenSM.
 
 %prep
 %setup -q
-%patch1
+%patch1 -p1
 %patch2
 
 cp %{S:1} %{S:2} %{S:3} .
@@ -111,15 +127,18 @@
 %{fillup_only}
 %service_add_post opensm.service
 
-%post %{opensm_libname} -p /sbin/ldconfig
-
 %preun
 %service_del_preun opensm.service
 
 %postun
 %service_del_postun opensm.service
 
-%postun %{opensm_libname} -p /sbin/ldconfig
+%post   -n libopensm5 -p /sbin/ldconfig
+%postun -n libopensm5 -p /sbin/ldconfig
+%post   -n libosmcomp3 -p /sbin/ldconfig
+%postun -n libosmcomp3 -p /sbin/ldconfig
+%post   -n libosmvendor4 -p /sbin/ldconfig
+%postun -n libosmvendor4 -p /sbin/ldconfig
 
 %files
 %defattr(-, root, root)
@@ -135,11 +154,17 @@
 %_mandir/man8/osmtest.8.gz
 /var/adm/fillup-templates/sysconfig.%name
 
-%files %{opensm_libname}
+%files -n libopensm5
 %defattr(-, root, root)
-%_libdir/libopensm.so.*
-%_libdir/libosmcomp.so.*
-%_libdir/libosmvendor.so.*
+%_libdir/libopensm.so.5*
+
+%files -n libosmcomp3
+%defattr(-,root,root)
+%_libdir/libosmcomp.so.3*
+
+%files -n libosmvendor4
+%defattr(-,root,root)
+%_libdir/libosmvendor.so.4*
 
 %files devel
 %defattr(-,root,root)

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.F7fQer/_old  2017-06-26 15:51:17.495882095 +0200
+++ /var/tmp/diff_new_pack.F7fQer/_new  2017-06-26 15:51:17.499881530 +0200
@@ -1,4 +1,8 @@
-opensm-libs3
-obsoletes "opensm- < "
-provides "opensm- = "
+libopensm5
+libosmcomp3
+libosmvendor4
 opensm-devel
+   requires -opensm-
+   requires "libopensm5- = "
+   requires "libosmcomp3- = "
+   requires "libosmvendor4- = "

++ opensm-type_punning.patch ++
--- /var/tmp/diff_new_pack.F7fQer/_old  2017-06-26 15:51:17.531877019 +0200
+++ /var/tmp/diff_new_pack.F7fQer/_new  2017-06-26 15:51:17.531877019 +0200
@@ -1,15 +1,19 @@
-diff --git opensm/osm_prtn_config.c opensm/osm_prtn_config.c
-index b08da02d..3da8b867 100644
 opensm/osm_prtn_config.c
-+++ 

commit mutter for openSUSE:Factory

2017-06-26 Thread root
Hello community,

here is the log from the commit of package mutter for openSUSE:Factory checked 
in at 2017-06-26 15:51:06

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


Package is "mutter"

Mon Jun 26 15:51:06 2017 rev:108 rq:505902 version:3.24.3

Changes:

--- /work/SRC/openSUSE:Factory/mutter/mutter.changes2017-06-17 
10:18:15.487795095 +0200
+++ /work/SRC/openSUSE:Factory/.mutter.new/mutter.changes   2017-06-26 
15:51:07.877238397 +0200
@@ -1,0 +2,22 @@
+Fri Jun 23 13:18:37 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.24.3:
+  + Fix handling of tiled monitors (bgo#781723).
+  + Fix swapped red and blue channels in CoglTexture data
+(bgo#779234).
+  + Fix glitches when opening a window maximized (bgo#781353,
+bgo#782183).
+  + Implement support for disable-while-typing option (bgo#764852).
+  + Consider subsurfaces when grabbing (bgo#781811).
+  + Fix handling of left-handed mode on pen/eraser devices
+(bgo#782027).
+  + Fix output cycling in non-display-attached tablets
+(bgo#782032).
+  + Fix wacom cursor offset on wayland (bgo#784009).
+  + Handle EXIF orientation of backgrounds (bgo#783125).
+  + Misc. bug fixes: bgo#782156, bgo#780407, bgo#757661,
+bgo#783113, bgo#781703.
+- Drop mutter-monitor-fixes.patch and mutter-wayland-fixes.patch,
+  fixed upstream.
+
+---

Old:

  mutter-3.24.2.tar.xz
  mutter-monitor-fixes.patch
  mutter-wayland-fixes.patch

New:

  mutter-3.24.3.tar.xz



Other differences:
--
++ mutter.spec ++
--- /var/tmp/diff_new_pack.5MmWKG/_old  2017-06-26 15:51:08.741116584 +0200
+++ /var/tmp/diff_new_pack.5MmWKG/_new  2017-06-26 15:51:08.745116020 +0200
@@ -23,7 +23,7 @@
 %endif
 
 Name:   mutter
-Version:3.24.2
+Version:3.24.3
 Release:0
 Summary:Window and compositing manager based on Clutter
 License:GPL-2.0+
@@ -38,10 +38,6 @@
 Patch3: mutter-bsc984738-grab-display.patch
 # PATCH-FIX-UPSTREAM mutter-fix-startup.patch bgo#768531 zai...@opensuse.org 
-- Fix slow startup notification on wayland
 Patch6: mutter-fix-startup.patch
-# PATCH-FIX-UPSTREAM mutter-monitor-fixes.patch zai...@opensuse.org -- Various 
monitor fixes from upstream stable git
-Patch7: mutter-monitor-fixes.patch
-# PATCH-FIX-UPSTREAM mutter-wayland-fixes.patch zai...@opensuse.org -- Various 
wayland fixes from upstream stable git
-Patch8: mutter-wayland-fixes.patch
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection-devel >= 0.9.5
 BuildRequires:  libSM-devel
@@ -147,8 +143,6 @@
 %patch3 -p1
 %endif
 %patch6 -p1
-%patch7 -p1
-%patch8 -p1
 
 %build
 %configure \

++ mutter-3.24.2.tar.xz -> mutter-3.24.3.tar.xz ++
 2358 lines of diff (skipped)