From 9ad8c9712a82f098a0460977a95b0468e4ffded0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 26 Jun 2014 15:12:43 +0200 Subject: php-pecl-yaf: fix for 5.6 --- php-pecl-yaf.spec | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'php-pecl-yaf.spec') diff --git a/php-pecl-yaf.spec b/php-pecl-yaf.spec index 2247dff..46d7c41 100644 --- a/php-pecl-yaf.spec +++ b/php-pecl-yaf.spec @@ -22,13 +22,15 @@ Summary: Yet Another Framework Name: %{?scl_prefix}php-pecl-yaf Version: 2.3.2 -Release: 2%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} +Release: 3%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/yaf Source0: http://pecl.php.net/get/%{pecl_name}-%{version}.tgz Source1: %{pecl_name}.ini +Patch0: %{pecl_name}-git.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: %{?scl_prefix}php-devel >= 5.2.0 BuildRequires: %{?scl_prefix}php-pear @@ -73,12 +75,16 @@ to develop web applications. %setup -q -c mv %{pecl_name}-%{version} NTS +cd NTS +%patch0 -p1 -b .upstream + # Sanity check, really often broken -extver=$(sed -n '/#define PHP_YAF_VERSION/{s/.*\t"//;s/".*$//;p}' NTS/php_yaf.h ) +extver=$(sed -n '/#define PHP_YAF_VERSION/{s/.*\t"//;s/".*$//;p}' php_yaf.h ) if test "x${extver}" != "x%{version}"; then : Error: Upstream extension version is ${extver}, expecting %{version}. exit 1 fi +cd .. %if %{with_zts} # duplicate for ZTS build @@ -184,6 +190,9 @@ rm -rf %{buildroot} %changelog +* Thu Jun 26 2014 Remi Collet - 2.3.2-3 +- upstream patch for PHP 5.6 + * Thu Apr 17 2014 Remi Collet - 2.3.2-2 - add numerical prefix to extension configuration file (php 5.6) -- cgit