* [Buildroot] [PATCH v2 0/8] php: bump version to 7.0.5
@ 2016-04-18 11:53 Vicente Olivert Riera
2016-04-18 11:53 ` [Buildroot] [PATCH v2 1/8] php-geoip: bump version to HEAD of master on GitHub Vicente Olivert Riera
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Vicente Olivert Riera @ 2016-04-18 11:53 UTC (permalink / raw)
To: buildroot
This series bumps PHP to version 7.0.5.
It starts by bumping some external modules which can be built for both
PHP 5 and PHP 7.
Then it deletes the external modules which are not compatible with PHP 7
and their new versions are not compatible with PHP 5 either (so they
cannot be bumped like the other ones).
After that, it performs the PHP version bump to 7.0.5.
Finally the deleted modules are re added at a version compatible with
PHP 7.
Changes v1 -> v2:
- Split the patch in multiple patches for the sake of bisectability.
Vicente Olivert Riera (8):
php-geoip: bump version to HEAD of master on GitHub
php-imagick: bump version to 3.4.1
php-zmq: bump version to 1.1.3
php: bump version to 7.0.5
php-gnupg: re add package, now compatible with PHP 7
php-memcached: re add package, now compatible with PHP 7
php-ssh2: re add package, now compatible with PHP 7
php-yaml: re add package, now compatible with PHP 7
package/php-geoip/php-geoip.hash | 2 +-
package/php-geoip/php-geoip.mk | 6 ++----
package/php-gnupg/php-gnupg.hash | 2 +-
package/php-gnupg/php-gnupg.mk | 5 ++---
package/php-imagick/php-imagick.hash | 2 +-
package/php-imagick/php-imagick.mk | 5 ++---
package/php-memcached/php-memcached.hash | 2 +-
package/php-memcached/php-memcached.mk | 6 ++----
package/php-ssh2/php-ssh2.hash | 2 +-
package/php-ssh2/php-ssh2.mk | 6 ++----
package/php-yaml/php-yaml.hash | 2 +-
package/php-yaml/php-yaml.mk | 5 ++---
package/php-zmq/php-zmq.hash | 2 +-
package/php-zmq/php-zmq.mk | 5 ++---
package/php/php.hash | 2 +-
package/php/php.mk | 2 +-
16 files changed, 23 insertions(+), 33 deletions(-)
--
2.7.3
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v2 1/8] php-geoip: bump version to HEAD of master on GitHub
2016-04-18 11:53 [Buildroot] [PATCH v2 0/8] php: bump version to 7.0.5 Vicente Olivert Riera
@ 2016-04-18 11:53 ` Vicente Olivert Riera
2016-04-18 11:53 ` [Buildroot] [PATCH v2 2/8] php-imagick: bump version to 3.4.1 Vicente Olivert Riera
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Vicente Olivert Riera @ 2016-04-18 11:53 UTC (permalink / raw)
To: buildroot
Related: https://bugs.php.net/bug.php?id=71083
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
package/php-geoip/php-geoip.hash | 2 +-
package/php-geoip/php-geoip.mk | 6 ++----
2 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/package/php-geoip/php-geoip.hash b/package/php-geoip/php-geoip.hash
index 275a098..61945cf 100644
--- a/package/php-geoip/php-geoip.hash
+++ b/package/php-geoip/php-geoip.hash
@@ -1,2 +1,2 @@
# Locally calculated
-sha256 82c6deb7264d2ff7c4d6c45a7d27cff7ab097be965795e317e04a9c5b7be98b9 geoip-1.1.0.tgz
+sha256 8b5e8dec6353c437809e58d798627927ae659682b5bbdad023e9e569c278bfed php-geoip-1fd53288458100e9e30acf5a62bc9ef8426513d3.tar.gz
diff --git a/package/php-geoip/php-geoip.mk b/package/php-geoip/php-geoip.mk
index 0826c19..93dcf01 100644
--- a/package/php-geoip/php-geoip.mk
+++ b/package/php-geoip/php-geoip.mk
@@ -4,10 +4,8 @@
#
################################################################################
-PHP_GEOIP_VERSION = 1.1.0
-PHP_GEOIP_SOURCE = geoip-$(PHP_GEOIP_VERSION).tgz
-# pecl.php.net returns html with db connect failed
-PHP_GEOIP_SITE = http://sources.buildroot.net
+PHP_GEOIP_VERSION = 1fd53288458100e9e30acf5a62bc9ef8426513d3
+PHP_GEOIP_SITE = $(call github,php7-extensions,ext-php7-geoip,$(PHP_GEOIP_VERSION))
PHP_GEOIP_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
--with-geoip=$(STAGING_DIR)/usr
# phpize does the autoconf magic
--
2.7.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v2 2/8] php-imagick: bump version to 3.4.1
2016-04-18 11:53 [Buildroot] [PATCH v2 0/8] php: bump version to 7.0.5 Vicente Olivert Riera
2016-04-18 11:53 ` [Buildroot] [PATCH v2 1/8] php-geoip: bump version to HEAD of master on GitHub Vicente Olivert Riera
@ 2016-04-18 11:53 ` Vicente Olivert Riera
2016-04-18 11:53 ` [Buildroot] [PATCH v2 3/8] php-zmq: bump version to 1.1.3 Vicente Olivert Riera
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Vicente Olivert Riera @ 2016-04-18 11:53 UTC (permalink / raw)
To: buildroot
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
package/php-imagick/php-imagick.hash | 2 +-
package/php-imagick/php-imagick.mk | 5 ++---
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/package/php-imagick/php-imagick.hash b/package/php-imagick/php-imagick.hash
index 6173eca..551bed6 100644
--- a/package/php-imagick/php-imagick.hash
+++ b/package/php-imagick/php-imagick.hash
@@ -1,2 +1,2 @@
# Locally calculated
-sha256 528769ac304a0bbe9a248811325042188c9d16e06de16f111fee317c85a36c93 imagick-3.1.2.tgz
+sha256 a729fbd69e0aa145824d61dc9225bfb636dcd8421874a5667ac3822e609449e1 imagick-3.4.1.tgz
diff --git a/package/php-imagick/php-imagick.mk b/package/php-imagick/php-imagick.mk
index 1cd4a48..84cc311 100644
--- a/package/php-imagick/php-imagick.mk
+++ b/package/php-imagick/php-imagick.mk
@@ -4,10 +4,9 @@
#
################################################################################
-PHP_IMAGICK_VERSION = 3.1.2
+PHP_IMAGICK_VERSION = 3.4.1
PHP_IMAGICK_SOURCE = imagick-$(PHP_IMAGICK_VERSION).tgz
-# pecl.php.net returns html with db connect failed
-PHP_IMAGICK_SITE = http://sources.buildroot.net
+PHP_IMAGICK_SITE = http://pecl.php.net/get
PHP_IMAGICK_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
--with-imagick=$(STAGING_DIR)/usr
# phpize does the autoconf magic
--
2.7.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v2 3/8] php-zmq: bump version to 1.1.3
2016-04-18 11:53 [Buildroot] [PATCH v2 0/8] php: bump version to 7.0.5 Vicente Olivert Riera
2016-04-18 11:53 ` [Buildroot] [PATCH v2 1/8] php-geoip: bump version to HEAD of master on GitHub Vicente Olivert Riera
2016-04-18 11:53 ` [Buildroot] [PATCH v2 2/8] php-imagick: bump version to 3.4.1 Vicente Olivert Riera
@ 2016-04-18 11:53 ` Vicente Olivert Riera
2016-06-13 7:25 ` Thomas Petazzoni
2016-04-18 11:53 ` [Buildroot] [PATCH v2 4/8] php: bump version to 7.0.5 Vicente Olivert Riera
2016-05-01 21:03 ` [Buildroot] [PATCH v2 0/8] " Thomas Petazzoni
4 siblings, 1 reply; 8+ messages in thread
From: Vicente Olivert Riera @ 2016-04-18 11:53 UTC (permalink / raw)
To: buildroot
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
package/php-zmq/php-zmq.hash | 2 +-
package/php-zmq/php-zmq.mk | 5 ++---
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/package/php-zmq/php-zmq.hash b/package/php-zmq/php-zmq.hash
index 50ce639..c99e351 100644
--- a/package/php-zmq/php-zmq.hash
+++ b/package/php-zmq/php-zmq.hash
@@ -1,2 +1,2 @@
# Locally calculated
-sha256 c9b0af56826fc5e1a95a0fef25e671d9839a421d79e174931faacd8bee389f31 zmq-1.1.2.tgz
+sha256 c492375818bd51b355352798fb94f04d6828c6aeda41ba813849624af74144ce zmq-1.1.3.tgz
diff --git a/package/php-zmq/php-zmq.mk b/package/php-zmq/php-zmq.mk
index 88c962d..2730996 100644
--- a/package/php-zmq/php-zmq.mk
+++ b/package/php-zmq/php-zmq.mk
@@ -4,10 +4,9 @@
#
################################################################################
-PHP_ZMQ_VERSION = 1.1.2
+PHP_ZMQ_VERSION = 1.1.3
PHP_ZMQ_SOURCE = zmq-$(PHP_ZMQ_VERSION).tgz
-# pecl.php.net returns html with db connect failed
-PHP_ZMQ_SITE = http://sources.buildroot.net
+PHP_ZMQ_SITE = https://pecl.php.net/get
# phpize does the autoconf magic
PHP_ZMQ_DEPENDENCIES = php zeromq host-autoconf host-pkgconf
PHP_ZMQ_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config
--
2.7.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v2 4/8] php: bump version to 7.0.5
2016-04-18 11:53 [Buildroot] [PATCH v2 0/8] php: bump version to 7.0.5 Vicente Olivert Riera
` (2 preceding siblings ...)
2016-04-18 11:53 ` [Buildroot] [PATCH v2 3/8] php-zmq: bump version to 1.1.3 Vicente Olivert Riera
@ 2016-04-18 11:53 ` Vicente Olivert Riera
2016-04-28 12:10 ` Thomas Petazzoni
2016-05-01 21:03 ` [Buildroot] [PATCH v2 0/8] " Thomas Petazzoni
4 siblings, 1 reply; 8+ messages in thread
From: Vicente Olivert Riera @ 2016-04-18 11:53 UTC (permalink / raw)
To: buildroot
Also remove incompatible external modules:
- php-gnupg
- php-memcached
- php-ssh2
- php-yaml
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
package/Config.in | 4 ----
package/php-gnupg/Config.in | 9 ---------
package/php-gnupg/php-gnupg.hash | 2 --
package/php-gnupg/php-gnupg.mk | 26 --------------------------
package/php-memcached/Config.in | 15 ---------------
package/php-memcached/php-memcached.hash | 2 --
package/php-memcached/php-memcached.mk | 29 -----------------------------
package/php-ssh2/Config.in | 8 --------
package/php-ssh2/php-ssh2.hash | 2 --
package/php-ssh2/php-ssh2.mk | 27 ---------------------------
package/php-yaml/Config.in | 8 --------
package/php-yaml/php-yaml.hash | 2 --
package/php-yaml/php-yaml.mk | 27 ---------------------------
package/php/php.hash | 2 +-
package/php/php.mk | 2 +-
15 files changed, 2 insertions(+), 163 deletions(-)
delete mode 100644 package/php-gnupg/Config.in
delete mode 100644 package/php-gnupg/php-gnupg.hash
delete mode 100644 package/php-gnupg/php-gnupg.mk
delete mode 100644 package/php-memcached/Config.in
delete mode 100644 package/php-memcached/php-memcached.hash
delete mode 100644 package/php-memcached/php-memcached.mk
delete mode 100644 package/php-ssh2/Config.in
delete mode 100644 package/php-ssh2/php-ssh2.hash
delete mode 100644 package/php-ssh2/php-ssh2.mk
delete mode 100644 package/php-yaml/Config.in
delete mode 100644 package/php-yaml/php-yaml.hash
delete mode 100644 package/php-yaml/php-yaml.mk
diff --git a/package/Config.in b/package/Config.in
index ecaf164..303531d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -611,11 +611,7 @@ if BR2_PACKAGE_PHP
if !BR2_STATIC_LIBS
menu "External php extensions"
source "package/php-geoip/Config.in"
- source "package/php-gnupg/Config.in"
source "package/php-imagick/Config.in"
- source "package/php-memcached/Config.in"
- source "package/php-ssh2/Config.in"
- source "package/php-yaml/Config.in"
source "package/php-zmq/Config.in"
endmenu
endif
diff --git a/package/php-gnupg/Config.in b/package/php-gnupg/Config.in
deleted file mode 100644
index 49fb43b..0000000
--- a/package/php-gnupg/Config.in
+++ /dev/null
@@ -1,9 +0,0 @@
-config BR2_PACKAGE_PHP_GNUPG
- bool "php-gnupg"
- depends on BR2_PACKAGE_PHP
- depends on BR2_USE_MMU # libassuan
- select BR2_PACKAGE_LIBGPGME
- help
- PHP wrapper around the gpgme library.
-
- http://pecl.php.net/package/gnupg
diff --git a/package/php-gnupg/php-gnupg.hash b/package/php-gnupg/php-gnupg.hash
deleted file mode 100644
index ef066a5..0000000
--- a/package/php-gnupg/php-gnupg.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# Locally calculated
-sha256 50065cb81f1ac3ec5fcd796e58c8433071ff24cc14900e6077682717f5239307 gnupg-1.3.6.tgz
diff --git a/package/php-gnupg/php-gnupg.mk b/package/php-gnupg/php-gnupg.mk
deleted file mode 100644
index c5964c2..0000000
--- a/package/php-gnupg/php-gnupg.mk
+++ /dev/null
@@ -1,26 +0,0 @@
-################################################################################
-#
-# php-gnupg
-#
-################################################################################
-
-PHP_GNUPG_VERSION = 1.3.6
-PHP_GNUPG_SOURCE = gnupg-$(PHP_GNUPG_VERSION).tgz
-PHP_GNUPG_SITE = http://pecl.php.net/get
-# phpize does the autoconf magic
-PHP_GNUPG_DEPENDENCIES = php libgpgme host-autoconf host-pkgconf
-PHP_GNUPG_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
- --with-gnupg=$(STAGING_DIR)/usr/include --with-gpg=/usr/bin/gpg
-PHP_GNUPG_LICENSE = BSD-2c
-PHP_GNUPG_LICENSE_FILES = LICENSE
-
-define PHP_GNUPG_PHPIZE
- (cd $(@D); \
- PHP_AUTOCONF=$(HOST_DIR)/usr/bin/autoconf \
- PHP_AUTOHEADER=$(HOST_DIR)/usr/bin/autoheader \
- $(STAGING_DIR)/usr/bin/phpize)
-endef
-
-PHP_GNUPG_PRE_CONFIGURE_HOOKS += PHP_GNUPG_PHPIZE
-
-$(eval $(autotools-package))
diff --git a/package/php-memcached/Config.in b/package/php-memcached/Config.in
deleted file mode 100644
index cd97c15..0000000
--- a/package/php-memcached/Config.in
+++ /dev/null
@@ -1,15 +0,0 @@
-config BR2_PACKAGE_PHP_MEMCACHED
- bool "php-memcached"
- depends on BR2_INSTALL_LIBSTDCPP # libmemcached
- depends on BR2_TOOLCHAIN_HAS_THREADS # libmemcached
- select BR2_PACKAGE_PHP_EXT_SESSION
- select BR2_PACKAGE_LIBMEMCACHED
- select BR2_PACKAGE_ZLIB
- help
- PHP extension for interfacing with memcached via
- libmemcached library.
-
- http://pecl.php.net/package/memcached
-
-comment "php-memcached needs a toolchain w/ C++, threads"
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/php-memcached/php-memcached.hash b/package/php-memcached/php-memcached.hash
deleted file mode 100644
index bc2e97a..0000000
--- a/package/php-memcached/php-memcached.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# Locally calculated
-sha256 17b9600f6d4c807f23a3f5c45fcd8775ca2e61d6eda70370af2bef4c6e159f58 memcached-2.2.0.tgz
diff --git a/package/php-memcached/php-memcached.mk b/package/php-memcached/php-memcached.mk
deleted file mode 100644
index 599e22e..0000000
--- a/package/php-memcached/php-memcached.mk
+++ /dev/null
@@ -1,29 +0,0 @@
-################################################################################
-#
-# php-memcached
-#
-################################################################################
-
-PHP_MEMCACHED_VERSION = 2.2.0
-PHP_MEMCACHED_SOURCE = memcached-$(PHP_MEMCACHED_VERSION).tgz
-# pecl.php.net returns html with db connect failed
-PHP_MEMCACHED_SITE = http://sources.buildroot.net
-PHP_MEMCACHED_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
- --disable-memcached-sasl \
- --with-libmemcached-dir=$(STAGING_DIR)/usr \
- --with-zlib-dir=$(STAGING_DIR)/usr
-# phpize does the autoconf magic
-PHP_MEMCACHED_DEPENDENCIES = libmemcached php zlib host-autoconf host-pkgconf
-PHP_MEMCACHED_LICENSE = MIT
-PHP_MEMCACHED_LICENSE_FILES = LICENSE
-
-define PHP_MEMCACHED_PHPIZE
- (cd $(@D); \
- PHP_AUTOCONF=$(HOST_DIR)/usr/bin/autoconf \
- PHP_AUTOHEADER=$(HOST_DIR)/usr/bin/autoheader \
- $(STAGING_DIR)/usr/bin/phpize)
-endef
-
-PHP_MEMCACHED_PRE_CONFIGURE_HOOKS += PHP_MEMCACHED_PHPIZE
-
-$(eval $(autotools-package))
diff --git a/package/php-ssh2/Config.in b/package/php-ssh2/Config.in
deleted file mode 100644
index b457900..0000000
--- a/package/php-ssh2/Config.in
+++ /dev/null
@@ -1,8 +0,0 @@
-config BR2_PACKAGE_PHP_SSH2
- bool "php-ssh2"
- depends on BR2_PACKAGE_PHP
- select BR2_PACKAGE_LIBSSH2
- help
- PHP bindings for the libssh2 library.
-
- http://pecl.php.net/package/ssh2
diff --git a/package/php-ssh2/php-ssh2.hash b/package/php-ssh2/php-ssh2.hash
deleted file mode 100644
index d599662..0000000
--- a/package/php-ssh2/php-ssh2.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# Locally calculated
-sha256 600c82d2393acf3642f19914f06a7afea57ee05cb8c10e8a5510b32188b97f99 ssh2-0.12.tgz
diff --git a/package/php-ssh2/php-ssh2.mk b/package/php-ssh2/php-ssh2.mk
deleted file mode 100644
index ace68e0..0000000
--- a/package/php-ssh2/php-ssh2.mk
+++ /dev/null
@@ -1,27 +0,0 @@
-################################################################################
-#
-# php-ssh2
-#
-################################################################################
-
-PHP_SSH2_VERSION = 0.12
-PHP_SSH2_SOURCE = ssh2-$(PHP_SSH2_VERSION).tgz
-# pecl.php.net returns html with db connect failed
-PHP_SSH2_SITE = http://sources.buildroot.net
-PHP_SSH2_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
- --with-ssh2=$(STAGING_DIR)/usr
-# phpize does the autoconf magic
-PHP_SSH2_DEPENDENCIES = libssh2 php host-autoconf
-PHP_SSH2_LICENSE = PHP
-PHP_SSH2_LICENSE_FILES = LICENSE
-
-define PHP_SSH2_PHPIZE
- (cd $(@D); \
- PHP_AUTOCONF=$(HOST_DIR)/usr/bin/autoconf \
- PHP_AUTOHEADER=$(HOST_DIR)/usr/bin/autoheader \
- $(STAGING_DIR)/usr/bin/phpize)
-endef
-
-PHP_SSH2_PRE_CONFIGURE_HOOKS += PHP_SSH2_PHPIZE
-
-$(eval $(autotools-package))
diff --git a/package/php-yaml/Config.in b/package/php-yaml/Config.in
deleted file mode 100644
index 8d09ce2..0000000
--- a/package/php-yaml/Config.in
+++ /dev/null
@@ -1,8 +0,0 @@
-config BR2_PACKAGE_PHP_YAML
- bool "php-yaml"
- depends on BR2_PACKAGE_PHP
- select BR2_PACKAGE_LIBYAML
- help
- PHP YAML-1.1 parser and emitter.
-
- http://pecl.php.net/package/yaml
diff --git a/package/php-yaml/php-yaml.hash b/package/php-yaml/php-yaml.hash
deleted file mode 100644
index e4f22a6..0000000
--- a/package/php-yaml/php-yaml.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# Locally calculated
-sha256 762ec3d9eb163ac0d063118df8c5e2ee6746dbe8566d32055e7e066e590937c3 yaml-1.1.1.tgz
diff --git a/package/php-yaml/php-yaml.mk b/package/php-yaml/php-yaml.mk
deleted file mode 100644
index b6f259d..0000000
--- a/package/php-yaml/php-yaml.mk
+++ /dev/null
@@ -1,27 +0,0 @@
-################################################################################
-#
-# php-yaml
-#
-################################################################################
-
-PHP_YAML_VERSION = 1.1.1
-PHP_YAML_SOURCE = yaml-$(PHP_YAML_VERSION).tgz
-# pecl.php.net returns html with db connect failed
-PHP_YAML_SITE = http://sources.buildroot.net
-PHP_YAML_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
- --with-yaml=$(STAGING_DIR)/usr
-# phpize does the autoconf magic
-PHP_YAML_DEPENDENCIES = libyaml php host-autoconf
-PHP_YAML_LICENSE = MIT
-PHP_YAML_LICENSE_FILES = LICENSE
-
-define PHP_YAML_PHPIZE
- (cd $(@D); \
- PHP_AUTOCONF=$(HOST_DIR)/usr/bin/autoconf \
- PHP_AUTOHEADER=$(HOST_DIR)/usr/bin/autoheader \
- $(STAGING_DIR)/usr/bin/phpize)
-endef
-
-PHP_YAML_PRE_CONFIGURE_HOOKS += PHP_YAML_PHPIZE
-
-$(eval $(autotools-package))
diff --git a/package/php/php.hash b/package/php/php.hash
index e359bf7..447adb8 100644
--- a/package/php/php.hash
+++ b/package/php/php.hash
@@ -1,2 +1,2 @@
# From http://php.net/downloads.php
-sha256 2b87d40213361112af49157a435e0d4cdfd334c9b7c731c8b844932b1f444e7a php-5.6.20.tar.xz
+sha256 c41f1a03c24119c0dd9b741cdb67880486e64349fc33527767f6dc28d3803abb php-7.0.5.tar.xz
diff --git a/package/php/php.mk b/package/php/php.mk
index 1c92060..6ab321d 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -4,7 +4,7 @@
#
################################################################################
-PHP_VERSION = 5.6.20
+PHP_VERSION = 7.0.5
PHP_SITE = http://www.php.net/distributions
PHP_SOURCE = php-$(PHP_VERSION).tar.xz
PHP_INSTALL_STAGING = YES
--
2.7.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v2 4/8] php: bump version to 7.0.5
2016-04-18 11:53 ` [Buildroot] [PATCH v2 4/8] php: bump version to 7.0.5 Vicente Olivert Riera
@ 2016-04-28 12:10 ` Thomas Petazzoni
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2016-04-28 12:10 UTC (permalink / raw)
To: buildroot
Hello,
On Mon, 18 Apr 2016 12:53:07 +0100, Vicente Olivert Riera wrote:
> -PHP_VERSION = 5.6.20
> +PHP_VERSION = 7.0.5
I haven't looked at the details, but about PHP 7,
https://en.wikipedia.org/wiki/PHP says:
""Several unmaintained or deprecated server application programming
interfaces (SAPIs) and extensions were removed from the PHP core, most
notably the legacy mysql extension""
But there is still an option for MySQL in package/php/Config.ext.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v2 0/8] php: bump version to 7.0.5
2016-04-18 11:53 [Buildroot] [PATCH v2 0/8] php: bump version to 7.0.5 Vicente Olivert Riera
` (3 preceding siblings ...)
2016-04-18 11:53 ` [Buildroot] [PATCH v2 4/8] php: bump version to 7.0.5 Vicente Olivert Riera
@ 2016-05-01 21:03 ` Thomas Petazzoni
4 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2016-05-01 21:03 UTC (permalink / raw)
To: buildroot
Hello,
On Mon, 18 Apr 2016 12:53:03 +0100, Vicente Olivert Riera wrote:
> Vicente Olivert Riera (8):
> php-geoip: bump version to HEAD of master on GitHub
> php-imagick: bump version to 3.4.1
> php-zmq: bump version to 1.1.3
I've applied those ones, since they continue to work with PHP 5.
> php: bump version to 7.0.5
> php-gnupg: re add package, now compatible with PHP 7
> php-memcached: re add package, now compatible with PHP 7
> php-ssh2: re add package, now compatible with PHP 7
> php-yaml: re add package, now compatible with PHP 7
I'm holding off on the PHP 7 update. PHP 7 is quite new, it breaks some
external modules, so I think we should apply since after 2016.05 is
released.
Best regards,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH v2 3/8] php-zmq: bump version to 1.1.3
2016-04-18 11:53 ` [Buildroot] [PATCH v2 3/8] php-zmq: bump version to 1.1.3 Vicente Olivert Riera
@ 2016-06-13 7:25 ` Thomas Petazzoni
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2016-06-13 7:25 UTC (permalink / raw)
To: buildroot
Hello,
On Mon, 18 Apr 2016 12:53:06 +0100, Vicente Olivert Riera wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
> package/php-zmq/php-zmq.hash | 2 +-
> package/php-zmq/php-zmq.mk | 5 ++---
> 2 files changed, 3 insertions(+), 4 deletions(-)
This causes a build failure on Blackfin:
http://autobuild.buildroot.net/results/da6/da67a515eff825a57e523b9f80485a4c50fffeda/build-end.log
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2016-06-13 7:25 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-18 11:53 [Buildroot] [PATCH v2 0/8] php: bump version to 7.0.5 Vicente Olivert Riera
2016-04-18 11:53 ` [Buildroot] [PATCH v2 1/8] php-geoip: bump version to HEAD of master on GitHub Vicente Olivert Riera
2016-04-18 11:53 ` [Buildroot] [PATCH v2 2/8] php-imagick: bump version to 3.4.1 Vicente Olivert Riera
2016-04-18 11:53 ` [Buildroot] [PATCH v2 3/8] php-zmq: bump version to 1.1.3 Vicente Olivert Riera
2016-06-13 7:25 ` Thomas Petazzoni
2016-04-18 11:53 ` [Buildroot] [PATCH v2 4/8] php: bump version to 7.0.5 Vicente Olivert Riera
2016-04-28 12:10 ` Thomas Petazzoni
2016-05-01 21:03 ` [Buildroot] [PATCH v2 0/8] " Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox