Source-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www/weblint weblint: fix the package so it actually runs



details:   https://anonhg.NetBSD.org/pkgsrc/rev/980beaef65f1
branches:  trunk
changeset: 435991:980beaef65f1
user:      gutteridge <gutteridge%pkgsrc.org@localhost>
date:      Wed Jul 22 21:45:41 2020 +0000

description:
weblint: fix the package so it actually runs

This is a very dated package that has Perl 4 era expectations. It used
an expression that would never have worked as intended (at least, not in
any version of Perl 5) and is past deprecation in modern Perl. It also
expects Perl 4 versions of what modern Perl 5 provides as Getopt::Long
and File::Find. It was simplest to satisfy its requirements by depending
on p5-Perl4-CoreLibs, rather than rewriting multiple lines of code to
modernize to the Perl 5 versions of these modules. With these changes,
the package now runs, and passes all of its test suite. Addresses
PR pkg/55511 by Stefan Schaeckeler.

diffstat:

 www/weblint/Makefile              |   6 ++++--
 www/weblint/distinfo              |   3 ++-
 www/weblint/patches/patch-weblint |  15 +++++++++++++++
 3 files changed, 21 insertions(+), 3 deletions(-)

diffs (52 lines):

diff -r cd2ff674b8cb -r 980beaef65f1 www/weblint/Makefile
--- a/www/weblint/Makefile      Wed Jul 22 20:45:13 2020 +0000
+++ b/www/weblint/Makefile      Wed Jul 22 21:45:41 2020 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.29 2019/08/11 13:25:10 wiz Exp $
+# $NetBSD: Makefile,v 1.30 2020/07/22 21:45:41 gutteridge Exp $
 
 DISTNAME=      weblint-1.020
-PKGREVISION=   7
+PKGREVISION=   8
 CATEGORIES=    www
 MASTER_SITES=  http://www.perl.com/CPAN/authors/id/NEILB/
 
@@ -12,4 +12,6 @@
 USE_TOOLS+=            perl:run
 INSTALLATION_DIRS+=    bin ${PKGMANDIR}/man1
 
+DEPENDS+=      p5-Perl4-CoreLibs-[0-9]*:../../devel/p5-Perl4-CoreLibs
+
 .include "../../mk/bsd.pkg.mk"
diff -r cd2ff674b8cb -r 980beaef65f1 www/weblint/distinfo
--- a/www/weblint/distinfo      Wed Jul 22 20:45:13 2020 +0000
+++ b/www/weblint/distinfo      Wed Jul 22 21:45:41 2020 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.6 2015/11/04 02:47:42 agc Exp $
+$NetBSD: distinfo,v 1.7 2020/07/22 21:45:41 gutteridge Exp $
 
 SHA1 (weblint-1.020.tar.gz) = 445cc723ff2a25095c48aa52bd3f082fef22ba0c
 RMD160 (weblint-1.020.tar.gz) = f139b8e7c726ad21daab20288ed93b688193ac44
 SHA512 (weblint-1.020.tar.gz) = dedcbdc43dd2edd786849bf0b919d3e808440a9f1f801b24aae1c4891da33f6801ab3b8abc030cfd7ba993b32ff90a811bd08c3ceeff7a77bbdc3c9877dff2b0
 Size (weblint-1.020.tar.gz) = 41264 bytes
 SHA1 (patch-aa) = 7fae3054ede92615b3996c5a97543371e1d7d5a3
+SHA1 (patch-weblint) = 5af08f5a15ba11fd90b979c6ae785369d9cc8648
diff -r cd2ff674b8cb -r 980beaef65f1 www/weblint/patches/patch-weblint
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/weblint/patches/patch-weblint Wed Jul 22 21:45:41 2020 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-weblint,v 1.1 2020/07/22 21:45:41 gutteridge Exp $
+
+Fix incorrect test of whether a hash is defined.
+
+--- weblint.orig       1997-09-04 09:19:55.000000000 +0000
++++ weblint
+@@ -843,7 +843,7 @@ sub WebLint
+          }
+          elsif ($closing == 0 && $id =~ /^($expectArgsRE)$/io)
+          {
+-            &whine($., 'expected-attribute', $id) unless defined %args;
++            &whine($., 'expected-attribute', $id) unless %args;
+          }
+ 
+          #--------------------------------------------------------



Home | Main Index | Thread Index | Old Index