pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/htmllint



Module Name:    pkgsrc
Committed By:   maya
Date:           Tue Aug 16 00:11:35 UTC 2016

Modified Files:
        pkgsrc/www/htmllint: Makefile distinfo
Added Files:
        pkgsrc/www/htmllint/patches: patch-htmllint.pm

Log Message:
perl defined(%hash) was deprecated.
patch package so it can run with this change to perl.

bump PKGREVISION


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 pkgsrc/www/htmllint/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/www/htmllint/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/www/htmllint/patches/patch-htmllint.pm

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/htmllint/Makefile
diff -u pkgsrc/www/htmllint/Makefile:1.34 pkgsrc/www/htmllint/Makefile:1.35
--- pkgsrc/www/htmllint/Makefile:1.34   Sat Jul  9 06:39:12 2016
+++ pkgsrc/www/htmllint/Makefile        Tue Aug 16 00:11:35 2016
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.34 2016/07/09 06:39:12 wiz Exp $
+# $NetBSD: Makefile,v 1.35 2016/08/16 00:11:35 maya Exp $
 #
 
 DISTNAME=      htmllint
 PKGNAME=       htmllint-20051019
-PKGREVISION=   6
+PKGREVISION=   7
 CATEGORIES=    www japanese
 MASTER_SITES=  http://openlab.ring.gr.jp/k16/htmllint/archives/
 EXTRACT_SUFX=  .zip

Index: pkgsrc/www/htmllint/distinfo
diff -u pkgsrc/www/htmllint/distinfo:1.15 pkgsrc/www/htmllint/distinfo:1.16
--- pkgsrc/www/htmllint/distinfo:1.15   Wed Nov  4 02:46:55 2015
+++ pkgsrc/www/htmllint/distinfo        Tue Aug 16 00:11:35 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.15 2015/11/04 02:46:55 agc Exp $
+$NetBSD: distinfo,v 1.16 2016/08/16 00:11:35 maya Exp $
 
 SHA1 (htmllint-20051019/htmllint.zip) = 9906763f2b59830d3199cacd9992c67ea74a11ab
 RMD160 (htmllint-20051019/htmllint.zip) = c0ab6f063435d4f0f420bad66ae48df90aef2943
@@ -12,3 +12,4 @@ SHA1 (patch-ah) = 26ba26f155a05d8bd0e7bf
 SHA1 (patch-ai) = 27068dafb150f20e30898ec546d07af54e487fce
 SHA1 (patch-aj) = cb95bd5bbce00979ea29574f55e001c8df32436f
 SHA1 (patch-ak) = af542b90c1992e9fbf57d1b09a0fc1c0fafbcc25
+SHA1 (patch-htmllint.pm) = 13edfb6deb7a5e2f6b09c4205489bc37676d61b1

Added files:

Index: pkgsrc/www/htmllint/patches/patch-htmllint.pm
diff -u /dev/null pkgsrc/www/htmllint/patches/patch-htmllint.pm:1.1
--- /dev/null   Tue Aug 16 00:11:35 2016
+++ pkgsrc/www/htmllint/patches/patch-htmllint.pm       Tue Aug 16 00:11:35 2016
@@ -0,0 +1,24 @@
+$NetBSD: patch-htmllint.pm,v 1.1 2016/08/16 00:11:35 maya Exp $
+
+defined(%hash) was deprecated in perl and errors out
+
+--- htmllint.pm.orig   2005-10-19 08:02:26.000000000 +0000
++++ htmllint.pm
+@@ -4695,7 +4695,7 @@ sub WhineOmitEndTag
+ 
+ sub Whine
+ {
+-  unless (defined(%messages)) { # �ǥХ���
++  unless (%messages) { # �ǥХ���
+     print @_, "\n";
+     return;
+   }
+@@ -5094,7 +5094,7 @@ sub ReadOptions
+ 
+ sub ListWarnings(;\@)
+ {
+-  &ReadWarnings unless defined(%messages);
++  &ReadWarnings unless %messages;
+   my $aref = shift;
+   my %msgshort;
+   foreach my $id (keys %shortid) { $msgshort{$shortid{$id}} = $id; }



Home | Main Index | Thread Index | Old Index