# # RPM spec file for php-doctrine-inflector # # Copyright (c) 2013-2014 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner doctrine %global github_name inflector %global github_version 1.0 %global github_commit a81c334f2764b09e2f13a55cfd8fe3233946f728 # Additional commits after v1.0 tag %global github_release .20131221git%(c=%{github_commit}; echo ${c:0:7}) %global composer_vendor doctrine %global composer_project inflector # "php": ">=5.3.2" %global php_min_ver 5.3.2 # Build using "--without tests" to disable tests %global with_tests %{?_without_tests:0}%{!?_without_tests:1} Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} Release: 4%{?github_release}%{?dist} Summary: Common string manipulations with regard to casing and singular/plural rules Group: Development/Libraries 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 %if %{with_tests} # For tests BuildRequires: php(language) >= %{php_min_ver} BuildRequires: php-phpunit-PHPUnit # For tests: phpcompatinfo (computed from v1.0 git commit a81c334f2764b09e2f13a55cfd8fe3233946f728) BuildRequires: php-pcre BuildRequires: php-spl %endif Requires: php(language) >= %{php_min_ver} # phpcompatinfo (computed from v1.0 git commit a81c334f2764b09e2f13a55cfd8fe3233946f728) Requires: php-pcre # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description Doctrine Inflector is a small library that can perform string manipulations with regard to upper-/lowercase and singular/plural forms of words. %prep %setup -qn %{github_name}-%{github_commit} %build # Empty build section, nothing required %install rm -rf %{buildroot} mkdir -p %{buildroot}/%{_datadir}/php cp -rp lib/* %{buildroot}/%{_datadir}/php/ %check %if %{with_tests} # Create PHPUnit config w/ colors turned off sed 's/colors="true"/colors="false"/' phpunit.xml.dist > phpunit.xml %{_bindir}/phpunit --include-path ./lib:./tests -d date.timezone="UTC" %else : Tests skipped %endif %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE *.md composer.json %dir %{_datadir}/php/Doctrine %dir %{_datadir}/php/Doctrine/Common %{_datadir}/php/Doctrine/Common/Inflector %changelog * Fri Jun 20 2014 Shawn Iwinski - 1.0-4.20131221gita81c334 - Added php-composer(%%{composer_vendor}/%%{composer_project}) virtual provide - Added option to build without tests ("--without tests") * Sat Jan 11 2014 Remi Collet 1.0-2.20131221gita81c334 - backport for remi repo * Mon Jan 06 2014 Shawn Iwinski 1.0-2.20131221gita81c334 - Conditional %%{?dist} * Mon Dec 23 2013 Shawn Iwinski 1.0-1.20131221gita81c334 - Initial package