summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwen <wen@pkgsrc.org>2016-07-24 00:34:26 +0000
committerwen <wen@pkgsrc.org>2016-07-24 00:34:26 +0000
commita54a7478e37865aa4176d9be93ab325f4252dc28 (patch)
tree8a963bbcfac155fe6a7ede8b10c183945914d2f0
parent6ded4ad3859d39e57114c28c42ce947cebbdf8ec (diff)
downloadpkgsrc-a54a7478e37865aa4176d9be93ab325f4252dc28.tar.gz
Update to 1.06
Upstream changes: 1.06 12 May 2016 Added title tag to <a> elements RT 83302 Fixed a bug in the mailto regex RT 87872 (thanks to ANDK and SysPete) Fixed an unclosed { in the _hss_attval_size regex RT 98110, RT 104221, RT 107247, (thanks to fraserbn, jplesnik, dtenney, and SysPete) Fixed a spelling mistake (thanks to gregoa and SysPete)
-rw-r--r--www/p5-HTML-StripScripts/Makefile5
-rw-r--r--www/p5-HTML-StripScripts/distinfo11
-rw-r--r--www/p5-HTML-StripScripts/patches/patch-StripScripts.pm16
3 files changed, 7 insertions, 25 deletions
diff --git a/www/p5-HTML-StripScripts/Makefile b/www/p5-HTML-StripScripts/Makefile
index c213b70e2dc..4e7bb3e770f 100644
--- a/www/p5-HTML-StripScripts/Makefile
+++ b/www/p5-HTML-StripScripts/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.13 2016/06/08 19:25:04 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2016/07/24 00:34:26 wen Exp $
-DISTNAME= HTML-StripScripts-1.05
+DISTNAME= HTML-StripScripts-1.06
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 8
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=HTML/}
diff --git a/www/p5-HTML-StripScripts/distinfo b/www/p5-HTML-StripScripts/distinfo
index 0430582f850..f95f6af9e0d 100644
--- a/www/p5-HTML-StripScripts/distinfo
+++ b/www/p5-HTML-StripScripts/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.4 2015/11/04 02:47:09 agc Exp $
+$NetBSD: distinfo,v 1.5 2016/07/24 00:34:26 wen Exp $
-SHA1 (HTML-StripScripts-1.05.tar.gz) = d6d91f2b9c342370f9a1d08aec11b5720474bc49
-RMD160 (HTML-StripScripts-1.05.tar.gz) = 2e2c87164c04576b72a0cd6302c0838ca9f4cdae
-SHA512 (HTML-StripScripts-1.05.tar.gz) = e9de1a05721fa74b90168ef36596c4d32d5af365258f1a8b363ac7a2e2f15181e67cbadde1c1dcae1225b6d2850589fa14e252134cf799b84bf506f55f5e050d
-Size (HTML-StripScripts-1.05.tar.gz) = 43236 bytes
-SHA1 (patch-StripScripts.pm) = 0939392fa83186ecbe84b379f921e4c22aaf0e16
+SHA1 (HTML-StripScripts-1.06.tar.gz) = 5dca2d42f3dbdb575f4c2c719ebda5eeea020cd5
+RMD160 (HTML-StripScripts-1.06.tar.gz) = 8ae86836350471ce7b3fbb98d6c3eede1b384429
+SHA512 (HTML-StripScripts-1.06.tar.gz) = 5d358997816653e32dba8916ac95967da345ec8c018ba7d21ef3bebca9bdda3131917b596dd25f51a3c63f85df7babfeab6133b46a7e15a0cd0409c055e2c589
+Size (HTML-StripScripts-1.06.tar.gz) = 44745 bytes
diff --git a/www/p5-HTML-StripScripts/patches/patch-StripScripts.pm b/www/p5-HTML-StripScripts/patches/patch-StripScripts.pm
deleted file mode 100644
index 11b21b65b28..00000000000
--- a/www/p5-HTML-StripScripts/patches/patch-StripScripts.pm
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-StripScripts.pm,v 1.1 2015/09/26 14:22:56 bouyer Exp $
-
-Bug/typo now cause a fatal error in perl 5.22
-From https://rt.cpan.org/Public/Bug/Display.html?id=98110
-
---- StripScripts.pm.orig 2015-09-25 21:55:08.000000000 +0200
-+++ StripScripts.pm 2015-09-25 22:03:01.000000000 +0200
-@@ -1630,7 +1630,7 @@
-
- sub _hss_attval_size {
- $_[3]
-- =~ /^\s*([+-]?\d{1,20}(?:\.\d{1,20)?)\s*((?:\%|\*|ex|px|pc|cm|mm|in|pt|em)?)\s*$/i
-+ =~ /^\s*([+-]?\d{1,20}(?:\.\d{1,20})?)\s*((?:\%|\*|ex|px|pc|cm|mm|in|pt|em)?)\s*$/i
- ? lc "$1$2"
- : undef;
- }