diff options
author | Remi Collet <fedora@famillecollet.com> | 2015-01-25 08:15:43 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2015-01-25 08:15:43 +0100 |
commit | f26f87ade6cf77043f33e6c8fbfbddb5ea0039a1 (patch) | |
tree | 314077fc55912c1f038bdbb7e5096a05521571dd |
php-sebastian-recursion-context: 1.0.0 - New pcakage
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | php-sebastian-recursion-context.spec | 94 |
2 files changed, 98 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13af741 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../../common/Makefile + 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 <remi@fedoraproject.org> - 1.0.0-1 +- initial package
\ No newline at end of file |