python-nbdime/python-nbdime.spec
Markéta Machová 86e5476d63 Accepting request 869210 from home:bnavigator:branches:devel:languages:python:jupyter
- Update to 2.1.0 / jupyterlab extension 2.0.1
  * Dropped Python 3.5 support.
  * Optimize comparison of large stream outputs.
  * Fixed an error when merging a file that were concurrently added 
    in two branches with git.
  * Fixed a config bug where ignore configs written in a file was
    not taken into account.
  * Fixed compatibility with JupyterLab 2.2
- Changes in 2.0.0
  * Dropped Python 2 support, and Python 3.4 support.
  * Made web apps (e.g. nbdiff-web) work properly offline.
  * Fix for git driver with renamed files.
- Fix new wheel location for %pyproject_install

OBS-URL: https://build.opensuse.org/request/show/869210
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbdime?expand=0&rev=19
2021-02-05 09:29:12 +00:00

186 lines
6.0 KiB
RPMSpec

#
# spec file for package python-nbdime
#
# Copyright (c) 2021 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
%define mainver 2.1.0
%define labver 2.0.1
Name: python-nbdime
Version: %{mainver}
Release: 0
Summary: Tools for diffing and merging Jupyter Notebooks
License: BSD-3-Clause
URL: https://github.com/jupyter/nbdime
Source: https://files.pythonhosted.org/packages/py2.py3/n/nbdime/nbdime-%{mainver}-py2.py3-none-any.whl
BuildRequires: %{python_module GitPython >= 2.1.6}
BuildRequires: %{python_module Jinja2 >= 2.9}
BuildRequires: %{python_module colorama}
BuildRequires: %{python_module nbformat}
BuildRequires: %{python_module notebook}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module requests}
BuildRequires: %{python_module six}
BuildRequires: %{python_module tornado}
BuildRequires: fdupes
BuildRequires: jupyter-jupyterlab-filesystem
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module jsonschema}
BuildRequires: %{python_module pytest-timeout}
BuildRequires: %{python_module pytest-tornado}
BuildRequires: %{python_module pytest}
# /SECTION
Requires: jupyter-nbdime = %{mainver}
Requires: python-GitPython >= 2.1.6
Requires: python-Jinja2 >= 2.9
Requires: python-colorama
Requires: python-nbformat
Requires: python-notebook
Requires: python-requests
Requires: python-six
Requires: python-tornado
Conflicts: python-jupyter_nbdime-hg < 1.0.5
Conflicts: python-jupyter_nbdime-git < 1.0.5
Recommends: python-tabulate
Provides: python-jupyter_nbdime = %{mainver}
Obsoletes: python-jupyter_nbdime < %{mainver}
BuildArch: noarch
%python_subpackages
%description
The nbdime package provides tools for diffing and merging of
Jupyter Notebooks.
This package provides the python interface.
%package -n jupyter-nbdime
Summary: A JupyterLab extension for showing Notebook diffs
Requires: jupyter-nbformat
Requires: jupyter-notebook
Requires: python3-nbdime = %{mainver}
Conflicts: python3-jupyter_nbdime < 1.0.5
%description -n jupyter-nbdime
The nbdime package provides tools for diffing and merging of
Jupyter Notebooks.
This package provides the tools and jupyter notebook extension.
%package -n jupyter-nbdime-jupyterlab
Version: %{labver}
Release: 0
Summary: A JupyterLab extension for showing Notebook diffs
Requires: jupyter-jupyterlab
Requires: python3-nbdime = %{mainver}
Provides: python3-jupyter_nbdime_jupyterlab = %{labver}
Obsoletes: python3-jupyter_nbdime_jupyterlab < %{labver}
%description -n jupyter-nbdime-jupyterlab
The nbdime package provides tools for diffing and merging of
Jupyter Notebooks.
This package provides the JupyterLab extension.
%package -n jupyter-nbdime-git
Summary: Git integration for jupyter-nbdime
Requires: git-core
Requires: jupyter-nbdime = %{mainver}
Provides: python3-jupyter_nbdime-git = %{mainver}
Obsoletes: python3-jupyter_nbdime-git < %{mainver}
%description -n jupyter-nbdime-git
The nbdime package provides tools for diffing and merging of
Jupyter Notebooks.
This package provides git integration.
%package -n jupyter-nbdime-hg
Summary: Mercurial integration for jupyter-nbdime
Requires: jupyter-nbdime = %{mainver}
Requires: mercurial
Provides: python3-jupyter_nbdime-hg = %{mainver}
Obsoletes: python3-jupyter_nbdime-hg < %{mainver}
%description -n jupyter-nbdime-hg
The nbdime package provides tools for diffing and merging of
Jupyter Notebooks.
This package provides mercurial integration.
%prep
%setup -q -c -T
%build
%python_expand mkdir build; cp -a %{SOURCE0} build
%install
%pyproject_install
%{jupyter_move_config}
%python_expand sed -i 's/^import mock/from unittest import mock/' %{buildroot}%{$python_sitelib}/nbdime/tests/test_*.py
%python_expand find %{buildroot}%{$python_sitelib} -type f -name "*.py" -exec sed -i 's/\r$//' {} +
%python_expand find %{buildroot}%{$python_sitelib} -type f -name "*.ipynb" -exec sed -i 's/\r$//' {} +
%python_expand find %{buildroot}%{$python_sitelib}/nbdime/ -type f -name "*.py" -exec sed -i -e '/^#!\//, 1d' {} +
%python_compileall
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%fdupes %{buildroot}%{_jupyter_prefix}
cp %{buildroot}%{python3_sitelib}/nbdime-%{mainver}.dist-info/LICENSE.md .
%check
export PATH=$PATH:%{buildroot}%{_bindir}
git config --global user.email "test@test.com"
git config --global user.name "tester"
%pytest --pyargs nbdime
%files %{python_files}
%license LICENSE.md
%{python_sitelib}/nbdime/
%{python_sitelib}/nbdime-%{mainver}.dist-info/
%files -n jupyter-nbdime
%license LICENSE.md
%{_bindir}/nbdime
%{_bindir}/nbshow
%{_bindir}/nbdiff
%{_bindir}/nbdiff-web
%{_bindir}/nbmerge
%{_bindir}/nbmerge-web
%{_jupyter_nbextension_dir}/nbdime/
%config %{_jupyter_servextension_confdir}/nbdime.json
%config %{_jupyter_nb_notebook_confdir}/nbdime.json
%files -n jupyter-nbdime-jupyterlab
%license LICENSE.md
%{_jupyter_labextensions_dir}/nbdime-jupyterlab-%{labver}.tgz
%files -n jupyter-nbdime-git
%license LICENSE.md
%{_bindir}/git-nbdiffdriver
%{_bindir}/git-nbdifftool
%{_bindir}/git-nbmergedriver
%{_bindir}/git-nbmergetool
%files -n jupyter-nbdime-hg
%license LICENSE.md
%{_bindir}/hg-nbdiff
%{_bindir}/hg-nbdiffweb
%{_bindir}/hg-nbmerge
%{_bindir}/hg-nbmergeweb
%changelog