[Midnightbsd-cvs] mports [22442] U trunk/lang/nawk/files: upgrade

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri May 12 19:26:51 EDT 2017


Revision: 22442
          http://svnweb.midnightbsd.org/mports/?rev=22442
Author:   laffer1
Date:     2017-05-12 19:26:51 -0400 (Fri, 12 May 2017)
Log Message:
-----------
upgrade

Modified Paths:
--------------
    trunk/lang/nawk/Makefile
    trunk/lang/nawk/distinfo
    trunk/lang/nawk/files/patch-makefile

Property Changed:
----------------
    trunk/lang/nawk/files/patch-awk.h
    trunk/lang/nawk/files/patch-lex.c
    trunk/lang/nawk/files/patch-main.c
    trunk/lang/nawk/files/patch-makefile
    trunk/lang/nawk/files/patch-proto.h
    trunk/lang/nawk/files/patch-run.c
    trunk/lang/nawk/files/patch-tran.c

Modified: trunk/lang/nawk/Makefile
===================================================================
--- trunk/lang/nawk/Makefile	2017-05-12 23:24:06 UTC (rev 22441)
+++ trunk/lang/nawk/Makefile	2017-05-12 23:26:51 UTC (rev 22442)
@@ -2,22 +2,22 @@
 # $FreeBSD: ports/lang/nawk/Makefile,v 1.33 2005/12/01 11:21:05 flz Exp $
 
 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=	ports at MidnightBSD.org
 COMMENT=	Brian Kernighan's pattern scanning and processing language
+
 LICENSE=	mit
 
 NO_WRKSUBDIR=	yes
 MAKEFILE=	makefile
 ALL_TARGET=	a.out
-MAN1=		nawk.1
 CFLAGS+=	-DHAS_ISBLANK
-PLIST_FILES=	bin/nawk
+PLIST_FILES=	bin/nawk  man/man1/nawk.1.gz
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/a.out ${PREFIX}/bin/nawk

Modified: trunk/lang/nawk/distinfo
===================================================================
--- trunk/lang/nawk/distinfo	2017-05-12 23:24:06 UTC (rev 22441)
+++ trunk/lang/nawk/distinfo	2017-05-12 23:26:51 UTC (rev 22442)
@@ -1,3 +1,2 @@
-SHA256 (nawk/awk.tar.gz) = 48af177922700c313aa9d22100d230d2d0280d56b8598d80f583d57b44bf63a8
-RMD160 (nawk/awk.tar.gz) = 0c8536e9d2212b05f77b9939a6d386dd819aaa66
-SIZE (nawk/awk.tar.gz) = 108035
+SHA256 (nawk-20121220/awk.tar.gz) = 8dc092165c5a4e1449f964286483d06d0dbfba4b0bd003cb5dab30de8f6d9b83
+SIZE (nawk-20121220/awk.tar.gz) = 88970

Index: trunk/lang/nawk/files/patch-awk.h
===================================================================
--- trunk/lang/nawk/files/patch-awk.h	2017-05-12 23:24:06 UTC (rev 22441)
+++ trunk/lang/nawk/files/patch-awk.h	2017-05-12 23:26:51 UTC (rev 22442)

Property changes on: trunk/lang/nawk/files/patch-awk.h
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Index: trunk/lang/nawk/files/patch-lex.c
===================================================================
--- trunk/lang/nawk/files/patch-lex.c	2017-05-12 23:24:06 UTC (rev 22441)
+++ trunk/lang/nawk/files/patch-lex.c	2017-05-12 23:26:51 UTC (rev 22442)

Property changes on: trunk/lang/nawk/files/patch-lex.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Index: trunk/lang/nawk/files/patch-main.c
===================================================================
--- trunk/lang/nawk/files/patch-main.c	2017-05-12 23:24:06 UTC (rev 22441)
+++ trunk/lang/nawk/files/patch-main.c	2017-05-12 23:26:51 UTC (rev 22442)

Property changes on: trunk/lang/nawk/files/patch-main.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Modified: trunk/lang/nawk/files/patch-makefile
===================================================================
--- trunk/lang/nawk/files/patch-makefile	2017-05-12 23:24:06 UTC (rev 22441)
+++ trunk/lang/nawk/files/patch-makefile	2017-05-12 23:26:51 UTC (rev 22442)
@@ -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 -d -y
+-YACC = yacc -d -S
+-#YFLAGS = -d -S
+-		# -S uses sprintf in yacc parser instead of sprint
++
++CC?= cc
++YACC?= yacc -d
  
--YACC = bison -y
--YACC = yacc
-+YACC ?= yacc
- YFLAGS = -d
+ OFILES = b.o main.o parse.o proctab.o tran.o lib.o run.o lex.o
  
- OFILES = b.o main.o parse.o proctab.o tran.o lib.o run.o lex.o


Property changes on: trunk/lang/nawk/files/patch-makefile
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/lang/nawk/files/patch-proto.h
===================================================================
--- trunk/lang/nawk/files/patch-proto.h	2017-05-12 23:24:06 UTC (rev 22441)
+++ trunk/lang/nawk/files/patch-proto.h	2017-05-12 23:26:51 UTC (rev 22442)

Property changes on: trunk/lang/nawk/files/patch-proto.h
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Index: trunk/lang/nawk/files/patch-run.c
===================================================================
--- trunk/lang/nawk/files/patch-run.c	2017-05-12 23:24:06 UTC (rev 22441)
+++ trunk/lang/nawk/files/patch-run.c	2017-05-12 23:26:51 UTC (rev 22442)

Property changes on: trunk/lang/nawk/files/patch-run.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/lang/nawk/files/patch-tran.c
===================================================================
--- trunk/lang/nawk/files/patch-tran.c	2017-05-12 23:24:06 UTC (rev 22441)
+++ trunk/lang/nawk/files/patch-tran.c	2017-05-12 23:26:51 UTC (rev 22442)

Property changes on: trunk/lang/nawk/files/patch-tran.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list