package created using the webbuild interface [release 0.1.3-1mamba;Mon Oct 18 2021]

This commit is contained in:
Silvan Calarco 2024-01-06 11:26:42 +01:00
parent ffe8002f9d
commit b921482c99
2 changed files with 54 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-matplotlib-inline # python-matplotlib-inline
Inline Matplotlib backend for Jupyter.

View File

@ -0,0 +1,52 @@
Name: python-matplotlib-inline
Version: 0.1.3
Release: 1mamba
Summary: Inline Matplotlib backend for Jupyter
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/ipython/matplotlib-inline
Source: https://pypi.debian.net/matplotlib-inline/matplotlib-inline-%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython3-devel
BuildRequires: python3.7dist(traitlets)
## AUTOBUILDREQ-END
BuildRequires: libpython-devel
Requires: python >= %python_version
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n matplotlib-inline-%{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 "s,.*/man/.*,&.gz," %{name}.filelist
%files %{?pyappend} -f %{name}.filelist
%defattr(-,root,root)
%dir %{python_sitearch}/matplotlib_inline-%{version}-py*.egg-info
%{python_sitearch}/matplotlib_inline-%{version}-py*.egg-info/*
%doc LICENSE
%changelog
* Mon Oct 18 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.3-1mamba
- package created using the webbuild interface