openSUSE Commits
Threads by month
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
September 2018
- 1 participants
- 1171 discussions
Hello community,
here is the log from the commit of package python-shortuuid for openSUSE:Factory checked in at 2018-09-28 08:52:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-shortuuid (Old)
and /work/SRC/openSUSE:Factory/.python-shortuuid.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-shortuuid"
Fri Sep 28 08:52:57 2018 rev:2 rq:638354 version:0.5.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-shortuuid/python-shortuuid.changes 2018-06-02 11:58:07.990829961 +0200
+++ /work/SRC/openSUSE:Factory/.python-shortuuid.new/python-shortuuid.changes 2018-09-28 08:52:58.381766196 +0200
@@ -1,0 +2,7 @@
+Wed Sep 26 09:13:16 UTC 2018 - Tomáš Chvátal <tchvatal(a)suse.com>
+
+- Add patch to not depend on pep8 linter, also reported upstream
+ to fix properly:
+ * shortuuid-no-pep8.patch
+
+-------------------------------------------------------------------
New:
----
shortuuid-no-pep8.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-shortuuid.spec ++++++
--- /var/tmp/diff_new_pack.gO7cLV/_old 2018-09-28 08:52:58.853765511 +0200
+++ /var/tmp/diff_new_pack.gO7cLV/_new 2018-09-28 08:52:58.857765506 +0200
@@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@@ -23,17 +23,14 @@
Summary: A generator library for concise, unambiguous and URL-safe UUIDs
License: BSD-3-Clause
Group: Development/Languages/Python
-Url: https://github.com/stochastic-technologies/shortuuid/
+URL: https://github.com/stochastic-technologies/shortuuid/
Source: https://files.pythonhosted.org/packages/source/s/shortuuid/shortuuid-%{vers…
-BuildRequires: %{python_module devel}
+# https://github.com/skorokithakis/shortuuid/issues/38
+Patch0: shortuuid-no-pep8.patch
BuildRequires: %{python_module setuptools}
-BuildRequires: python-rpm-macros
-# SECTION test requirements
-BuildRequires: %{python_module pep8}
-# /SECTION
BuildRequires: fdupes
+BuildRequires: python-rpm-macros
BuildArch: noarch
-
%python_subpackages
%description
@@ -43,6 +40,7 @@
%prep
%setup -q -n shortuuid-%{version}
+%patch0 -p1
%build
%python_build
++++++ shortuuid-no-pep8.patch ++++++
Index: shortuuid-0.5.0/setup.py
===================================================================
--- shortuuid-0.5.0.orig/setup.py
+++ shortuuid-0.5.0/setup.py
@@ -32,5 +32,4 @@ setup(
classifiers=classifiers,
packages=["shortuuid"],
test_suite='shortuuid.tests',
- tests_require=['pep8'],
)
Index: shortuuid-0.5.0/shortuuid/tests.py
===================================================================
--- shortuuid-0.5.0.orig/shortuuid/tests.py
+++ shortuuid-0.5.0/shortuuid/tests.py
@@ -2,7 +2,6 @@ import os
import string
import sys
import unittest
-import pep8
from collections import defaultdict
from uuid import UUID, uuid4
@@ -125,16 +124,6 @@ class ClassShortUUIDTest(unittest.TestCa
su4 = ShortUUID()
self.assertEqual(su4.encoded_length(num_bytes=8), 11)
- def test_pep8(self):
- pep8style = pep8.StyleGuide([['statistics', True],
- ['show-sources', True],
- ['repeat', True],
- ['paths', [os.path.dirname(
- os.path.abspath(__file__))]]],
- parse_argv=False)
- report = pep8style.check_files()
- assert report.total_errors == 0
-
class ShortUUIDPaddingTest(unittest.TestCase):
def test_padding(self):
1
0
Hello community,
here is the log from the commit of package something-for-reddit for openSUSE:Factory checked in at 2018-09-28 08:52:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/something-for-reddit (Old)
and /work/SRC/openSUSE:Factory/.something-for-reddit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "something-for-reddit"
Fri Sep 28 08:52:55 2018 rev:2 rq:638348 version:0.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/something-for-reddit/something-for-reddit.changes 2016-10-18 10:39:01.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.something-for-reddit.new/something-for-reddit.changes 2018-09-28 08:52:56.541768863 +0200
@@ -1,0 +2,5 @@
+Wed Sep 26 04:42:11 UTC 2018 - Bernhard Wiedemann <bwiedemann(a)suse.com>
+
+- Drop arch-specific Makefile (boo#1109534)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ something-for-reddit.spec ++++++
--- /var/tmp/diff_new_pack.LKnPXA/_old 2018-09-28 08:52:57.325767726 +0200
+++ /var/tmp/diff_new_pack.LKnPXA/_new 2018-09-28 08:52:57.329767720 +0200
@@ -65,6 +65,7 @@
%install
%make_install
+rm %{buildroot}%{python3_sitelib}/redditisgtk/Makefile # drop arch-specific file to make it a noarch package
%fdupes %{buildroot}%{_prefix}
%post
1
0
Hello community,
here is the log from the commit of package fence-agents for openSUSE:Factory checked in at 2018-09-28 08:52:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fence-agents (Old)
and /work/SRC/openSUSE:Factory/.fence-agents.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fence-agents"
Fri Sep 28 08:52:51 2018 rev:44 rq:638330 version:4.2.1+git.1537269352.7b1fd536
Changes:
--------
--- /work/SRC/openSUSE:Factory/fence-agents/fence-agents.changes 2018-08-15 10:33:14.411729885 +0200
+++ /work/SRC/openSUSE:Factory/.fence-agents.new/fence-agents.changes 2018-09-28 08:52:52.929774101 +0200
@@ -1,0 +2,17 @@
+Wed Sep 26 06:54:47 UTC 2018 - kgronlund(a)suse.com
+
+- Update to version 4.2.1+git.1537269352.7b1fd536:
+ * fence_vmware_soap: cleanup when receiving SIGTERM
+ * fence_cisco_ucs: encode POSTFIELDS
+ * Update fence_rcd_serial to correct vendor URL
+ * fence_aliyun: correct indentation for *key in help
+ * fence_aliyun: list instance names and show up to 100 instances (fate#326557)
+ * fence-rhevm: improve error reporting.
+ * fence_impilan/fence_ilo_ssh: iLO5-support
+ * fence_rhevm: improve indentation and metadata
+ * fence_compute/fence_evacuate/fence_rhevm: dont use has_key (not supported in Python 3)
+ * fence_rhevm fixing help for plug param
+ * fence_kdump: fix strncpy issue
+ * fence_evacuate: fix evacuable tag mix issue
+
+-------------------------------------------------------------------
Old:
----
fence-agents-4.2.1+git.1532964592.3ae5b58e.tar.xz
New:
----
fence-agents-4.2.1+git.1537269352.7b1fd536.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ fence-agents.spec ++++++
--- /var/tmp/diff_new_pack.uoQYIo/_old 2018-09-28 08:52:53.881772720 +0200
+++ /var/tmp/diff_new_pack.uoQYIo/_new 2018-09-28 08:52:53.881772720 +0200
@@ -29,7 +29,7 @@
Summary: Fence Agents for High Availability
License: GPL-2.0-only AND LGPL-2.1-only
Group: Productivity/Clustering/HA
-Version: 4.2.1+git.1532964592.3ae5b58e
+Version: 4.2.1+git.1537269352.7b1fd536
Release: 0
Url: https://github.com/ClusterLabs/fence-agents
Source0: %{name}-%{version}.tar.xz
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.uoQYIo/_old 2018-09-28 08:52:53.913772674 +0200
+++ /var/tmp/diff_new_pack.uoQYIo/_new 2018-09-28 08:52:53.913772674 +0200
@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">git://github.com/ClusterLabs/fence-agents.git</param>
- <param name="changesrevision">790cbaa66f3927a84739af4a1f0e8bba295cdc36</param></service></servicedata>
\ No newline at end of file
+ <param name="changesrevision">7b1fd536961421d93a1e960ffc558ce938153f42</param></service></servicedata>
\ No newline at end of file
++++++ fence-agents-4.2.1+git.1532964592.3ae5b58e.tar.xz -> fence-agents-4.2.1+git.1537269352.7b1fd536.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/aliyun/fence_aliyun.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/aliyun/fence_aliyun.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/aliyun/fence_aliyun.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/aliyun/fence_aliyun.py 2018-09-18 13:15:52.000000000 +0200
@@ -59,13 +59,15 @@
def get_nodes_list(conn, options):
result = {}
request = DescribeInstancesRequest()
+ request.set_PageSize(100)
response = _send_request(conn, request)
instance_status = None
if response is not None:
instance_list = response.get('Instances').get('Instance')
for item in instance_list:
instance_id = item.get('InstanceId')
- result[instance_id] = ("", None)
+ instance_name = item.get('InstanceName')
+ result[instance_id] = (instance_name, None)
return result
def get_power_status(conn, options):
@@ -106,7 +108,7 @@
all_opt["access_key"] = {
"getopt" : "a:",
"longopt" : "access-key",
- "help" : "-a, --access-key=[name] Access Key",
+ "help" : "-a, --access-key=[name] Access Key",
"shortdesc" : "Access Key.",
"required" : "0",
"order" : 3
@@ -114,7 +116,7 @@
all_opt["secret_key"] = {
"getopt" : "s:",
"longopt" : "secret-key",
- "help" : "-s, --secret-key=[name] Secret Key",
+ "help" : "-s, --secret-key=[name] Secret Key",
"shortdesc" : "Secret Key.",
"required" : "0",
"order" : 4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/cisco_ucs/fence_cisco_ucs.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/cisco_ucs/fence_cisco_ucs.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/cisco_ucs/fence_cisco_ucs.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/cisco_ucs/fence_cisco_ucs.py 2018-09-18 13:15:52.000000000 +0200
@@ -111,7 +111,7 @@
web_buffer = io.BytesIO()
conn.setopt(pycurl.URL, url.encode("ascii"))
conn.setopt(pycurl.HTTPHEADER, ["Content-type: text/xml"])
- conn.setopt(pycurl.POSTFIELDS, command)
+ conn.setopt(pycurl.POSTFIELDS, command.encode("ascii"))
conn.setopt(pycurl.WRITEFUNCTION, web_buffer.write)
conn.setopt(pycurl.TIMEOUT, timeout)
if "--ssl" in opt or "--ssl-secure" in opt:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/compute/fence_compute.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/compute/fence_compute.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/compute/fence_compute.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/compute/fence_compute.py 2018-09-18 13:15:52.000000000 +0200
@@ -311,7 +311,7 @@
region_name=options["--region-name"],
endpoint_type=options["--endpoint-type"],
session=keystone_session, auth=keystone_auth,
- http_log_debug=options.has_key("--verbose"))
+ http_log_debug="--verbose" in options)
else:
# OSP >= 11
# ArgSpec(args=['version'], varargs='args', keywords='kwargs', defaults=None)
@@ -319,7 +319,7 @@
region_name=options["--region-name"],
endpoint_type=options["--endpoint-type"],
session=keystone_session, auth=keystone_auth,
- http_log_debug=options.has_key("--verbose"))
+ http_log_debug="--verbose" in options)
try:
nova.hypervisors.list()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/evacuate/fence_evacuate.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/evacuate/fence_evacuate.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/evacuate/fence_evacuate.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/evacuate/fence_evacuate.py 2018-09-18 13:15:52.000000000 +0200
@@ -74,12 +74,15 @@
}
def _is_server_evacuable(server, evac_flavors, evac_images):
+ reason = "flavor "+server.flavor.get('id')
if server.flavor.get('id') in evac_flavors:
return True
if hasattr(server.image, 'get'):
if server.image.get('id') in evac_images:
return True
- logging.debug("Instance %s is not evacuable" % server.image.get('id'))
+ reason = reason +" and image "+server.image.get('id')
+
+ logging.debug("Instance is not evacuable: no match for %s" % reason)
return False
def _get_evacuable_flavors(connection):
@@ -245,7 +248,7 @@
region_name=options["--region-name"],
endpoint_type=options["--endpoint-type"],
session=keystone_session, auth=keystone_auth,
- http_log_debug=options.has_key("--verbose"))
+ http_log_debug="--verbose" in options)
else:
# OSP >= 11
# ArgSpec(args=['version'], varargs='args', keywords='kwargs', defaults=None)
@@ -253,7 +256,7 @@
region_name=options["--region-name"],
endpoint_type=options["--endpoint-type"],
session=keystone_session, auth=keystone_auth,
- http_log_debug=options.has_key("--verbose"))
+ http_log_debug="--verbose" in options)
try:
nova.hypervisors.list()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/ilo_ssh/fence_ilo_ssh.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/ilo_ssh/fence_ilo_ssh.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/ilo_ssh/fence_ilo_ssh.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/ilo_ssh/fence_ilo_ssh.py 2018-09-18 13:15:52.000000000 +0200
@@ -54,7 +54,8 @@
device via ssh and reboot a specified outlet. "
docs["vendorurl"] = "http://www.hp.com"
docs["symlink"] = [("fence_ilo3_ssh", "Fence agent for HP iLO3 over SSH"),
- ("fence_ilo4_ssh", "Fence agent for HP iLO4 over SSH")]
+ ("fence_ilo4_ssh", "Fence agent for HP iLO4 over SSH"),
+ ("fence_ilo5_ssh", "Fence agent for HP iLO5 over SSH")]
show_docs(options, docs)
options["eol"] = "\r"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/ipmilan/fence_ipmilan.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/ipmilan/fence_ipmilan.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/ipmilan/fence_ipmilan.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/ipmilan/fence_ipmilan.py 2018-09-18 13:15:52.000000000 +0200
@@ -169,6 +169,8 @@
all_opt["lanplus"]["default"] = "1"
elif os.path.basename(sys.argv[0]) == "fence_ilo4":
all_opt["lanplus"]["default"] = "1"
+ elif os.path.basename(sys.argv[0]) == "fence_ilo5":
+ all_opt["lanplus"]["default"] = "1"
all_opt["ipport"]["default"] = "623"
all_opt["method"]["help"] = "-m, --method=[method] Method to fence (onoff|cycle) (Default: onoff)\n" \
@@ -187,6 +189,7 @@
docs["vendorurl"] = ""
docs["symlink"] = [("fence_ilo3", "Fence agent for HP iLO3"),
("fence_ilo4", "Fence agent for HP iLO4"),
+ ("fence_ilo5", "Fence agent for HP iLO5"),
("fence_imm", "Fence agent for IBM Integrated Management Module"),
("fence_idrac", "Fence agent for Dell iDRAC")]
show_docs(options, docs)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/kdump/fence_kdump.c new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/kdump/fence_kdump.c
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/kdump/fence_kdump.c 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/kdump/fence_kdump.c 2018-09-18 13:15:52.000000000 +0200
@@ -351,7 +351,7 @@
hints.ai_protocol = IPPROTO_UDP;
hints.ai_flags = AI_NUMERICSERV;
- strncpy (node->name, opts->nodename, sizeof (node->name));
+ strncpy (node->name, opts->nodename, sizeof (node->name) - 1);
snprintf (node->port, sizeof (node->port), "%d", opts->ipport);
node->info = NULL;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/kdump/fence_kdump_send.c new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/kdump/fence_kdump_send.c
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/kdump/fence_kdump_send.c 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/kdump/fence_kdump_send.c 2018-09-18 13:15:52.000000000 +0200
@@ -116,7 +116,7 @@
hints.ai_protocol = IPPROTO_UDP;
hints.ai_flags = AI_NUMERICSERV;
- strncpy (node->name, opts->nodename, sizeof (node->name));
+ strncpy (node->name, opts->nodename, sizeof (node->name) - 1);
snprintf (node->port, sizeof (node->port), "%d", opts->ipport);
node->info = NULL;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/rcd_serial/fence_rcd_serial.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/rcd_serial/fence_rcd_serial.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/rcd_serial/fence_rcd_serial.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/rcd_serial/fence_rcd_serial.py 2018-09-18 13:15:52.000000000 +0200
@@ -1,12 +1,12 @@
#!@PYTHON@ -tt
-# Copyright 2015 Infoxchange, Danielle Madeley, Sam McLeod-Jones
+# Copyright 2018 Infoxchange, Danielle Madeley, Sam McLeod-Jones
# Controls an RCD serial device
# Ported from stonith/rcd_serial.c
# The Following Agent Has Been Tested On:
-# CentOS Linux release 7.1.1503
+# CentOS Linux release 7.5.1804
# Resource example:
# primitive stonith_node_1 ocf:rcd_serial_py params port="/dev/ttyS0" time=1000 hostlist=stonith_node_1 stonith-timeout=5s
@@ -82,7 +82,7 @@
cable itself is simple with no power, network or moving parts. An example of \
the cable is available here: https://smcleod.net/rcd-stonith/ and the circuit \
design is available in the fence-agents src as SVG"
- docs["vendorurl"] = "http://www.scl.co.uk/rcd_serial/"
+ docs["vendorurl"] = "https://github.com/sammcj/fence_rcd_serial"
show_docs(options, docs)
if options["--action"] in ["off", "reboot"]:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/rhevm/fence_rhevm.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/rhevm/fence_rhevm.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/rhevm/fence_rhevm.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/rhevm/fence_rhevm.py 2018-09-18 13:15:52.000000000 +0200
@@ -6,7 +6,7 @@
import atexit
sys.path.append("@FENCEAGENTSLIBDIR@")
from fencing import *
-from fencing import fail, EC_STATUS, run_delay
+from fencing import fail, EC_FETCH_VM_UUID, run_delay
RE_GET_ID = re.compile("<vm( .*)? id=\"(.*?)\"", re.IGNORECASE)
RE_STATUS = re.compile("<state>(.*?)</state>", re.IGNORECASE)
@@ -21,7 +21,7 @@
result = RE_GET_ID.search(res)
if result == None:
# Unable to obtain ID needed to access virtual machine
- fail(EC_STATUS)
+ fail(EC_FETCH_VM_UUID)
options["id"] = result.group(2)
@@ -74,11 +74,11 @@
url = "https:"
else:
url = "http:"
- if opt.has_key("--api-path"):
+ if "--api-path" in opt:
api_path = opt["--api-path"]
else:
api_path = "/ovirt-engine/api"
- if opt.has_key("--disable-http-filter"):
+ if "--disable-http-filter" in opt:
http_filter = 'false'
else:
http_filter = 'true'
@@ -136,6 +136,14 @@
return result
def define_new_opts():
+
+ all_opt["port"] = {
+ "getopt" : "n:",
+ "longopt" : "plug",
+ "help" : "-n, --plug=[name] "
+ "VM name in RHV",
+ "required" : "1",
+ "order" : 1}
all_opt["use_cookies"] = {
"getopt" : "",
"longopt" : "use-cookies",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/vmware_soap/fence_vmware_soap.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/vmware_soap/fence_vmware_soap.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/agents/vmware_soap/fence_vmware_soap.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/agents/vmware_soap/fence_vmware_soap.py 2018-09-18 13:15:52.000000000 +0200
@@ -3,7 +3,7 @@
import sys
import shutil, tempfile, suds
import logging, requests
-import atexit
+import atexit, signal
sys.path.append("@FENCEAGENTSLIBDIR@")
from suds.client import Client
@@ -211,6 +211,9 @@
except Exception:
pass
+def signal_handler(signum, frame):
+ raise Exception("Signal \"%d\" received which has triggered an exit of the process." % signum)
+
def main():
global options_global
global conn_global
@@ -219,6 +222,8 @@
atexit.register(atexit_handler)
atexit.register(logout)
+ signal.signal(signal.SIGTERM, signal_handler)
+
options_global = check_input(device_opt, process_input(device_opt))
##
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/lib/fencing.py.py new/fence-agents-4.2.1+git.1537269352.7b1fd536/lib/fencing.py.py
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/lib/fencing.py.py 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/lib/fencing.py.py 2018-09-18 13:15:52.000000000 +0200
@@ -27,6 +27,7 @@
EC_STATUS_HMC = 9
EC_PASSWORD_MISSING = 10
EC_INVALID_PRIVILEGES = 11
+EC_FETCH_VM_UUID = 12
LOG_FORMAT = "%(asctime)-15s %(levelname)s: %(message)s"
@@ -540,7 +541,9 @@
EC_STATUS_HMC : "Failed: Either unable to obtain correct plug status, "
"partition is not available or incorrect HMC version used",
EC_PASSWORD_MISSING : "Failed: You have to set login password",
- EC_INVALID_PRIVILEGES : "Failed: The user does not have the correct privileges to do the requested action."
+ EC_INVALID_PRIVILEGES : "Failed: The user does not have the correct privileges to do the requested action.",
+ EC_FETCH_VM_UUID : "Failed: Can not find VM UUID by its VM name given in the <plug> parameter."
+
}[error_code] + "\n"
logging.error("%s\n", message)
sys.exit(EC_GENERIC_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_idrac.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_idrac.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_idrac.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_idrac.xml 2018-09-18 13:15:52.000000000 +0200
@@ -2,6 +2,7 @@
<resource-agent name="fence_idrac" shortdesc="Fence agent for IPMI" >
<symlink name="fence_ilo3" shortdesc="Fence agent for HP iLO3"/>
<symlink name="fence_ilo4" shortdesc="Fence agent for HP iLO4"/>
+<symlink name="fence_ilo5" shortdesc="Fence agent for HP iLO5"/>
<symlink name="fence_imm" shortdesc="Fence agent for IBM Integrated Management Module"/>
<symlink name="fence_idrac" shortdesc="Fence agent for Dell iDRAC"/>
<longdesc>fence_ipmilan is an I/O Fencing agentwhich can be used with machines controlled by IPMI.This agent calls support software ipmitool (http://ipmitool.sf.net/) WARNING! This fence agent might report success before the node is powered off. You should use -m/method onoff if your fence device works correctly with that option.</longdesc>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo3.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo3.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo3.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo3.xml 2018-09-18 13:15:52.000000000 +0200
@@ -2,6 +2,7 @@
<resource-agent name="fence_ilo3" shortdesc="Fence agent for IPMI" >
<symlink name="fence_ilo3" shortdesc="Fence agent for HP iLO3"/>
<symlink name="fence_ilo4" shortdesc="Fence agent for HP iLO4"/>
+<symlink name="fence_ilo5" shortdesc="Fence agent for HP iLO5"/>
<symlink name="fence_imm" shortdesc="Fence agent for IBM Integrated Management Module"/>
<symlink name="fence_idrac" shortdesc="Fence agent for Dell iDRAC"/>
<longdesc>fence_ipmilan is an I/O Fencing agentwhich can be used with machines controlled by IPMI.This agent calls support software ipmitool (http://ipmitool.sf.net/) WARNING! This fence agent might report success before the node is powered off. You should use -m/method onoff if your fence device works correctly with that option.</longdesc>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo3_ssh.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo3_ssh.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo3_ssh.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo3_ssh.xml 2018-09-18 13:15:52.000000000 +0200
@@ -2,6 +2,7 @@
<resource-agent name="fence_ilo3_ssh" shortdesc="Fence agent for HP iLO over SSH" >
<symlink name="fence_ilo3_ssh" shortdesc="Fence agent for HP iLO3 over SSH"/>
<symlink name="fence_ilo4_ssh" shortdesc="Fence agent for HP iLO4 over SSH"/>
+<symlink name="fence_ilo5_ssh" shortdesc="Fence agent for HP iLO5 over SSH"/>
<longdesc>fence_ilo_ssh is a fence agent that connects to iLO device. It logs into device via ssh and reboot a specified outlet. </longdesc>
<vendor-url>http://www.hp.com</vendor-url>
<parameters>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo4.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo4.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo4.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo4.xml 2018-09-18 13:15:52.000000000 +0200
@@ -2,6 +2,7 @@
<resource-agent name="fence_ilo4" shortdesc="Fence agent for IPMI" >
<symlink name="fence_ilo3" shortdesc="Fence agent for HP iLO3"/>
<symlink name="fence_ilo4" shortdesc="Fence agent for HP iLO4"/>
+<symlink name="fence_ilo5" shortdesc="Fence agent for HP iLO5"/>
<symlink name="fence_imm" shortdesc="Fence agent for IBM Integrated Management Module"/>
<symlink name="fence_idrac" shortdesc="Fence agent for Dell iDRAC"/>
<longdesc>fence_ipmilan is an I/O Fencing agentwhich can be used with machines controlled by IPMI.This agent calls support software ipmitool (http://ipmitool.sf.net/) WARNING! This fence agent might report success before the node is powered off. You should use -m/method onoff if your fence device works correctly with that option.</longdesc>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo4_ssh.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo4_ssh.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo4_ssh.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo4_ssh.xml 2018-09-18 13:15:52.000000000 +0200
@@ -2,6 +2,7 @@
<resource-agent name="fence_ilo4_ssh" shortdesc="Fence agent for HP iLO over SSH" >
<symlink name="fence_ilo3_ssh" shortdesc="Fence agent for HP iLO3 over SSH"/>
<symlink name="fence_ilo4_ssh" shortdesc="Fence agent for HP iLO4 over SSH"/>
+<symlink name="fence_ilo5_ssh" shortdesc="Fence agent for HP iLO5 over SSH"/>
<longdesc>fence_ilo_ssh is a fence agent that connects to iLO device. It logs into device via ssh and reboot a specified outlet. </longdesc>
<vendor-url>http://www.hp.com</vendor-url>
<parameters>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo5.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo5.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo5.xml 1970-01-01 01:00:00.000000000 +0100
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo5.xml 2018-09-18 13:15:52.000000000 +0200
@@ -0,0 +1,223 @@
+<?xml version="1.0" ?>
+<resource-agent name="fence_ilo5" shortdesc="Fence agent for IPMI" >
+<symlink name="fence_ilo3" shortdesc="Fence agent for HP iLO3"/>
+<symlink name="fence_ilo4" shortdesc="Fence agent for HP iLO4"/>
+<symlink name="fence_ilo5" shortdesc="Fence agent for HP iLO5"/>
+<symlink name="fence_imm" shortdesc="Fence agent for IBM Integrated Management Module"/>
+<symlink name="fence_idrac" shortdesc="Fence agent for Dell iDRAC"/>
+<longdesc>fence_ipmilan is an I/O Fencing agentwhich can be used with machines controlled by IPMI.This agent calls support software ipmitool (http://ipmitool.sf.net/) WARNING! This fence agent might report success before the node is powered off. You should use -m/method onoff if your fence device works correctly with that option.</longdesc>
+<vendor-url></vendor-url>
+<parameters>
+ <parameter name="action" unique="0" required="1">
+ <getopt mixed="-o, --action=[action]" />
+ <content type="string" default="reboot" />
+ <shortdesc lang="en">Fencing action</shortdesc>
+ </parameter>
+ <parameter name="auth" unique="0" required="0">
+ <getopt mixed="-A, --auth=[auth]" />
+ <content type="select" >
+ <option value="md5" />
+ <option value="password" />
+ <option value="none" />
+ </content>
+ <shortdesc lang="en">IPMI Lan Auth type.</shortdesc>
+ </parameter>
+ <parameter name="cipher" unique="0" required="0">
+ <getopt mixed="-C, --cipher=[cipher]" />
+ <content type="string" />
+ <shortdesc lang="en">Ciphersuite to use (same as ipmitool -C parameter)</shortdesc>
+ </parameter>
+ <parameter name="hexadecimal_kg" unique="0" required="0">
+ <getopt mixed="--hexadecimal-kg=[key]" />
+ <content type="string" />
+ <shortdesc lang="en">Hexadecimal-encoded Kg key for IPMIv2 authentication</shortdesc>
+ </parameter>
+ <parameter name="inet4_only" unique="0" required="0">
+ <getopt mixed="-4, --inet4-only" />
+ <content type="boolean" />
+ <shortdesc lang="en">Forces agent to use IPv4 addresses only</shortdesc>
+ </parameter>
+ <parameter name="inet6_only" unique="0" required="0">
+ <getopt mixed="-6, --inet6-only" />
+ <content type="boolean" />
+ <shortdesc lang="en">Forces agent to use IPv6 addresses only</shortdesc>
+ </parameter>
+ <parameter name="ip" unique="0" required="0" obsoletes="ipaddr">
+ <getopt mixed="-a, --ip=[ip]" />
+ <content type="string" />
+ <shortdesc lang="en">IP address or hostname of fencing device</shortdesc>
+ </parameter>
+ <parameter name="ipaddr" unique="0" required="0" deprecated="1">
+ <getopt mixed="-a, --ip=[ip]" />
+ <content type="string" />
+ <shortdesc lang="en">IP address or hostname of fencing device</shortdesc>
+ </parameter>
+ <parameter name="ipport" unique="0" required="0">
+ <getopt mixed="-u, --ipport=[port]" />
+ <content type="integer" default="623" />
+ <shortdesc lang="en">TCP/UDP port to use for connection with device</shortdesc>
+ </parameter>
+ <parameter name="lanplus" unique="0" required="0">
+ <getopt mixed="-P, --lanplus" />
+ <content type="boolean" default="1" />
+ <shortdesc lang="en">Use Lanplus to improve security of connection</shortdesc>
+ </parameter>
+ <parameter name="login" unique="0" required="0" deprecated="1">
+ <getopt mixed="-l, --username=[name]" />
+ <content type="string" />
+ <shortdesc lang="en">Login name</shortdesc>
+ </parameter>
+ <parameter name="method" unique="0" required="0">
+ <getopt mixed="-m, --method=[method]" />
+ <content type="select" default="onoff" >
+ <option value="onoff" />
+ <option value="cycle" />
+ </content>
+ <shortdesc lang="en">Method to fence</shortdesc>
+ </parameter>
+ <parameter name="passwd" unique="0" required="0" deprecated="1">
+ <getopt mixed="-p, --password=[password]" />
+ <content type="string" />
+ <shortdesc lang="en">Login password or passphrase</shortdesc>
+ </parameter>
+ <parameter name="passwd_script" unique="0" required="0" deprecated="1">
+ <getopt mixed="-S, --password-script=[script]" />
+ <content type="string" />
+ <shortdesc lang="en">Script to run to retrieve password</shortdesc>
+ </parameter>
+ <parameter name="password" unique="0" required="0" obsoletes="passwd">
+ <getopt mixed="-p, --password=[password]" />
+ <content type="string" />
+ <shortdesc lang="en">Login password or passphrase</shortdesc>
+ </parameter>
+ <parameter name="password_script" unique="0" required="0" obsoletes="passwd_script">
+ <getopt mixed="-S, --password-script=[script]" />
+ <content type="string" />
+ <shortdesc lang="en">Script to run to retrieve password</shortdesc>
+ </parameter>
+ <parameter name="plug" unique="0" required="0" obsoletes="port">
+ <getopt mixed="-n, --plug=[ip]" />
+ <content type="string" />
+ <shortdesc lang="en">IP address or hostname of fencing device (together with --port-as-ip)</shortdesc>
+ </parameter>
+ <parameter name="port" unique="0" required="0" deprecated="1">
+ <getopt mixed="-n, --plug=[ip]" />
+ <content type="string" />
+ <shortdesc lang="en">IP address or hostname of fencing device (together with --port-as-ip)</shortdesc>
+ </parameter>
+ <parameter name="privlvl" unique="0" required="0">
+ <getopt mixed="-L, --privlvl=[level]" />
+ <content type="select" default="administrator" >
+ <option value="callback" />
+ <option value="user" />
+ <option value="operator" />
+ <option value="administrator" />
+ </content>
+ <shortdesc lang="en">Privilege level on IPMI device</shortdesc>
+ </parameter>
+ <parameter name="target" unique="0" required="0">
+ <getopt mixed="--target=[targetaddress]" />
+ <content type="string" />
+ <shortdesc lang="en">Bridge IPMI requests to the remote target address</shortdesc>
+ </parameter>
+ <parameter name="username" unique="0" required="0" obsoletes="login">
+ <getopt mixed="-l, --username=[name]" />
+ <content type="string" />
+ <shortdesc lang="en">Login name</shortdesc>
+ </parameter>
+ <parameter name="quiet" unique="0" required="0">
+ <getopt mixed="-q, --quiet" />
+ <content type="boolean" />
+ <shortdesc lang="en">Disable logging to stderr. Does not affect --verbose or --debug-file or logging to syslog.</shortdesc>
+ </parameter>
+ <parameter name="verbose" unique="0" required="0">
+ <getopt mixed="-v, --verbose" />
+ <content type="boolean" />
+ <shortdesc lang="en">Verbose mode</shortdesc>
+ </parameter>
+ <parameter name="debug" unique="0" required="0" deprecated="1">
+ <getopt mixed="-D, --debug-file=[debugfile]" />
+ <content type="string" />
+ <shortdesc lang="en">Write debug information to given file</shortdesc>
+ </parameter>
+ <parameter name="debug_file" unique="0" required="0" obsoletes="debug">
+ <getopt mixed="-D, --debug-file=[debugfile]" />
+ <content type="string" />
+ <shortdesc lang="en">Write debug information to given file</shortdesc>
+ </parameter>
+ <parameter name="version" unique="0" required="0">
+ <getopt mixed="-V, --version" />
+ <content type="boolean" />
+ <shortdesc lang="en">Display version information and exit</shortdesc>
+ </parameter>
+ <parameter name="help" unique="0" required="0">
+ <getopt mixed="-h, --help" />
+ <content type="boolean" />
+ <shortdesc lang="en">Display help and exit</shortdesc>
+ </parameter>
+ <parameter name="delay" unique="0" required="0">
+ <getopt mixed="--delay=[seconds]" />
+ <content type="second" default="0" />
+ <shortdesc lang="en">Wait X seconds before fencing is started</shortdesc>
+ </parameter>
+ <parameter name="ipmitool_path" unique="0" required="0">
+ <getopt mixed="--ipmitool-path=[path]" />
+ <shortdesc lang="en">Path to ipmitool binary</shortdesc>
+ </parameter>
+ <parameter name="login_timeout" unique="0" required="0">
+ <getopt mixed="--login-timeout=[seconds]" />
+ <content type="second" default="5" />
+ <shortdesc lang="en">Wait X seconds for cmd prompt after login</shortdesc>
+ </parameter>
+ <parameter name="port_as_ip" unique="0" required="0">
+ <getopt mixed="--port-as-ip" />
+ <content type="boolean" />
+ <shortdesc lang="en">Make "port/plug" to be an alias to IP address</shortdesc>
+ </parameter>
+ <parameter name="power_timeout" unique="0" required="0">
+ <getopt mixed="--power-timeout=[seconds]" />
+ <content type="second" default="20" />
+ <shortdesc lang="en">Test X seconds for status change after ON/OFF</shortdesc>
+ </parameter>
+ <parameter name="power_wait" unique="0" required="0">
+ <getopt mixed="--power-wait=[seconds]" />
+ <content type="second" default="2" />
+ <shortdesc lang="en">Wait X seconds after issuing ON/OFF</shortdesc>
+ </parameter>
+ <parameter name="shell_timeout" unique="0" required="0">
+ <getopt mixed="--shell-timeout=[seconds]" />
+ <content type="second" default="3" />
+ <shortdesc lang="en">Wait X seconds for cmd prompt after issuing command</shortdesc>
+ </parameter>
+ <parameter name="retry_on" unique="0" required="0">
+ <getopt mixed="--retry-on=[attempts]" />
+ <content type="integer" default="1" />
+ <shortdesc lang="en">Count of attempts to retry power on</shortdesc>
+ </parameter>
+ <parameter name="sudo" unique="0" required="0" deprecated="1">
+ <getopt mixed="--use-sudo" />
+ <content type="boolean" />
+ <shortdesc lang="en">Use sudo (without password) when calling 3rd party software</shortdesc>
+ </parameter>
+ <parameter name="use_sudo" unique="0" required="0" obsoletes="sudo">
+ <getopt mixed="--use-sudo" />
+ <content type="boolean" />
+ <shortdesc lang="en">Use sudo (without password) when calling 3rd party software</shortdesc>
+ </parameter>
+ <parameter name="sudo_path" unique="0" required="0">
+ <getopt mixed="--sudo-path=[path]" />
+ <shortdesc lang="en">Path to sudo binary</shortdesc>
+ </parameter>
+</parameters>
+<actions>
+ <action name="on" automatic="0"/>
+ <action name="off" />
+ <action name="reboot" />
+ <action name="status" />
+ <action name="monitor" />
+ <action name="metadata" />
+ <action name="manpage" />
+ <action name="validate-all" />
+ <action name="diag" />
+</actions>
+</resource-agent>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo5_ssh.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo5_ssh.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo5_ssh.xml 1970-01-01 01:00:00.000000000 +0100
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo5_ssh.xml 2018-09-18 13:15:52.000000000 +0200
@@ -0,0 +1,201 @@
+<?xml version="1.0" ?>
+<resource-agent name="fence_ilo5_ssh" shortdesc="Fence agent for HP iLO over SSH" >
+<symlink name="fence_ilo3_ssh" shortdesc="Fence agent for HP iLO3 over SSH"/>
+<symlink name="fence_ilo4_ssh" shortdesc="Fence agent for HP iLO4 over SSH"/>
+<symlink name="fence_ilo5_ssh" shortdesc="Fence agent for HP iLO5 over SSH"/>
+<longdesc>fence_ilo_ssh is a fence agent that connects to iLO device. It logs into device via ssh and reboot a specified outlet. </longdesc>
+<vendor-url>http://www.hp.com</vendor-url>
+<parameters>
+ <parameter name="action" unique="0" required="1">
+ <getopt mixed="-o, --action=[action]" />
+ <content type="string" default="reboot" />
+ <shortdesc lang="en">Fencing action</shortdesc>
+ </parameter>
+ <parameter name="cmd_prompt" unique="0" required="0" deprecated="1">
+ <getopt mixed="-c, --command-prompt=[prompt]" />
+ <content type="string" default="['MP>', 'hpiLO->']" />
+ <shortdesc lang="en">Force Python regex for command prompt</shortdesc>
+ </parameter>
+ <parameter name="command_prompt" unique="0" required="0" obsoletes="cmd_prompt">
+ <getopt mixed="-c, --command-prompt=[prompt]" />
+ <content type="string" default="['MP>', 'hpiLO->']" />
+ <shortdesc lang="en">Force Python regex for command prompt</shortdesc>
+ </parameter>
+ <parameter name="identity_file" unique="0" required="0">
+ <getopt mixed="-k, --identity-file=[filename]" />
+ <content type="string" />
+ <shortdesc lang="en">Identity file (private key) for SSH</shortdesc>
+ </parameter>
+ <parameter name="inet4_only" unique="0" required="0">
+ <getopt mixed="-4, --inet4-only" />
+ <content type="boolean" />
+ <shortdesc lang="en">Forces agent to use IPv4 addresses only</shortdesc>
+ </parameter>
+ <parameter name="inet6_only" unique="0" required="0">
+ <getopt mixed="-6, --inet6-only" />
+ <content type="boolean" />
+ <shortdesc lang="en">Forces agent to use IPv6 addresses only</shortdesc>
+ </parameter>
+ <parameter name="ip" unique="0" required="0" obsoletes="ipaddr">
+ <getopt mixed="-a, --ip=[ip]" />
+ <content type="string" />
+ <shortdesc lang="en">IP address or hostname of fencing device</shortdesc>
+ </parameter>
+ <parameter name="ipaddr" unique="0" required="0" deprecated="1">
+ <getopt mixed="-a, --ip=[ip]" />
+ <content type="string" />
+ <shortdesc lang="en">IP address or hostname of fencing device</shortdesc>
+ </parameter>
+ <parameter name="ipport" unique="0" required="0">
+ <getopt mixed="-u, --ipport=[port]" />
+ <content type="integer" default="23" />
+ <shortdesc lang="en">TCP/UDP port to use for connection with device</shortdesc>
+ </parameter>
+ <parameter name="login" unique="0" required="1" deprecated="1">
+ <getopt mixed="-l, --username=[name]" />
+ <content type="string" />
+ <shortdesc lang="en">Login name</shortdesc>
+ </parameter>
+ <parameter name="method" unique="0" required="0">
+ <getopt mixed="-m, --method=[method]" />
+ <content type="select" default="onoff" >
+ <option value="onoff" />
+ <option value="cycle" />
+ </content>
+ <shortdesc lang="en">Method to fence</shortdesc>
+ </parameter>
+ <parameter name="passwd" unique="0" required="0" deprecated="1">
+ <getopt mixed="-p, --password=[password]" />
+ <content type="string" />
+ <shortdesc lang="en">Login password or passphrase</shortdesc>
+ </parameter>
+ <parameter name="passwd_script" unique="0" required="0" deprecated="1">
+ <getopt mixed="-S, --password-script=[script]" />
+ <content type="string" />
+ <shortdesc lang="en">Script to run to retrieve password</shortdesc>
+ </parameter>
+ <parameter name="password" unique="0" required="0" obsoletes="passwd">
+ <getopt mixed="-p, --password=[password]" />
+ <content type="string" />
+ <shortdesc lang="en">Login password or passphrase</shortdesc>
+ </parameter>
+ <parameter name="password_script" unique="0" required="0" obsoletes="passwd_script">
+ <getopt mixed="-S, --password-script=[script]" />
+ <content type="string" />
+ <shortdesc lang="en">Script to run to retrieve password</shortdesc>
+ </parameter>
+ <parameter name="plug" unique="0" required="0" obsoletes="port">
+ <getopt mixed="-n, --plug=[ip]" />
+ <content type="string" />
+ <shortdesc lang="en">IP address or hostname of fencing device (together with --port-as-ip)</shortdesc>
+ </parameter>
+ <parameter name="port" unique="0" required="0" deprecated="1">
+ <getopt mixed="-n, --plug=[ip]" />
+ <content type="string" />
+ <shortdesc lang="en">IP address or hostname of fencing device (together with --port-as-ip)</shortdesc>
+ </parameter>
+ <parameter name="secure" unique="0" required="0" deprecated="1">
+ <getopt mixed="-x, --ssh" />
+ <content type="boolean" />
+ <shortdesc lang="en">Use SSH connection</shortdesc>
+ </parameter>
+ <parameter name="ssh" unique="0" required="0" obsoletes="secure">
+ <getopt mixed="-x, --ssh" />
+ <content type="boolean" />
+ <shortdesc lang="en">Use SSH connection</shortdesc>
+ </parameter>
+ <parameter name="ssh_options" unique="0" required="0">
+ <getopt mixed="--ssh-options=[options]" />
+ <content type="string" />
+ <shortdesc lang="en">SSH options to use</shortdesc>
+ </parameter>
+ <parameter name="username" unique="0" required="1" obsoletes="login">
+ <getopt mixed="-l, --username=[name]" />
+ <content type="string" />
+ <shortdesc lang="en">Login name</shortdesc>
+ </parameter>
+ <parameter name="quiet" unique="0" required="0">
+ <getopt mixed="-q, --quiet" />
+ <content type="boolean" />
+ <shortdesc lang="en">Disable logging to stderr. Does not affect --verbose or --debug-file or logging to syslog.</shortdesc>
+ </parameter>
+ <parameter name="verbose" unique="0" required="0">
+ <getopt mixed="-v, --verbose" />
+ <content type="boolean" />
+ <shortdesc lang="en">Verbose mode</shortdesc>
+ </parameter>
+ <parameter name="debug" unique="0" required="0" deprecated="1">
+ <getopt mixed="-D, --debug-file=[debugfile]" />
+ <content type="string" />
+ <shortdesc lang="en">Write debug information to given file</shortdesc>
+ </parameter>
+ <parameter name="debug_file" unique="0" required="0" obsoletes="debug">
+ <getopt mixed="-D, --debug-file=[debugfile]" />
+ <content type="string" />
+ <shortdesc lang="en">Write debug information to given file</shortdesc>
+ </parameter>
+ <parameter name="version" unique="0" required="0">
+ <getopt mixed="-V, --version" />
+ <content type="boolean" />
+ <shortdesc lang="en">Display version information and exit</shortdesc>
+ </parameter>
+ <parameter name="help" unique="0" required="0">
+ <getopt mixed="-h, --help" />
+ <content type="boolean" />
+ <shortdesc lang="en">Display help and exit</shortdesc>
+ </parameter>
+ <parameter name="delay" unique="0" required="0">
+ <getopt mixed="--delay=[seconds]" />
+ <content type="second" default="0" />
+ <shortdesc lang="en">Wait X seconds before fencing is started</shortdesc>
+ </parameter>
+ <parameter name="login_timeout" unique="0" required="0">
+ <getopt mixed="--login-timeout=[seconds]" />
+ <content type="second" default="5" />
+ <shortdesc lang="en">Wait X seconds for cmd prompt after login</shortdesc>
+ </parameter>
+ <parameter name="port_as_ip" unique="0" required="0">
+ <getopt mixed="--port-as-ip" />
+ <content type="boolean" />
+ <shortdesc lang="en">Make "port/plug" to be an alias to IP address</shortdesc>
+ </parameter>
+ <parameter name="power_timeout" unique="0" required="0">
+ <getopt mixed="--power-timeout=[seconds]" />
+ <content type="second" default="20" />
+ <shortdesc lang="en">Test X seconds for status change after ON/OFF</shortdesc>
+ </parameter>
+ <parameter name="power_wait" unique="0" required="0">
+ <getopt mixed="--power-wait=[seconds]" />
+ <content type="second" default="5" />
+ <shortdesc lang="en">Wait X seconds after issuing ON/OFF</shortdesc>
+ </parameter>
+ <parameter name="shell_timeout" unique="0" required="0">
+ <getopt mixed="--shell-timeout=[seconds]" />
+ <content type="second" default="3" />
+ <shortdesc lang="en">Wait X seconds for cmd prompt after issuing command</shortdesc>
+ </parameter>
+ <parameter name="retry_on" unique="0" required="0">
+ <getopt mixed="--retry-on=[attempts]" />
+ <content type="integer" default="1" />
+ <shortdesc lang="en">Count of attempts to retry power on</shortdesc>
+ </parameter>
+ <parameter name="ssh_path" unique="0" required="0">
+ <getopt mixed="--ssh-path=[path]" />
+ <shortdesc lang="en">Path to ssh binary</shortdesc>
+ </parameter>
+ <parameter name="telnet_path" unique="0" required="0">
+ <getopt mixed="--telnet-path=[path]" />
+ <shortdesc lang="en">Path to telnet binary</shortdesc>
+ </parameter>
+</parameters>
+<actions>
+ <action name="on" automatic="0"/>
+ <action name="off" />
+ <action name="reboot" />
+ <action name="status" />
+ <action name="monitor" />
+ <action name="metadata" />
+ <action name="manpage" />
+ <action name="validate-all" />
+</actions>
+</resource-agent>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo_ssh.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo_ssh.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ilo_ssh.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ilo_ssh.xml 2018-09-18 13:15:52.000000000 +0200
@@ -2,6 +2,7 @@
<resource-agent name="fence_ilo_ssh" shortdesc="Fence agent for HP iLO over SSH" >
<symlink name="fence_ilo3_ssh" shortdesc="Fence agent for HP iLO3 over SSH"/>
<symlink name="fence_ilo4_ssh" shortdesc="Fence agent for HP iLO4 over SSH"/>
+<symlink name="fence_ilo5_ssh" shortdesc="Fence agent for HP iLO5 over SSH"/>
<longdesc>fence_ilo_ssh is a fence agent that connects to iLO device. It logs into device via ssh and reboot a specified outlet. </longdesc>
<vendor-url>http://www.hp.com</vendor-url>
<parameters>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_imm.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_imm.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_imm.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_imm.xml 2018-09-18 13:15:52.000000000 +0200
@@ -2,6 +2,7 @@
<resource-agent name="fence_imm" shortdesc="Fence agent for IPMI" >
<symlink name="fence_ilo3" shortdesc="Fence agent for HP iLO3"/>
<symlink name="fence_ilo4" shortdesc="Fence agent for HP iLO4"/>
+<symlink name="fence_ilo5" shortdesc="Fence agent for HP iLO5"/>
<symlink name="fence_imm" shortdesc="Fence agent for IBM Integrated Management Module"/>
<symlink name="fence_idrac" shortdesc="Fence agent for Dell iDRAC"/>
<longdesc>fence_ipmilan is an I/O Fencing agentwhich can be used with machines controlled by IPMI.This agent calls support software ipmitool (http://ipmitool.sf.net/) WARNING! This fence agent might report success before the node is powered off. You should use -m/method onoff if your fence device works correctly with that option.</longdesc>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ipmilan.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ipmilan.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_ipmilan.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_ipmilan.xml 2018-09-18 13:15:52.000000000 +0200
@@ -2,6 +2,7 @@
<resource-agent name="fence_ipmilan" shortdesc="Fence agent for IPMI" >
<symlink name="fence_ilo3" shortdesc="Fence agent for HP iLO3"/>
<symlink name="fence_ilo4" shortdesc="Fence agent for HP iLO4"/>
+<symlink name="fence_ilo5" shortdesc="Fence agent for HP iLO5"/>
<symlink name="fence_imm" shortdesc="Fence agent for IBM Integrated Management Module"/>
<symlink name="fence_idrac" shortdesc="Fence agent for Dell iDRAC"/>
<longdesc>fence_ipmilan is an I/O Fencing agentwhich can be used with machines controlled by IPMI.This agent calls support software ipmitool (http://ipmitool.sf.net/) WARNING! This fence agent might report success before the node is powered off. You should use -m/method onoff if your fence device works correctly with that option.</longdesc>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_rcd_serial.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_rcd_serial.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_rcd_serial.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_rcd_serial.xml 2018-09-18 13:15:52.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<resource-agent name="fence_rcd_serial" shortdesc="rcd_serial fence agent" >
<longdesc>fence_rcd_serial operates a serial cable that toggles a reset of an opposing server using the reset switch on its motherboard. The cable itself is simple with no power, network or moving parts. An example of the cable is available here: https://smcleod.net/rcd-stonith/ and the circuit design is available in the fence-agents src as SVG</longdesc>
-<vendor-url>http://www.scl.co.uk/rcd_serial/</vendor-url>
+<vendor-url>https://github.com/sammcj/fence_rcd_serial</vendor-url>
<parameters>
<parameter name="action" unique="0" required="1">
<getopt mixed="-o, --action=[action]" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_rhevm.xml new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_rhevm.xml
--- old/fence-agents-4.2.1+git.1532964592.3ae5b58e/tests/data/metadata/fence_rhevm.xml 2018-07-30 17:29:52.000000000 +0200
+++ new/fence-agents-4.2.1+git.1537269352.7b1fd536/tests/data/metadata/fence_rhevm.xml 2018-09-18 13:15:52.000000000 +0200
@@ -64,14 +64,14 @@
<shortdesc lang="en">Script to run to retrieve password</shortdesc>
</parameter>
<parameter name="plug" unique="0" required="1" obsoletes="port">
- <getopt mixed="-n, --plug=[id]" />
+ <getopt mixed="-n, --plug=[name]" />
<content type="string" />
- <shortdesc lang="en">Physical plug number on device, UUID or identification of machine</shortdesc>
+ <shortdesc lang="en">VM name in RHV</shortdesc>
</parameter>
<parameter name="port" unique="0" required="1" deprecated="1">
- <getopt mixed="-n, --plug=[id]" />
+ <getopt mixed="-n, --plug=[name]" />
<content type="string" />
- <shortdesc lang="en">Physical plug number on device, UUID or identification of machine</shortdesc>
+ <shortdesc lang="en">VM name in RHV</shortdesc>
</parameter>
<parameter name="ssl" unique="0" required="0">
<getopt mixed="-z, --ssl" />
1
0
Hello community,
here is the log from the commit of package bitcoin for openSUSE:Factory checked in at 2018-09-28 08:52:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bitcoin (Old)
and /work/SRC/openSUSE:Factory/.bitcoin.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bitcoin"
Fri Sep 28 08:52:52 2018 rev:29 rq:638346 version:0.16.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/bitcoin/bitcoin.changes 2018-06-20 15:27:02.919454147 +0200
+++ /work/SRC/openSUSE:Factory/.bitcoin.new/bitcoin.changes 2018-09-28 08:52:54.365772018 +0200
@@ -1,0 +2,9 @@
+Wed Sep 26 07:55:07 UTC 2018 - Martin Pluskal <mpluskal(a)suse.com>
+
+- Update to version 0.16.3:
+ * For complete list of changes see:
+ + release-notes-0.16.3.md
+ + release-notes-0.16.2.md
+- Resolves bsc#1108992 CVE-2018-17144
+
+-------------------------------------------------------------------
Old:
----
bitcoin-0.16.1.tar.gz
New:
----
bitcoin-0.16.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ bitcoin.spec ++++++
--- /var/tmp/diff_new_pack.p3HNwr/_old 2018-09-28 08:52:54.897771247 +0200
+++ /var/tmp/diff_new_pack.p3HNwr/_new 2018-09-28 08:52:54.901771241 +0200
@@ -13,7 +13,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@@ -24,7 +24,7 @@
%define consensus 1
%define is_base 1
Name: bitcoin
-Version: 0.16.1
+Version: 0.16.3
Release: 0
Summary: P2P Digital Currency
License: MIT
@@ -109,7 +109,7 @@
Full transaction history is stored locally at each client. This requires
several GB of space, slowly growing.
-This package provides %{name}-cli — a CLI tool to interact with the daemon.
+This package provides %{name}-cli — a CLI tool to interact with the daemon.
%if %{consensus} == 1
%package -n lib%{name}consensus0
++++++ bitcoin-0.16.1.tar.gz -> bitcoin-0.16.3.tar.gz ++++++
/work/SRC/openSUSE:Factory/bitcoin/bitcoin-0.16.1.tar.gz /work/SRC/openSUSE:Factory/.bitcoin.new/bitcoin-0.16.3.tar.gz differ: char 13, line 1
1
0
Hello community,
here is the log from the commit of package openQA for openSUSE:Factory checked in at 2018-09-28 08:52:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openQA (Old)
and /work/SRC/openSUSE:Factory/.openQA.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openQA"
Fri Sep 28 08:52:48 2018 rev:32 rq:638326 version:4.6.1537939546.7aa7ed58
Changes:
--------
--- /work/SRC/openSUSE:Factory/openQA/openQA-test.changes 2018-09-15 15:40:32.352816539 +0200
+++ /work/SRC/openSUSE:Factory/.openQA.new/openQA-test.changes 2018-09-28 08:52:50.169778106 +0200
@@ -1,0 +2,35 @@
+Wed Sep 26 06:38:31 UTC 2018 - coolo(a)suse.com
+
+- Update to version 4.6.1537939546.7aa7ed58:
+ * all tests page: Fix parameter passing for timestamp rendering (#1806)
+ * Make asset cleanup more verbose (#1803)
+ * Fix 'last_match' param of AJAX route for needle table (#1802)
+ * Use AJAX for all tables on /tests
+ * Don't pre-compute IDs for finished jobs when loading HTML
+ * Optimize all tests page
+ * doc: remove mention of openQA-devel package (#1800)
+ * Make sure multimachine jobs get a worker eventually
+ * Some code restructing in the scheduler function
+ * Delete empty settings in clone job
+ * Display progress bar when downloading asset
+ * Cache infos about scheduled jobs
+ * Limit logs and results for groupless jobs (#1798)
+ * Release job networks more often (#1795)
+ * Fix removal of untracked assets (#1796)
+ * Enable the scheduler on updates (and the webui is enabled) (#1785)
+ * docs: Write Leap installation repo in more timeless way (#1791)
+ * Run inserting screenshots in a transaction (#1792)
+ * Update AppArmor profile to allow worker to use cgroups
+ * Set specific slice for worker service
+ * Better detect of systemd slice
+ * Inform worker about devel session to reduce posting status info (#1789)
+ * Correct typo (#1790)
+ * Require RabbitMQ::Client 0.2
+ * Make AMQP sending less fragile
+ * Make web socket and livehandler daemons listen on IPv4 and IPv6 (#1787)
+ * Prevent worker to endlessly retry non-critical API calls (#1788)
+ * Fix typo in t/api/02-iso.t
+ * Make asset download feature usable by both "jobs post" and "isos post"
+ * docs: Cover different asset types and asset options
+
+-------------------------------------------------------------------
openQA.changes: same change
Old:
----
openQA-4.6.1536756702.f75303c1.obscpio
New:
----
openQA-4.6.1537939546.7aa7ed58.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ openQA-test.spec ++++++
--- /var/tmp/diff_new_pack.UNlMKh/_old 2018-09-28 08:52:52.313774995 +0200
+++ /var/tmp/diff_new_pack.UNlMKh/_new 2018-09-28 08:52:52.337774960 +0200
@@ -18,7 +18,7 @@
%define short_name openQA
Name: %{short_name}-test
-Version: 4.6.1536756702.f75303c1
+Version: 4.6.1537939546.7aa7ed58
Release: 0
Summary: Test package for openQA
License: GPL-2.0+
++++++ openQA.spec ++++++
--- /var/tmp/diff_new_pack.UNlMKh/_old 2018-09-28 08:52:52.437774815 +0200
+++ /var/tmp/diff_new_pack.UNlMKh/_new 2018-09-28 08:52:52.441774809 +0200
@@ -36,10 +36,10 @@
# runtime requirements that also the testsuite needs
%define t_requires perl(DBD::Pg) perl(DBIx::Class) perl(Config::IniFiles) perl(SQL::Translator) perl(Date::Format) perl(File::Copy::Recursive) perl(DateTime::Format::Pg) perl(Net::OpenID::Consumer) perl(Mojolicious::Plugin::RenderFile) perl(Mojolicious::Plugin::AssetPack) perl(aliased) perl(Config::Tiny) perl(DBIx::Class::DynamicDefault) perl(DBIx::Class::Schema::Config) perl(DBIx::Class::Storage::Statistics) perl(IO::Socket::SSL) perl(Data::Dump) perl(DBIx::Class::OptimisticLocking) perl(Text::Markdown) perl(Net::DBus) perl(IPC::Run) perl(Archive::Extract) perl(CSS::Minifier::XS) perl(JavaScript::Minifier::XS) perl(Time::ParseDate) perl(Sort::Versions) perl(Mojo::RabbitMQ::Client) perl(BSD::Resource) perl(Cpanel::JSON::XS) perl(Pod::POM) perl(Mojo::IOLoop::ReadWriteProcess) perl(Minion) perl(Mojo::Pg)
Name: openQA
-Version: 4.6.1536756702.f75303c1
+Version: 4.6.1537939546.7aa7ed58
Release: 0
Summary: The openQA web-frontend, scheduler and tools
-License: GPL-2.0+
+License: GPL-2.0-or-later
Group: Development/Tools/Other
Url: http://os-autoinst.github.io/openQA/
Source0: %{name}-%{version}.tar.xz
@@ -60,6 +60,7 @@
BuildRequires: rubygem(sass)
Requires: dbus-1
Requires: perl(Minion) >= 9.02
+Requires: perl(Mojo::RabbitMQ::Client) >= 0.2
# needed for test suite
Requires: git-core
Requires: openQA-client = %{version}
@@ -93,7 +94,7 @@
BuildRequires: google-roboto-fonts
BuildRequires: perl-App-cpanminus
BuildRequires: perl(DBD::SQLite)
-BuildRequires: perl(Mojo::RabbitMQ::Client)
+BuildRequires: perl(Mojo::RabbitMQ::Client) >= 0.2
BuildRequires: perl(Perl::Critic)
BuildRequires: perl(Perl::Tidy)
BuildRequires: perl(Selenium::Remote::Driver) >= 1.20
@@ -232,7 +233,7 @@
sed -e 's,%{_bindir}/env perl,%{_bindir}/perl,' -i $file
done
mkdir -p %{buildroot}%{_sbindir}
-for i in webui gru worker resource-allocator scheduler websockets slirpvde vde_switch; do
+for i in webui gru worker resource-allocator scheduler websockets slirpvde vde_switch livehandler; do
ln -s ../sbin/service %{buildroot}%{_sbindir}/rcopenqa-$i
done
#
@@ -285,13 +286,18 @@
if [ $1 -eq 1 ]; then
echo "### copy and edit %{_sysconfdir}/apache2/vhosts.d/openqa.conf.template!"
echo "### run sudo %{_datadir}/openqa/script/fetchneedles"
-
else
if [ -d "%{_localstatedir}/lib/openqa/share/testresults" ]; then
# remove the symlink
rm "%{_localstatedir}/lib/openqa/testresults"
mv "%{_localstatedir}/lib/openqa/share/testresults" "%{_localstatedir}/lib/openqa/"
fi
+
+ # we don't want to require the scheduler for the webui (so we can stop it independent)
+ # but it should be enabled together with the webui
+ if test "$(systemctl is-enabled openqa-webui.service)" = "enabled"; then
+ systemctl enable openqa-scheduler.service
+ fi
fi
%service_add_post %{openqa_services}
@@ -329,6 +335,7 @@
%{_sbindir}/rcopenqa-resource-allocator
%{_sbindir}/rcopenqa-websockets
%{_sbindir}/rcopenqa-webui
+%{_sbindir}/rcopenqa-livehandler
%dir %{_sysconfdir}/openqa
%config(noreplace) %attr(-,geekotest,root) %{_sysconfdir}/openqa/openqa.ini
%config(noreplace) %attr(-,geekotest,root) %{_sysconfdir}/openqa/database.ini
++++++ openQA-4.6.1536756702.f75303c1.obscpio -> openQA-4.6.1537939546.7aa7ed58.obscpio ++++++
/work/SRC/openSUSE:Factory/openQA/openQA-4.6.1536756702.f75303c1.obscpio /work/SRC/openSUSE:Factory/.openQA.new/openQA-4.6.1537939546.7aa7ed58.obscpio differ: char 8, line 1
++++++ openQA.obsinfo ++++++
--- /var/tmp/diff_new_pack.UNlMKh/_old 2018-09-28 08:52:52.493774733 +0200
+++ /var/tmp/diff_new_pack.UNlMKh/_new 2018-09-28 08:52:52.493774733 +0200
@@ -1,5 +1,5 @@
name: openQA
-version: 4.6.1536756702.f75303c1
-mtime: 1536756702
-commit: f75303c1d077bccef9fa4b28def960ad10e6db93
+version: 4.6.1537939546.7aa7ed58
+mtime: 1537939546
+commit: 7aa7ed581a704bd25a86fb556160e4176d75bad4
1
0
Hello community,
here is the log from the commit of package os-autoinst for openSUSE:Factory checked in at 2018-09-28 08:52:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/os-autoinst (Old)
and /work/SRC/openSUSE:Factory/.os-autoinst.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "os-autoinst"
Fri Sep 28 08:52:44 2018 rev:31 rq:638325 version:4.5.1537682748.0d10ddb9
Changes:
--------
--- /work/SRC/openSUSE:Factory/os-autoinst/os-autoinst-test.changes 2018-09-15 15:40:25.488821012 +0200
+++ /work/SRC/openSUSE:Factory/.os-autoinst.new/os-autoinst-test.changes 2018-09-28 08:52:46.433783528 +0200
@@ -2 +2 @@
-Thu Sep 13 15:11:54 UTC 2018 - okurz(a)suse.com
+Wed Sep 26 06:37:38 UTC 2018 - okurz(a)suse.com
@@ -4,3 +4,17 @@
-- Update to version 4.5.1536750184.92e52b69:
- * command server: Don't mix myjsonrpc with Mojo::IOLoop::Stream
- * Improve log messages and error handling in web socket server
+- Update to version 4.5.1537682748.0d10ddb9:
+ * Treat $OpenQA::Isotovideo::Interface::version as test API (#1023)
+ * Fix led state change with tigervnc (#1028)
+ * script_output: increase logging in case of failure (#1025)
+ * Unit test for script_output
+ * Use wait_serial to wait for here tag end
+ * Use here tag in script_out
+ * Add option to always dump memory after a test failure
+ * qemu: Add knobs and dials for tuning snapshotting
+ * Prefer override test module files if found in the openQA "other" repo path
+ * isotovideo: Require explicit 'tests/' prefix within SCHEDULE again for openQA use
+ * Add variable SCHEDULE to define the full schedule by variable
+ * t: Fix failures in 99-full-stack.t depending on system performance
+ * testapi: Fix spellcheck with whitelisted 'kvm', 'VM'
+ * t: Fix perl warning "Possible attempt to separate words with commas"
+ * Fix "Use of uninitialized value $_[0] in join or string" in 'diag'
+ * Die when remote backend programs are missing (#1024)
--- /work/SRC/openSUSE:Factory/os-autoinst/os-autoinst.changes 2018-09-15 15:40:25.612820931 +0200
+++ /work/SRC/openSUSE:Factory/.os-autoinst.new/os-autoinst.changes 2018-09-28 08:52:46.465783481 +0200
@@ -1,0 +2,21 @@
+Wed Sep 26 06:37:38 UTC 2018 - okurz(a)suse.com
+
+- Update to version 4.5.1537682748.0d10ddb9:
+ * Treat $OpenQA::Isotovideo::Interface::version as test API (#1023)
+ * Fix led state change with tigervnc (#1028)
+ * script_output: increase logging in case of failure (#1025)
+ * Unit test for script_output
+ * Use wait_serial to wait for here tag end
+ * Use here tag in script_out
+ * Add option to always dump memory after a test failure
+ * qemu: Add knobs and dials for tuning snapshotting
+ * Prefer override test module files if found in the openQA "other" repo path
+ * isotovideo: Require explicit 'tests/' prefix within SCHEDULE again for openQA use
+ * Add variable SCHEDULE to define the full schedule by variable
+ * t: Fix failures in 99-full-stack.t depending on system performance
+ * testapi: Fix spellcheck with whitelisted 'kvm', 'VM'
+ * t: Fix perl warning "Possible attempt to separate words with commas"
+ * Fix "Use of uninitialized value $_[0] in join or string" in 'diag'
+ * Die when remote backend programs are missing (#1024)
+
+-------------------------------------------------------------------
Old:
----
os-autoinst-4.5.1536750184.92e52b69.obscpio
New:
----
os-autoinst-4.5.1537682748.0d10ddb9.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ os-autoinst-test.spec ++++++
--- /var/tmp/diff_new_pack.0E28XD/_old 2018-09-28 08:52:47.541781919 +0200
+++ /var/tmp/diff_new_pack.0E28XD/_new 2018-09-28 08:52:47.541781919 +0200
@@ -19,7 +19,7 @@
%define name_ext -test
%define short_name os-autoinst
Name: %{short_name}%{?name_ext}
-Version: 4.5.1536750184.92e52b69
+Version: 4.5.1537682748.0d10ddb9
Release: 0
Summary: test package for os-autoinst
License: GPL-2.0+
++++++ os-autoinst.spec ++++++
--- /var/tmp/diff_new_pack.0E28XD/_old 2018-09-28 08:52:47.561781890 +0200
+++ /var/tmp/diff_new_pack.0E28XD/_new 2018-09-28 08:52:47.565781884 +0200
@@ -17,7 +17,7 @@
Name: os-autoinst
-Version: 4.5.1536750184.92e52b69
+Version: 4.5.1537682748.0d10ddb9
Release: 0
Summary: OS-level test automation
License: GPL-2.0-or-later
++++++ os-autoinst-4.5.1536750184.92e52b69.obscpio -> os-autoinst-4.5.1537682748.0d10ddb9.obscpio ++++++
/work/SRC/openSUSE:Factory/os-autoinst/os-autoinst-4.5.1536750184.92e52b69.obscpio /work/SRC/openSUSE:Factory/.os-autoinst.new/os-autoinst-4.5.1537682748.0d10ddb9.obscpio differ: char 8, line 1
++++++ os-autoinst.obsinfo ++++++
--- /var/tmp/diff_new_pack.0E28XD/_old 2018-09-28 08:52:47.625781798 +0200
+++ /var/tmp/diff_new_pack.0E28XD/_new 2018-09-28 08:52:47.625781798 +0200
@@ -1,5 +1,5 @@
name: os-autoinst
-version: 4.5.1536750184.92e52b69
-mtime: 1536750184
-commit: 92e52b692f20fc3d347deae80c1517c7df53cd81
+version: 4.5.1537682748.0d10ddb9
+mtime: 1537682748
+commit: 0d10ddb94ef1c40e8fcfa8fa2f106ee7ab4f0064
1
0
Hello community,
here is the log from the commit of package julia for openSUSE:Factory checked in at 2018-09-28 08:52:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/julia (Old)
and /work/SRC/openSUSE:Factory/.julia.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "julia"
Fri Sep 28 08:52:40 2018 rev:34 rq:638261 version:1.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/julia/julia-compat.changes 2018-08-24 17:03:28.998027204 +0200
+++ /work/SRC/openSUSE:Factory/.julia.new/julia-compat.changes 2018-09-28 08:52:44.345786560 +0200
@@ -1,0 +2,6 @@
+Mon Sep 24 18:58:18 UTC 2018 - Ronan Chagas <ronisbr(a)gmail.com>
+
+- Version bump to 1.0.0.
+ * v1.0.0 is basically v0.7.0 without deprecation warnings.
+
+-------------------------------------------------------------------
julia.changes: same change
Old:
----
julia-0.7.0.tar.gz
New:
----
julia-1.0.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ julia-compat.spec ++++++
--- /var/tmp/diff_new_pack.SlbFzq/_old 2018-09-28 08:52:45.417785003 +0200
+++ /var/tmp/diff_new_pack.SlbFzq/_new 2018-09-28 08:52:45.421784997 +0200
@@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@@ -23,8 +23,8 @@
%undefine _build_create_debug
%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
-%define julia_ver 0.7.0
-%define libjulia_sover_major 0.7
+%define julia_ver 1.0.0
+%define libjulia_sover_major 1
%define libjulia_sover_minor 0
%define libuv_ver ed3700c849289ed01fe04273a7bf865340b2bd7e
%define libwhich_ver 81e9723c0273d78493dc8c8ed570f68d9ce7e89e
@@ -33,7 +33,7 @@
%define compat_mode 1
%define src_name julia-tarball
%define libgit2_ver %(rpm -qa | grep -E "^libgit2-[0-9]" | head -n1 | cut -d'-' -f2)
-Version: 0.7.0
+Version: 1.0.0
Release: 0
URL: http://julialang.org/
Source0: https://github.com/JuliaLang/julia/releases/download/v%{julia_ver}/julia-%{…
++++++ julia.spec ++++++
--- /var/tmp/diff_new_pack.SlbFzq/_old 2018-09-28 08:52:45.441784968 +0200
+++ /var/tmp/diff_new_pack.SlbFzq/_new 2018-09-28 08:52:45.445784962 +0200
@@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@@ -23,8 +23,8 @@
%undefine _build_create_debug
%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
-%define julia_ver 0.7.0
-%define libjulia_sover_major 0.7
+%define julia_ver 1.0.0
+%define libjulia_sover_major 1
%define libjulia_sover_minor 0
%define libuv_ver ed3700c849289ed01fe04273a7bf865340b2bd7e
%define libwhich_ver 81e9723c0273d78493dc8c8ed570f68d9ce7e89e
@@ -33,7 +33,7 @@
%define compat_mode 0
%define src_name julia-tarball
%define libgit2_ver %(rpm -qa | grep -E "^libgit2-[0-9]" | head -n1 | cut -d'-' -f2)
-Version: 0.7.0
+Version: 1.0.0
Release: 0
URL: http://julialang.org/
Source0: https://github.com/JuliaLang/julia/releases/download/v%{julia_ver}/julia-%{…
++++++ julia-0.7.0.tar.gz -> julia-1.0.0.tar.gz ++++++
/work/SRC/openSUSE:Factory/julia/julia-0.7.0.tar.gz /work/SRC/openSUSE:Factory/.julia.new/julia-1.0.0.tar.gz differ: char 5, line 1
1
0
Hello community,
here is the log from the commit of package kernel-source for openSUSE:Factory checked in at 2018-09-28 08:52:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kernel-source (Old)
and /work/SRC/openSUSE:Factory/.kernel-source.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kernel-source"
Fri Sep 28 08:52:15 2018 rev:454 rq:636821 version:4.18.9
Changes:
--------
--- /work/SRC/openSUSE:Factory/kernel-source/dtb-aarch64.changes 2018-09-18 11:43:04.611933081 +0200
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/dtb-aarch64.changes 2018-09-28 08:52:23.905816284 +0200
@@ -1,0 +2,272 @@
+Thu Sep 20 08:37:04 CEST 2018 - jslaby(a)suse.cz
+
+- Linux 4.18.9 (bnc#1012628).
+- i2c: xiic: Make the start and the byte count write atomic
+ (bnc#1012628).
+- i2c: i801: fix DNV's SMBCTRL register offset (bnc#1012628).
+- HID: multitouch: fix Elan panels with 2 input modes declaration
+ (bnc#1012628).
+- HID: core: fix grouping by application (bnc#1012628).
+- HID: i2c-hid: Fix flooded incomplete report after S3 on Rayd
+ touchscreen (bnc#1012628).
+- HID: input: fix leaking custom input node name (bnc#1012628).
+- mm/hugetlb: filter out hugetlb pages if HUGEPAGE migration is
+ not supported (bnc#1012628).
+- memory_hotplug: fix kernel_panic on offline page processing
+ (bnc#1012628).
+- mac80211: don't update the PM state of a peer upon a multicast
+ frame (bnc#1012628).
+- scsi: lpfc: Correct MDS diag and nvmet configuration
+ (bnc#1012628).
+- nbd: don't allow invalid blocksize settings (bnc#1012628).
+- block: don't warn when doing fsync on read-only devices
+ (bnc#1012628).
+- block: bfq: swap puts in bfqg_and_blkg_put (bnc#1012628).
+- android: binder: fix the race mmap and alloc_new_buf_locked
+ (bnc#1012628).
+- MIPS: VDSO: Match data page cache colouring when D$ aliases
+ (bnc#1012628).
+- SMB3: Backup intent flag missing for directory opens with
+ backupuid mounts (bnc#1012628).
+- smb3: check for and properly advertise directory lease support
+ (bnc#1012628).
+- cifs: connect to servername instead of IP for IPC$ share
+ (bnc#1012628).
+- btrfs: fix qgroup_free wrong num_bytes in
+ btrfs_subvolume_reserve_metadata (bnc#1012628).
+- Btrfs: fix data corruption when deduplicating between different
+ files (bnc#1012628).
+- KVM: arm/arm64: Clean dcache to PoC when changing PTE due to
+ CoW (bnc#1012628).
+- KVM: PPC: Book3S HV: Use correct pagesize in kvm_unmap_radix()
+ (bnc#1012628).
+- KVM: s390: vsie: copy wrapping keys to right place
+ (bnc#1012628).
+- KVM: x86: SVM: Set EMULTYPE_NO_REEXECUTE for RSM emulation
+ (bnc#1012628).
+- KVM: VMX: Do not allow reexecute_instruction() when skipping
+ MMIO instr (bnc#1012628).
+- KVM: x86: Invert emulation re-execute behavior to make it opt-in
+ (bnc#1012628).
+- KVM: x86: Merge EMULTYPE_RETRY and EMULTYPE_ALLOW_REEXECUTE
+ (bnc#1012628).
+- KVM: x86: Default to not allowing emulation retry in
+ kvm_mmu_page_fault (bnc#1012628).
+- KVM: x86: Do not re-{try,execute} after failed emulation in L2
+ (bnc#1012628).
+- ARC: [plat-axs*/plat-hsdk]: Allow U-Boot to pass MAC-address
+ to the kernel (bnc#1012628).
+- ACPI / LPSS: Force LPSS quirks on boot (bnc#1012628).
+- memory: ti-aemif: fix a potential NULL-pointer dereference
+ (bnc#1012628).
+- ALSA: hda - Fix cancel_work_sync() stall from jackpoll work
+ (bnc#1012628).
+- cpu/hotplug: Adjust misplaced smb() in cpuhp_thread_fun()
+ (bnc#1012628).
+- cpu/hotplug: Prevent state corruption on error rollback
+ (bnc#1012628).
+- x86/microcode: Make sure boot_cpu_data.microcode is up-to-date
+ (bnc#1012628).
+- x86/microcode: Update the new microcode revision unconditionally
+ (bnc#1012628).
+- x86/process: Don't mix user/kernel regs in 64bit __show_regs()
+ (bnc#1012628).
+- x86/apic/vector: Make error return value negative (bnc#1012628).
+- switchtec: Fix Spectre v1 vulnerability (bnc#1012628).
+- ARC: [plat-axs*]: Enable SWAP (bnc#1012628).
+- tc-testing: flush gact actions on test teardown (bnc#1012628).
+- tc-testing: remove duplicate spaces in connmark match patterns
+ (bnc#1012628).
+- misc: mic: SCIF Fix scif_get_new_port() error handling
+ (bnc#1012628).
+- ALSA: hda/realtek - Add mute LED quirk for HP Spectre x360
+ (bnc#1012628).
+- ethtool: Remove trailing semicolon for static inline
+ (bnc#1012628).
+- i2c: aspeed: Add an explicit type casting for *get_clk_reg_val
+ (bnc#1012628).
+- Bluetooth: h5: Fix missing dependency on BT_HCIUART_SERDEV
+ (bnc#1012628).
+- pinctrl: berlin: fix 'pctrl->functions' allocation in
+ berlin_pinctrl_build_state (bnc#1012628).
+- gpio: tegra: Move driver registration to subsys_init level
+ (bnc#1012628).
+- powerpc/powernv: Fix concurrency issue with npu->mmio_atsd_usage
+ (bnc#1012628).
+- powerpc/4xx: Fix error return path in ppc4xx_msi_probe()
+ (bnc#1012628).
+- selftests/bpf: fix a typo in map in map test (bnc#1012628).
+- media: davinci: vpif_display: Mix memory leak on probe error
+ path (bnc#1012628).
+- media: dw2102: Fix memleak on sequence of probes (bnc#1012628).
+- net: phy: Fix the register offsets in Broadcom iProc mdio mux
+ driver (bnc#1012628).
+- scsi: qla2xxx: Fix unintended Logout (bnc#1012628).
+- scsi: qla2xxx: Fix session state stuck in Get Port DB
+ (bnc#1012628).
+- scsi: qla2xxx: Silent erroneous message (bnc#1012628).
+- clk: scmi: Fix the rounding of clock rate (bnc#1012628).
+- blk-mq: fix updating tags depth (bnc#1012628).
+- scsi: lpfc: Fix driver crash when re-registering NVME rports
+ (bnc#1012628).
+- scsi: target: fix __transport_register_session locking
+ (bnc#1012628).
+- md/raid5: fix data corruption of replacements after originals
+ dropped (bnc#1012628).
+- timers: Clear timer_base::must_forward_clk with timer_base::lock
+ held (bnc#1012628).
+- media: camss: csid: Configure data type and decode format
+ properly (bnc#1012628).
+- gpu: ipu-v3: default to id 0 on missing OF alias (bnc#1012628).
+- misc: ti-st: Fix memory leak in the error path of probe()
+ (bnc#1012628).
+- uio: potential double frees if __uio_register_device() fails
+ (bnc#1012628).
+- firmware: vpd: Fix section enabled flag on vpd_section_destroy
+ (bnc#1012628).
+- Drivers: hv: vmbus: Cleanup synic memory free path
+ (bnc#1012628).
+- tty: rocket: Fix possible buffer overwrite on register_PCI
+ (bnc#1012628).
+- uio: fix possible circular locking dependency (bnc#1012628).
+- iwlwifi: pcie: don't access periphery registers when not
+ available (bnc#1012628).
+- IB/IPoIB: Set ah valid flag in multicast send flow
+ (bnc#1012628).
+- f2fs: fix to active page in lru list for read path
+ (bnc#1012628).
+- f2fs: do not set free of current section (bnc#1012628).
+- f2fs: Keep alloc_valid_block_count in sync (bnc#1012628).
+- f2fs: issue discard align to section in LFS mode (bnc#1012628).
+- f2fs: fix defined but not used build warnings (bnc#1012628).
+- f2fs: fix to detect looped node chain correctly (bnc#1012628).
+- ASoC: soc-pcm: Use delay set in component pointer function
+ (bnc#1012628).
+- perf tools: Allow overriding MAX_NR_CPUS at compile time
+ (bnc#1012628).
+- device-dax: avoid hang on error before devm_memremap_pages()
+ (bnc#1012628).
+- NFSv4.0 fix client reference leak in callback (bnc#1012628).
+- perf c2c report: Fix crash for empty browser (bnc#1012628).
+- perf evlist: Fix error out while applying initial delay and LBR
+ (bnc#1012628).
+- powerpc/pseries: fix EEH recovery of some IOV devices
+ (bnc#1012628).
+- macintosh/via-pmu: Add missing mmio accessors (bnc#1012628).
+- perf build: Fix installation directory for eBPF (bnc#1012628).
+- ath9k: report tx status on EOSP (bnc#1012628).
+- ath9k_hw: fix channel maximum power level test (bnc#1012628).
+- ath10k: prevent active scans on potential unusable channels
+ (bnc#1012628).
+- wlcore: Set rx_status boottime_ns field on rx (bnc#1012628).
+- rpmsg: core: add support to power domains for devices
+ (bnc#1012628).
+- mtd: rawnand: make subop helpers return unsigned values
+ (bnc#1012628).
+- scsi: tcmu: do not set max_blocks if data_bitmap has been setup
+ (bnc#1012628).
+- MIPS: Fix ISA virt/bus conversion for non-zero PHYS_OFFSET
+ (bnc#1012628).
+- ata: libahci: Allow reconfigure of DEVSLP register
+ (bnc#1012628).
+- ata: libahci: Correct setting of DEVSLP register (bnc#1012628).
+- nfs: Referrals not inheriting proto setting from parent
+ (bnc#1012628).
+- scsi: 3ware: fix return 0 on the error path of probe
+ (bnc#1012628).
+- tools/testing/nvdimm: kaddr and pfn can be NULL to
+ ->direct_access() (bnc#1012628).
+- ath10k: disable bundle mgmt tx completion event support
+ (bnc#1012628).
+- media: em28xx: explicitly disable TS packet filter
+ (bnc#1012628).
+- PCI: mobiveil: Add missing ../pci.h include (bnc#1012628).
+- PCI: mobiveil: Fix struct mobiveil_pcie.pcie_reg_base address
+ type (bnc#1012628).
+- powerpc/mm: Don't report PUDs as memory leaks when using
+ kmemleak (bnc#1012628).
+- Bluetooth: hidp: Fix handling of strncpy for hid->name
+ information (bnc#1012628).
+- x86/mm: Remove in_nmi() warning from vmalloc_fault()
+ (bnc#1012628).
+- regulator: tps65217: Fix NULL pointer dereference on probe
+ (bnc#1012628).
+- pinctrl: imx: off by one in imx_pinconf_group_dbg_show()
+ (bnc#1012628).
+- gpio: pxa: disable pinctrl calls for PXA3xx (bnc#1012628).
+- gpio: ml-ioh: Fix buffer underwrite on probe error path
++++ 75 more lines (skipped)
++++ between /work/SRC/openSUSE:Factory/kernel-source/dtb-aarch64.changes
++++ and /work/SRC/openSUSE:Factory/.kernel-source.new/dtb-aarch64.changes
dtb-armv6l.changes: same change
dtb-armv7l.changes: same change
kernel-64kb.changes: same change
kernel-debug.changes: same change
kernel-default.changes: same change
kernel-docs.changes: same change
kernel-kvmsmall.changes: same change
kernel-lpae.changes: same change
kernel-obs-build.changes: same change
kernel-obs-qa.changes: same change
kernel-pae.changes: same change
kernel-source.changes: same change
kernel-syms.changes: same change
kernel-vanilla.changes: same change
kernel-zfcpdump.changes: same change
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ dtb-aarch64.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:35.893798840 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:35.897798835 +0200
@@ -17,7 +17,7 @@
%define srcversion 4.18
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@@ -29,9 +29,9 @@
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols})
Name: dtb-aarch64
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
dtb-armv6l.spec: same change
dtb-armv7l.spec: same change
++++++ kernel-64kb.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:35.957798747 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:35.965798736 +0200
@@ -18,7 +18,7 @@
%define srcversion 4.18
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%define vanilla_only 0
@@ -58,9 +58,9 @@
Summary: Kernel with 64kb PAGE_SIZE
License: GPL-2.0
Group: System/Kernel
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
@@ -165,10 +165,10 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
# END COMMON DEPS
-Provides: %name-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: %name-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%obsolete_rebuilds %name
Source0: http://www.kernel.org/pub/linux/kernel/v4.x/linux-%srcversion.tar.xz
Source2: source-post.sh
@@ -1097,8 +1097,8 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%obsolete_rebuilds %name-base
%ifarch %ix86
++++++ kernel-debug.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:35.989798702 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:35.989798702 +0200
@@ -18,7 +18,7 @@
%define srcversion 4.18
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%define vanilla_only 0
@@ -58,9 +58,9 @@
Summary: A Debug Version of the Kernel
License: GPL-2.0
Group: System/Kernel
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
@@ -165,10 +165,10 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
# END COMMON DEPS
-Provides: %name-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: %name-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%ifarch ppc64
Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28
@@ -1103,8 +1103,8 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%ifarch ppc64
Provides: kernel-kdump-base = 2.6.28
++++++ kernel-default.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:36.009798672 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:36.017798660 +0200
@@ -18,7 +18,7 @@
%define srcversion 4.18
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%define vanilla_only 0
@@ -58,9 +58,9 @@
Summary: The Standard Kernel
License: GPL-2.0
Group: System/Kernel
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
@@ -165,10 +165,10 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
# END COMMON DEPS
-Provides: %name-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: %name-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%ifarch %ix86
Provides: kernel-smp = 2.6.17
Obsoletes: kernel-smp <= 2.6.17
@@ -1146,8 +1146,8 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%ifarch %ix86
Provides: kernel-trace-base = 3.13
++++++ kernel-docs.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:36.037798631 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:36.037798631 +0200
@@ -17,7 +17,7 @@
%define srcversion 4.18
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@@ -31,9 +31,9 @@
Summary: Kernel Documentation
License: GPL-2.0
Group: Documentation/Man
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
@@ -63,7 +63,7 @@
%endif
Url: http://www.kernel.org/
Provides: %name = %version-%source_rel
-Provides: %name-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: %name-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: http://www.kernel.org/pub/linux/kernel/v4.x/linux-%srcversion.tar.xz
++++++ kernel-kvmsmall.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:36.053798608 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:36.053798608 +0200
@@ -18,7 +18,7 @@
%define srcversion 4.18
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%define vanilla_only 0
@@ -58,9 +58,9 @@
Summary: The Small Developer Kernel for KVM
License: GPL-2.0
Group: System/Kernel
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
@@ -165,10 +165,10 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
# END COMMON DEPS
-Provides: %name-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: %name-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%obsolete_rebuilds %name
Source0: http://www.kernel.org/pub/linux/kernel/v4.x/linux-%srcversion.tar.xz
Source2: source-post.sh
@@ -1101,8 +1101,8 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%obsolete_rebuilds %name-base
%ifarch %ix86
kernel-lpae.spec: same change
++++++ kernel-obs-build.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:36.089798556 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:36.093798550 +0200
@@ -19,7 +19,7 @@
#!BuildIgnore: post-build-checks
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%define vanilla_only 0
@@ -45,7 +45,7 @@
%endif
%endif
%endif
-BuildRequires: kernel%kernel_flavor-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+BuildRequires: kernel%kernel_flavor-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%if 0%{?rhel_version}
BuildRequires: kernel
@@ -64,9 +64,9 @@
Summary: package kernel and initrd for OBS VM builds
License: GPL-2.0
Group: SLES
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
++++++ kernel-obs-qa.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:36.109798527 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:36.113798520 +0200
@@ -17,7 +17,7 @@
# needsrootforbuild
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@@ -36,9 +36,9 @@
Summary: Basic QA tests for the kernel
License: GPL-2.0
Group: SLES
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
++++++ kernel-pae.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:36.141798480 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:36.145798474 +0200
@@ -18,7 +18,7 @@
%define srcversion 4.18
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%define vanilla_only 0
@@ -58,9 +58,9 @@
Summary: Kernel with PAE Support
License: GPL-2.0
Group: System/Kernel
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
@@ -165,10 +165,10 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
# END COMMON DEPS
-Provides: %name-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: %name-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%ifarch %ix86
Provides: kernel-bigsmp = 2.6.17
Obsoletes: kernel-bigsmp <= 2.6.17
@@ -1123,8 +1123,8 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%ifarch %ix86
Provides: kernel-vmi-base = 2.6.38
++++++ kernel-source.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:36.157798457 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:36.161798451 +0200
@@ -18,7 +18,7 @@
%define srcversion 4.18
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%define vanilla_only 0
@@ -30,9 +30,9 @@
Summary: The Linux Kernel Sources
License: GPL-2.0
Group: Development/Sources
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
@@ -43,7 +43,7 @@
BuildRequires: sed
Requires(post): coreutils sed
Provides: %name = %version-%source_rel
-Provides: %name-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: %name-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
Provides: linux
Provides: multiversion(kernel)
Source0: http://www.kernel.org/pub/linux/kernel/v4.x/linux-%srcversion.tar.xz
++++++ kernel-syms.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:36.181798422 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:36.181798422 +0200
@@ -24,10 +24,10 @@
Summary: Kernel Symbol Versions (modversions)
License: GPL-2.0
Group: Development/Sources
-Version: 4.18.8
+Version: 4.18.9
%if %using_buildservice
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
@@ -55,7 +55,7 @@
%endif
Requires: pesign-obs-integration
Provides: %name = %version-%source_rel
-Provides: %name-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: %name-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
Provides: multiversion(kernel)
Source: README.KSYMS
Requires: kernel-devel%variant = %version-%source_rel
++++++ kernel-vanilla.spec ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:36.197798398 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:36.201798393 +0200
@@ -18,7 +18,7 @@
%define srcversion 4.18
-%define patchversion 4.18.8
+%define patchversion 4.18.9
%define variant %{nil}
%define vanilla_only 0
@@ -58,9 +58,9 @@
Summary: The Standard Kernel - without any SUSE patches
License: GPL-2.0
Group: System/Kernel
-Version: 4.18.8
+Version: 4.18.9
%if 0%{?is_kotd}
-Release: <RELEASE>.gf486469
+Release: <RELEASE>.g67901ec
%else
Release: 0
%endif
@@ -165,10 +165,10 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
# END COMMON DEPS
-Provides: %name-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: %name-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%obsolete_rebuilds %name
Source0: http://www.kernel.org/pub/linux/kernel/v4.x/linux-%srcversion.tar.xz
Source2: source-post.sh
@@ -1094,8 +1094,8 @@
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
-Provides: kernel-%build_flavor-base-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
-Provides: kernel-srchash = f48646996dbccd1cdad650b1ea8b929b2469ef81
+Provides: kernel-%build_flavor-base-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
+Provides: kernel-srchash = 67901ec419cb23ba52e652b7057e926aef54675e
%obsolete_rebuilds %name-base
%ifarch %ix86
kernel-zfcpdump.spec: same change
++++++ patches.kernel.org.tar.bz2 ++++++
++++ 12762 lines of diff (skipped)
++++++ patches.suse.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches.suse/arm64-kvm-aarch32-fpu.patch new/patches.suse/arm64-kvm-aarch32-fpu.patch
--- old/patches.suse/arm64-kvm-aarch32-fpu.patch 2018-09-09 12:26:20.000000000 +0200
+++ new/patches.suse/arm64-kvm-aarch32-fpu.patch 1970-01-01 01:00:00.000000000 +0100
@@ -1,65 +0,0 @@
-From f2d1d43e2429f9269ab6c565440e095ab3a9be89 Mon Sep 17 00:00:00 2001
-From: Marc Zyngier <marc.zyngier(a)arm.com>
-Date: Thu, 23 Aug 2018 11:51:43 +0100
-Subject: [PATCH] arm64: KVM: Only force FPEXC32_EL2.EN if trapping FPSIMD
-Patch-mainline: submitted https://www.spinics.net/lists/kvm-arm/msg32520.html
-References: bsc#1106841
-
-If trapping FPSIMD in the context of an AArch32 guest, it is critical
-to set FPEXC32_EL2.EN to 1 so that the trapping is taken to EL2 and
-not EL1.
-
-Conversely, it is just as critical *not* to set FPEXC32_EL2.EN to 1
-if we're not going to trap FPSIMD, as we then corrupt the existing
-VFP state.
-
-Moving the call to __activate_traps_fpsimd32 to the point where we
-know for sure that we are going to trap ensures that we don't set that
-bit spuriously.
-
-Fixes: e6b673b741ea ("KVM: arm64: Optimise FPSIMD handling to reduce guest/host thrashing")
-Cc: Dave Martin <dave.martin(a)arm.com>
-Reported-by: Alexander Graf <agraf(a)suse.de>
-Signed-off-by: Marc Zyngier <marc.zyngier(a)arm.com>
-Signed-off-by: Alexander Graf <agraf(a)suse.de>
----
- arch/arm64/kvm/hyp/switch.c | 9 ++++++---
- 1 file changed, 6 insertions(+), 3 deletions(-)
-
-diff --git a/arch/arm64/kvm/hyp/switch.c b/arch/arm64/kvm/hyp/switch.c
-index d496ef579859..ca46153d7915 100644
---- a/arch/arm64/kvm/hyp/switch.c
-+++ b/arch/arm64/kvm/hyp/switch.c
-@@ -98,8 +98,10 @@ static void activate_traps_vhe(struct kvm_vcpu *vcpu)
- val = read_sysreg(cpacr_el1);
- val |= CPACR_EL1_TTA;
- val &= ~CPACR_EL1_ZEN;
-- if (!update_fp_enabled(vcpu))
-+ if (!update_fp_enabled(vcpu)) {
- val &= ~CPACR_EL1_FPEN;
-+ __activate_traps_fpsimd32(vcpu);
-+ }
-
- write_sysreg(val, cpacr_el1);
-
-@@ -114,8 +116,10 @@ static void __hyp_text __activate_traps_nvhe(struct kvm_vcpu *vcpu)
-
- val = CPTR_EL2_DEFAULT;
- val |= CPTR_EL2_TTA | CPTR_EL2_TZ;
-- if (!update_fp_enabled(vcpu))
-+ if (!update_fp_enabled(vcpu)) {
- val |= CPTR_EL2_TFP;
-+ __activate_traps_fpsimd32(vcpu);
-+ }
-
- write_sysreg(val, cptr_el2);
- }
-@@ -129,7 +133,6 @@ static void __hyp_text __activate_traps(struct kvm_vcpu *vcpu)
- if (cpus_have_const_cap(ARM64_HAS_RAS_EXTN) && (hcr & HCR_VSE))
- write_sysreg_s(vcpu->arch.vsesr_el2, SYS_VSESR_EL2);
-
-- __activate_traps_fpsimd32(vcpu);
- if (has_vhe())
- activate_traps_vhe(vcpu);
- else
-
++++++ series.conf ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:37.141797026 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:37.141797026 +0200
@@ -662,6 +662,165 @@
patches.kernel.org/4.18.8-196-HID-redragon-fix-num-lock-and-caps-lock-LEDs.…
patches.kernel.org/4.18.8-197-ASoC-wm8994-Fix-missing-break-in-switch.patch
patches.kernel.org/4.18.8-198-Linux-4.18.8.patch
+ patches.kernel.org/4.18.9-001-i2c-xiic-Make-the-start-and-the-byte-count-wr…
+ patches.kernel.org/4.18.9-002-i2c-i801-fix-DNV-s-SMBCTRL-register-offset.pa…
+ patches.kernel.org/4.18.9-003-HID-multitouch-fix-Elan-panels-with-2-input-m…
+ patches.kernel.org/4.18.9-004-HID-core-fix-grouping-by-application.patch
+ patches.kernel.org/4.18.9-005-HID-i2c-hid-Fix-flooded-incomplete-report-aft…
+ patches.kernel.org/4.18.9-006-HID-input-fix-leaking-custom-input-node-name.…
+ patches.kernel.org/4.18.9-007-mm-hugetlb-filter-out-hugetlb-pages-if-HUGEPA…
+ patches.kernel.org/4.18.9-008-memory_hotplug-fix-kernel_panic-on-offline-pa…
+ patches.kernel.org/4.18.9-009-mac80211-don-t-update-the-PM-state-of-a-peer-…
+ patches.kernel.org/4.18.9-010-scsi-lpfc-Correct-MDS-diag-and-nvmet-configur…
+ patches.kernel.org/4.18.9-011-nbd-don-t-allow-invalid-blocksize-settings.pa…
+ patches.kernel.org/4.18.9-012-block-don-t-warn-when-doing-fsync-on-read-onl…
+ patches.kernel.org/4.18.9-013-block-bfq-swap-puts-in-bfqg_and_blkg_put.patch
+ patches.kernel.org/4.18.9-014-android-binder-fix-the-race-mmap-and-alloc_ne…
+ patches.kernel.org/4.18.9-015-MIPS-VDSO-Match-data-page-cache-colouring-whe…
+ patches.kernel.org/4.18.9-016-SMB3-Backup-intent-flag-missing-for-directory…
+ patches.kernel.org/4.18.9-017-smb3-check-for-and-properly-advertise-directo…
+ patches.kernel.org/4.18.9-018-cifs-connect-to-servername-instead-of-IP-for-…
+ patches.kernel.org/4.18.9-019-btrfs-fix-qgroup_free-wrong-num_bytes-in-btrf…
+ patches.kernel.org/4.18.9-020-Btrfs-fix-data-corruption-when-deduplicating-…
+ patches.kernel.org/4.18.9-021-arm64-KVM-Only-force-FPEXC32_EL2.EN-if-trappi…
+ patches.kernel.org/4.18.9-022-KVM-arm-arm64-Clean-dcache-to-PoC-when-changi…
+ patches.kernel.org/4.18.9-023-KVM-PPC-Book3S-HV-Use-correct-pagesize-in-kvm…
+ patches.kernel.org/4.18.9-024-KVM-s390-vsie-copy-wrapping-keys-to-right-pla…
+ patches.kernel.org/4.18.9-025-KVM-x86-SVM-Set-EMULTYPE_NO_REEXECUTE-for-RSM…
+ patches.kernel.org/4.18.9-026-KVM-VMX-Do-not-allow-reexecute_instruction-wh…
+ patches.kernel.org/4.18.9-027-KVM-x86-Invert-emulation-re-execute-behavior-…
+ patches.kernel.org/4.18.9-028-KVM-x86-Merge-EMULTYPE_RETRY-and-EMULTYPE_ALL…
+ patches.kernel.org/4.18.9-029-KVM-x86-Default-to-not-allowing-emulation-ret…
+ patches.kernel.org/4.18.9-030-KVM-x86-Do-not-re-try-execute-after-failed-em…
+ patches.kernel.org/4.18.9-031-ARC-plat-axs-plat-hsdk-Allow-U-Boot-to-pass-M…
+ patches.kernel.org/4.18.9-032-ACPI-LPSS-Force-LPSS-quirks-on-boot.patch
+ patches.kernel.org/4.18.9-033-memory-ti-aemif-fix-a-potential-NULL-pointer-…
+ patches.kernel.org/4.18.9-034-ALSA-hda-Fix-cancel_work_sync-stall-from-jack…
+ patches.kernel.org/4.18.9-035-cpu-hotplug-Adjust-misplaced-smb-in-cpuhp_thr…
+ patches.kernel.org/4.18.9-036-cpu-hotplug-Prevent-state-corruption-on-error…
+ patches.kernel.org/4.18.9-037-x86-microcode-Make-sure-boot_cpu_data.microco…
+ patches.kernel.org/4.18.9-038-x86-microcode-Update-the-new-microcode-revisi…
+ patches.kernel.org/4.18.9-039-x86-process-Don-t-mix-user-kernel-regs-in-64b…
+ patches.kernel.org/4.18.9-040-x86-apic-vector-Make-error-return-value-negat…
+ patches.kernel.org/4.18.9-041-switchtec-Fix-Spectre-v1-vulnerability.patch
+ patches.kernel.org/4.18.9-042-ARC-plat-axs-Enable-SWAP.patch
+ patches.kernel.org/4.18.9-043-tc-testing-flush-gact-actions-on-test-teardow…
+ patches.kernel.org/4.18.9-044-tc-testing-remove-duplicate-spaces-in-connmar…
+ patches.kernel.org/4.18.9-045-misc-mic-SCIF-Fix-scif_get_new_port-error-han…
+ patches.kernel.org/4.18.9-046-ALSA-hda-realtek-Add-mute-LED-quirk-for-HP-Sp…
+ patches.kernel.org/4.18.9-047-ethtool-Remove-trailing-semicolon-for-static-…
+ patches.kernel.org/4.18.9-048-i2c-aspeed-Add-an-explicit-type-casting-for-g…
+ patches.kernel.org/4.18.9-049-Bluetooth-h5-Fix-missing-dependency-on-BT_HCI…
+ patches.kernel.org/4.18.9-050-pinctrl-berlin-fix-pctrl-functions-allocation…
+ patches.kernel.org/4.18.9-051-gpio-tegra-Move-driver-registration-to-subsys…
+ patches.kernel.org/4.18.9-052-powerpc-powernv-Fix-concurrency-issue-with-np…
+ patches.kernel.org/4.18.9-053-powerpc-4xx-Fix-error-return-path-in-ppc4xx_m…
+ patches.kernel.org/4.18.9-054-selftests-bpf-fix-a-typo-in-map-in-map-test.p…
+ patches.kernel.org/4.18.9-055-media-davinci-vpif_display-Mix-memory-leak-on…
+ patches.kernel.org/4.18.9-056-media-dw2102-Fix-memleak-on-sequence-of-probe…
+ patches.kernel.org/4.18.9-057-net-phy-Fix-the-register-offsets-in-Broadcom-…
+ patches.kernel.org/4.18.9-058-scsi-qla2xxx-Fix-unintended-Logout.patch
+ patches.kernel.org/4.18.9-059-scsi-qla2xxx-Fix-session-state-stuck-in-Get-P…
+ patches.kernel.org/4.18.9-060-scsi-qla2xxx-Silent-erroneous-message.patch
+ patches.kernel.org/4.18.9-061-clk-scmi-Fix-the-rounding-of-clock-rate.patch
+ patches.kernel.org/4.18.9-062-blk-mq-fix-updating-tags-depth.patch
+ patches.kernel.org/4.18.9-063-scsi-lpfc-Fix-driver-crash-when-re-registerin…
+ patches.kernel.org/4.18.9-064-scsi-target-fix-__transport_register_session-…
+ patches.kernel.org/4.18.9-065-md-raid5-fix-data-corruption-of-replacements-…
+ patches.kernel.org/4.18.9-066-timers-Clear-timer_base-must_forward_clk-with…
+ patches.kernel.org/4.18.9-067-media-camss-csid-Configure-data-type-and-deco…
+ patches.kernel.org/4.18.9-068-gpu-ipu-v3-default-to-id-0-on-missing-OF-alia…
+ patches.kernel.org/4.18.9-069-misc-ti-st-Fix-memory-leak-in-the-error-path-…
+ patches.kernel.org/4.18.9-070-uio-potential-double-frees-if-__uio_register_…
+ patches.kernel.org/4.18.9-071-firmware-vpd-Fix-section-enabled-flag-on-vpd_…
+ patches.kernel.org/4.18.9-072-Drivers-hv-vmbus-Cleanup-synic-memory-free-pa…
+ patches.kernel.org/4.18.9-073-tty-rocket-Fix-possible-buffer-overwrite-on-r…
+ patches.kernel.org/4.18.9-074-uio-fix-possible-circular-locking-dependency.…
+ patches.kernel.org/4.18.9-075-iwlwifi-pcie-don-t-access-periphery-registers…
+ patches.kernel.org/4.18.9-076-IB-IPoIB-Set-ah-valid-flag-in-multicast-send-…
+ patches.kernel.org/4.18.9-077-f2fs-fix-to-active-page-in-lru-list-for-read-…
+ patches.kernel.org/4.18.9-078-f2fs-do-not-set-free-of-current-section.patch
+ patches.kernel.org/4.18.9-079-f2fs-Keep-alloc_valid_block_count-in-sync.pat…
+ patches.kernel.org/4.18.9-080-f2fs-issue-discard-align-to-section-in-LFS-mo…
+ patches.kernel.org/4.18.9-081-f2fs-fix-defined-but-not-used-build-warnings.…
+ patches.kernel.org/4.18.9-082-f2fs-fix-to-detect-looped-node-chain-correctl…
+ patches.kernel.org/4.18.9-083-ASoC-soc-pcm-Use-delay-set-in-component-point…
+ patches.kernel.org/4.18.9-084-perf-tools-Allow-overriding-MAX_NR_CPUS-at-co…
+ patches.kernel.org/4.18.9-085-device-dax-avoid-hang-on-error-before-devm_me…
+ patches.kernel.org/4.18.9-086-NFSv4.0-fix-client-reference-leak-in-callback…
+ patches.kernel.org/4.18.9-087-perf-c2c-report-Fix-crash-for-empty-browser.p…
+ patches.kernel.org/4.18.9-088-perf-evlist-Fix-error-out-while-applying-init…
+ patches.kernel.org/4.18.9-089-powerpc-pseries-fix-EEH-recovery-of-some-IOV-…
+ patches.kernel.org/4.18.9-090-macintosh-via-pmu-Add-missing-mmio-accessors.…
+ patches.kernel.org/4.18.9-091-perf-build-Fix-installation-directory-for-eBP…
+ patches.kernel.org/4.18.9-092-ath9k-report-tx-status-on-EOSP.patch
+ patches.kernel.org/4.18.9-093-ath9k_hw-fix-channel-maximum-power-level-test…
+ patches.kernel.org/4.18.9-094-ath10k-prevent-active-scans-on-potential-unus…
+ patches.kernel.org/4.18.9-095-wlcore-Set-rx_status-boottime_ns-field-on-rx.…
+ patches.kernel.org/4.18.9-096-rpmsg-core-add-support-to-power-domains-for-d…
+ patches.kernel.org/4.18.9-097-mtd-rawnand-make-subop-helpers-return-unsigne…
+ patches.kernel.org/4.18.9-098-scsi-tcmu-do-not-set-max_blocks-if-data_bitma…
+ patches.kernel.org/4.18.9-099-MIPS-Fix-ISA-virt-bus-conversion-for-non-zero…
+ patches.kernel.org/4.18.9-100-ata-libahci-Allow-reconfigure-of-DEVSLP-regis…
+ patches.kernel.org/4.18.9-101-ata-libahci-Correct-setting-of-DEVSLP-registe…
+ patches.kernel.org/4.18.9-102-nfs-Referrals-not-inheriting-proto-setting-fr…
+ patches.kernel.org/4.18.9-103-scsi-3ware-fix-return-0-on-the-error-path-of-…
+ patches.kernel.org/4.18.9-104-tools-testing-nvdimm-kaddr-and-pfn-can-be-NUL…
+ patches.kernel.org/4.18.9-105-ath10k-disable-bundle-mgmt-tx-completion-even…
+ patches.kernel.org/4.18.9-106-media-em28xx-explicitly-disable-TS-packet-fil…
+ patches.kernel.org/4.18.9-107-PCI-mobiveil-Add-missing-.-pci.h-include.patch
+ patches.kernel.org/4.18.9-108-PCI-mobiveil-Fix-struct-mobiveil_pcie.pcie_re…
+ patches.kernel.org/4.18.9-109-powerpc-mm-Don-t-report-PUDs-as-memory-leaks-…
+ patches.kernel.org/4.18.9-110-Bluetooth-hidp-Fix-handling-of-strncpy-for-hi…
+ patches.kernel.org/4.18.9-111-x86-mm-Remove-in_nmi-warning-from-vmalloc_fau…
+ patches.kernel.org/4.18.9-112-regulator-tps65217-Fix-NULL-pointer-dereferen…
+ patches.kernel.org/4.18.9-113-pinctrl-imx-off-by-one-in-imx_pinconf_group_d…
+ patches.kernel.org/4.18.9-114-gpio-pxa-disable-pinctrl-calls-for-PXA3xx.pat…
+ patches.kernel.org/4.18.9-115-gpio-ml-ioh-Fix-buffer-underwrite-on-probe-er…
+ patches.kernel.org/4.18.9-116-pinctrl-amd-only-handle-irq-if-it-is-pending-…
+ patches.kernel.org/4.18.9-117-net-mvneta-fix-mtu-change-on-port-without-lin…
+ patches.kernel.org/4.18.9-118-f2fs-try-grabbing-node-page-lock-aggressively…
+ patches.kernel.org/4.18.9-119-pktcdvd-Fix-possible-Spectre-v1-for-pkt_devs.…
+ patches.kernel.org/4.18.9-120-f2fs-fix-to-skip-GC-if-type-in-SSA-and-SIT-is…
+ patches.kernel.org/4.18.9-121-tpm_tis_spi-Pass-the-SPI-IRQ-down-to-the-driv…
+ patches.kernel.org/4.18.9-122-tpm-tpm_i2c_infineon-switch-to-i2c_lock_bus-.…
+ patches.kernel.org/4.18.9-123-f2fs-fix-to-do-sanity-check-with-reserved-blk…
+ patches.kernel.org/4.18.9-124-MIPS-Octeon-add-missing-of_node_put.patch
+ patches.kernel.org/4.18.9-125-MIPS-generic-fix-missing-of_node_put.patch
+ patches.kernel.org/4.18.9-126-thermal-rcar_thermal-avoid-NULL-dereference-i…
+ patches.kernel.org/4.18.9-127-thermal_hwmon-Sanitize-attribute-name-passed-…
+ patches.kernel.org/4.18.9-128-net-dcb-For-wild-card-lookups-use-priority-1-…
+ patches.kernel.org/4.18.9-129-dm-cache-only-allow-a-single-io_mode-cache-fe…
+ patches.kernel.org/4.18.9-130-Input-atmel_mxt_ts-only-use-first-T9-instance…
+ patches.kernel.org/4.18.9-131-media-s5p-mfc-Fix-buffer-look-up-in-s5p_mfc_h…
+ patches.kernel.org/4.18.9-132-partitions-aix-append-null-character-to-print…
+ patches.kernel.org/4.18.9-133-partitions-aix-fix-usage-of-uninitialized-lv_…
+ patches.kernel.org/4.18.9-134-media-rcar-csi2-update-stream-start-for-V3M.p…
+ patches.kernel.org/4.18.9-135-media-helene-fix-xtal-frequency-setting-at-po…
+ patches.kernel.org/4.18.9-136-drm-amd-display-Prevent-PSR-from-being-enable…
+ patches.kernel.org/4.18.9-137-media-em28xx-Fix-dual-transport-stream-operat…
+ patches.kernel.org/4.18.9-138-iommu-arm-smmu-v3-Abort-all-transactions-if-S…
+ patches.kernel.org/4.18.9-139-f2fs-fix-to-wait-on-page-writeback-before-upd…
+ patches.kernel.org/4.18.9-140-f2fs-Fix-uninitialized-return-in-f2fs_ioc_shu…
+ patches.kernel.org/4.18.9-141-media-em28xx-Fix-DualHD-disconnect-oops.patch
+ patches.kernel.org/4.18.9-142-f2fs-avoid-potential-deadlock-in-f2fs_sbi_sto…
+ patches.kernel.org/4.18.9-143-f2fs-fix-to-do-sanity-check-with-secs_per_zon…
+ patches.kernel.org/4.18.9-144-mfd-rave-sp-Initialize-flow-control-and-parit…
+ patches.kernel.org/4.18.9-145-iommu-ipmmu-vmsa-Fix-allocation-in-atomic-con…
+ patches.kernel.org/4.18.9-146-mfd-ti_am335x_tscadc-Fix-struct-clk-memory-le…
+ patches.kernel.org/4.18.9-147-f2fs-fix-to-do-sanity-check-with-sit-nat-_ver…
+ patches.kernel.org/4.18.9-148-f2fs-fix-to-propagate-return-value-of-scan_na…
+ patches.kernel.org/4.18.9-149-f2fs-fix-to-do-sanity-check-with-extra_attr-f…
+ patches.kernel.org/4.18.9-150-RDMA-hns-Add-illegal-hop_num-judgement.patch
+ patches.kernel.org/4.18.9-151-NFSv4.1-Fix-a-potential-layoutget-layoutrecal…
+ patches.kernel.org/4.18.9-152-RDMA-hns-Update-the-data-type-of-immediate-da…
+ patches.kernel.org/4.18.9-153-MIPS-WARN_ON-invalid-DMA-cache-maintenance-no…
+ patches.kernel.org/4.18.9-154-MIPS-mscc-ocelot-fix-length-of-memory-address…
+ patches.kernel.org/4.18.9-155-RDMA-cma-Do-not-ignore-net-namespace-for-unbo…
+ patches.kernel.org/4.18.9-156-clocksource-Revert-Remove-kthread.patch
+ patches.kernel.org/4.18.9-157-autofs-fix-autofs_sbi-does-not-check-super-bl…
+ patches.kernel.org/4.18.9-158-mm-get-rid-of-vmacache_flush_all-entirely.pat…
+ patches.kernel.org/4.18.9-159-Linux-4.18.9.patch
########################################################
# Build fixes that apply to the vanilla kernel too.
@@ -786,7 +945,6 @@
+ykaukab patches.suse/0039-arm-Add-icache-invalidation-on-switch_mm-for-Cortex-.patch
+ykaukab patches.suse/0040-arm-Invalidate-icache-on-prefetch-abort-outside-of-u.patch
+ykaukab patches.suse/0041-arm-KVM-Invalidate-icache-on-guest-exit-for-Cortex-A.patch
- patches.suse/arm64-kvm-aarch32-fpu.patch
########################################################
# S/390
++++++ source-timestamp ++++++
--- /var/tmp/diff_new_pack.qkDlpw/_old 2018-09-28 08:52:37.169796986 +0200
+++ /var/tmp/diff_new_pack.qkDlpw/_new 2018-09-28 08:52:37.169796986 +0200
@@ -1,3 +1,3 @@
-2018-09-15 14:10:30 +0000
-GIT Revision: f48646996dbccd1cdad650b1ea8b929b2469ef81
+2018-09-20 06:37:04 +0000
+GIT Revision: 67901ec419cb23ba52e652b7057e926aef54675e
GIT Branch: stable
1
0
Hello community,
here is the log from the commit of package 000product for openSUSE:Factory checked in at 2018-09-27 11:34:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/000product (Old)
and /work/SRC/openSUSE:Factory/.000product.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "000product"
Thu Sep 27 11:34:07 2018 rev:553 rq: version:unknown
Changes:
--------
New Changes file:
NO CHANGES FILE!!!
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
_service:product_converter:openSUSE-Addon-NonOss-ftp-ftp-i586_x86_64.kiwi: same change
_service:product_converter:openSUSE-Addon-NonOss-release.spec: same change
_service:product_converter:openSUSE-Tumbleweed-Kubic-dvd5-dvd-x86_64.kiwi: same change
_service:product_converter:openSUSE-Tumbleweed-Kubic-release.spec: same change
_service:product_converter:openSUSE-cd-mini-i586.kiwi: same change
_service:product_converter:openSUSE-cd-mini-x86_64.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-i586.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-x86_64.kiwi: same change
_service:product_converter:openSUSE-ftp-ftp-i586_x86_64.kiwi: same change
++++++ _service:product_converter:openSUSE-release.spec ++++++
++++ 34690 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/000product/_service:product_converter:openSUSE-release.spec
++++ and /work/SRC/openSUSE:Factory/.000product.new/_service:product_converter:openSUSE-release.spec
openSUSE-release.spec: same change
++++++ obsoletepackages.inc ++++++
++++ 17386 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/000product/obsoletepackages.inc
++++ and /work/SRC/openSUSE:Factory/.000product.new/obsoletepackages.inc
1
0
Hello community,
here is the log from the commit of package 000product for openSUSE:Factory checked in at 2018-09-27 10:38:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/000product (Old)
and /work/SRC/openSUSE:Factory/.000product.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "000product"
Thu Sep 27 10:38:28 2018 rev:552 rq: version:unknown
Changes:
--------
New Changes file:
NO CHANGES FILE!!!
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
_service:product_converter:openSUSE-Addon-NonOss-ftp-ftp-i586_x86_64.kiwi: same change
_service:product_converter:openSUSE-Addon-NonOss-release.spec: same change
_service:product_converter:openSUSE-Tumbleweed-Kubic-dvd5-dvd-x86_64.kiwi: same change
_service:product_converter:openSUSE-Tumbleweed-Kubic-release.spec: same change
_service:product_converter:openSUSE-cd-mini-i586.kiwi: same change
_service:product_converter:openSUSE-cd-mini-x86_64.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-i586.kiwi: same change
_service:product_converter:openSUSE-dvd5-dvd-x86_64.kiwi: same change
_service:product_converter:openSUSE-ftp-ftp-i586_x86_64.kiwi: same change
++++++ _service:product_converter:openSUSE-release.spec ++++++
++++ 34692 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/000product/_service:product_converter:openSUSE-release.spec
++++ and /work/SRC/openSUSE:Factory/.000product.new/_service:product_converter:openSUSE-release.spec
openSUSE-release.spec: same change
++++++ obsoletepackages.inc ++++++
++++ 17387 lines (skipped)
++++ between obsoletepackages.inc
++++ and /work/SRC/openSUSE:Factory/.000product.new/obsoletepackages.inc
1
0