~ubuntu-branches/ubuntu/saucy/libacme-bleach-perl/saucy

« back to all changes in this revision

Viewing changes to lib/Acme/Morse.pm

  • Committer: Bazaar Package Importer
  • Author(s): Fabrizio Regalli, Salvatore Bonaccorso, Fabrizio Regalli
  • Date: 2011-06-15 21:03:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110615210355-aej5cltywdw0ippj
Tags: 1.13-1
[ Salvatore Bonaccorso ]
* debian/control: Changed: Replace versioned (build-)dependency on
  perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as
  permitted by Debian Policy 3.8.3).
* debian/rules: override dh_auto_install target: Do not install unbleach.pl
  in /usr/share/perl5/Acme/unbleach.pl.

[ Fabrizio Regalli ]
* New upstream release
* Bump to 3.9.2 Standard-Version.
* Switch to DEP5 license format.
* Add myself to Uploaders.
* Switch d/compat to 8.
* Build-Depends: switch to debhelper (>= 8).
* Bump to 3.0 quilt format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
open 0 or print "Can't transmit '$0'\n" and exit;
9
9
(my $telegram = join "", <0>) =~ s/.*^\s*use\s+Acme::Morse\s*;\n//sm;
10
10
local $SIG{__WARN__} = \&garbled;
11
 
do {eval decypher $telegram; exit}
 
11
do {eval decypher $telegram; print STDERR $@ if $@; exit}
12
12
        unless garbled $telegram && not signed $telegram;
13
13
open 0, ">$0" or print "Cannot encode '$0'\n" and exit;
14
14
print {0} "use Acme::Morse;\n", encypher $telegram and exit;
48
48
 
49
49
Acme::Morse could not access the source file to execute it.
50
50
 
 
51
=back 
 
52
 
 
53
=over 4
 
54
 
 
55
=back
 
56
 
51
57
=head1 AUTHOR
52
58
 
53
59
Damian Conway (as if you couldn't guess)