!1 Init the first release

From: @xiyuanwang
Reviewed-by: @huangtianhua
Signed-off-by: @huangtianhua
This commit is contained in:
openeuler-ci-bot 2021-02-23 20:02:53 +08:00 committed by Gitee
commit 6744227822
2 changed files with 79 additions and 0 deletions

BIN
etcd3gw-0.2.6.tar.gz Normal file

Binary file not shown.

79
python-etcd3gw.spec Normal file
View File

@ -0,0 +1,79 @@
%global _empty_manifest_terminate_build 0
Name: python-etcd3gw
Version: 0.2.6
Release: 1
Summary: A python client for etcd3 grpc-gateway v3 API
License: Apache-2.0
URL: https://github.com/dims/etcd3-gateway
Source0: https://files.pythonhosted.org/packages/3b/1a/155c139adcf50c382f7ff8eb5a00b5aa725ee8ea438ec2b8109dfe67be9b/etcd3gw-0.2.6.tar.gz
BuildArch: noarch
Requires: python3-pbr
Requires: python3-urllib3
Requires: python3-requests
Requires: python3-six
Requires: python3-futurist
%description
# etcd3 gateway Python Client
A python client for etcd3 grpc-gateway v3 API
%package -n python3-etcd3gw
Summary: A python client for etcd3 grpc-gateway v3 API
Provides: python-etcd3gw
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%description -n python3-etcd3gw
# etcd3 gateway Python Client
A python client for etcd3 grpc-gateway v3 API
%package help
Summary: Development documents and examples for etcd3gw
Provides: python3-etcd3gw-doc
%description help
# etcd3 gateway Python Client
A python client for etcd3 grpc-gateway v3 API
%prep
%autosetup -n etcd3gw-0.2.6
%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-etcd3gw -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Tue Feb 23 2021 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated