[DRE-commits] [ruby-trocla] 01/01: initial version of debian/

Jonas Genannt genannt at moszumanska.debian.org
Mon Jun 1 16:58:54 UTC 2015


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

genannt pushed a commit to branch master
in repository ruby-trocla.

commit 424cb7c661d32392a7bc7a80a06bb45de7a0df34
Author: Jonas Genannt <jonas at brachium-system.net>
Date:   Mon Jun 1 18:58:51 2015 +0200

    initial version of debian/
---
 debian/changelog        |  5 +++++
 debian/compat           |  1 +
 debian/control          | 37 +++++++++++++++++++++++++++++++++++++
 debian/copyright        | 33 +++++++++++++++++++++++++++++++++
 debian/ruby-tests.rake  |  7 +++++++
 debian/ruby-trocla.docs |  1 +
 debian/rules            | 18 ++++++++++++++++++
 debian/source/format    |  1 +
 debian/watch            |  2 ++
 9 files changed, 105 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f30dce8
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+ruby-trocla (0.1.1-1) unstable; urgency=medium
+
+  * Initial release (Closes: #777761)
+
+ -- Jonas Genannt <genannt at debian.org>  Mon, 01 Jun 2015 18:36:45 +0200
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..0244998
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,37 @@
+Source: ruby-trocla
+Section: ruby
+Priority: optional
+Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Uploaders: Jonas Genannt <genannt at debian.org>
+Build-Depends: debhelper (>= 7.0.50~),
+               gem2deb,
+               rake,
+               ruby-bcrypt,
+               ruby-highline,
+               ruby-moneta,
+               ruby-rspec,
+               ruby-mocha
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-trocla.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ruby-extras/ruby-trocla.git
+Homepage: https://github.com/duritong/trocla
+Testsuite: autopkgtest-pkg-ruby
+XS-Ruby-Versions: all
+
+Package: ruby-trocla
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Depends: ruby | ruby-interpreter,
+         ruby-bcrypt,
+         ruby-highline,
+         ruby-moneta,
+         ${misc:Depends},
+         ${shlibs:Depends}
+Suggests: puppet
+Description: generate and store passwords and certificates on a central server
+ Trocla helps you to generate random passwords and to store them in various
+ formats (plain, MD5, bcrypt) for later retrival.
+ .
+ An example for such an application is puppet and trocla can help you to not
+ store any plaintext or hashed passwords in your manifests by keeping these
+ passwords only on your puppetmaster.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..47dec88
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: trocla
+Source: https://github.com/duritong/trocla
+
+Files: *
+Copyright: 2011-2015 Marcel Haerry <mh+trocla at immerda.ch>
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2015 Jonas Genannt <genannt at debian.org>
+License: GPL-3+
+
+License: GPL-3+
+ This program 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 3 of the License, or (at your option) any later
+ version.
+ .
+ This program 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 package; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ Boston, MA  02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 3 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
diff --git a/debian/ruby-tests.rake b/debian/ruby-tests.rake
new file mode 100644
index 0000000..dcc1601
--- /dev/null
+++ b/debian/ruby-tests.rake
@@ -0,0 +1,7 @@
+require 'rspec/core/rake_task'
+
+RSpec::Core::RakeTask.new(:spec) do |spec|
+  spec.pattern = './spec/**/*_spec.rb'
+end
+
+task :default => :spec
diff --git a/debian/ruby-trocla.docs b/debian/ruby-trocla.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/ruby-trocla.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..57b4299
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,18 @@
+#!/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
+#
+# If you need to specify the .gemspec (eg there is more than one)
+#export DH_RUBY_GEMSPEC=gem.gemspec
+#
+# Uncomment to check dependencies during build:
+# export GEM2DEB_TEST_RUNNER = --check-dependencies
+
+%:
+	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..20a29c5
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/trocla .*/trocla-(.*).tar.gz

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



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