From 1e687c21eac6ced05dbc72611808ef34f1769597 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:09:35 +0100 Subject: [PATCH] update to 6.0.0 [release 6.0.0-1mamba;Wed Dec 07 2022] --- README.md | 2 ++ python-flake8.spec | 58 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 python-flake8.spec diff --git a/README.md b/README.md index 5dfebea..1b0596d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-flake8 +The modular source code checker: pep8 pyflakes and co. + diff --git a/python-flake8.spec b/python-flake8.spec new file mode 100644 index 0000000..5810046 --- /dev/null +++ b/python-flake8.spec @@ -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 +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 6.0.0-1mamba +- update to 6.0.0 + +* Wed Nov 09 2022 Silvan Calarco 5.0.4-1mamba +- package created using the webbuild interface