Date: Mon, 10 Nov 2014 19:18:50 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372409 - in head/lang/nawk: . files Message-ID: <201411101918.sAAJIo1n030248@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Mon Nov 10 19:18:49 2014 New Revision: 372409 URL: https://svnweb.freebsd.org/changeset/ports/372409 QAT: https://qat.redports.org/buildarchive/r372409/ Log: lang/nawk: Upgrade version 20110810 => 20121220 While here, set the DIST_SUBDIR to something unique since the distfile has the same name between versions. Also reset maintainship as Hiro doesn't use nawk on FreeBSD and updates are infrequent. PR: 187543 Submitted by: Pedro Giffuni Tweaks by: marino@ Deleted: head/lang/nawk/files/patch-awk.h head/lang/nawk/files/patch-lex.c head/lang/nawk/files/patch-main.c head/lang/nawk/files/patch-proto.h head/lang/nawk/files/patch-run.c head/lang/nawk/files/patch-tran.c Modified: head/lang/nawk/Makefile head/lang/nawk/distinfo head/lang/nawk/files/patch-makefile Modified: head/lang/nawk/Makefile ============================================================================== --- head/lang/nawk/Makefile Mon Nov 10 18:23:31 2014 (r372408) +++ head/lang/nawk/Makefile Mon Nov 10 19:18:49 2014 (r372409) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= nawk -PORTVERSION= 20110810 +PORTVERSION= 20121220 CATEGORIES= lang MASTER_SITES= http://www.cs.princeton.edu/~bwk/btl.mirror/ DISTNAME= awk -DIST_SUBDIR= ${PORTNAME} +DIST_SUBDIR= nawk-${PORTVERSION} -MAINTAINER= ota@j.email.ne.jp +MAINTAINER= ports@FreeBSD.org COMMENT= Brian Kernighan's pattern scanning and processing language NO_WRKSUBDIR= yes Modified: head/lang/nawk/distinfo ============================================================================== --- head/lang/nawk/distinfo Mon Nov 10 18:23:31 2014 (r372408) +++ head/lang/nawk/distinfo Mon Nov 10 19:18:49 2014 (r372409) @@ -1,2 +1,2 @@ -SHA256 (nawk/awk.tar.gz) = 48af177922700c313aa9d22100d230d2d0280d56b8598d80f583d57b44bf63a8 -SIZE (nawk/awk.tar.gz) = 108035 +SHA256 (nawk-20121220/awk.tar.gz) = 8dc092165c5a4e1449f964286483d06d0dbfba4b0bd003cb5dab30de8f6d9b83 +SIZE (nawk-20121220/awk.tar.gz) = 88970 Modified: head/lang/nawk/files/patch-makefile ============================================================================== --- head/lang/nawk/files/patch-makefile Mon Nov 10 18:23:31 2014 (r372408) +++ head/lang/nawk/files/patch-makefile Mon Nov 10 19:18:49 2014 (r372409) @@ -1,6 +1,6 @@ ---- makefile.orig 2011-06-11 14:13:08.000000000 +0000 -+++ makefile 2011-08-09 10:58:25.000000000 +0000 -@@ -22,18 +22,9 @@ +--- makefile.orig 2012-12-20 13:58:45 UTC ++++ makefile +@@ -22,19 +22,9 @@ # THIS SOFTWARE. # ****************************************************************/ @@ -8,16 +8,18 @@ -CFLAGS = -O2 -CFLAGS = - --CC = gcc -Wall -g --CC = cc -CC = gcc -Wall -g -Wwrite-strings -CC = gcc -fprofile-arcs -ftest-coverage # then gcov f1.c; cat f1.c.gcov +-CC = gcc -g -Wall -pedantic -CC = gcc -O4 -Wall -pedantic -fno-strict-aliasing -+CC ?= cc - --YACC = bison -y --YACC = yacc -+YACC ?= yacc - YFLAGS = -d +- +-YACC = bison -d -y +-YACC = yacc -d -S +-#YFLAGS = -d -S +- # -S uses sprintf in yacc parser instead of sprint ++ ++CC?= cc ++YACC?= yacc -d OFILES = b.o main.o parse.o proctab.o tran.o lib.o run.o lex.o +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411101918.sAAJIo1n030248>