From 4a2fb6823951534953f56eb85c2704b8394e176a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 5 Mar 2013 16:57:44 +0100 Subject: php-symfony2-Config: 2.2.0 --- php-symfony2-Config-tests-bootstrap.patch | 24 ------------------------ php-symfony2-Config.spec | 21 ++++++++++++--------- 2 files changed, 12 insertions(+), 33 deletions(-) delete mode 100644 php-symfony2-Config-tests-bootstrap.patch diff --git a/php-symfony2-Config-tests-bootstrap.patch b/php-symfony2-Config-tests-bootstrap.patch deleted file mode 100644 index e77afed..0000000 --- a/php-symfony2-Config-tests-bootstrap.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- Symfony/Component/Config/Tests/bootstrap.php 2012-09-20 03:42:07.000000000 -0400 -+++ Symfony/Component/Config/Tests/bootstrap.php 2012-10-19 22:04:10.869060698 -0400 -@@ -10,9 +10,18 @@ - */ - - spl_autoload_register(function ($class) { -- if (0 === strpos(ltrim($class, '/'), 'Symfony\Component\Config')) { -- if (file_exists($file = __DIR__.'/../'.substr(str_replace('\\', '/', $class), strlen('Symfony\Component\Config')).'.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-Config.spec b/php-symfony2-Config.spec index 594ab53..408a30c 100644 --- a/php-symfony2-Config.spec +++ b/php-symfony2-Config.spec @@ -5,7 +5,7 @@ %global php_min_ver 5.3.3 Name: php-symfony2-Config -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/config/index.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 @@ -54,11 +53,6 @@ may be (Yaml, XML, INI files, or for instance a database). %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 @@ -68,7 +62,6 @@ 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 @@ -90,10 +83,17 @@ 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 + %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 @@ -118,6 +118,9 @@ fi %{pear_testdir}/%{pear_name} %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