summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorale <ale@FreeBSD.org>2016-10-21 09:02:18 +0000
committerale <ale@FreeBSD.org>2016-10-21 09:02:18 +0000
commitbb8fb3e7df12b7d913d8f3637f48c3c1da2f593d (patch)
tree22418e16977eab8b6d6af0821ea2c9b243ff9dc3
parentb029c8faae34f3cb7dafab3958611297b8aeb99d (diff)
downloadFreeBSD-ports-bb8fb3e7df12b7d913d8f3637f48c3c1da2f593d.zip
FreeBSD-ports-bb8fb3e7df12b7d913d8f3637f48c3c1da2f593d.tar.gz
Update to 5.6.27 release.
-rw-r--r--graphics/php56-gd/Makefile1
-rw-r--r--graphics/php56-gd/files/patch-libgd_gd_webp.c18
-rw-r--r--lang/php56/Makefile2
-rw-r--r--lang/php56/distinfo6
4 files changed, 4 insertions, 23 deletions
diff --git a/graphics/php56-gd/Makefile b/graphics/php56-gd/Makefile
index 648dbb6..4746215 100644
--- a/graphics/php56-gd/Makefile
+++ b/graphics/php56-gd/Makefile
@@ -1,7 +1,6 @@
# Created by: Alex Dupre <ale@FreeBSD.org>
# $FreeBSD$
-PORTREVISION= 2
CATEGORIES= graphics
MASTERDIR= ${.CURDIR}/../../lang/php56
diff --git a/graphics/php56-gd/files/patch-libgd_gd_webp.c b/graphics/php56-gd/files/patch-libgd_gd_webp.c
deleted file mode 100644
index b0c1419..0000000
--- a/graphics/php56-gd/files/patch-libgd_gd_webp.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- libgd/gd_webp.c.orig 2016-09-28 10:07:06.092196000 +0200
-+++ libgd/gd_webp.c 2016-09-28 10:08:12.429030000 +0200
-@@ -180,6 +180,15 @@ void gdImageWebpCtx (gdImagePtr im, gdIO
- /* Conversion to Y,U,V buffer */
- yuv_width = (width + 1) >> 1;
- yuv_height = (height + 1) >> 1;
-+
-+ if (overflow2(width, height)) {
-+ return;
-+ }
-+ /* simplification possible, because WebP must not be larger than 16384**2 */
-+ if (overflow2(width * height, 2 * sizeof(unsigned char))) {
-+ return;
-+ }
-+
- yuv_nbytes = width * height + 2 * yuv_width * yuv_height;
-
- if ((Y = (unsigned char *)gdCalloc(yuv_nbytes, sizeof(unsigned char))) == NULL) {
diff --git a/lang/php56/Makefile b/lang/php56/Makefile
index edc9c25..bd40b59 100644
--- a/lang/php56/Makefile
+++ b/lang/php56/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= php56
-PORTVERSION= 5.6.26
+PORTVERSION= 5.6.27
PORTREVISION?= 0
CATEGORIES?= lang devel www
MASTER_SITES= PHP/distributions
diff --git a/lang/php56/distinfo b/lang/php56/distinfo
index 2ccb43e..3ea1aa5 100644
--- a/lang/php56/distinfo
+++ b/lang/php56/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1474538003
-SHA256 (php-5.6.26.tar.xz) = 203a854f0f243cb2810d1c832bc871ff133eccdf1ff69d32846f93bc1bef58a8
-SIZE (php-5.6.26.tar.xz) = 12412992
+TIMESTAMP = 1477040451
+SHA256 (php-5.6.27.tar.xz) = 16eb544498339d1d855292826e2e547ab01a31600141094959073e5e10e93ab5
+SIZE (php-5.6.27.tar.xz) = 12439168
SHA256 (php-5.5.x-mail-header.patch) = f510672c4bf2c228e4d8c7837e16a82169de82139dcf33fafce51e9e55a1b9ed
SIZE (php-5.5.x-mail-header.patch) = 4426
OpenPOWER on IntegriCloud