[DRE-commits] [SCM] ruby-stomp.git branch, master, updated. upstream/1.1.9-6-g0f92179
Jonas Genannt
jonas at brachium-system.net
Wed Oct 5 14:22:00 UTC 2011
The following commit has been merged in the master branch:
commit 027279d0cbf78073ae21a9b02d852551d1c3e338
Author: Jonas Genannt <jonas at brachium-system.net>
Date: Tue Oct 4 21:27:18 2011 +0200
added manpage for stompcat/catstomp; added patch to remove rubygems require
diff --git a/debian/manpages/catstomp.1 b/debian/manpages/catstomp.1
new file mode 100644
index 0000000..4169283
--- /dev/null
+++ b/debian/manpages/catstomp.1
@@ -0,0 +1,31 @@
+.\" generated with Ronn/v0.7.3
+.\" http://github.com/rtomayko/ronn/tree/0.7.3
+.
+.TH "CATSTOMP" "1" "October 2011" "" ""
+.
+.SH "NAME"
+\fBcatstomp\fR \- send input to STOMP destination
+.
+.SH "SYNOPSIS"
+ls | catstomp /topic/foo # Would send the output of "ls" to the STOMP destination "/topic/foo"
+.
+.SH "DESCRIPTION"
+It allows you to send input into this process to STOMP destination\.
+.
+.SH "ENVIRONMENT"
+\fBSTOMP_HOST\fR Hostname or IP address of the STOMP server\. If not set, "localhost" will be used\.
+.
+.P
+\fBSTOMP_PORT\fR Port of the STOMP server\. If not set, "61613" will be used\.
+.
+.P
+\fBSTOMP_USER\fR Username of the STOMP server\.
+.
+.P
+\fBSTOMP_PASSWORD\fR Password of the STOMP server\.
+.
+.SH "AUTHOR"
+LogicBlaze Inc
+.
+.P
+This manual page was written by Jonas Genannt \fIjonas\.genannt at capi2name\.de\fR for the Debian Project\.
diff --git a/debian/manpages/catstomp.md b/debian/manpages/catstomp.md
new file mode 100644
index 0000000..dd6d8e2
--- /dev/null
+++ b/debian/manpages/catstomp.md
@@ -0,0 +1,27 @@
+catstomp(1) -- send input to STOMP destination
+========================================================
+
+## SYNOPSIS
+
+ls | catstomp /topic/foo # Would send the output of "ls" to the STOMP destination "/topic/foo"
+
+## DESCRIPTION
+
+It allows you to send input into this process to STOMP destination.
+
+
+## ENVIRONMENT
+
+** STOMP_HOST ** Hostname or IP address of the STOMP server. If not set, "localhost" will be used.
+
+** STOMP_PORT ** Port of the STOMP server. If not set, "61613" will be used.
+
+** STOMP_USER ** Username of the STOMP server.
+
+** STOMP_PASSWORD ** Password of the STOMP server.
+
+## AUTHOR
+
+LogicBlaze Inc
+
+This manual page was written by Jonas Genannt <jonas.genannt at capi2name.de> for the Debian Project.
diff --git a/debian/manpages/stompcat.1 b/debian/manpages/stompcat.1
new file mode 100644
index 0000000..dcba5ad
--- /dev/null
+++ b/debian/manpages/stompcat.1
@@ -0,0 +1,31 @@
+.\" generated with Ronn/v0.7.3
+.\" http://github.com/rtomayko/ronn/tree/0.7.3
+.
+.TH "STOMPCAT" "1" "October 2011" "" ""
+.
+.SH "NAME"
+\fBstompcat\fR \- display output from an STOMP destination
+.
+.SH "SYNOPSIS"
+stompcat /topic/foo
+.
+.SH "DESCRIPTION"
+This program will display the output that arrives at the /topic/foo stomp destination\.
+.
+.SH "ENVIRONMENT"
+\fBSTOMP_HOST\fR Hostname or IP address of the STOMP server\. If not set, "localhost" will be used\.
+.
+.P
+\fBSTOMP_PORT\fR Port of the STOMP server\. If not set, "61613" will be used\.
+.
+.P
+\fBSTOMP_USER\fR Username of the STOMP server\.
+.
+.P
+\fBSTOMP_PASSWORD\fR Password of the STOMP server\.
+.
+.SH "AUTHOR"
+LogicBlaze Inc
+.
+.P
+This manual page was written by Jonas Genannt \fIjonas\.genannt at capi2name\.de\fR for the Debian Project\.
diff --git a/debian/manpages/stompcat.md b/debian/manpages/stompcat.md
new file mode 100644
index 0000000..e043de2
--- /dev/null
+++ b/debian/manpages/stompcat.md
@@ -0,0 +1,27 @@
+stompcat(1) -- display output from an STOMP destination
+========================================================
+
+## SYNOPSIS
+
+stompcat /topic/foo
+
+## DESCRIPTION
+
+This program will display the output that arrives at the /topic/foo stomp
+destination.
+
+## ENVIRONMENT
+
+** STOMP_HOST ** Hostname or IP address of the STOMP server. If not set, "localhost" will be used.
+
+** STOMP_PORT ** Port of the STOMP server. If not set, "61613" will be used.
+
+** STOMP_USER ** Username of the STOMP server.
+
+** STOMP_PASSWORD ** Password of the STOMP server.
+
+## AUTHOR
+
+LogicBlaze Inc
+
+This manual page was written by Jonas Genannt <jonas.genannt at capi2name.de> for the Debian Project.
diff --git a/debian/patches/01_bin_remove_rubygems.patch b/debian/patches/01_bin_remove_rubygems.patch
new file mode 100644
index 0000000..bf98e9a
--- /dev/null
+++ b/debian/patches/01_bin_remove_rubygems.patch
@@ -0,0 +1,28 @@
+Author: Jonas Genannt <jonas.genannt at capi2name.de>
+Description: Remove require rubygems - no depend on rubygems package
+Forwarded: not-needed
+
+diff --git a/bin/catstomp b/bin/catstomp
+index 9953259..c0bf03c 100755
+--- a/bin/catstomp
++++ b/bin/catstomp
+@@ -14,7 +14,6 @@
+ # See the License for the specific language governing permissions and
+ # limitations under the License.
+ #
+-begin; require 'rubygems'; rescue; end
+ require 'stomp'
+
+ #
+diff --git a/bin/stompcat b/bin/stompcat
+index e51d0c6..1654ac8 100755
+--- a/bin/stompcat
++++ b/bin/stompcat
+@@ -14,7 +14,6 @@
+ # See the License for the specific language governing permissions and
+ # limitations under the License.
+ #
+-begin; require 'rubygems'; rescue; end
+ require 'stomp'
+
+ #
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..f442d9b
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+01_bin_remove_rubygems.patch
diff --git a/debian/ruby-stomp.manpages b/debian/ruby-stomp.manpages
new file mode 100644
index 0000000..a2fbff7
--- /dev/null
+++ b/debian/ruby-stomp.manpages
@@ -0,0 +1,2 @@
+debian/manpages/catstomp.1
+debian/manpages/stompcat.1
--
ruby-stomp.git
More information about the Pkg-ruby-extras-commits
mailing list