[Python-modules-commits] [elasticsearch-curator] 05/06: merge patched into master

Apollon Oikonomopoulos apoikos at moszumanska.debian.org
Wed Sep 7 12:44:36 UTC 2016


This is an automated email from the git hooks/post-receive script.

apoikos pushed a commit to branch master
in repository elasticsearch-curator.

commit 29e8746cbe18e2975a53cfa6932da2da4cebd27e
Merge: 49e0b4c 15d9fed
Author: Apollon Oikonomopoulos <apoikos at debian.org>
Date:   Wed Sep 7 15:29:38 2016 +0300

    merge patched into master

 .travis.yml                                        |   4 +-
 CONTRIBUTORS                                       |   5 +
 MANIFEST.in                                        |   3 +
 README.rst                                         |  26 ++++
 curator/__init__.py                                |   2 +-
 curator/_version.py                                |   2 +-
 curator/actions.py                                 |  43 +++---
 curator/cli.py                                     |  26 ++--
 curator/defaults/__init__.py                       |   0
 curator/defaults/settings.py                       | 159 +++++++++++++++++++++
 curator/indexlist.py                               |  49 +++----
 curator/logtools.py                                |  17 +--
 curator/repomgrcli.py                              |  31 ++--
 curator/settings.py                                | 148 -------------------
 curator/snapshotlist.py                            |  21 +--
 curator/utils.py                                   |  62 ++++----
 debian/.git-dpm                                    |   6 +-
 ...local-inventory-references-for-intersphin.patch |   2 +-
 debian/patches/setup.py-read-README-utf-8          |   4 +-
 docs/Changelog.rst                                 |  95 ++++++++++++
 docs/asciidoc/about.asciidoc                       |  16 ++-
 docs/asciidoc/actions.asciidoc                     |   2 +
 docs/asciidoc/command-line.asciidoc                |   6 +
 docs/asciidoc/configuration.asciidoc               |  30 ++++
 docs/asciidoc/examples.asciidoc                    |   4 +-
 docs/asciidoc/faq.asciidoc                         |  14 ++
 docs/asciidoc/filter_elements.asciidoc             |  35 ++++-
 docs/asciidoc/filters.asciidoc                     |   5 +-
 docs/asciidoc/getting_started.asciidoc             |   4 +
 docs/asciidoc/index.asciidoc                       |   2 +-
 docs/asciidoc/installation.asciidoc                |   7 +
 docs/asciidoc/options.asciidoc                     |  29 ++++
 examples/curator.yml                               |   1 +
 setup.py                                           |  15 +-
 test/integration/test_delete_indices.py            |  89 +++++++++++-
 test/integration/test_snapshot.py                  |  42 ++++++
 test/integration/testvars.py                       |  87 ++++++++++-
 test/unit/test_action_allocation.py                |   2 +-
 test/unit/test_class_index_list.py                 |  22 ++-
 test/unit/test_utils.py                            |  10 ++
 travis-run.sh                                      |  15 +-
 41 files changed, 828 insertions(+), 314 deletions(-)

diff --cc debian/.git-dpm
index 190f363,0000000..1a97bef
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,11 -1,0 +1,11 @@@
 +# see git-dpm(1) from git-dpm package
- 752163e963ff2d81f863778315bb4433b45ac62b
- 752163e963ff2d81f863778315bb4433b45ac62b
- 85f6a59b76ddb85142061690b1e2de87c4fc4cfc
++15d9fedb2a140c523475824c9d45e91a02bdccb8
++15d9fedb2a140c523475824c9d45e91a02bdccb8
++7563cf75508aaec603f15adf396ceefe31c4c201
 +7563cf75508aaec603f15adf396ceefe31c4c201
 +elasticsearch-curator_4.0.6.orig.tar.gz
 +9b223ae7728755e459df288f6f6293d45cd74880
 +110804
 +debianTag="debian/%e%v"
 +patchedTag="patched/%e%v"
 +upstreamTag="upstream/%e%u"
diff --cc debian/patches/0002-sphinx-use-local-inventory-references-for-intersphin.patch
index 7d770bf,0000000..11bbe02
mode 100644,000000..100644
--- a/debian/patches/0002-sphinx-use-local-inventory-references-for-intersphin.patch
+++ b/debian/patches/0002-sphinx-use-local-inventory-references-for-intersphin.patch
@@@ -1,30 -1,0 +1,30 @@@
- From 752163e963ff2d81f863778315bb4433b45ac62b Mon Sep 17 00:00:00 2001
++From 15d9fedb2a140c523475824c9d45e91a02bdccb8 Mon Sep 17 00:00:00 2001
 +From: Apollon Oikonomopoulos <apoikos at debian.org>
 +Date: Fri, 22 Jul 2016 23:48:07 +0300
 +Subject: sphinx: use local inventory references for intersphinx
 +
 +Note that we will not be making this conditional: we want the build to
 +fail if intersphinx was to fetch inventory data from the internet.
 +
 +Closes: #830550
 +---
 + docs/conf.py | 6 ++++--
 + 1 file changed, 4 insertions(+), 2 deletions(-)
 +
 +diff --git a/docs/conf.py b/docs/conf.py
 +index 6ff9369..95ffc43 100644
 +--- a/docs/conf.py
 ++++ b/docs/conf.py
 +@@ -47,8 +47,10 @@ sys.path.insert(0, os.path.abspath('../'))
 + extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx']
 + 
 + intersphinx_mapping = {
 +-	'python': ('https://docs.python.org/3.5', None),
 +-	'elasticsearch': ('http://elasticsearch-py.readthedocs.io/en/2.3.0', None),
 ++	'python': ('https://docs.python.org/3.5',
 ++               '/usr/share/doc/python3-doc/html/objects.inv'),
 ++	'elasticsearch': ('http://elasticsearch-py.readthedocs.io/en/2.3.0',
 ++               '/usr/share/doc/python-elasticsearch-doc/html/objects.inv'),
 + }
 + 
 + autoclass_content = "both"
diff --cc debian/patches/setup.py-read-README-utf-8
index 2c37db2,0000000..945e537
mode 100644,000000..100644
--- a/debian/patches/setup.py-read-README-utf-8
+++ b/debian/patches/setup.py-read-README-utf-8
@@@ -1,33 -1,0 +1,33 @@@
- From dfa1c8cc1aedbc83b7620fdef6fd7fb680fe4f91 Mon Sep 17 00:00:00 2001
++From 1075a5198601f4711a836d3fed638de7167476f7 Mon Sep 17 00:00:00 2001
 +From: Apollon Oikonomopoulos <apoikos at debian.org>
 +Date: Thu, 8 Oct 2015 09:00:30 -0700
 +Subject: Properly read unicode data from README.md for Python 3
 +
 + README.md contains non-ASCII characters and Python 3 errors out since it was
 + not instructed to read unicode data from the file. Fix this by opening the
 + file with a utf-8 encoding for Python 3.
 +
 +Forwarded: no
 +Last-Update: 2015-02-02
 +Patch-Name: setup.py-read-README-utf-8
 +---
 + setup.py | 6 +++++-
 + 1 file changed, 5 insertions(+), 1 deletion(-)
 +
 +diff --git a/setup.py b/setup.py
- index d8534c1..dcbc3d2 100644
++index b3713a8..121c9ed 100644
 +--- a/setup.py
 ++++ b/setup.py
 +@@ -5,7 +5,11 @@ from setuptools import setup
 + 
 + # Utility function to read from file.
 + def fread(fname):
 +-    return open(os.path.join(os.path.dirname(__file__), fname)).read()
 ++    try:
 ++        text = open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
 ++    except TypeError:
 ++        text = open(os.path.join(os.path.dirname(__file__), fname)).read()
 ++    return text
 + 
 + def get_version():
 +     VERSIONFILE="curator/_version.py"

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/elasticsearch-curator.git



More information about the Python-modules-commits mailing list