diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-08 14:10:23 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-08 14:10:23 +0000 |
commit | 460ae89ee2cbdafdc41bd8dff7ffe2e38ead78e5 (patch) | |
tree | d8b21a11851b2df9e58b32b6dedc25260b7d4d86 | |
parent | 4a022c7b3ac7c7fc378396ec9f3e4afddd9aa1ee (diff) |
automatic import of python-testgresopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-testgres.spec | 24 | ||||
-rw-r--r-- | sources | 2 |
3 files changed, 14 insertions, 13 deletions
@@ -1 +1,2 @@ /testgres-1.8.7.tar.gz +/testgres-1.8.8.tar.gz diff --git a/python-testgres.spec b/python-testgres.spec index c755f2f..21aa261 100644 --- a/python-testgres.spec +++ b/python-testgres.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-testgres -Version: 1.8.7 +Version: 1.8.8 Release: 1 Summary: Testing utility for PostgreSQL and its extensions License: PostgreSQL URL: https://github.com/postgrespro/testgres -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/a5/1c/e2b266ccba314e31650e2fbc789abc5f416502d7a9604163864846c01735/testgres-1.8.7.tar.gz +Source0: https://mirrors.aliyun.com/pypi/web/packages/df/53/76d71d65c467ae6acbee7098190ca7f598946a9865d9ed0addf9c55d4014/testgres-1.8.8.tar.gz BuildArch: noarch Requires: python3-packaging @@ -178,7 +178,7 @@ ext_conf = "shared_preload_libraries = 'postgres_fdw'" with testgres.get_new_node().init() as master: # ... do something ... - + # reset main config file master.default_conf(fsync=True, allow_streaming=True) @@ -371,7 +371,7 @@ ext_conf = "shared_preload_libraries = 'postgres_fdw'" with testgres.get_new_node().init() as master: # ... do something ... - + # reset main config file master.default_conf(fsync=True, allow_streaming=True) @@ -561,7 +561,7 @@ ext_conf = "shared_preload_libraries = 'postgres_fdw'" with testgres.get_new_node().init() as master: # ... do something ... - + # reset main config file master.default_conf(fsync=True, allow_streaming=True) @@ -585,7 +585,7 @@ the configuration file, which means that they should be called before `append_co %prep -%autosetup -n testgres-1.8.7 +%autosetup -n testgres-1.8.8 %build %py3_build @@ -599,20 +599,20 @@ 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 + 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 + 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 + 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 + 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 + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . @@ -625,5 +625,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Tue May 30 2023 Python_Bot <Python_Bot@openeuler.org> - 1.8.7-1 +* Thu Jun 08 2023 Python_Bot <Python_Bot@openeuler.org> - 1.8.8-1 - Package Spec generated @@ -1 +1 @@ -3bcd16bfa514502da76993a79c795cb4 testgres-1.8.7.tar.gz +d1cd695e0ca77ef4d53275538692fdbd testgres-1.8.8.tar.gz |