From owner-svn-ports-all@freebsd.org Wed Mar 16 01:50:52 2016 Return-Path: Delivered-To: svn-ports-all@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 4A383AD2E4B; Wed, 16 Mar 2016 01:50:52 +0000 (UTC) (envelope-from swills@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 023FD936; Wed, 16 Mar 2016 01:50:51 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2G1opeF064220; Wed, 16 Mar 2016 01:50:51 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2G1ooc6064216; Wed, 16 Mar 2016 01:50:50 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201603160150.u2G1ooc6064216@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 16 Mar 2016 01:50:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411208 - in head/devel: . ctypes.sh X-SVN-Group: ports-head 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.21 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: Wed, 16 Mar 2016 01:50:52 -0000 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 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