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