From 7b98c09960a847528b82438b306c889ea177fbc1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 24 Apr 2017 17:42:03 +0200 Subject: v1.5 --- php-simplepie.spec | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) (limited to 'php-simplepie.spec') diff --git a/php-simplepie.spec b/php-simplepie.spec index 13cbcda..b72ed8c 100644 --- a/php-simplepie.spec +++ b/php-simplepie.spec @@ -7,14 +7,14 @@ # # Please preserve changelog entries # -%global gh_commit 2a24b6e74aa9bf33243020f52895fe77efe94ccf +%global gh_commit 5de5551953f95feef12cf355a7a26a70f94aa3ab %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner simplepie %global gh_project simplepie %global with_tests 0%{!?_without_tests:1} Name: php-simplepie -Version: 1.4.3 +Version: 1.5 Release: 1%{?dist} Summary: A simple Atom/RSS parsing library for PHP @@ -92,21 +92,13 @@ sed -e 's:@PATH@:%{buildroot}/%{_datadir}/php/%{name}:' \ rm tests/IRITest.php rm tests/oldtests/first_item_title/SPtests/bugs/179.0.10.php -# remirepo:11 -run=0 ret=0 -if which php56; then - php56 %{_bindir}/phpunit || ret=1 - run=1 -fi -if which php71; then - php71 %{_bindir}/phpunit || ret=1 - run=1 -fi -if [ $run -eq 0 ]; then -%{_bindir}/phpunit --verbose -# remirepo:2 -fi +# TODO 8 failures with php72 +for cmd in php php56 php70 php71; do + if which $cmd; then + $cmd %{_bindir}/phpunit --verbose || ret=1 + fi +done exit $ret %endif @@ -122,6 +114,9 @@ rm -rf %{buildroot} %changelog +* Mon Apr 24 2017 Remi Collet - 1.5-1 +- Update to 1.5 + * Sat Jan 07 2017 Johan Cwiklinski - 1.4.3-2 - Drop demo directory that contains flash files (bz #1000260) -- cgit