Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id D29977A2EB for ; Sun, 1 Jan 2017 12:30:38 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8615C8571E; Sun, 1 Jan 2017 12:30:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 16EC78558C for ; Sun, 1 Jan 2017 12:30:38 +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 wkeeU2QjG8Nl for ; Sun, 1 Jan 2017 12:30:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 95BF684CF0 for ; Sun, 1 Jan 2017 12:30:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 93FDDFBA6; Sun, 1 Jan 2017 12:30:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148327383729240" MIME-Version: 1.0 Date: Sun, 1 Jan 2017 12:30:37 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/mdoclint To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170101123037.93FDDFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148327383729240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Jan 1 12:30:37 UTC 2017 Modified Files: pkgsrc/textproc/mdoclint: Makefile pkgsrc/textproc/mdoclint/files: mdoclint Log Message: Allow 2017. Bump version. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/textproc/mdoclint/Makefile cvs rdiff -u -r1.62 -r1.63 pkgsrc/textproc/mdoclint/files/mdoclint Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148327383729240 Content-Disposition: inline Content-Length: 1662 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/mdoclint/Makefile diff -u pkgsrc/textproc/mdoclint/Makefile:1.54 pkgsrc/textproc/mdoclint/Makefile:1.55 --- pkgsrc/textproc/mdoclint/Makefile:1.54 Thu Nov 24 12:09:14 2016 +++ pkgsrc/textproc/mdoclint/Makefile Sun Jan 1 12:30:37 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2016/11/24 12:09:14 wiz Exp $ +# $NetBSD: Makefile,v 1.55 2017/01/01 12:30:37 wiz Exp $ -DISTNAME= mdoclint-1.43 +DISTNAME= mdoclint-1.44 CATEGORIES= textproc MASTER_SITES= # none DISTFILES= # none Index: pkgsrc/textproc/mdoclint/files/mdoclint diff -u pkgsrc/textproc/mdoclint/files/mdoclint:1.62 pkgsrc/textproc/mdoclint/files/mdoclint:1.63 --- pkgsrc/textproc/mdoclint/files/mdoclint:1.62 Thu Nov 24 12:09:14 2016 +++ pkgsrc/textproc/mdoclint/files/mdoclint Sun Jan 1 12:30:37 2017 @@ -1,9 +1,9 @@ #!@PERL5@ # # $OpenBSD: mdoclint,v 1.48 2016/01/24 20:10:48 schwarze Exp $ -# $NetBSD: mdoclint,v 1.62 2016/11/24 12:09:14 wiz Exp $ +# $NetBSD: mdoclint,v 1.63 2017/01/01 12:30:37 wiz Exp $ # -# Copyright (c) 2001-2013 Thomas Klausner +# Copyright (c) 2001-2017 Thomas Klausner # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -228,7 +228,7 @@ my $valid_date_re; $valid_date_re = qr{\$Mdocdate\b}; } if (NETBSD) { - $valid_date_re = qr{(?:January|February|March|April|May|June|July|August|September|October|November|December)\s*[1-9][0-9]*,\s*(?:198[0-9]|199[0-9]|200[0-9]|201[0-6])$}o; + $valid_date_re = qr{(?:January|February|March|April|May|June|July|August|September|October|November|December)\s*[1-9][0-9]*,\s*(?:198[0-9]|199[0-9]|200[0-9]|201[0-7])$}o; } } --_----------=_148327383729240--