package created by autospec [release 0.10.0-1mamba;Mon Jul 18 2016]

This commit is contained in:
Davide Madrisan 2024-01-06 11:01:17 +01:00
parent 46d1b3ea2d
commit b0787b6fb9
2 changed files with 53 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-cycler
mathplotlib libraty - composable cycles.

51
python-cycler.spec Normal file
View File

@ -0,0 +1,51 @@
Name: python-cycler
Version: 0.10.0
Release: 1mamba
Summary: mathplotlib libraty - composable cycles
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Davide Madrisan <davide.madrisan@gmail.com>
URL: https://github.com/matplotlib/cycler
Source: https://github.com/matplotlib/cycler/archive/v%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython-devel
## AUTOBUILDREQ-END
Requires: python >= %python_version
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n cycler-%{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
%files %{?pyappend} -f %{name}.filelist
%defattr(-,root,root)
## note: this list is just an example; modify as required
# %{python_sitearch}/%{name}.py*
# %{python_sitearch}/%{name}.so
%doc LICENSE
## note: eventually add the remaining documents (if any)
# %doc README.rst
%changelog
* Mon Jul 18 2016 Davide Madrisan <davide.madrisan@gmail.com> 0.10.0-1mamba
- package created by autospec