Hello community,
here is the log from the commit of package php5 for openSUSE:Factory checked in at 2015-02-27 11:06:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/php5 (Old)
and /work/SRC/openSUSE:Factory/.php5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "php5"
Changes:
--------
--- /work/SRC/openSUSE:Factory/php5/php5.changes 2015-02-20 13:50:39.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.php5.new/php5.changes 2015-02-27 11:06:23.000000000 +0100
@@ -1,0 +2,6 @@
+Mon Feb 23 11:36:32 UTC 2015 - pgajdos(a)suse.com
+
+- update to 5.6.6: fixes several bugs and addresses CVE-2015-0235
+ and CVE-2015-0273.
+
+-------------------------------------------------------------------
Old:
----
php-5.6.5.tar.xz
php-5.6.5.tar.xz.asc
New:
----
php-5.6.6.tar.xz
php-5.6.6.tar.xz.asc
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ php5.spec ++++++
--- /var/tmp/diff_new_pack.65mDgR/_old 2015-02-27 11:06:25.000000000 +0100
+++ /var/tmp/diff_new_pack.65mDgR/_new 2015-02-27 11:06:25.000000000 +0100
@@ -111,7 +111,7 @@
%define apache2_includedir %(%{apxs2} -q INCLUDEDIR)
%define apache2_serverroot %(%{apxs2} -q PREFIX)
%define need_libxml2_hack %(if [ -e %{_includedir}/libxml/parser.h ]; then if grep -q XML_PARSE_OLDSAX %{_includedir}/libxml/parser.h;then echo 1; else echo 0; fi; else echo 0; fi)
-Version: 5.6.5
+Version: 5.6.6
Release: 0
Provides: php
Provides: php-api = %{apiver}
++++++ php-5.6.5.tar.xz -> php-5.6.6.tar.xz ++++++
/work/SRC/openSUSE:Factory/php5/php-5.6.5.tar.xz /work/SRC/openSUSE:Factory/.php5.new/php-5.6.6.tar.xz differ: char 27, line 1
++++++ php5-no-build-date.patch ++++++
--- /var/tmp/diff_new_pack.65mDgR/_old 2015-02-27 11:06:25.000000000 +0100
+++ /var/tmp/diff_new_pack.65mDgR/_new 2015-02-27 11:06:25.000000000 +0100
@@ -1,8 +1,8 @@
Index: ext/standard/info.c
===================================================================
---- ext/standard/info.c.orig 2014-02-05 11:00:36.000000000 +0100
-+++ ext/standard/info.c 2014-02-07 10:43:18.464149781 +0100
-@@ -702,7 +702,7 @@
+--- ext/standard/info.c.orig 2015-02-23 12:43:51.351469076 +0100
++++ ext/standard/info.c 2015-02-23 12:44:02.851643687 +0100
+@@ -736,7 +736,7 @@
php_info_print_box_end();
php_info_print_table_start();
php_info_print_table_row(2, "System", php_uname );
@@ -11,7 +11,7 @@
#ifdef COMPILER
php_info_print_table_row(2, "Compiler", COMPILER);
#endif
-@@ -710,7 +710,7 @@
+@@ -744,7 +744,7 @@
php_info_print_table_row(2, "Architecture", ARCHITECTURE);
#endif
#ifdef CONFIGURE_COMMAND
@@ -22,25 +22,25 @@
if (sapi_module.pretty_name) {
Index: sapi/fpm/fpm/fpm_main.c
===================================================================
---- sapi/fpm/fpm/fpm_main.c.orig 2014-02-07 10:43:18.465149793 +0100
-+++ sapi/fpm/fpm/fpm_main.c 2014-02-07 10:44:00.085630478 +0100
-@@ -1721,9 +1721,9 @@
+--- sapi/fpm/fpm/fpm_main.c.orig 2015-02-23 12:44:02.852643702 +0100
++++ sapi/fpm/fpm/fpm_main.c 2015-02-23 12:44:54.723431476 +0100
+@@ -1752,9 +1752,9 @@
SG(request_info).no_headers = 1;
#if ZEND_DEBUG
-- php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2014 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
-+ php_printf("PHP %s (%s) (DEBUG)\nCopyright (c) 1997-2014 The PHP Group\n%s", PHP_VERSION, sapi_module.name, get_zend_version());
+- php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2015 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
++ php_printf("PHP %s (%s) (DEBUG)\nCopyright (c) 1997-2015 The PHP Group\n%s", PHP_VERSION, sapi_module.name, get_zend_version());
#else
-- php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2014 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
-+ php_printf("PHP %s (%s)\nCopyright (c) 1997-2014 The PHP Group\n%s", PHP_VERSION, sapi_module.name, get_zend_version());
+- php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2015 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
++ php_printf("PHP %s (%s)\nCopyright (c) 1997-2015 The PHP Group\n%s", PHP_VERSION, sapi_module.name, get_zend_version());
#endif
php_request_shutdown((void *) 0);
fcgi_shutdown();
Index: configure.in
===================================================================
---- configure.in.orig 2014-02-05 11:00:36.000000000 +0100
-+++ configure.in 2014-02-07 10:43:18.465149793 +0100
-@@ -1257,8 +1257,8 @@
+--- configure.in.orig 2015-02-23 12:43:51.352469092 +0100
++++ configure.in 2015-02-23 12:44:02.853643718 +0100
+@@ -1274,8 +1274,8 @@
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PHP_LDFLAGS"
EXTRA_LDFLAGS_PROGRAM="$EXTRA_LDFLAGS_PROGRAM $PHP_LDFLAGS"
@@ -51,7 +51,7 @@
AC_DEFINE_UNQUOTED(PHP_BUILD_DATE,"$PHP_BUILD_DATE",[PHP build date])
case $host_alias in
-@@ -1269,7 +1269,8 @@
+@@ -1286,7 +1286,8 @@
AC_DEFINE_UNQUOTED(PHP_UNAME,"$PHP_UNAME",[hardcode for each of the cross compiler host])
;;
*)
@@ -63,32 +63,32 @@
AC_DEFINE_UNQUOTED(PHP_OS,"$PHP_OS",[uname output])
Index: sapi/cli/php_cli.c
===================================================================
---- sapi/cli/php_cli.c.orig 2014-02-07 10:43:18.466149804 +0100
-+++ sapi/cli/php_cli.c 2014-02-07 10:44:28.322956381 +0100
+--- sapi/cli/php_cli.c.orig 2015-02-23 12:44:02.853643718 +0100
++++ sapi/cli/php_cli.c 2015-02-23 12:47:57.894210451 +0100
@@ -693,8 +693,8 @@
goto out;
case 'v': /* show php version & quit */
-- php_printf("PHP %s (%s) (built: %s %s) %s\nCopyright (c) 1997-2014 The PHP Group\n%s",
+- php_printf("PHP %s (%s) (built: %s %s) %s\nCopyright (c) 1997-2015 The PHP Group\n%s",
- PHP_VERSION, cli_sapi_module.name, __DATE__, __TIME__,
-+ php_printf("PHP %s (%s) %s\nCopyright (c) 1997-2014 The PHP Group\n%s",
++ php_printf("PHP %s (%s) %s\nCopyright (c) 1997-2015 The PHP Group\n%s",
+ PHP_VERSION, cli_sapi_module.name,
#if ZEND_DEBUG && defined(HAVE_GCOV)
"(DEBUG GCOV)",
#elif ZEND_DEBUG
Index: sapi/cgi/cgi_main.c
===================================================================
---- sapi/cgi/cgi_main.c.orig 2014-02-07 10:43:18.467149816 +0100
-+++ sapi/cgi/cgi_main.c 2014-02-07 10:45:08.115414937 +0100
-@@ -2223,9 +2223,9 @@
+--- sapi/cgi/cgi_main.c.orig 2015-02-23 12:44:02.854643733 +0100
++++ sapi/cgi/cgi_main.c 2015-02-23 12:46:56.606280206 +0100
+@@ -2231,9 +2231,9 @@
SG(request_info).no_headers = 1;
}
#if ZEND_DEBUG
-- php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2014 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
-+ php_printf("PHP %s (%s) (DEBUG)\nCopyright (c) 1997-2014 The PHP Group\n%s", PHP_VERSION, sapi_module.name, get_zend_version());
+- php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2015 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
++ php_printf("PHP %s (%s) (DEBUG)\nCopyright (c) 1997-2015 The PHP Group\n%s", PHP_VERSION, sapi_module.name, get_zend_version());
#else
-- php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2014 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
-+ php_printf("PHP %s (%s)\nCopyright (c) 1997-2014 The PHP Group\n%s", PHP_VERSION, sapi_module.name, get_zend_version());
+- php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2015 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
++ php_printf("PHP %s (%s)\nCopyright (c) 1997-2015 The PHP Group\n%s", PHP_VERSION, sapi_module.name, get_zend_version());
#endif
php_request_shutdown((void *) 0);
fcgi_shutdown();
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org