Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=0NujonE7; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=oNPGeHfm Received: by mail.netbsd.org (Postfix, from userid 605) id CA0FE84E6B; Fri, 12 Apr 2024 08:57:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712912247; bh=O4QcArRVHimmiYvzDv4fQ7rG4aW6Tokb1ERIoUEv1EA=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=0NujonE7GgpEnspVLfUZiEEDJ6hvJy8Qs9hYjUwIKcwE0wE3Uj6uESe67u0gW+tTt k1TNpAEID94Tl37kZo9KiVHYJOIGLs5myCT/GYzFsyC3npaWK2YxgRABK9ys6JzOTz X0xBnMGEYgseI86X+X/Gg2cdwT8HD4Wo5/qX66tU= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B90DF84E54 for ; Fri, 12 Apr 2024 08:57:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id lQPJ3X5NJ3m8 for ; Fri, 12 Apr 2024 08:57:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2B27584D08 for ; Fri, 12 Apr 2024 08:57:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712912245; bh=O4QcArRVHimmiYvzDv4fQ7rG4aW6Tokb1ERIoUEv1EA=; h=Date:From:Subject:To:Reply-To; b=oNPGeHfm3FgabbwxKZ9aTBFVsy/zJBK+nJsf647cHsYyh03BFj08IuN4Olab/152M 2ZyXTgVnmXUhfR3pMRMmNlejlQ+BAlapUxq6TJn36N+3OjJtD/mzXZP5pukzT+haTj JSesYMwgAAHTH0tooY7+PvM5jOt2qj9ZxQ2/zgYA= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2275FFA2C; Fri, 12 Apr 2024 08:57:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712912245110980" MIME-Version: 1.0 Date: Fri, 12 Apr 2024 08:57:25 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/alex To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240412085725.2275FFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712912245110980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Apr 12 08:57:25 UTC 2024 Modified Files: pkgsrc/devel/alex: Makefile distinfo Log Message: alex: update to 3.5.1.0. ## Changes in 3.5.1.0 * Drop generating output for GHC < 6.4. * Use qualified imports in generated code (except for `Prelude`) ([Issue #258](https://github.com/haskell/alex/issues/258)). * Suppress warnings `tabs` and `unused-imports` for generated code ([Issue #255](https://github.com/haskell/alex/issues/255)). * Tested with GHC 8.0 - 9.8.2. ## Changes in 3.5.0.0 * Add option `--numeric-version`. * Remove deprecated `-v` as alias for `--version`. * Add `-v` as placeholder for a future `--verbose` option. * Make `alex{G,S}etUserState` available with the `monadUserState-bytestring` wrapper ([Issue #220](https://github.com/haskell/alex/issues/220)). * Debugging lexer: print character in addition to its ASCII code ([PR #252](https://github.com/haskell/alex/pull/252)). * Tested with GHC 8.0 - 9.8.1. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/alex/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/alex/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712912245110980 Content-Disposition: inline Content-Length: 1422 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.18 pkgsrc/devel/alex/Makefile:1.19 --- pkgsrc/devel/alex/Makefile:1.18 Mon Nov 13 18:51:19 2023 +++ pkgsrc/devel/alex/Makefile Fri Apr 12 08:57:24 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2023/11/13 18:51:19 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2024/04/12 08:57:24 wiz Exp $ -DISTNAME= alex-3.4.0.1 +DISTNAME= alex-3.5.1.0 PKGNAME= ${DISTNAME} CATEGORIES= devel Index: pkgsrc/devel/alex/distinfo diff -u pkgsrc/devel/alex/distinfo:1.10 pkgsrc/devel/alex/distinfo:1.11 --- pkgsrc/devel/alex/distinfo:1.10 Mon Nov 13 18:51:19 2023 +++ pkgsrc/devel/alex/distinfo Fri Apr 12 08:57:24 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2023/11/13 18:51:19 wiz Exp $ +$NetBSD: distinfo,v 1.11 2024/04/12 08:57:24 wiz Exp $ -BLAKE2s (alex-3.4.0.1.tar.gz) = 41a92b30b35607df86a8a6e8d5b854ef53009daae1adde8cb5070a9e4d59780d -SHA512 (alex-3.4.0.1.tar.gz) = 6e187dacc6b1ce784cb6cf4e72ce8aed49d3fdb16a9cfc6735830184c12d68e78f0cf38bb737884b451db871bfa8ab9337f320e111eb6026faa0a9eb9ff2ac77 -Size (alex-3.4.0.1.tar.gz) = 85072 bytes +BLAKE2s (alex-3.5.1.0.tar.gz) = 04cdf0c215b7ce5a956eb727282b6549fdfad05374cd2fbf5fc83698ede45e2e +SHA512 (alex-3.5.1.0.tar.gz) = aa8aed9aff5bf3b4038d6ad31a0b4748df15dfe925c3be171070dc6a97ed357b04810f94467aa583cb75ba67f23244a0e0656c5294f4c2946e71f28b548586bb +Size (alex-3.5.1.0.tar.gz) = 85982 bytes --_----------=_1712912245110980--