%global github_owner fzaninotto %global github_name Faker %global github_version 1.2.0 %global github_commit 4ad4bc4b5c8d3c0f3cf55d2fedc2f65b313ec62f %global php_min_ver 5.3.3 Name: php-%{github_name} Version: %{github_version} Release: 1%{?dist} Summary: A PHP library that generates fake data 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 # Test build requires BuildRequires: php(language) >= %{php_min_ver} BuildRequires: php-pear(pear.phpunit.de/PHPUnit) # Test build requires: phpci Requires: php-date Requires: php-hash Requires: php-pcre Requires: php-reflection Requires: php-spl Requires: php(language) >= %{php_min_ver} Requires: php-pear(pear.doctrine-project.org/DoctrineCommon) # phpci requires Requires: php-date Requires: php-hash Requires: php-mbstring Requires: php-pcre Requires: php-reflection Requires: php-spl %description Faker is a PHP library that generates fake data for you. Whether you need to bootstrap your database, create good-looking XML documents, fill-in your persistence to stress test it, or anonymize data taken from a production service, Faker is for you. Faker is heavily inspired by Perl's Data::Faker (http://search.cpan.org/~jasonk/Data-Faker/), and by Ruby's Faker (http://faker.rubyforge.org/). %prep %setup -q -n %{github_name}-%{github_commit} # Create tests' bootstrap ( cat <<'AUTOLOAD' phpunit.bootstrap.php %build # Empty build section, nothing to build %install mkdir -p -m 755 %{buildroot}%{_datadir}/php cp -rp src/%{github_name} %{buildroot}%{_datadir}/php/ %check %{_bindir}/phpunit \ -d include_path="./src:./test:.:%{pear_phpdir}" \ -d date.timezone="UTC" \ --bootstrap ./phpunit.bootstrap.php \ . %files %defattr(-,root,root,-) %doc LICENSE CHANGELOG readme.md composer.json %{_datadir}/php/%{github_name} %changelog * Wed Jun 12 2013 Remi Collet - 1.2.0-1 - backport 1.2.0 for remi repo. * Mon Jun 10 2013 Shawn Iwinski 1.2.0-1 - Updated to 1.2.0 - Added php-mbstring require - Updates per new Fedora packaging guidelines for Git repos * Wed Dec 19 2012 Remi Collet - 1.1.0-2 - backport 1.1.0 for remi repo. * Sun Dec 9 2012 Shawn Iwinski 1.1.0-2 - Added php-pear(pear.doctrine-project.org/DoctrineCommon) require * Sun Dec 9 2012 Shawn Iwinski 1.1.0-1 - Initial package