]> git.pld-linux.org Git - packages/php.git/commitdiff
ext-enchant version matches php version now
authorElan Ruusamäe <glen@pld-linux.org>
Sat, 28 Oct 2017 13:56:36 +0000 (16:56 +0300)
committerElan Ruusamäe <glen@pld-linux.org>
Sat, 28 Oct 2017 16:31:37 +0000 (19:31 +0300)
php.spec

index f7b87306b7f1f4188ddb821d046d59192032f340..7d757fe8e770e858d3746613a427784c1e41d0d8 100644 (file)
--- a/php.spec
+++ b/php.spec
@@ -154,7 +154,7 @@ Summary(ru.UTF-8):  PHP Версии 7 - язык препроцессирова
 Summary(uk.UTF-8):     PHP Версії 7 - мова препроцесування HTML-файлів, виконувана на сервері
 Name:          %{orgname}%{php_suffix}
 Version:       7.2.0
-Release:       0.22
+Release:       0.23
 Epoch:         4
 # All files licensed under PHP version 3.01, except
 # Zend is licensed under Zend
@@ -311,7 +311,7 @@ BuildRoot:  %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 # Extension versions
 %define                bz2ver          1.0
-%define                enchantver      1.1.0
+%define                enchantver      %{version}
 %define                fileinfover     1.0.5
 %define                hashver         1.0
 %define                intlver         1.1.0
@@ -2195,10 +2195,8 @@ if test "$ver" != "%{bz2ver}"; then
        : Update the bz2ver macro and rebuild.
        exit 1
 fi
-ver=$(sed -n '/#define PHP_ENCHANT_VERSION /{s/.* "//;s/".*$//;p}' ext/enchant/php_enchant.h)
-if test "$ver" != "%{enchantver}"; then
-       : Error: Upstream Enchant version is now ${ver}, expecting %{enchantver}.
-       : Update the enchantver macro and rebuild.
+ver=$(awk '/#define PHP_ENCHANT_VERSION/ {print $3}' ext/enchant/php_enchant.h | xargs)
+if test "$ver" != "PHP_VERSION"; then
        exit 1
 fi
 ver=$(awk '/#define PHP_HASH_VERSION/ {print $3}' ext/hash/php_hash.h | xargs)
This page took 0.056514 seconds and 4 git commands to generate.