diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-10-06 08:25:37 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-10-06 08:25:37 +0200 |
commit | ccaf7a922ba7c8c46be0233585b53f9d5512712d (patch) | |
tree | decb2f37759f9f441a4858c1018cde52f376dd19 /php-webmozart-assert.spec | |
parent | 204d31dce4183fda0371cbf38afbf599435db0dd (diff) |
php-webmozart-assert: add backport stuff
Diffstat (limited to 'php-webmozart-assert.spec')
-rw-r--r-- | php-webmozart-assert.spec | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/php-webmozart-assert.spec b/php-webmozart-assert.spec index 5f97c4a..493ccde 100644 --- a/php-webmozart-assert.spec +++ b/php-webmozart-assert.spec @@ -1,3 +1,4 @@ +# remirepo spec file for php-webmozart-assert, from # # Fedora spec file for php-webmozart-assert # @@ -35,6 +36,7 @@ License: MIT 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} @@ -105,20 +107,42 @@ AUTOLOAD %install +rm -rf %{buildroot} + mkdir -p %{buildroot}%{phpdir}/Webmozart/Assert cp -rp src/* %{buildroot}%{phpdir}/Webmozart/Assert/ %check %if %{with_tests} +# remirepo:11 +run=0 +ret=0 +if which php56; then + php56 %{_bindir}/phpunit --bootstrap %{buildroot}%{phpdir}/Webmozart/Assert/autoload.php || ret=1 + run=1 +fi +if which php71; then + php71 %{_bindir}/phpunit --bootstrap %{buildroot}%{phpdir}/Webmozart/Assert/autoload.php || ret=1 + run=1 +fi +if [ $run -eq 0 ]; then %{_bindir}/phpunit --verbose \ --bootstrap %{buildroot}%{phpdir}/Webmozart/Assert/autoload.php +# remirepo:2 +fi +exit $ret %else : Tests skipped %endif +%clean +rm -rf %{buildroot} + + %files +%defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license LICENSE %doc *.md @@ -128,5 +152,8 @@ cp -rp src/* %{buildroot}%{phpdir}/Webmozart/Assert/ %changelog +* Thu Oct 6 2016 Remi Collet <remi@remirepo.net> - 1.1.0-1 +- backport for remi repo, add EL-5 stuff + * Wed Sep 28 2016 Shawn Iwinski <shawn@iwin.ski> - 1.1.0-1 - Initial package |