diff options
author | Remi Collet <fedora@famillecollet.com> | 2017-03-07 09:02:06 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2017-03-07 09:02:06 +0100 |
commit | cdbe16a40f68520b483b148747eb2dbfae925278 (patch) | |
tree | a18ce6d819f87f2d16029f477ffc3447b213caf6 /php-pear-Net-DNS2.spec | |
parent | f7290633f7863a806901c70391cfaa55df7bd74d (diff) |
php-pear-Net-DNS2: 1.4.3
Diffstat (limited to 'php-pear-Net-DNS2.spec')
-rw-r--r-- | php-pear-Net-DNS2.spec | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/php-pear-Net-DNS2.spec b/php-pear-Net-DNS2.spec index cadb44b..acb33f7 100644 --- a/php-pear-Net-DNS2.spec +++ b/php-pear-Net-DNS2.spec @@ -11,8 +11,8 @@ %global pear_name Net_DNS2 Name: php-pear-Net-DNS2 -Version: 1.4.2 -Release: 2%{?dist} +Version: 1.4.3 +Release: 1%{?dist} Summary: PHP Resolver library used to communicate with a DNS server Group: Development/Libraries @@ -20,10 +20,8 @@ License: BSD URL: http://pear.php.net/package/Net_DNS2 Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz -# Fix include path furing the test suite +# Fix include path during the test suite Patch0: %{pear_name}-incl.patch -# Upstream patch for PHP 7 -Patch1: %{pear_name}-php7.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -74,7 +72,6 @@ sed -e 's/md5sum="[^"]*"//' \ cd %{pear_name}-%{version} mv ../package.xml %{name}.xml %patch0 -p1 -%patch1 -p1 %build @@ -102,14 +99,19 @@ rm -rf %{buildroot} %check cd %{pear_name}-%{version}/tests -if ping -c 1 google.com &>/dev/null +if ! ping -c 1 google.com &>/dev/null then - suite=AllTests.php -else - : Resolver test disabled - suite=Net_DNS2_ParserTest.php + : Internet needed for tests + exit 0 fi -phpunit --include-path=.. $suite + +ret=0 +for cmd in php56 php70 php71 php; do + if which $cmd; then + $cmd %{_bindir}/phpunit --verbose --include-path=.. AllTests.php || ret=1 + fi +done +exit $ret %post @@ -134,6 +136,10 @@ fi %changelog +* Tue Mar 7 2017 Remi Collet <remi@remirepo.net> - 1.4.3-1 +- Update to 1.4.3 +- only run test suite when connected to internet + * Tue Nov 29 2016 Remi Collet <remi@fedoraproject.org> - 1.4.2-2 - use upstream patch for PHP 7 |