[Python-modules-commits] r30494 - in packages/python-elasticsearch/trunk (22 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Thu Sep 4 08:42:29 UTC 2014


    Date: Thursday, September 4, 2014 @ 08:42:27
  Author: fladi-guest
Revision: 30494

Initial release (Closes: #760364).

Added:
  packages/python-elasticsearch/trunk/debian/
  packages/python-elasticsearch/trunk/debian/changelog
  packages/python-elasticsearch/trunk/debian/clean
  packages/python-elasticsearch/trunk/debian/compat
  packages/python-elasticsearch/trunk/debian/control
  packages/python-elasticsearch/trunk/debian/copyright
  packages/python-elasticsearch/trunk/debian/patches/
  packages/python-elasticsearch/trunk/debian/patches/drop_nosexcover.patch
  packages/python-elasticsearch/trunk/debian/patches/drop_pyaml.patch
  packages/python-elasticsearch/trunk/debian/patches/series
  packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.doc-base
  packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.docs
  packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.links
  packages/python-elasticsearch/trunk/debian/python-elasticsearch.docs
  packages/python-elasticsearch/trunk/debian/python3-elasticsearch.docs
  packages/python-elasticsearch/trunk/debian/rules
  packages/python-elasticsearch/trunk/debian/source/
  packages/python-elasticsearch/trunk/debian/source/format
  packages/python-elasticsearch/trunk/debian/source/include-binaries
  packages/python-elasticsearch/trunk/debian/source/lintian-overrides
  packages/python-elasticsearch/trunk/debian/upstream-signing-key.pgp
  packages/python-elasticsearch/trunk/debian/watch


Property changes on: packages/python-elasticsearch/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-elasticsearch/trunk/debian/changelog
===================================================================
--- packages/python-elasticsearch/trunk/debian/changelog	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/changelog	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,5 @@
+python-elasticsearch (1.2.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #760364).
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Wed, 03 Sep 2014 13:17:06 +0200

Added: packages/python-elasticsearch/trunk/debian/clean
===================================================================
--- packages/python-elasticsearch/trunk/debian/clean	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/clean	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1 @@
+nosetests.xml

Added: packages/python-elasticsearch/trunk/debian/compat
===================================================================
--- packages/python-elasticsearch/trunk/debian/compat	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/compat	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1 @@
+9

Added: packages/python-elasticsearch/trunk/debian/control
===================================================================
--- packages/python-elasticsearch/trunk/debian/control	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/control	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,98 @@
+Source: python-elasticsearch
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <FladischerMichael at fladi.at>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-coverage,
+               python-mock,
+               python-nose,
+               python-pylibmc,
+               python-requests,
+               python-setuptools,
+               python-thrift,
+               python-urllib3,
+               python-yaml,
+               python3-all,
+               python3-coverage,
+               python3-mock,
+               python3-nose,
+               python3-requests,
+               python3-setuptools,
+               python3-urllib3
+Build-Depends-Indep: libjs-jquery, python-sphinx (>= 1.0.7+dfsg-1~)
+Standards-Version: 3.9.5
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Homepage: https://github.com/elasticsearch/elasticsearch-py
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-elasticsearch/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-elasticsearch/trunk/
+
+Package: python-elasticsearch
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Suggests: python-elasticsearch-doc
+Description: Python client for Elasticsearch
+ Official low-level client for Elasticsearch. Its goal is to provide common
+ ground for all Elasticsearch-related code in Python; because of this it tries
+ to be opinion-free and very extendable.
+ .
+ The client's features include:
+  * translating basic Python data types to and from json (datetimes are not
+    decoded for performance reasons)
+  * configurable automatic discovery of cluster nodes
+  * persistent connections
+  * load balancing (with pluggable selection strategy) across all available
+    nodes
+  * failed connection penalization (time based - failed connections won't be
+    retried until a timeout is reached)
+  * thread safety
+  * pluggable architecture
+
+Package: python3-elasticsearch
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Suggests: python-elasticsearch-doc
+Description: Python client for Elasticsearch (Python3 version)
+ Official low-level client for Elasticsearch. Its goal is to provide common
+ ground for all Elasticsearch-related code in Python; because of this it tries
+ to be opinion-free and very extendable.
+ .
+ The client's features include:
+  * translating basic Python data types to and from json (datetimes are not
+    decoded for performance reasons)
+  * configurable automatic discovery of cluster nodes
+  * persistent connections
+  * load balancing (with pluggable selection strategy) across all available
+    nodes
+  * failed connection penalization (time based - failed connections won't be
+    retried until a timeout is reached)
+  * thread safety
+  * pluggable architecture
+ .
+ This package contains the Python 3 version of the library.
+
+Package: python-elasticsearch-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${sphinxdoc:Depends}
+Description: Python client for Elasticsearch (Documentation)
+ Official low-level client for Elasticsearch. Its goal is to provide common
+ ground for all Elasticsearch-related code in Python; because of this it tries
+ to be opinion-free and very extendable.
+ .
+ The client's features include:
+  * translating basic Python data types to and from json (datetimes are not
+    decoded for performance reasons)
+  * configurable automatic discovery of cluster nodes
+  * persistent connections
+  * load balancing (with pluggable selection strategy) across all available
+    nodes
+  * failed connection penalization (time based - failed connections won't be
+    retried until a timeout is reached)
+  * thread safety
+  * pluggable architecture
+ .
+ This package contains the documentation.

Added: packages/python-elasticsearch/trunk/debian/copyright
===================================================================
--- packages/python-elasticsearch/trunk/debian/copyright	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/copyright	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,25 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: elasticsearch
+Upstream-Contact: Honza Král <honza.kral at gmail.com>
+Source: https://github.com/elasticsearch/elasticsearch-py
+
+Files: *
+Copyright: 2013, Elasticsearch
+License: Apache
+
+Files: debian/*
+Copyright: 2014, Michael Fladischer <FladischerMichael at fladi.at>
+License: Apache
+
+License: Apache
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ use this file except in compliance with the License. You may obtain a copy of
+ the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ License for the specific language governing permissions and limitations
+ under the License.

Added: packages/python-elasticsearch/trunk/debian/patches/drop_nosexcover.patch
===================================================================
--- packages/python-elasticsearch/trunk/debian/patches/drop_nosexcover.patch	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/patches/drop_nosexcover.patch	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,28 @@
+Description: Remove nosexcover from test requirements
+ nosexcover only serves to create XML reports from test runs and has not been
+ packaged for Debian yet.
+Author: Michael Fladischer <FladischerMichael at fladi.at>
+Last-Update: 2014-09-03
+Forwarded: not-needed
+
+--- a/setup.py
++++ b/setup.py
+@@ -20,7 +20,6 @@
+     'nose',
+     'coverage',
+     'mock',
+-    'nosexcover'
+ ]
+ 
+ # use external unittest for 2.6
+--- a/test_elasticsearch/run_tests.py
++++ b/test_elasticsearch/run_tests.py
+@@ -59,7 +59,7 @@
+     if argv is None:
+         argv = [
+             'nosetests', '--with-xunit',
+-            '--with-xcoverage', '--cover-package=elasticsearch', '--cover-erase',
++            '--cover-package=elasticsearch', '--cover-erase',
+             '--logging-filter=elasticsearch', '--logging-level=DEBUG',
+             '--verbose',
+         ]

Added: packages/python-elasticsearch/trunk/debian/patches/drop_pyaml.patch
===================================================================
--- packages/python-elasticsearch/trunk/debian/patches/drop_pyaml.patch	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/patches/drop_pyaml.patch	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,17 @@
+Description: Remove pyaml from test requirements
+ pyaml only serves cosmetic purposes by pretty printing YAML and has not been
+ packaged yet for Debian.
+Author: Michael Fladischer <FladischerMichael at fladi.at>
+Last-Update: 2014-09-03
+Forwarded: not-needed
+
+--- a/setup.py
++++ b/setup.py
+@@ -20,7 +20,6 @@
+     'nose',
+     'coverage',
+     'mock',
+-    'pyaml',
+     'nosexcover'
+ ]
+ 

Added: packages/python-elasticsearch/trunk/debian/patches/series
===================================================================
--- packages/python-elasticsearch/trunk/debian/patches/series	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/patches/series	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,2 @@
+drop_pyaml.patch
+drop_nosexcover.patch

Added: packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.doc-base
===================================================================
--- packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.doc-base	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.doc-base	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,8 @@
+Document: python-elasticsearch
+Title: Python Elasticsearch Client Documentation
+Author: Ask Solem
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-elasticsearch-doc/html/index.html
+Files: /usr/share/doc/python-elasticsearch-doc/html/*.html

Added: packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.docs
===================================================================
--- packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.docs	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.docs	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1 @@
+docs/.build/html

Added: packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.links
===================================================================
--- packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.links	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/python-elasticsearch-doc.links	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1 @@
+usr/share/doc/python-elasticsearch-doc/html/_sources usr/share/doc/python-elasticsearch-doc/rst

Added: packages/python-elasticsearch/trunk/debian/python-elasticsearch.docs
===================================================================
--- packages/python-elasticsearch/trunk/debian/python-elasticsearch.docs	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/python-elasticsearch.docs	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,2 @@
+README.rst
+CONTRIBUTING.md

Added: packages/python-elasticsearch/trunk/debian/python3-elasticsearch.docs
===================================================================
--- packages/python-elasticsearch/trunk/debian/python3-elasticsearch.docs	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/python3-elasticsearch.docs	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,2 @@
+README.rst
+CONTRIBUTING.md

Added: packages/python-elasticsearch/trunk/debian/rules
===================================================================
--- packages/python-elasticsearch/trunk/debian/rules	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/rules	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=elasticsearch
+
+%:
+	dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
+
+override_dh_auto_build:
+	dh_auto_build
+	PYTHONPATH=. sphinx-build -b html -N docs/ docs/.build/html
+
+override_dh_clean:
+	rm -rf docs/.build
+	dh_clean
+
+override_dh_installchangelogs:
+	dh_installchangelogs Changelog.rst
+
+#Tests are disabled right now as they fail and spam about missing network.
+override_dh_auto_test:


Property changes on: packages/python-elasticsearch/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-elasticsearch/trunk/debian/source/format
===================================================================
--- packages/python-elasticsearch/trunk/debian/source/format	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/source/format	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-elasticsearch/trunk/debian/source/include-binaries
===================================================================
--- packages/python-elasticsearch/trunk/debian/source/include-binaries	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/source/include-binaries	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1 @@
+debian/upstream-signing-key.pgp

Added: packages/python-elasticsearch/trunk/debian/source/lintian-overrides
===================================================================
--- packages/python-elasticsearch/trunk/debian/source/lintian-overrides	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/source/lintian-overrides	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,2 @@
+# Upstream does not provide detached PGP signatures for their source tarballs.
+python-elasticsearch source: debian-watch-may-check-gpg-signature

Added: packages/python-elasticsearch/trunk/debian/upstream-signing-key.pgp
===================================================================
(Binary files differ)


Property changes on: packages/python-elasticsearch/trunk/debian/upstream-signing-key.pgp
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: packages/python-elasticsearch/trunk/debian/watch
===================================================================
--- packages/python-elasticsearch/trunk/debian/watch	                        (rev 0)
+++ packages/python-elasticsearch/trunk/debian/watch	2014-09-04 08:42:27 UTC (rev 30494)
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.+\/([\d\.]+)\.tar\.gz/python-elasticsearch-$1.tar.gz/ \
+https://github.com/elasticsearch/elasticsearch-py/releases \
+/elasticsearch/elasticsearch-py/archive/([\d\.]+)\.tar\.gz




More information about the Python-modules-commits mailing list