diff --git a/README.md b/README.md index d85ce5c..971f69d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-jupyterlab_server +A set of server components for JupyterLab and JupyterLab like applications. + diff --git a/python-jupyterlab_server.spec b/python-jupyterlab_server.spec new file mode 100644 index 0000000..ad8399a --- /dev/null +++ b/python-jupyterlab_server.spec @@ -0,0 +1,58 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-jupyterlab_server +Version: 2.27.3 +Release: 1mamba +Summary: A set of server components for JupyterLab and JupyterLab like applications +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://jupyterlab-server.readthedocs.io/ +Source: https://pypi.debian.net/jupyterlab-server/jupyterlab_server-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +BuildRequires: python3.11dist(babel) +BuildRequires: python3.11dist(jinja2) +BuildRequires: python3.11dist(json5) +BuildRequires: python3.11dist(jsonschema) +BuildRequires: python3.11dist(jupyter-server) +BuildRequires: python3.11dist(packaging) +BuildRequires: python3.11dist(requests) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n jupyterlab_server-%{version} + +%build +CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} -m installer --destdir=%{buildroot} dist/*.whl + +#%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 %{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.27.3-1mamba +- package created using the webbuild interface