Date: Tue, 2 Apr 2019 22:00:55 +0000 (UTC) From: Rodrigo Osorio <rodrigo@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r497595 - in head/archivers: . php-lz4 php-zstd Message-ID: <201904022200.x32M0t8T043942@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rodrigo Date: Tue Apr 2 22:00:55 2019 New Revision: 497595 URL: https://svnweb.freebsd.org/changeset/ports/497595 Log: Add two new ports archivers/php-zstd and archivers/php-lz4 php-zstd is a PHP extension for zstd compresssion algorithm https://github.com/kjdev/php-ext-zstd php-lz4 is a PHP extension for the lz4 compression algorithm https://github.com/kjdev/php-ext-lz4 PR: 236742 Submitted by: Paavo-Einari Kaipila <pkaipila@gmail.com> Added: head/archivers/php-lz4/ head/archivers/php-lz4/Makefile (contents, props changed) head/archivers/php-lz4/distinfo (contents, props changed) head/archivers/php-lz4/pkg-descr (contents, props changed) head/archivers/php-zstd/ head/archivers/php-zstd/Makefile (contents, props changed) head/archivers/php-zstd/distinfo (contents, props changed) head/archivers/php-zstd/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Tue Apr 2 21:54:37 2019 (r497594) +++ head/archivers/Makefile Tue Apr 2 22:00:55 2019 (r497595) @@ -149,7 +149,9 @@ SUBDIR += pecl-rar SUBDIR += php-brotli SUBDIR += php-horde_lz4 + SUBDIR += php-lz4 SUBDIR += php-snappy + SUBDIR += php-zstd SUBDIR += php71-bz2 SUBDIR += php71-phar SUBDIR += php71-zip Added: head/archivers/php-lz4/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/php-lz4/Makefile Tue Apr 2 22:00:55 2019 (r497595) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= lz4 +DISTVERSION= 0.3.5 +CATEGORIES= archivers +PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX} + +MAINTAINER= pkaipila@gmail.com +COMMENT= This is the lz4 extension for PHP + +LICENSE= MIT + +LIB_DEPENDS= liblz4.so:archivers/liblz4 + +USES= php:ext + +USE_GITHUB= yes +GH_ACCOUNT= kjdev +GH_PROJECT= php-ext-lz4 + +CONFIGURE_ARGS= --with-lz4-includedir=${LOCALBASE} + +PHP_MODNAME= lz4 + +.include <bsd.port.mk> Added: head/archivers/php-lz4/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/php-lz4/distinfo Tue Apr 2 22:00:55 2019 (r497595) @@ -0,0 +1,3 @@ +TIMESTAMP = 1553368576 +SHA256 (kjdev-php-ext-lz4-0.3.5_GH0.tar.gz) = fcea0792f22e337950682129e72ba07c1fd0b3f72ceae2f5691059def3663b55 +SIZE (kjdev-php-ext-lz4-0.3.5_GH0.tar.gz) = 65065 Added: head/archivers/php-lz4/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/php-lz4/pkg-descr Tue Apr 2 22:00:55 2019 (r497595) @@ -0,0 +1,5 @@ +This is the extension PHP extension for lz4 +a lossless compression algorithm, providing +hi compression speed and multi-core scalability. + +WWW: https://github.com/kjdev/php-ext-lz4 Added: head/archivers/php-zstd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/php-zstd/Makefile Tue Apr 2 22:00:55 2019 (r497595) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= zstd +DISTVERSION= 0.5.0 +CATEGORIES= archivers +PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX} + +MAINTAINER= pkaipila@gmail.com +COMMENT= This is the zstd extension for PHP + +LICENSE= MIT + +LIB_DEPENDS= libzstd.so:archivers/zstd + +USES= php:ext pkgconfig + +USE_GITHUB= yes +GH_ACCOUNT= kjdev +GH_PROJECT= php-ext-zstd + +CONFIGURE_ARGS= --with-libzstd + +PHP_MODNAME= zstd + +.include <bsd.port.mk> Added: head/archivers/php-zstd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/php-zstd/distinfo Tue Apr 2 22:00:55 2019 (r497595) @@ -0,0 +1,3 @@ +TIMESTAMP = 1553375218 +SHA256 (kjdev-php-ext-zstd-0.5.0_GH0.tar.gz) = 30776d59030e02aea8456b6467c14acad7abd0896b61386877325a175299388c +SIZE (kjdev-php-ext-zstd-0.5.0_GH0.tar.gz) = 11191 Added: head/archivers/php-zstd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/php-zstd/pkg-descr Tue Apr 2 22:00:55 2019 (r497595) @@ -0,0 +1,4 @@ +This is the PHP extension for zstandard, +or zstd a fast lossless compression algorithm. + +WWW: https://github.com/kjdev/php-ext-zstd
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904022200.x32M0t8T043942>