commit 55d379c45ba7a26fe2b737772f9af761ba09e3348d7c91df367f05eaf733395c Author: Todd R Date: Wed May 9 23:45:01 2018 +0000 Accepting request 605970 from devel:languages:python:misc Python code quality checkecer OBS-URL: https://build.opensuse.org/request/show/605970 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pylama?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/pylama-7.4.3.tar.gz b/pylama-7.4.3.tar.gz new file mode 100644 index 0000000..c5b8fa2 --- /dev/null +++ b/pylama-7.4.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:390c1dab1daebdf3d6acc923e551b035c3faa77d8b96b98530c230493f9ec712 +size 28631 diff --git a/python-pylama.changes b/python-pylama.changes new file mode 100644 index 0000000..bf81317 --- /dev/null +++ b/python-pylama.changes @@ -0,0 +1,23 @@ +------------------------------------------------------------------- +Wed May 9 23:28:47 UTC 2018 - toddrme2178@gmail.com + +- Use license tag + +------------------------------------------------------------------- +Wed Oct 18 16:46:03 UTC 2017 - toddrme2178@gmail.com + +- Implement single-spec version +- Update to version 7.4.3 + * See changelog at https://github.com/klen/pylama/blob/7.4.3/Changelog + +------------------------------------------------------------------- +Thu Jul 10 12:44:22 UTC 2014 - toddrme2178@gmail.com + +- Update to 6.0.0 + - No upstream changelog + +------------------------------------------------------------------- +Mon Mar 24 13:08:43 UTC 2014 - toddrme2178@gmail.com + +- Initial version + diff --git a/python-pylama.spec b/python-pylama.spec new file mode 100644 index 0000000..7e25897 --- /dev/null +++ b/python-pylama.spec @@ -0,0 +1,99 @@ +# +# spec file for package python-pylama +# +# Copyright (c) 2018 SUSE LINUX 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/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +%bcond_with test +Name: python-pylama +Version: 7.4.3 +Release: 0 +Summary: Code audit tool for python +License: LGPL-3.0 +Group: Development/Languages/Python +Url: https://github.com/klen/pylama +Source: https://files.pythonhosted.org/packages/source/p/pylama/pylama-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +%if %{with test} +BuildRequires: %{python_module mccabe >= 0.5.2} +BuildRequires: %{python_module pycodestyle >= 2.3.1} +BuildRequires: %{python_module pydocstyle >= 2.0.0} +BuildRequires: %{python_module pyflakes >= 1.5.0} +BuildRequires: %{python_module py} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module radon} +BuildRequires: python-configparser +%endif +Requires: python-py +Recommends: python-mccabe >= 0.5.2 +Recommends: python-pycodestyle >= 2.3.1 +Recommends: python-pydocstyle >= 2.0.0 +Recommends: python-pyflakes >= 1.5.0 +Recommends: python-radon +%ifpython2 +Requires: python-configparser +%endif +BuildArch: noarch +Requires(post): update-alternatives +Requires(postun): update-alternatives + +%python_subpackages + +%description +Code audit tool for Python and JavaScript. Pylama wraps these tools: + +* PEP8_ © 2012-2013, Florent Xicluna; +* PEP257_ © 2012, GreenSteam, +* PyFlakes_ © 2005-2013, Kevin Watters; +* Mccabe_ © Ned Batchelder; + +%prep +%setup -q -n pylama-%{version} + +%build +export LANG=en_US.UTF-8 +%python_build + +%install +export LANG=en_US.UTF-8 +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%python_clone -a %{buildroot}%{_bindir}/pylama + +%if %{with test} +%check +export LANG=en_US.UTF-8 +%python_expand py.test-%{$python_bin_suffix} pylama/pytest.py +%endif + +%post +%python_install_alternative pylama + +%postun +%python_uninstall_alternative pylama + +%files %{python_files} +%defattr(-,root,root,-) +%doc AUTHORS Changelog README.rst +%license LICENSE +%python_alternative %{_bindir}/pylama +%{python_sitelib}/* + +%changelog