[DRE-commits] [ruby-emot] 01/01: Create Debian package

Youhei SASAKI uwabami-guest at moszumanska.debian.org
Sat Nov 28 13:26:16 UTC 2015


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

uwabami-guest pushed a commit to branch master
in repository ruby-emot.

commit 82d90d5021d27c1804526cceb7daa3b1773f1656
Author: Youhei SASAKI <uwabami at gfd-dennou.org>
Date:   Fri Nov 27 17:50:25 2015 +0900

    Create Debian package
    
    Signed-off-by: Youhei SASAKI <uwabami at gfd-dennou.org>
---
 debian/changelog          |  5 +++++
 debian/compat             |  1 +
 debian/control            | 30 ++++++++++++++++++++++++++++++
 debian/copyright          | 31 +++++++++++++++++++++++++++++++
 debian/emot.1             | 28 ++++++++++++++++++++++++++++
 debian/ruby-emot.docs     |  1 +
 debian/ruby-emot.manpages |  1 +
 debian/ruby-tests.rake    |  5 +++++
 debian/rules              |  6 ++++++
 debian/source/format      |  1 +
 debian/watch              |  2 ++
 11 files changed, 111 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7fb5ee5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+ruby-emot (0.0.4-1) unstable; urgency=medium
+
+  * Initial release (Closes: #806522)
+
+ -- Youhei SASAKI <uwabami at gfd-dennou.org>  Fri, 27 Nov 2015 17:50:25 +0900
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..cac4e5b
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: ruby-emot
+Section: ruby
+Priority: optional
+Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Uploaders: Youhei SASAKI <uwabami at gfd-dennou.org>
+Build-Depends: debhelper (>= 9~),
+               gem2deb,
+               rake,
+               ruby-rspec,
+               ruby-thor
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-emot.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ruby-extras/ruby-emot.git
+Homepage: https://github.com/melborne/emot
+Testsuite: autopkgtest-pkg-ruby
+XS-Ruby-Versions: all
+
+Package: ruby-emot
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Depends: ruby | ruby-interpreter,
+         ruby-thor,
+         ${misc:Depends},
+         ${shlibs:Depends}
+Description: Yet another emoji handler.
+ Yet another emoji handler for Ruby. It contains 870 emojis with its
+ name and codepoint, but not contains emoji fonts or images.
+ .
+ All names of emojis are from "Emoji cheat sheet for Campfire and GitHub"
+ - http://www.emoji-cheat-sheet.com/
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..160bdb2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: emot
+Source: https://github.com/melborne/emot
+
+Files: *
+Copyright: 2014 kyoendo
+License: Expat
+
+Files: debian/*
+Copyright: 2015 Youhei SASAKI <uwabami at gfd-dennou.org>
+License: Expat
+Comment: the Debian packaging is licensed under the same terms as the original package.
+
+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.
\ No newline at end of file
diff --git a/debian/emot.1 b/debian/emot.1
new file mode 100644
index 0000000..019567d
--- /dev/null
+++ b/debian/emot.1
@@ -0,0 +1,28 @@
+.TH EMOT 1 "November 2015" "emot 0.0.4"
+.SH NAME
+.PP
+emot \- show emoji and codepoint
+.SH USAGE
+.TP
+.B emot
+[
+.I COMMAND
+]
+.SH COMMAND
+.TP
+\fBhelp \fR[\fICOMMAND\fR]
+Describe available commands or one specific command
+.TP
+.B icons
+show all emoji icons
+.TP
+.B names
+show all available names for emoji
+.TP
+\fBshow \fR[\fINAME\fR]
+show emoji icon and unicode for \fINAME\fR
+.TP
+.B version
+Show Emot version
+.SH AUTHOR
+This  manual  page  was written by Youhei SASAKI <uwabami at gfd-dennou.org>, for the Debian GNU/Linux system (but may be used by others).
diff --git a/debian/ruby-emot.docs b/debian/ruby-emot.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/ruby-emot.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/ruby-emot.manpages b/debian/ruby-emot.manpages
new file mode 100644
index 0000000..cc029f2
--- /dev/null
+++ b/debian/ruby-emot.manpages
@@ -0,0 +1 @@
+debian/emot.1
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..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..acee907
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/emot .*/emot-(.*).tar.gz

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



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