From f26f87ade6cf77043f33e6c8fbfbddb5ea0039a1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 25 Jan 2015 08:15:43 +0100 Subject: php-sebastian-recursion-context: 1.0.0 - New pcakage --- php-sebastian-recursion-context.spec | 94 ++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 php-sebastian-recursion-context.spec (limited to 'php-sebastian-recursion-context.spec') diff --git a/php-sebastian-recursion-context.spec b/php-sebastian-recursion-context.spec new file mode 100644 index 0000000..d1f5d60 --- /dev/null +++ b/php-sebastian-recursion-context.spec @@ -0,0 +1,94 @@ +# spec file for php-sebastian-recursion-context +# +# Copyright (c) 2015 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/3.0/ +# +# Please, preserve the changelog entries +# +%global bootstrap 0 +%global gh_commit 3989662bbb30a29d20d9faa04a846af79b276252 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner sebastianbergmann +%global gh_project recursion-context +%global php_home %{_datadir}/php/SebastianBergmann +%if %{bootstrap} +%global with_tests %{?_with_tests:1}%{!?_with_tests:0} +%else +%global with_tests %{?_without_tests:0}%{!?_without_tests:1} +%endif + +Name: php-sebastian-recursion-context +Version: 1.0.0 +Release: 1%{?dist} +Summary: Recursively process PHP variables + +Group: Development/Libraries +License: BSD +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}.tar.gz + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: php(language) >= 5.3.3 +BuildRequires: %{_bindir}/phpab +%if %{with_tests} +BuildRequires: %{_bindir}/phpunit +%endif + +# from composer.json +# "php": ">=5.3.3" +Requires: php(language) >= 5.3.3 +# from phpcompatinfo report for version 1.0.0 +Requires: php-hash +Requires: php-spl + +Provides: php-composer(sebastian/recursion-context) = %{version} + + +%description +Provides functionality to recursively process PHP variables. + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + + +%build +# Generate the Autoloader +phpab --output src/autoload.php src + + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{php_home} +cp -pr src %{buildroot}%{php_home}/RecursionContext + + +%check +%if %{with_tests} +phpunit \ + --include-path %{buildroot}%{_datadir}/php \ + --bootstrap %{buildroot}%{php_home}/RecursionContext/autoload.php \ + tests +%else +: bootstrap build with test suite disabled +%endif + + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%{!?_licensedir:%global license %%doc} +%license LICENSE +%doc README.md composer.json +%dir %{php_home} +%{php_home}/RecursionContext + + +%changelog +* Sat Jan 24 2015 Remi Collet - 1.0.0-1 +- initial package \ No newline at end of file -- cgit