From 82d3bbfece311e8c745f8ee7f40c8c36cf687169 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 10 Aug 2024 11:20:37 +0200 Subject: [PATCH] package created using the webbuild interface [release 2.2.5-1mamba;Fri Aug 09 2024] --- README.md | 2 ++ python-jupyter-lsp.spec | 57 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 python-jupyter-lsp.spec diff --git a/README.md b/README.md index e58e9bc..4fec43a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-jupyter-lsp +Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server. + diff --git a/python-jupyter-lsp.spec b/python-jupyter-lsp.spec new file mode 100644 index 0000000..226d756 --- /dev/null +++ b/python-jupyter-lsp.spec @@ -0,0 +1,57 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-jupyter-lsp +Version: 2.2.5 +Release: 1mamba +Summary: Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://jupyterlab-lsp.readthedocs.io/en/latest/ +Source: https://pypi.debian.net/jupyter-lsp/jupyter-lsp-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +BuildRequires: python3.11dist(jupyter-server) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n jupyter-lsp-%{version} + +%build +CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} -m installer --destdir=%{buildroot} dist/*.whl + +mv %{buildroot}/{usr,}/etc + +#%if "%{?with_pyver}" != "3" +## Rename any conflicting file outside of python site packages tree +#for f in %{_bindir}/pdm; do +# mv %{buildroot}${f}{,-%{?pyappend}} +#done +#%endif + +%files %{?pyappend} +%defattr(-,root,root) +%dir %{_sysconfdir}/jupyter +%dir %{_sysconfdir}/jupyter/jupyter_server_config.d +%{_sysconfdir}/jupyter/jupyter_server_config.d/jupyter-lsp-jupyter-server.json +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/%{pkgname} +%{python_sitelib}/%{pkgname}/* +%doc LICENSE + +%changelog +* Fri Aug 09 2024 Silvan Calarco 2.2.5-1mamba +- package created using the webbuild interface