From 66f7d26c20d25b73e3f6cf18e76113367904eeec Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 29 Apr 2014 10:21:35 +0200 Subject: php-phpunit-PHPUnit-Story: sources from githubb --- php-phpunit-PHPUnit-Story.spec | 86 ++++++++++++++++++++++-------------------- 1 file changed, 46 insertions(+), 40 deletions(-) diff --git a/php-phpunit-PHPUnit-Story.spec b/php-phpunit-PHPUnit-Story.spec index 1ec41b9..359a1cb 100644 --- a/php-phpunit-PHPUnit-Story.spec +++ b/php-phpunit-PHPUnit-Story.spec @@ -1,32 +1,41 @@ -%{!?pear_metadir: %global pear_metadir %{pear_phpdir}} -%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} +# spec file for php-phpunit-PHPUnit-Story +# +# Copyright (c) 2013-2014 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/3.0/ +# +# Please, preserve the changelog entries +# +%global gh_commit b8579ada6ede4fd2f4b49e8549a8a176606cae68 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner sebastianbergmann +%global gh_project phpunit-story +%global php_home %{_datadir}/php %global pear_name PHPUnit_Story %global pear_channel pear.phpunit.de +# Circular dependency with phpunit +%global with_tests %{?_with_tests:1}%{!?_with_tests:0} Name: php-phpunit-PHPUnit-Story Version: 1.0.2 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Story extension for PHPUnit to facilitate Behaviour-Driven Development Group: Development/Libraries License: BSD -URL: http://www.phpunit.de -Source0: http://%{pear_channel}/get/%{pear_name}-%{version}.tgz +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: php-pear(PEAR) >= 1.9.4 -BuildRequires: php-channel(%{pear_channel}) -Requires(post): %{__pear} -Requires(postun): %{__pear} +# From composer.json Requires: php(language) >= 5.3.3 Requires: php-spl -Requires: php-pear(PEAR) >= 1.9.4 -Requires: php-channel(%{pear_channel}) -Requires: php-pear(%{pear_channel}/PHPUnit) >= 3.6.0 +Requires: php-phpunit-PHPUnit >= 3.6.0 +# For compatibility with PEAR mode Provides: php-pear(%{pear_channel}/%{pear_name}) = %{version} @@ -34,54 +43,51 @@ Provides: php-pear(%{pear_channel}/%{pear_name}) = %{version} Story extension for PHPUnit to facilitate Behaviour-Driven Development %prep -%setup -q -c -cd %{pear_name}-%{version} -mv ../package.xml %{name}.xml +%setup -q -n %{gh_project}-%{gh_commit} + +rm PHPUnit/Extensions/Story/Autoload.php.in %build -cd %{pear_name}-%{version} # Empty build section, most likely nothing required. +# If upstream drop Autoload.php, command to generate it +#phpab \ +# --output PHPUnit/Extensions/Story/Autoload.php \ +# --template PHPUnit/Extensions/Story/Autoload.php.in \ +# PHPUnit + %install -cd %{pear_name}-%{version} -rm -rf %{buildroot} -%{__pear} install --nodeps --packagingroot %{buildroot} %{name}.xml +rm -rf %{buildroot} +mkdir -p %{buildroot}%{php_home} +cp -pr PHPUnit %{buildroot}%{php_home} -# Clean up unnecessary files -rm -rf %{buildroot}%{pear_metadir}/.??* -# Install XML package description -mkdir -p %{buildroot}%{pear_xmldir} -install -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} +%if %{with_tests} +%check +phpunit \ + -d date.timezone=UTC +%endif %clean rm -rf %{buildroot} -%post -%{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{name}.xml >/dev/null || : - -%postun -if [ $1 -eq 0 ] ; then - %{__pear} uninstall --nodeps --ignore-errors --register-only \ - %{pear_channel}/%{pear_name} >/dev/null || : -fi - - %files %defattr(-,root,root,-) -%doc %{pear_docdir}/%{pear_name} -%{pear_xmldir}/%{name}.xml -%{pear_phpdir}/PHPUnit/Extensions/Story +%doc ChangeLog.markdown LICENSE composer.json +%{php_home}/PHPUnit/Extensions/Story %changelog +* Tue Apr 29 2014 Remi Collet - 1.0.2-3 +- sources from github +- run test suite when build --with tests + * Wed Apr 03 2013 Remi Collet - 1.0.2-1 - Update to 1.0.2 (no change) -* Thu Mar 28 2013 Remi Collet - 1.0.1-1 -- initial package +* Thu Mar 28 2013 Remi Collet - 1.0.1-1 +- initial package \ No newline at end of file -- cgit