a962c4a1c4
b5b2433a-baseclass-Fix-UI-file-loading-on-py3.patch 0c6bcb09-fix-bytes-string-mess-in-serial-console.patch bc8c5b07-append--attach-to-virt-viewer-if-graphics-has-listen-type-none.patch 0e812e3c-dont-skip-authentication-for-listen-type-none-with-fixed-QEMU.patch 67122615-python2to3-division-compatability.patch - Dropped in favor of upstream version 0001-virtinst-python3-terminal-width-should-be-int.patch python3-fix-bytes-string-mess-in-serial-console.patch - Default to sles15 and opensuse15 as the 'preferred_distros' for this release. (bsc#1054986) virtinst-osdict-get_supported.patch virt-manager.spec (bsc#1070896) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=405
23 lines
1.1 KiB
Diff
23 lines
1.1 KiB
Diff
Some distros are out of support for normal customers but continue
|
|
to be supported through LTSS contracts for others. Hence the EOL
|
|
date in the osinfo-db file may be past but we want the distro to
|
|
continue to show up in the list.
|
|
|
|
Index: virt-manager-1.4.3/virtinst/osdict.py
|
|
===================================================================
|
|
--- virt-manager-1.4.3.orig/virtinst/osdict.py
|
|
+++ virt-manager-1.4.3/virtinst/osdict.py
|
|
@@ -376,8 +376,11 @@ class _OsVariant(object):
|
|
# EOL date. So assume None == EOL, add some manual work arounds.
|
|
# We should fix this in a new libosinfo version, and then drop
|
|
# this hack
|
|
+ # SUSE: How to handle EOL distros that still have LTSS support
|
|
if self._is_related_to(["fedora24", "rhel7.0", "debian6",
|
|
- "ubuntu13.04", "win8", "win2k12", "mageia5", "centos7.0"],
|
|
+ "ubuntu13.04", "win8", "win2k12", "mageia5", "centos7.0",
|
|
+ "sles15", "sles12sp3", "sles12sp2", "sles12sp1", "sles11sp4",
|
|
+ "tumbleweed", "opensuse15", "opensuse42.3" ],
|
|
check_clones=False, check_derives=False):
|
|
return True
|
|
return False
|