summaryrefslogtreecommitdiff
path: root/python-sqlbuilder.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-15 08:58:27 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-15 08:58:27 +0000
commit651d40de857da36a49699b8a710b290c92a024e6 (patch)
tree45cf1968fbf7e47e6c14ad1c4a1fc04b30243f5e /python-sqlbuilder.spec
parent5a169469ea3ed482a70f4d2b19a214f4111b6440 (diff)
automatic import of python-sqlbuilder
Diffstat (limited to 'python-sqlbuilder.spec')
-rw-r--r--python-sqlbuilder.spec72
1 files changed, 72 insertions, 0 deletions
diff --git a/python-sqlbuilder.spec b/python-sqlbuilder.spec
new file mode 100644
index 0000000..26a97de
--- /dev/null
+++ b/python-sqlbuilder.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-sqlbuilder
+Version: 0.7.10.18
+Release: 1
+Summary: SmartSQL - lightweight sql builder.
+License: BSD License
+URL: https://bitbucket.org/emacsway/sqlbuilder
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/21/85/9fb7ddec662875f507a2fc57483546a6fcaf138027a1a8e0612664015e4d/sqlbuilder-0.7.10.18.tar.gz
+BuildArch: noarch
+
+
+%description
+
+
+%package -n python3-sqlbuilder
+Summary: SmartSQL - lightweight sql builder.
+Provides: python-sqlbuilder
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-sqlbuilder
+
+
+%package help
+Summary: Development documents and examples for sqlbuilder
+Provides: python3-sqlbuilder-doc
+%description help
+
+
+%prep
+%autosetup -n sqlbuilder-0.7.10.18
+
+%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-sqlbuilder -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 0.7.10.18-1
+- Package Spec generated