From owner-cvs-all@FreeBSD.ORG Sun Mar 13 18:36:25 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B83216A4CE; Sun, 13 Mar 2005 18:36:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08EC243D46; Sun, 13 Mar 2005 18:36:25 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j2DIaO28071519; Sun, 13 Mar 2005 18:36:24 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j2DIaOMV071518; Sun, 13 Mar 2005 18:36:24 GMT (envelope-from kientzle) Message-Id: <200503131836.j2DIaOMV071518@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 13 Mar 2005 18:36:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar Makefile Makefile.am bsdtar.1 bsdtar.c bsdtar.h bsdtar_platform.h configure.ac.in getdate.y write.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Mar 2005 18:36:25 -0000 kientzle 2005-03-13 18:36:24 UTC FreeBSD src repository Modified files: usr.bin/tar Makefile Makefile.am bsdtar.1 bsdtar.c bsdtar.h bsdtar_platform.h configure.ac.in write.c Added files: usr.bin/tar getdate.y Log: Add --newer-ctime, --newer-mtime, --newer-ctime-than, and --newer-mtime-than switches to support selecting files by time of modification. Special thanks to: Steven M. Bellovin, Rich $alz, and Jim Berets, authors of the public-domain getdate.y date-parsing code. Revision Changes Path 1.16 +5 -3 src/usr.bin/tar/Makefile 1.2 +3 -0 src/usr.bin/tar/Makefile.am 1.26 +29 -0 src/usr.bin/tar/bsdtar.1 1.60 +59 -16 src/usr.bin/tar/bsdtar.c 1.22 +4 -0 src/usr.bin/tar/bsdtar.h 1.13 +3 -0 src/usr.bin/tar/bsdtar_platform.h 1.6 +1 -0 src/usr.bin/tar/configure.ac.in 1.1 +919 -0 src/usr.bin/tar/getdate.y (new) 1.36 +44 -20 src/usr.bin/tar/write.c