[SCM] libmessage-passing-perl Debian packaging branch, master, updated. debian/0.111-3-14-g44f6e88

Tomas Doran bobtfish at bobtfish.net
Mon May 6 11:57:04 UTC 2013


The following commit has been merged in the master branch:
commit 4ed9b168bef7fcd7b8f15203fa1aff4a478389c5
Author: Tomas Doran <bobtfish at bobtfish.net>
Date:   Mon May 28 10:20:14 2012 +0100

    Fix script name

diff --git a/Changes b/Changes
index 4488447..a5c9e55 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+   - Fix script name
+
    - Note irc channel and bug trackers in docs.
 
 0.003
diff --git a/lib/Message/Passing.pm b/lib/Message/Passing.pm
index 5472f9a..55a912b 100644
--- a/lib/Message/Passing.pm
+++ b/lib/Message/Passing.pm
@@ -45,7 +45,7 @@ Message::Passing - a simple way of doing messaging.
 
 =head1 SYNOPSIS
 
-    message-passing --input STDIN --output STDOUT
+    message-pass --input STDIN --output STDOUT
     {"foo": "bar"}
     {"foo":"bar"}
 
diff --git a/lib/Message/Passing/DSL.pm b/lib/Message/Passing/DSL.pm
index 26d5705..85559ca 100644
--- a/lib/Message/Passing/DSL.pm
+++ b/lib/Message/Passing/DSL.pm
@@ -116,7 +116,7 @@ Message::Passing::DSL - An easy way to make chains of Message::Passing component
 
 This module provides a simple to use helper system for writing
 scripts which implement a L<Message::Passing> server, like
-the built in message-passing script.
+the built in message-pass script.
 
 =head2 FUNCTIONS
 
diff --git a/lib/Message/Passing/Input/FileTail.pm b/lib/Message/Passing/Input/FileTail.pm
index 2b42955..04d64ed 100644
--- a/lib/Message/Passing/Input/FileTail.pm
+++ b/lib/Message/Passing/Input/FileTail.pm
@@ -55,7 +55,7 @@ Message::Passing::Input::FileTail - File tailing input
 
 =head1 SYNOPSIS
 
-    message-passing --input FileTail --input_options '{"filename": "/var/log/foo.log"} --output STDOUT
+    message-pass --input FileTail --input_options '{"filename": "/var/log/foo.log"} --output STDOUT
     {"foo":"bar"}
 
 =head1 DESCRIPTION
diff --git a/lib/Message/Passing/Input/Null.pm b/lib/Message/Passing/Input/Null.pm
index 0ccabbf..eea9dc4 100644
--- a/lib/Message/Passing/Input/Null.pm
+++ b/lib/Message/Passing/Input/Null.pm
@@ -15,7 +15,7 @@ Message::Passing::Input::Null - Null input
 
 =head1 SYNOPSIS
 
-    message-passing --input Null --output STDOUT
+    message-pass --input Null --output STDOUT
     # Nothing ever happens..
 
 =head1 DESCRIPTION
diff --git a/lib/Message/Passing/Input/STDIN.pm b/lib/Message/Passing/Input/STDIN.pm
index 4b46fa8..43d83f7 100644
--- a/lib/Message/Passing/Input/STDIN.pm
+++ b/lib/Message/Passing/Input/STDIN.pm
@@ -29,7 +29,7 @@ Message::Passing::Input::STDIN - STDIN input
 
 =head1 SYNOPSIS
 
-    message-passing --input STDIN --output STDOUT
+    message-pass --input STDIN --output STDOUT
     {"foo": "bar"}
     {"foo":"bar"}
 
diff --git a/lib/Message/Passing/Manual/Cookbook.pod b/lib/Message/Passing/Manual/Cookbook.pod
index 6c666f3..254985b 100644
--- a/lib/Message/Passing/Manual/Cookbook.pod
+++ b/lib/Message/Passing/Manual/Cookbook.pod
@@ -31,7 +31,7 @@ You can use L<Log::Dispatch>, or any log system which will output into L<Log::Di
 
 As simple as using the command line interface:
 
-    message-passing --input ZeroMQ --input_options '{"socket_bind":"tcp://192.168.0.1:5558"}' \
+    message-pass --input ZeroMQ --input_options '{"socket_bind":"tcp://192.168.0.1:5558"}' \
         --output File --output_options '{"filename":"/tmp/mylog"}'
 
 And you've now got a multi-host log aggregation system for your application!
@@ -48,7 +48,7 @@ messages to it. The listener will then forward from each host to a central aggre
 
 =head2 On host collector
 
-    message-passing --input Syslog --output ZeroMQ --output_options '{"connect":"tcp://192.168.0.1:5558"}' 
+    message-pass --input Syslog --output ZeroMQ --output_options '{"connect":"tcp://192.168.0.1:5558"}' 
 
 =head2 Configuring your syslogd
 
diff --git a/lib/Message/Passing/Output/File.pm b/lib/Message/Passing/Output/File.pm
index 9fb50cc..d396524 100644
--- a/lib/Message/Passing/Output/File.pm
+++ b/lib/Message/Passing/Output/File.pm
@@ -54,7 +54,7 @@ Message::Passing::Output::File - File output
 
 =head1 SYNOPSIS
 
-    message-passing --input STDIN --output File --output_options '{"filename": "/tmp/my.log"}'
+    message-pass --input STDIN --output File --output_options '{"filename": "/tmp/my.log"}'
     {"foo": "bar"}
     {"foo":"bar"}
 
diff --git a/lib/Message/Passing/Output/Null.pm b/lib/Message/Passing/Output/Null.pm
index 9a4cde8..495c808 100644
--- a/lib/Message/Passing/Output/Null.pm
+++ b/lib/Message/Passing/Output/Null.pm
@@ -15,7 +15,7 @@ Message::Passing::Output::Null - /dev/null for messages
 
 =head1 SYNOPSIS
 
-    message-passing --input STDIN --output Null
+    message-pass --input STDIN --output Null
     {"foo": "bar"}
 
     # Note noting is printed...
diff --git a/lib/Message/Passing/Output/STDOUT.pm b/lib/Message/Passing/Output/STDOUT.pm
index 6244eae..01afbeb 100644
--- a/lib/Message/Passing/Output/STDOUT.pm
+++ b/lib/Message/Passing/Output/STDOUT.pm
@@ -19,7 +19,7 @@ Message::Passing::Output::STDOUT - STDOUT output
 
 =head1 SYNOPSIS
 
-    message-passing --input STDIN --output STDOUT
+    message-pass --input STDIN --output STDOUT
     {"foo": "bar"}
     {"foo":"bar"}
 

-- 
libmessage-passing-perl Debian packaging



More information about the Pkg-perl-cvs-commits mailing list