From owner-cvs-all@FreeBSD.ORG Tue Jun 22 08:24:28 2004 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 BAFFF16A4D0; Tue, 22 Jun 2004 08:24:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B7C243D5A; Tue, 22 Jun 2004 08:24:28 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i5M8OK9A094092; Tue, 22 Jun 2004 08:24:20 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5M8OKbN094091; Tue, 22 Jun 2004 08:24:20 GMT (envelope-from pav) Message-Id: <200406220824.i5M8OKbN094091@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 22 Jun 2004 08:24:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/shells Makefile ports/shells/v7sh Makefile distinfo pkg-descr pkg-plist ports/shells/v7sh/files Makefile patch-args.c patch-blok.c patch-builtin.c patch-cmd.c patch-ctype.c patch-ctype.h patch-defs.h patch-error.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: Tue, 22 Jun 2004 08:24:29 -0000 pav 2004-06-22 08:24:20 UTC FreeBSD ports repository Modified files: shells Makefile Added files: shells/v7sh Makefile distinfo pkg-descr pkg-plist shells/v7sh/files Makefile patch-args.c patch-blok.c patch-builtin.c patch-cmd.c patch-ctype.c patch-ctype.h patch-defs.h patch-error.c patch-expand.c patch-fault.c patch-io.c patch-mac.h patch-macro.c patch-main.c patch-mode.h patch-msg.c patch-name.c patch-name.h patch-print.c patch-service.c patch-setbrk.c patch-stak.c patch-stak.h patch-string.c patch-sym.h patch-test.c patch-timeout.h patch-word.c patch-xec.c pathnames.h test.c ulimit.c ulimit.h Log: Add v7sh, the original Steve R. Bourne shell from the 7th edition Unix including System III, 4.3BSD-Reno, Ultrix 3.1 and `home made'' fixes and enhancements PR: ports/68127 Submitted by: Cyrille Lefevre Revision Changes Path 1.47 +1 -0 ports/shells/Makefile 1.1 +65 -0 ports/shells/v7sh/Makefile (new) 1.1 +64 -0 ports/shells/v7sh/distinfo (new) 1.1 +24 -0 ports/shells/v7sh/files/Makefile (new) 1.1 +168 -0 ports/shells/v7sh/files/patch-args.c (new) 1.1 +41 -0 ports/shells/v7sh/files/patch-blok.c (new) 1.1 +49 -0 ports/shells/v7sh/files/patch-builtin.c (new) 1.1 +340 -0 ports/shells/v7sh/files/patch-cmd.c (new) 1.1 +33 -0 ports/shells/v7sh/files/patch-ctype.c (new) 1.1 +26 -0 ports/shells/v7sh/files/patch-ctype.h (new) 1.1 +563 -0 ports/shells/v7sh/files/patch-defs.h (new) 1.1 +91 -0 ports/shells/v7sh/files/patch-error.c (new) 1.1 +299 -0 ports/shells/v7sh/files/patch-expand.c (new) 1.1 +182 -0 ports/shells/v7sh/files/patch-fault.c (new) 1.1 +189 -0 ports/shells/v7sh/files/patch-io.c (new) 1.1 +17 -0 ports/shells/v7sh/files/patch-mac.h (new) 1.1 +253 -0 ports/shells/v7sh/files/patch-macro.c (new) 1.1 +251 -0 ports/shells/v7sh/files/patch-main.c (new) 1.1 +148 -0 ports/shells/v7sh/files/patch-mode.h (new) 1.1 +237 -0 ports/shells/v7sh/files/patch-msg.c (new) 1.1 +397 -0 ports/shells/v7sh/files/patch-name.c (new) 1.1 +12 -0 ports/shells/v7sh/files/patch-name.h (new) 1.1 +138 -0 ports/shells/v7sh/files/patch-print.c (new) 1.1 +440 -0 ports/shells/v7sh/files/patch-service.c (new) 1.1 +16 -0 ports/shells/v7sh/files/patch-setbrk.c (new) 1.1 +65 -0 ports/shells/v7sh/files/patch-stak.c (new) 1.1 +58 -0 ports/shells/v7sh/files/patch-stak.h (new) 1.1 +53 -0 ports/shells/v7sh/files/patch-string.c (new) 1.1 +14 -0 ports/shells/v7sh/files/patch-sym.h (new) 1.1 +223 -0 ports/shells/v7sh/files/patch-test.c (new) 1.1 +9 -0 ports/shells/v7sh/files/patch-timeout.h (new) 1.1 +157 -0 ports/shells/v7sh/files/patch-word.c (new) 1.1 +657 -0 ports/shells/v7sh/files/patch-xec.c (new) 1.1 +26 -0 ports/shells/v7sh/files/pathnames.h (new) 1.1 +165 -0 ports/shells/v7sh/files/test.c (new) 1.1 +68 -0 ports/shells/v7sh/files/ulimit.c (new) 1.1 +41 -0 ports/shells/v7sh/files/ulimit.h (new) 1.1 +23 -0 ports/shells/v7sh/pkg-descr (new) 1.1 +3 -0 ports/shells/v7sh/pkg-plist (new)