[DRE-commits] [ruby-specinfra] 01/04: Imported Debian patch 1.25.4-1

Antonio Terceiro terceiro at moszumanska.debian.org
Sat Jun 13 22:09:17 UTC 2015


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

terceiro pushed a commit to branch master
in repository ruby-specinfra.

commit 2b9aa518bd16399360e81e5ceacf8ff6ba84db73
Author: KURASHIKI Satoru <lurdan at gmail.com>
Date:   Thu Aug 21 20:37:52 2014 +0900

    Imported Debian patch 1.25.4-1
---
 debian/changelog           | 29 +++++++++++++++++++++++++++++
 debian/compat              |  1 +
 debian/control             | 22 ++++++++++++++++++++++
 debian/copyright           | 32 ++++++++++++++++++++++++++++++++
 debian/ruby-specinfra.docs |  1 +
 debian/ruby-tests.rake     | 20 ++++++++++++++++++++
 debian/rules               | 15 +++++++++++++++
 debian/source/format       |  1 +
 debian/watch               |  2 ++
 9 files changed, 123 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..998d4ee
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,29 @@
+ruby-specinfra (1.25.4-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- KURASHIKI Satoru <lurdan at gmail.com>  Thu, 21 Aug 2014 20:37:52 +0900
+
+ruby-specinfra (1.11.0-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- KURASHIKI Satoru <lurdan at gmail.com>  Fri, 09 May 2014 15:03:37 +0900
+
+ruby-specinfra (0.8.0-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- KURASHIKI Satoru <lurdan at gmail.com>  Wed, 26 Mar 2014 15:07:20 +0900
+
+ruby-specinfra (0.1.1-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- KURASHIKI Satoru <lurdan at gmail.com>  Sun, 29 Dec 2013 13:50:29 +0900
+
+ruby-specinfra (0.0.16-1) unstable; urgency=medium
+
+  * Initial release (Closes: #732350)
+
+ -- KURASHIKI Satoru <lurdan at gmail.com>  Tue, 17 Dec 2013 12:49:51 +0900
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..e5d27ac
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,22 @@
+Source: ruby-specinfra
+Section: ruby
+Priority: optional
+Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Uploaders: KURASHIKI Satoru <lurdan at gmail.com>
+Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.6.1~), rake, ruby-rspec, lsb-release
+Standards-Version: 3.9.5
+Vcs-Git: https://github.com/lurdan/serverspec.git
+Vcs-Browser: https://github.com/lurdan/specinfra/tree/dpkg
+Homepage: http://github.com/serverspec/specinfra/
+XS-Ruby-Versions: all
+
+Package: ruby-specinfra
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, rake, ruby-rspec, lsb-release
+# bundler (~> 1.3, development)
+Description: Common layer for serverspec and configspec
+ This package is backend library for ruby-serverspec, which was
+ extracted from serverspec for further abstracction, intended to
+ be used by another configuration management tools.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f071f13
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: specinfra
+Source: http://github.com/serverspec/specinfra
+
+Files: *
+Copyright: 2013 Gosuke Miyashita <gosukenator at gmail.com>
+License: MIT
+
+Files: debian/*
+Copyright: 2013 KURASHIKI Satoru <lurdan at gmail.com>
+License: MIT
+Comment: the Debian packaging is licensed under the same terms as the original package.
+
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/debian/ruby-specinfra.docs b/debian/ruby-specinfra.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/ruby-specinfra.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/ruby-tests.rake b/debian/ruby-tests.rake
new file mode 100644
index 0000000..9455e58
--- /dev/null
+++ b/debian/ruby-tests.rake
@@ -0,0 +1,20 @@
+require 'rspec/core/rake_task'
+
+task :default => 'spec:all'
+
+namespace :spec do
+  task :all => [ :helper, :backend, :configuration ]
+
+  RSpec::Core::RakeTask.new(:helper) do |t|
+    t.pattern = "spec/helper/*_spec.rb"
+  end
+
+  RSpec::Core::RakeTask.new(:backend) do |t|
+    t.pattern = "spec/backend/*/*_spec.rb"
+  end
+
+  RSpec::Core::RakeTask.new(:configuration) do |t|
+    t.pattern = "spec/configuration_spec.rb"
+  end
+end
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..3529615
--- /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=ruby1.9.1 ruby2.0 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)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..6c9ab31
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/specinfra .*/specinfra-(.*).tar.gz

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



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