+ Update to version 2.4.0. + Build fortran bindings and split put separate shared lib and devel packages for fortran. + BuildRequires: pkgconfig(gmock) required for tests. OBS-URL: https://build.opensuse.org/request/show/1170131 OBS-URL: https://build.opensuse.org/package/show/science/spglib?expand=0&rev=16
162 lines
4.2 KiB
RPMSpec
162 lines
4.2 KiB
RPMSpec
#
|
|
# spec file for package spglib
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%if 0%{?suse_version} >= 1600
|
|
%bcond_without tests
|
|
%else
|
|
%bcond_with tests
|
|
%endif
|
|
|
|
%define shlib libsymspg2
|
|
%define shlib_fort libspglib_f08-2
|
|
Name: spglib
|
|
Version: 2.4.0
|
|
Release: 0
|
|
Summary: Find and handle crystal symmetries
|
|
License: BSD-3-Clause
|
|
Group: Productivity/Scientific/Physics
|
|
URL: https://spglib.github.io/spglib/
|
|
Source0: https://github.com/spglib/spglib/archive/v%{version}.tar.gz#/spglib-%{version}.tar.gz
|
|
BuildRequires: c++_compiler
|
|
BuildRequires: cmake >= 3.24
|
|
BuildRequires: gcc-fortran
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-numpy-devel
|
|
BuildRequires: python3-setuptools
|
|
%if %{with tests}
|
|
BuildRequires: gmock
|
|
BuildRequires: python3-PyYAML
|
|
BuildRequires: python3-pytest
|
|
BuildRequires: pkgconfig(gmock)
|
|
BuildRequires: pkgconfig(gtest)
|
|
%endif
|
|
|
|
%description
|
|
Spglib is a C library to find and handle crystal symmetries.
|
|
|
|
Features:
|
|
* Find symmetry operations
|
|
* Identify space-group type
|
|
* Wyckoff position assignment
|
|
* Refine crystal structure
|
|
* Search irreducible k-points
|
|
* Find a primitive cell
|
|
|
|
%package -n %{shlib}
|
|
Summary: The shared library for SPGLIB
|
|
Group: System/Libraries
|
|
|
|
%description -n %{shlib}
|
|
Spglib is a C library to find and handle crystal symmetries.
|
|
|
|
%package devel
|
|
Summary: Development files for spglib/libsymspg
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{shlib} = %{version}
|
|
|
|
%description devel
|
|
Spglib is a C library to find and handle crystal symmetries.
|
|
|
|
%package -n python3-spglib
|
|
Summary: Python bindings for spglib/libsymspg
|
|
Group: Development/Languages/Python
|
|
Requires: python3-numpy
|
|
|
|
%description -n python3-spglib
|
|
Spglib is a C library to find and handle crystal symmetries.
|
|
|
|
%package -n %{shlib_fort}
|
|
Summary: Shared library for SPGLIB fortran bindings
|
|
|
|
%description -n %{shlib_fort}
|
|
Spglib is a C library to find and handle crystal symmetries.
|
|
|
|
This package provides the shared library for fortran bindings of %{name}.
|
|
|
|
%package -n spglib_f08-devel
|
|
Summary: Headers and sources for spglib fortran bindings
|
|
Requires: %{shlib_fort} = %{version}
|
|
|
|
%description -n spglib_f08-devel
|
|
Spglib is a C library to find and handle crystal symmetries.
|
|
|
|
This package provides the headers and sources for fortran bindings of %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
%autopatch -p1
|
|
|
|
%build
|
|
%cmake \
|
|
-DSPGLIB_SHARED_LIBS:BOOL=ON \
|
|
-DSPGLIB_WITH_Fortran:BOOL=ON \
|
|
-DSPGLIB_WITH_Python:BOOL=ON \
|
|
-DCMAKE_INSTALL_MODULEDIR=%{_libdir} \
|
|
-DSPGLIB_WITH_TESTS:BOOL=%{?with_tests:ON}%{!?with_tests:OFF} \
|
|
%{nil}
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
# Fix "env-script-interpreter" rpmlint warning
|
|
chmod 644 ruby/*.rb
|
|
|
|
# Remove shared library and header copies from python directory
|
|
rm -Rf %{buildroot}%{python3_sitearch}/spglib/include
|
|
rm -Rf %{buildroot}%{python3_sitearch}/spglib/lib
|
|
|
|
%check
|
|
%if %{with tests}
|
|
export PYTHONPATH=%{buildroot}%{python_sitearch}
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
%ctest
|
|
%endif
|
|
|
|
%ldconfig_scriptlets -n %{shlib}
|
|
%ldconfig_scriptlets -n %{shlib_fort}
|
|
|
|
%files -n %{shlib}
|
|
%license COPYING
|
|
%{_libdir}/libsymspg.so.*
|
|
|
|
%files devel
|
|
%doc example ruby
|
|
%{_includedir}/spglib.h
|
|
%{_libdir}/libsymspg.so
|
|
%{_libdir}/cmake/Spglib
|
|
%{_libdir}/pkgconfig/spglib.pc
|
|
%exclude %{_libdir}/cmake/Spglib/*fortran*
|
|
|
|
%files -n python3-spglib
|
|
%{python3_sitearch}/spglib
|
|
|
|
%files -n %{shlib_fort}
|
|
%license COPYING
|
|
%{_libdir}/libspglib_f08.so.2*
|
|
|
|
%files -n spglib_f08-devel
|
|
%license COPYING
|
|
%{_includedir}/*.F90
|
|
%{_libdir}/libspglib_f08.so
|
|
%{_libdir}/spglib_f08.mod
|
|
%{_libdir}/pkgconfig/spglib_f08.pc
|
|
%{_libdir}/cmake/Spglib/*fortran*
|
|
|
|
%changelog
|