diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2009-02-12 18:30:17 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2009-02-12 18:30:17 +0000 |
commit | 7281ffa22148e4c56d9d79cee6794d15df4a428f (patch) | |
tree | a2dada6931500d0ec199560256cab279de97c98e /textproc/p5-Text-Reflow | |
parent | efef2a8773c8075ea74175175b6bda52df348584 (diff) | |
download | ports-7281ffa22148e4c56d9d79cee6794d15df4a428f.tar.gz ports-7281ffa22148e4c56d9d79cee6794d15df4a428f.zip |
Update to 1.06
Notes
Notes:
svn path=/head/; revision=228132
Diffstat (limited to 'textproc/p5-Text-Reflow')
-rw-r--r-- | textproc/p5-Text-Reflow/Makefile | 3 | ||||
-rw-r--r-- | textproc/p5-Text-Reflow/distinfo | 6 | ||||
-rw-r--r-- | textproc/p5-Text-Reflow/files/5.8-Reflow.pm | 10 |
3 files changed, 9 insertions, 10 deletions
diff --git a/textproc/p5-Text-Reflow/Makefile b/textproc/p5-Text-Reflow/Makefile index aa70b184d8d2..04f02f0c6d0b 100644 --- a/textproc/p5-Text-Reflow/Makefile +++ b/textproc/p5-Text-Reflow/Makefile @@ -6,8 +6,7 @@ # PORTNAME= Text-Reflow -PORTVERSION= 1.05 -PORTREVISION= 1 +PORTVERSION= 1.06 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/textproc/p5-Text-Reflow/distinfo b/textproc/p5-Text-Reflow/distinfo index 8a0c8baf9ac6..041c01ce3826 100644 --- a/textproc/p5-Text-Reflow/distinfo +++ b/textproc/p5-Text-Reflow/distinfo @@ -1,3 +1,3 @@ -MD5 (Text-Reflow-1.05.tar.gz) = e067308e92ac8b0e26e6f2eb10960cf8 -SHA256 (Text-Reflow-1.05.tar.gz) = 3fe11f5e1c55a4edf0dacd28b03f2e64ccd132e29d40202c3c1b3bd4d735496e -SIZE (Text-Reflow-1.05.tar.gz) = 15532 +MD5 (Text-Reflow-1.06.tar.gz) = 0774cde51e367d171d59d712a156540f +SHA256 (Text-Reflow-1.06.tar.gz) = 69ce3cdbafb1f17b43bc871a1f5da81a2c3198f9d6dcf82b3025ec1e2793807a +SIZE (Text-Reflow-1.06.tar.gz) = 15464 diff --git a/textproc/p5-Text-Reflow/files/5.8-Reflow.pm b/textproc/p5-Text-Reflow/files/5.8-Reflow.pm index d9321fdb875e..08332e5bb54b 100644 --- a/textproc/p5-Text-Reflow/files/5.8-Reflow.pm +++ b/textproc/p5-Text-Reflow/files/5.8-Reflow.pm @@ -1,8 +1,8 @@ ---- Reflow.pm~ Thu Oct 23 17:58:32 2003 -+++ Reflow.pm Thu Oct 7 14:30:16 2004 +--- Reflow.pm.orig 2009-02-07 14:24:01.000000000 +0000 ++++ Reflow.pm 2009-02-12 16:47:20.000000000 +0000 @@ -32,7 +32,7 @@ - $Text::Reflow::VERSION = "1.05"; + $Text::Reflow::VERSION = "1.06"; -bootstrap Text::Reflow $Text::Reflow::VERSION; +#bootstrap Text::Reflow $Text::Reflow::VERSION; @@ -58,6 +58,6 @@ $result); - @linkbreak = unpack("N*", pack("H*", $result)); + @linkbreak = unpack("j*", pack("H*", $result)); - @linkbreak = map { $_ + 0 } @linkbreak; + # Convert @linkbreak from unsigned to signed: + @linkbreak = map { $_ > 0xF0000000 ? -((0xFFFFFFFF - $_) + 1) : $_ + 0 } @linkbreak; $lastbreak = shift(@linkbreak); - compute_output(); |