Hello community,
here is the log from the commit of package python-jupyter_latex_envs for
openSUSE:Leap:15.2 checked in at 2020-03-19 11:03:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-jupyter_latex_envs (Old)
and /work/SRC/openSUSE:Leap:15.2/.python-jupyter_latex_envs.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jupyter_latex_envs"
Thu Mar 19 11:03:27 2020 rev:3 rq:776715 version:1.4.6
Changes:
--------
---
/work/SRC/openSUSE:Leap:15.2/python-jupyter_latex_envs/python-jupyter_latex_envs.changes
2020-01-15 15:49:38.851467362 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.python-jupyter_latex_envs.new.3160/python-jupyter_latex_envs.changes
2020-03-19 11:03:28.519883012 +0100
@@ -1,0 +2,21 @@
+Wed Nov 13 16:40:01 UTC 2019 - Todd R <[email protected]>
+
+- Drop python2 support due to python-notebook dropping python2 support
+
+-------------------------------------------------------------------
+Wed May 1 18:50:20 UTC 2019 - Todd R <[email protected]>
+
+- Split jupyter components into own package.
+
+-------------------------------------------------------------------
+Sat Dec 22 07:14:52 UTC 2018 - Todd R <[email protected]>
+
+- Update to 1.4.6
+ * corrected a typo in Figure environment
+- Update to 1.4.5
+ * Corrected some small issues in removing toc2 Table of Contents
+ * enable to protect the author bibTeX entry, cf issue \#41
+ * corrected a bug with non existent output.latex
+ * Remove shortcut for definition
+
+-------------------------------------------------------------------
Old:
----
jupyter_latex_envs-1.4.4.tar.gz
New:
----
jupyter_latex_envs-1.4.6.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-jupyter_latex_envs.spec ++++++
--- /var/tmp/diff_new_pack.4MbGia/_old 2020-03-19 11:03:29.015883297 +0100
+++ /var/tmp/diff_new_pack.4MbGia/_new 2020-03-19 11:03:29.015883297 +0100
@@ -17,40 +17,34 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
%bcond_with test
Name: python-jupyter_latex_envs
-Version: 1.4.4
+Version: 1.4.6
Release: 0
Summary: LaTeX environments for Jupyter notebook
License: BSD-3-Clause
Group: Development/Languages/Python
Url: http://github.com/jfbercher/jupyter_latex_envs
Source:
https://files.pythonhosted.org/packages/source/j/jupyter_latex_envs/jupyter_latex_envs-%{version}.tar.gz
-BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
-BuildRequires: python3-jupyter_notebook >= 4.0
+BuildRequires: jupyter-notebook >= 4.0
%if %{with test}
BuildRequires: %{python_module entrypoints >= 0.2.2}
BuildRequires: %{python_module jupyter_core}
-BuildRequires: %{python_module jupyter_ipython}
-BuildRequires: %{python_module jupyter_nbconvert}
-BuildRequires: %{python_module jupyter_notebook >= 4.0}
+BuildRequires: %{python_module ipython}
+BuildRequires: %{python_module nbconvert}
+BuildRequires: %{python_module notebook >= 4.0}
BuildRequires: %{python_module traitlets >= 4.1}
%endif
Requires: python-jupyter_core
-Requires: python-jupyter_ipython
-Requires: python-jupyter_nbconvert
-Requires: python-jupyter_notebook >= 4.0
+Requires: python-ipython
+Requires: python-nbconvert
+Requires: python-notebook >= 4.0
Requires: python-traitlets >= 4.1
-%ifpython3
-Requires(post): python-jupyter_notebook
-Requires(preun): python-jupyter_notebook
-%endif
-%ifpython2
-Requires: python3-jupyter_latex_envs = %{version}
-%endif
+Requires: jupyter-jupyter_latex_envs = %{version}
BuildArch: noarch
%python_subpackages
@@ -60,6 +54,26 @@
within markdown cells. Also provides support for labels and
crossreferences, document wide numbering, bibliography, and more.
+This package provides the python interface.
+
+%package -n jupyter-jupyter_latex_envs
+Summary: LaTeX environments for Jupyter notebook
+Requires: jupyter-jupyter_core
+Requires: jupyter-nbconvert
+Requires: jupyter-notebook >= 4.0
+Requires: python3-jupyter_latex_envs = %{version}
+Requires(post): jupyter-notebook
+Requires(preun): jupyter-notebook
+Requires(post): python3-jupyter_latex_envs = %{version}
+Requires(preun): python3-jupyter_latex_envs = %{version}
+
+%description -n jupyter-jupyter_latex_envs
+Jupyter notebook extension which supports (some) LaTeX environments
+within markdown cells. Also provides support for labels and
+crossreferences, document wide numbering, bibliography, and more.
+
+This package provides the jupyter components.
+
%prep
%setup -q -n jupyter_latex_envs-%{version}
rm -r src/latex_envs/static/doc/.ipynb_checkpoints
@@ -72,16 +86,14 @@
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
-PYTHONPATH=%{buildroot}%{python3_sitelib} jupyter nbextension install
--nbextensions=%{buildroot}%{_datadir}/jupyter/nbextensions/ --py latex_envs
-%python_expand %fdupes %{buildroot}%{_datadir}/jupyter/nbextensions/
+%{jupyter_nbextension_install latex_envs}
+%{fdupes %{buildroot}%{python3_sitelib}
%{buildroot}%{_jupyter_nbextension_dir}}
-%post -n python3-jupyter_latex_envs
-jupyter nbextension enable --system --py latex_envs || true
+%post -n jupyter-jupyter_latex_envs
+%{jupyter_nbextension_enable latex_envs}
-%preun -n python3-jupyter_latex_envs
-if [ $1 = 0 ] && [ -d %{python3_sitelib}/latex_envs/ ] ; then
- jupyter nbextension disable --system --py latex_envs || true
-fi
+%preun -n jupyter-jupyter_latex_envs
+%{jupyter_nbextension_disable latex_envs}
%if %{with test}
%check
@@ -89,11 +101,13 @@
%endif
%files %{python_files}
-%defattr(-,root,root,-)
%doc README.rst
%license LICENSE.txt
%{python_sitelib}/latex_envs
%{python_sitelib}/jupyter_latex_envs-%{version}-py*.egg-info
-%python3_only %{_datadir}/jupyter/nbextensions/latex_envs/
+
+%files -n jupyter-jupyter_latex_envs
+%license LICENSE.txt
+%{_jupyter_nbextension_dir}/latex_envs/
%changelog
++++++ jupyter_latex_envs-1.4.4.tar.gz -> jupyter_latex_envs-1.4.6.tar.gz ++++++
++++ 3459 lines of diff (skipped)