From 0fac942acf00e736e1452bc89be079b3dd020f9a Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Sun, 16 Oct 2011 11:17:18 -0700 Subject: [PATCH] renamed main script feedGnuplot -> feedgnuplot --- MANIFEST | 2 +- Makefile.PL | 16 ++++++++-------- README.pod | 24 ++++++++++++------------ bin/{feedGnuplot => feedgnuplot} | 24 ++++++++++++------------ debian/copyright | 2 +- debian/watch | 2 +- ignore.txt | 2 +- t/00-load.t | 2 +- 8 files changed, 37 insertions(+), 37 deletions(-) rename bin/{feedGnuplot => feedgnuplot} (97%) diff --git a/MANIFEST b/MANIFEST index e229ecf..f562f64 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,5 @@ Makefile.PL MANIFEST -bin/feedGnuplot +bin/feedgnuplot t/00-load.t t/manifest.t diff --git a/Makefile.PL b/Makefile.PL index 02d42af..b434ccd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -9,33 +9,33 @@ sub MY::libscan my ($self, $file) = @_; - # Don't install the README.pod or any non-feedGnuplot .pl file - return undef if $file !~ /feedGnuplot.pl/ && $file =~ /\.pl$|^README.pod/; + # Don't install the README.pod or any non-feedgnuplot .pl file + return undef if $file !~ /feedgnuplot.pl/ && $file =~ /\.pl$|^README.pod/; return $self->SUPER::libscan ($file); } WriteMakefile ( - NAME => 'feedGnuplot', + NAME => 'feedgnuplot', AUTHOR => q{Dima Kogan }, - VERSION_FROM => 'bin/feedGnuplot', - ABSTRACT_FROM => 'bin/feedGnuplot', + VERSION_FROM => 'bin/feedgnuplot', + ABSTRACT_FROM => 'bin/feedgnuplot', ($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE' => 'perl') : ()), PL_FILES => {}, - EXE_FILES => [ 'bin/feedGnuplot' ], + EXE_FILES => [ 'bin/feedgnuplot' ], PREREQ_PM => { 'Test::Script::Run' => 0}, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, - clean => { FILES => 'feedGnuplot-*' }, + clean => { FILES => 'feedgnuplot-*' }, ); # reroute the main POD into a separate README.pod if requested. This is here # purely to generate a README.pod for the github front page if(exists $ARGV[0] && $ARGV[0] eq 'README.pod') { - open SCRIPT, 'bin/feedGnuplot' or die "Couldn't open main script"; + open SCRIPT, 'bin/feedgnuplot' or die "Couldn't open main script"; open README, '>README.pod' or die "Couldn't open README.pod"; while (