From aee63874d09a33eb6d82d5de79e54c78441831983d9d8975da158a2aad1aeb9b Mon Sep 17 00:00:00 2001
From: Denisart Benjamin
Date: Tue, 10 Dec 2013 14:33:16 +0000
Subject: [PATCH] Accepting request 210381 from
home:posophe:branches:devel:languages:python
- 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
OBS-URL: https://build.opensuse.org/request/show/210381
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-happybase?expand=0&rev=10
---
happybase-0.6.tar.gz | 3 ---
happybase-0.7.tar.gz | 3 +++
python-happybase.changes | 18 ++++++++++++++++++
python-happybase.spec | 10 +++++++---
4 files changed, 28 insertions(+), 6 deletions(-)
delete mode 100644 happybase-0.6.tar.gz
create mode 100644 happybase-0.7.tar.gz
diff --git a/happybase-0.6.tar.gz b/happybase-0.6.tar.gz
deleted file mode 100644
index 1dea525..0000000
--- a/happybase-0.6.tar.gz
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:74312a83c7f67d8a362649a822259fcf5983ea9b9e5f2e4e17d67109435cc00e
-size 54849
diff --git a/happybase-0.7.tar.gz b/happybase-0.7.tar.gz
new file mode 100644
index 0000000..67193b0
--- /dev/null
+++ b/happybase-0.7.tar.gz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:95865c4aebad370c538907278520fee13e760be67c71eb989a7a9fb0d266fe90
+size 59857
diff --git a/python-happybase.changes b/python-happybase.changes
index 19a0fc5..74ea3c6 100644
--- a/python-happybase.changes
+++ b/python-happybase.changes
@@ -1,3 +1,21 @@
+-------------------------------------------------------------------
+Mon Dec 9 23:13:08 UTC 2013 - p.drouand@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
+
-------------------------------------------------------------------
Thu Oct 24 11:06:30 UTC 2013 - speilicke@suse.com
diff --git a/python-happybase.spec b/python-happybase.spec
index 03cb072..e593a1f 100644
--- a/python-happybase.spec
+++ b/python-happybase.spec
@@ -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,16 +44,19 @@ HappyBase is a developer-friendly Python library to interact with Apache HBase.
%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}
+python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%check
python setup.py test
%files
%defattr(-,root,root,-)
-%doc LICENSE.rst README.rst
+%doc LICENSE.rst NEWS.rst README.rst TODO.rst doc/build/html
%{python_sitelib}/*
%changelog