From 77933296b20948b386613e760f0da4e4f394ac56 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 17 Jul 2016 18:27:54 +0200 Subject: php-robrichards-xmlseclibs: backport for remirepo --- php-robrichards-xmlseclibs.spec | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'php-robrichards-xmlseclibs.spec') diff --git a/php-robrichards-xmlseclibs.spec b/php-robrichards-xmlseclibs.spec index 3dadaef..8f6f63f 100644 --- a/php-robrichards-xmlseclibs.spec +++ b/php-robrichards-xmlseclibs.spec @@ -1,3 +1,4 @@ +# remirepo spec file for php-robrichards-xmlseclibs, from # # Fedora spec file for php-robrichards-xmlseclibs # @@ -36,6 +37,7 @@ License: BSD URL: https://github.com/%{github_owner}/%{github_name} Source0: %{url}/archive/%{github_commit}/%{name}-%{github_version}-%{github_commit}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch # Tests %if %{with_tests} @@ -118,6 +120,8 @@ AUTOLOAD %install +rm -rf %{buildroot} + mkdir -p %{buildroot}%{phpdir}/RobRichards/XMLSecLibs cp -rp src/* %{buildroot}%{phpdir}/RobRichards/XMLSecLibs/ @@ -132,13 +136,29 @@ sed 's#require.*xmlseclibs.*#require_once "%{buildroot}%{phpdir}/RobRichards/XML rm -f tests/extract-win-cert.phpt : Run tests -%{_bindir}/phpunit tests +run=0 +if which php56; then + php56 %{_bindir}/phpunit tests + run=1 +fi +if which php71; then + php71 %{_bindir}/phpunit tests + run=1 +fi +if [ $run -eq 0 ]; then + %{_bindir}/phpunit tests +fi %else : Tests skipped %endif +%clean +rm -rf %{buildroot} + + %files +%defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license LICENSE %doc CHANGELOG.txt @@ -149,6 +169,9 @@ rm -f tests/extract-win-cert.phpt %changelog +* Sun Jul 17 2016 Remi Collet - 2.0.0-2.20160105git84313ca +- backport for remi repository + * Thu Jul 14 2016 Shawn Iwinski - 2.0.0-2.20160105git84313ca - Updated to latest snapshot - Moved php-openssl from weak dependency to hard dependency -- cgit