svn commit: r560060 - in head/devel: . rubygem-fiddle

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Jan 3 19:58:51 UTC 2021


Author: sunpoet
Date: Sun Jan  3 19:58:44 2021
New Revision: 560060
URL: https://svnweb.freebsd.org/changeset/ports/560060

Log:
  Add rubygem-fiddle 1.0.7
  
  Fiddle is an extension to translate a foreign function interface (FFI) with
  ruby.
  
  It wraps libffi, a popular C library which provides a portable interface that
  allows code written in one language to call code written in another language.
  
  WWW: https://github.com/ruby/fiddle

Added:
  head/devel/rubygem-fiddle/
  head/devel/rubygem-fiddle/Makefile   (contents, props changed)
  head/devel/rubygem-fiddle/distinfo   (contents, props changed)
  head/devel/rubygem-fiddle/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jan  3 19:58:39 2021	(r560059)
+++ head/devel/Makefile	Sun Jan  3 19:58:44 2021	(r560060)
@@ -6045,6 +6045,7 @@
     SUBDIR += rubygem-ffi-yajl
     SUBDIR += rubygem-ffi110
     SUBDIR += rubygem-fiber-local
+    SUBDIR += rubygem-fiddle
     SUBDIR += rubygem-file-tail
     SUBDIR += rubygem-filesize
     SUBDIR += rubygem-fileutils

Added: head/devel/rubygem-fiddle/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-fiddle/Makefile	Sun Jan  3 19:58:44 2021	(r560060)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	fiddle
+PORTVERSION=	1.0.7
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	libffi wrapper for Ruby
+
+LICENSE=	BSD2CLAUSE RUBY
+LICENSE_COMB=	dual
+LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS=	libffi.so:devel/libffi
+
+USES=		gem
+USE_RUBY=	yes
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-fiddle/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-fiddle/distinfo	Sun Jan  3 19:58:44 2021	(r560060)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609598775
+SHA256 (rubygem/fiddle-1.0.7.gem) = 8e999560d6a3adf17e3cb1bb0e415e0b18d3c798f44654fa3908f8ba45208377
+SIZE (rubygem/fiddle-1.0.7.gem) = 48640

Added: head/devel/rubygem-fiddle/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-fiddle/pkg-descr	Sun Jan  3 19:58:44 2021	(r560060)
@@ -0,0 +1,7 @@
+Fiddle is an extension to translate a foreign function interface (FFI) with
+ruby.
+
+It wraps libffi, a popular C library which provides a portable interface that
+allows code written in one language to call code written in another language.
+
+WWW: https://github.com/ruby/fiddle


More information about the svn-ports-all mailing list