Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package lalinference for openSUSE:Factory 
checked in at 2026-06-28 21:06:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lalinference (Old)
 and      /work/SRC/openSUSE:Factory/.lalinference.new.11887 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lalinference"

Sun Jun 28 21:06:57 2026 rev:16 rq:1362022 version:4.1.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/lalinference/lalinference.changes        
2026-03-22 14:13:32.528669073 +0100
+++ /work/SRC/openSUSE:Factory/.lalinference.new.11887/lalinference.changes     
2026-06-28 21:07:32.500111108 +0200
@@ -1,0 +2,9 @@
+Fri Jun 26 22:43:13 UTC 2026 - Atri Bhattacharya <[email protected]>
+
+- Add lalinference-ptr-const.patch to add const qualifiers to
+  pointers where applicable to prevent discarded-qualifiers
+  warnings/errors.
+- Add Requires: python-igwn-ligolw needed for updated version
+  4.1.9.
+
+-------------------------------------------------------------------

New:
----
  lalinference-ptr-const.patch

----------(New B)----------
  New:
- Add lalinference-ptr-const.patch to add const qualifiers to
  pointers where applicable to prevent discarded-qualifiers
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ lalinference.spec ++++++
--- /var/tmp/diff_new_pack.9RrnST/_old  2026-06-28 21:07:33.072130382 +0200
+++ /var/tmp/diff_new_pack.9RrnST/_new  2026-06-28 21:07:33.072130382 +0200
@@ -41,6 +41,8 @@
 Source:         
https://software.igwn.org/sources/source/lalsuite/%{pname}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM lalinference-printf-data-type-consistency.patch 
[email protected] -- 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-ptr-const.patch [email protected] -- Add 
const qualifier to pointers where applicable to prevent discarded-qualifier 
errors
+Patch1:         lalinference-ptr-const.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module numpy-devel >= 1.7}
 BuildRequires:  fdupes
@@ -61,6 +63,7 @@
 BuildRequires:  %{python_module glue >= 1.54.1}
 BuildRequires:  %{python_module h5py}
 BuildRequires:  %{python_module healpy >= 1.9.1}
+BuildRequires:  %{python_module igwn-ligolw}
 BuildRequires:  %{python_module lal >= 7.2.0}
 BuildRequires:  %{python_module lalburst >= 1.6.0}
 BuildRequires:  %{python_module lalframe >= 2.0.0}
@@ -85,6 +88,7 @@
 BuildRequires:  pkgconfig(octave)
 %endif
 Requires:       %{name}-data = %{version}
+Requires:       python-igwn-ligolw
 Requires:       python-lal >= 7.2.0
 Requires:       python-lalburst >= 1.6.0
 Requires:       python-lalframe >= 2.0.0
@@ -156,6 +160,7 @@
 # Patch0 is not upstream and uses -p1, so we have a mix of -p1 and -p2 patches
 %autosetup -N -n %{pname}-%{version}
 %patch -P0 -p1
+%patch -P1 -p1
 
 %build
 export SWIG_FEATURES="-w999"

++++++ lalinference-ptr-const.patch ++++++
---
 lib/LALInferenceInitCBC.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: lalinference-4.1.9/lib/LALInferenceInitCBC.c
===================================================================
--- lalinference-4.1.9.orig/lib/LALInferenceInitCBC.c
+++ lalinference-4.1.9/lib/LALInferenceInitCBC.c
@@ -43,7 +43,7 @@ static int checkParamInList(const char *
 static int checkParamInList(const char *list, const char *param)
 {
   /* Check for param in comma-seperated list */
-  char *post=NULL,*pos=NULL;
+  const char *post=NULL,*pos=NULL;
   if (list==NULL) return 0;
   if (param==NULL) return 0;
 

Reply via email to