From owner-svn-ports-all@freebsd.org Sun Apr 29 13:01:26 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76EABFAC94B; Sun, 29 Apr 2018 13:01:26 +0000 (UTC) (envelope-from riggs@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 2A1D26C43F; Sun, 29 Apr 2018 13:01:26 +0000 (UTC) (envelope-from riggs@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 2520C24B01; Sun, 29 Apr 2018 13:01:26 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3TD1Qmd060780; Sun, 29 Apr 2018 13:01:26 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3TD1Pto060775; Sun, 29 Apr 2018 13:01:25 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201804291301.w3TD1Pto060775@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 29 Apr 2018 13:01:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468627 - in head/devel: . shell-toolbox X-SVN-Group: ports-head X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in head/devel: . shell-toolbox X-SVN-Commit-Revision: 468627 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Apr 2018 13:01:26 -0000 Author: riggs Date: Sun Apr 29 13:01:25 2018 New Revision: 468627 URL: https://svnweb.freebsd.org/changeset/ports/468627 Log: Add devel/shell-toolbox PR: 227537 Submitted by: 0mp (maintainer) Added: head/devel/shell-toolbox/ head/devel/shell-toolbox/Makefile (contents, props changed) head/devel/shell-toolbox/distinfo (contents, props changed) head/devel/shell-toolbox/pkg-descr (contents, props changed) head/devel/shell-toolbox/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Apr 29 12:37:37 2018 (r468626) +++ head/devel/Makefile Sun Apr 29 13:01:25 2018 (r468627) @@ -6002,6 +6002,7 @@ SUBDIR += shapelib SUBDIR += shards SUBDIR += shedskin + SUBDIR += shell-toolbox SUBDIR += shflags SUBDIR += shiboken SUBDIR += shmap Added: head/devel/shell-toolbox/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/shell-toolbox/Makefile Sun Apr 29 13:01:25 2018 (r468627) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= shell-toolbox +DISTVERSION= 20180422 +CATEGORIES= devel + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Collection of shell script development tools + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes + +GNU_CONFIGURE= yes +USE_GITHUB= yes +GH_ACCOUNT= kusalananda + +.include Added: head/devel/shell-toolbox/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/shell-toolbox/distinfo Sun Apr 29 13:01:25 2018 (r468627) @@ -0,0 +1,3 @@ +TIMESTAMP = 1524426234 +SHA256 (kusalananda-shell-toolbox-20180422_GH0.tar.gz) = 959d208408779bca5762b092a332c1201ae7a8b3fd22f8d59f0a9e4361b5db8c +SIZE (kusalananda-shell-toolbox-20180422_GH0.tar.gz) = 74290 Added: head/devel/shell-toolbox/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/shell-toolbox/pkg-descr Sun Apr 29 13:01:25 2018 (r468627) @@ -0,0 +1,18 @@ +shell-toolbox is a collection of shell script development tools. + +Currently, the only included script is "shell", which is useful for testing +things in an interactive environment other than your usual shell, or for +testing things in a clean environment with automatic cleanup of any files left +behind. + +It creates a "temporary interactive shell" with a temporary working directory +(unless the "-d" flag is used to specify an existing directory) and clean +environment. The working directory is removed when the shell exits +(unless the "-k" or "-d" flag was used). + +The temporary working directory may also be pre-populated with the +contents of an existing directory (using the "-s" flag). + +See "man 1 shell" after installation. + +WWW: https://github.com/kusalananda/shell-toolbox Added: head/devel/shell-toolbox/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/shell-toolbox/pkg-plist Sun Apr 29 13:01:25 2018 (r468627) @@ -0,0 +1,7 @@ +bin/shell +man/man1/shell.1.gz +%%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/shell.md +%%PORTDOCS%%%%DOCSDIR%%/shell.txt