diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 07:54:48 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 07:54:48 +0000 |
commit | 57d8d233f333fef031280bc57928efbb132ed9f5 (patch) | |
tree | c27c1a90508b2cd5c0a82cc9204a67fe945b4c47 | |
parent | 6007344cb3c4844f12471a4053be6bbb43615ed2 (diff) |
automatic import of python-psycopg2
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-psycopg2.spec | 80 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 82 insertions, 0 deletions
@@ -0,0 +1 @@ +/psycopg2-2.9.6.tar.gz diff --git a/python-psycopg2.spec b/python-psycopg2.spec new file mode 100644 index 0000000..4582065 --- /dev/null +++ b/python-psycopg2.spec @@ -0,0 +1,80 @@ +%global _empty_manifest_terminate_build 0 +Name: python-psycopg2 +Version: 2.9.6 +Release: 1 +Summary: psycopg2 - Python-PostgreSQL Database Adapter +License: LGPL with exceptions +URL: https://psycopg.org/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/af/c4/5726cddb53fe52f0e839eb3da04322364f14493217ebd5818cc5e4c948a5/psycopg2-2.9.6.tar.gz + + +%description +Documentation is included in the ``doc`` directory and is `available online`__. +For any other resource (source code repository, bug tracker, mailing list) +please check the `project homepage`__. + +%package -n python3-psycopg2 +Summary: psycopg2 - Python-PostgreSQL Database Adapter +Provides: python-psycopg2 +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-psycopg2 +Documentation is included in the ``doc`` directory and is `available online`__. +For any other resource (source code repository, bug tracker, mailing list) +please check the `project homepage`__. + +%package help +Summary: Development documents and examples for psycopg2 +Provides: python3-psycopg2-doc +%description help +Documentation is included in the ``doc`` directory and is `available online`__. +For any other resource (source code repository, bug tracker, mailing list) +please check the `project homepage`__. + +%prep +%autosetup -n psycopg2-2.9.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-psycopg2 -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 2.9.6-1 +- Package Spec generated @@ -0,0 +1 @@ +c2d95c6ad2f2251861a91d9a24386a74 psycopg2-2.9.6.tar.gz |