From nobody@FreeBSD.org  Thu Dec 31 20:12:08 2009
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 55E551065696
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 31 Dec 2009 20:12:08 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id 451468FC1F
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 31 Dec 2009 20:12:08 +0000 (UTC)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nBVKC7uh073258
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 31 Dec 2009 20:12:07 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.3/8.14.3/Submit) id nBVKC7Pj073257;
	Thu, 31 Dec 2009 20:12:07 GMT
	(envelope-from nobody)
Message-Id: <200912312012.nBVKC7Pj073257@www.freebsd.org>
Date: Thu, 31 Dec 2009 20:12:07 GMT
From: "Pedro F. Giffuni" <giffunip@tutopia.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Update lang/nawk to 20091126
X-Send-Pr-Version: www-3.1
X-GNATS-Notify: ota@j.email.ne.jp

>Number:         142206
>Category:       ports
>Synopsis:       Update lang/nawk to 20091126
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    nemoliu
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Dec 31 20:20:02 UTC 2009
>Closed-Date:    Thu Jan 07 09:26:13 UTC 2010
>Last-Modified:  Thu Jan  7 09:30:03 UTC 2010
>Originator:     Pedro F. Giffuni
>Release:        8.0-RELEASE
>Organization:
>Environment:
FreeBSD mogwai.giffuni.net 8.0-RELEASE FreeBSD 8.0-RELEASE #12: Tue Dec  1 23:31:27 UTC 2009     pedro@mogwai.giffuni.net:/usr/src/sys/i386/compile/GENERIC  i386

>Description:
Minor fixes (from FIXES file)
Nov 26, 2009:
        fixed a long-standing issue with when FS takes effect.  a
        change to FS is now noticed immediately for subsequent splits.

        changed the name getline() to awkgetline() to avoid yet another
        name conflict somewhere.
Feb 11, 2009:
        temporarily for now defined HAS_ISBLANK, since that seems to
        be the best way through the thicket.  isblank arrived in C99,
        but seems to be arriving at different systems at different
        times.

Oct 8, 2008:
        fixed typo in b.c that set tmpvec wrongly.  no one had ever
        run into the problem, apparently.  thanks to alistair crooks.

>How-To-Repeat:

>Fix:
diff -ru nawk.orig/Makefile nawk/Makefile
--- nawk.orig/Makefile	2009-12-31 15:00:47.000000000 +0000
+++ nawk/Makefile	2009-12-31 15:01:50.000000000 +0000
@@ -7,8 +7,7 @@
 #
 
 PORTNAME=	nawk
-PORTVERSION=	20071023
-PORTREVISION=	1
+PORTVERSION=	20091126
 CATEGORIES=	lang
 MASTER_SITES=	http://www.cs.princeton.edu/~bwk/btl.mirror/
 DISTNAME=	awk
diff -ru nawk.orig/distinfo nawk/distinfo
--- nawk.orig/distinfo	2009-12-31 15:00:47.000000000 +0000
+++ nawk/distinfo	2009-12-31 15:02:07.000000000 +0000
@@ -1,3 +1,3 @@
-MD5 (nawk/awk.tar.gz) = 6678ed668b12c5f3051a6e88732c23d8
-SHA256 (nawk/awk.tar.gz) = 6e116bd19dbe76c7d253d77285b68bc1ce4ff08b17812c7c8125af5fd6ff726d
-SIZE (nawk/awk.tar.gz) = 117422
+MD5 (nawk/awk.tar.gz) = ec8545e7c732e4402e963c70ba766a5b
+SHA256 (nawk/awk.tar.gz) = 4dbf070864f8ea626ef2b24b2bca6efc8fb372cf6d96fdcf3926663a6e8d0099
+SIZE (nawk/awk.tar.gz) = 117853
diff -ru nawk.orig/files/patch-makefile nawk/files/patch-makefile
--- nawk.orig/files/patch-makefile	2009-12-31 15:00:47.000000000 +0000
+++ nawk/files/patch-makefile	2009-12-31 15:06:27.000000000 +0000
@@ -1,25 +1,25 @@
---- makefile.orig	Mon Apr 30 08:10:40 2007
-+++ makefile	Mon Jul  2 18:32:10 2007
-@@ -22,20 +22,11 @@
+--- makefile.orig	2009-02-09 20:20:44.000000000 +0000
++++ makefile	2009-12-31 15:05:35.000000000 +0000
+@@ -22,19 +22,12 @@
  # THIS SOFTWARE.
  # ****************************************************************/
  
 -CFLAGS = -g
 -CFLAGS = -O2
 -CFLAGS =
-+CFLAGS ?= -O2
- 
+-
 -CC = gcc -Wall -g -Wwrite-strings
 -CC = gcc -fprofile-arcs -ftest-coverage # then gcov f1.c; cat f1.c.gcov
 -CC = gcc -Wall -g
 -CC = cc
 -CC = gcc -O4
--CC = gcc -Wall -g
++CFLAGS ?= -O2
+ 
 +CC ?= cc
  
--
 -YACC = bison -y
 -YACC = yacc
++
 +YACC ?= yacc
  YFLAGS = -d
  


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Thu Dec 31 20:20:11 UTC 2009 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=142206 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: ota@j.email.ne.jp
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/142206: Update lang/nawk to 20091126
Date: Thu, 31 Dec 2009 20:20:09 UT

 Maintainer of lang/nawk,
 
 Please note that PR ports/142206 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/142206
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: Yoshihiro Ota <ota@j.email.ne.jp>
To: bug-followup@FreeBSD.org
Cc: ota@j.email.ne.jp, Edwin Groothuis <edwin@FreeBSD.org>
Subject: Re: ports/142206: Update lang/nawk to 20091126
Date: Thu, 7 Jan 2010 00:35:02 -0500

 The change looks reasonable and please accept the patch.
 
 Thanks,
 Hiro
 
 On Thu, 31 Dec 2009 20:20:09 UT
 Edwin Groothuis <edwin@FreeBSD.org> wrote:
 
 > Maintainer of lang/nawk,
 > 
 > Please note that PR ports/142206 has just been submitted.
 > 
 > If it contains a patch for an upgrade, an enhancement or a bug fix
 > you agree on, reply to this email stating that you approve the patch
 > and a committer will take care of it.
 > 
 > The full text of the PR can be found at:
 >     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/142206
 > 
 > -- 
 > Edwin Groothuis via the GNATS Auto Assign Tool
 > edwin@FreeBSD.org
State-Changed-From-To: feedback->open 
State-Changed-By: linimon 
State-Changed-When: Thu Jan 7 06:00:54 UTC 2010 
State-Changed-Why:  
Maintainer approved. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=142206 
Responsible-Changed-From-To: freebsd-ports-bugs->nemoliu  
Responsible-Changed-By: nemoliu 
Responsible-Changed-When: Thu Jan 7 09:21:48 UTC 2010 
Responsible-Changed-Why:  
i'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=142206 
State-Changed-From-To: open->closed  
State-Changed-By: nemoliu 
State-Changed-When: Thu Jan 7 09:25:37 UTC 2010 
State-Changed-Why:  
Committed. Thanks. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=142206 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/142206: commit references a PR
Date: Thu,  7 Jan 2010 09:25:32 +0000 (UTC)

 nemoliu     2010-01-07 09:25:23 UTC
 
   FreeBSD ports repository
 
   Modified files:
     lang/nawk            Makefile distinfo 
     lang/nawk/files      patch-makefile 
   Log:
   - Update to 20091126
   
   PR:     ports/142206
   Submitted by:   Pedro F. Giffuni <giffunip@tutopia.com>
   Approved by:    Yoshihiro Ota <ota@j.email.ne.jp> (maintainer)
   
   Revision  Changes    Path
   1.38      +1 -2      ports/lang/nawk/Makefile
   1.19      +3 -3      ports/lang/nawk/distinfo
   1.3       +7 -7      ports/lang/nawk/files/patch-makefile
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
