Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Feb 2020 10:55:15 +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: r524848 - in head/graphics: . rubygem-image_processing
Message-ID:  <202002021055.012AtF54073314@repo.freebsd.org>

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

Log:
  Add rubygem-image_processing 1.10.3
  
  ImageProcessing provides higher-level image processing helpers that are commonly
  needed when handling image uploads.
  
  This gem can process images with either ImageMagick/GraphicsMagick or libvips
  libraries. ImageMagick is a good default choice, especially if you are migrating
  from another gem or library that uses ImageMagick. Libvips is a newer library
  that can process images very rapidly (often multiple times faster than
  ImageMagick).
  
  WWW: https://github.com/janko/image_processing

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sun Feb  2 10:55:09 2020	(r524847)
+++ head/graphics/Makefile	Sun Feb  2 10:55:15 2020	(r524848)
@@ -926,6 +926,7 @@
     SUBDIR += rubygem-gitlab_emoji
     SUBDIR += rubygem-goocanvas
     SUBDIR += rubygem-gruff
+    SUBDIR += rubygem-image_processing
     SUBDIR += rubygem-image_science
     SUBDIR += rubygem-imagesize
     SUBDIR += rubygem-invisible_captcha

Added: head/graphics/rubygem-image_processing/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rubygem-image_processing/Makefile	Sun Feb  2 10:55:15 2020	(r524848)
@@ -0,0 +1,23 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	image_processing
+PORTVERSION=	1.10.3
+CATEGORIES=	graphics rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	High-level wrapper for processing images for the web with ImageMagick or libvips
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	rubygem-mini_magick>=4.9.5<5:graphics/rubygem-mini_magick \
+		rubygem-ruby-vips>=2.0.17<3:graphics/rubygem-ruby-vips
+
+USES=		gem
+USE_RUBY=	yes
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/graphics/rubygem-image_processing/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rubygem-image_processing/distinfo	Sun Feb  2 10:55:15 2020	(r524848)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1580562247
+SHA256 (rubygem/image_processing-1.10.3.gem) = 8f31d5e14547946e3f98a9113007fedf26a08faf48bc72e9169c9a01c9d67969
+SIZE (rubygem/image_processing-1.10.3.gem) = 16896

Added: head/graphics/rubygem-image_processing/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rubygem-image_processing/pkg-descr	Sun Feb  2 10:55:15 2020	(r524848)
@@ -0,0 +1,10 @@
+ImageProcessing provides higher-level image processing helpers that are commonly
+needed when handling image uploads.
+
+This gem can process images with either ImageMagick/GraphicsMagick or libvips
+libraries. ImageMagick is a good default choice, especially if you are migrating
+from another gem or library that uses ImageMagick. Libvips is a newer library
+that can process images very rapidly (often multiple times faster than
+ImageMagick).
+
+WWW: https://github.com/janko/image_processing



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