Changeset 1390

Show
Ignore:
Timestamp:
09/19/11 19:05:05 (8 months ago)
Author:
max
Message:

shepherd 1.6.0: Change shebang lines from '/usr/bin/perl' to '/usr/bin/env perl', which is more portable (i.e. works on OSX).

Location:
trunk
Files:
19 modified

Legend:

Unmodified
Added
Removed
  • trunk/applications/shepherd

    r1383 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22 
    33our $progname = 'shepherd'; 
    4 my $version = '1.5.3'; 
     4my $version = '1.6.0'; 
    55 
    66# tv_grab_au 
     
    2929use strict; 
    3030no strict 'refs'; 
     31use warnings; 
    3132use lib 'references'; 
    3233 
  • trunk/grabbers/abc_website

    r1381 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22 
    33# ABC1/ABC2/ABC3/ABC News 24 au_tv guide grabber - runs from "Shepherd" master grabber 
     
    2323 
    2424use strict; 
     25use warnings; 
    2526 
    2627my $progname = "abc_website"; 
    27 my $version = "4.10"; 
     28my $version = "4.11"; 
    2829 
    2930use XMLTV; 
  • trunk/grabbers/acctv_website

    r1040 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22 
    33use strict; 
     4use warnings; 
    45use XMLTV; 
    56use Shepherd::Common; 
     
    2425my %stats; 
    2526my $o; 
    26 Shepherd::Common::program_begin(\$o, "acctv_website", "0.08", \%stats); 
     27Shepherd::Common::program_begin(\$o, "acctv_website", "0.09", \%stats); 
    2728 
    2829my ($channels, $opt_channels, $gaps) = Shepherd::Common::read_channels($o, ("ACC")); 
  • trunk/grabbers/foxtel_swf

    r1268 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22 
    33# foxtel_swf australian paytv grabber 
     
    88 
    99my $progname = "foxtel_swf"; 
    10 my $version = "2.03"; 
     10my $version = "2.04"; 
    1111my $cache_file = $progname.".storable.cache"; 
    1212 
  • trunk/grabbers/news

    r1260 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22# 
    33# "News" 
     
    77# be worth merging the common code into a library or something. 
    88 
    9 my $version  = '1.7'; 
     9my $version  = '1.8'; 
    1010 
    1111use strict; 
     12use warnings; 
    1213 
    1314use Getopt::Long; 
  • trunk/grabbers/oztivo

    r1366 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22# vi: ts=4 sw=4 
    33# 
     
    1212 
    1313use strict; 
     14use warnings; 
    1415 
    1516use Getopt::Long; 
     
    4344my $progname = 'oztivo'; 
    4445my $nicename = 'OzTivo'; 
    45 my $version = '2.47'; 
     46my $version = '2.48'; 
    4647my $config_file = "$progname.pw"; 
    4748my $output_file = undef; 
  • trunk/grabbers/rex

    r1368 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22# 
    33# "Rex" 
    44 
    5 my $version  = '9.0.0';  
     5my $version  = '9.1.0';  
    66 
    77# TODO: remove refresh_ua every 20 requests (maybe) 
     
    2020 
    2121use strict; 
     22use warnings; 
    2223use Getopt::Long; 
    2324use Date::Manip; 
  • trunk/grabbers/sbsweb

    r1353 r1390  
    1 #!/usr/bin/perl 
     1#!/usr/bin/env perl 
    22# 
    33# sbsweb TV guide grabber 
     
    1212# perl -I /var/lib/mythtv/.shepherd/references/ ~mythtv/.shepherd/grabbers/sbsweb/sbsweb  --channels_file /var/lib/mythtv/.shepherd/channels.conf 
    1313 
    14 my $version = '4.03'; 
     14my $version = '4.04'; 
    1515 
    1616use strict; 
     17use warnings; 
    1718use Getopt::Long; 
    1819use POSIX; 
  • trunk/grabbers/yahoo7widget

    r1384 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22 
    33# yahoo7_widget au_tv guide grabber - runs from "Shepherd" master grabber 
     
    2323 
    2424use strict; 
     25use warnings; 
    2526 
    2627my $progname = "yahoo7widget"; 
    27 my $version = "2.26"; 
     28my $version = "2.27"; 
    2829 
    2930use XMLTV; 
  • trunk/grabbers/zaxmltv

    r1329 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22#  
    33# simple grabber for Al Jazeera and CCTV data from http://zaxmltv.flash.za.org 
    44# 
     5 
     6use warnings; 
    57 
    68use XMLTV; 
     
    3032my $o; 
    3133 
    32 Shepherd::Common::program_begin(\$o, "zaxmltv grabber", "0.02", \%stats); 
     34Shepherd::Common::program_begin(\$o, "zaxmltv grabber", "0.03", \%stats); 
    3335&start_writing_xmltv(); 
    3436 
  • trunk/postprocessors/augment_timezone

    r1009 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22 
    33# Augment XMLTV start/stop times with the local timezone if MythTV's 
     
    3939 
    4040use strict; 
     41use warnings; 
    4142my $progname = "augment_timezone"; 
    42 my $version = "0.21"; 
     43my $version = "0.22"; 
    4344 
    4445use XMLTV; 
  • trunk/postprocessors/flag_aus_hdtv

    r1207 r1390  
    1 #!/usr/bin/perl 
     1#!/usr/bin/env perl 
    22 
    33# flag_aus_hdtv 
     
    1717 
    1818my $progname = "flag_aus_hdtv"; 
    19 my $version = "0.50"; 
     19my $version = "0.51"; 
    2020 
    2121$| = 1; 
  • trunk/postprocessors/imdb_augment_data

    r1290 r1390  
    1 #!/usr/bin/perl -w 
     1#!/usr/bin/env perl 
    22 
    33# IMDb XMLTV data augmenter  <ltd@interlink.com.au> 
     
    2525 
    2626use strict; 
     27use warnings; 
    2728 
    2829my $progname = "imdb_augment_data"; 
    29 my $version = "1.00"; 
     30my $version = "1.01"; 
    3031 
    3132use XMLTV; 
  • trunk/reconcilers/reconciler_mk2

    r1380 r1390  
    1 #!/usr/bin/perl -w 
    2  
     1#!/usr/bin/env perl 
     2# 
    33# "reconciler mk2": shepherd XMLTV data reconciler 
    44#  * to be used as a postprocessor for XMLTV data 
     
    9292 
    9393use strict; 
     94use warnings; 
    9495$| = 1; 
    9596BEGIN { *CORE::GLOBAL::die = \&my_die; } 
    9697 
    9798my $progname = "reconciler_mk2"; 
    98 my $version = "0.44"; 
     99my $version = "0.45"; 
    99100 
    100101use LWP::UserAgent; 
  • trunk/references/Shepherd/Common.pm

    r1221 r1390  
    1 #!/usr/bin/perl 
    21# 
    32# Shepherd::Common library 
    43 
    5 my $version = '0.38'; 
     4my $version = '0.39'; 
    65 
    76# 
  • trunk/references/Shepherd/Configure.pm

    r1385 r1390  
    1 #!/usr/bin/perl -w 
    21 
    32package Shepherd::Configure; 
    43 
    5 my $version = '0.25'; 
     4my $version = '0.26'; 
    65 
    76use strict; 
  • trunk/references/Shepherd/JS.pm

    r666 r1390  
    1 #!/usr/bin/perl 
    21# 
    32# Shepherd::JS library 
     
    1413use JavaScript; 
    1514 
    16 my $version = '0.1'; 
     15my $version = '0.2'; 
    1716 
    1817my $jsc; 
  • trunk/references/Shepherd/MythTV.pm

    r1122 r1390  
    1 #!/usr/bin/perl 
    21# 
    32# Shepherd::MythTV library 
    43 
    5 my $version = '0.9'; 
     4my $version = '0.10'; 
    65 
    76# This module provides some library functions for Shepherd components, 
  • trunk/status

    r1389 r1390  
    1 application     shepherd            1.5.3 
     1application     shepherd            1.6.0 
    22reference       channel_list        87 
    3 reference       Shepherd/Common.pm  0.38 
    4 reference       Shepherd/MythTV.pm  0.9 
    5 reference       Shepherd/Configure.pm   0.25 
     3reference       Shepherd/Common.pm  0.39 
     4reference       Shepherd/MythTV.pm  0.10 
     5reference       Shepherd/Configure.pm   0.26 
    66reference       Shepherd/json_pp.pm 0.2 
    7 grabber         news                1.7 
    8 grabber         oztivo              2.47 
    9 grabber         yahoo7widget        2.26 
    10 grabber         abc_website         4.10 
    11 grabber         rex                 9.0.0 
    12 grabber         foxtel_swf          2.03 
    13 grabber         acctv_website       0.08-r1 
    14 grabber         sbsweb              4.03 
    15 grabber         zaxmltv             0.02 
    16 reconciler      reconciler_mk2      0.44 
    17 postprocessor   imdb_augment_data   1.00 
    18 postprocessor   flag_aus_hdtv       0.50 
    19 postprocessor   augment_timezone    0.21 
     7grabber         news                1.8 
     8grabber         oztivo              2.48 
     9grabber         yahoo7widget        2.27 
     10grabber         abc_website         4.11 
     11grabber         rex                 9.1.0 
     12grabber         foxtel_swf          2.04 
     13grabber         acctv_website       0.09 
     14grabber         sbsweb              4.04 
     15grabber         zaxmltv             0.03 
     16reconciler      reconciler_mk2      0.45 
     17postprocessor   imdb_augment_data   1.01 
     18postprocessor   flag_aus_hdtv       0.51 
     19postprocessor   augment_timezone    0.22 
    2020END