From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 9 17:50:15 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C45416A4DF for ; Wed, 9 Aug 2006 17:50:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B08E743D45 for ; Wed, 9 Aug 2006 17:50:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k79HoEh3038775 for ; Wed, 9 Aug 2006 17:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k79HoErb038773; Wed, 9 Aug 2006 17:50:14 GMT (envelope-from gnats) Resent-Date: Wed, 9 Aug 2006 17:50:14 GMT Resent-Message-Id: <200608091750.k79HoErb038773@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Stanislav Sedov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65D0016A4DA; Wed, 9 Aug 2006 17:41:43 +0000 (UTC) (envelope-from ssedov@mbsd.msk.ru) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 186ED43D68; Wed, 9 Aug 2006 17:41:38 +0000 (GMT) (envelope-from ssedov@mbsd.msk.ru) Received: from [217.118.83.1] (helo=fonon.realnet) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1GAs3S-0002bo-EI; Wed, 09 Aug 2006 21:41:36 +0400 Received: by fonon.realnet (Postfix, from userid 1001) id 3210812C65; Wed, 9 Aug 2006 21:40:55 +0600 (YEKST) Message-Id: <20060809154055.3210812C65@fonon.realnet> Date: Wed, 9 Aug 2006 21:40:55 +0600 (YEKST) From: Stanislav Sedov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ade@FreeBSD.org Subject: ports/101718: [PATCH] devel/bison2: update to 2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 17:50:15 -0000 >Number: 101718 >Category: ports >Synopsis: [PATCH] devel/bison2: update to 2.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Aug 09 17:50:13 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Stanislav Sedov >Release: FreeBSD 7.0-CURRENT i386 >Organization: MBSD labs, Inc. >Environment: System: FreeBSD fonon.realnet 7.0-CURRENT FreeBSD 7.0-CURRENT #1: Wed Aug 2 21:44:37 MSD >Description: - Remove unneccessary option --no-split(this is default) - Install example project - Update to 2.3 Copy of this message was sent to (ade@FreeBSD.org). >How-To-Repeat: >Fix: --- bison-2.3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/bison2/Makefile /var/tmp/ruby/bison2/Makefile --- /usr/ports/devel/bison2/Makefile Sun Mar 26 15:30:06 2006 +++ /var/tmp/ruby/bison2/Makefile Wed Aug 9 21:38:32 2006 @@ -6,8 +6,8 @@ # PORTNAME= bison -PORTVERSION= 2.1 -PORTREVISION= 2 +PORTVERSION= 2.3 +PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -25,8 +25,7 @@ GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - MAKEINFO="makeinfo --no-split" + LDFLAGS="-L${LOCALBASE}/lib" MAN1= bison.1 INFO= bison @@ -44,10 +43,25 @@ .error You have `USE_BISON' variable defined either in environment or in make(1) arguments. Please undefine and try again. .endif +.include + post-extract: @${RM} -f ${WRKSRC}/doc/bison.info* +# +# Requires texinfo 4.8 or above +# +.if ${OSVERSION} < 601000 + @${REINPLACE_CMD} "/^@headitem/d" ${WRKSRC}/doc/bison.texinfo +.endif + post-install: ${LN} -sf ${PREFIX}/bin/bison ${PREFIX}/bin/bison2 -.include +.if !defined(NOPORTDOCS) + ${MKDIR} ${EXAMPLESDIR}/calc++ + ${INSTALL_DATA} ${WRKSRC}/examples/calc++/*.[chly]* \ + ${EXAMPLESDIR}/calc++ +.endif + +.include diff -ruN --exclude=CVS /usr/ports/devel/bison2/distinfo /var/tmp/ruby/bison2/distinfo --- /usr/ports/devel/bison2/distinfo Thu Nov 17 05:17:54 2005 +++ /var/tmp/ruby/bison2/distinfo Wed Aug 9 16:40:47 2006 @@ -1,3 +1,3 @@ -MD5 (bison-2.1.tar.bz2) = ef3110077462b1140b2ae612626e8486 -SHA256 (bison-2.1.tar.bz2) = cb960197a77cfe8d36a969daa6eec577e22ca3d8fbae852b2cee5248bf6ae8ec -SIZE (bison-2.1.tar.bz2) = 1005925 +MD5 (bison-2.3.tar.bz2) = c18640c6ec31a169d351e3117ecce3ec +SHA256 (bison-2.3.tar.bz2) = b10d7e9e354be72aee4e4911cf19dd27b5c527d4e7200857365b5fcdeea0dffb +SIZE (bison-2.3.tar.bz2) = 1080319 diff -ruN --exclude=CVS /usr/ports/devel/bison2/pkg-plist /var/tmp/ruby/bison2/pkg-plist --- /usr/ports/devel/bison2/pkg-plist Sun Mar 26 15:30:06 2006 +++ /var/tmp/ruby/bison2/pkg-plist Wed Aug 9 21:15:47 2006 @@ -1,57 +1,81 @@ -@comment $FreeBSD: ports/devel/bison2/pkg-plist,v 1.23 2006/03/26 09:30:06 ade Exp $ bin/bison bin/bison2 share/aclocal/bison-i18n.m4 -%%DATADIR%%/c.m4 +%%DATADIR%%/README %%DATADIR%%/c++.m4 +%%DATADIR%%/c.m4 %%DATADIR%%/glr.c +%%DATADIR%%/glr.cc %%DATADIR%%/lalr1.cc +%%DATADIR%%/location.cc %%DATADIR%%/m4sugar/m4sugar.m4 -%%DATADIR%%/README %%DATADIR%%/yacc.c -%%NLS%%share/locale/da/LC_MESSAGES/bison.mo +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-driver.cc +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-driver.hh +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-parser.cc +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-parser.hh +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-parser.yy +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-scanner.cc +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-scanner.ll +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++.cc +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/location.hh +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/position.hh +%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/stack.hh %%NLS%%share/locale/da/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/de/LC_MESSAGES/bison.mo +%%NLS%%share/locale/da/LC_MESSAGES/bison.mo %%NLS%%share/locale/de/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/es/LC_MESSAGES/bison.mo +%%NLS%%share/locale/de/LC_MESSAGES/bison.mo %%NLS%%share/locale/es/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/et/LC_MESSAGES/bison.mo +%%NLS%%share/locale/es/LC_MESSAGES/bison.mo %%NLS%%share/locale/et/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/fr/LC_MESSAGES/bison.mo +%%NLS%%share/locale/et/LC_MESSAGES/bison.mo %%NLS%%share/locale/fr/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/ga/LC_MESSAGES/bison.mo +%%NLS%%share/locale/fr/LC_MESSAGES/bison.mo %%NLS%%share/locale/ga/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/hr/LC_MESSAGES/bison.mo +%%NLS%%share/locale/ga/LC_MESSAGES/bison.mo %%NLS%%share/locale/hr/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/id/LC_MESSAGES/bison.mo +%%NLS%%share/locale/hr/LC_MESSAGES/bison.mo %%NLS%%share/locale/id/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/it/LC_MESSAGES/bison.mo +%%NLS%%share/locale/id/LC_MESSAGES/bison.mo %%NLS%%share/locale/it/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/ja/LC_MESSAGES/bison.mo +%%NLS%%share/locale/it/LC_MESSAGES/bison.mo %%NLS%%share/locale/ja/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/ms/LC_MESSAGES/bison.mo +%%NLS%%share/locale/ja/LC_MESSAGES/bison.mo %%NLS%%share/locale/ms/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/nb/LC_MESSAGES/bison.mo +%%NLS%%share/locale/ms/LC_MESSAGES/bison.mo %%NLS%%share/locale/nb/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/nl/LC_MESSAGES/bison.mo +%%NLS%%share/locale/nb/LC_MESSAGES/bison.mo %%NLS%%share/locale/nl/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/pl/LC_MESSAGES/bison.mo +%%NLS%%share/locale/nl/LC_MESSAGES/bison.mo %%NLS%%share/locale/pl/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/bison.mo +%%NLS%%share/locale/pl/LC_MESSAGES/bison.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/ro/LC_MESSAGES/bison.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/bison.mo %%NLS%%share/locale/ro/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/ru/LC_MESSAGES/bison.mo +%%NLS%%share/locale/ro/LC_MESSAGES/bison.mo %%NLS%%share/locale/ru/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/rw/LC_MESSAGES/bison.mo +%%NLS%%share/locale/ru/LC_MESSAGES/bison.mo %%NLS%%share/locale/rw/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/sv/LC_MESSAGES/bison.mo +%%NLS%%share/locale/rw/LC_MESSAGES/bison.mo +%%NLS%%share/locale/sl/LC_MESSAGES/bison-runtime.mo %%NLS%%share/locale/sv/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/tr/LC_MESSAGES/bison.mo +%%NLS%%share/locale/sv/LC_MESSAGES/bison.mo %%NLS%%share/locale/tr/LC_MESSAGES/bison-runtime.mo -%%NLS%%share/locale/vi/LC_MESSAGES/bison.mo +%%NLS%%share/locale/tr/LC_MESSAGES/bison.mo %%NLS%%share/locale/vi/LC_MESSAGES/bison-runtime.mo +%%NLS%%share/locale/vi/LC_MESSAGES/bison.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/bison-runtime.mo +%%NLS%%@dirrmtry share/locale/zh_TW/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/zh_TW +%%NLS%%@dirrmtry share/locale/sl/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/sl %%NLS%%@dirrmtry share/locale/rw/LC_MESSAGES %%NLS%%@dirrmtry share/locale/rw -@dirrm %%DATADIR%%/m4sugar -@dirrm %%DATADIR%% +%%NLS%%@dirrmtry share/locale/ro/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ro +%%NLS%%@dirrmtry share/locale/pl/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/pl +%%PORTDOCS%%@dirrmtry %%EXAMPLESDIR%%/calc++ +%%PORTDOCS%%@dirrmtry %%EXAMPLESDIR%% +@dirrmtry %%DATADIR%%/m4sugar +@dirrmtry %%DATADIR%% --- bison-2.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: