1
0
forked from pool/lalsimulation
Ana Guerrero 2024-09-13 12:34:11 +00:00 committed by Git OBS Bridge
commit 73924c02d0
4 changed files with 17 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b6c1781e81134108845f38e3a66963ae661c2a915d413cf14e68995888dcc0a5
size 10773572

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:258a6951e71b84db80d354d37ca3be459301bb52472920a9873973607b0d2323
size 10416196

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Wed Sep 11 17:26:10 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 6.0.0:
* No release notes.
- Pass -Wno-error=strict-prototypes to avoid triggering a numpy
2.0.0 issue (gh#numpy/numpy#26771).
- Update shared lib name in keeping with upstream shared object
versioning update from 32 -> 37.
-------------------------------------------------------------------
Sat Jul 20 03:01:48 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>

View File

@ -21,11 +21,11 @@
# Py2 support dropped upstream
%define skip_python2 1
%define shlib liblalsimulation32
%define shlib liblalsimulation37
# octave >= 6 not supported
%bcond_with octave
Name: lalsimulation
Version: 5.4.0
Version: 6.0.0
Release: 0
Summary: LSC Algorithm Simulation Library
License: GPL-2.0-only
@ -111,7 +111,8 @@ export PYTHON=%{_bindir}/$python
mkdir ../$python
cp -pr ./ ../$python
pushd ../$python
export CFLAGS="%{optflags} -Wno-error=enum-int-mismatch"
# strict-prototypes: https://github.com/numpy/numpy/pull/26771 (remove for numpy >= 2.0.1)
export CFLAGS="%{optflags} -Wno-error=enum-int-mismatch -Wno-error=strict-prototypes"
export CXXFLAGS=$CFLAGS
%configure \
%{?with_octave:--enable-swig-octave} \