From owner-svn-ports-all@freebsd.org Mon May 7 19:48:51 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65ECBFBB434; Mon, 7 May 2018 19:48:51 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 144AF79B4F; Mon, 7 May 2018 19:48:51 +0000 (UTC) (envelope-from olgeni@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0EE941FCD4; Mon, 7 May 2018 19:48:51 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w47JmoCb078700; Mon, 7 May 2018 19:48:50 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w47JmoVk078695; Mon, 7 May 2018 19:48:50 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201805071948.w47JmoVk078695@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Mon, 7 May 2018 19:48:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469329 - in head/devel: . elixir-unsafe X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: in head/devel: . elixir-unsafe X-SVN-Commit-Revision: 469329 X-SVN-Commit-Repository: ports 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.25 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: Mon, 07 May 2018 19:48:51 -0000 Author: olgeni Date: Mon May 7 19:48:49 2018 New Revision: 469329 URL: https://svnweb.freebsd.org/changeset/ports/469329 Log: Add devel/elixir-unsafe, an Elixir library to generate unsafe bindings for functions (i.e. functions that can crash rather than returning a tagged error value). More background here: http://whitfin.io/generating-bang-functions-in-elixir/ Added: head/devel/elixir-unsafe/ head/devel/elixir-unsafe/Makefile (contents, props changed) head/devel/elixir-unsafe/distinfo (contents, props changed) head/devel/elixir-unsafe/pkg-descr (contents, props changed) head/devel/elixir-unsafe/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon May 7 19:44:01 2018 (r469328) +++ head/devel/Makefile Mon May 7 19:48:49 2018 (r469329) @@ -542,6 +542,7 @@ SUBDIR += elixir-tirexs SUBDIR += elixir-trailing_format_plug SUBDIR += elixir-tzdata + SUBDIR += elixir-unsafe SUBDIR += embb SUBDIR += epl.el SUBDIR += epm Added: head/devel/elixir-unsafe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/elixir-unsafe/Makefile Mon May 7 19:48:49 2018 (r469329) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= unsafe +PORTVERSION= 1.0.0 +DISTVERSIONPREFIX= v +CATEGORIES= devel +PKGNAMEPREFIX= elixir- + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= Generate unsafe bindings for Elixir functions + +LICENSE= MIT + +USES= elixir +USE_GITHUB= yes +GH_ACCOUNT= whitfin + +MIX_REWRITE= yes + +.include Added: head/devel/elixir-unsafe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/elixir-unsafe/distinfo Mon May 7 19:48:49 2018 (r469329) @@ -0,0 +1,3 @@ +TIMESTAMP = 1525621894 +SHA256 (whitfin-unsafe-v1.0.0_GH0.tar.gz) = 8a5850f82bc7ff6ca9a3da88e11854e794a3342c7bed72e94bb4b9afe30e696f +SIZE (whitfin-unsafe-v1.0.0_GH0.tar.gz) = 8013 Added: head/devel/elixir-unsafe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/elixir-unsafe/pkg-descr Mon May 7 19:48:49 2018 (r469329) @@ -0,0 +1,4 @@ +This library is designed to generate unsafe bindings for Elixir +function definitions at compile time. + +WWW: https://github.com/whitfin/unsafe Added: head/devel/elixir-unsafe/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/elixir-unsafe/pkg-plist Mon May 7 19:48:49 2018 (r469329) @@ -0,0 +1,8 @@ +lib/elixir/lib/unsafe/ebin/Elixir.Unsafe.Compiler.beam +lib/elixir/lib/unsafe/ebin/Elixir.Unsafe.Generator.beam +lib/elixir/lib/unsafe/ebin/Elixir.Unsafe.beam +lib/elixir/lib/unsafe/ebin/unsafe.app +lib/elixir/lib/unsafe/lib/unsafe.ex +lib/elixir/lib/unsafe/lib/unsafe/compiler.ex +lib/elixir/lib/unsafe/lib/unsafe/generator.ex +%%PORTDOCS%%%%DOCSDIR%%/README.md