diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-18 03:07:45 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-18 03:07:45 +0000 |
| commit | 4e127e24daae8adcd50004952cdfe320105b8316 (patch) | |
| tree | 8e444ae5f7b425f1d9208c8ed8c841ff24332cb3 | |
| parent | 0bc626660a2dfa0e1e92e18b42cbfc9aaf359263 (diff) | |
automatic import of python-kegstorage
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-kegstorage.spec | 90 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 92 insertions, 0 deletions
@@ -0,0 +1 @@ +/KegStorage-0.5.11.tar.gz diff --git a/python-kegstorage.spec b/python-kegstorage.spec new file mode 100644 index 0000000..af09ade --- /dev/null +++ b/python-kegstorage.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-KegStorage +Version: 0.5.11 +Release: 1 +Summary: A simple storage interface with multiple backends for use in a Keg app. +License: BSD +URL: https://github.com/level12/keg-storage +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/08/09/436aa3d95d7a1f57e84eb0cb12cd41e24a8d77b9f92e7e0c292d8c582ceb/KegStorage-0.5.11.tar.gz +BuildArch: noarch + +Requires: python3-arrow +Requires: python3-authlib +Requires: python3-humanize +Requires: python3-BlazeUtils +Requires: python3-boto3 +Requires: python3-azure-storage-blob +Requires: python3-kegelements +Requires: python3-paramiko +Requires: python3-azure-storage-blob +Requires: python3-boto3 +Requires: python3-flake8 +Requires: python3-flask-webtest +Requires: python3-freezegun +Requires: python3-paramiko +Requires: python3-pytest +Requires: python3-pytest-coverage +Requires: python3-tox +Requires: python3-wrapt + +%description + + +%package -n python3-KegStorage +Summary: A simple storage interface with multiple backends for use in a Keg app. +Provides: python-KegStorage +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-KegStorage + + +%package help +Summary: Development documents and examples for KegStorage +Provides: python3-KegStorage-doc +%description help + + +%prep +%autosetup -n KegStorage-0.5.11 + +%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-KegStorage -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 0.5.11-1 +- Package Spec generated @@ -0,0 +1 @@ +a1657f83f84bf6d700148c5e2885bac0 KegStorage-0.5.11.tar.gz |
