- Update to 3.1.0
* Switch to prebuilt (federated) extension model * Fix bug with icons visibility in the dark theme - Release 3.0.0 * Update to JupyterLab 3.0 * Add LaTeX file menu * Add download PDF button - Release 2.0.0 * Update to JupyterLab 2.0 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/jupyter-jupyterlab-latex?expand=0&rev=11
This commit is contained in:
parent
de3b618c00
commit
989a9c0077
3
jupyter-jupyterlab-latex-rpmlintrc
Normal file
3
jupyter-jupyterlab-latex-rpmlintrc
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Note: These are not really backup files, they are needed
|
||||||
|
addFilter("backup-file-in-package .*/package.json.orig")
|
||||||
|
addFilter("filelist-forbidden .*/package.json.orig")
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 11 08:19:59 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Update to 3.1.0
|
||||||
|
* Switch to prebuilt (federated) extension model
|
||||||
|
* Fix bug with icons visibility in the dark theme
|
||||||
|
- Release 3.0.0
|
||||||
|
* Update to JupyterLab 3.0
|
||||||
|
* Add LaTeX file menu
|
||||||
|
* Add download PDF button
|
||||||
|
- Release 2.0.0
|
||||||
|
* Update to JupyterLab 2.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 12 19:09:03 UTC 2020 - Bernhard Wiedemann <bwiedemann@suse.com>
|
Sun Jan 12 19:09:03 UTC 2020 - Bernhard Wiedemann <bwiedemann@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package jupyter-jupyterlab-latex
|
# spec file for package jupyter-jupyterlab-latex
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -18,13 +18,14 @@
|
|||||||
|
|
||||||
%define pythons python3
|
%define pythons python3
|
||||||
Name: jupyter-jupyterlab-latex
|
Name: jupyter-jupyterlab-latex
|
||||||
Version: 1.0.0
|
Version: 3.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Jupyter Notebook server extension which acts as an endpoint for LaTeX
|
Summary: Jupyter Notebook server extension which acts as an endpoint for LaTeX
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/jupyterlab/jupyterlab-latex
|
URL: https://github.com/jupyterlab/jupyterlab-latex
|
||||||
Source: https://files.pythonhosted.org/packages/py3/j/jupyterlab_latex/jupyterlab_latex-%{version}-py3-none-any.whl
|
Source: https://files.pythonhosted.org/packages/py3/j/jupyterlab_latex/jupyterlab_latex-%{version}-py3-none-any.whl
|
||||||
|
Source99: jupyter-jupyterlab-latex-rpmlintrc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: jupyter-notebook
|
BuildRequires: jupyter-notebook
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@ -33,12 +34,9 @@ BuildRequires: python3-pip
|
|||||||
Requires: jupyter-notebook
|
Requires: jupyter-notebook
|
||||||
Requires: texlive-latex-bin
|
Requires: texlive-latex-bin
|
||||||
Provides: python3-jupyter_jupyterlab_latex = %{version}
|
Provides: python3-jupyter_jupyterlab_latex = %{version}
|
||||||
Obsoletes: python3-jupyter_jupyterlab_latex <= %{version}
|
Obsoletes: python3-jupyter_jupyterlab_latex < %{version}
|
||||||
Provides: python3-jupyterlab-latex = %{version}
|
Provides: python3-jupyterlab-latex = %{version}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# SECTION test requirements
|
|
||||||
BuildRequires: jupyter-jupyterlab
|
|
||||||
# /SECTION
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
An extension for JupyterLab which allows for live-editing of LaTeX documents.
|
An extension for JupyterLab which allows for live-editing of LaTeX documents.
|
||||||
@ -54,12 +52,19 @@ cp -a %{SOURCE0} .
|
|||||||
%pyproject_install
|
%pyproject_install
|
||||||
|
|
||||||
%{jupyter_move_config}
|
%{jupyter_move_config}
|
||||||
%fdupes %{buildroot}%{_jupyter_prefix} %{buildroot}%{python3_sitelib}
|
%fdupes %{buildroot}%{_jupyter_prefix}
|
||||||
|
%fdupes %{buildroot}%{python3_sitelib}
|
||||||
|
|
||||||
|
#%%check
|
||||||
|
# no python tests
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license %{python3_sitelib}/jupyterlab_latex-*.dist-info/LICENSE
|
%license %{python3_sitelib}/jupyterlab_latex-*.dist-info/LICENSE
|
||||||
%{python3_sitelib}/jupyterlab_latex-*.dist-info
|
%{python3_sitelib}/jupyterlab_latex-%{version}*.dist-info
|
||||||
%{python3_sitelib}/jupyterlab_latex/
|
%{python3_sitelib}/jupyterlab_latex/
|
||||||
|
%dir %_jupyter_labextensions_dir3/@jupyterlab
|
||||||
|
%_jupyter_labextensions_dir3/@jupyterlab/latex
|
||||||
%_jupyter_config %{_jupyter_servextension_confdir}/jupyterlab_latex.json
|
%_jupyter_config %{_jupyter_servextension_confdir}/jupyterlab_latex.json
|
||||||
|
%_jupyter_config %{_jupyter_server_confdir}/jupyterlab_latex.json
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8ce4210a58e50f2990cb1e28d0e099bb77d72b2d1e41b8ec13d7c2f2006091f6
|
|
||||||
size 10751
|
|
3
jupyterlab_latex-3.1.0-py3-none-any.whl
Normal file
3
jupyterlab_latex-3.1.0-py3-none-any.whl
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ccfbb85599d0cb72bd07905c8a3ecfce5f777b395ee512338d5c6f32fbe7343b
|
||||||
|
size 900645
|
Loading…
x
Reference in New Issue
Block a user