diff options
| author | Remi Collet <fedora@famillecollet.com> | 2012-10-30 17:26:00 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2012-10-30 17:26:00 +0100 | 
| commit | f20038fab32366de0d2f075e43ff60db997f22d5 (patch) | |
| tree | 03df3e374c1098555d2121d5a485e755dc87fe31 | |
| parent | 6bb07470373ec869bd009b67154ba25abd29349b (diff) | |
php-symfony2-Config:  sync with rawhide, update to 2.1.3
| -rw-r--r-- | php-symfony2-Config-tests-bootstrap.patch | 24 | ||||
| -rw-r--r-- | php-symfony2-Config.spec | 73 | 
2 files changed, 81 insertions, 16 deletions
| diff --git a/php-symfony2-Config-tests-bootstrap.patch b/php-symfony2-Config-tests-bootstrap.patch new file mode 100644 index 0000000..e77afed --- /dev/null +++ b/php-symfony2-Config-tests-bootstrap.patch @@ -0,0 +1,24 @@ +--- 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 c2b0238..d2b958e 100644 --- a/php-symfony2-Config.spec +++ b/php-symfony2-Config.spec @@ -1,50 +1,73 @@ -%{!?pear_metadir: %global pear_metadir %{pear_phpdir}}  %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} +%{!?pear_metadir: %global pear_metadir %{pear_phpdir}}  %global pear_channel pear.symfony.com  %global pear_name    %(echo %{name} | sed -e 's/^php-symfony2-//' -e 's/-/_/g') +%global php_min_ver  5.3.3  Name:             php-symfony2-Config -Version:          2.1.2 +Version:          2.1.3  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/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  BuildRequires:    php-pear(PEAR)  BuildRequires:    php-channel(%{pear_channel}) -# For tests +# Test requires +BuildRequires:    php(language) >= %{php_min_ver}  BuildRequires:    php-pear(pear.phpunit.de/PHPUnit) - -Requires:         php-common >= 5.3.2 +# Test requires: phpci +BuildRequires:    php-ctype +BuildRequires:    php-date +BuildRequires:    php-json +BuildRequires:    php-pcre +BuildRequires:    php-reflection +BuildRequires:    php-spl + +Requires:         php(language) >= %{php_min_ver}  Requires:         php-pear(PEAR)  Requires:         php-channel(%{pear_channel})  Requires(post):   %{__pear}  Requires(postun): %{__pear}  # phpci requires  Requires:         php-ctype +Requires:         php-date  Requires:         php-json  Requires:         php-pcre +Requires:         php-reflection  Requires:         php-spl  Provides:         php-pear(%{pear_channel}/%{pear_name}) = %{version}  %description -%{summary}. +The Config Component provides several classes to help you find, load, combine, +autofill and validate configuration values of any kind, whatever their source +may be (Yaml, XML, INI files, or for instance a database).  %prep  %setup -q -c -# Hum... +# Patches +cd %{pear_name}-%{version} +%patch0 -p0 +cd .. + +# Modify PEAR package.xml 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 '/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 @@ -52,24 +75,24 @@ mv package.xml %{pear_name}-%{version}/%{name}.xml  %build -# Empty build section, nothing required. +# Empty build section, nothing required  %install  cd %{pear_name}-%{version} -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml +%{__pear} install --nodeps --packagingroot %{buildroot} %{name}.xml  # Clean up unnecessary files -rm -rf $RPM_BUILD_ROOT%{pear_metadir}/.??* +rm -rf %{buildroot}%{pear_metadir}/.??*  # Install XML package description -mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +mkdir -p %{buildroot}%{pear_xmldir} +install -pm 644 %{name}.xml %{buildroot}%{pear_xmldir}  %check -cd %{pear_name}-%{version}/Symfony/Component/%{pear_name}/Tests -phpunit  --bootstrap bootstrap.php . +cd %{pear_name}-%{version}/Symfony/Component/%{pear_name} +%{_bindir}/phpunit  %post @@ -91,9 +114,27 @@ fi  %dir %{pear_phpdir}/Symfony  %dir %{pear_phpdir}/Symfony/Component       %{pear_phpdir}/Symfony/Component/%{pear_name} -     %{pear_testdir}/%{pear_name} +%{pear_testdir}/%{pear_name}  %changelog +* Tue Oct 30 2012 Remi Collet <RPMS@FamilleCollet.com> 2.1.3-1 +- sync with rawhide, update to 2.1.3 + +* Sat Oct 27 2012 Shawn Iwinski <shawn.iwinski@gmail.com> 2.1.2-2 +- Added "%%global pear_metadir" and usage in %%install +- Changed RPM_BUILD_ROOT to %%{buildroot} +- Changed name of patch from "tests-bootstrap.patch" to +  "%%{name}-tests-bootstrap.patch" + +* Fri Oct 19 2012 Shawn Iwinski <shawn.iwinski@gmail.com> 2.1.2-1 +- Updated to upstream version 2.1.2 +- Updated URL and description +- PHP minimum version 5.3.3 instead of 5.3.2 +- Added php-date and php-reflection requires +- Added PEAR package.xml modifications +- Added patch for tests' bootstrap.php +- Added tests (%%check) +  * Sat Oct  6 2012 Remi Collet <RPMS@FamilleCollet.com> 2.1.2-1  - update to 2.1.2 | 
