Received: by mail.netbsd.org (Postfix, from userid 605) id 697F284EBA; Tue, 13 Dec 2022 14:17:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9A50B84EB8 for ; Tue, 13 Dec 2022 14:17:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 3Gv1TdOJP1Kp for ; Tue, 13 Dec 2022 14:17:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EC50B84E80 for ; Tue, 13 Dec 2022 14:17:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E58C6FA90; Tue, 13 Dec 2022 14:17:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167094102752600" MIME-Version: 1.0 Date: Tue, 13 Dec 2022 14:17:07 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/www/htmllint To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20221213141707.E58C6FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167094102752600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Dec 13 14:17:07 UTC 2022 Modified Files: pkgsrc/www/htmllint: Makefile Log Message: htmllint: Work around NetBSD unzip for patched files. To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 pkgsrc/www/htmllint/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167094102752600 Content-Disposition: inline Content-Length: 854 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/htmllint/Makefile diff -u pkgsrc/www/htmllint/Makefile:1.44 pkgsrc/www/htmllint/Makefile:1.45 --- pkgsrc/www/htmllint/Makefile:1.44 Tue Jun 28 11:37:05 2022 +++ pkgsrc/www/htmllint/Makefile Tue Dec 13 14:17:07 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2022/06/28 11:37:05 wiz Exp $ +# $NetBSD: Makefile,v 1.45 2022/12/13 14:17:07 jperkin Exp $ DISTNAME= htmllint PKGNAME= htmllint-20111128 @@ -18,6 +18,13 @@ DEPENDS+= p5-libwww>=5.8:../../www/p5-li WRKSRC= ${WRKDIR} DIST_SUBDIR= ${PKGNAME_NOREV} +# Work around NetBSD unzip vs others for patched files. +SUBST_CLASSES+= cr +SUBST_STAGE.cr= post-extract +SUBST_FILES.cr= *.html htmllint* +SUBST_FILTER_CMD.cr= ${TR} -d '\r' +SUBST_NOOP_OK.cr= yes + REPLACE_PERL= htmllint.cgi htmllint parsedtd.pl tagslist.cgi USE_TOOLS+= perl:run NO_BUILD= yes --_----------=_167094102752600--