python-consul/python-consul.spec
huangtianhua f9ea36a1d4 Init python-consul package
The package python-consul is required by
OpenStack-W, init it.
2021-07-31 07:28:45 +00:00

94 lines
2.6 KiB
RPMSpec

%global _empty_manifest_terminate_build 0
Name: python-consul
Version: 1.1.0
Release: 1
Summary: Python client for Consul (http://www.consul.io/)
License: MIT
URL: https://github.com/cablehead/python-consul
Source0: https://files.pythonhosted.org/packages/7f/06/c12ff73cb1059c453603ba5378521e079c3f0ab0f0660c410627daca64b7/python-consul-1.1.0.tar.gz
BuildArch: noarch
%description
Python client for Consul (http://www.consul.io/).
%package -n python3-consul
Summary: Python client for Consul (http://www.consul.io/)
Provides: python-consul
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
# General requires
BuildRequires: python3-requests
BuildRequires: python3-six
#BuildRequires: python3-aiohttp
BuildRequires: python3-tornado
BuildRequires: python3-twisted
#BuildRequires: python3-treq
# General requires
Requires: python3-requests
Requires: python3-six
#Requires: python3-aiohttp
Requires: python3-tornado
Requires: python3-twisted
#Requires: python3-treq
%description -n python3-consul
Python client for Consul (http://www.consul.io/).
%package help
Summary: Python client for Consul (http://www.consul.io/)
Provides: python3-consul-doc
%description help
Python client for Consul (http://www.consul.io/).
%prep
%autosetup -n python-consul-%{version}
%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 .
#no test files of tar in pypi
#%check
#pytest
%files -n python3-consul -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Tue Jul 27 2021 OpenStack_SIG <openstack@openeuler.org> - 1.1.0-1
- Package Spec generate