Hello community,

here is the log from the commit of package python-bsddb3 for openSUSE:Factory 
checked in at 2017-09-05 15:17:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-bsddb3 (Old)
 and      /work/SRC/openSUSE:Factory/.python-bsddb3.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-bsddb3"

Tue Sep  5 15:17:38 2017 rev:23 rq:520815 version:6.2.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-bsddb3/python-bsddb3.changes      
2014-07-29 16:48:28.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-bsddb3.new/python-bsddb3.changes 
2017-09-05 15:17:41.740359384 +0200
@@ -1,0 +2,40 @@
+Thu Aug 31 06:28:17 UTC 2017 - [email protected]
+
+- Update to 6.2.4:
+  * More complete fix for pkgsrc.
+- Update to 6.2.3:
+  * Update copyright notices.
+  * Solve a conflict between different installations of Berkeley DB
+    on some pkgsrc configurations.
+- Update to 6.2.2:
+  * Correctly detect Berkeley DB installations in SmartOS native zones.
+  * "Probably" (not tested) correctly detect Berkeley DB in pkgsrc systems.
+- Update to 6.2.1:
+  * Correctly detect Berkeley DB installations in modern 64 bits Debians.
+- Update to 6.2.0:
+  * Support Berkeley DB 6.2.x.
+  * Declare Python 3.5 support for PyPI.
+  * Drop support for Python 3.2. If you need
+    compatibility with that version, you can keep using
+    old releases of these bindings.
+  * Drop support for Berkeley DB 5.0, 5.2 and 6.0. If you need
+    compatibility with those versions, you can keep using old
+    releases of these bindings.
+- Update to 6.1.1:
+  * Compatibility with Python 3.5.
+  * Code cleanup after dropping Python 2.4/2.5 support.
+  * PGP key changed.
+  * Support for DB_FORCESYNCENV flag in "DB_ENV.close()".
+  * Support for DB_LOG_NOSYNC flag in "DB_ENV.log_set_config()".
+  * Fix tests under Windows. See https://bugs.python.org/issue22943 .
+  * Solve an incorrect parameter verification with the
+    "DB.compact()" method call.
+  * Solve a compilation warning when compiling the bindings for
+    Python 3.5 and Berkeley DB 4.8, 5.0 or 5.1.
+
+-------------------------------------------------------------------
+Thu Aug 24 13:33:30 UTC 2017 - [email protected]
+
+- singlespec auto-conversion
+
+-------------------------------------------------------------------
@@ -149,0 +190 @@
+

Old:
----
  bsddb3-6.1.0.tar.gz

New:
----
  bsddb3-6.2.4.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-bsddb3.spec ++++++
--- /var/tmp/diff_new_pack.N8nnr2/_old  2017-09-05 15:17:43.324136762 +0200
+++ /var/tmp/diff_new_pack.N8nnr2/_new  2017-09-05 15:17:43.328136200 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-bsddb3
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,23 +16,22 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-bsddb3
-Version:        6.1.0
+Version:        6.2.4
 Release:        0
-Url:            http://pypi.python.org/pypi/bsddb3
 Summary:        Python interface for Berkeley DB
 License:        BSD-3-Clause
 Group:          Development/Libraries/Python
-
-#Freecode-URL: http://freecode.com/projects/bsddb3
-#Hg-Clone:     http://hg.jcea.es/pybsddb/
-Source:         
http://pypi.python.org/packages/source/b/bsddb3/bsddb3-%{version}.tar.gz
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+Url:            http://pypi.python.org/pypi/bsddb3
+#Freecode-URL:  https://www.jcea.es/programacion/pybsddb.htm
+Source:         
https://files.pythonhosted.org/packages/source/b/bsddb3/bsddb3-%{version}.tar.gz
+BuildRequires:  %{python_module devel}
+BuildRequires:  python3-testsuite
 BuildRequires:  db-devel
-BuildRequires:  python-devel
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%endif
+BuildRequires:  python-rpm-macros
+
+%python_subpackages
 
 %description
 This module provides a nearly complete wrapping of the Oracle/Sleepycat C API
@@ -58,23 +57,23 @@
 sed -i "1d" Lib/bsddb/dbshelve.py # Fix non-executable bits
 
 %build
-CFLAGS="%{optflags} -fno-strict-aliasing" python setup.py build
+export CFLAGS="%{optflags} -fno-strict-aliasing"
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%python_install
 rm -rf %{buildroot}%{python_sitearch}/bsddb3/tests # Remove wrongly packaged 
tests
 
-# Disabled testsuite, takes quite some time to finish:
-#%%check
-#python test.py
+%check
+%python_exec test.py
 
-%files
+%files %{python_files}
 %defattr(-,root,root,-)
-%doc ChangeLog licenses.txt LICENSE.txt README.txt TODO.txt docs/*.rst 
docs/*.png docs/html/*
+%doc ChangeLog licenses.txt LICENSE.txt README.txt TODO.txt docs/*
 %{python_sitearch}/*
 
-%files devel
+%files %{python_files devel}
 %defattr(-,root,root,-)
-%{_includedir}/python*/bsddb3
+%{_includedir}/python%{python_version}*/bsddb3
 
 %changelog

++++++ bsddb3-6.1.0.tar.gz -> bsddb3-6.2.4.tar.gz ++++++
++++ 11563 lines of diff (skipped)


Reply via email to