From owner-svn-ports-all@freebsd.org Sun Jun 16 13:14:09 2019 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 A47B015BEC78; Sun, 16 Jun 2019 13:14:09 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4845F80CE4; Sun, 16 Jun 2019 13:14:09 +0000 (UTC) (envelope-from rene@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 066EEEFD0; Sun, 16 Jun 2019 13:14:09 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GDE8eE070374; Sun, 16 Jun 2019 13:14:08 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GDE8DN070371; Sun, 16 Jun 2019 13:14:08 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201906161314.x5GDE8DN070371@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 16 Jun 2019 13:14:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504342 - in head/graphics: . pecl-vips X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/graphics: . pecl-vips X-SVN-Commit-Revision: 504342 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4845F80CE4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 16 Jun 2019 13:14:09 -0000 Author: rene Date: Sun Jun 16 13:14:08 2019 New Revision: 504342 URL: https://svnweb.freebsd.org/changeset/ports/504342 Log: Low-level PHP binding for libvips This extension lets you use the libvips image processing library from PHP 7. It is intentionally very low-level: modules such as https://github.com/libvips/php-vips try to layer a nice API on top of this. WWW: https://github.com/libvips/php-vips-ext PR: 238609 Submitted by: punkt.de Hosting Team Event: Berlin hackathon 2019 Added: head/graphics/pecl-vips/ head/graphics/pecl-vips/Makefile (contents, props changed) head/graphics/pecl-vips/distinfo (contents, props changed) head/graphics/pecl-vips/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Jun 16 12:56:11 2019 (r504341) +++ head/graphics/Makefile Sun Jun 16 13:14:08 2019 (r504342) @@ -735,6 +735,7 @@ SUBDIR += pecl-imagick SUBDIR += pecl-imagick-im7 SUBDIR += pecl-qrencode + SUBDIR += pecl-vips SUBDIR += pecomato SUBDIR += pencil2d SUBDIR += peps Added: head/graphics/pecl-vips/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pecl-vips/Makefile Sun Jun 16 13:14:08 2019 (r504342) @@ -0,0 +1,18 @@ +# Created by: punkt.de Hosting Team +# $FreeBSD$ + +PORTNAME= vips +PORTVERSION= 1.0.9 +CATEGORIES= graphics + +MAINTAINER= mops@punkt.de +COMMENT= PHP bindings for libvips + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +LIB_DEPENDS= libvips.so:graphics/vips + +USES= php:pecl pkgconfig + +.include Added: head/graphics/pecl-vips/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pecl-vips/distinfo Sun Jun 16 13:14:08 2019 (r504342) @@ -0,0 +1,3 @@ +TIMESTAMP = 1557409772 +SHA256 (PECL/vips-1.0.9.tgz) = aec14fe6b059dbc919ba37364ef4cec0cfd674c6360a23ad689f07cc0c29ec14 +SIZE (PECL/vips-1.0.9.tgz) = 558066 Added: head/graphics/pecl-vips/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pecl-vips/pkg-descr Sun Jun 16 13:14:08 2019 (r504342) @@ -0,0 +1,8 @@ +Low-level PHP binding for libvips + +This extension lets you use the libvips image processing library +from PHP 7. It is intentionally very low-level: modules such as +https://github.com/libvips/php-vips try to layer a nice API on +top of this. + +WWW: https://github.com/libvips/php-vips-ext