]> git.99rst.org Git - irssi-scripts.irssi.org.git/commitdiff
Script generation fall-out
authorAilin Nemui <redacted>
Sun, 18 Jan 2015 01:15:41 +0000 (02:15 +0100)
committerAilin Nemui <redacted>
Sun, 18 Jan 2015 01:21:53 +0000 (02:21 +0100)
A few small commits to fix the script headers which are used to
auto-generate scripts.yaml;

 * replace licence with license,
 * fix compilation errors due to missing comma,
 * fix hiding of information by using `my' instead of `our' / `use
   vars`,
 * wrong assignment of hash reference to hash

scripts/email_privmsgs.pl
scripts/emo.pl
scripts/fnotify.pl
scripts/greetignore.pl
scripts/gsi.pl
scripts/hipchat_complete.pl
scripts/notes.pl
scripts/tmux_away.pl
scripts/trackbar.pl
scripts/xmms.pl

index 893006c3b76a8fd4b894a73e23d2f559fac3c311..22216cd75fa1b90b1fb5f25df585f9c6b4e651af 100644 (file)
@@ -32,7 +32,7 @@ $VERSION = '0.5';
 %IRSSI = (
        authors => 'Adam James',
        contact => 'atj@pulsewidth.org.uk',
-       url => 'http://git.pulsewidth.org.uk/?p=irssi-scripts.git;a=summary'
+       url => 'http://git.pulsewidth.org.uk/?p=irssi-scripts.git;a=summary',
        name => 'email_privmsgs',
        description =>
                "Emails you private messages sent while you're away. " .
index c1772fab0568156f66cb79cfad496845561b68c8..9b965872151af78dff78f87f6e3d9409b86cfb17 100644 (file)
@@ -22,7 +22,7 @@ $VERSION = "0.0.1";
     name         =>     "emo",
     description  =>     "Outputs various unicode emoticons",
     commands     =>     "emo",
-    licence      =>     "Public Domain"
+    license      =>     "Public Domain"
 );
 
 use Irssi;
index 76e46b410542efe622d8d7651b50c80ef41d509a..5321ee88af5d9db2e7caaa3ba05ca1e008491e69 100644 (file)
@@ -7,8 +7,10 @@ $VERSION = '0.0.5';
 %IRSSI = (
        name => 'fnotify',
        authors => 'Thorsten Leemhuis, James Shubin, Serge van Ginderachter',
+       contact => 'fedora@leemhuis.info, serge@vanginderachter.be',
        description => 'Write notifications to a file in a consistent format.',
        license => 'GNU General Public License',
+       url => 'http://www.leemhuis.info/files/fnotify/fnotify https://ttboj.wordpress.com/',
 );
 
 #
index 69f39201d3a23203cf9240303cea19251599d2b7..54896711f5e5c51f12fe22365bf914b864835e1e 100644 (file)
@@ -30,7 +30,7 @@ $VERSION = "1.1";
        name                    => "greetignore",
        description     => "Hide the stupid \"greet messages\" posted by some bots".
                                                " after someone joins a channel.",
-       licence         => "GPLv2",
+       license         => "GPLv2",
        changed         => "20120914",
 );
 
index d874bd72517f306b50ff8e7d1515b82fe380d99b..c61a247f991a924919db2208fe36340169143c49 100644 (file)
@@ -21,7 +21,7 @@ use vars qw($VERSION %IRSSI);
 
 $VERSION = "220904-04:30:00";
 
-my %IRSSI = (
+%IRSSI = (
     authors     => "mistr",
     contact     => "mistr\@sensewave.com",
     name        => "gsi",
index 54a3c520c34b14c465aa34e7ae810d4be0d89b01..0e924745f70d9484d9e890862bfda02157e09364 100644 (file)
@@ -67,8 +67,8 @@ use strict;
 use Irssi;
 use WebService::HipChat;
 
-my $VERSION = '2.0';
-my %IRSSI = (
+our $VERSION = '2.0';
+our %IRSSI = (
        authors => 'John Morrissey',
        contact => 'jwm@horde.net',
        name => 'hipchat_complete',
index 99d192d382d45c32aa2a1be41c9837e5f4d35a8d..d1ebae2bf0b0f067d34323383ad64973de601a3e 100644 (file)
@@ -20,8 +20,8 @@ use DBM::Deep;
 
 use vars qw($VERSION %IRSSI);
 
-my $VERSION = '0.31';
-my %IRSSI = (
+$VERSION = '0.31';
+%IRSSI = (
     authors     => 'vague',
     contact     => 'vague!#irssi\@freenode',
     name        => 'notes',
index a86b0d5b4aad52fca31facb8414f5f8f462dc5f8..f0f0cce24092cd4d7c83e0051b4d35de90257b57 100644 (file)
@@ -6,7 +6,8 @@ use vars qw($VERSION %IRSSI);
 
 $VERSION = "2.0";
 %IRSSI = (
-    authors     => 'jcv',
+    authors     => 'John C. Vernaleo',
+    contact     => 'john@netpurgatory.com',
     name        => 'tmux_away',
     description => 'set (un)away if tmux session is attached/detached',
     license     => 'GPL v2',
index 8f38a52256c1c897c06612de22cf775082a98309..2c5375a4f5e75b86a5e131fea2994dd8ac660bd1 100644 (file)
@@ -127,10 +127,10 @@ use Irssi;
 use Irssi::TextUI;
 use POSIX qw(strftime);
 use utf8;
+use vars qw(%IRSSI $VERSION);
+$VERSION = "1.7";
 
-my $VERSION = "1.7";
-
-my %IRSSI = (
+%IRSSI = (
     authors     => "Peter 'kinlo' Leurs, Uwe Dudenhoeffer, " .
                    "Michiel Holtkamp, Nico R. Wohlgemuth",
     contact     => "irssi-trackbar\@supermind.nl",
index dcd827886ee80091ff7929f35ec13ce9bb74b1e2..a18c2b9d25d4e156c0fc08766ebd88d692101fc4 100644 (file)
@@ -29,14 +29,14 @@ use strict;
 use Irssi;
 use vars qw($VERSION %IRSSI);
 $VERSION = "2.0";
-%IRSSI = {
+%IRSSI = (
     authors     => 'Simon Shine',
     contact     => 'simon@blueshell.dk',
     name        => 'xmms',
     description => 'XMMS-InfoPipe front-end - allow /np [-help] [dest]',
     license     => 'Public Domain',
     changed     => '2004-01-15'
-};
+);
 
 Irssi::settings_add_str('xmms', 'xmms_fifo', '/tmp/xmms-info');
 Irssi::settings_add_str('xmms', 'xmms_format', 'np: %title at %bitrate [%pos of %length]');
git clone https://git.99rst.org/PROJECT