From owner-svn-ports-head@freebsd.org Fri Jan 12 07:47:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 130B3E78EB4; Fri, 12 Jan 2018 07:47:32 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E35DE7C62C; Fri, 12 Jan 2018 07:47:31 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1000520CD9; Fri, 12 Jan 2018 07:47:31 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0C7lUF4098827; Fri, 12 Jan 2018 07:47:30 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0C7lU4m098821; Fri, 12 Jan 2018 07:47:30 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201801120747.w0C7lU4m098821@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 12 Jan 2018 07:47:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458806 - in head/shells: . oksh X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/shells: . oksh X-SVN-Commit-Revision: 458806 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jan 2018 07:47:32 -0000 Author: tobik Date: Fri Jan 12 07:47:30 2018 New Revision: 458806 URL: https://svnweb.freebsd.org/changeset/ports/458806 Log: New port: shells/oksh oksh is the portable version of the OpenBSD Korn shell, a continuation of the Public Domain Korn Shell (PDKSH). Its command language is a superset of the sh(1) shell language. oksh is best known as the default user shell and /bin/sh on OpenBSD. WWW: https://devio.us/~bcallah/oksh/ PR: 225097 Submitted by: Brian Callahan Added: head/shells/oksh/ head/shells/oksh/Makefile (contents, props changed) head/shells/oksh/distinfo (contents, props changed) head/shells/oksh/pkg-descr (contents, props changed) head/shells/oksh/pkg-plist (contents, props changed) Modified: head/shells/Makefile Modified: head/shells/Makefile ============================================================================== --- head/shells/Makefile Fri Jan 12 06:36:36 2018 (r458805) +++ head/shells/Makefile Fri Jan 12 07:47:30 2018 (r458806) @@ -25,6 +25,7 @@ SUBDIR += lshell SUBDIR += mksh SUBDIR += nologinmsg + SUBDIR += oksh SUBDIR += osh SUBDIR += p5-Bash-Completion SUBDIR += p5-Shell-Perl Added: head/shells/oksh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/oksh/Makefile Fri Jan 12 07:47:30 2018 (r458806) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= oksh +DISTVERSION= 20180111 +CATEGORIES= shells +MASTER_SITES= https://devio.us/~bcallah/oksh/ + +MAINTAINER= bcallah@openbsd.org +COMMENT= Portable OpenBSD Korn shell + +LICENSE= PD + +HAS_CONFIGURE= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + +.include Added: head/shells/oksh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/oksh/distinfo Fri Jan 12 07:47:30 2018 (r458806) @@ -0,0 +1,3 @@ +TIMESTAMP = 1515730754 +SHA256 (oksh-20180111.tar.gz) = c15652b503123dd542144c36f12a076fdb89b1fc4c6a8807ce1ec83fa1e0d797 +SIZE (oksh-20180111.tar.gz) = 295036 Added: head/shells/oksh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/oksh/pkg-descr Fri Jan 12 07:47:30 2018 (r458806) @@ -0,0 +1,6 @@ +oksh is the portable version of the OpenBSD Korn shell, a continuation +of the Public Domain Korn Shell (PDKSH). Its command language is a +superset of the sh(1) shell language. oksh is best known as the +default user shell and /bin/sh on OpenBSD. + +WWW: https://devio.us/~bcallah/oksh/ Added: head/shells/oksh/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/oksh/pkg-plist Fri Jan 12 07:47:30 2018 (r458806) @@ -0,0 +1,2 @@ +@shell bin/oksh +man/man1/oksh.1.gz