[php-symfony2-Process] Updated to 2.2.0

Shawn Iwinski siwinski at fedoraproject.org
Sat Mar 23 15:03:38 UTC 2013


commit a263f9c015781c77c15baffc7a233fc93eeb449e
Author: Shawn Iwinski <shawn.iwinski at gmail.com>
Date:   Wed Mar 13 21:30:14 2013 -0400

    Updated to 2.2.0
    
    - Removed tests' bootstrap patch
    - Removed php-pcntl require

 .gitignore                                 |    1 +
 php-symfony2-Process-tests-bootstrap.patch |   24 ----------
 php-symfony2-Process.spec                  |   66 ++++++++++++++++++++-------
 sources                                    |    1 +
 4 files changed, 51 insertions(+), 41 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 642b735..d0e541c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,3 +9,4 @@
 /Process-2.1.6.tgz
 /Process-2.1.7.tgz
 /Process-2.1.8.tgz
+/Process-2.2.0.tgz
diff --git a/php-symfony2-Process.spec b/php-symfony2-Process.spec
index e4ab857..8a3c9d1 100644
--- a/php-symfony2-Process.spec
+++ b/php-symfony2-Process.spec
@@ -2,11 +2,11 @@
 %{!?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 pear_name    Process
 %global php_min_ver  5.3.3
 
-Name:             php-symfony2-Process
-Version:          2.1.8
+Name:             php-symfony2-%{pear_name}
+Version:          2.2.0
 Release:          1%{?dist}
 Summary:          Symfony2 %{pear_name} Component
 
@@ -14,17 +14,15 @@ Group:            Development/Libraries
 License:          MIT
 URL:              http://symfony.com/doc/current/components/process.html
 Source0:          http://%{pear_channel}/get/%{pear_name}-%{version}.tgz
-Patch0:           %{name}-tests-bootstrap.patch
 
 BuildArch:        noarch
 
 BuildRequires:    php-pear(PEAR)
 BuildRequires:    php-channel(%{pear_channel})
-# Test requires
+# For tests
 BuildRequires:    php-common >= %{php_min_ver}
 BuildRequires:    php-pear(pear.phpunit.de/PHPUnit)
-# Test requires: phpci
-BuildRequires:    php-pcntl
+# For tests: phpci
 BuildRequires:    php-pcre
 BuildRequires:    php-reflection
 BuildRequires:    php-spl
@@ -34,8 +32,7 @@ Requires:         php-pear(PEAR)
 Requires:         php-channel(%{pear_channel})
 Requires(post):   %{__pear}
 Requires(postun): %{__pear}
-# phpci requires
-Requires:         php-pcntl
+# phpci
 Requires:         php-pcre
 Requires:         php-reflection
 Requires:         php-spl
@@ -49,23 +46,46 @@ The Process Component executes commands in sub-processes.
 %prep
 %setup -q -c
 
-# Patches
-cd %{pear_name}-%{version}
-%patch0 -p0
-cd ..
+# Create PHPUnit autoloader
+( cat <<'PHPUNIT_AUTOLOADER'
+<?php
+
+# This file was created by RPM packaging and is not part of the original
+# Symfony2 %{pear_name} PEAR package.
+
+set_include_path(
+    '%{pear_phpdir}'.PATH_SEPARATOR.
+    '%{pear_testdir}/%{pear_name}'.PATH_SEPARATOR.
+    get_include_path()
+);
+
+spl_autoload_register(function ($class) {
+    if ('\\' == $class[0]) {
+        $class = substr($class, 1);
+    }
+
+    $file = str_replace('\\', '/', $class).'.php';
+    @include $file;
+});
+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
+# - 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 '/bootstrap.php/s/md5sum="[^"]*"\s*//' \
+    -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
@@ -87,10 +107,17 @@ rm -rf %{buildroot}%{pear_metadir}/.??*
 mkdir -p %{buildroot}%{pear_xmldir}
 install -pm 644 %{name}.xml %{buildroot}%{pear_xmldir}
 
+# Install PHPUnit autoloader
+install -pm 0644 ../phpunit.autoloader.php \
+    %{buildroot}/%{pear_testdir}/%{pear_name}/Symfony/Component/%{pear_name}/
+
 
 %check
 cd %{pear_name}-%{version}/Symfony/Component/%{pear_name}
-%{_bindir}/phpunit
+
+sed 's#./phpunit.autoloader.php#./autoloader.php#' -i phpunit.xml.dist
+
+%{_bindir}/phpunit -d date.timezone="UTC"
 
 
 %post
@@ -115,6 +142,11 @@ fi
 
 
 %changelog
+* Wed Mar 13 2013 Shawn Iwinski <shawn.iwinski at gmail.com> 2.2.0-1
+- Updated to 2.2.0
+- Removed tests' bootstrap patch
+- Removed php-pcntl require
+
 * Sun Mar 03 2013 Shawn Iwinski <shawn.iwinski at gmail.com> 2.1.8-1
 - Updated to upstream version 2.1.8
 
diff --git a/sources b/sources
index 496ccfe..c16dc0e 100644
--- a/sources
+++ b/sources
@@ -8,3 +8,4 @@ b48af7635bb46e3e2a279d2b154aab2d  Process-2.0.17.tgz
 73722f3f102a59109f3c49e25bdcf5cf  Process-2.1.6.tgz
 4ef757d766bc75bae4e44f1387d95603  Process-2.1.7.tgz
 f00140a9c6d4f4b0d31fc5ba5f3a2f1a  Process-2.1.8.tgz
+ce3fe0573dab10d9471eec3649812080  Process-2.2.0.tgz


More information about the scm-commits mailing list