Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 May 2017 13:10:01 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r319132 - head/usr.bin/grep
Message-ID:  <201705291310.v4TDA1cu097919@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon May 29 13:10:01 2017
New Revision: 319132
URL: https://svnweb.freebsd.org/changeset/base/319132

Log:
  bsdgrep: bump version number and add Kyle Evans copyright
  
  The following changes have been made over the last couple of months:
  
  Features:
  
   - With bsdgrep -r, the working directory is implied if no directory is
     specified
   - bsdgrep will now behave as bsdgrep -r does when it's named rgrep
   - bsdgrep now understands -z/--null-data to use \0 as EOL
   - GNU regex compatibility is now indicated with a "GNU compatible" in
     the version string
  
  Fixes:
  
   - --mmap no longer hangs when coming across an EOF without an
     accompanying EOL
   - -o/--color matching generally improved, now produces earliest /
     longest matches
   - Context output now more closely aligns with GNU grep
   - Zero-length matches no longer exhibit broken behavior
   - Every output line now honors -b/-H/-n flags
  
  Tests have been added for previous regressions as well as other
  previously untested behaviors.
  
  Various other fixes have been commited, and refactoring for further /
  later improvements has taken place.
  
  (The original submission changed the version string to 2.5.2, but I
  decided to use 2.6.0 to reflect the addition of new features.)
  
  Submitted by:	Kyle Evans <kevans91@ksu.edu>
  Differential Revision:	https://reviews.freebsd.org/D10982

Modified:
  head/usr.bin/grep/grep.h
  head/usr.bin/grep/util.c

Modified: head/usr.bin/grep/grep.h
==============================================================================
--- head/usr.bin/grep/grep.h	Mon May 29 13:00:39 2017	(r319131)
+++ head/usr.bin/grep/grep.h	Mon May 29 13:10:01 2017	(r319132)
@@ -51,7 +51,7 @@ extern nl_catd		 catalog;
 
 extern const char		*errstr[];
 
-#define	VERSION		"2.5.1-FreeBSD"
+#define	VERSION		"2.6.0-FreeBSD"
 
 #define	GREP_FIXED	0
 #define	GREP_BASIC	1

Modified: head/usr.bin/grep/util.c
==============================================================================
--- head/usr.bin/grep/util.c	Mon May 29 13:00:39 2017	(r319131)
+++ head/usr.bin/grep/util.c	Mon May 29 13:10:01 2017	(r319132)
@@ -5,6 +5,7 @@
 /*-
  * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav
  * Copyright (C) 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>
+ * Copyright (C) 2017 Kyle Evans <kevans91@ksu.edu>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705291310.v4TDA1cu097919>