Date: Wed, 16 Mar 2016 01:50:50 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411208 - in head/devel: . ctypes.sh Message-ID: <201603160150.u2G1ooc6064216@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Wed Mar 16 01:50:50 2016 New Revision: 411208 URL: https://svnweb.freebsd.org/changeset/ports/411208 Log: devel/ctypes.sh: create port ctypes.sh is a bash plugin that provides a foreign function interface directly in your shell. In other words, it allows you to call routines in shared libraries from within bash. WWW: http://ctypes.sh Added: head/devel/ctypes.sh/ head/devel/ctypes.sh/Makefile (contents, props changed) head/devel/ctypes.sh/distinfo (contents, props changed) head/devel/ctypes.sh/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Mar 16 01:15:16 2016 (r411207) +++ head/devel/Makefile Wed Mar 16 01:50:50 2016 (r411208) @@ -317,6 +317,7 @@ SUBDIR += cssc SUBDIR += cstringbuffer SUBDIR += ctags + SUBDIR += ctypes.sh SUBDIR += cunit SUBDIR += cut SUBDIR += cutils Added: head/devel/ctypes.sh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ctypes.sh/Makefile Wed Mar 16 01:50:50 2016 (r411208) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= ctypes.sh +PORTVERSION= 0.1 +CATEGORIES= devel +MASTER_SITES= https://github.com/taviso/${PORTNAME}/releases/download/v0.01/ +DISTNAME= ctypes-sh-${PORTVERSION} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Foreign function interface for bash + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash +RUN_DEPENDS= bash:${PORTSDIR}/shells/bash +LIB_DEPENDS= libffi.so:${PORTSDIR}/devel/libffi + +USES= libtool pkgconfig +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip + +PLIST_FILES= bin/ctypes.sh lib/ctypes.so + +.include <bsd.port.mk> Added: head/devel/ctypes.sh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ctypes.sh/distinfo Wed Mar 16 01:50:50 2016 (r411208) @@ -0,0 +1,2 @@ +SHA256 (ctypes-sh-0.1.tar.gz) = 6e4555c051e0e1408792f41a7f9df63ecbbc5a7c4f6a70580f8d4e64615173a5 +SIZE (ctypes-sh-0.1.tar.gz) = 364819 Added: head/devel/ctypes.sh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ctypes.sh/pkg-descr Wed Mar 16 01:50:50 2016 (r411208) @@ -0,0 +1,5 @@ +ctypes.sh is a bash plugin that provides a foreign function interface directly +in your shell. In other words, it allows you to call routines in shared +libraries from within bash. + +WWW: http://ctypes.sh
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603160150.u2G1ooc6064216>