summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-04-24 17:42:03 +0200
committerRemi Collet <remi@remirepo.net>2017-04-24 17:42:03 +0200
commit7b98c09960a847528b82438b306c889ea177fbc1 (patch)
tree1aa921382582600b77104a892131d9e9f7e7fec4
parent89b2b3ff2a86d681fc0fb356356e2e3aa2960637 (diff)
v1.5
-rw-r--r--.gitignore7
-rw-r--r--php-simplepie.spec27
2 files changed, 18 insertions, 16 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1ab5c4f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+package-*.xml
+*.tgz
+*.tar.gz
+*.tar.xz
+*.tar.xz.asc
+*.src.rpm
+*/*rpm
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 <remi@remirepo.net> - 1.5-1
+- Update to 1.5
+
* Sat Jan 07 2017 Johan Cwiklinski <johan AT x-tnd DOT be> - 1.4.3-2
- Drop demo directory that contains flash files (bz #1000260)