package created using the webbuild interface [release 0.32.0-1mamba;Sat Apr 03 2021]

This commit is contained in:
Silvan Calarco 2024-01-05 16:08:29 +01:00
parent 23bfaf4ef5
commit 8d01605530
2 changed files with 54 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-octave_kernel
An Octave kernel for Jupyter.

52
python-octave_kernel.spec Normal file
View File

@ -0,0 +1,52 @@
Name: python-octave_kernel
Version: 0.32.0
Release: 1mamba
Summary: An Octave kernel for Jupyter
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/Calysto/octave_kernel
Source: https://pypi.debian.net/octave-kernel/octave_kernel-%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython3-devel
BuildRequires: python-ipykernel-py3
BuildRequires: python-jupyter_client-py3
BuildRequires: python-metakernel-py3
## AUTOBUILDREQ-END
BuildRequires: libpython-devel
Requires: python >= %python_version
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n octave_kernel-%{version}
%build
CFLAGS="%{optflags}" %{__python} setup.py build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%{__python} setup.py install \
-O1 --skip-build \
--root="%{buildroot}" \
--install-headers=%{python_inc} \
--install-lib=%{python_sitearch} \
--record=%{name}.filelist
sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist
%files %{?pyappend} -f %{name}.filelist
%defattr(-,root,root)
%dir %{python_sitearch}/octave_kernel-%{version}-py*.egg-info
%{python_sitearch}/octave_kernel-%{version}-py*.egg-info/*
%changelog
* Sat Apr 03 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.32.0-1mamba
- package created using the webbuild interface