Compare commits

...

8 Commits

Author SHA1 Message Date
Stephen Nelson
d313be310f v1.125
- Made the Test:: modules TEST_REQUIRES (ticket 108523, TODDR)
2015-11-15 11:38:55 -08:00
Stephen Nelson
de720132ee Added correct release label 2015-08-19 22:50:54 -07:00
Stephen Nelson
d99367d392 Added changes 2015-08-19 22:49:46 -07:00
Stephen Nelson
16b28f45c4 Moved Test::More and Test::Most to optional, as per ticket 101974 (mishikal@yahoo.com) 2015-08-19 22:44:36 -07:00
Stephen Nelson
ea79e2ef57 Changed debinhex.pl to UTF-8 encoding 2015-08-19 22:38:48 -07:00
Stephen Nelson
706837182d Applied patch from gregoa@debian.org. Message:
Description: Fixing man page
Author: Fabrizio Regalli <fabreg@fabreg.it>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2013-09-21
2015-08-19 21:28:07 -07:00
Stephen Nelson
3caadd413c Fixed error in pod of debinhex and added pod test 2013-09-06 20:32:38 -07:00
Stephen Nelson
55decd2736 Updated revision and date 2013-08-25 14:56:12 -07:00
5 changed files with 23 additions and 2 deletions

11
Changes
View File

@ -1,6 +1,17 @@
Revision history for Perl module Convert::BinHex
{{$NEXT}}
- Made the Test:: modules TEST_REQUIRES (ticket 108523, TODDR)
1.124 2015-08-19
- Changed debinhex to UTF-8
- Made the Test:: modules optional (ticket 101974, mishikal at yahoo.com)
- Fixed a manual typo (ticket 88874, gregoa at debian.org)
1.123 2013-09-06
- Fixed pod error in debinhex and added pod tests
1.122 2013-08-25
- Added unit tests for OO and CRC code
1.121 2013-08-23

View File

@ -1,5 +1,6 @@
#!/usr/bin/perl -w
=encoding UTF-8
=head1 NAME
@ -34,7 +35,7 @@ Largely untested.
Paul J. Schinder (NASA/GSFC) mostly, though Eryq can't seem to keep
his grubby paws off anything...
Sören M. Andersen (somian), made it actually work under Perl 5.8.7 on MSWin32.
Sören M. Andersen (somian), made it actually work under Perl 5.8.7 on MSWin32.
=cut

View File

@ -12,10 +12,15 @@ copyright_holder = Eriq <eryq@zeegee.com>
[MetaJSON]
[AutoPrereqs]
skip=^Mac::Files
skip=^Test::
[Prereqs]
perl=5.6.0
[Prereqs / TestRequires]
Test::More = 0
Test::Most = 0
[MetaResources]
repository.url = https://github.com/stephenenelson/convert-binhex
repository.web = https://github.com/stephenenelson/convert-binhex

View File

@ -1627,7 +1627,7 @@ Basically, it works in a similar fashion to stdio's fread():
0. There is an internal buffer of decompressed (BIN) data,
initially empty.
1. Application asks to read() n bytes of data from object
2. If the buffer is not full enough to accomodate the request:
2. If the buffer is not full enough to accommodate the request:
2a. The read() method grabs the next available chunk of input
data (the HEX).
2b. HEX data is converted and decompressed into as many BIN

4
xt/pod.t Normal file
View File

@ -0,0 +1,4 @@
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok('lib', 'bin');