From a86c02af6872e44eb2f7fb6fd8abd8b7a7e4344f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 17 Oct 2019 16:31:23 +0200 Subject: - use range dependencies - add patch for PHP 7.4 from https://github.com/horde/Ldap/pull/1 --- php-horde-Horde-Ldap.spec | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) (limited to 'php-horde-Horde-Ldap.spec') diff --git a/php-horde-Horde-Ldap.spec b/php-horde-Horde-Ldap.spec index 2a96eeb..a1f5049 100644 --- a/php-horde-Horde-Ldap.spec +++ b/php-horde-Horde-Ldap.spec @@ -1,6 +1,6 @@ # remirepo/fedora spec file for php-horde-Horde-Ldap # -# Copyright (c) 2012-2018 Remi Collet +# Copyright (c) 2012-2019 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # @@ -12,20 +12,28 @@ Name: php-horde-Horde-Ldap Version: 2.4.1 -Release: 1%{?dist} +Release: 6%{?dist} Summary: Horde LDAP libraries -Group: Development/Libraries License: LGPLv3 URL: http://pear.horde.org Source0: http://%{pear_channel}/get/%{pear_name}-%{version}.tgz +Patch0: https://patch-diff.githubusercontent.com/raw/horde/Ldap/pull/1.patch + BuildArch: noarch BuildRequires: php(language) >= 5.3.0 BuildRequires: php-pear(PEAR) >= 1.7.0 BuildRequires: php-channel(%{pear_channel}) # To run unit tests +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +BuildRequires: php-ldap +BuildRequires: (php-pear(%{pear_channel}/Horde_Test) >= 2.1.0 with php-pear(%{pear_channel}/Horde_Test) < 3) +BuildRequires: (php-pear(%{pear_channel}/Horde_Exception) >= 2.0.0 with php-pear(%{pear_channel}/Horde_Exception) < 3) +BuildRequires: (php-pear(%{pear_channel}/Horde_Util) >= 2.0.0 with php-pear(%{pear_channel}/Horde_Util) < 3) +%else BuildRequires: php-pear(%{pear_channel}/Horde_Test) >= 2.1.0 +%endif Requires(post): %{__pear} Requires(postun): %{__pear} @@ -35,10 +43,15 @@ Requires: php-pcre Requires: php-spl Requires: php-pear(PEAR) >= 1.7.0 Requires: php-channel(%{pear_channel}) +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +Requires: (php-pear(%{pear_channel}/Horde_Exception) >= 2.0.0 with php-pear(%{pear_channel}/Horde_Exception) < 3) +Requires: (php-pear(%{pear_channel}/Horde_Util) >= 2.0.0 with php-pear(%{pear_channel}/Horde_Util) < 3) +%else Requires: php-pear(%{pear_channel}/Horde_Exception) >= 2.0.0 Requires: php-pear(%{pear_channel}/Horde_Exception) < 3.0.0 Requires: php-pear(%{pear_channel}/Horde_Util) >= 2.0.0 Requires: php-pear(%{pear_channel}/Horde_Util) < 3.0.0 +%endif Provides: php-pear(%{pear_channel}/%{pear_name}) = %{version} Provides: php-composer(horde/horde-ldap) = %{version} @@ -50,9 +63,10 @@ objects. %prep %setup -q -c - cd %{pear_name}-%{version} -cp ../package.xml %{name}.xml +%patch0 -p1 -b .pr1 +sed -e '/Filter.php/s/md5sum=.*name=/name=/' \ + ../package.xml >%{name}.xml %build @@ -76,7 +90,7 @@ install -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} cd %{pear_name}-%{version}/test/$(echo %{pear_name} | sed -e s:_:/:g) ret=0 -for cmd in php php70 php71 php72; do +for cmd in php php71 php72 php73 php74; do if which $cmd; then $cmd %{_bindir}/phpunit --bootstrap bootstrap.php --verbose . || ret=1 fi @@ -104,6 +118,11 @@ fi %changelog +* Thu Oct 17 2019 Remi Collet - 2.4.1-6 +- use range dependencies +- add patch for PHP 7.4 from + https://github.com/horde/Ldap/pull/1 + * Fri Jan 26 2018 Remi Collet - 2.4.1-1 - Update to 2.4.1 -- cgit