commit python-happybase for openSUSE:Factory

2020-04-01 Thread root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2020-04-01 19:08:57

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


Package is "python-happybase"

Wed Apr  1 19:08:57 2020 rev:15 rq:790163 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2019-09-27 14:45:57.253153911 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-happybase.new.3248/python-happybase.changes  
2020-04-01 19:11:23.383343537 +0200
@@ -1,0 +2,6 @@
+Tue Mar 31 12:03:26 UTC 2020 - Paolo Stivanin 
+
+- Switch from nose to pytest
+- Add use_pytest.patch
+
+---

New:

  use_pytest.patch



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.lVvAXC/_old  2020-04-01 19:11:27.667345464 +0200
+++ /var/tmp/diff_new_pack.lVvAXC/_new  2020-04-01 19:11:27.671345466 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-happybase
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,9 @@
 Group:  Development/Languages/Python
 URL:https://github.com/wbolster/happybase
 Source: https://github.com/wbolster/happybase/archive/%{version}.tar.gz
-BuildRequires:  %{python_module nose}
+# https://github.com/python-happybase/happybase/pull/238
+Patch0: use_pytest.patch
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module thriftpy2}
 BuildRequires:  fdupes
@@ -51,6 +53,7 @@
 
 %prep
 %setup -q -n happybase-%{version}
+%patch0 -p1
 
 %build
 %python_build
@@ -63,7 +66,7 @@
 
 %check
 # the api tests need running thrift server
-%python_expand nosetests-%{$python_bin_suffix} -v tests/test_util.py
+%pytest tests/test_util.py
 
 %files %{python_files}
 %license LICENSE.rst

++ use_pytest.patch ++
Only in happybase: .idea
diff -ru happybase-orig/Makefile happybase/Makefile
--- happybase-orig/Makefile 2020-03-31 14:01:25.374555626 +0200
+++ happybase/Makefile  2020-03-31 14:00:45.834479691 +0200
@@ -10,7 +10,7 @@
 
 test:
-find coverage/ -mindepth 1 -delete
-   python $$(which nosetests) $${TESTS}
+   pytest $${TESTS}
 
 clean:
find . -name '*.py[co]' -delete
diff -ru happybase-orig/setup.cfg happybase/setup.cfg
--- happybase-orig/setup.cfg2020-03-31 14:01:25.374555626 +0200
+++ happybase/setup.cfg 2020-03-31 14:00:15.882422171 +0200
@@ -1,16 +1,6 @@
-[nosetests]
-stop = 1
-verbosity = 2
-with-coverage = 1
-cover-erase = 1
-cover-package=happybase.connection,happybase.table,happybase.batch,happybase.pool,happybase.util,tests
-cover-tests = 1
-cover-html = 1
-cover-html-dir = coverage/
-
 [build_sphinx]
 source-dir = doc/
 build-dir = doc/build/
 
 [wheel]
-universal = 1
\ No newline at end of file
+universal = 1
diff -ru happybase-orig/tests/test_api.py happybase/tests/test_api.py
--- happybase-orig/tests/test_api.py2020-03-31 14:01:25.374555626 +0200
+++ happybase/tests/test_api.py 2020-03-31 14:05:45.535055247 +0200
@@ -10,19 +10,6 @@
 import six
 from six.moves import range
 
-from nose.tools import (
-assert_dict_equal,
-assert_equal,
-assert_false,
-assert_in,
-assert_is_instance,
-assert_is_not_none,
-assert_list_equal,
-assert_not_in,
-assert_raises,
-assert_true,
-)
-
 from happybase import Connection, ConnectionPool, NoConnectionsAvailable
 
 HAPPYBASE_HOST = os.environ.get('HAPPYBASE_HOST')
@@ -60,7 +47,7 @@
 global connection, table
 connection = Connection(**connection_kwargs)
 
-assert_is_not_none(connection)
+assert connection is not None
 
 maybe_delete_table()
 cfs = {
@@ -71,7 +58,7 @@
 connection.create_table(TEST_TABLE_NAME, families=cfs)
 
 table = connection.table(TEST_TABLE_NAME)
-assert_is_not_none(table)
+assert table is not None
 
 
 def teardown_module():
@@ -92,11 +79,11 @@
 
 
 def test_enabling():
-assert_true(connection.is_table_enabled(TEST_TABLE_NAME))
+assert connection.is_table_enabled(TEST_TABLE_NAME)
 connection.disable_table(TEST_TABLE_NAME)
-assert_false(connection.is_table_enabled(TEST_TABLE_NAME))
+assert not connection.is_table_enabled(TEST_TABLE_NAME)
 connection.enable_table(TEST_TABLE_NAME)
-assert_true(connection.is_table_enabled(TEST_TABLE_NAME))
+assert connection.is_table_enabled(TEST_TABLE_NAME)
 
 
 def test_compaction():
@@ -105

commit python-happybase for openSUSE:Factory

2019-09-27 Thread root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2019-09-27 14:45:54

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


Package is "python-happybase"

Fri Sep 27 14:45:54 2019 rev:14 rq:730343 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2018-12-24 11:38:00.465632305 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-happybase.new.2352/python-happybase.changes  
2019-09-27 14:45:57.253153911 +0200
@@ -1,0 +2,6 @@
+Thu Sep 12 09:02:50 UTC 2019 - Tomáš Chvátal 
+
+- Update to 1.2.0:
+  * Switch from thriftpy to its successor thriftpy2, which supports Python 3.7.
+
+---

Old:

  happybase-1.1.0.tar.gz

New:

  1.2.0.tar.gz



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.x2z9ev/_old  2019-09-27 14:45:57.813152454 +0200
+++ /var/tmp/diff_new_pack.x2z9ev/_new  2019-09-27 14:45:57.821152434 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-happybase
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -18,19 +18,21 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-happybase
-Version:1.1.0
+Version:1.2.0
 Release:0
 Summary:A Python library to interact with Apache HBase
 License:MIT
 Group:  Development/Languages/Python
 URL:https://github.com/wbolster/happybase
-Source: 
https://files.pythonhosted.org/packages/source/h/happybase/happybase-%{version}.tar.gz
+Source: https://github.com/wbolster/happybase/archive/%{version}.tar.gz
+BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module setuptools}
-BuildRequires:  %{python_module thriftpy}
+BuildRequires:  %{python_module thriftpy2}
+BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildRequires:  python3-Sphinx
 Requires:   python-six
-Requires:   python-thriftpy >= 0.3.8
+Requires:   python-thriftpy2 >= 0.4
 BuildArch:  noarch
 %python_subpackages
 
@@ -56,10 +58,12 @@
 
 %install
 %python_install
-rm docs/build/html/.doctrees/environment.pickle
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
+rm -r docs/build/html/.[a-z]*
 
 %check
-%python_exec setup.py test
+# the api tests need running thrift server
+%python_expand nosetests-%{$python_bin_suffix} -v tests/test_util.py
 
 %files %{python_files}
 %license LICENSE.rst

++ happybase-1.1.0.tar.gz -> 1.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/happybase-1.1.0/.gitignore 
new/happybase-1.2.0/.gitignore
--- old/happybase-1.1.0/.gitignore  1970-01-01 01:00:00.0 +0100
+++ new/happybase-1.2.0/.gitignore  2019-05-14 16:16:06.0 +0200
@@ -0,0 +1,8 @@
+*.py[co]
+*.egg-info/
+.coverage
+.tox/
+build/
+coverage/
+dist/
+doc/build/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/happybase-1.1.0/NEWS.rst new/happybase-1.2.0/NEWS.rst
--- old/happybase-1.1.0/NEWS.rst2017-04-03 23:08:55.0 +0200
+++ new/happybase-1.2.0/NEWS.rst2019-05-14 16:16:06.0 +0200
@@ -4,6 +4,17 @@
 .. py:currentmodule:: happybase
 
 
+HappyBase 1.2.0
+---
+
+Release date: 2019-05-14
+
+* Switch from ``thriftpy`` to its successor ``thriftpy2``,
+  which supports Python 3.7.
+  (`issue #221 `_,
+  `pr 222 `_,
+
+
 HappyBase 1.1.0
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/happybase-1.1.0/PKG-INFO new/happybase-1.2.0/PKG-INFO
--- old/happybase-1.1.0/PKG-INFO2017-04-03 23:12:57.0 +0200
+++ new/happybase-1.2.0/PKG-INFO1970-01-01 01:00:00.0 +0100
@@ -1,38 +0,0 @@
-Metadata-Version: 1.1
-Name: happybase
-Version: 1.1.0
-Summary: A developer-friendly Python library to interact with Apache HBase
-Home-page: https://github.com/wbolster/happybase
-Author: Wouter Bolsterlee
-Author-email: u...@xs4all.nl
-License: MIT
-Description: HappyBase
-=
-
-**HappyBase** is a developer-friendly Python_ library to interact with 
Apache
-HBase_.
-
-* `Documentation `_

commit python-happybase for openSUSE:Factory

2018-12-24 Thread root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2018-12-24 11:37:59

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


Package is "python-happybase"

Mon Dec 24 11:37:59 2018 rev:13 rq:659410 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2017-09-20 17:07:58.409399786 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-happybase.new.28833/python-happybase.changes 
2018-12-24 11:38:00.465632305 +0100
@@ -1,0 +2,5 @@
+Tue Dec  4 12:48:49 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.dq1QY5/_old  2018-12-24 11:38:01.297631566 +0100
+++ /var/tmp/diff_new_pack.dq1QY5/_new  2018-12-24 11:38:01.301631563 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-happybase
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -12,7 +12,7 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -23,18 +23,15 @@
 Summary:A Python library to interact with Apache HBase
 License:MIT
 Group:  Development/Languages/Python
-Url:https://github.com/wbolster/happybase
+URL:https://github.com/wbolster/happybase
 Source: 
https://files.pythonhosted.org/packages/source/h/happybase/happybase-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module thriftpy}
 BuildRequires:  python-rpm-macros
 BuildRequires:  python3-Sphinx
 Requires:   python-six
 Requires:   python-thriftpy >= 0.3.8
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -65,11 +62,12 @@
 %python_exec setup.py test
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc LICENSE.rst NEWS.rst README.rst TODO.rst
+%license LICENSE.rst
+%doc NEWS.rst README.rst TODO.rst
 %{python_sitelib}/*
 
 %files -n python-happybase-doc
-%doc LICENSE.rst docs/build/html
+%license LICENSE.rst
+%doc docs/build/html
 
 %changelog




commit python-happybase for openSUSE:Factory

2017-09-20 Thread root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2017-09-20 17:07:57

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


Package is "python-happybase"

Wed Sep 20 17:07:57 2017 rev:12 rq:526920 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2017-09-05 15:16:11.317069623 +0200
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2017-09-20 17:07:58.409399786 +0200
@@ -1,0 +2,5 @@
+Sun Sep 17 19:54:10 UTC 2017 - bwiedem...@suse.com
+
+- Drop environment.pickle from doc to make build reproducible
+
+---



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.xMHh7G/_old  2017-09-20 17:08:00.121158821 +0200
+++ /var/tmp/diff_new_pack.xMHh7G/_new  2017-09-20 17:08:00.121158821 +0200
@@ -59,6 +59,7 @@
 
 %install
 %python_install
+rm docs/build/html/.doctrees/environment.pickle
 
 %check
 %python_exec setup.py test




commit python-happybase for openSUSE:Factory

2017-09-05 Thread root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2017-09-05 15:16:11

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


Package is "python-happybase"

Tue Sep  5 15:16:11 2017 rev:11 rq:520555 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2017-08-29 11:44:19.826210790 +0200
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2017-09-05 15:16:11.317069623 +0200
@@ -1,0 +2,5 @@
+Sun Aug 27 20:26:08 UTC 2017 - jeng...@inai.de
+
+- Ensure neutrality of descriptions.
+
+---



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.ElsuKn/_old  2017-09-05 15:16:11.960979113 +0200
+++ /var/tmp/diff_new_pack.ElsuKn/_new  2017-09-05 15:16:11.964978551 +0200
@@ -20,7 +20,7 @@
 Name:   python-happybase
 Version:1.1.0
 Release:0
-Summary:A developer-friendly Python library to interact with Apache 
HBase
+Summary:A Python library to interact with Apache HBase
 License:MIT
 Group:  Development/Languages/Python
 Url:https://github.com/wbolster/happybase
@@ -38,7 +38,7 @@
 %python_subpackages
 
 %description
-HappyBase is a developer-friendly Python library to interact with Apache HBase.
+HappyBase is a Python library to interact with Apache HBase.
 
 %package -n python-happybase-doc
 Summary:Documentation for %{name}
@@ -46,7 +46,7 @@
 Provides:   %{python_module happybase-doc = %{version}}
 
 %description -n python-happybase-doc
-HappyBase is a developer-friendly Python library to interact with Apache HBase.
+HappyBase is a Python library to interact with Apache HBase.
 
 This package contains the documentation.
 




commit python-happybase for openSUSE:Factory

2017-08-29 Thread root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2017-08-29 11:44:14

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


Package is "python-happybase"

Tue Aug 29 11:44:14 2017 rev:10 rq:518704 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2015-05-10 10:46:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2017-08-29 11:44:19.826210790 +0200
@@ -1,0 +2,17 @@
+Fri Aug 25 10:09:26 UTC 2017 - tbecht...@suse.com
+
+- update to 1.1.0:
+  * Set socket timeout unconditionally on ``TSocket``
+  * Add new ‘0.98’ compatibility mode
+  * Add support for reversed scanners
+  * From now on this library uses a semantic versioning scheme.
+HappyBase is a mature library, but always used 0.x version numbers
+for no good reason. This has now changed.
+  * Finally, Python 3 support. Thanks to all the people who contributed!
+  * Switch to thriftpy as the underlying Thrift library, which is a much
+nicer and better maintained library.
+  * Enable building universal wheels
+- convert to singlespec
+- split -doc package
+
+---

Old:

  happybase-0.9.tar.gz

New:

  happybase-1.1.0.tar.gz



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.i5KiKE/_old  2017-08-29 11:44:20.906058566 +0200
+++ /var/tmp/diff_new_pack.i5KiKE/_new  2017-08-29 11:44:20.930055184 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-happybase
 #
-# 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
@@ -16,47 +16,59 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-happybase
-Version:0.9
+Version:1.1.0
 Release:0
 Summary:A developer-friendly Python library to interact with Apache 
HBase
 License:MIT
 Group:  Development/Languages/Python
 Url:https://github.com/wbolster/happybase
-Source: 
https://pypi.python.org/packages/source/h/happybase/happybase-%{version}.tar.gz
-BuildRequires:  python-Sphinx
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
-BuildRequires:  python-thrift
-Requires:   python-thrift
+Source: 
https://files.pythonhosted.org/packages/source/h/happybase/happybase-%{version}.tar.gz
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module thriftpy}
+BuildRequires:  python-rpm-macros
+BuildRequires:  python3-Sphinx
+Requires:   python-six
+Requires:   python-thriftpy >= 0.3.8
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%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
+
+%python_subpackages
 
 %description
 HappyBase is a developer-friendly Python library to interact with Apache HBase.
 
+%package -n python-happybase-doc
+Summary:Documentation for %{name}
+Group:  Documentation/Other
+Provides:   %{python_module happybase-doc = %{version}}
+
+%description -n python-happybase-doc
+HappyBase is a developer-friendly Python library to interact with Apache HBase.
+
+This package contains the documentation.
+
 %prep
 %setup -q -n happybase-%{version}
 
 %build
-python setup.py build
-python setup.py build_sphinx
-# Remove hidden file generated by Sphinx
-rm doc/build/html/.buildinfo
+%python_build
+sphinx-build -b html doc docs/build/html
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot} 
+%python_install
 
 %check
-python setup.py test
+%python_exec setup.py test
 
-%files
+%files %{python_files}
 %defattr(-,root,root,-)
-%doc LICENSE.rst NEWS.rst README.rst TODO.rst doc/build/html
+%doc LICENSE.rst NEWS.rst README.rst TODO.rst
 %{python_sitelib}/*
 
+%files -n python-happybase-doc
+%doc LICENSE.rst docs/build/html
+
 %changelog

++ happybase-0.9.tar.gz -> happybase-1.1.0.tar.gz ++
 14988 lines of diff (skipped)




commit python-happybase for openSUSE:Factory

2015-05-10 Thread h_root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2015-05-10 10:46:29

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


Package is "python-happybase"

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2014-04-17 14:08:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2015-05-10 10:46:31.0 +0200
@@ -1,0 +2,10 @@
+Wed May  6 14:14:33 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 0.9:
+  * Fix an issue where scanners would return fewer results than
+expected due to HBase not always behaving as its documentation
+suggests (issue #72).
+  * Add support for the Thrift compact protocol (TCompactProtocol)
+in :py:class:`Connection` (issue #70).
+
+---

Old:

  happybase-0.8.tar.gz

New:

  happybase-0.9.tar.gz



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.teqFQy/_old  2015-05-10 10:46:31.0 +0200
+++ /var/tmp/diff_new_pack.teqFQy/_new  2015-05-10 10:46:31.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-happybase
 #
-# Copyright (c) 2014 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,7 +17,7 @@
 
 
 Name:   python-happybase
-Version:0.8
+Version:0.9
 Release:0
 Summary:A developer-friendly Python library to interact with Apache 
HBase
 License:MIT

++ happybase-0.8.tar.gz -> happybase-0.9.tar.gz ++
 2633 lines of diff (skipped)




commit python-happybase for openSUSE:Factory

2014-04-17 Thread h_root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2014-04-17 14:08:40

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


Package is "python-happybase"

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2013-12-11 16:21:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2014-04-17 14:08:41.0 +0200
@@ -1,0 +2,10 @@
+Tue Apr 15 21:00:40 UTC 2014 - dmuel...@suse.com
+
+- update to 0.8:
+ * Add (and default to) '0.96' compatibility mode in :py:class:`Connection`.
+ * Add support for retrieving sorted columns, which is possible with the HBase
+  0.96 Thrift API
+ * The `batch_size` argument to :py:meth:`Table.scan` is no longer propagated 
to
+  `Scan.setBatching()` at the Java side (inside the Thrift server). 
+
+---

Old:

  happybase-0.7.tar.gz

New:

  happybase-0.8.tar.gz



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.4RaE2F/_old  2014-04-17 14:08:41.0 +0200
+++ /var/tmp/diff_new_pack.4RaE2F/_new  2014-04-17 14:08:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-happybase
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,13 +17,13 @@
 
 
 Name:   python-happybase
-Version:0.7
+Version:0.8
 Release:0
 Summary:A developer-friendly Python library to interact with Apache 
HBase
 License:MIT
 Group:  Development/Languages/Python
 Url:https://github.com/wbolster/happybase
-Source: 
http://pypi.python.org/packages/source/h/happybase/happybase-%{version}.tar.gz
+Source: 
https://pypi.python.org/packages/source/h/happybase/happybase-%{version}.tar.gz
 BuildRequires:  python-Sphinx
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools

++ happybase-0.7.tar.gz -> happybase-0.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/happybase-0.7/NEWS.rst new/happybase-0.8/NEWS.rst
--- old/happybase-0.7/NEWS.rst  2013-11-06 23:16:45.0 +0100
+++ new/happybase-0.8/NEWS.rst  2014-02-25 21:15:11.0 +0100
@@ -4,6 +4,29 @@
 .. py:currentmodule:: happybase
 
 
+HappyBase 0.8
+-
+
+Release date: 2014-02-25
+
+* Add (and default to) '0.96' compatibility mode in :py:class:`Connection`.
+
+* Add support for retrieving sorted columns, which is possible with the HBase
+  0.96 Thrift API. This feature uses a new `sorted_columns` argument to
+  :py:meth:`Table.scan`. An ```OrderedDict`` implementation is required for 
this
+  feature; with Python 2.7 this is available from the standard library, but for
+  Python 2.6 a separate ```ordereddict``` pacakge has to be installed from 
PyPI.
+  (`issue #39 `_)
+
+* The `batch_size` argument to :py:meth:`Table.scan` is no longer propagated to
+  `Scan.setBatching()` at the Java side (inside the Thrift server). To 
influence
+  the `Scan.setBatching()` (which may split rows into partial rows) a new
+  `scan_batching` argument to :py:meth:`Table.scan` has been added. See `issue
+  #54 `_, `issue #56
+  `_, and the HBase docs for
+  `Scan.setBatching()` for more details.
+
+
 HappyBase 0.7
 -
 
@@ -12,7 +35,7 @@
 * Added a `wal` argument to various data manipulation methods on the
   :py:class:`Table` and :py:class:`Batch` classes to determine whether to write
   the mutation to the Write-Ahead Log (WAL). (`issue #36
-  `_).
+  `_)
 
 * Pass batch_size to underlying Thrift Scan instance (`issue #38
   `_).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/happybase-0.7/PKG-INFO new/happybase-0.8/PKG-INFO
--- old/happybase-0.7/PKG-INFO  2013-11-06 23:20:23.0 +0100
+++ new/happybase-0.8/PKG-INFO  2014-02-25 21:19:38.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: happybase
-Version: 0.7
+Version: 0.8
 Summary: A developer-friendly Python library to interact with Apache HBase
 Home-page: https://github.com

commit python-happybase for openSUSE:Factory

2013-12-11 Thread h_root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2013-12-11 16:21:28

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


Package is "python-happybase"

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2013-10-25 11:17:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2013-12-11 16:21:30.0 +0100
@@ -1,0 +2,18 @@
+Mon Dec  9 23:13:08 UTC 2013 - p.drou...@gmail.com
+
+- Update to version 0.7
+  * Added a `wal` argument to various data manipulation methods on the
+:py:class:`Table` and :py:class:`Batch` classes to determine whether
+to write the mutation to the Write-Ahead Log (WAL). (`issue #36
+`_).
+  * Pass batch_size to underlying Thrift Scan instance (`issue #38
+`_).
+  * Expose server name and port in :py:meth:`Table.regions` (recent HBase
+versions only) (`issue #37
+`_).
+  * Regenerated bundled Thrift API modules using a recent upstream
+Thrift APIdefinition. This is required to expose newly added API.
+- Package NEWS.rst, TODO.rst and html pages in documentation directory
+- Add python-Sphinx requirement to build html documentation
+
+---

Old:

  happybase-0.6.tar.gz

New:

  happybase-0.7.tar.gz



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.RojJWR/_old  2013-12-11 16:21:31.0 +0100
+++ /var/tmp/diff_new_pack.RojJWR/_new  2013-12-11 16:21:31.0 +0100
@@ -17,13 +17,14 @@
 
 
 Name:   python-happybase
-Version:0.6
+Version:0.7
 Release:0
 Summary:A developer-friendly Python library to interact with Apache 
HBase
 License:MIT
 Group:  Development/Languages/Python
 Url:https://github.com/wbolster/happybase
 Source: 
http://pypi.python.org/packages/source/h/happybase/happybase-%{version}.tar.gz
+BuildRequires:  python-Sphinx
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 BuildRequires:  python-thrift
@@ -43,6 +44,9 @@
 
 %build
 python setup.py build
+python setup.py build_sphinx
+# Remove hidden file generated by Sphinx
+rm doc/build/html/.buildinfo
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
@@ -52,7 +56,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc LICENSE.rst README.rst
+%doc LICENSE.rst NEWS.rst README.rst TODO.rst doc/build/html
 %{python_sitelib}/*
 
 %changelog

++ happybase-0.6.tar.gz -> happybase-0.7.tar.gz ++
 6262 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-happybase for openSUSE:Factory

2013-10-25 Thread h_root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2013-10-25 11:17:38

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


Package is "python-happybase"

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2013-07-11 19:36:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2013-10-25 11:17:38.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 24 11:06:30 UTC 2013 - speili...@suse.com
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+---



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.LVFaH4/_old  2013-10-25 11:17:39.0 +0200
+++ /var/tmp/diff_new_pack.LVFaH4/_new  2013-10-25 11:17:39.0 +0200
@@ -25,7 +25,7 @@
 Url:https://github.com/wbolster/happybase
 Source: 
http://pypi.python.org/packages/source/h/happybase/happybase-%{version}.tar.gz
 BuildRequires:  python-devel
-BuildRequires:  python-distribute
+BuildRequires:  python-setuptools
 BuildRequires:  python-thrift
 Requires:   python-thrift
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit python-happybase for openSUSE:Factory

2013-07-11 Thread h_root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2013-07-11 19:36:55

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


Package is "python-happybase"

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2013-04-14 10:37:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2013-07-11 19:36:56.0 +0200
@@ -1,0 +2,24 @@
+Thu Jul 11 14:17:38 UTC 2013 - dmuel...@suse.com
+
+- update to 0.6:
+* Rewrote exception handling in connection pool. Exception handling is now a 
lot
+  cleaner and does not introduce cyclic references anymore. (`issue #25
+  `_).
+* Regenerated bundled Thrift code using Thrift 0.9.0 with the new-style classes
+  flag (`issue #27 `_).
+
+---
+Mon Jun 10 12:46:03 UTC 2013 - dmuel...@suse.com
+
+- update to 0.5:
+* Added a thread-safe connection pool (:py:class:`ConnectionPool`)
+* The :py:meth:`Connection.delete_table` method now features an optional
+  `disable` parameter to make deleting enabled tables easier.
+* The debug log message emitted by :py:meth:`Table.scan` when closing a scanner
+* Increased Thrift dependency to at least 0.8.
+* The :py:class:`Connection` constructor now features an optional `timeout`
+  parameter
+* The `timestamp` argument to various methods now also accepts `long` values
+* In some corner cases exceptions were raised during interpreter shutdown
+
+---

Old:

  happybase-0.4.tar.gz

New:

  happybase-0.6.tar.gz



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.LUbmNs/_old  2013-07-11 19:36:57.0 +0200
+++ /var/tmp/diff_new_pack.LUbmNs/_new  2013-07-11 19:36:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-happybase
-Version:0.4
+Version:0.6
 Release:0
 Summary:A developer-friendly Python library to interact with Apache 
HBase
 License:MIT

++ happybase-0.4.tar.gz -> happybase-0.6.tar.gz ++
 5047 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-happybase for openSUSE:Factory

2013-04-14 Thread h_root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2013-04-14 10:37:58

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


Package is "python-happybase", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/python-happybase/python-happybase.changes
2013-03-18 07:10:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2013-04-14 10:37:59.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr  5 07:39:14 UTC 2013 - speili...@suse.com
+
+- Define python_sitelib to fix SLE_11_SP1 build
+
+---



Other differences:
--
++ python-happybase.spec ++
--- /var/tmp/diff_new_pack.DsHoiR/_old  2013-04-14 10:38:00.0 +0200
+++ /var/tmp/diff_new_pack.DsHoiR/_new  2013-04-14 10:38:00.0 +0200
@@ -13,15 +13,16 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 Name:   python-happybase
 Version:0.4
 Release:0
-License:MIT
 Summary:A developer-friendly Python library to interact with Apache 
HBase
-Url:https://github.com/wbolster/happybase
+License:MIT
 Group:  Development/Languages/Python
+Url:https://github.com/wbolster/happybase
 Source: 
http://pypi.python.org/packages/source/h/happybase/happybase-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
@@ -29,6 +30,7 @@
 Requires:   python-thrift
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %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

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



commit python-happybase for openSUSE:Factory

2013-03-17 Thread h_root
Hello community,

here is the log from the commit of package python-happybase for 
openSUSE:Factory checked in at 2013-03-18 07:10:24

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


Package is "python-happybase", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2013-02-26 18:15:11.936010755 +0100
+++ /work/SRC/openSUSE:Factory/.python-happybase.new/python-happybase.changes   
2013-03-18 07:10:26.0 +0100
@@ -0,0 +1,12 @@
+---
+Wed Mar 13 09:52:35 UTC 2013 - speili...@suse.com
+
+- Install documetation
+- Run testsuite
+- Fix runtime dependencies, needs python-thrift
+
+---
+Wed Mar 13 09:39:35 UTC 2013 - dmuel...@suse.com
+
+- Initial packaging (0.4) 
+

New:

  happybase-0.4.tar.gz
  python-happybase.changes
  python-happybase.spec



Other differences:
--
++ python-happybase.spec ++
#
# spec file for package python-happybase
#
# 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
# 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-happybase
Version:0.4
Release:0
License:MIT
Summary:A developer-friendly Python library to interact with Apache 
HBase
Url:https://github.com/wbolster/happybase
Group:  Development/Languages/Python
Source: 
http://pypi.python.org/packages/source/h/happybase/happybase-%{version}.tar.gz
BuildRequires:  python-devel
BuildRequires:  python-distribute
BuildRequires:  python-thrift
Requires:   python-thrift
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%else
BuildArch:  noarch
%endif

%description
HappyBase is a developer-friendly Python library to interact with Apache HBase.

%prep
%setup -q -n happybase-%{version}

%build
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}

%check
python setup.py test

%files
%defattr(-,root,root,-)
%doc LICENSE.rst README.rst
%{python_sitelib}/*

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