Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 66C081A9239 for ; Fri, 11 Feb 2022 09:47:47 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 94E0F84EF1; Fri, 11 Feb 2022 09:47:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C8F4C84EE7 for ; Fri, 11 Feb 2022 09:47:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id CwlrFcR3TOlk for ; Fri, 11 Feb 2022 09:47:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2B21A84EE0 for ; Fri, 11 Feb 2022 09:47:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2866DFB24; Fri, 11 Feb 2022 09:47:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164457286553580" MIME-Version: 1.0 Date: Fri, 11 Feb 2022 09:47:45 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/alex To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20220211094745.2866DFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164457286553580 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Fri Feb 11 09:47:45 UTC 2022 Modified Files: pkgsrc/devel/alex: Makefile PLIST distinfo Log Message: Update to alex-3.2.7.1 Change in 3.2.7.1 * Fix bug with repeated numeral characters outside of r{n,m} repetitions. This was a regression introduced in 3.2.7. Changes in 3.2.7 * Allow arbitrary repetitions in regexps. Previously, the r{n,m} and related forms were restricted to single digit numbers n and m. * DFA minimization used to crash on tokens of the form c* which produce automata with only accepting states. Considering the empty set of non-accepting states as an equivalence class caused minimization to crash with exception. * The small_base flag is removed. Extremely old GHCs will no longer build. * A number of bug fixes and clearer diagnostics. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/alex/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/alex/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/alex/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164457286553580 Content-Disposition: inline Content-Length: 2945 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/alex/Makefile diff -u pkgsrc/devel/alex/Makefile:1.9 pkgsrc/devel/alex/Makefile:1.10 --- pkgsrc/devel/alex/Makefile:1.9 Tue Jan 18 02:48:02 2022 +++ pkgsrc/devel/alex/Makefile Fri Feb 11 09:47:44 2022 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2022/01/18 02:48:02 pho Exp $ +# $NetBSD: Makefile,v 1.10 2022/02/11 09:47:44 pho Exp $ -DISTNAME= alex-3.2.6 +DISTNAME= alex-3.2.7.1 PKGNAME= ${DISTNAME} -PKGREVISION= 2 CATEGORIES= devel MAINTAINER= esg@sdf.lonestar.org Index: pkgsrc/devel/alex/PLIST diff -u pkgsrc/devel/alex/PLIST:1.3 pkgsrc/devel/alex/PLIST:1.4 --- pkgsrc/devel/alex/PLIST:1.3 Fri Apr 23 04:35:50 2021 +++ pkgsrc/devel/alex/PLIST Fri Feb 11 09:47:44 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2021/04/23 04:35:50 pho Exp $ +@comment $NetBSD: PLIST,v 1.4 2022/02/11 09:47:44 pho Exp $ bin/alex man/man1/alex.1 share/doc/alex/about.html @@ -20,18 +20,5 @@ share/doc/alex/syntax.html share/doc/alex/types.html share/doc/alex/wrappers.html share/doc/${HS_PLATFORM}/${PKGNAME}/LICENSE -share/${HS_PLATFORM}/${PKGNAME}/AlexTemplate -share/${HS_PLATFORM}/${PKGNAME}/AlexTemplate-debug -share/${HS_PLATFORM}/${PKGNAME}/AlexTemplate-ghc -share/${HS_PLATFORM}/${PKGNAME}/AlexTemplate-ghc-debug -share/${HS_PLATFORM}/${PKGNAME}/AlexTemplate-ghc-nopred -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-basic -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-basic-bytestring -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-gscan -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-monad -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-monad-bytestring -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-monadUserState -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-monadUserState-bytestring -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-posn -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-posn-bytestring -share/${HS_PLATFORM}/${PKGNAME}/AlexWrapper-strict-bytestring +share/${HS_PLATFORM}/${PKGNAME}/AlexTemplate.hs +share/${HS_PLATFORM}/${PKGNAME}/AlexWrappers.hs Index: pkgsrc/devel/alex/distinfo diff -u pkgsrc/devel/alex/distinfo:1.7 pkgsrc/devel/alex/distinfo:1.8 --- pkgsrc/devel/alex/distinfo:1.7 Tue Oct 26 10:14:13 2021 +++ pkgsrc/devel/alex/distinfo Fri Feb 11 09:47:44 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2021/10/26 10:14:13 nia Exp $ +$NetBSD: distinfo,v 1.8 2022/02/11 09:47:44 pho Exp $ -BLAKE2s (alex-3.2.6.tar.gz) = 575aa3d584697da702ebadd0c90a90bb134f20d1b4669a0720ea680d4ac76b58 -SHA512 (alex-3.2.6.tar.gz) = 05b6e55e9a1c348aea599d1130780a3d2a0a7c5f1db00b2c98bd34737cac9d48842fb1b1f98947a99d99013f94e39a6ffee1af8546f02fb2d32fcf362ff0f83c -Size (alex-3.2.6.tar.gz) = 108832 bytes +BLAKE2s (alex-3.2.7.1.tar.gz) = cd6f948f68df789358b38e72d11c315923c29c1b183f53fd01cf88f4ac253401 +SHA512 (alex-3.2.7.1.tar.gz) = f8ff12de874b905449fdda0d704f9e4ac30fa3e60e965f82d7bb2d6e3974cf926f85134d32878c48faf0ec4a002ea7240cf6696e1cbcad25a0eebb9d1850cc07 +Size (alex-3.2.7.1.tar.gz) = 108229 bytes --_----------=_164457286553580--