View | Details | Raw Unified | Return to bug 227537 | Differences between
and this patch

Collapse All | Expand All

(-)devel/Makefile (+1 lines)
Lines 5985-5990 Link Here
5985
    SUBDIR += shapelib
5985
    SUBDIR += shapelib
5986
    SUBDIR += shards
5986
    SUBDIR += shards
5987
    SUBDIR += shedskin
5987
    SUBDIR += shedskin
5988
    SUBDIR += shell-toolbox
5988
    SUBDIR += shflags
5989
    SUBDIR += shflags
5989
    SUBDIR += shiboken
5990
    SUBDIR += shiboken
5990
    SUBDIR += shmap
5991
    SUBDIR += shmap
(-)devel/shell-toolbox/Makefile (+19 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=		shell-toolbox
4
DISTVERSION=		20180422
5
CATEGORIES=		devel
6
7
MAINTAINER=		0mp@FreeBSD.org
8
COMMENT=		Collection of shell script development tools
9
10
LICENSE=		BSD3CLAUSE
11
LICENSE_FILE=		${WRKSRC}/LICENSE
12
13
NO_ARCH=	yes
14
15
GNU_CONFIGURE=	yes
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	kusalananda
18
19
.include <bsd.port.mk>
(-)devel/shell-toolbox/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1524426234
2
SHA256 (kusalananda-shell-toolbox-20180422_GH0.tar.gz) = 959d208408779bca5762b092a332c1201ae7a8b3fd22f8d59f0a9e4361b5db8c
3
SIZE (kusalananda-shell-toolbox-20180422_GH0.tar.gz) = 74290
(-)devel/shell-toolbox/pkg-descr (+18 lines)
Added Link Here
1
shell-toolbox is a collection of shell script development tools.
2
3
Currently, the only included script is "shell", which is useful for testing
4
things in an interactive environment other than your usual shell, or for
5
testing things in a clean environment with automatic cleanup of any files left
6
behind.
7
8
It creates a "temporary interactive shell" with a temporary working directory
9
(unless the "-d" flag is used to specify an existing directory) and clean
10
environment.  The working directory is removed when the shell exits
11
(unless the "-k" or "-d" flag was used).
12
13
The temporary working directory may also be pre-populated with the
14
contents of an existing directory (using the "-s" flag).
15
16
See "man 1 shell" after installation.
17
18
WWW: https://github.com/kusalananda/shell-toolbox
(-)devel/shell-toolbox/pkg-plist (+7 lines)
Added Link Here
1
bin/shell
2
man/man1/shell.1.gz
3
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
4
%%PORTDOCS%%%%DOCSDIR%%/NEWS
5
%%PORTDOCS%%%%DOCSDIR%%/README
6
%%PORTDOCS%%%%DOCSDIR%%/shell.md
7
%%PORTDOCS%%%%DOCSDIR%%/shell.txt

Return to bug 227537