b55022
%global peardir %{_datadir}/pear
b55022
%global metadir %{_localstatedir}/lib/pear
b55022
b55022
%global getoptver 1.3.1
b55022
%global arctarver 1.3.11
b55022
# https://pear.php.net/bugs/bug.php?id=19367
b55022
# Structures_Graph 1.0.4 - incorrect FSF address
b55022
%global structver 1.0.4
b55022
%global xmlutil   1.2.1
b55022
b55022
# Tests are only run with rpmbuild --with tests
b55022
# Can't be run in mock / koji because PEAR is the first package
b55022
%global with_tests       %{?_with_tests:1}%{!?_with_tests:0}
b55022
b55022
Summary: PHP Extension and Application Repository framework
b55022
Name: php-pear
b55022
Version: 1.9.4
d1f36e
Release: 22%{?dist}
b55022
Epoch: 1
b55022
# PEAR, Archive_Tar, XML_Util are BSD
b55022
# Console_Getopt is PHP
b55022
# Structures_Graph is LGPLv2+
b55022
License: BSD and PHP and LGPLv2+
b55022
Group: Development/Languages
b55022
URL: http://pear.php.net/package/PEAR
b55022
Source0: http://download.pear.php.net/package/PEAR-%{version}.tgz
b55022
# wget https://raw.github.com/pear/pear-core/master/install-pear.php
b55022
Source1: install-pear.php
b55022
Source3: strip.php
b55022
Source10: pear.sh
b55022
Source11: pecl.sh
b55022
Source12: peardev.sh
b55022
Source13: macros.pear
b55022
Source21: http://pear.php.net/get/Archive_Tar-%{arctarver}.tgz
b55022
Source22: http://pear.php.net/get/Console_Getopt-%{getoptver}.tgz
b55022
Source23: http://pear.php.net/get/Structures_Graph-%{structver}.tgz
b55022
Source24: http://pear.php.net/get/XML_Util-%{xmlutil}.tgz
b55022
# Man pages
b55022
# https://github.com/pear/pear-core/pull/14
b55022
Source30: pear.1
b55022
Source31: pecl.1
b55022
Source32: peardev.1
b55022
# https://github.com/pear/pear-core/pull/16
b55022
Source33: pear.conf.5
b55022
b55022
b55022
# From RHEL: ignore REST cache creation failures as non-root user (#747361)
b55022
# TODO See https://github.com/pear/pear-core/commit/dfef86e05211d2abc7870209d69064d448ef53b3#PEAR/REST.php
b55022
Patch0: php-pear-1.9.4-restcache.patch
b55022
# Relocate Metadata
b55022
Patch1: php-pear-metadata.patch
d1f36e
# Fix glibc version detection
d1f36e
Patch2: php-pear-1.9.4-glibc.patch
b55022
b55022
BuildArch: noarch
b55022
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
b55022
BuildRequires: php-cli >= 5.1.0-1, php-xml, gnupg
b55022
%if %{with_tests}
b55022
BuildRequires:  php-pear(pear.phpunit.de/PHPUnit)
b55022
%endif
b55022
b55022
Provides: php-pear(Console_Getopt) = %{getoptver}
b55022
Provides: php-pear(Archive_Tar) = %{arctarver}
b55022
Provides: php-pear(PEAR) = %{version}
b55022
Provides: php-pear(Structures_Graph) = %{structver}
b55022
Provides: php-pear(XML_Util) = %{xmlutil}
b55022
Obsoletes: php-pear-XML-Util < %{xmlutil}
b55022
Provides:  php-pear-XML-Util = %{xmlutil}
b55022
b55022
Requires:  php-cli
b55022
# phpci detected extension
b55022
# PEAR (date, spl always builtin):
b55022
Requires:  php-ftp
b55022
Requires:  php-pcre
b55022
Requires:  php-posix
b55022
Requires:  php-tokenizer
b55022
Requires:  php-xml
b55022
Requires:  php-zlib
b55022
# Console_Getopt: pcre
b55022
# Archive_Tar: pcre, posix, zlib
b55022
Requires:  php-bz2
b55022
# Structures_Graph: none
b55022
# XML_Util: pcre
b55022
# optional: overload and xdebug
b55022
b55022
b55022
%description
b55022
PEAR is a framework and distribution system for reusable PHP
b55022
components.  This package contains the basic PEAR components.
b55022
b55022
%prep
b55022
%setup -cT
b55022
b55022
# Create a usable PEAR directory (used by install-pear.php)
b55022
for archive in %{SOURCE0} %{SOURCE21} %{SOURCE22} %{SOURCE23} %{SOURCE24}
b55022
do
b55022
    tar xzf  $archive --strip-components 1 || tar xzf  $archive --strip-path 1
b55022
    file=${archive##*/}
b55022
    [ -f LICENSE ] && mv LICENSE LICENSE-${file%%-*}
b55022
    [ -f README ]  && mv README  README-${file%%-*}
b55022
b55022
    tar xzf $archive 'package*xml'
b55022
    [ -f package2.xml ] && mv package2.xml ${file%%-*}.xml \
b55022
                        || mv package.xml  ${file%%-*}.xml
b55022
done
b55022
cp %{SOURCE1} %{SOURCE30} %{SOURCE31} %{SOURCE32} %{SOURCE33} .
b55022
b55022
# apply patches on used PEAR during install
b55022
%patch1 -p0 -b .metadata
b55022
b55022
b55022
%build
b55022
# This is an empty build section.
b55022
b55022
b55022
%install
b55022
rm -rf $RPM_BUILD_ROOT
b55022
b55022
export PHP_PEAR_SYSCONF_DIR=%{_sysconfdir}
b55022
export PHP_PEAR_SIG_KEYDIR=%{_sysconfdir}/pearkeys
b55022
export PHP_PEAR_SIG_BIN=%{_bindir}/gpg
b55022
export PHP_PEAR_INSTALL_DIR=%{peardir}
b55022
b55022
# 1.4.11 tries to write to the cache directory during installation
b55022
# so it's not possible to set a sane default via the environment.
b55022
# The ${PWD} bit will be stripped via relocate.php later.
b55022
export PHP_PEAR_CACHE_DIR=${PWD}%{_localstatedir}/cache/php-pear
b55022
export PHP_PEAR_TEMP_DIR=/var/tmp
b55022
b55022
install -d $RPM_BUILD_ROOT%{peardir} \
b55022
           $RPM_BUILD_ROOT%{_localstatedir}/cache/php-pear \
b55022
           $RPM_BUILD_ROOT%{_localstatedir}/www/html \
b55022
           $RPM_BUILD_ROOT%{_localstatedir}/lib/pear/pkgxml \
b55022
           $RPM_BUILD_ROOT%{_sysconfdir}/rpm \
b55022
           $RPM_BUILD_ROOT%{_sysconfdir}/pear
b55022
b55022
export INSTALL_ROOT=$RPM_BUILD_ROOT
b55022
b55022
%{_bindir}/php -dmemory_limit=64M -dshort_open_tag=0 -dsafe_mode=0 \
b55022
         -d 'error_reporting=E_ALL&~E_DEPRECATED' -ddetect_unicode=0 \
b55022
         install-pear.php --force \
b55022
                 --dir      %{peardir} \
b55022
                 --cache    %{_localstatedir}/cache/php-pear \
b55022
                 --config   %{_sysconfdir}/pear \
b55022
                 --bin      %{_bindir} \
b55022
                 --www      %{_localstatedir}/www/html \
b55022
                 --doc      %{_docdir}/pear \
b55022
                 --test     %{_datadir}/tests/pear \
b55022
                 --data     %{_datadir}/pear-data \
b55022
                 --metadata %{metadir} \
b55022
                 %{SOURCE0} %{SOURCE21} %{SOURCE22} %{SOURCE23} %{SOURCE24}
b55022
b55022
# Replace /usr/bin/* with simple scripts:
b55022
install -m 755 %{SOURCE10} $RPM_BUILD_ROOT%{_bindir}/pear
b55022
install -m 755 %{SOURCE11} $RPM_BUILD_ROOT%{_bindir}/pecl
b55022
install -m 755 %{SOURCE12} $RPM_BUILD_ROOT%{_bindir}/peardev
b55022
b55022
# Sanitize the pear.conf
b55022
%{_bindir}/php %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf ext_dir >new-pear.conf
b55022
%{_bindir}/php %{SOURCE3} new-pear.conf http_proxy > $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf
b55022
b55022
%{_bindir}/php -r "print_r(unserialize(substr(file_get_contents('$RPM_BUILD_ROOT%{_sysconfdir}/pear.conf'),17)));"
b55022
b55022
b55022
install -m 644 -c %{SOURCE13} \
b55022
           $RPM_BUILD_ROOT%{_sysconfdir}/rpm/macros.pear     
b55022
b55022
# apply patches on installed PEAR tree
b55022
pushd $RPM_BUILD_ROOT%{peardir} 
b55022
 pushd PEAR
b55022
  %__patch -s --no-backup --fuzz 0 -p0 < %{PATCH0}
b55022
 popd
d1f36e
  %__patch -s --no-backup --fuzz 0 -p1 < %{PATCH2}
b55022
  %__patch -s --no-backup --fuzz 0 -p0 < %{PATCH1}
b55022
popd
b55022
b55022
# Why this file here ?
b55022
rm -rf $RPM_BUILD_ROOT/.depdb* $RPM_BUILD_ROOT/.lock $RPM_BUILD_ROOT/.channels $RPM_BUILD_ROOT/.filemap
b55022
b55022
# Need for re-registrying XML_Util
b55022
install -m 644 *.xml $RPM_BUILD_ROOT%{_localstatedir}/lib/pear/pkgxml
b55022
b55022
# The man pages
b55022
install -d $RPM_BUILD_ROOT%{_mandir}/man1
b55022
install -p -m 644 pear.1 pecl.1 peardev.1 $RPM_BUILD_ROOT%{_mandir}/man1/
b55022
install -d $RPM_BUILD_ROOT%{_mandir}/man5
b55022
install -p -m 644 pear.conf.5 $RPM_BUILD_ROOT%{_mandir}/man5/
b55022
b55022
b55022
%check
b55022
# Check that no bogus paths are left in the configuration, or in
b55022
# the generated registry files.
b55022
grep $RPM_BUILD_ROOT $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1
b55022
grep %{_libdir} $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1
b55022
grep '"/tmp"' $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1
b55022
grep /usr/local $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1
b55022
grep -rl $RPM_BUILD_ROOT $RPM_BUILD_ROOT && exit 1
b55022
b55022
b55022
%if %{with_tests}
b55022
cd $RPM_BUILD_ROOT%{pear_phpdir}/test/Structures_Graph/tests
b55022
phpunit \
b55022
   -d date.timezone=UTC \
b55022
   -d include_path=.:$RPM_BUILD_ROOT%{pear_phpdir}:%{pear_phpdir}: \
b55022
   AllTests || exit 1
b55022
b55022
cd $RPM_BUILD_ROOT%{pear_phpdir}/test/XML_Util/tests
b55022
phpunit \
b55022
   -d date.timezone=UTC \
b55022
   -d include_path=.:$RPM_BUILD_ROOT%{pear_phpdir}:%{pear_phpdir}: \
b55022
   AllTests || exit 1
b55022
%else
b55022
echo 'Test suite disabled (missing "--with tests" option)'
b55022
%endif
b55022
b55022
b55022
%clean
b55022
rm -rf $RPM_BUILD_ROOT
b55022
rm new-pear.conf
b55022
b55022
b55022
%pre
b55022
# Manage relocation of metadata, before update to pear
b55022
if [ -d %{peardir}/.registry -a ! -d %{metadir}/.registry ]; then
b55022
  mkdir -p %{metadir}
b55022
  mv -f %{peardir}/.??* %{metadir}
b55022
fi
b55022
b55022
b55022
%post
b55022
# force new value as pear.conf is (noreplace)
b55022
current=$(%{_bindir}/pear config-get test_dir system)
b55022
if [ "$current" != "%{_datadir}/tests/pear" ]; then
b55022
%{_bindir}/pear config-set \
b55022
    test_dir %{_datadir}/tests/pear \
b55022
    system >/dev/null || :
b55022
fi
b55022
b55022
current=$(%{_bindir}/pear config-get data_dir system)
b55022
if [ "$current" != "%{_datadir}/pear-data" ]; then
b55022
%{_bindir}/pear config-set \
b55022
    data_dir %{_datadir}/pear-data \
b55022
    system >/dev/null || :
b55022
fi
b55022
b55022
current=$(%{_bindir}/pear config-get metadata_dir system)
b55022
if [ "$current" != "%{metadir}" ]; then
b55022
%{_bindir}/pear config-set \
b55022
    metadata_dir %{metadir} \
b55022
    system >/dev/null || :
b55022
fi
b55022
b55022
b55022
%triggerpostun -- php-pear-XML-Util
b55022
# re-register extension unregistered during postun of obsoleted php-pear-XML-Util
b55022
%{_bindir}/pear install --nodeps --soft --force --register-only \
b55022
    %{_localstatedir}/lib/pear/pkgxml/XML_Util.xml >/dev/null || :
b55022
b55022
b55022
%files
b55022
%defattr(-,root,root,-)
b55022
%{peardir}
b55022
%dir %{metadir}
b55022
%{metadir}/.channels
b55022
%verify(not mtime size md5) %{metadir}/.depdb
b55022
%verify(not mtime)%{metadir}/.depdblock
b55022
%verify(not mtime size md5)%{metadir}/.filemap
b55022
%verify(not mtime)%{metadir}/.lock
b55022
%{metadir}/.registry
b55022
%{metadir}/pkgxml
b55022
%{_bindir}/*
b55022
%config(noreplace) %{_sysconfdir}/pear.conf
b55022
%{_sysconfdir}/rpm/macros.pear
b55022
%dir %{_localstatedir}/cache/php-pear
b55022
%dir %{_localstatedir}/www/html
b55022
%dir %{_sysconfdir}/pear
b55022
%doc README* LICENSE*
b55022
%dir %{_docdir}/pear
b55022
%doc %{_docdir}/pear/*
b55022
%dir %{_datadir}/tests
b55022
%{_datadir}/tests/pear
b55022
%{_datadir}/pear-data
b55022
%{_mandir}/man1/pear.1*
b55022
%{_mandir}/man1/pecl.1*
b55022
%{_mandir}/man1/peardev.1*
b55022
%{_mandir}/man5/pear.conf.5*
b55022
b55022
b55022
%changelog
d1f36e
* Wed Apr 15 2020 Remi Collet <rcollet@redhat.com> 1:1.9.4-22
d1f36e
- fix fatal error: gnu/stubs-64.h: No such file or directory #1720375
d1f36e
b55022
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:1.9.4-21
b55022
- Mass rebuild 2013-12-27
b55022
b55022
* Wed Jul 10 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-20
b55022
- add man page for pear.conf file
b55022
b55022
* Tue Jun 18 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-19
b55022
- add man pages for pear, peardev and pecl commands
b55022
b55022
* Fri May  3 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-18
b55022
- don't verify metadata file content
b55022
b55022
* Thu Apr 25 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-17
b55022
- improve post scriptlet to avoid updating pear.conf
b55022
  when not needed
b55022
b55022
* Tue Mar 12 2013 Ralf Corsépius <corsepiu@fedoraproject.org> - 1:1.9.4-16
b55022
- Remove %%config from %%{_sysconfdir}/rpm/macros.*
b55022
  (https://fedorahosted.org/fpc/ticket/259).
b55022
b55022
* Sat Feb  9 2013 Remi Collet <remi@fedoraproject.org> 1:1.9.4-15
b55022
- update Archive_Tar to 1.3.11
b55022
- drop php 5.5 patch merged upstream
b55022
b55022
* Tue Dec 11 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-14
b55022
- add explicit requires on all needed extensions (phpci)
b55022
- fix pecl launcher (need ini to be parsed for some
b55022
  extenstions going to be build as shared, mainly simplexml)
b55022
- add fix for new unpack format (php 5.5)
b55022
b55022
* Wed Sep 26 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-13
b55022
- move metadata to /var/lib/pear
b55022
b55022
* Wed Sep 26 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-12
b55022
- drop relocate stuff, no more needed
b55022
b55022
* Sun Aug 19 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-11
b55022
- move data to /usr/share/pear-data
b55022
- provides all package.xml
b55022
b55022
* Wed Aug 15 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-10
b55022
- enforce test_dir on update
b55022
b55022
* Mon Aug 13 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-9
b55022
- move tests to /usr/share/tests/pear
b55022
- move pkgxml to /var/lib/pear
b55022
- remove XML_RPC
b55022
- refresh installer
b55022
b55022
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.4-8
b55022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b55022
b55022
* Wed Apr 11 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-7
b55022
- Update Archive_Tar to 1.3.10
b55022
b55022
* Wed Apr 04 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-6
b55022
- fix Obsoletes version for XML_Util (#226295)
b55022
- add link to upstream bug - please Provides LICENSE file
b55022
  https://pear.php.net/bugs/bug.php?id=19368
b55022
- add link to upstream bug - Incorrect FSF address
b55022
  https://pear.php.net/bugs/bug.php?id=19367
b55022
b55022
* Mon Feb 27 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-5
b55022
- Update Archive_Tar to 1.3.9
b55022
- add patch from RHEL (Joe Orton)
b55022
- fix install-pear.php URL (with our patch for doc_dir applied)
b55022
b55022
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.4-4
b55022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b55022
b55022
* Sat Oct 15 2011 Remi Collet <remi@fedoraproject.org> 1:1.9.4-3
b55022
- update Archive_Tar to 1.3.8
b55022
- allow to build with "tests" option
b55022
b55022
* Sat Aug 27 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.4-2
b55022
- update to XML_RPC-1.5.5
b55022
b55022
* Thu Jul 07 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.4-1
b55022
- update to 1.9.4
b55022
b55022
* Fri Jun 10 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.3-2
b55022
- fix pecl launcher
b55022
b55022
* Fri Jun 10 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.3-1
b55022
- update to 1.9.3
b55022
- sync options in launcher (pecl, pear, peardev) with upstream
b55022
b55022
* Wed Mar 16 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.2-3
b55022
- move %%{pear_docdir} to %%{_docdir}/pear
b55022
  https://fedorahosted.org/fpc/ticket/69
b55022
b55022
* Tue Mar  8 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.2-2
b55022
- update Console_Getopt to 1.3.1 (no change)
b55022
b55022
* Mon Feb 28 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.2-1
b55022
- update to 1.9.2 (bug + security fix)
b55022
  http://pear.php.net/advisory-20110228.txt
b55022
b55022
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.1-7
b55022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b55022
b55022
* Sun Dec 12 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.1-6
b55022
- update Console_Getopt to 1.3.0
b55022
- don't require php-devel (#657812)
b55022
- update install-pear.php
b55022
b55022
* Tue Oct 26 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.1-5
b55022
- update Structures_Graph to 1.0.4
b55022
b55022
* Fri Sep 10 2010 Joe Orton <jorton@redhat.com> - 1:1.9.1-4
b55022
- ship LICENSE file for XML_RPC
b55022
b55022
* Fri Sep 10 2010 Joe Orton <jorton@redhat.com> - 1:1.9.1-3
b55022
- require php-devel (without which pecl doesn't work)
b55022
b55022
* Mon Jul 05 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.1-2
b55022
- update to XML_RPC-1.5.4
b55022
b55022
* Thu May 27 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.1-1
b55022
- update to 1.9.1
b55022
b55022
* Thu Apr 29 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-5
b55022
- update to Archive_Tar-1.3.7 (only metadata fix)
b55022
b55022
* Tue Mar 09 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-4
b55022
- update to Archive_Tar-1.3.6
b55022
b55022
* Sat Jan 16 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-3
b55022
- update to XML_RPC-1.5.3
b55022
- fix licenses (multiple)
b55022
- provide bundled LICENSE files
b55022
b55022
* Fri Jan 01 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-2
b55022
- update to Archive_Tar-1.3.5, Structures_Graph-1.0.3
b55022
b55022
* Sat Sep 05 2009 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-1
b55022
- update to PEAR 1.9.0, XML_RPC 1.5.2
b55022
b55022
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.1-2
b55022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b55022
b55022
* Sat May 30 2009 Remi Collet <Fedora@FamilleCollet.com> 1:1.8.1-1
b55022
- update to 1.8.1
b55022
- Update install-pear.php script (1.39)
b55022
- add XML_Util
b55022
b55022
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.7.2-3
b55022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b55022
b55022
* Sun May 18 2008 Remi Collet <Fedora@FamilleCollet.com> 1:1.7.2-2
b55022
- revert to install-pear.php script 1.31 (for cfg_dir)
b55022
b55022
* Sun May 18 2008 Remi Collet <Fedora@FamilleCollet.com> 1:1.7.2-1
b55022
- update to 1.7.2
b55022
- Update install-pear.php script (1.32)
b55022
b55022
* Tue Mar 11 2008 Tim Jackson <rpm@timj.co.uk> 1:1.7.1-2
b55022
- Set cfg_dir to be %%{_sysconfdir}/pear (and own it)
b55022
- Update install-pear.php script
b55022
- Add %%pear_cfgdir and %%pear_wwwdir macros
b55022
b55022
* Sun Feb  3 2008 Remi Collet <Fedora@FamilleCollet.com> 1:1.7.1-1
b55022
- update to 1.7.1
b55022
b55022
* Fri Feb  1 2008 Remi Collet <Fedora@FamilleCollet.com> 1:1.7.0-1
b55022
- update to 1.7.0
b55022
b55022
* Thu Oct  4 2007 Joe Orton <jorton@redhat.com> 1:1.6.2-2
b55022
- require php-cli not php
b55022
b55022
* Sun Sep  9 2007 Remi Collet <Fedora@FamilleCollet.com> 1:1.6.2-1
b55022
- update to 1.6.2
b55022
- remove patches merged upstream
b55022
- Fix : "pear install" hangs on non default channel (#283401)
b55022
b55022
* Tue Aug 21 2007 Joe Orton <jorton@redhat.com> 1:1.6.1-2
b55022
- fix License
b55022
b55022
* Thu Jul 19 2007 Remi Collet <Fedora@FamilleCollet.com> 1:1.6.1-1
b55022
- update to PEAR-1.6.1 and Console_Getopt-1.2.3
b55022
b55022
* Thu Jul 19 2007 Remi Collet <Fedora@FamilleCollet.com> 1:1.5.4-5
b55022
- new SPEC using install-pear.php instead of install-pear-nozlib-1.5.4.phar
b55022
b55022
* Mon Jul 16 2007 Remi Collet <Fedora@FamilleCollet.com> 1:1.5.4-4
b55022
- update macros.pear (without define)
b55022
b55022
* Mon Jul 16 2007 Joe Orton <jorton@redhat.com> 1:1.5.4-3
b55022
- add pecl_{un,}install macros to macros.pear (from Remi)
b55022
b55022
* Fri May 11 2007 Joe Orton <jorton@redhat.com> 1:1.5.4-2
b55022
- update to 1.5.4
b55022
b55022
* Tue Mar  6 2007 Joe Orton <jorton@redhat.com> 1:1.5.0-3
b55022
- add redundant build section (#226295)
b55022
- BR php-cli not php (#226295)
b55022
b55022
* Mon Feb 19 2007 Joe Orton <jorton@redhat.com> 1:1.5.0-2
b55022
- update builtin module provides (Remi Collet, #226295)
b55022
- drop patch 0
b55022
b55022
* Thu Feb 15 2007 Joe Orton <jorton@redhat.com> 1:1.5.0-1
b55022
- update to 1.5.0
b55022
b55022
* Mon Feb  5 2007 Joe Orton <jorton@redhat.com> 1:1.4.11-4
b55022
- fix Group, mark pear.conf noreplace (#226295)
b55022
b55022
* Mon Feb  5 2007 Joe Orton <jorton@redhat.com> 1:1.4.11-3
b55022
- use BuildArch not BuildArchitectures (#226925)
b55022
- fix to use preferred BuildRoot (#226925)
b55022
- strip more buildroot-relative paths from *.reg
b55022
- force correct gpg path in default pear.conf
b55022
b55022
* Thu Jan  4 2007 Joe Orton <jorton@redhat.com> 1:1.4.11-2
b55022
- update to 1.4.11
b55022
b55022
* Fri Jul 14 2006 Joe Orton <jorton@redhat.com> 1:1.4.9-4
b55022
- update to XML_RPC-1.5.0
b55022
- really package macros.pear
b55022
b55022
* Thu Jul 13 2006 Joe Orton <jorton@redhat.com> 1:1.4.9-3
b55022
- require php-cli
b55022
- add /etc/rpm/macros.pear (Christopher Stone)
b55022
b55022
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:1.4.9-2.1
b55022
- rebuild
b55022
b55022
* Mon May  8 2006 Joe Orton <jorton@redhat.com> 1:1.4.9-2
b55022
- update to 1.4.9 (thanks to Remi Collet, #183359)
b55022
- package /usr/share/pear/.pkgxml (#190252)
b55022
- update to XML_RPC-1.4.8
b55022
- bundle the v3.0 LICENSE file
b55022
b55022
* Tue Feb 28 2006 Joe Orton <jorton@redhat.com> 1:1.4.6-2
b55022
- set cache_dir directory, own /var/cache/php-pear
b55022
b55022
* Mon Jan 30 2006 Joe Orton <jorton@redhat.com> 1:1.4.6-1
b55022
- update to 1.4.6
b55022
- require php >= 5.1.0 (#178821)
b55022
b55022
* Fri Dec 30 2005 Tim Jackson <tim@timj.co.uk> 1:1.4.5-6
b55022
- Patches to fix "pear makerpm"
b55022
b55022
* Wed Dec 14 2005 Joe Orton <jorton@redhat.com> 1:1.4.5-5
b55022
- set default sig_keydir to /etc/pearkeys
b55022
- remove ext_dir setting from /etc/pear.conf (#175673)
b55022
b55022
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
b55022
- rebuilt
b55022
b55022
* Tue Dec  6 2005 Joe Orton <jorton@redhat.com> 1:1.4.5-4
b55022
- fix virtual provide for PEAR package (#175074)
b55022
b55022
* Sun Dec  4 2005 Joe Orton <jorton@redhat.com> 1:1.4.5-3
b55022
- fix /usr/bin/{pecl,peardev} (#174882)
b55022
b55022
* Thu Dec  1 2005 Joe Orton <jorton@redhat.com> 1:1.4.5-2
b55022
- add virtual provides (#173806) 
b55022
b55022
* Wed Nov 23 2005 Joe Orton <jorton@redhat.com> 1.4.5-1
b55022
- initial build (Epoch: 1 to allow upgrade from php-pear-5.x)