summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 10:49:08 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 10:49:08 +0000
commit46e5c48774bcd7b973e330188f4ea23695b216e9 (patch)
treee69c0bbdd875aa13aff3ea8c05e1676ef53f3600
parent6142ec81e140877787e152bd61065da9bd12b0a7 (diff)
automatic import of python-unqliteopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-unqlite.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..5b7b9c4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/unqlite-0.9.3.tar.gz
diff --git a/python-unqlite.spec b/python-unqlite.spec
new file mode 100644
index 0000000..7f4052d
--- /dev/null
+++ b/python-unqlite.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-unqlite
+Version: 0.9.3
+Release: 1
+Summary: Fast Python bindings for the UnQLite embedded NoSQL database.
+License: MIT
+URL: https://github.com/coleifer/unqlite-python
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/58/00/c6f82a9c24b53eb5aac5fa11eb210197609b8644421198eb404c202c9c43/unqlite-0.9.3.tar.gz
+BuildArch: noarch
+
+
+%description
+
+
+%package -n python3-unqlite
+Summary: Fast Python bindings for the UnQLite embedded NoSQL database.
+Provides: python-unqlite
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-unqlite
+
+
+%package help
+Summary: Development documents and examples for unqlite
+Provides: python3-unqlite-doc
+%description help
+
+
+%prep
+%autosetup -n unqlite-0.9.3
+
+%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-unqlite -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.9.3-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..63476b1
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+858128866002f272eb84bd4f4532f573 unqlite-0.9.3.tar.gz