commit python-CouchDB for openSUSE:Factory

2017-01-25 Thread root
Hello community,

here is the log from the commit of package python-CouchDB for openSUSE:Factory 
checked in at 2017-01-25 23:32:22

Comparing /work/SRC/openSUSE:Factory/python-CouchDB (Old)
 and  /work/SRC/openSUSE:Factory/.python-CouchDB.new (New)


Package is "python-CouchDB"

Changes:

--- /work/SRC/openSUSE:Factory/python-CouchDB/python-CouchDB.changes
2015-05-05 00:55:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-CouchDB.new/python-CouchDB.changes   
2017-01-25 23:32:23.292897368 +0100
@@ -1,0 +2,5 @@
+Mon Jan 23 04:42:42 UTC 2017 - bwiedem...@suse.com
+
+- Drop useless environment.pickle and make build-compare happy
+
+---



Other differences:
--
++ python-CouchDB.spec ++
--- /var/tmp/diff_new_pack.afRV4k/_old  2017-01-25 23:32:23.636845534 +0100
+++ /var/tmp/diff_new_pack.afRV4k/_new  2017-01-25 23:32:23.640844931 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-CouchDB
 #
-# Copyright (c) 2015 SUSE LINUX 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
@@ -58,6 +58,7 @@
 %build
 python setup.py build
 mkdir doc/build && make doc && rm -rf doc/build/html/.buildinfo # Build HTML 
documentation
+rm -f doc/build/doctrees/environment.pickle
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}




commit python-CouchDB for openSUSE:Factory

2015-05-04 Thread h_root
Hello community,

here is the log from the commit of package python-CouchDB for openSUSE:Factory 
checked in at 2015-05-05 00:55:50

Comparing /work/SRC/openSUSE:Factory/python-CouchDB (Old)
 and  /work/SRC/openSUSE:Factory/.python-CouchDB.new (New)


Package is python-CouchDB

Changes:

--- /work/SRC/openSUSE:Factory/python-CouchDB/python-CouchDB.changes
2013-09-27 18:00:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-CouchDB.new/python-CouchDB.changes   
2015-05-05 00:55:51.0 +0200
@@ -1,0 +2,15 @@
+Sat May  2 16:15:07 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 1.0:
+  * Many smaller Python 3 compatibility issues have been fixed
+  * Improve handling of binary attachments in the couchdb-dump tool
+  * Added testing via tox and support for Travis CI
+- additional changes from version 0.10:
+  * Now compatible with Python 2.7, 3.3 and 3.4
+  * Added batch processing for the couchdb-dump tool
+  * A very basic API to access the _security object
+  * A way to access the update_seq value on view results
+- update project URL
+- change documentation files from txt to rst, to follow upstream
+
+---

Old:

  CouchDB-0.9.tar.gz

New:

  CouchDB-1.0.tar.gz



Other differences:
--
++ python-CouchDB.spec ++
--- /var/tmp/diff_new_pack.66WHoH/_old  2015-05-05 00:55:52.0 +0200
+++ /var/tmp/diff_new_pack.66WHoH/_new  2015-05-05 00:55:52.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-CouchDB
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -17,9 +17,9 @@
 
 
 Name:   python-CouchDB
-Version:0.9
+Version:1.0
 Release:0
-Url:http://code.google.com/p/couchdb-python/
+Url:https://github.com/djc/couchdb-python/
 Summary:A Python library for working with CouchDB
 License:BSD-3-Clause
 Group:  Development/Languages/Python
@@ -64,7 +64,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc ChangeLog.txt COPYING README.txt
+%doc ChangeLog.rst COPYING README.rst
 %{_bindir}/couch*
 %{python_sitelib}/*
 

++ CouchDB-0.9.tar.gz - CouchDB-1.0.tar.gz ++
 3378 lines of diff (skipped)




commit python-CouchDB for openSUSE:Factory

2013-09-27 Thread h_root
Hello community,

here is the log from the commit of package python-CouchDB for openSUSE:Factory 
checked in at 2013-09-27 18:00:25

Comparing /work/SRC/openSUSE:Factory/python-CouchDB (Old)
 and  /work/SRC/openSUSE:Factory/.python-CouchDB.new (New)


Package is python-CouchDB

Changes:

--- /work/SRC/openSUSE:Factory/python-CouchDB/python-CouchDB.changes
2012-04-17 07:48:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-CouchDB.new/python-CouchDB.changes   
2013-09-27 18:00:26.0 +0200
@@ -1,0 +2,36 @@
+Wed Sep 25 14:21:10 UTC 2013 - p.drou...@gmail.com
+
+- Update to version 0.9
+  * Don't validate database names on the client side. This means some methods
+dealing with database names can return different exceptions than before.
+  * Use HTTP socket more efficiently to avoid the Nagle algorithm, greatly
+improving performace. Note: add the `{nodelay, true}` option to the CouchDB
+server's httpd/socket_options config.
+  * Add support for show and list functions.
+  * Add support for calling update handlers.
+  * Add support for purging documents.
+  * Add `iterview()` for more efficient iteration over large view results.
+  * Add view cleanup API.
+  * Enhance `Server.stats()` to optionally retrieve a single set of statistics.
+  * Implement `Session` timeouts.
+  * Add `error` property to `Row` objects.
+  * Add `default=None` arg to `mapping.Document.get()` to make it a little more
+dict-like.
+  * Enhance `Database.info()` so it can also be used to get info for a design
+doc.
+  * Add view definition options, e.g. collation.
+  * Fix support for authentication in dump/load tools.
+  * Support non-ASCII document IDs in serialization format.
+  * Protect `ResponseBody` from being iterated/closed multiple times.
+  * Rename iteration method for ResponseBody chunks to `iterchunks()` to
+prevent usage for non-chunked responses.
+  * JSON encoding exceptions are no longer masked, resulting in better error
+messages.
+  * `cjson` support is now deprecated.
+  * Fix `Row.value` and `Row.__repr__` to never raise exceptions.
+  * Fix Python view server's reduce to handle empty map results list.
+  * Use locale-independent timestamp identifiers for HTTP cache.
+  * Don't require setuptools/distribute to install the core package. (Still
+needed to install the console scripts.)
+
+---

Old:

  CouchDB-0.8.tar.gz

New:

  CouchDB-0.9.tar.gz



Other differences:
--
++ python-CouchDB.spec ++
--- /var/tmp/diff_new_pack.26yUt9/_old  2013-09-27 18:00:27.0 +0200
+++ /var/tmp/diff_new_pack.26yUt9/_new  2013-09-27 18:00:27.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-CouchDB
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-CouchDB
-Version:0.8
+Version:0.9
 Release:0
 Url:http://code.google.com/p/couchdb-python/
 Summary:A Python library for working with CouchDB
@@ -29,8 +29,7 @@
 BuildRequires:  python-devel
 Suggests:   couchdb
 Provides:   python-couchdb = %{version}
-#TODO: Change back to '' after next version update:
-Obsoletes:  python-couchdb = %{version}
+Obsoletes:  python-couchdb  %{version}
 %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())}
 %else

++ CouchDB-0.8.tar.gz - CouchDB-0.9.tar.gz ++
 2265 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-CouchDB for openSUSE:Factory

2012-04-16 Thread h_root
Hello community,

here is the log from the commit of package python-CouchDB for openSUSE:Factory 
checked in at 2012-04-17 07:48:26

Comparing /work/SRC/openSUSE:Factory/python-CouchDB (Old)
 and  /work/SRC/openSUSE:Factory/.python-CouchDB.new (New)


Package is python-CouchDB, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-CouchDB/python-CouchDB.changes
2011-09-26 10:11:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-CouchDB.new/python-CouchDB.changes   
2012-04-17 07:48:27.0 +0200
@@ -1,0 +2,7 @@
+Tue Mar 27 09:21:51 UTC 2012 - sasc...@suse.de
+
+- Simplify macro usage
+- Fix doc package requires on base package
+- Only suggest couchdb, it may reside on a different machine
+
+---



Other differences:
--
++ python-CouchDB.spec ++
--- /var/tmp/diff_new_pack.bCseNV/_old  2012-04-17 07:48:28.0 +0200
+++ /var/tmp/diff_new_pack.bCseNV/_new  2012-04-17 07:48:28.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package python-couchdb
+# spec file for package python-CouchDB
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products 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,7 +16,6 @@
 #
 
 
-
 Name:   python-CouchDB
 Version:0.8
 Release:0
@@ -26,20 +25,17 @@
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/C/CouchDB/CouchDB-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{py_requires}
-BuildRequires:  python-devel
 BuildRequires:  python-Sphinx
-Requires:   couchdb
-%if 0%{?suse_version}
-%py_requires
-%if 0%{?suse_version}  1110
-BuildArch:  noarch
-%endif
-%endif
+BuildRequires:  python-devel
+Suggests:   couchdb
 Provides:   python-couchdb = %{version}
 #TODO: Change back to '' after next version update:
 Obsoletes:  python-couchdb = %{version}
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
+%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())}
+%else
+BuildArch:  noarch
+%endif
 
 %description
 This is a Python library for the CouchDB document-oriented database. It
@@ -48,7 +44,7 @@
 %package doc
 Summary:The  API reference files for CouchDB 
 Group:  Development/Libraries/Python
-Requires:   %{name}
+Requires:   %{name} = %{version}
 
 %description doc
 This is a Python library for the CouchDB document-oriented database. It

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-CouchDB for openSUSE:Factory

2011-09-26 Thread h_root

Hello community,

here is the log from the commit of package python-CouchDB for openSUSE:Factory
checked in at Mon Sep 26 10:11:37 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/python-CouchDB/python-CouchDB.changes  
2011-09-20 21:36:37.0 +0200
@@ -0,0 +1,62 @@
+---
+Tue Sep 20 19:36:35 UTC 2011 - cfarr...@suse.com
+
+- license update: BSD-3-Clause
+  SPDX syntax (http://www.spdx.org/licenses)
+
+---
+Tue Sep 20 13:28:55 UTC 2011 - sasc...@suse.de
+
+- Renamed to python-CouchDB
+- Require couchdb at runtime
+- Drop python-couchdb-shebang.patch and fix it in the spec file directly
+
+---
+Mon Oct 11 09:49:24 UTC 2010 - co...@novell.com
+
+- update to 0.8
+
+ * The couchdb-replicate script has changed from being a poor man's version of
+   continuous replication (predating it) to being a simple script to help
+   kick off replication jobs across databases and servers.
+ * Reinclude all http exception types in the 'couchdb' package's scope.
+ * Request retries schedule and frequency are now customizable.
+ * Allow more kinds of request errors to trigger a retry.
+ * Breaking change: the dependency on `httplib2` has been replaced by
+   an internal `couchdb.http` library. This changes the API in several places.
+   Most importantly, `resource.request()` now returns a 3-member tuple. 
+ * Breaking change: `couchdb.schema` has been renamed to `couchdb.mapping`.
+   This better reflects what is actually provided. Classes inside
+   `couchdb.mapping` have been similarly renamed (e.g. `Schema` - `Mapping`).
+ * Breaking change: `couchdb.schema.View` has been renamed to
+   `couchdb.mapping.ViewField`, in order to help distinguish it from
+   `couchdb.client.View`.
+ * Breaking change: the `client.Server` properties `version` and `config`
+   have become methods in order to improve API consistency.
+
+---
+Wed Apr 14 10:04:15 UTC 2010 - jf...@funktronics.ca
+
+- Remove version in dependency for doc subpackage
+- Remove buildroot removal in install
+
+---
+Mon Mar 29 11:29:42 UTC 2010 - jf...@funktronics.ca
+
+- Clean up
+- Rename devel subpackage to doc, since it only contains docs
+- Build as noarch
+- Remove unneeded dependency on couchdb server
+
+---
+Tue Mar  9 13:01:27 UTC 2010 - a...@suse.de
+
+- Fix Group.
+- Fix building on x86-64.
+
+---
+Mon Feb 15 22:01:49 UTC  2010 - awa...@opensuse.org
+
+- Initial build for openSUSE 0.6.1
+
+

calling whatdependson for head-i586


New:

  CouchDB-0.8.tar.gz
  python-CouchDB.changes
  python-CouchDB.spec



Other differences:
--
++ python-CouchDB.spec ++
#
# spec file for package python-couchdb
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   python-CouchDB
Version:0.8
Release:0
Url:http://code.google.com/p/couchdb-python/
Summary:A Python library for working with CouchDB
License:BSD-3-Clause
Group:  Development/Languages/Python
Source: 
http://pypi.python.org/packages/source/C/CouchDB/CouchDB-%{version}.tar.gz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{py_requires}
BuildRequires:  python-devel
BuildRequires:  python-Sphinx
Requires:   couchdb
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version}  1110
BuildArch:  noarch
%endif
%endif
Provides:   python-couchdb = %{version}
#TODO: Change back to '' after next version update:
Obsoletes:  python-couchdb = %{version}
%{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}

%description
This is a Python library for the CouchDB document-oriented database. It
provides a convenient high level interface for the CouchDB server.

%package doc
Summary:The  API reference files for