All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] php-imagick: bump version to 3.4.3RC1
@ 2017-01-09 17:13 Vicente Olivert Riera
  2017-01-09 17:13 ` [Buildroot] [PATCH 2/2] php: bump version to 7.1.0 (security) Vicente Olivert Riera
  2017-01-10 20:03 ` [Buildroot] [PATCH 1/2] php-imagick: bump version to 3.4.3RC1 Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Vicente Olivert Riera @ 2017-01-09 17:13 UTC (permalink / raw)
  To: buildroot

This version is marked as "stable" on php-imagick's website, plus is
necessary for the upcoming php-7.1 version bump.

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 package/php-imagick/php-imagick.hash | 2 +-
 package/php-imagick/php-imagick.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/php-imagick/php-imagick.hash b/package/php-imagick/php-imagick.hash
index 551bed6..e991237 100644
--- a/package/php-imagick/php-imagick.hash
+++ b/package/php-imagick/php-imagick.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256 a729fbd69e0aa145824d61dc9225bfb636dcd8421874a5667ac3822e609449e1  imagick-3.4.1.tgz
+sha256 50bbc46e78cd6e1ea5d7660be1722258e60b1729483ca14b02da7cf9f5ed3e6a  imagick-3.4.3RC1.tgz
diff --git a/package/php-imagick/php-imagick.mk b/package/php-imagick/php-imagick.mk
index 84cc311..ddcefda 100644
--- a/package/php-imagick/php-imagick.mk
+++ b/package/php-imagick/php-imagick.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-PHP_IMAGICK_VERSION = 3.4.1
+PHP_IMAGICK_VERSION = 3.4.3RC1
 PHP_IMAGICK_SOURCE = imagick-$(PHP_IMAGICK_VERSION).tgz
 PHP_IMAGICK_SITE = http://pecl.php.net/get
 PHP_IMAGICK_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] php: bump version to 7.1.0 (security)
  2017-01-09 17:13 [Buildroot] [PATCH 1/2] php-imagick: bump version to 3.4.3RC1 Vicente Olivert Riera
@ 2017-01-09 17:13 ` Vicente Olivert Riera
  2017-01-10 20:03   ` Peter Korsgaard
  2017-01-10 20:03 ` [Buildroot] [PATCH 1/2] php-imagick: bump version to 3.4.3RC1 Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Vicente Olivert Riera @ 2017-01-09 17:13 UTC (permalink / raw)
  To: buildroot

Fixed CVEs:
 - CVE-2016-9933 (imagefilltoborder stackoverflow on truecolor images)
   http://bugs.php.net/72696
 - CVE-2016-9934 (NULL Pointer Dereference in WDDX Packet
   Deserialization with PDORow)
   http://bugs.php.net/73331

Full ChangeLog:
  http://php.net/ChangeLog-7.php#7.1.0

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 package/php/php.hash | 2 +-
 package/php/php.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/php/php.hash b/package/php/php.hash
index 0424e46..5e4bdcb 100644
--- a/package/php/php.hash
+++ b/package/php/php.hash
@@ -1,2 +1,2 @@
 # From http://php.net/downloads.php
-sha256 0f1dff6392a1cc2ed126b9695f580a2ed77eb09d2c23b41cabfb41e6f27a8c89  php-7.0.14.tar.xz
+sha256 a810b3f29c21407c24caa88f50649320d20ba6892ae1923132598b8a0ca145b6  php-7.1.0.tar.xz
diff --git a/package/php/php.mk b/package/php/php.mk
index e8c8f4b..2ba70aa 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-PHP_VERSION = 7.0.14
+PHP_VERSION = 7.1.0
 PHP_SITE = http://www.php.net/distributions
 PHP_SOURCE = php-$(PHP_VERSION).tar.xz
 PHP_INSTALL_STAGING = YES
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/2] php-imagick: bump version to 3.4.3RC1
  2017-01-09 17:13 [Buildroot] [PATCH 1/2] php-imagick: bump version to 3.4.3RC1 Vicente Olivert Riera
  2017-01-09 17:13 ` [Buildroot] [PATCH 2/2] php: bump version to 7.1.0 (security) Vicente Olivert Riera
@ 2017-01-10 20:03 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2017-01-10 20:03 UTC (permalink / raw)
  To: buildroot

>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:

 > This version is marked as "stable" on php-imagick's website, plus is
 > necessary for the upcoming php-7.1 version bump.

 > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] php: bump version to 7.1.0 (security)
  2017-01-09 17:13 ` [Buildroot] [PATCH 2/2] php: bump version to 7.1.0 (security) Vicente Olivert Riera
@ 2017-01-10 20:03   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2017-01-10 20:03 UTC (permalink / raw)
  To: buildroot

>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:

 > Fixed CVEs:
 >  - CVE-2016-9933 (imagefilltoborder stackoverflow on truecolor images)
 >    http://bugs.php.net/72696
 >  - CVE-2016-9934 (NULL Pointer Dereference in WDDX Packet
 >    Deserialization with PDORow)
 >    http://bugs.php.net/73331

 > Full ChangeLog:
 >   http://php.net/ChangeLog-7.php#7.1.0

 > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-01-10 20:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-09 17:13 [Buildroot] [PATCH 1/2] php-imagick: bump version to 3.4.3RC1 Vicente Olivert Riera
2017-01-09 17:13 ` [Buildroot] [PATCH 2/2] php: bump version to 7.1.0 (security) Vicente Olivert Riera
2017-01-10 20:03   ` Peter Korsgaard
2017-01-10 20:03 ` [Buildroot] [PATCH 1/2] php-imagick: bump version to 3.4.3RC1 Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.