Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 May 2017 15:09:22 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r440268 - in head/sysutils: . py-scriptine
Message-ID:  <201705061509.v46F9MgD005229@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705061509.v46F9MgD005229>