Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lalinference for openSUSE:Factory checked in at 2022-01-17 22:33:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lalinference (Old) and /work/SRC/openSUSE:Factory/.lalinference.new.1892 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lalinference" Mon Jan 17 22:33:59 2022 rev:5 rq:946914 version:3.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/lalinference/lalinference.changes 2021-11-18 10:33:51.695908966 +0100 +++ /work/SRC/openSUSE:Factory/.lalinference.new.1892/lalinference.changes 2022-01-17 22:34:11.638249614 +0100 @@ -1,0 +2,13 @@ +Sun Jan 16 19:19:18 UTC 2022 - Atri Bhattacharya <badshah...@gmail.com> + +- Add lalinference-import-MutableMapping.patch -- + lalinference.wrapper: Update import of MutableMapping; patch + taken from upstream commit. + +------------------------------------------------------------------- +Sun Jan 2 23:57:51 UTC 2022 - Atri Bhattacharya <badshah...@gmail.com> + +- Update to version 3.0.1: + * No release notes. + +------------------------------------------------------------------- Old: ---- lalinference-2.0.7.tar.xz New: ---- lalinference-3.0.1.tar.xz lalinference-import-MutableMapping.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lalinference.spec ++++++ --- /var/tmp/diff_new_pack.FwKNmM/_old 2022-01-17 22:34:12.098249919 +0100 +++ /var/tmp/diff_new_pack.FwKNmM/_new 2022-01-17 22:34:12.102249922 +0100 @@ -1,7 +1,7 @@ # # spec file for package lalinference # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,7 +25,7 @@ %define skip_python36 1 Name: lalinference -Version: 2.0.7 +Version: 3.0.1 Release: 0 Summary: LSC Algorithm Inference Library License: GPL-2.0-or-later @@ -34,6 +34,8 @@ Source: http://software.ligo.org/lscsoft/source/lalsuite/%{name}-%{version}.tar.xz # PATCH-FIX-UPSTREAM lalinference-printf-data-type-consistency.patch badshah...@gmail.com -- Cast data passed to printf from size_t to long to make it consistent with the format "%li"; this fixes build failures on i586 Patch0: lalinference-printf-data-type-consistency.patch +# PATCH-FIX-UPSTREAM lalinference-import-MutableMapping.patch badshah...@gmail.com -- lalinference.wrapper: Update import of MutableMapping +Patch1: lalinference-import-MutableMapping.patch BuildRequires: %{python_module Shapely} BuildRequires: %{python_module astropy} BuildRequires: %{python_module devel} ++++++ lalinference-2.0.7.tar.xz -> lalinference-3.0.1.tar.xz ++++++ ++++ 4314 lines of diff (skipped) ++++++ lalinference-import-MutableMapping.patch ++++++ >From 70a0df33589d21e3cfb93d7e0ff52ab83e3741e0 Mon Sep 17 00:00:00 2001 From: John Douglas Veitch <john.vei...@ligo.org> Date: Wed, 5 Jan 2022 16:01:36 +0000 Subject: [PATCH] lalinference.wrapper: Update import of MutableMapping --- python/lalinference/wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lalinference/wrapper.py b/python/lalinference/wrapper.py index 6c7a8f5126..79c04d2e77 100644 --- a/python/lalinference/wrapper.py +++ b/python/lalinference/wrapper.py @@ -1,8 +1,8 @@ import lal import lalinference as li -import collections +import collections.abc -class LIVariablesWrap(collections.MutableMapping): +class LIVariablesWrap(collections.abc.MutableMapping): def __init__(self,init=None): """ Wrapper to present a LALInferenceVariable as a dict. -- GitLab