diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-20 07:43:12 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-20 07:43:12 +0000 |
commit | 0a9df0e509dbe7b6fc64d500f8b047d016d23f8c (patch) | |
tree | f0e9e261edda2ceba825a5e7980f11794d5ad478 | |
parent | 6e0d0bd729a721e64359350f3f9c721bb4bd3a45 (diff) |
automatic import of python-polodbopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-polodb.spec | 74 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 76 insertions, 0 deletions
@@ -0,0 +1 @@ +/polodb-0.10.4.tar.gz diff --git a/python-polodb.spec b/python-polodb.spec new file mode 100644 index 0000000..4c9cbac --- /dev/null +++ b/python-polodb.spec @@ -0,0 +1,74 @@ +%global _empty_manifest_terminate_build 0 +Name: python-polodb +Version: 0.10.4 +Release: 1 +Summary: PoloDB for Python +License: MIT +URL: https://pypi.org/project/polodb/ +Source0: https://mirrors.aliyun.com/pypi/web/packages/f4/dc/4cfbd9155242c4a9e0ce3ca58d762faa1a001cebfce0d4a5b29d638674d6/polodb-0.10.4.tar.gz + + +%description + + +%package -n python3-polodb +Summary: PoloDB for Python +Provides: python-polodb +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-polodb + + +%package help +Summary: Development documents and examples for polodb +Provides: python3-polodb-doc +%description help + + +%prep +%autosetup -n polodb-0.10.4 + +%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-polodb -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.10.4-1 +- Package Spec generated @@ -0,0 +1 @@ +c9b4049b8c0ba84d0618de010b9e7893 polodb-0.10.4.tar.gz |