Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package lalapps for openSUSE:Factory checked 
in at 2022-01-17 22:33:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lalapps (Old)
 and      /work/SRC/openSUSE:Factory/.lalapps.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lalapps"

Mon Jan 17 22:33:58 2022 rev:5 rq:945461 version:7.4.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/lalapps/lalapps.changes  2021-09-15 
22:51:47.242935708 +0200
+++ /work/SRC/openSUSE:Factory/.lalapps.new.1892/lalapps.changes        
2022-01-17 22:34:10.454248830 +0100
@@ -1,0 +2,13 @@
+Mon Jan  3 00:52:11 UTC 2022 - Atri Bhattacharya <badshah...@gmail.com>
+
+- Update to version 7.4.0:
+  * No release notes.
+- Drop lalapps-gcc11-array-bounds-decl.patch: upstreamed.
+
+-------------------------------------------------------------------
+Wed Sep 15 09:20:02 UTC 2021 - Atri Bhattacharya <badshah...@gmail.com>
+
+- Do not pass "-Wno-enum-conversion" to CFLAGS as XLALERROR
+  issues have been fixed (probably with version 7.1.0).
+
+-------------------------------------------------------------------

Old:
----
  lalapps-7.2.0.tar.xz
  lalapps-gcc11-array-bounds-decl.patch

New:
----
  lalapps-7.4.0.tar.xz

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

Other differences:
------------------
++++++ lalapps.spec ++++++
--- /var/tmp/diff_new_pack.TYKxK1/_old  2022-01-17 22:34:11.454249492 +0100
+++ /var/tmp/diff_new_pack.TYKxK1/_new  2022-01-17 22:34:11.458249495 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lalapps
 #
-# 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
@@ -20,7 +20,7 @@
 # NEP 29: astropy, numpy, scipy do not have a python36 flavor package in TW
 %define skip_python36 1
 Name:           lalapps
-Version:        7.2.0
+Version:        7.4.0
 Release:        0
 Summary:        LSC Algorithm Library Applications
 License:        GPL-2.0-or-later
@@ -29,8 +29,6 @@
 Source:         
http://software.ligo.org/lscsoft/source/lalsuite/%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM lalapps-fix-uninitialised-var.patch badshah...@gmail.com 
-- Fix usage of uninitialised variable
 Patch0:         lalapps-fix-uninitialised-var.patch
-# PATCH-FIX-UPSTREAM lalapps-gcc11-array-bounds-decl.patch 
badshah...@gmail.com -- Fix building with gcc 11 by correcting array bounds 
declaration; patch part of upstream merge request 
[https://git.ligo.org/lscsoft/lalsuite/-/merge_requests/1605]
-Patch1:         lalapps-gcc11-array-bounds-decl.patch
 # PATCH-FIX-UPSTREAM lalapps-disable-testWeave-for-non-x86_64.patch 
badshah...@gmail.com -- Disable Weave related tests on all but x86_64 where 
tolerance errors show up, see https://git.ligo.org/lscsoft/lalsuite/-/issues/105
 Patch2:         lalapps-disable-testWeave-for-non-x86_64.patch
 BuildRequires:  %{python_module astropy}
@@ -110,10 +108,6 @@
 %prep
 %autosetup -p1
 
-# FIX env-BASED HASHBANGS
-sed -Ei "1{s|/usr/bin/env python|%{_bindir}/python3|}" \
-  src/pulsar/HeterodyneSearch/make_frame_cache
-
 %build
 # Patch2 touches autotool files
 autoreconf -fvi
@@ -122,8 +116,6 @@
 mkdir ../$python
 cp -pr ./ ../$python
 pushd ../$python
-# FIXME: Failures because XLAL_ERROR implictly converts to function return type
-export CFLAGS+=" -Wno-enum-conversion"
 %configure --enable-swig
 %make_build
 popd

++++++ lalapps-7.2.0.tar.xz -> lalapps-7.4.0.tar.xz ++++++
/work/SRC/openSUSE:Factory/lalapps/lalapps-7.2.0.tar.xz 
/work/SRC/openSUSE:Factory/.lalapps.new.1892/lalapps-7.4.0.tar.xz differ: char 
26, line 1

++++++ lalapps-fix-uninitialised-var.patch ++++++
--- /var/tmp/diff_new_pack.TYKxK1/_old  2022-01-17 22:34:11.498249521 +0100
+++ /var/tmp/diff_new_pack.TYKxK1/_new  2022-01-17 22:34:11.502249524 +0100
@@ -1,7 +1,7 @@
-Index: lalapps-7.1.0/src/string/StringSearch.c
+Index: lalapps-7.4.0/src/string/StringSearch.c
 ===================================================================
---- lalapps-7.1.0.orig/src/string/StringSearch.c
-+++ lalapps-7.1.0/src/string/StringSearch.c
+--- lalapps-7.4.0.orig/src/string/StringSearch.c
++++ lalapps-7.4.0/src/string/StringSearch.c
 @@ -201,7 +201,7 @@ int main(int argc,char *argv[])
    unsigned seg_length;
    StringTemplate strtemplate[MAXTEMPLATES];
@@ -11,10 +11,10 @@
    REAL8 fcutoff_fix[MAXTEMPLATES]; /* high frequency cutoffs given by the 
template bank file */
    SnglBurst *events=NULL;
    MetadataTable  process;
-Index: lalapps-7.1.0/src/pulsar/HoughFstat/HierarchicalSearch.c
+Index: lalapps-7.4.0/src/pulsar/HoughFstat/HierarchicalSearch.c
 ===================================================================
---- lalapps-7.1.0.orig/src/pulsar/HoughFstat/HierarchicalSearch.c
-+++ lalapps-7.1.0/src/pulsar/HoughFstat/HierarchicalSearch.c
+--- lalapps-7.4.0.orig/src/pulsar/HoughFstat/HierarchicalSearch.c
++++ lalapps-7.4.0/src/pulsar/HoughFstat/HierarchicalSearch.c
 @@ -1255,7 +1255,7 @@ void SetUpSFTs( LALStatus *status,                       
/**
    REAL8 timebase, tObs, deltaFsft;
    UINT4 k,numSFTby2;
@@ -33,11 +33,11 @@
    HoughStats stats; /* statistics struct */
    CHAR *fileStats = NULL;
    FILE *fpStats = NULL;
-Index: lalapps-7.1.0/src/pulsar/SFTTools/splitSFTs.c
+Index: lalapps-7.4.0/src/pulsar/SFTTools/splitSFTs.c
 ===================================================================
---- lalapps-7.1.0.orig/src/pulsar/SFTTools/splitSFTs.c
-+++ lalapps-7.1.0/src/pulsar/SFTTools/splitSFTs.c
-@@ -196,7 +196,7 @@ int main( int argc, char **argv )
+--- lalapps-7.4.0.orig/src/pulsar/SFTTools/splitSFTs.c
++++ lalapps-7.4.0/src/pulsar/SFTTools/splitSFTs.c
+@@ -204,7 +204,7 @@ int main( int argc, char **argv )
  {
    int arg;                        /* current command-line argument */
    unsigned int bin;               /* current bin */

Reply via email to