pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/byacc byacc: update to 20210619 and take MAINTAI...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6148832372e0
branches:  trunk
changeset: 455846:6148832372e0
user:      fcambus <fcambus%pkgsrc.org@localhost>
date:      Tue Jul 13 07:51:16 2021 +0000

description:
byacc: update to 20210619 and take MAINTAINER.

2021-06-19  Thomas E. Dickey  <dickey%invisible-island.net@localhost>

        * configure: regen

        * aclocal.m4: resync with my-autoconf

        * btyaccpar.skel, yaccpar.skel: cancel unused assignments

        * output.c: gcc warning

        * test/run_test.sh, test/run_lint.sh, test/run_make.sh:
        shellcheck-warnings

2021-06-19  jannick0

        * test/run_test.sh: changes suggested at
                https://github.com/jannick0/byacc-snapshots/tree/YYINT-fix-20210520

2021-06-13  Thomas E. Dickey  <dickey%invisible-island.net@localhost>

        * aclocal.m4: resync with my-autoconf

2021-05-24  Thomas E. Dickey  <dickey%invisible-island.net@localhost>

        * config.guess: 2021-05-24 (repaired)
            From: Dmitry V. Levin <ldv%altlinux.org@localhost>
            config.guess: fix shellcheck warning SC2154

            While, according to Plan 9 documentation, the environment variable
            $cputype is set to the name of the kernel's CPU's architecture,
            shellcheck warns that cputype is referenced but not assigned.
            Be on the safe side and do not use cputype if it is not defined
            or empty.

            * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.

        * config.guess: 2021-05-24 (repaired)
            From: Dmitry V. Levin <ldv%altlinux.org@localhost>
            config.guess: remove redundant quotes in case commands

            According to the GNU Autoconf Portable Shell Programming manual,
            the Bourne shell does not systematically split variables and back-quoted
            expressions, in particular on the right-hand side of assignments and in
            the argument of 'case'.

            The change is made automatically using the following command:
            $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess

            * config.guess: Simplify case commands by removing quotes around the
            argument.

            Suggested-by: Jacob Bachmeyer <jcb%gnu.org@localhost>

        * config.guess: 2021-05-24 (repaired)
            From: Dmitry V. Levin <ldv%altlinux.org@localhost>
            config.guess: simplify exit status workaround on alphaev67-dec-osf5.1

            Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
            reset before exiting to avoid a spurious non-zero exit status on
            alphaev67-dec-osf5.1.  Simplify that code a bit by moving the exit trap
            reset around.

            * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
            * doc/config.guess.1: Regenerate.

2021-05-20  Thomas E. Dickey  <dickey%invisible-island.net@localhost>

        * mkpar.c, reader.c: change printf format to allow for long-YYINT

        * lalr.c, lr0.c: change type, fix gcc warnings

        * verbose.c: change type, fix gcc warnings
        also change printf format, to allow for long YYINT

        * output.c: change type, fix gcc warnings
        also change printf format, to allow for long-YYINT

        * package/debian/rules, package/byacc.spec:
        change max-table-size to correspond with switch of YYINT from short to int

        * defs.h:
        change default for MAXTABLE to INT_MAX, like the FreeBSD port.
        that requires changing some types to eliminate type-mismatches.

        * configure: regen

2021-05-01  Thomas E. Dickey  <dickey%invisible-island.net@localhost>

        * aclocal.m4: resync with my-autoconf

2021-04-30  Thomas E. Dickey  <dickey%invisible-island.net@localhost>

        * config.sub: 2021-04-30 (repaired)
            From: Maciej W. Rozycki <macro%orcam.me.uk@localhost>
            config.sub: Handle MIPS R3 and R5 ISA levels with CPU names

            Complement binutils commit ae52f4830604 ("Add MIPS r3 and r5 support.")
            and recognize MIPS CPU patterns for the R3 and R5 ISA levels, used by
            GAS to set defaults.

            * config.sub (mipsisa32r3, mipsisa32r3el, mipsisa32r5, mipsisa32r5el,
            mipsisa64r3, mipsisa64r3el, mipsisa64r5, mipsisa64r5el): Recognize.
            * doc/config.sub.1: Regenerate.
            * testsuite/config-sub.data: Add test cases.

            Signed-off-by: Dmitry V. Levin <ldv%altlinux.org@localhost>

2021-04-21  Thomas E. Dickey  <dickey%invisible-island.net@localhost>

        * config.guess, config.sub: 2021-04-21 (repaired)
            From: Vineet Gupta <Vineet.Gupta1%synopsys.com@localhost>
            Recognize arc64

            This paves way for setting up arc64 software ecosystem.

            $ make check
            cd testsuite && bash config-guess.sh && rm uname
            PASS: config.guess checks (136 tests)
            cd testsuite && bash config-sub.sh
            PASS: config.sub checks (853 tests)
            PASS: config.sub idempotency checks (790 tests)
            PASS: config.sub canonicalise each config.guess testcase (136 tests)

            * config.guess (arc64:Linux:*:*): Recognize.
            * config.sub (arc64): Likewise.
            * doc/config.guess.1: Regenerate.
            * doc/config.sub.1: Likewise.
            * testsuite/config-guess.data: Add a test case for arc64.
            * testsuite/config-sub.data (arc64, arc*-elf): Add test cases.

            Signed-off-by: Vineet Gupta <vgupta%synopsys.com@localhost>
            Signed-off-by: Dmitry V. Levin <ldv%altlinux.org@localhost>

2021-04-16  Thomas E. Dickey  <dickey%invisible-island.net@localhost>

        * config.guess: 2021-04-16 (repaired)
            From: Purple Rain <purplerain%secbsd.org@localhost>
            config.guess: add SecBSD support

            * config.guess (*:SecBSD:*:*): Recognize.
            * doc/config.guess.1: Regenerate.
            * testsuite/config-guess.data: Add a test case.

            Signed-off-by: Dmitry V. Levin <ldv%altlinux.org@localhost>

        * config.sub: 2021-04-16 (repaired)
            From: Purple Rain <purplerain%secbsd.org@localhost>
            config.sub: add SecBSD support

            * config.sub (secbsd*): Recognize.
            * doc/config.sub.1: Regenerate.
            * testsuite/config-sub.data: Add x86_64-secbsd.

            Signed-off-by: Dmitry V. Levin <ldv%altlinux.org@localhost>

diffstat:

 devel/byacc/Makefile |   6 +++---
 devel/byacc/distinfo |  10 +++++-----
 2 files changed, 8 insertions(+), 8 deletions(-)

diffs (34 lines):

diff -r 354315907260 -r 6148832372e0 devel/byacc/Makefile
--- a/devel/byacc/Makefile      Tue Jul 13 07:44:14 2021 +0000
+++ b/devel/byacc/Makefile      Tue Jul 13 07:51:16 2021 +0000
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile,v 1.20 2021/04/02 18:59:31 fcambus Exp $
+# $NetBSD: Makefile,v 1.21 2021/07/13 07:51:16 fcambus Exp $
 #
 
-DISTNAME=      byacc-20210328
+DISTNAME=      byacc-20210619
 CATEGORIES=    devel
 MASTER_SITES=  https://invisible-mirror.net/archives/byacc/
 EXTRACT_SUFX=  .tgz
 
-MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+MAINTAINER=    fcambus%NetBSD.org@localhost
 HOMEPAGE=      https://invisible-island.net/byacc/byacc.html
 COMMENT=       Berkeley Yacc
 LICENSE=       public-domain
diff -r 354315907260 -r 6148832372e0 devel/byacc/distinfo
--- a/devel/byacc/distinfo      Tue Jul 13 07:44:14 2021 +0000
+++ b/devel/byacc/distinfo      Tue Jul 13 07:51:16 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.13 2021/04/02 18:59:31 fcambus Exp $
+$NetBSD: distinfo,v 1.14 2021/07/13 07:51:16 fcambus Exp $
 
-SHA1 (byacc-20210328.tgz) = cf0587064c8173d46dac1b551d4a314a11b4f6ad
-RMD160 (byacc-20210328.tgz) = f5a66450b26ecee9f75abf160ad54e29ee6b9374
-SHA512 (byacc-20210328.tgz) = fdcf98976524c1f37710cf9551a357ebc24ece94dd2bd10501d4fafb914a7ab4847926b99647e387f22a3d3206e6a4bfc14a4c41115702382fcc1d6f688f9dae
-Size (byacc-20210328.tgz) = 874281 bytes
+SHA1 (byacc-20210619.tgz) = 530c9513bda9283745f6a3a9908d986c808fd9da
+RMD160 (byacc-20210619.tgz) = 481b1add990c34206ff23b3213311e6aedc6b76e
+SHA512 (byacc-20210619.tgz) = 878c7b5ab17bcfb0acb29ab06066630ee42cae7e768c7386308ec1f58e61744b5b6baaf7e9416cef32f9be406af65eb8f791ccf6e192caaf3f34954e6bcc1642
+Size (byacc-20210619.tgz) = 880118 bytes



Home | Main Index | Thread Index | Old Index