Hello community, here is the log from the commit of package php7 for openSUSE:Factory checked in at 2017-09-29 11:51:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/php7 (Old) and /work/SRC/openSUSE:Factory/.php7.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "php7" Fri Sep 29 11:51:37 2017 rev:23 rq:528903 version:7.1.10 Changes: -------- --- /work/SRC/openSUSE:Factory/php7/php7.changes 2017-09-07 22:11:38.704244045 +0200 +++ /work/SRC/openSUSE:Factory/.php7.new/php7.changes 2017-09-29 11:51:47.525212693 +0200 @@ -1,0 +2,12 @@ +Wed Sep 27 07:35:51 UTC 2017 - pgaj...@suse.com + +- updated to 7.1.10: Several bugs have been fixed, see + https://secure.php.net/ChangeLog-7.php + for details + +------------------------------------------------------------------- +Tue Sep 12 08:43:11 UTC 2017 - pgaj...@suse.com + +- aarch64-mult.patch renamed to php7-aarch64-mult.patch + +------------------------------------------------------------------- Old: ---- aarch64-mult.patch php-7.1.9.tar.xz php-7.1.9.tar.xz.asc New: ---- php-7.1.10.tar.xz php-7.1.10.tar.xz.asc php7-aarch64-mult.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ php7.spec ++++++ --- /var/tmp/diff_new_pack.tTiQCt/_old 2017-09-29 11:51:48.785035040 +0200 +++ /var/tmp/diff_new_pack.tTiQCt/_new 2017-09-29 11:51:48.789034476 +0200 @@ -43,7 +43,7 @@ %endif %endif Name: php7 -Version: 7.1.9 +Version: 7.1.10 Release: 0 Summary: PHP7 Core Files License: PHP-3.01 @@ -82,7 +82,7 @@ # https://bugs.php.net/bug.php?id=70461 Patch15: php7-fix_net-snmp_disable_MD5.patch # https://bugs.php.net/bug.php?id=70015 -Patch16: aarch64-mult.patch +Patch16: php7-aarch64-mult.patch # should be upstreamed, will do later Patch17: php7-date-regenerate-lexers.patch BuildRequires: apache-rpm-macros ++++++ php-7.1.9.tar.xz -> php-7.1.10.tar.xz ++++++ /work/SRC/openSUSE:Factory/php7/php-7.1.9.tar.xz /work/SRC/openSUSE:Factory/.php7.new/php-7.1.10.tar.xz differ: char 27, line 1 ++++++ php7-aarch64-mult.patch ++++++ Index: php-7.0.5/Zend/zend_multiply.h =================================================================== --- php-7.0.5.orig/Zend/zend_multiply.h +++ php-7.0.5/Zend/zend_multiply.h @@ -53,8 +53,8 @@ __asm__("mul %0, %2, %3\n" \ "smulh %1, %2, %3\n" \ "sub %1, %1, %0, asr #63\n" \ - : "=X"(__tmpvar), "=X"(usedval) \ - : "X"(a), "X"(b)); \ + : "=&r"(__tmpvar), "=&r"(usedval) \ + : "r"(a), "r"(b)); \ if (usedval) (dval) = (double) (a) * (double) (b); \ else (lval) = __tmpvar; \ } while (0)