summaryrefslogtreecommitdiffstats
path: root/php-lessphp.spec
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-11-23 15:33:29 +0100
committerRemi Collet <fedora@famillecollet.com>2016-11-23 15:33:29 +0100
commita6662d8d2d7b499aa5c18fd725a189863b6d21fb (patch)
treeca3f430f6a6ed58f8a421b4dd20c7226743646a6 /php-lessphp.spec
parent6f680fe8ffb7566ab823674c69ce5e2ea11a0ed6 (diff)
php-lessphp: add fixHEADmaster
Diffstat (limited to 'php-lessphp.spec')
-rw-r--r--php-lessphp.spec27
1 files changed, 25 insertions, 2 deletions
diff --git a/php-lessphp.spec b/php-lessphp.spec
index 0a38a5d..31349d9 100644
--- a/php-lessphp.spec
+++ b/php-lessphp.spec
@@ -25,7 +25,7 @@
Name: php-%{composer_project}
Version: %{github_version}
-Release: 2%{?dist}
+Release: 4%{?dist}
Summary: A compiler for LESS written in PHP
Group: Development/Libraries
@@ -33,6 +33,9 @@ License: MIT or GPLv3
URL: http://leafo.net/lessphp
Source0: https://github.com/%{github_owner}/%{github_name}/archive/%{github_commit}/%{name}-%{github_version}-%{github_commit}.tar.gz
+# https://github.com/leafo/lessphp/pull/626
+Patch0: %{name}-pr626.patch
+
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
# Tests
@@ -69,6 +72,7 @@ suitable as a drop in replacement for PHP projects.
%prep
%setup -qn %{github_name}-%{github_commit}
+%patch0 -p1
: Update bin requires and shebang
sed 's#$path\s*=.*#$path = "%{phpdir}/%{composer_project}/";#' \
@@ -92,7 +96,22 @@ cp -p plessc %{buildroot}%{_bindir}/
%check
%if %{with_tests}
-%{_bindir}/phpunit -v tests
+# remirepo:11
+run=0
+ret=0
+if which php56; then
+ php56 %{_bindir}/phpunit tests || ret=1
+ run=1
+fi
+if which php71; then
+ php71 %{_bindir}/phpunit tests || ret=1
+ run=1
+fi
+if [ $run -eq 0 ]; then
+%{_bindir}/phpunit --verbose tests
+# remirepo:2
+fi
+exit $ret
%else
: Tests skipped
%endif
@@ -114,6 +133,10 @@ rm -rf %{buildroot}
%changelog
+* Wed Nov 23 2016 Remi Collet <remi@fedoraproject.org> - 0.5.0-4
+- add patch for lib_luma and fix FTBFS with PHP 7.1
+ https://github.com/leafo/lessphp/pull/626
+
* Sun Jun 28 2015 Shawn Iwinski <shawn.iwinski@gmail.com> - 0.5.0-2
- Added php-composer(leafo/lessphp) virtual provide