53 lines
1.5 KiB
RPMSpec
53 lines
1.5 KiB
RPMSpec
|
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
|