From owner-svn-ports-all@FreeBSD.ORG Thu Jan 9 10:32:29 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 43901CD5; Thu, 9 Jan 2014 10:32:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 159DB14E6; Thu, 9 Jan 2014 10:32:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s09AWScQ079508; Thu, 9 Jan 2014 10:32:28 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s09AWSA6079506; Thu, 9 Jan 2014 10:32:28 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401091032.s09AWSA6079506@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 9 Jan 2014 10:32:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339214 - head/lang/mawk X-SVN-Group: ports-head 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.17 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: Thu, 09 Jan 2014 10:32:29 -0000 Author: bapt Date: Thu Jan 9 10:32:28 2014 New Revision: 339214 URL: http://svnweb.freebsd.org/changeset/ports/339214 Log: Update license and description Modified: head/lang/mawk/Makefile head/lang/mawk/pkg-descr Modified: head/lang/mawk/Makefile ============================================================================== --- head/lang/mawk/Makefile Thu Jan 9 10:24:48 2014 (r339213) +++ head/lang/mawk/Makefile Thu Jan 9 10:32:28 2014 (r339214) @@ -8,7 +8,7 @@ MASTER_SITES= ftp://invisible-island.net EXTRACT_SUFX= .tgz MAINTAINER= bapt@FreeBSD.org -COMMENT= Implementation of new/posix awk +COMMENT= Interpreter for the AWK Programming Language LICENSE= GPLv2 Modified: head/lang/mawk/pkg-descr ============================================================================== --- head/lang/mawk/pkg-descr Thu Jan 9 10:24:48 2014 (r339213) +++ head/lang/mawk/pkg-descr Thu Jan 9 10:32:28 2014 (r339214) @@ -1,11 +1,10 @@ -Version 1.3 implements a new internal design for arrays: +mawk is an interpreter for the AWK Programming Language. The AWK language is +useful for manipulation of data files, text retrieval and processing, and for +prototyping and experimenting with algorithms. mawk is a new awk meaning it +implements the AWK language as defined in Aho, Kernighan and Weinberger, The +AWK Programming Language, Addison-Wesley Publishing, 1988 (hereafter referred +to as the AWK book.) mawk conforms to the Posix 1003.2 (draft 11.3) definition +of the AWK language which contains a few features not described in the AWK +book, and mawk provides a small number of extensions. -Extensive redesign of array data structures to support large arrays and -fast access to arrays created with split. Many of the ideas in the -new design were inspired by reading "The Design and Implementation of -Dynamic Hashing Sets and Tables in Icon" by William Griswold and -Gregg Townsend, SPE 23,351-367. - -Bug reports, comments, questions, etc. to -Mike Brennan, brennan@whidbey.com. -ftp site: ftp.whidbey.net in ~/pub/brennan +WWW: http://invisible-island.net/mawk