Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Feb 2020 10:55:21 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r524849 - in head/graphics: . rubygem-ruby-vips
Message-ID:  <202002021055.012AtL6t073485@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Feb  2 10:55:21 2020
New Revision: 524849
URL: https://svnweb.freebsd.org/changeset/ports/524849

Log:
  Add rubygem-ruby-vips 2.0.17
  
  This gem is a Ruby binding for the libvips image processing library.
  
  Programs that use ruby-vips don't manipulate images directly, instead they
  create pipelines of image processing operations building on a source image. When
  the end of the pipe is connected to a destination, the whole pipeline executes
  at once, streaming the image in parallel from source to destination a section at
  a time. Because ruby-vips is parallel, it's quick, and because it doesn't need
  to keep entire images in memory, it's light.
  
  WWW: https://github.com/libvips/ruby-vips

Added:
  head/graphics/rubygem-ruby-vips/
  head/graphics/rubygem-ruby-vips/Makefile   (contents, props changed)
  head/graphics/rubygem-ruby-vips/distinfo   (contents, props changed)
  head/graphics/rubygem-ruby-vips/pkg-descr   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sun Feb  2 10:55:15 2020	(r524848)
+++ head/graphics/Makefile	Sun Feb  2 10:55:21 2020	(r524849)
@@ -939,6 +939,7 @@
     SUBDIR += rubygem-rmagick
     SUBDIR += rubygem-rsvg2
     SUBDIR += rubygem-ruby-graphviz
+    SUBDIR += rubygem-ruby-vips
     SUBDIR += rubygem-scruffy
     SUBDIR += rx
     SUBDIR += s10sh

Added: head/graphics/rubygem-ruby-vips/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rubygem-ruby-vips/Makefile	Sun Feb  2 10:55:21 2020	(r524849)
@@ -0,0 +1,27 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	ruby-vips
+PORTVERSION=	2.0.17
+CATEGORIES=	graphics rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Binding for the vips image processing library
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS=	libvips.so:graphics/vips
+RUN_DEPENDS=	rubygem-ffi>=1.9<2:devel/rubygem-ffi
+
+USES=		gem gnome shebangfix
+USE_GNOME=	glib20
+USE_RUBY=	yes
+
+NO_ARCH=	yes
+
+SHEBANG_FILES=	install-vips.sh \
+		example/*.rb
+
+.include <bsd.port.mk>

Added: head/graphics/rubygem-ruby-vips/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rubygem-ruby-vips/distinfo	Sun Feb  2 10:55:21 2020	(r524849)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1580562249
+SHA256 (rubygem/ruby-vips-2.0.17.gem) = 8a73579c68c4df522d7a45c4c9d988f67965b74a5e5f996b450eea1e1b116152
+SIZE (rubygem/ruby-vips-2.0.17.gem) = 64000

Added: head/graphics/rubygem-ruby-vips/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rubygem-ruby-vips/pkg-descr	Sun Feb  2 10:55:21 2020	(r524849)
@@ -0,0 +1,10 @@
+This gem is a Ruby binding for the libvips image processing library.
+
+Programs that use ruby-vips don't manipulate images directly, instead they
+create pipelines of image processing operations building on a source image. When
+the end of the pipe is connected to a destination, the whole pipeline executes
+at once, streaming the image in parallel from source to destination a section at
+a time. Because ruby-vips is parallel, it's quick, and because it doesn't need
+to keep entire images in memory, it's light.
+
+WWW: https://github.com/libvips/ruby-vips



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