From owner-svn-ports-all@freebsd.org Fri Jun 26 10:34:37 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 67C6E35449D; Fri, 26 Jun 2020 10:34:37 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49tYCx1b3Sz4QwY; Fri, 26 Jun 2020 10:34:37 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2DA1112F01; Fri, 26 Jun 2020 10:34:37 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05QAYbgk038062; Fri, 26 Jun 2020 10:34:37 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05QAYaDe038059; Fri, 26 Jun 2020 10:34:36 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <202006261034.05QAYaDe038059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Fri, 26 Jun 2020 10:34:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r540489 - in head/devel/fhist: . files X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: in head/devel/fhist: . files X-SVN-Commit-Revision: 540489 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2020 10:34:37 -0000 Author: fernape Date: Fri Jun 26 10:34:36 2020 New Revision: 540489 URL: https://svnweb.freebsd.org/changeset/ports/540489 Log: devel/fhist: and fix bison issues and change maintership * Retrofitted Yacc grammars to handle bison 3.6.X * Submitter takes maintainership Submitted by: aryeh.friedman@gmail.com Added: head/devel/fhist/files/patch-common_sub_expr__gram.y (contents, props changed) Modified: head/devel/fhist/Makefile head/devel/fhist/files/patch-common_ac_time.h Modified: head/devel/fhist/Makefile ============================================================================== --- head/devel/fhist/Makefile Fri Jun 26 09:35:06 2020 (r540488) +++ head/devel/fhist/Makefile Fri Jun 26 10:34:36 2020 (r540489) @@ -4,17 +4,19 @@ PORTNAME= fhist PORTVERSION= 1.21 DISTVERSIONSUFFIX= .D001 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= aryeh.friedman@gmail.com COMMENT= Utilities to maintain file history, do file comparisons, and merges LICENSE= GPLv3 LIB_DEPENDS= libexplain.so:devel/libexplain +USES= bison localbase + OPTIONS_DEFINE= NLS WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} @@ -24,9 +26,6 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-nlsdir=${PREFIX}/share/locale/en/LC_MESSAGES ALL_TARGET= all-bin MAKE_JOBS_UNSAFE=yes - -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib PLIST_FILES= bin/fcomp bin/fhist bin/fmerge \ man/man1/fcomp.1.gz man/man1/fhist.1.gz \ Modified: head/devel/fhist/files/patch-common_ac_time.h ============================================================================== --- head/devel/fhist/files/patch-common_ac_time.h Fri Jun 26 09:35:06 2020 (r540488) +++ head/devel/fhist/files/patch-common_ac_time.h Fri Jun 26 10:34:36 2020 (r540489) @@ -1,6 +1,6 @@ ---- common/ac/time.h.orig Wed Dec 18 02:09:57 2002 -+++ common/ac/time.h Wed Dec 18 02:10:04 2002 -@@ -29,7 +29,7 @@ +--- common/ac/time.h.orig 2012-07-13 04:47:15 UTC ++++ common/ac/time.h +@@ -26,7 +26,7 @@ * Catch-22: Dec Alpha OSF/1: need to include time.h before sys/time.h * before time.h */ Added: head/devel/fhist/files/patch-common_sub_expr__gram.y ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/fhist/files/patch-common_sub_expr__gram.y Fri Jun 26 10:34:36 2020 (r540489) @@ -0,0 +1,10 @@ +--- common/sub/expr_gram.y.orig 2012-07-13 04:47:15 UTC ++++ common/sub/expr_gram.y +@@ -16,6 +16,7 @@ + * along with this program. If not, see . + */ + ++%define api.prefix {sub_expr_gram_} + %{ + + #include