diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-05 10:53:08 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 10:53:08 +0000 |
| commit | 914fe6fd42b60dd5ba39f07add64a0f8aa82eb38 (patch) | |
| tree | 2bab9434929eec21c62168a2a53e9fe11a9ca1ae /python-pghstore.spec | |
| parent | 2ba1ddd36b8af05808f85b63c51753477e274e88 (diff) | |
automatic import of python-pghstoreopeneuler20.03
Diffstat (limited to 'python-pghstore.spec')
| -rw-r--r-- | python-pghstore.spec | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/python-pghstore.spec b/python-pghstore.spec new file mode 100644 index 0000000..84df472 --- /dev/null +++ b/python-pghstore.spec @@ -0,0 +1,112 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pghstore +Version: 2.0.2 +Release: 1 +Summary: PostgreSQL hstore formatter +License: MIT License +URL: https://github.com/heroku/pghstore +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/d7/f3/24cec5054b4c076203bbf9e844e64809e28626027d3e92761c81673ad74d/pghstore-2.0.2.tar.gz +BuildArch: noarch + +Requires: python3-six + +%description +This small module implements a formatter and a loader for hstore_, +one of PostgreSQL_ supplied modules, that stores simple key-value pairs. + >>> dumps({u'a': u'1'}) + '"a"=>"1"' + >>> loads('"a"=>"1"') + {u'a': u'1'} + >>> src = [('pgsql', 'mysql'), ('python', 'php'), ('gevent', 'nodejs')] + >>> loads(dumps(src), return_type=list) + [(u'pgsql', u'mysql'), (u'python', u'php'), (u'gevent', u'nodejs')] +You can easily install the package from PyPI_ by using ``pip`` or +``easy_install``:: + $ pip install pghstore +Visit the website to read its documentation: +https://pghstore.readthedocs.io/ + +%package -n python3-pghstore +Summary: PostgreSQL hstore formatter +Provides: python-pghstore +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pghstore +This small module implements a formatter and a loader for hstore_, +one of PostgreSQL_ supplied modules, that stores simple key-value pairs. + >>> dumps({u'a': u'1'}) + '"a"=>"1"' + >>> loads('"a"=>"1"') + {u'a': u'1'} + >>> src = [('pgsql', 'mysql'), ('python', 'php'), ('gevent', 'nodejs')] + >>> loads(dumps(src), return_type=list) + [(u'pgsql', u'mysql'), (u'python', u'php'), (u'gevent', u'nodejs')] +You can easily install the package from PyPI_ by using ``pip`` or +``easy_install``:: + $ pip install pghstore +Visit the website to read its documentation: +https://pghstore.readthedocs.io/ + +%package help +Summary: Development documents and examples for pghstore +Provides: python3-pghstore-doc +%description help +This small module implements a formatter and a loader for hstore_, +one of PostgreSQL_ supplied modules, that stores simple key-value pairs. + >>> dumps({u'a': u'1'}) + '"a"=>"1"' + >>> loads('"a"=>"1"') + {u'a': u'1'} + >>> src = [('pgsql', 'mysql'), ('python', 'php'), ('gevent', 'nodejs')] + >>> loads(dumps(src), return_type=list) + [(u'pgsql', u'mysql'), (u'python', u'php'), (u'gevent', u'nodejs')] +You can easily install the package from PyPI_ by using ``pip`` or +``easy_install``:: + $ pip install pghstore +Visit the website to read its documentation: +https://pghstore.readthedocs.io/ + +%prep +%autosetup -n pghstore-2.0.2 + +%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-pghstore -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 2.0.2-1 +- Package Spec generated |
