SHA256
8
0
forked from pool/xtensor
Files
xtensor/xtensor.spec
Marcus Meissner 5f6dc4899a - Version 0.26.0
- Adding the ability to enable memory overlap check in assignment to avoid
    unneeded temporary memory allocation
  - Pure xtensor FFT implementation
  - Update for C++ 20 compatibility
  - Fixed CI added OSX 13 and GCC 12
  - Fix compile issue with clang 19.1.1
  - Avoid warnings in compiler version checks
  - Bump OSX Version 12 -> 13 to avoid deprecated environment
  - Update gh-pages.yml
  - Upgraded to xsimd 13.2.0
  - Added missing configuration key for RTD
  - Code reorganization
  - Adding fix for incorrect usage of xt::has_assign_conversion in xassig
  - Upgraded to xtl 0.8.0 and C++17
  - Migrated to more recent compilers
  - Fix for Clang19

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xtensor?expand=0&rev=13
2025-03-30 11:19:20 +00:00

113 lines
3.7 KiB
RPMSpec

#
# spec file for package xtensor
#
# Copyright (c) 2025 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/
#
%{?sle15_python_module_pythons}
Name: xtensor
Version: 0.26.0
Release: 0
Summary: Multi-dimensional arrays with broadcasting and lazy computing
License: BSD-3-Clause
URL: https://github.com/xtensor-stack/xtensor
Source0: https://github.com/xtensor-stack/xtensor/archive/refs/tags/%{version}/%{name}-%{version}.tar.gz
BuildRequires: %{python_module breathe}
BuildRequires: %{python_module sphinx_rtd_theme}
BuildRequires: cmake
BuildRequires: doctest-devel
BuildRequires: doxygen
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: make
BuildRequires: xtl-devel >= 0.8.0
Group: Development/Libraries/C and C++
%description
xtensor is a C++ library meant for numerical analysis with multi-dimensional array expressions.
xtensor provides
- an extensible expression system enabling lazy broadcasting.
- an API following the idioms of the C++ standard library.
- tools to manipulate array expressions and build upon xtensor.
Containers of xtensor are inspired by NumPy, the Python array programming library. Adaptors for existing data structures to be plugged into the expression system can easily be written.
%package devel
Summary: Development files for xtensor
BuildArch: noarch
Requires: xtl-devel
%description devel
xtensor is a C++ library meant for numerical analysis with multi-dimensional array expressions.
xtensor provides
- an extensible expression system enabling lazy broadcasting.
- an API following the idioms of the C++ standard library.
- tools to manipulate array expressions and build upon xtensor.
Containers of xtensor are inspired by NumPy, the Python array programming library. Adaptors for existing data structures to be plugged into the expression system can easily be written.
%package doc
Summary: Documentation for xtensor
Group: Documentation/HTML
BuildArch: noarch
%description doc
xtensor is a C++ library meant for numerical analysis with multi-dimensional array expressions.
xtensor provides
- an extensible expression system enabling lazy broadcasting.
- an API following the idioms of the C++ standard library.
- tools to manipulate array expressions and build upon xtensor.
Containers of xtensor are inspired by NumPy, the Python array programming library. Adaptors for existing data structures to be plugged into the expression system can easily be written.
%prep
%setup -q
%build
%cmake -DCPP17:BOOL=ON -DBUILD_TESTS:BOOL=ON
%cmake_build
#build documentation
cd %{_builddir}/%{name}-%{version}/docs
make html
%install
%cmake_install
#install documentation
mkdir -p %{buildroot}/%{_docdir}/%{name}
cp -r %{_builddir}/%{name}-%{version}/docs/build/html/* %{buildroot}/%{_docdir}/%{name}
%fdupes -s %{buildroot}/%{_docdir}
%fdupes %{buildroot}/%{_prefix}
%check
%ctest
%files doc
%doc %{_docdir}/%{name}
%files devel
%license LICENSE
%{_includedir}/xtensor
%{_includedir}/xtensor.hpp
%{_datadir}/cmake/xtensor
%{_datadir}/pkgconfig/xtensor.pc
%changelog