python-bandit/python-bandit.spec

82 lines
2.2 KiB
RPMSpec
Raw Normal View History

2021-02-03 16:38:29 +08:00
%global _empty_manifest_terminate_build 0
Name: python-bandit
2023-04-11 10:41:19 +08:00
Version: 1.7.5
2022-10-08 14:46:21 +08:00
Release: 1
2021-02-03 16:38:29 +08:00
Summary: Security oriented static analyser for python code.
License: Apache-2.0
2022-10-08 14:46:21 +08:00
URL: https://github.com/PyCQA/bandit
2023-04-11 10:41:19 +08:00
Source0: https://files.pythonhosted.org/packages/source/b/bandit/bandit-%{version}.tar.gz
2021-02-03 16:38:29 +08:00
BuildArch: noarch
%description
A security linter from PyCQA
%package -n python3-bandit
Summary: Security oriented static analyser for python code.
Provides: python-bandit
BuildRequires: python3-devel
2021-07-31 09:01:04 +00:00
BuildRequires: python3-pbr
BuildRequires: python3-pip
2021-02-03 16:38:29 +08:00
BuildRequires: python3-setuptools
%description -n python3-bandit
A security linter from PyCQA
%package help
Summary: Development documents and examples for bandit
Provides: python3-bandit-doc
%description help
A security linter from PyCQA
%prep
2021-07-31 09:01:04 +00:00
%autosetup -n bandit-%{version}
2021-02-03 16:38:29 +08:00
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
2022-10-08 14:46:21 +08:00
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
2021-02-03 16:38:29 +08:00
fi
if [ -d usr/lib64 ]; then
2022-10-08 14:46:21 +08:00
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
2021-02-03 16:38:29 +08:00
fi
if [ -d usr/bin ]; then
2022-10-08 14:46:21 +08:00
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
2021-02-03 16:38:29 +08:00
fi
if [ -d usr/sbin ]; then
2022-10-08 14:46:21 +08:00
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
2021-02-03 16:38:29 +08:00
fi
touch doclist.lst
if [ -d usr/share/man ]; then
2022-10-08 14:46:21 +08:00
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
2021-02-03 16:38:29 +08:00
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-bandit -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
2023-04-11 10:41:19 +08:00
* Tue Apr 11 2023 wangkai <13474090681@163.com> - 1.7.5-1
- Upgrade package to version 1.7.5
2022-10-08 14:46:21 +08:00
* Sat Oct 08 2022 guozhengxin <guozhengxin@kylinos.cn> - 1.7.4-1
- Upgrade package to version 1.7.4
2021-07-31 09:01:04 +00:00
* Sat Jul 31 2021 huangtianhua <huangtianhua@huawei.com> - 1.7.0-2
- Adds pbr/pip as buildrequires
2021-02-03 16:38:29 +08:00
* Wed Feb 03 2021 liusheng <liusheng2048@gmail.com>
- Initial package