forked from pool/python-flake8
Accepting request 172927 from home:dirkmueller:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/172927 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flake8?expand=0&rev=1
This commit is contained in:
commit
b0a25653cb
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
flake8-2.0.tar.gz
Normal file
3
flake8-2.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8dce4f7e64cc202cc6da93eab84b2ce660110ff684b6738bba64a0a431b3bc69
|
||||||
|
size 10511
|
5
python-flake8.changes
Normal file
5
python-flake8.changes
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Apr 21 23:40:09 UTC 2013 - dmueller@suse.com
|
||||||
|
|
||||||
|
- Initial package (2.0)
|
||||||
|
|
58
python-flake8.spec
Normal file
58
python-flake8.spec
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
#
|
||||||
|
# spec file for package python-flake8
|
||||||
|
#
|
||||||
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
|
||||||
|
|
||||||
|
Name: python-flake8
|
||||||
|
Version: 2.0
|
||||||
|
Release: 0
|
||||||
|
License: MIT
|
||||||
|
Summary: Modular source code checker: pep8, pyflakes and co
|
||||||
|
Url: http://bitbucket.org/tarek/flake8
|
||||||
|
Group: Development/Languages/Python
|
||||||
|
Source: http://pypi.python.org/packages/source/f/flake8/flake8-%{version}.tar.gz
|
||||||
|
BuildRequires: python-devel
|
||||||
|
BuildRequires: python-distribute
|
||||||
|
BuildRequires: python-pyflakes
|
||||||
|
Requires: python-pyflakes >= 0.6.1
|
||||||
|
Requires: python-pep8 >= 1.4.3
|
||||||
|
Requires: python-mccabe >= 0.2
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description
|
||||||
|
Flake8 is a wrapper around these tools:
|
||||||
|
|
||||||
|
- PyFlakes
|
||||||
|
- pep8
|
||||||
|
- Ned Batchelder's McCabe script
|
||||||
|
|
||||||
|
Flake8 runs all the tools by launching the single ``flake8`` script.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n flake8-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
CFLAGS="%{optflags}" python setup.py build
|
||||||
|
|
||||||
|
%install
|
||||||
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
/usr/bin/flake8
|
||||||
|
%{python_sitelib}/*
|
||||||
|
|
||||||
|
%changelog
|
5
python3-flake8.changes
Normal file
5
python3-flake8.changes
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Apr 21 23:40:09 UTC 2013 - dmueller@suse.com
|
||||||
|
|
||||||
|
- Initial package (2.0)
|
||||||
|
|
58
python3-flake8.spec
Normal file
58
python3-flake8.spec
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
#
|
||||||
|
# spec file for package python-flake8
|
||||||
|
#
|
||||||
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
|
||||||
|
|
||||||
|
Name: python3-flake8
|
||||||
|
Version: 2.0
|
||||||
|
Release: 0
|
||||||
|
License: MIT
|
||||||
|
Summary: Modular source code checker: pep8, pyflakes and co
|
||||||
|
Url: http://bitbucket.org/tarek/flake8
|
||||||
|
Group: Development/Languages/Python
|
||||||
|
Source: http://pypi.python.org/packages/source/f/flake8/flake8-%{version}.tar.gz
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
BuildRequires: python3-distribute
|
||||||
|
BuildRequires: python3-pyflakes
|
||||||
|
Requires: python3-pyflakes >= 0.6.1
|
||||||
|
Requires: python3-pep8 >= 1.4.3
|
||||||
|
Requires: python3-mccabe >= 0.2
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description
|
||||||
|
Flake8 is a wrapper around these tools:
|
||||||
|
|
||||||
|
- PyFlakes
|
||||||
|
- pep8
|
||||||
|
- Ned Batchelder's McCabe script
|
||||||
|
|
||||||
|
Flake8 runs all the tools by launching the single ``flake8`` script.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n flake8-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
CFLAGS="%{optflags}" python3 setup.py build
|
||||||
|
|
||||||
|
%install
|
||||||
|
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
/usr/bin/flake8
|
||||||
|
%{python3_sitelib}/*
|
||||||
|
|
||||||
|
%changelog
|
Loading…
Reference in New Issue
Block a user