update to 6.0.0 [release 6.0.0-1mamba;Wed Dec 07 2022]
This commit is contained in:
parent
3fc90109bc
commit
1e687c21ea
@ -1,2 +1,4 @@
|
|||||||
# python-flake8
|
# python-flake8
|
||||||
|
|
||||||
|
The modular source code checker: pep8 pyflakes and co.
|
||||||
|
|
||||||
|
58
python-flake8.spec
Normal file
58
python-flake8.spec
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
%define pkgname %(echo %name | cut -d- -f2- | tr - _)
|
||||||
|
Name: python-flake8
|
||||||
|
Version: 6.0.0
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: The modular source code checker: pep8 pyflakes and co
|
||||||
|
Group: System/Libraries
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: https://github.com/pycqa/flake8
|
||||||
|
Source: http://pypi.debian.net/flake8/flake8-%{version}.tar.gz
|
||||||
|
License: MIT
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: libpython3-devel
|
||||||
|
BuildRequires: python3.7dist(mccabe)
|
||||||
|
BuildRequires: python3.7dist(pycodestyle)
|
||||||
|
BuildRequires: python3.7dist(pyflakes)
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%if 0%{?with_pyver}
|
||||||
|
%pyver_package
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n flake8-%{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}/flake8; do
|
||||||
|
mv %{buildroot}${f}{,-%{?pyappend}}
|
||||||
|
done
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%files %{?pyappend}
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/flake8*
|
||||||
|
%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info
|
||||||
|
%{python_sitelib}/%{pkgname}-%{version}.dist-info/*
|
||||||
|
%dir %{python_sitelib}/%{pkgname}
|
||||||
|
%{python_sitelib}/%{pkgname}/*
|
||||||
|
%doc LICENSE
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Dec 07 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 6.0.0-1mamba
|
||||||
|
- update to 6.0.0
|
||||||
|
|
||||||
|
* Wed Nov 09 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 5.0.4-1mamba
|
||||||
|
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user