forked from pool/python-psycopg2
Accepting request 113770 from devel:languages:python
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/113770 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-psycopg2?expand=0&rev=8
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0c55b059d33f6b2cbb52f254320832c0ca30498ae06f4f4df2a2b38af989127e
|
|
||||||
size 648954
|
|
3
psycopg2-2.4.5.tar.gz
Normal file
3
psycopg2-2.4.5.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:48b702a7ca479e1bc2c1a7b81875a07d474298132605993e2cb979f5e08277d7
|
||||||
|
size 719343
|
@@ -1,3 +1,31 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 6 19:05:14 UTC 2012 - jfunk@funktronics.ca
|
||||||
|
|
||||||
|
- Update to 2.4.5:
|
||||||
|
* The close() methods on connections and cursors don't raise exceptions
|
||||||
|
if called on already closed objects.
|
||||||
|
* Fixed fetchmany() with no argument in cursor subclasses
|
||||||
|
(ticket #84).
|
||||||
|
* Use lo_creat() instead of lo_create() when possible for better
|
||||||
|
interaction with pgpool-II (ticket #88).
|
||||||
|
* Error and its subclasses are picklable, useful for multiprocessing
|
||||||
|
interaction (ticket #90).
|
||||||
|
* Better efficiency and formatting of timezone offset objects thanks
|
||||||
|
to Menno Smits (tickets #94, #95).
|
||||||
|
* Fixed 'rownumber' during iteration on cursor subclasses.
|
||||||
|
Regression introduced in 2.4.4 (ticket #100).
|
||||||
|
* Added support for 'inet' arrays.
|
||||||
|
* Fixed 'commit()' concurrency problem (ticket #103).
|
||||||
|
* Codebase cleaned up using the GCC Python plugin's static analysis
|
||||||
|
tool, which has revealed several unchecked return values, possible
|
||||||
|
NULL dereferences, reference counting problems. Many thanks to David
|
||||||
|
Malcolm for the useful tool and the assistance provided using it.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 27 09:27:25 UTC 2012 - saschpe@suse.de
|
||||||
|
|
||||||
|
- Can't hurt to suggest postgresql-server
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 12 21:10:27 UTC 2012 - saschpe@gmx.de
|
Mon Mar 12 21:10:27 UTC 2012 - saschpe@gmx.de
|
||||||
|
|
||||||
|
@@ -11,23 +11,24 @@
|
|||||||
# case the license is the MIT License). An "Open Source License" is a
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
#
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: python-psycopg2
|
Name: python-psycopg2
|
||||||
Version: 2.4.4
|
Version: 2.4.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: http://initd.org/psycopg/
|
|
||||||
Summary: Python-PostgreSQL Database Adapter
|
|
||||||
License: LGPL-3.0+ or ZPL-2.0
|
License: LGPL-3.0+ or ZPL-2.0
|
||||||
|
Summary: Python-PostgreSQL Database Adapter
|
||||||
|
Url: http://initd.org/psycopg/
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Source: http://pypi.python.org/packages/source/p/psycopg2/psycopg2-%{version}.tar.gz
|
Source: http://pypi.python.org/packages/source/p/psycopg2/psycopg2-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: python-devel
|
|
||||||
BuildRequires: postgresql-devel
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: postgresql-devel
|
||||||
|
BuildRequires: python-devel
|
||||||
|
Suggests: postgresql-server
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
||||||
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||||
%endif
|
%endif
|
||||||
@@ -61,7 +62,7 @@ rm -rf doc/src doc/html/.buildinfo # Remove junk
|
|||||||
%install
|
%install
|
||||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||||
rm -rf %{buildroot}%{python_sitearch}/psycopg2/tests # Don't package testsuite
|
rm -rf %{buildroot}%{python_sitearch}/psycopg2/tests # Don't package testsuite
|
||||||
%fdupes -s %{buildroot}/%_mandir # Create symlinks for man pages
|
%fdupes -s %{buildroot}/%{_mandir} # Create symlinks for man pages
|
||||||
%fdupes %{buildroot} # Create hardlinks for the rest
|
%fdupes %{buildroot} # Create hardlinks for the rest
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
Reference in New Issue
Block a user