[DRE-commits] [ruby-rbnacl] 01/09: Import Debian changes 5.0.0-1

Lucas Nussbaum lucas at moszumanska.debian.org
Sat Jul 8 20:55:43 UTC 2017


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

lucas pushed a commit to branch master
in repository ruby-rbnacl.

commit 28e4b684ec384bc0ed58f697ba91266dc66d9442
Author: Unit 193 <unit193 at ubuntu.com>
Date:   Fri Jun 30 17:17:59 2017 -0400

    Import Debian changes 5.0.0-1
    
    ruby-rbnacl (5.0.0-1) unstable; urgency=medium
    
      * Initial release.
---
 debian/changelog                       |  5 +++++
 debian/compat                          |  1 +
 debian/control                         | 28 ++++++++++++++++++++++++++++
 debian/copyright                       | 31 +++++++++++++++++++++++++++++++
 debian/patches/provide_libsodium.patch | 11 +++++++++++
 debian/patches/series                  |  1 +
 debian/ruby-rbnacl.docs                |  1 +
 debian/ruby-tests.rake                 |  5 +++++
 debian/rules                           | 22 ++++++++++++++++++++++
 debian/source/format                   |  1 +
 debian/watch                           |  2 ++
 11 files changed, 108 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..9c22906
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+ruby-rbnacl (5.0.0-1) unstable; urgency=medium
+
+  * Initial release.
+
+ -- Unit 193 <unit193 at ubuntu.com>  Fri, 30 Jun 2017 17:17:59 -0400
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..6d1d23e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: ruby-rbnacl
+Section: ruby
+Priority: optional
+Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Uploaders: FIXME
+Build-Depends: debhelper (>= 9~),
+ gem2deb,
+ rake,
+ ruby-ffi,
+ ruby-rspec
+Standards-Version: 4.0.0
+Homepage: https://github.com/cryptosphere/rbnacl
+Testsuite: autopkgtest-pkg-ruby
+XS-Ruby-Versions: all
+
+Package: ruby-rbnacl
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Depends:
+ libsodium-dev,
+ ruby | ruby-interpreter,
+ ruby-ffi,
+ ${misc:Depends},
+ ${shlibs:Depends}
+Provides: ruby-rbnacl-libsodium
+Description: Ruby binding to the Networking and Cryptography (NaCl) library
+ The Networking and Cryptography (NaCl) library provides a high-level
+ toolkit for building cryptographic systems and protocols
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..57b19ff
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: rbnacl
+Source: https://github.com/cryptosphere/rbnacl
+
+Files: *
+Copyright: 2012-2017, Tony Arcieri <tony.arcieri at gmail.com>
+           2012-2017, Jonathan Stott <jonathan.stott at gmail.com>
+License: Expat
+
+Files: debian/*
+Copyright: 2016-2017 Unit 193 <unit193 at ubuntu.com>
+License: Expat
+
+License: Expat
+ 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/patches/provide_libsodium.patch b/debian/patches/provide_libsodium.patch
new file mode 100644
index 0000000..38fbdd1
--- /dev/null
+++ b/debian/patches/provide_libsodium.patch
@@ -0,0 +1,11 @@
+Description: provide libsodium.
+Author: Unit 193 <unit193 at ubuntu.com>
+
+Last-Update: 2017-01-03
+
+--- /dev/null
++++ ruby-rbnacl-4.0.1/lib/rbnacl/libsodium.rb
+@@ -0,0 +1,3 @@
++module RbNaCl; module LibSodium
++   require 'rbnacl'
++end; end
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..e461362
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+provide_libsodium.patch
diff --git a/debian/ruby-rbnacl.docs b/debian/ruby-rbnacl.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/ruby-rbnacl.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/ruby-tests.rake b/debian/ruby-tests.rake
new file mode 100644
index 0000000..cf1591e
--- /dev/null
+++ b/debian/ruby-tests.rake
@@ -0,0 +1,5 @@
+require 'gem2deb/rake/spectask'
+
+Gem2Deb::Rake::RSpecTask.new do |spec|
+  spec.pattern = './spec/**/*_spec.rb'
+end
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..75cfcad
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,22 @@
+#!/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 ruby2.2
+#
+# If you need to specify the .gemspec (eg there is more than one)
+#export DH_RUBY_GEMSPEC=rbnacl.gemspec
+#
+# Uncomment to check dependencies during build:
+export GEM2DEB_TEST_RUNNER = --check-dependencies
+
+%:
+	dh $@ --buildsystem=ruby --with ruby
+
+override_dh_clean:
+	dh_clean
+	rm -rf coverage/
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..bac8da4
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/rbnacl .*/rbnacl-(.*).tar.gz

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



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