python-flask-restx/python-flask-restx.spec
2022-12-15 16:18:36 +08:00

87 lines
2.6 KiB
RPMSpec

%global _empty_manifest_terminate_build 0
Name: python-flask-restx
Version: 1.0.3
Release: 1
Summary: Fully featured framework for fast, easy and documented API development with Flask
License: BSD-3-Clause
URL: https://github.com/python-restx/flask-restx
Source0: https://files.pythonhosted.org/packages/42/ed/b8eb0b2f5e4f6b00da242f29ff0aac5f9e4b980b58d3b5205a819e3ad853/flask-restx-1.0.3.tar.gz
BuildArch: noarch
Requires: python3-aniso8601
Requires: python3-jsonschem
Requires: python3-Flask
Requires: python3-werkzeu
Requires: python3-pyt
Requires: python3-six
%description
Fully featured framework for fast, easy and documented API development with Flask.
%package -n python3-flask-restx
Summary: Fully featured framework for fast, easy and documented API development with Flask
Provides: python-flask-restx = %{version}-%{release}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%description -n python3-flask-restx
Fully featured framework for fast, easy and documented API development with Flask.
%package help
Summary: Development documents and examples for flask-restx
Provides: python3-flask-restx-doc
%description help
Development documents and examples for flask-restx
%prep
%autosetup -n flask-restx-%{version} -p1
%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
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-flask-restx -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Thu Dec 15 2022 jiangxinyu <jiangxinyu@kylinos.cn> - 1.0.3-1
- Update package to version 1.0.3
* Wed Jun 29 2022 SimpleUpdate Robot <tc@openeuler.org> - 0.5.1-1
- Upgrade to version 0.5.1
* Sat Oct 9 2021 liwu <liwu13@huawei.com> - 0.2.0-2
* Fix CVE-2021-32838
* Mon Jun 22 2020 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated