From 12ef7cfe41ce46a554a8d1653ea327d156c37da3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 5 Mar 2013 13:57:09 +0100 Subject: php-symfony2-Finder: 2.2.0 --- php-symfony2-Finder-tests-bootstrap.patch | 26 -------------------------- php-symfony2-Finder.spec | 20 +++++++++++--------- 2 files changed, 11 insertions(+), 35 deletions(-) delete mode 100644 php-symfony2-Finder-tests-bootstrap.patch diff --git a/php-symfony2-Finder-tests-bootstrap.patch b/php-symfony2-Finder-tests-bootstrap.patch deleted file mode 100644 index b1ef71e..0000000 --- a/php-symfony2-Finder-tests-bootstrap.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- Symfony/Component/Finder/Tests/bootstrap.php 2012-09-20 03:42:09.000000000 -0400 -+++ Symfony/Component/Finder/Tests/bootstrap.php 2012-10-20 14:34:00.221837022 -0400 -@@ -9,10 +9,20 @@ - * file that was distributed with this source code. - */ - -+date_default_timezone_set('UTC'); - spl_autoload_register(function ($class) { -- if (0 === strpos(ltrim($class, '/'), 'Symfony\Component\Finder')) { -- if (file_exists($file = __DIR__.'/../'.substr(str_replace('\\', '/', $class), strlen('Symfony\Component\Finder')).'.php')) { -- require_once $file; -+ if (0 === strpos(ltrim($class, '/'), 'Symfony\Component')) { -+ $file = substr(str_replace('\\', '/', $class), strlen('Symfony\Component')).'.php'; -+ if (file_exists(__DIR__.'/../..'.$file)) { -+ // Load from source tree -+ require_once __DIR__.'/../..'.$file; -+ } else { -+ try { -+ // Try loading from incude path -+ require_once 'Symfony/Component'.$file; -+ } catch (Exception $e) { -+ // Fail silently so class not found fatal error still raised -+ } - } - } - }); diff --git a/php-symfony2-Finder.spec b/php-symfony2-Finder.spec index d874660..c08d2c3 100644 --- a/php-symfony2-Finder.spec +++ b/php-symfony2-Finder.spec @@ -5,7 +5,7 @@ %global php_min_ver 5.3.3 Name: php-symfony2-Finder -Version: 2.1.8 +Version: 2.2.0 Release: 1%{?dist} Summary: Symfony2 %{pear_name} Component @@ -13,7 +13,6 @@ Group: Development/Libraries License: MIT URL: http://symfony.com/doc/current/components/finder.html Source0: http://%{pear_channel}/get/%{pear_name}-%{version}.tgz -Patch0: %{name}-tests-bootstrap.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -47,11 +46,6 @@ interface. %prep %setup -q -c -# Patches -cd %{pear_name}-%{version} -%patch0 -p0 -cd .. - # Modify PEAR package.xml file: # - Remove .gitignore file # - Change role from "php" to "doc" for CHANGELOG.md file @@ -61,12 +55,15 @@ sed -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 '/bootstrap.php/s/md5sum="[^"]*"\s*//' \ -i package.xml # package.xml is version 2.0 mv package.xml %{pear_name}-%{version}/%{name}.xml +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 + %build # Empty build section, nothing required @@ -86,7 +83,9 @@ install -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} %check cd %{pear_name}-%{version}/Symfony/Component/%{pear_name} -%{_bindir}/phpunit +sed -e '/bootstrap/s:vendor/autoload.php:autoloader.php:' \ + phpunit.xml.dist > phpunit.xml +%{_bindir}/phpunit -d date.timezone=UTC %post @@ -112,6 +111,9 @@ fi %changelog +* Tue Mar 05 2013 Remi Collet - 2.2.0-1 +- Update to 2.2.0 + * Wed Feb 27 2013 Remi Collet - 2.1.8-1 - Update to 2.1.8 -- cgit