From 9dcfe802753d76c401de76a190e863e27bd9d24f Mon Sep 17 00:00:00 2001
From: Remi Collet <fedora@famillecollet.com>
Date: Tue, 30 Oct 2012 18:22:36 +0100
Subject: php-symfony2-Filesystem:  sync with rawhide, update to 2.1.3

---
 php-symfony2-Filesystem.spec | 59 +++++++++++++++++++++++++++++++++-----------
 1 file changed, 45 insertions(+), 14 deletions(-)

(limited to 'php-symfony2-Filesystem.spec')

diff --git a/php-symfony2-Filesystem.spec b/php-symfony2-Filesystem.spec
index 7aaaaf0..7746e66 100644
--- a/php-symfony2-Filesystem.spec
+++ b/php-symfony2-Filesystem.spec
@@ -1,11 +1,12 @@
-%{!?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-Filesystem
-Version:          2.1.2
+Version:          2.1.3
 Release:          1%{?dist}
 Summary:          Symfony2 %{pear_name} Component
 
@@ -13,17 +14,22 @@ Group:            Development/Libraries
 License:          MIT
 URL:              http://symfony.com/doc/current/components/filesystem.html
 Source0:          http://%{pear_channel}/get/%{pear_name}-%{version}.tgz
-Source1:          bootstrap.php
+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)
+# Test requires: phpci
+BuildRequires:    php-ctype
+BuildRequires:    php-date
 BuildRequires:    php-posix
+BuildRequires:    php-spl
 
-Requires:         php-common >= 5.3.2
+Requires:         php(language) >= %{php_min_ver}
 Requires:         php-pear(PEAR)
 Requires:         php-channel(%{pear_channel})
 Requires(post):   %{__pear}
@@ -43,11 +49,20 @@ The Filesystem component provides basic utilities for the filesystem.
 %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 '/.gitignore/d' \
+    -e '/bootstrap.php/s/md5sum="[^"]*"\s*//' \
+    -e '/.gitattributes/d' \
     -i package.xml
 
 # package.xml is version 2.0
@@ -60,20 +75,21 @@ mv package.xml %{pear_name}-%{version}/%{name}.xml
 
 %install
 cd %{pear_name}-%{version}
-%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml
+
+# PEAR install
+%{__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
-cp %{SOURCE1} bootstrap.php
-phpunit  --bootstrap bootstrap.php --verbose .
+cd %{pear_name}-%{version}/Symfony/Component/%{pear_name}
+%{_bindir}/phpunit
 
 
 %post
@@ -99,6 +115,21 @@ fi
 
 
 %changelog
+* Tue Oct 30 2012 Remi Collet <RPMS@FamilleCollet.com> 2.1.3-1
+- sync with rawhide, update to 2.1.3
+
+* Mon Oct 29 2012 Shawn Iwinski <shawn.iwinski@gmail.com> 2.1.2-3
+- Added "%%global pear_metadir" and usage in %%install
+- Changed RPM_BUILD_ROOT to %%{buildroot}
+- Changed name of patch from "php-symfony2-Filesystem.tests.bootstrap.patch" to
+  "%%{name}-tests-bootstrap.patch"
+
+* Sun Oct  7 2012 Shawn Iwinski <shawn.iwinski@gmail.com> 2.1.2-2
+- Added php-posix require
+- 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
 
-- 
cgit