From 4af68851ea42db711991cf22c33d292314584087 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 3 Dec 2019 09:36:20 +0100 Subject: - update to 2.7.0 - ignore test results with 7.4, reported as https://github.com/llaville/php-compatinfo-db/issues/32 --- php-bartlett-php-compatinfo-db.spec | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'php-bartlett-php-compatinfo-db.spec') diff --git a/php-bartlett-php-compatinfo-db.spec b/php-bartlett-php-compatinfo-db.spec index 160cb70..0c0cd78 100644 --- a/php-bartlett-php-compatinfo-db.spec +++ b/php-bartlett-php-compatinfo-db.spec @@ -7,12 +7,12 @@ # Please, preserve the changelog entries # # See https://github.com/llaville/php-compatinfo-db/releases -%global gh_commit bd871074059200484af9f1beddd59ba72be54aca +%global gh_commit 78595b6a4ad07ea43e06204b3dc62b1134f4bbc9 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) #global gh_date 20151031 %global gh_owner llaville %global gh_project php-compatinfo-db -%global upstream_version 2.6.0 +%global upstream_version 2.7.0 #global upstream_prever RC1 # Namespace %global ns_vendor Bartlett @@ -199,6 +199,9 @@ OPT=$(php -r ' case "73": $max = Bartlett\CompatInfoDb\ExtensionFactory::LATEST_PHP_7_3; break; + case "74": + $max = Bartlett\CompatInfoDb\ExtensionFactory::LATEST_PHP_7_4; + break; default: exit(0); } @@ -246,9 +249,15 @@ require_once '%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.ph \Fedora\Autoloader\Autoload::addPsr4('Bartlett\\Tests\\CompatInfoDb\\', __DIR__); EOF +ret=0 %{_bindir}/phpunit \ --include-path %{buildroot}%{_datadir}/php \ - -d memory_limit=1G + -d memory_limit=1G || ret=1 + +if [ $(php -r 'echo PHP_VERSION_ID;') -lt 70400 ] +then + exit $ret +fi %endif @@ -264,6 +273,11 @@ EOF %changelog +* Tue Dec 3 2019 Remi Collet - 2.7.0-1 +- update to 2.7.0 +- ignore test results with 7.4, reported as + https://github.com/llaville/php-compatinfo-db/issues/32 + * Fri Jul 26 2019 Remi Collet - 2.6.0-1 - update to 2.6.0 -- cgit