Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package virt-scenario for openSUSE:Factory checked in at 2023-10-24 20:09:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/virt-scenario (Old) and /work/SRC/openSUSE:Factory/.virt-scenario.new.24901 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "virt-scenario" Tue Oct 24 20:09:01 2023 rev:19 rq:1119921 version:2.1.3 Changes: -------- --- /work/SRC/openSUSE:Factory/virt-scenario/virt-scenario.changes 2023-07-31 15:25:20.647661857 +0200 +++ /work/SRC/openSUSE:Factory/.virt-scenario.new.24901/virt-scenario.changes 2023-10-24 20:09:08.182224205 +0200 @@ -1,0 +2,7 @@ +Tue Oct 24 09:34:46 UTC 2023 - Antoine Ginies <[email protected]> + +- version 2.1.3: + * Fix FileNotFound error when calling 'virt-scenario-launch --list' + (bsc#1216383) (Caleb Crane) + +------------------------------------------------------------------- Old: ---- virt-scenario-2.1.2.tar.gz New: ---- virt-scenario-2.1.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ virt-scenario.spec ++++++ --- /var/tmp/diff_new_pack.rJJiY9/_old 2023-10-24 20:09:09.206261435 +0200 +++ /var/tmp/diff_new_pack.rJJiY9/_new 2023-10-24 20:09:09.206261435 +0200 @@ -20,7 +20,7 @@ %define pythons python3 Name: virt-scenario -Version: 2.1.2 +Version: 2.1.3 Release: 0 Summary: Tool to create XML guest configuration and prepare the host for a scenario License: GPL-3.0-or-later ++++++ virt-scenario-2.1.2.tar.gz -> virt-scenario-2.1.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virt-scenario-2.1.2/ChangeLog new/virt-scenario-2.1.3/ChangeLog --- old/virt-scenario-2.1.2/ChangeLog 2023-07-31 13:10:06.000000000 +0200 +++ new/virt-scenario-2.1.3/ChangeLog 2023-10-24 11:33:37.000000000 +0200 @@ -1,3 +1,24 @@ +2023-10-24 aginies + + version 2.1.3 + + +2023-10-24 Antoine Giniès + + Merge pull request #14 from Fuzzy-Math/bsc1216383 + Fix FileNotFound error when calling 'virt-scenario-launch --list' (bsc#1216383) + +2023-10-23 Caleb Crane + + Fix FileNotFound error when calling 'virt-scenario-launch --list' (bsc#1216383) + - We first read the value of 'vm-config-store' in 'virtscenario.yaml', + if the config-defined location doesn't exist we fallback to finding + the directory with 'find_vmconfig_dir()' + + - It isn't clear if we even need 'vm-config-store' to be configurable. + The logic could be simplified if it wasn't user configurable + + 2023-07-31 aginies fix typo diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virt-scenario-2.1.2/PKG-INFO new/virt-scenario-2.1.3/PKG-INFO --- old/virt-scenario-2.1.2/PKG-INFO 2023-07-31 13:10:06.000000000 +0200 +++ new/virt-scenario-2.1.3/PKG-INFO 2023-10-24 11:33:37.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: virt-scenario -Version: 2.1.2 +Version: 2.1.3 Summary: Virt-scenario Home-page: https://github.com/aginies/virt-scenario Author: Antoine Ginies diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virt-scenario-2.1.2/setup.py new/virt-scenario-2.1.3/setup.py --- old/virt-scenario-2.1.2/setup.py 2023-07-31 13:00:09.000000000 +0200 +++ new/virt-scenario-2.1.3/setup.py 2023-10-24 11:33:18.000000000 +0200 @@ -164,7 +164,7 @@ setuptools.setup( name="virt-scenario", - version="2.1.2", + version="2.1.3", author="Antoine Ginies", author_email="[email protected]", description="Virt-scenario", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virt-scenario-2.1.2/src/virt_scenario.egg-info/PKG-INFO new/virt-scenario-2.1.3/src/virt_scenario.egg-info/PKG-INFO --- old/virt-scenario-2.1.2/src/virt_scenario.egg-info/PKG-INFO 2023-07-31 13:10:06.000000000 +0200 +++ new/virt-scenario-2.1.3/src/virt_scenario.egg-info/PKG-INFO 2023-10-24 11:33:37.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: virt-scenario -Version: 2.1.2 +Version: 2.1.3 Summary: Virt-scenario Home-page: https://github.com/aginies/virt-scenario Author: Antoine Ginies diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virt-scenario-2.1.2/src/virtscenario/__init__.py new/virt-scenario-2.1.3/src/virtscenario/__init__.py --- old/virt-scenario-2.1.2/src/virtscenario/__init__.py 2023-07-31 13:00:21.000000000 +0200 +++ new/virt-scenario-2.1.3/src/virtscenario/__init__.py 2023-10-24 11:33:04.000000000 +0200 @@ -29,5 +29,5 @@ import builtins builtins.__dict__["_"] = str -__version__ = "2.1.2" +__version__ = "2.1.3" print(" Version: "+__version__) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/virt-scenario-2.1.2/src/virtscenario_launch/main.py new/virt-scenario-2.1.3/src/virtscenario_launch/main.py --- old/virt-scenario-2.1.2/src/virtscenario_launch/main.py 2023-06-06 18:14:14.000000000 +0200 +++ new/virt-scenario-2.1.3/src/virtscenario_launch/main.py 2023-10-24 11:30:46.000000000 +0200 @@ -58,6 +58,8 @@ for k2, v2 in subitem.items(): if k2 == 'vm-config-store': self.base_path = os.path.expanduser(v2) + if not os.path.isdir(self.base_path): + self.base_path = configuration.find_vmconfig_dir() def list_vms(self): vm_array = []
