forked from pool/python-bandit
Accepting request 678408 from home:jayvdb:coala:python3-bears
- Add remove-non-test-deps.patch to remove build dependencies not needed to build, including hacking which requires an unavailable version of flake8 - Activate tests - Use %license - Remove unnecessary devel build dependency - Update to v1.5.1 OBS-URL: https://build.opensuse.org/request/show/678408 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bandit?expand=0&rev=1
This commit is contained in:
109
python-bandit.spec
Normal file
109
python-bandit.spec
Normal file
@@ -0,0 +1,109 @@
|
||||
#
|
||||
# spec file for package python-bandit
|
||||
#
|
||||
# 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-%{**}}
|
||||
# Tests require python-hacking, which isn't compatible with pycodestyle
|
||||
%bcond_without builddocs
|
||||
Name: python-bandit
|
||||
Version: 1.5.1
|
||||
Release: 0
|
||||
License: Apache-2.0
|
||||
Summary: Security oriented static analyser for Python code
|
||||
Url: https://github.com/PyCQA/bandit
|
||||
Group: Development/Languages/Python
|
||||
Source: https://files.pythonhosted.org/packages/source/b/bandit/bandit-%{version}.tar.gz
|
||||
Patch0: remove-non-test-deps.patch
|
||||
BuildRequires: %{python_module pbr >= 1.8}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: %{python_module GitPython >= 1.0.1}
|
||||
BuildRequires: %{python_module PyYAML >= 3.10.0}
|
||||
BuildRequires: %{python_module beautifulsoup4}
|
||||
BuildRequires: %{python_module fixtures >= 3.0.0}
|
||||
BuildRequires: %{python_module mock >= 2.0}
|
||||
BuildRequires: %{python_module python-subunit >= 0.0.18}
|
||||
BuildRequires: %{python_module six >= 1.9.0}
|
||||
BuildRequires: %{python_module stevedore >= 1.17.1}
|
||||
BuildRequires: %{python_module testrepository >= 0.0.18}
|
||||
BuildRequires: %{python_module testscenarios >= 0.4}
|
||||
BuildRequires: %{python_module testtools >= 1.4.0}
|
||||
# doc requirements
|
||||
%if %{with builddocs}
|
||||
BuildRequires: %{python_module reno >= 1.8.0}
|
||||
BuildRequires: %{python_module Sphinx >= 1.2.1}
|
||||
BuildRequires: %{python_module oslotest >= 1.10.0}
|
||||
BuildRequires: %{python_module oslosphinx >= 4.7.0}
|
||||
%endif
|
||||
Requires: python-GitPython >= 1.0.1
|
||||
Requires: python-PyYAML >= 3.10.0
|
||||
Requires: python-six >= 1.9.0
|
||||
Requires: python-stevedore >= 1.17.1
|
||||
BuildArch: noarch
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Bandit is a tool designed to find common security issues in Python code. To do
|
||||
this Bandit processes each file, builds an AST from it, and runs appropriate
|
||||
plugins against the AST nodes. Once Bandit has finished scanning all the files
|
||||
it generates a report.
|
||||
|
||||
%prep
|
||||
%setup -q -n bandit-%{version}
|
||||
%patch0 -p1
|
||||
sed -i '/^#!/d' bandit/__main__.py
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
%python_clone -a %{buildroot}%{_bindir}/bandit
|
||||
%python_clone -a %{buildroot}%{_bindir}/bandit-config-generator
|
||||
%python_clone -a %{buildroot}%{_bindir}/bandit-baseline
|
||||
# Copy executables to py2/3 build areas, to be used for testing
|
||||
%{python_expand mkdir build/bin
|
||||
for filepath in %{buildroot}/%{_bindir}/bandit*-%{$python_bin_suffix}; do
|
||||
filename=$(basename $filepath)
|
||||
unsuffixed=${filename/-%{$python_bin_suffix}/}
|
||||
cp $filepath build/bin/$unsuffixed
|
||||
done
|
||||
}
|
||||
|
||||
%check
|
||||
%{python_expand export PATH="$(pwd)/build/bin:$PATH"
|
||||
$python setup.py test
|
||||
}
|
||||
|
||||
%post
|
||||
%{python_install_alternative bandit bandit-config-generator bandit-baseline }
|
||||
|
||||
%postun
|
||||
%python_uninstall_alternative bandit
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
%doc AUTHORS ChangeLog README.rst
|
||||
%python_alternative %{_bindir}/bandit
|
||||
%python_alternative %{_bindir}/bandit-config-generator
|
||||
%python_alternative %{_bindir}/bandit-baseline
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
Reference in New Issue
Block a user