From owner-svn-ports-head@freebsd.org Sat May 6 15:09:24 2017 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 772D0D611C4; Sat, 6 May 2017 15:09:24 +0000 (UTC) (envelope-from miwi@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 mx1.freebsd.org (Postfix) with ESMTPS id 16A1D1ADC; Sat, 6 May 2017 15:09:24 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v46F9NWo005233; Sat, 6 May 2017 15:09:23 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v46F9MgD005229; Sat, 6 May 2017 15:09:22 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201705061509.v46F9MgD005229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 6 May 2017 15:09:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440268 - in head/sysutils: . py-scriptine X-SVN-Group: ports-head 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.23 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: Sat, 06 May 2017 15:09:24 -0000 Author: miwi Date: Sat May 6 15:09:22 2017 New Revision: 440268 URL: https://svnweb.freebsd.org/changeset/ports/440268 Log: The primary goal of scriptine is to make it easy to write shell scripts with python. Features: * Easy command creation. Each command is just a function. * Automatic option parsing * Automatic help text (--help) * Log handling (with -v, --verbose and -q, --quiet handling) * Testing scripts in dry-mode. * Easy execution of other shell scripts. * Convenient working with files and directories. WWW: https://pypi.python.org/pypi/scriptine PR: 208066 Submitted by: dbaio@bsd.com.br Added: head/sysutils/py-scriptine/ head/sysutils/py-scriptine/Makefile (contents, props changed) head/sysutils/py-scriptine/distinfo (contents, props changed) head/sysutils/py-scriptine/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat May 6 14:49:12 2017 (r440267) +++ head/sysutils/Makefile Sat May 6 15:09:22 2017 (r440268) @@ -890,6 +890,7 @@ SUBDIR += py-ranger SUBDIR += py-salt SUBDIR += py-scandir + SUBDIR += py-scriptine SUBDIR += py-shutilwhich SUBDIR += py-stdiff SUBDIR += py-supervisor Added: head/sysutils/py-scriptine/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-scriptine/Makefile Sat May 6 15:09:22 2017 (r440268) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= scriptine +PORTVERSION= 0.2.1 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@bsd.com.br +COMMENT= Python shell scripts made easy + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USES= python:-2.7 +USE_PYTHON= autoplist distutils + +.include Added: head/sysutils/py-scriptine/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-scriptine/distinfo Sat May 6 15:09:22 2017 (r440268) @@ -0,0 +1,3 @@ +TIMESTAMP = 1472312198 +SHA256 (scriptine-0.2.1.tar.gz) = 4de06ce9b37ebed2d27150f9fd18c574692263d04f2432a20c457837e2c01477 +SIZE (scriptine-0.2.1.tar.gz) = 32563 Added: head/sysutils/py-scriptine/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-scriptine/pkg-descr Sat May 6 15:09:22 2017 (r440268) @@ -0,0 +1,14 @@ +The primary goal of scriptine is to make it easy to write shell scripts with +python. + +Features: + + * Easy command creation. Each command is just a function. + * Automatic option parsing + * Automatic help text (--help) + * Log handling (with -v, --verbose and -q, --quiet handling) + * Testing scripts in dry-mode. + * Easy execution of other shell scripts. + * Convenient working with files and directories. + +WWW: https://pypi.python.org/pypi/scriptine