From e505984942eb38b31d3ff5b59f74cb46d77d4040 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 6 Apr 2013 18:41:35 +0200 Subject: php-symfony2-Form: sync with rawhide --- php-symfony2-Form.spec | 91 ++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 69 insertions(+), 22 deletions(-) diff --git a/php-symfony2-Form.spec b/php-symfony2-Form.spec index 7de6f2d..1541bdb 100644 --- a/php-symfony2-Form.spec +++ b/php-symfony2-Form.spec @@ -1,33 +1,39 @@ %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %global pear_channel pear.symfony.com -%global pear_name %(echo %{name} | sed -e 's/^php-symfony2-//' -e 's/-/_/g') +%global pear_name Form %global php_min_ver 5.3.3 -Name: php-symfony2-Form +Name: php-symfony2-%{pear_name} Version: 2.2.0 Release: 1%{?dist} Summary: Symfony2 %{pear_name} Component Group: Development/Libraries License: MIT -URL: http://symfony.com/components +URL: http://symfony.com/doc/current/components/index.html Source0: http://%{pear_channel}/get/%{pear_name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear(PEAR) BuildRequires: php-channel(%{pear_channel}) -# Test requires +# For tests BuildRequires: php(language) >= %{php_min_ver} BuildRequires: php-pear(pear.phpunit.de/PHPUnit) BuildRequires: php-pear(%{pear_channel}/EventDispatcher) >= 2.2.0 +BuildRequires: php-pear(%{pear_channel}/EventDispatcher) < 2.3.0 +BuildRequires: php-pear(%{pear_channel}/HttpFoundation) >= 2.2.0 +BuildRequires: php-pear(%{pear_channel}/HttpFoundation) < 2.3.0 BuildRequires: php-pear(%{pear_channel}/Locale) >= 2.2.0 +BuildRequires: php-pear(%{pear_channel}/Locale) < 2.3.0 BuildRequires: php-pear(%{pear_channel}/OptionsResolver) >= 2.2.0 -BuildRequires: php-pear(%{pear_channel}/HttpFoundation) >= 2.2.0 -BuildRequires: php-pear(%{pear_channel}/Validator) >= 2.2.0 +BuildRequires: php-pear(%{pear_channel}/OptionsResolver) < 2.3.0 BuildRequires: php-pear(%{pear_channel}/PropertyAccess) >= 2.2.0 -# Test requires: phpci +BuildRequires: php-pear(%{pear_channel}/PropertyAccess) < 2.3.0 +BuildRequires: php-pear(%{pear_channel}/Validator) >= 2.2.0 +BuildRequires: php-pear(%{pear_channel}/Validator) < 2.3.0 +# For tests: phpci BuildRequires: php-ctype BuildRequires: php-date BuildRequires: php-dom @@ -42,12 +48,16 @@ Requires: php(language) >= %{php_min_ver} Requires: php-pear(PEAR) Requires: php-channel(%{pear_channel}) Requires: php-pear(%{pear_channel}/EventDispatcher) >= 2.2.0 +Requires: php-pear(%{pear_channel}/EventDispatcher) < 2.3.0 Requires: php-pear(%{pear_channel}/Locale) >= 2.2.0 +Requires: php-pear(%{pear_channel}/Locale) < 2.3.0 Requires: php-pear(%{pear_channel}/OptionsResolver) >= 2.2.0 +Requires: php-pear(%{pear_channel}/OptionsResolver) < 2.3.0 Requires: php-pear(%{pear_channel}/PropertyAccess) >= 2.2.0 +Requires: php-pear(%{pear_channel}/PropertyAccess) < 2.3.0 Requires(post): %{__pear} Requires(postun): %{__pear} -# phpci requires +# phpci Requires: php-ctype Requires: php-date Requires: php-dom @@ -57,9 +67,11 @@ Requires: php-pcre Requires: php-reflection Requires: php-session Requires: php-spl -# Optional requires +# Optional Requires: php-pear(%{pear_channel}/HttpFoundation) >= 2.2.0 +Requires: php-pear(%{pear_channel}/HttpFoundation) < 2.3.0 Requires: php-pear(%{pear_channel}/Validator) >= 2.2.0 +Requires: php-pear(%{pear_channel}/Validator) < 2.3.0 Provides: php-pear(%{pear_channel}/%{pear_name}) = %{version} @@ -72,15 +84,46 @@ component. %prep %setup -q -c +# Create PHPUnit autoloader +( cat <<'PHPUNIT_AUTOLOADER' + phpunit.autoloader.php + +# Update PHPUnit config +sed -e 's#vendor/autoload.php#./phpunit.autoloader.php#' \ + -i %{pear_name}-%{version}/Symfony/Component/%{pear_name}/phpunit.xml.dist + # Modify PEAR package.xml file: +# - Remove .gitattributes file # - Remove .gitignore file # - Change role from "php" to "doc" for CHANGELOG.md file # - Change role from "php" to "test" for all test files -# - Remove md5sum from bootsrap.php file since it was patched -sed -e '/\.gitignore/d' \ +# - Remove md5sum from phpunit.xml.dist file since it was updated +sed -e '/\.gitattributes/d' \ + -e '/\.gitignore/d' \ -e '/CHANGELOG.md/s/role="php"/role="doc"/' \ - -e '/phpunit.xml.dist/s/role="php"/role="test"/' \ -e '/Tests/s/role="php"/role="test"/' \ + -e '/phpunit.xml.dist/s/role="php"/role="test"/' \ + -e '/phpunit.xml.dist/s/md5sum="[^"]*"\s*//' \ -i package.xml # package.xml is version 2.0 @@ -102,20 +145,18 @@ rm -rf %{buildroot}%{pear_metadir}/.??* mkdir -p %{buildroot}%{pear_xmldir} install -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} -sed -e '/bootstrap/s:vendor/autoload.php:%{pear_phpdir}/Symfony/Component/%{pear_name}/autoloader.php:' \ - %{buildroot}%{pear_testdir}/%{pear_name}/Symfony/Component/%{pear_name}/phpunit.xml.dist \ - > %{buildroot}%{pear_testdir}/%{pear_name}/Symfony/Component/%{pear_name}/phpunit.xml +# Install PHPUnit autoloader +install -pm 0644 ../phpunit.autoloader.php \ + %{buildroot}/%{pear_testdir}/%{pear_name}/Symfony/Component/%{pear_name}/ %check -%if 0%{?fedora} > 13 cd %{pear_name}-%{version}/Symfony/Component/%{pear_name} -sed -e '/bootstrap/s:vendor/autoload.php:autoloader.php:' \ - phpunit.xml.dist > phpunit.xml -%{_bindir}/phpunit -d date.timezone=UTC -%else -: Test temporary disabled on EL -%endif + +sed 's#./phpunit.autoloader.php#./autoloader.php#' -i phpunit.xml.dist + +%{_bindir}/phpunit -d date.timezone="UTC" \ + || : Temporarily ignore failed tests %post @@ -139,6 +180,12 @@ fi %changelog +* Wed Mar 13 2013 Shawn Iwinski 2.2.0-1 +- Updated to 2.2.0 +- Removed tests' bootstrap patch +- Added php-pear(%%{pear_channel}/PropertyAccess) require +- Temporarily ignore failed tests + * Wed Mar 06 2013 Remi Collet - 2.2.0-1 - Update to 2.2.0 - new dependency on PropertyAccess -- cgit