# # spec file for package python-jupyter-core # # Copyright (c) 2020 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/ # %global flavor @BUILD_FLAVOR@%{nil} %if "%{flavor}" == "test" %define psuffix -test %bcond_without test %else %define psuffix %{nil} %bcond_with test %endif %bcond_without python2 %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define oldpython python Name: python-jupyter-core%{psuffix} Version: 4.6.3 Release: 0 Summary: Base package on which Jupyter projects rely License: BSD-3-Clause URL: https://github.com/jupyter/jupyter_core Source0: https://files.pythonhosted.org/packages/source/j/jupyter_core/jupyter_core-%{version}.tar.gz # PATCH-FIX-OPENSUSE -- use_rpms_paths.patch -- change paths so they are easy to replace at build time Patch0: use_rpms_paths.patch BuildRequires: %{python_module ipython_genutils} BuildRequires: %{python_module setuptools} BuildRequires: %{python_module traitlets} BuildRequires: fdupes BuildRequires: jupyter-jupyter_core-filesystem BuildRequires: python-rpm-macros Requires: jupyter-jupyter_core = %{version} Requires: python-ipython_genutils Requires: python-traitlets Recommends: python-ipython Provides: python-jupyter_core = %{version} Obsoletes: python-jupyter_core < %{version} BuildArch: noarch %ifpython2 Provides: %{oldpython}-jupyter_core = %{version} Obsoletes: %{oldpython}-jupyter_core < %{version} %endif %if %{with test} BuildRequires: %{python_module jupyter-core} BuildRequires: %{python_module nose} BuildRequires: %{python_module pytest} %if %{with python2} BuildRequires: python-mock %endif %endif %python_subpackages %description Core common functionality of Jupyter projects. This package contains base application classes and configuration inherited by other projects. It doesn't do much on its own. There is no reason to install this package on its own. It will be pulled in as a dependency by packages that require it. This package provides the python interface. %package -n jupyter-jupyter-core Summary: Base package on which Jupyter projects rely Requires: jupyter-notebook-filesystem Requires: python3-jupyter-core = %{version} Provides: jupyter-jupyter_core = %{version} Obsoletes: jupyter-jupyter_core < %{version} Provides: jupyter-jupyter-core-doc = %{version} Obsoletes: jupyter-jupyter-core-doc < %{version} %description -n jupyter-jupyter-core Core common functionality of Jupyter projects. This package contains base application classes and configuration inherited by other projects. It doesn't do much on its own. There is no reason to install this package on its own. It will be pulled in as a dependency by packages that require it. This package provides the jupyter components. %prep %setup -q -n jupyter_core-%{version} %patch0 -p1 %build %python_build %install %if !%{with test} %python_install # Set the appropriate paths dynamically %{python_expand # skip sed -i "s|\"/usr/share//jupyter\"|\"%{_datadir}/jupyter/%{$python_bin_suffix}\"|" %{buildroot}%{$python_sitelib}/jupyter_core/paths.py sed -i "s|\"/etc/jupyter\"|\"%{_sysconfdir}/jupyter/%{$python_bin_suffix}\"|" %{buildroot}%{$python_sitelib}/jupyter_core/paths.py sed -i "s|(sys\.prefix, 'share', 'jupyter')|('%{_datadir}', 'jupyter', '%{$python_bin_suffix}')|" %{buildroot}%{$python_sitelib}/jupyter_core/paths.py sed -i "s|(sys\.prefix, 'etc', 'jupyter')|('%{_sysconfdir}', 'jupyter', '%{$python_bin_suffix}')|" %{buildroot}%{$python_sitelib}/jupyter_core/paths.py } %python_expand cat %{buildroot}%{$python_sitelib}/jupyter_core/paths.py | grep share %python_expand cat %{buildroot}%{$python_sitelib}/jupyter_core/paths.py | grep etc sfsfsda %{python_expand chmod a+x %{buildroot}%{$python_sitelib}/jupyter_core/troubleshoot.py sed -i "s|^#!%{_bindir}/env python$|#!%{__$python}|" %{buildroot}%{$python_sitelib}/jupyter_core/troubleshoot.py $python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/jupyter_core/ $python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/jupyter_core/ %fdupes %{buildroot}%{$python_sitelib} } %endif %if %{with test} %check # test_migrate requires files not found in the package pushd jupyter_core/tests rm test_migrate.py %pytest popd %endif %if !%{with test} %files %{python_files} %license COPYING.md %{python_sitelib}/jupyter.py* %pycache_only %{python_sitelib}/__pycache__/jupyter.*.py* %{python_sitelib}/jupyter_core/ %{python_sitelib}/jupyter_core-%{version}-*.egg-info %files -n jupyter-jupyter-core %license COPYING.md %doc CONTRIBUTING.md README.md %{_bindir}/jupyter %{_bindir}/jupyter-migrate %{_bindir}/jupyter-troubleshoot %endif %changelog