Files
meep/meep.spec
Atri Bhattacharya 70af96ef14 Accepting request 1169501 from home:amanzini:branches:science
- update to 1.28.0:
  * Improved special field updates for r=0 in cylindrical 
    coordinates 
  * Geometric objects now have a label field that appears when 
    Simulation.plot2D is called with label_geometry=True
  * Various improvements and minor bug fixes and additional 
    documentation.
- update to 1.27.0:
  * Support for spectral extrapolation using Padé 
    approximants (#2440).
  * Support for periodic design regions of adjoint solver 
    (#2465, #2518).
  * Support for "unfiltering" a given set of design weights for 
    adjoint optimization (#2462).
  * MPB is no longer a required dependency 
  * Bug fix for sources at in cylindrical coordinates
  * Additional unit tests and documentation and various 
    improvements and minor bug fixes

OBS-URL: https://build.opensuse.org/request/show/1169501
OBS-URL: https://build.opensuse.org/package/show/science/meep?expand=0&rev=48
2024-04-21 14:26:35 +00:00

136 lines
4.0 KiB
RPMSpec

#
# spec file for package meep
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define somajor 32
Name: meep
Version: 1.28.0
Release: 0
Summary: FDTD finite-difference time-domain solver
License: GPL-2.0-or-later
Group: Productivity/Scientific/Electronics
URL: https://meep.readthedocs.io/en/latest/
Source0: https://github.com/NanoComp/meep/releases/download/v%{version}/meep-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: binutils
BuildRequires: blas-devel
BuildRequires: fftw3-devel
BuildRequires: gcc-c++
BuildRequires: gcc-fortran
BuildRequires: gmp-devel
BuildRequires: gsl-devel
BuildRequires: guile-devel
BuildRequires: harminv-devel
BuildRequires: hdf5-devel
BuildRequires: lapack-devel
BuildRequires: libctl-devel >= 4.2.0
BuildRequires: libtool
BuildRequires: pkgconfig
BuildRequires: zlib-devel
# providing ice-9/boot-9.scm
Requires: guile
# providing /usr/share/libctl/base/include.scm
Requires: libctl-devel >= 4.2.0
%description
Meep (or MEEP) is a free finite-difference time-domain (FDTD)
simulation software package developed at MIT to model electromagnetic
systems.
%package -n lib%{name}%{somajor}
Summary: FDTD finite-difference time-domain solver library
# Avoid unresolvable errors from multiple providers
Group: System/Libraries
%description -n lib%{name}%{somajor}
Meep (or MEEP) is a free finite-difference time-domain (FDTD)
simulation software package developed at MIT to model electromagnetic
systems.
%package devel
Summary: Libraries and header files for meep library
Group: Development/Libraries/Other
Requires: lib%{name}%{somajor} = %{version}
%description devel
Meep (or MEEP) is a free finite-difference time-domain (FDTD)
simulation software package developed at MIT to model electromagnetic
systems.
This package contains libraries and header files for developing
applications that use meep.
%prep
%setup -q
# Checking for CPU architecture is totally broken, get rid of it
sed -i -e 's/AX_CXX_MAXOPT//' configure.ac
%build
# Missing version.sh from tarball, required for autoreconf
echo "echo -n '%{version}'" > ./version.sh ; chmod +x ./version.sh
autoreconf
# On i586, we need SSE (implicit on x86_64). Yes, we need a Pentium3 at least ...
%ifarch %{ix86}
%global optflags %{optflags} -msse -Wno-error=return-type
%else
%global optflags %{optflags} -Wno-error=return-type
%endif
# Specify fortran libraries manually, autoconf (fortran.m4) mechanism is
# totally broken and messes up pkgconfig file later
%configure \
FLIBS="-lgfortran" \
--enable-shared \
--disable-static \
--with-openmp \
--enable-portable-binary
%make_build
# Build tests without running any
%make_build check TESTS=
%install
%make_install
find %{buildroot} -type f -name "*.la" -delete -print
%check
grep -E "flags|model name" /proc/cpuinfo | head -n2
# https://github.com/NanoComp/meep/issues/727
make check TESTS=2D_convergence || export xfail=2D_convergence
%make_build check XFAIL_TESTS=${xfail}
cat tests/test-suite.log
%post -n lib%{name}%{somajor} -p /sbin/ldconfig
%postun -n lib%{name}%{somajor} -p /sbin/ldconfig
%files
%doc AUTHORS NEWS.md
%license COPYRIGHT
%{_bindir}/meep
%{_datadir}/meep/
%files -n lib%{name}%{somajor}
%{_libdir}/libmeep.so.*
%files devel
%{_libdir}/libmeep.so
%{_libdir}/pkgconfig/*
%{_includedir}/*
%changelog