Received: by mail.netbsd.org (Postfix, from userid 605) id 8C66E84D93; Sat, 26 Sep 2020 14:25:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1244384D90 for ; Sat, 26 Sep 2020 14:25:53 +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 jbymM_-RmCTh for ; Sat, 26 Sep 2020 14:25:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8A73284D81 for ; Sat, 26 Sep 2020 14:25:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 83F89FB28; Sat, 26 Sep 2020 14:25:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160113035246190" MIME-Version: 1.0 Date: Sat, 26 Sep 2020 14:25:52 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/mail/mairix To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20200926142552.83F89FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160113035246190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sat Sep 26 14:25:52 UTC 2020 Modified Files: pkgsrc/mail/mairix: distinfo pkgsrc/mail/mairix/patches: patch-dfasyn_Makefile Log Message: (mail/mairix) build fix, probably bison 3.4.2 to 3.7.1 adaptation To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/mail/mairix/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/mail/mairix/patches/patch-dfasyn_Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160113035246190 Content-Disposition: inline Content-Length: 2132 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/mairix/distinfo diff -u pkgsrc/mail/mairix/distinfo:1.7 pkgsrc/mail/mairix/distinfo:1.8 --- pkgsrc/mail/mairix/distinfo:1.7 Tue Nov 3 23:27:09 2015 +++ pkgsrc/mail/mairix/distinfo Sat Sep 26 14:25:52 2020 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.7 2015/11/03 23:27:09 agc Exp $ +$NetBSD: distinfo,v 1.8 2020/09/26 14:25:52 mef Exp $ SHA1 (mairix-0.21.tar.gz) = a5f4767462d3f86950acaa0dafd132de0e0d0c43 RMD160 (mairix-0.21.tar.gz) = 68e9d0cf509c8524aa9e2f519b4385fd198f996a SHA512 (mairix-0.21.tar.gz) = 82a7f5bc92efb7d6960922e8c05b075619b7072e90a0f3c0d3477ff5fb3cf9607e81748e1394f599e5049033207fbe72a373aaf872ac8db0f5e88ef17a5de1bc Size (mairix-0.21.tar.gz) = 159089 bytes SHA1 (patch-aa) = bc87571018a2470b09dd7f096794439ba8244025 -SHA1 (patch-dfasyn_Makefile) = 6788d8e793e05c3ee078d8471a69adaffe4cb1b3 +SHA1 (patch-dfasyn_Makefile) = 303257019b16e5c715e4fad0e9e45e1c9e4d8cf9 Index: pkgsrc/mail/mairix/patches/patch-dfasyn_Makefile diff -u pkgsrc/mail/mairix/patches/patch-dfasyn_Makefile:1.1 pkgsrc/mail/mairix/patches/patch-dfasyn_Makefile:1.2 --- pkgsrc/mail/mairix/patches/patch-dfasyn_Makefile:1.1 Mon Nov 11 06:53:59 2013 +++ pkgsrc/mail/mairix/patches/patch-dfasyn_Makefile Sat Sep 26 14:25:52 2020 @@ -1,16 +1,20 @@ -$NetBSD: patch-dfasyn_Makefile,v 1.1 2013/11/11 06:53:59 dholland Exp $ +$NetBSD: patch-dfasyn_Makefile,v 1.2 2020/09/26 14:25:52 mef Exp $ Fix MAKE_JOBS build; without this hack it runs two concurrent copies of bison that produce garbage output. ---- dfasyn/Makefile~ 2007-06-22 20:18:00.000000000 +0000 +2. fix for bison-3.7.1 + +--- dfasyn/Makefile.orig 2007-06-22 20:18:00.000000000 +0000 +++ dfasyn/Makefile -@@ -32,7 +32,7 @@ OBJ = dfasyn.o parse.o scan.o \ - n2d.o expr.o evaluator.o \ - tabcompr.o compdfa.o +@@ -47,8 +47,8 @@ dfasyn : $(OBJ) + + parse.c parse.h : parse.y + bison -v -d parse.y +- mv parse.tab.c parse.c +- mv parse.tab.h parse.h ++ cp -f parse.tab.c parse.c ++ cp -f parse.tab.h parse.h --all : dfasyn -+all : parse.h .WAIT dfasyn + parse.o : parse.c dfasyn.h - install : all - [ -d $(bindir) ] || mkdir -p $(bindir) --_----------=_160113035246190--