Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/578531 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-jupyter_console?expand=0&rev=6
106 lines
2.8 KiB
RPMSpec
106 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package python-jupyter_console-doc
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%if 0%{?suse_version} && 0%{?suse_version} != 1315
|
|
%bcond_without pdf
|
|
%else
|
|
%bcond_with pdf
|
|
%endif
|
|
|
|
%bcond_without html
|
|
|
|
# Tests require an active console
|
|
%bcond_with tests
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-jupyter_console-doc
|
|
Version: 5.2.0
|
|
Release: 0
|
|
Summary: Documentation for python-jupyter_console
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/jupyter/jupyter_console
|
|
Source: https://files.pythonhosted.org/packages/source/j/jupyter_console/jupyter_console-%{version}.tar.gz
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: %{python_module jupyter_console}
|
|
%if %{with tests}
|
|
# Test requirements
|
|
BuildRequires: %{python_module nose}
|
|
# Python 2.x test requirements
|
|
BuildRequires: python-mock
|
|
%endif
|
|
# Documentation requirements
|
|
%if %{with pdf} || %{with html}
|
|
BuildRequires: python3-Sphinx
|
|
BuildRequires: python3-sphinxcontrib-github-alt
|
|
%endif
|
|
%if %{with pdf}
|
|
BuildRequires: python3-Sphinx-latex
|
|
%endif
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
Provides: %{name}-html = %{version}
|
|
Provides: %{name}-pdf = %{version}
|
|
Obsoletes: %{name}-html < %{version}
|
|
Obsoletes: %{name}-pdf < %{version}
|
|
Provides: %{python_module jupyter_console-doc = %{version}}
|
|
|
|
%description
|
|
Documentation and help files for python-jupyter_console.
|
|
|
|
%prep
|
|
%setup -q -n jupyter_console-%{version}
|
|
|
|
%build
|
|
# Build the documentation
|
|
pushd docs
|
|
%if %{with html}
|
|
make html
|
|
rm -rf _build/html/.buildinfo
|
|
%endif
|
|
%if %{with pdf}
|
|
make latexpdf
|
|
%endif
|
|
popd
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_docdir}/python-jupyter_console
|
|
|
|
%if %{with pdf}
|
|
cp docs/_build/latex/*.pdf %{buildroot}%{_docdir}/python-jupyter_console/
|
|
%endif
|
|
|
|
%if %{with html}
|
|
cp -r docs/_build/html %{buildroot}%{_docdir}/python-jupyter_console/
|
|
%endif
|
|
|
|
%fdupes %{buildroot}%{_docdir}/python-jupyter_console/
|
|
|
|
%if %{with tests}
|
|
%check
|
|
%python_expand nosetests-%{$python_bin_suffix} jupyter_console
|
|
%endif
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc COPYING.md
|
|
%{_docdir}/python-jupyter_console/
|
|
|
|
%changelog
|