[DRE-commits] [ruby-elasticsearch] 01/01: Imported Debian patch 1.0.5-1

Tim Potter tpot-guest at moszumanska.debian.org
Thu Sep 11 02:30:11 UTC 2014


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

tpot-guest pushed a commit to branch master
in repository ruby-elasticsearch.

commit defbc0318acf1fba1446286ed2f87d0411ee06b5
Author: Tim Potter <tpot at hp.com>
Date:   Thu Sep 11 12:13:42 2014 +1000

    Imported Debian patch 1.0.5-1
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 40 ++++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 38 ++++++++++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/rules         | 15 +++++++++++++++
 debian/source/format |  1 +
 7 files changed, 101 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..da0f846
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+ruby-elasticsearch (1.0.5-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Tim Potter <tpot at hp.com>  Thu, 11 Sep 2014 12:13:42 +1000
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..b932b55
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: ruby-elasticsearch
+Section: ruby
+Priority: optional
+Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Uploaders: Tim Potter <tpot at hp.com>
+Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.7.5~)
+Standards-Version: 3.9.5
+Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-elasticsearch.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-elasticsearch.git;a=summary
+Homepage: http://github.com/elasticsearch/elasticsearch-ruby
+XS-Ruby-Versions: all
+
+Package: ruby-elasticsearch
+X-DhRuby-Root: elasticsearch
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-elasticsearch-transport (= 1.0.5-1), ruby-elasticsearch-api (= 1.0.5-1)
+Description: Ruby client for connecting to an Elasticsearch cluster
+ This package implements a client for connecting to an Elasticsearch
+ cluster via the Elasticsearch REST interface.
+
+Package: ruby-elasticsearch-api
+X-DhRuby-Root: elasticsearch-api
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-multi-json
+Description: Ruby implementation of the Elasticsearch REST API
+ This package provides a Ruby implementation of the Elasticsearch
+ REST API. It is normally used as a support module for the
+ ruby-elasticsearch package.
+
+Package: ruby-elasticsearch-transport
+X-DhRuby-Root: elasticsearch-transport
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-multi-json, ruby-faraday
+Description: Low-level Ruby client for connecting to Elasticsearch
+ This package provides a low-level Ruby client for connecting to
+ an Elasticsearch cluster. It is normally used as a support module for
+ the ruby-elasticsearch package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..63bd48e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ruby-elasticsearch
+Source: <url://example.com>
+
+Files: *
+Copyright: <years> <put author's name and email here>
+           <years> <likewise for another author>
+License: <special license>
+ <Put the license of the package here indented by 1 space>
+ <This follows the format of Description: lines in control file>
+ .
+ <Including paragraphs>
+
+# If you want to use GPL v2 or later for the /debian/* files use 
+# the following clauses, or change it to suit. Delete these two lines
+Files: debian/*
+Copyright: 2014 Tim Potter <tpot at hp.com>
+License: GPL-2+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
+# Please avoid to pick license terms that are more restrictive than the
+# packaged work, as it may make Debian's contributions unacceptable upstream.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d81794d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+#
+# Uncomment to ignore all test failures (but the tests will run anyway)
+#export DH_RUBY_IGNORE_TESTS=all
+#
+# Uncomment to ignore some test failures (but the tests will run anyway).
+# Valid values:
+#export DH_RUBY_IGNORE_TESTS=ruby2.1 require-rubygems
+#
+# If you need to specify the .gemspec (eg there is more than one)
+#export DH_RUBY_GEMSPEC=gem.gemspec
+
+%:
+	dh $@ --buildsystem=ruby --with ruby
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-elasticsearch.git



More information about the Pkg-ruby-extras-commits mailing list