[DRE-commits] [ruby-openssl] 01/01: dh-make-ruby + manual tweaks

Antonio Terceiro terceiro at moszumanska.debian.org
Sat Jul 1 23:25:19 UTC 2017


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

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

commit 8772ea8551971b59a6420bcc2abe65ed04cafbbf
Author: Antonio Terceiro <terceiro at debian.org>
Date:   Sat Jul 1 19:53:56 2017 -0300

    dh-make-ruby + manual tweaks
---
 debian/changelog             |  5 ++++
 debian/compat                |  1 +
 debian/control               | 26 +++++++++++++++++
 debian/copyright             | 69 ++++++++++++++++++++++++++++++++++++++++++++
 debian/ruby-openssl.examples |  1 +
 debian/ruby-tests.rake       |  6 ++++
 debian/rules                 |  6 ++++
 debian/source/format         |  1 +
 debian/watch                 |  2 ++
 9 files changed, 117 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..24d89e9
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+ruby-openssl (2.0.4-1) unstable; urgency=medium
+
+  * Initial release
+
+ -- Antonio Terceiro <terceiro at debian.org>  Sat, 01 Jul 2017 20:05:50 -0300
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..f954594
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: ruby-openssl
+Section: ruby
+Priority: optional
+Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Uploaders: Antonio Terceiro <terceiro at debian.org>
+Build-Depends: debhelper (>= 10~),
+               gem2deb,
+               libssl-dev,
+               rake
+Standards-Version: 4.0.0
+Vcs-Git: https://anonscm.debian.org/git/pkg-ruby-extras/ruby-openssl.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ruby-extras/ruby-openssl.git
+Homepage: https://www.ruby-lang.org/
+Testsuite: autopkgtest-pkg-ruby
+XS-Ruby-Versions: all
+
+Package: ruby-openssl
+Architecture: any
+XB-Ruby-Versions: ${ruby:Versions}
+Depends: ruby | ruby-interpreter,
+         ${misc:Depends},
+         ${shlibs:Depends}
+Description: Ruby bindings for OpenSSL
+ This package provides SSL, TLS and general purpose cryptography for Ruby by
+ wrapping the OpenSSL library. It used to be bundled with the Ruby interpreter,
+ but has been extracted to a standalone package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2847877
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,69 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: openssl
+Source: https://https://github.com/ruby/openssl
+
+Files: *
+Copyright: © Yukihiro Matsumoto <matz at netlab.jp>.
+License: Ruby
+
+Files: debian/*
+Copyright: 2017 Antonio Terceiro <terceiro at debian.org>
+License: Ruby
+Comment: the Debian packaging is licensed under the same terms as the original package.
+
+License: Ruby
+ You can redistribute it and/or modify it under either the terms of the
+ 2-clause BSDL (see the file BSDL), or the conditions below:
+ .
+  1. You may make and give away verbatim copies of the source form of the
+     software without restriction, provided that you duplicate all of the
+     original copyright notices and associated disclaimers.
+ .
+  2. You may modify your copy of the software in any way, provided that
+     you do at least ONE of the following:
+ .
+       a) place your modifications in the Public Domain or otherwise
+          make them Freely Available, such as by posting said
+	  modifications to Usenet or an equivalent medium, or by allowing
+	  the author to include your modifications in the software.
+ .
+       b) use the modified software only within your corporation or
+          organization.
+ .
+       c) give non-standard binaries non-standard names, with
+          instructions on where to get the original software distribution.
+ .
+       d) make other distribution arrangements with the author.
+ .
+  3. You may distribute the software in object code or binary form,
+     provided that you do at least ONE of the following:
+ .
+       a) distribute the binaries and library files of the software,
+	  together with instructions (in the manual page or equivalent)
+	  on where to get the original distribution.
+ .
+       b) accompany the distribution with the machine-readable source of
+	  the software.
+ .
+       c) give non-standard binaries non-standard names, with
+          instructions on where to get the original software distribution.
+ .
+       d) make other distribution arrangements with the author.
+ .
+  4. You may modify and include the part of the software into any other
+     software (possibly commercial).  But some files in the distribution
+     are not written by the author, so that they are not under these terms.
+ .
+     For the list of those files and their copying conditions, see the
+     file LEGAL.
+ .
+  5. The scripts and library files supplied as input to or produced as
+     output from the software do not automatically fall under the
+     copyright of the software, but belong to whomever generated them,
+     and may be sold commercially, and may be aggregated with this
+     software.
+ .
+  6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
+     IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+     PURPOSE.
diff --git a/debian/ruby-openssl.examples b/debian/ruby-openssl.examples
new file mode 100644
index 0000000..640e65f
--- /dev/null
+++ b/debian/ruby-openssl.examples
@@ -0,0 +1 @@
+sample/*
diff --git a/debian/ruby-tests.rake b/debian/ruby-tests.rake
new file mode 100644
index 0000000..63f3fd6
--- /dev/null
+++ b/debian/ruby-tests.rake
@@ -0,0 +1,6 @@
+require 'gem2deb/rake/testtask'
+
+Gem2Deb::Rake::TestTask.new do |t|
+  t.libs = ['test']
+  t.test_files = FileList['test/**/*_test.rb'] + FileList['test/**/test_*.rb']
+end
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..3454d59
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+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..edb25cd
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://github.com/ruby/openssl/releases .*/v(.*).tar.gz

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



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