From owner-cvs-all@FreeBSD.ORG Mon May 15 13:40:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 7117716A53D; Mon, 15 May 2006 13:40:54 +0000 (UTC) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B42B43D62; Mon, 15 May 2006 13:40:52 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k4FDeeGF091153; Mon, 15 May 2006 13:40:40 GMT (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k4FDeeVh091152; Mon, 15 May 2006 13:40:40 GMT (envelope-from mux) Message-Id: <200605151340.k4FDeeVh091152@repoman.freebsd.org> From: Maxime Henrion Date: Mon, 15 May 2006 13:40:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/contrib/csup GNUmakefile Makefile README TODO attrstack.c attrstack.h config.c config.h csup.1 detailer.c detailer.h diff.c diff.h fattr.c fattr.h fattr_bsd.h fattr_posix.h fixups.c fixups.h fnmatch.c fnmatch.h globtree.c globtree.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 15 May 2006 13:40:54 -0000 mux 2006-05-15 13:40:40 UTC FreeBSD src repository Added files: (Branch: RELENG_6) contrib/csup GNUmakefile Makefile README TODO attrstack.c attrstack.h config.c config.h csup.1 detailer.c detailer.h diff.c diff.h fattr.c fattr.h fattr_bsd.h fattr_posix.h fixups.c fixups.h fnmatch.c fnmatch.h globtree.c globtree.h idcache.c idcache.h keyword.c keyword.h lister.c lister.h main.c main.h misc.c misc.h mux.c mux.h parse.y pathcomp.c pathcomp.h proto.c proto.h queue.h status.c status.h stream.c stream.h threads.c threads.h token.h token.l updater.c updater.h Log: MFC import of csup Revision Changes Path 1.1.1.2.2.1 +63 -0 src/contrib/csup/GNUmakefile (new) 1.1.1.2.2.1 +44 -0 src/contrib/csup/Makefile (new) 1.1.1.1.2.1 +39 -0 src/contrib/csup/README (new) 1.1.1.2.2.1 +31 -0 src/contrib/csup/TODO (new) 1.1.1.1.2.1 +90 -0 src/contrib/csup/attrstack.c (new) 1.1.1.1.2.1 +40 -0 src/contrib/csup/attrstack.h (new) 1.1.1.2.2.1 +584 -0 src/contrib/csup/config.c (new) 1.1.1.2.2.1 +126 -0 src/contrib/csup/config.h (new) 1.1.1.2.2.1 +899 -0 src/contrib/csup/csup.1 (new) 1.1.1.1.2.1 +339 -0 src/contrib/csup/detailer.c (new) 1.1.1.1.2.1 +33 -0 src/contrib/csup/detailer.h (new) 1.1.1.1.2.1 +214 -0 src/contrib/csup/diff.c (new) 1.1.1.1.2.1 +50 -0 src/contrib/csup/diff.h (new) 1.1.1.2.2.1 +938 -0 src/contrib/csup/fattr.c (new) 1.1.1.1.2.1 +115 -0 src/contrib/csup/fattr.h (new) 1.1.1.1.2.1 +52 -0 src/contrib/csup/fattr_bsd.h (new) 1.1.1.1.2.1 +48 -0 src/contrib/csup/fattr_posix.h (new) 1.1.1.1.2.1 +198 -0 src/contrib/csup/fixups.c (new) 1.1.1.1.2.1 +48 -0 src/contrib/csup/fixups.h (new) 1.1.1.1.2.1 +199 -0 src/contrib/csup/fnmatch.c (new) 1.1.1.1.2.1 +58 -0 src/contrib/csup/fnmatch.h (new) 1.1.1.2.2.1 +393 -0 src/contrib/csup/globtree.c (new) 1.1.1.1.2.1 +45 -0 src/contrib/csup/globtree.h (new) 1.1.1.1.2.1 +421 -0 src/contrib/csup/idcache.c (new) 1.1.1.1.2.1 +41 -0 src/contrib/csup/idcache.h (new) 1.1.1.1.2.1 +502 -0 src/contrib/csup/keyword.c (new) 1.1.1.1.2.1 +53 -0 src/contrib/csup/keyword.h (new) 1.1.1.2.2.1 +439 -0 src/contrib/csup/lister.c (new) 1.1.1.1.2.1 +33 -0 src/contrib/csup/lister.h (new) 1.1.1.2.2.1 +339 -0 src/contrib/csup/main.c (new) 1.1.1.1.2.1 +29 -0 src/contrib/csup/main.h (new) 1.1.1.3.2.1 +522 -0 src/contrib/csup/misc.c (new) 1.1.1.2.2.1 +130 -0 src/contrib/csup/misc.h (new) 1.1.1.1.2.1 +1201 -0 src/contrib/csup/mux.c (new) 1.1.1.1.2.1 +45 -0 src/contrib/csup/mux.h (new) 1.1.1.1.2.1 +91 -0 src/contrib/csup/parse.y (new) 1.1.1.1.2.1 +182 -0 src/contrib/csup/pathcomp.c (new) 1.1.1.1.2.1 +44 -0 src/contrib/csup/pathcomp.h (new) 1.1.1.2.2.1 +1020 -0 src/contrib/csup/proto.c (new) 1.1.1.1.2.1 +49 -0 src/contrib/csup/proto.h (new) 1.1.1.2.2.1 +227 -0 src/contrib/csup/queue.h (new) 1.1.1.1.2.1 +842 -0 src/contrib/csup/status.c (new) 1.1.1.1.2.1 +72 -0 src/contrib/csup/status.h (new) 1.1.1.1.2.1 +1080 -0 src/contrib/csup/stream.c (new) 1.1.1.1.2.1 +72 -0 src/contrib/csup/stream.h (new) 1.1.1.1.2.1 +176 -0 src/contrib/csup/threads.c (new) 1.1.1.1.2.1 +38 -0 src/contrib/csup/threads.h (new) 1.1.1.2.2.1 +49 -0 src/contrib/csup/token.h (new) 1.1.1.2.2.1 +80 -0 src/contrib/csup/token.l (new) 1.1.1.2.2.1 +1011 -0 src/contrib/csup/updater.c (new) 1.1.1.1.2.1 +33 -0 src/contrib/csup/updater.h (new)