forked from pool/python-scikit-sparse
28c94dcdbe
Scikits sparse matrix package OBS-URL: https://build.opensuse.org/request/show/612560 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-scikit-sparse?expand=0&rev=1
89 lines
2.7 KiB
RPMSpec
89 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package python-scikit-sparse
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-scikit-sparse
|
|
Version: 0.4.3
|
|
# For license file
|
|
%define tag c94f8418b6c36c3ff9db4f87e00fc08bd51cfb4b
|
|
Release: 0
|
|
Summary: Scikits sparse matrix package
|
|
License: GPL-2.0-or-later AND LGPL-2.1-or-later
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/scikit-sparse/scikit-sparse/
|
|
Source: https://files.pythonhosted.org/packages/source/s/scikit-sparse/scikit-sparse-%{version}.tar.gz
|
|
Source10: https://raw.githubusercontent.com/scikit-sparse/scikit-sparse/%{tag}/LICENSE.txt
|
|
BuildRequires: %{python_module Cython}
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module numpy-devel >= 1.12}
|
|
BuildRequires: %{python_module scipy >= 0.18}
|
|
BuildRequires: %{python_module setuptools >= 18.0}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: suitesparse-devel
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module nose}
|
|
BuildRequires: %{python_module pytest}
|
|
# /SECTION
|
|
Requires: python-numpy >= 1.12
|
|
Requires: python-scipy >= 0.18
|
|
ExcludeArch: %{ix86}
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
Sparse matrix tools.
|
|
|
|
This is a home for sparse matrix code in Python that plays well with
|
|
scipy.sparse, but that is somehow unsuitable for inclusion in scipy
|
|
proper. Usually this will be because it is released under the GPL.
|
|
|
|
So far we have a wrapper for the CHOLMOD library for sparse Cholesky
|
|
decomposition. Further contributions are welcome!
|
|
|
|
%prep
|
|
%setup -q -n scikit-sparse-%{version}
|
|
cp %{SOURCE10} .
|
|
rm -r .eggs
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%check
|
|
mkdir -p tester
|
|
pushd tester
|
|
ln -s ../sksparse/test_*.py .
|
|
ln -s ../sksparse/test_data .
|
|
%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitearch}
|
|
py.test-%{$python_bin_suffix}
|
|
}
|
|
popd
|
|
|
|
%files %{python_files}
|
|
%doc doc/changes.rst
|
|
%doc README.md
|
|
%license LICENSE.txt
|
|
%{python_sitearch}/*
|
|
|
|
%changelog
|