add python-moto support for openeuler

This commit is contained in:
FFrog 2021-08-10 22:02:33 +08:00
parent 77df342e34
commit 52d133835b
2 changed files with 76 additions and 0 deletions

BIN
moto-2.0.1.tar.gz Normal file

Binary file not shown.

76
python-moto.spec Normal file
View File

@ -0,0 +1,76 @@
%global _empty_manifest_terminate_build 0
Name: python-moto
Version: 2.0.1
Release: 1
Summary: A library that allows your python tests to easily mock out the boto library
License: Apache-2.0
URL: https://github.com/spulec/moto
Source0: https://files.pythonhosted.org/packages/c3/0d/215683a822d25ffe684c71050d583d77f29db45404ede87bc94f468d4fe7/moto-2.0.1.tar.gz
BuildArch: noarch
%description
Moto is a library that allows your tests to easily mock out AWS Services.
%package -n python3-moto
Summary: A library that allows your python tests to easily mock out the boto library
Provides: python-moto
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-boto3
Requires: python3-boto3
%description -n python3-moto
Moto is a library that allows your tests to easily mock out AWS Services.
%package help
Summary: A library that allows your python tests to easily mock out the boto library
Provides: python3-moto-doc
%description help
Moto is a library that allows your tests to easily mock out AWS Services.
%prep
%autosetup -n moto-2.0.1
%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-moto -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Mon Aug 09 2021 OpenStack_SIG <openstack@openeuler.org> - 2.0.1-1
- Package Spec generate