forked from pool/xtensor
- Version 0.25.0 - Fix conversion warning in xrepeat - Upraded to xsimd 11 - Update to use XTENSOR_DEFAULT_ALIGNMENT when using XSIMD - Removed failing test xinfo on clang 16 - Bump cmake version and resolve build issues - Make reshape_view accept -1 as a wildcard dimension - Fixing bug in argmin/argmax called with axis on rank-1 container - pre-commit autoupdate - Use L suffix for long double constants - Use 1/4 step for testing arange - [Optimization] Updated concatenate_access and stack_access to remove allocations - Minor xindex_view to_array cleanup - Drop upstreamed 0001-Use-L-suffix-for-long-double-constants.patch 0002-Use-1-4-step-for-testing-arange.patch OBS-URL: https://build.opensuse.org/request/show/1141952 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/xtensor?expand=0&rev=9
107 lines
3.5 KiB
RPMSpec
107 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package xtensor
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
Name: xtensor
|
|
Version: 0.25.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: cmake
|
|
BuildRequires: doctest-devel
|
|
BuildRequires: doxygen
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: make
|
|
BuildRequires: python3-breathe
|
|
BuildRequires: xtl-devel >= 0.7.5
|
|
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}
|
|
|
|
%check
|
|
%ctest
|
|
|
|
%files doc
|
|
%doc %{_docdir}/%{name}
|
|
|
|
%files devel
|
|
%license LICENSE
|
|
%{_includedir}/xtensor
|
|
%{_includedir}/xtensor.hpp
|
|
%{_datadir}/cmake/xtensor
|
|
%{_datadir}/pkgconfig/xtensor.pc
|
|
|
|
%changelog
|