diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-07 02:25:39 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-07 02:25:39 +0000 |
commit | 7bb89ed4ff7986c307143117a32b2f85fe44ca39 (patch) | |
tree | 791becf44b727ac7ff6b3148e66b2eaa75836772 /www/p5-HTML-Mason | |
parent | e66043107000916954f44c9f4731f2b61d74dd1b (diff) | |
download | ports-7bb89ed4ff7986c307143117a32b2f85fe44ca39.tar.gz ports-7bb89ed4ff7986c307143117a32b2f85fe44ca39.zip |
Notes
Diffstat (limited to 'www/p5-HTML-Mason')
-rw-r--r-- | www/p5-HTML-Mason/Makefile | 4 | ||||
-rw-r--r-- | www/p5-HTML-Mason/distinfo | 6 | ||||
-rw-r--r-- | www/p5-HTML-Mason/files/patch-Escapes.pm | 10 |
3 files changed, 4 insertions, 16 deletions
diff --git a/www/p5-HTML-Mason/Makefile b/www/p5-HTML-Mason/Makefile index 7bf89286f10e..1d479352812d 100644 --- a/www/p5-HTML-Mason/Makefile +++ b/www/p5-HTML-Mason/Makefile @@ -6,13 +6,11 @@ # PORTNAME= HTML-Mason -PORTVERSION= 1.31.0.1 -PORTREVISION= 1 +PORTVERSION= 1.32 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= HTML PKGNAMEPREFIX= p5- -DISTNAME= ${PORTNAME}-1.3101 MAINTAINER= dsh@vlink.ru COMMENT= High-performance, dynamic web site authoring system diff --git a/www/p5-HTML-Mason/distinfo b/www/p5-HTML-Mason/distinfo index b757e026ba2c..81224260a0e3 100644 --- a/www/p5-HTML-Mason/distinfo +++ b/www/p5-HTML-Mason/distinfo @@ -1,3 +1,3 @@ -MD5 (HTML-Mason-1.3101.tar.gz) = 4904681296efeb9c58bf0d9926d37407 -SHA256 (HTML-Mason-1.3101.tar.gz) = 0837a43aa08f783b15d61f8068655564172588ceb9183608316291d258c104c7 -SIZE (HTML-Mason-1.3101.tar.gz) = 386074 +MD5 (HTML-Mason-1.32.tar.gz) = b0abfdd869d828a0ebbf2f64cfb9d094 +SHA256 (HTML-Mason-1.32.tar.gz) = 623c0d221773372c0f4013ab17a0af1c1b10bd0a1bc7bd63afb5c942489522cc +SIZE (HTML-Mason-1.32.tar.gz) = 382521 diff --git a/www/p5-HTML-Mason/files/patch-Escapes.pm b/www/p5-HTML-Mason/files/patch-Escapes.pm deleted file mode 100644 index 4e96c63d4d84..000000000000 --- a/www/p5-HTML-Mason/files/patch-Escapes.pm +++ /dev/null @@ -1,10 +0,0 @@ ---- lib/HTML/Mason/Escapes.pm.orig Tue Aug 23 19:18:12 2005 -+++ lib/HTML/Mason/Escapes.pm Wed Nov 30 12:10:55 2005 -@@ -37,6 +37,7 @@ - { - return unless defined ${ $_[0] }; - -+ use bytes; - ${ $_[0] } =~ s/([^a-zA-Z0-9_.-])/uc sprintf("%%%02x",ord($1))/eg; - } - |