78b1995
# Fedora spec file for php-pear
78b1995
#
78b1995
# License: MIT
78b1995
# http://opensource.org/licenses/MIT
78b1995
#
78b1995
# Please preserve changelog entries
78b1995
#
3c2619d
%global peardir %{_datadir}/pear
0b521dc
%global metadir %{_localstatedir}/lib/pear
f2c4aa5
4ce34a2
%global getoptver 1.4.1
78b1995
%global arctarver 1.4.0
ad7c6d7
# https://pear.php.net/bugs/bug.php?id=19367
ad7c6d7
# Structures_Graph 1.0.4 - incorrect FSF address
4ce34a2
%global structver 1.1.1
7cf1cac
%global xmlutil   1.3.0
6e137bb
%global manpages  1.10.0
b5bac4b
fb0779a
# Tests are only run with rpmbuild --with tests
fb0779a
# Can't be run in mock / koji because PEAR is the first package
4ce34a2
%global with_tests 0%{?_with_tests:1}
fb0779a
1c99e2a
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
1c99e2a
f2c4aa5
Summary: PHP Extension and Application Repository framework
f2c4aa5
Name: php-pear
6abd86d
Version: 1.10.1
6e137bb
Release: 1%{?dist}
f2c4aa5
Epoch: 1
f9e9e4d
# PEAR, PEAR_Manpages, Archive_Tar, XML_Util, Console_Getopt are BSD
9fb62f5
# Structures_Graph is LGPLv3+
9fb62f5
License: BSD and LGPLv3+
30e6e23
Group: Development/Languages
f2c4aa5
URL: http://pear.php.net/package/PEAR
f9e9e4d
Source0: http://download.pear.php.net/package/PEAR-%{version}%{?pearprever}.tgz
f9e9e4d
# wget https://raw.githubusercontent.com/pear/pear-core/stable/install-pear.php
d4b666e
Source1: install-pear.php
9178c0f
Source3: strip.php
c4b9d17
Source10: pear.sh
c4b9d17
Source11: pecl.sh
c4b9d17
Source12: peardev.sh
21dfe00
Source13: macros.pear
d4b666e
Source21: http://pear.php.net/get/Archive_Tar-%{arctarver}.tgz
d4b666e
Source22: http://pear.php.net/get/Console_Getopt-%{getoptver}.tgz
d4b666e
Source23: http://pear.php.net/get/Structures_Graph-%{structver}.tgz
3c2619d
Source24: http://pear.php.net/get/XML_Util-%{xmlutil}.tgz
f9e9e4d
Source25: http://pear.php.net/get/PEAR_Manpages-%{manpages}.tgz
d4b666e
cbe20f7
BuildArch: noarch
cbe20f7
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
78b1995
BuildRequires: php(language) > 5.4
78b1995
BuildRequires: php-cli
e2bf7ea
BuildRequires: php-xml
e2bf7ea
BuildRequires: gnupg
fb0779a
%if %{with_tests}
be64554
BuildRequires:  %{_bindir}/phpunit
fb0779a
%endif
e598df7
d4b666e
Provides: php-pear(Console_Getopt) = %{getoptver}
d4b666e
Provides: php-pear(Archive_Tar) = %{arctarver}
977b82d
Provides: php-pear(PEAR) = %{version}
d4b666e
Provides: php-pear(Structures_Graph) = %{structver}
3c2619d
Provides: php-pear(XML_Util) = %{xmlutil}
f9e9e4d
Provides: php-pear(PEAR_Manpages) = %{manpages}
f9e9e4d
88cdfa7
Provides: php-composer(pear/console_getopt) = %{getoptver}
88cdfa7
Provides: php-composer(pear/archive_tar) = %{arctarver}
88cdfa7
Provides: php-composer(pear/pear-core-minimal) = %{version}
88cdfa7
Provides: php-composer(pear/structures_graph) = %{structver}
88cdfa7
Provides: php-composer(pear/xml_util) = %{xmlutil}
9fcc47f
78b1995
# Archive_Tar requires 5.2
78b1995
# XML_Util, Structures_Graph require 5.3
9fb62f5
# Console_Getopt requires 5.4
f9e9e4d
# PEAR requires 5.4
9fb62f5
Requires:  php(language) > 5.4
9fcc47f
Requires:  php-cli
9fcc47f
# phpci detected extension
9fcc47f
# PEAR (date, spl always builtin):
9fcc47f
Requires:  php-ftp
9fcc47f
Requires:  php-pcre
9fcc47f
Requires:  php-posix
9fcc47f
Requires:  php-tokenizer
9fcc47f
Requires:  php-xml
9fcc47f
Requires:  php-zlib
9fcc47f
# Console_Getopt: pcre
9fcc47f
# Archive_Tar: pcre, posix, zlib
9fcc47f
Requires:  php-bz2
9fcc47f
# Structures_Graph: none
9fcc47f
# XML_Util: pcre
9fcc47f
# optional: overload and xdebug
e2bf7ea
# for /var/www/html ownership
e2bf7ea
Requires: httpd-filesystem
e598df7
f2c4aa5
f2c4aa5
%description
f2c4aa5
PEAR is a framework and distribution system for reusable PHP
f2c4aa5
components.  This package contains the basic PEAR components.
f2c4aa5
f2c4aa5
%prep
d4b666e
%setup -cT
d4b666e
d4b666e
# Create a usable PEAR directory (used by install-pear.php)
f9e9e4d
for archive in %{SOURCE0} %{SOURCE21} %{SOURCE22} %{SOURCE23} %{SOURCE24} %{SOURCE25}
d4b666e
do
115cca0
    tar xzf  $archive --strip-components 1 || tar xzf  $archive --strip-path 1
f2efa72
    file=${archive##*/}
f2efa72
    [ -f LICENSE ] && mv LICENSE LICENSE-${file%%-*}
f2efa72
    [ -f README ]  && mv README  README-${file%%-*}
0b5a555
0b5a555
    tar xzf $archive 'package*xml'
0b5a555
    [ -f package2.xml ] && mv package2.xml ${file%%-*}.xml \
0b5a555
                        || mv package.xml  ${file%%-*}.xml
d4b666e
done
f9e9e4d
cp %{SOURCE1} .
d4b666e
6fb06dc
# apply patches on used PEAR during install
f9e9e4d
# None \o/
02df4bd
1c99e2a
sed -e 's:@BINDIR@:%{_bindir}:' \
1c99e2a
    -e 's:@LIBDIR@:%{_localstatedir}/lib:' \
1c99e2a
    %{SOURCE13} > macros.pear
1c99e2a
f2c4aa5
5215bfd
%build
5215bfd
# This is an empty build section.
5215bfd
02df4bd
f2c4aa5
%install
f2c4aa5
rm -rf $RPM_BUILD_ROOT
f2c4aa5
d4b666e
export PHP_PEAR_SYSCONF_DIR=%{_sysconfdir}
d4b666e
export PHP_PEAR_SIG_KEYDIR=%{_sysconfdir}/pearkeys
d4b666e
export PHP_PEAR_SIG_BIN=%{_bindir}/gpg
d4b666e
export PHP_PEAR_INSTALL_DIR=%{peardir}
7550ac1
7550ac1
# 1.4.11 tries to write to the cache directory during installation
7550ac1
# so it's not possible to set a sane default via the environment.
7550ac1
# The ${PWD} bit will be stripped via relocate.php later.
7550ac1
export PHP_PEAR_CACHE_DIR=${PWD}%{_localstatedir}/cache/php-pear
7550ac1
export PHP_PEAR_TEMP_DIR=/var/tmp
f2c4aa5
d4b666e
install -d $RPM_BUILD_ROOT%{peardir} \
f98fc6f
           $RPM_BUILD_ROOT%{_localstatedir}/cache/php-pear \
3c2619d
           $RPM_BUILD_ROOT%{_localstatedir}/www/html \
fee8e15
           $RPM_BUILD_ROOT%{_localstatedir}/lib/pear/pkgxml \
3e55017
           $RPM_BUILD_ROOT%{_docdir}/pecl \
a1340cf
           $RPM_BUILD_ROOT%{_datadir}/tests/pecl \
2853f62
           $RPM_BUILD_ROOT%{_sysconfdir}/pear
f2c4aa5
d4b666e
export INSTALL_ROOT=$RPM_BUILD_ROOT
d4b666e
f9e9e4d
%{_bindir}/php --version
f9e9e4d
9fcc47f
%{_bindir}/php -dmemory_limit=64M -dshort_open_tag=0 -dsafe_mode=0 \
9fcc47f
         -d 'error_reporting=E_ALL&~E_DEPRECATED' -ddetect_unicode=0 \
0b521dc
         install-pear.php --force \
0b521dc
                 --dir      %{peardir} \
0b521dc
                 --cache    %{_localstatedir}/cache/php-pear \
0b521dc
                 --config   %{_sysconfdir}/pear \
0b521dc
                 --bin      %{_bindir} \
0b521dc
                 --www      %{_localstatedir}/www/html \
0b521dc
                 --doc      %{_docdir}/pear \
0b521dc
                 --test     %{_datadir}/tests/pear \
0b521dc
                 --data     %{_datadir}/pear-data \
0b521dc
                 --metadata %{metadir} \
f9e9e4d
                 --man      %{_mandir} \
f9e9e4d
                 %{SOURCE0} %{SOURCE21} %{SOURCE22} %{SOURCE23} %{SOURCE24} %{SOURCE25}
d4b666e
d4b666e
# Replace /usr/bin/* with simple scripts:
d4b666e
install -m 755 %{SOURCE10} $RPM_BUILD_ROOT%{_bindir}/pear
d4b666e
install -m 755 %{SOURCE11} $RPM_BUILD_ROOT%{_bindir}/pecl
d4b666e
install -m 755 %{SOURCE12} $RPM_BUILD_ROOT%{_bindir}/peardev
f2c4aa5
9178c0f
# Sanitize the pear.conf
9fcc47f
%{_bindir}/php %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf ext_dir >new-pear.conf
9fcc47f
%{_bindir}/php %{SOURCE3} new-pear.conf http_proxy > $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf
7377411
7377411
%{_bindir}/php -r "print_r(unserialize(substr(file_get_contents('$RPM_BUILD_ROOT%{_sysconfdir}/pear.conf'),17)));"
f2c4aa5
66a2bd1
1c99e2a
install -m 644 -D macros.pear \
1c99e2a
           $RPM_BUILD_ROOT%{macrosdir}/macros.pear
f2c4aa5
6fb06dc
# apply patches on installed PEAR tree
3c2619d
pushd $RPM_BUILD_ROOT%{peardir} 
f9e9e4d
# none
3c2619d
popd
f98fc6f
d4b666e
# Why this file here ?
d4b666e
rm -rf $RPM_BUILD_ROOT/.depdb* $RPM_BUILD_ROOT/.lock $RPM_BUILD_ROOT/.channels $RPM_BUILD_ROOT/.filemap
21dfe00
3c2619d
# Need for re-registrying XML_Util
0b5a555
install -m 644 *.xml $RPM_BUILD_ROOT%{_localstatedir}/lib/pear/pkgxml
3c2619d
3c2619d
f2c4aa5
%check
cbe20f7
# Check that no bogus paths are left in the configuration, or in
cbe20f7
# the generated registry files.
f2c4aa5
grep $RPM_BUILD_ROOT $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1
9178c0f
grep %{_libdir} $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1
7550ac1
grep '"/tmp"' $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1
cbe20f7
grep /usr/local $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1
cbe20f7
grep -rl $RPM_BUILD_ROOT $RPM_BUILD_ROOT && exit 1
f2c4aa5
3c2619d
fb0779a
%if %{with_tests}
4ce34a2
cp /etc/php.ini .
4ce34a2
echo "include_path=.:$RPM_BUILD_ROOT%{peardir}:/usr/share/php" >>php.ini
4ce34a2
export PHPRC=$PWD/php.ini
be64554
LOG=$PWD/rpmlog
be64554
ret=0
fb0779a
be64554
cd $RPM_BUILD_ROOT%{_datadir}/tests/pear/Structures_Graph/tests
fb0779a
phpunit \
be64554
   AllTests || ret=1
be64554
be64554
cd $RPM_BUILD_ROOT%{_datadir}/tests/pear/XML_Util/tests
4ce34a2
%{_bindir}/php \
be64554
   $RPM_BUILD_ROOT/usr/share/pear/pearcmd.php \
be64554
   run-tests \
be64554
   | tee $LOG
4ce34a2
4ce34a2
cd $RPM_BUILD_ROOT%{_datadir}/tests/pear/Console_Getopt/tests
4ce34a2
%{_bindir}/php \
4ce34a2
   $RPM_BUILD_ROOT/usr/share/pear/pearcmd.php \
4ce34a2
   run-tests \
4ce34a2
   | tee -a $LOG
4ce34a2
be64554
grep "FAILED TESTS" $LOG && ret=1
be64554
be64554
exit $ret
fb0779a
%else
fb0779a
echo 'Test suite disabled (missing "--with tests" option)'
fb0779a
%endif
fb0779a
fb0779a
f2c4aa5
%clean
f2c4aa5
rm -rf $RPM_BUILD_ROOT
d4b666e
rm new-pear.conf
f2c4aa5
3c2619d
0b521dc
%pre
0b521dc
# Manage relocation of metadata, before update to pear
0b521dc
if [ -d %{peardir}/.registry -a ! -d %{metadir}/.registry ]; then
0b521dc
  mkdir -p %{metadir}
0b521dc
  mv -f %{peardir}/.??* %{metadir}
0b521dc
fi
0b521dc
0b521dc
c1e9a57
%post
c1e9a57
# force new value as pear.conf is (noreplace)
5a8ac83
current=$(%{_bindir}/pear config-get test_dir system)
5a8ac83
if [ "$current" != "%{_datadir}/tests/pear" ]; then
0b5a555
%{_bindir}/pear config-set \
0b5a555
    test_dir %{_datadir}/tests/pear \
0b5a555
    system >/dev/null || :
5a8ac83
fi
0b5a555
5a8ac83
current=$(%{_bindir}/pear config-get data_dir system)
5a8ac83
if [ "$current" != "%{_datadir}/pear-data" ]; then
0b5a555
%{_bindir}/pear config-set \
0b5a555
    data_dir %{_datadir}/pear-data \
0b5a555
    system >/dev/null || :
5a8ac83
fi
c1e9a57
5a8ac83
current=$(%{_bindir}/pear config-get metadata_dir system)
5a8ac83
if [ "$current" != "%{metadir}" ]; then
0b521dc
%{_bindir}/pear config-set \
0b521dc
    metadata_dir %{metadir} \
0b521dc
    system >/dev/null || :
5a8ac83
fi
0b521dc
3e55017
current=$(%{_bindir}/pear config-get -c pecl doc_dir system)
3e55017
if [ "$current" != "%{_docdir}/pecl" ]; then
3e55017
%{_bindir}/pear config-set \
3e55017
    -c pecl \
3e55017
    doc_dir %{_docdir}/pecl \
3e55017
    system >/dev/null || :
3e55017
fi
3e55017
a1340cf
current=$(%{_bindir}/pear config-get -c pecl test_dir system)
a1340cf
if [ "$current" != "%{_datadir}/tests/pecl" ]; then
a1340cf
%{_bindir}/pear config-set \
a1340cf
    -c pecl \
a1340cf
    test_dir %{_datadir}/tests/pecl \
a1340cf
    system >/dev/null || :
a1340cf
fi
a1340cf
c1e9a57
7b61d55
%postun
7b61d55
if [ $1 -eq 0 -a -d %{metadir}/.registry ] ; then
7b61d55
  rm -rf %{metadir}/.registry
7b61d55
fi
3c2619d
3c2619d
f2c4aa5
%files
f2c4aa5
%defattr(-,root,root,-)
f2c4aa5
%{peardir}
15fd7ba
%dir %{metadir}
15fd7ba
%{metadir}/.channels
15fd7ba
%verify(not mtime size md5) %{metadir}/.depdb
7b61d55
%verify(not mtime)          %{metadir}/.depdblock
7b61d55
%verify(not mtime size md5) %{metadir}/.filemap
7b61d55
%verify(not mtime)          %{metadir}/.lock
15fd7ba
%{metadir}/.registry
15fd7ba
%{metadir}/pkgxml
f2c4aa5
%{_bindir}/*
30e6e23
%config(noreplace) %{_sysconfdir}/pear.conf
1c99e2a
%{macrosdir}/macros.pear
49ab520
%dir %{_localstatedir}/cache/php-pear
2853f62
%dir %{_sysconfdir}/pear
e2bf7ea
%{!?_licensedir:%global license %%doc}
e2bf7ea
%license LICENSE*
e2bf7ea
%doc README*
65cf09f
%dir %{_docdir}/pear
65cf09f
%doc %{_docdir}/pear/*
3e55017
%dir %{_docdir}/pecl
0b5a555
%dir %{_datadir}/tests
a1340cf
%dir %{_datadir}/tests/pecl
0b5a555
%{_datadir}/tests/pear
0b5a555
%{_datadir}/pear-data
af69734
%{_mandir}/man1/pear.1*
af69734
%{_mandir}/man1/pecl.1*
af69734
%{_mandir}/man1/peardev.1*
a058319
%{_mandir}/man5/pear.conf.5*
f2c4aa5
3c2619d
f2c4aa5
%changelog
6abd86d
* Sat Oct 17 2015 Remi Collet <remi@fedoraproject.org> 1:1.10.1-1
6abd86d
- update PEAR to 1.10.1
6abd86d
6e137bb
* Wed Oct  7 2015 Remi Collet <remi@fedoraproject.org> 1:1.10.0-1
6e137bb
- update PEAR and PEAR_Manpages to 1.10.0
f9e9e4d
- drop all patches, merged upstream
f9e9e4d
- drop man pages from sources
f9e9e4d
- add PEAR_Manpages upstream package
f9e9e4d
4ce34a2
* Tue Jul 21 2015 Remi Collet <remi@fedoraproject.org> 1:1.9.5-12
4ce34a2
- update Console_Getopt to 1.4.1
4ce34a2
- update Structures_Graph to 1.1.1
4ce34a2
78b1995
* Mon Jul 20 2015 Remi Collet <remi@fedoraproject.org> 1:1.9.5-10
78b1995
- update Archive_Tar to 1.4.0
78b1995
88cdfa7
* Fri Mar 13 2015 Remi Collet <remi@fedoraproject.org> 1:1.9.5-7
88cdfa7
- update Archive_Tar to 1.3.15 (no change)
88cdfa7
- add composer provides
88cdfa7
7cf1cac
* Mon Mar  2 2015 Remi Collet <remi@fedoraproject.org> 1:1.9.5-6
7cf1cac
- update XML_Util to 1.3.0
7cf1cac
9fb62f5
* Fri Feb 27 2015 Remi Collet <remi@fedoraproject.org> 1:1.9.5-5
9fb62f5
- update Structures_Graph to 1.1.0
9fb62f5
- update Archive_Tar to 1.3.14
9fb62f5
7b61d55
* Mon Feb 23 2015 Remi Collet <remi@fedoraproject.org> 1:1.9.5-4
7b61d55
- update Console_Getopt to 1.4.0
7b61d55
- raise php minimum version to 5.4
7b61d55
- cleanup registry after removal
7b61d55
- drop old php-pear-XML-Util scriptlets
7b61d55
- remove PHP from License, Console_Getopt is now BSD
7b61d55
e2bf7ea
* Thu Sep  4 2014 Remi Collet <remi@fedoraproject.org> 1:1.9.5-3
e2bf7ea
- update Archive_Tar to 1.3.13
e2bf7ea
- requires httpd-filesystem for /var/www/html ownership (F21+)
e2bf7ea
- fix license handling
e2bf7ea
236c883
* Tue Aug 12 2014 Remi Collet <remi@fedoraproject.org> 1:1.9.5-2
236c883
- update Archive_Tar to 1.3.12
236c883
fb728f9
* Tue Jul 15 2014 Remi Collet <remi@fedoraproject.org> 1:1.9.5-1
fb728f9
- update PEAR to 1.9.5
fb728f9
be64554
* Sat Jun  7 2014 Remi Collet <remi@fedoraproject.org> 1:1.9.4-29
be64554
- update XML_Util to 1.2.3
be64554
- fix test suite (not used)
be64554
ea94b62
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.4-28
ea94b62
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
ea94b62
63619c1
* Thu Apr 17 2014 Remi Collet <rcollet@redhat.com> 1:1.9.4-27
63619c1
- revert previous, was a bad solution
63619c1
19429b4
* Wed Apr  9 2014 Remi Collet <rcollet@redhat.com> 1:1.9.4-25
19429b4
- only enable needed extensions for pear/pecl commands
19429b4
- fix typo in pear man page
19429b4
1c99e2a
* Tue Feb 11 2014 Remi Collet <rcollet@redhat.com> 1:1.9.4-24
1c99e2a
- Expand path in macros.pear
1c99e2a
- Install macros to /usr/lib/rpm/macros.d where available
1c99e2a
a1340cf
* Tue Oct 15 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-23
a1340cf
- set pecl test_dir to /usr/share/tests/pecl
a1340cf
3e55017
* Mon Oct 14 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-22
3e55017
- set pecl doc_dir to /usr/share/doc/pecl
3e55017
a4f8374
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.4-21
a4f8374
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a4f8374
a058319
* Wed Jul 10 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-20
a058319
- add man page for pear.conf file
a058319
af69734
* Tue Jun 18 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-19
af69734
- add man pages for pear, peardev and pecl commands
af69734
15fd7ba
* Fri May  3 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-18
15fd7ba
- don't verify metadata file content
15fd7ba
5a8ac83
* Thu Apr 25 2013 Remi Collet <rcollet@redhat.com> 1:1.9.4-17
5a8ac83
- improve post scriptlet to avoid updating pear.conf
5a8ac83
  when not needed
5a8ac83
f6239d9
* Tue Mar 12 2013 Ralf Cors├ępius <corsepiu@fedoraproject.org> - 1:1.9.4-16
f6239d9
- Remove %%config from %%{_sysconfdir}/rpm/macros.*
f6239d9
  (https://fedorahosted.org/fpc/ticket/259).
f6239d9
02df4bd
* Sat Feb  9 2013 Remi Collet <remi@fedoraproject.org> 1:1.9.4-15
02df4bd
- update Archive_Tar to 1.3.11
02df4bd
- drop php 5.5 patch merged upstream
02df4bd
9fcc47f
* Tue Dec 11 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-14
9fcc47f
- add explicit requires on all needed extensions (phpci)
9fcc47f
- fix pecl launcher (need ini to be parsed for some
9fcc47f
  extenstions going to be build as shared, mainly simplexml)
9fcc47f
- add fix for new unpack format (php 5.5)
9fcc47f
0b521dc
* Wed Sep 26 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-13
0b521dc
- move metadata to /var/lib/pear
0b521dc
a10ce1f
* Wed Sep 26 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-12
a10ce1f
- drop relocate stuff, no more needed
a10ce1f
0b5a555
* Sun Aug 19 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-11
0b5a555
- move data to /usr/share/pear-data
0b5a555
- provides all package.xml
0b5a555
5a8ac83
* Wed Aug 15 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-10
c1e9a57
- enforce test_dir on update
c1e9a57
fee8e15
* Mon Aug 13 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-9
fee8e15
- move tests to /usr/share/tests/pear
fee8e15
- move pkgxml to /var/lib/pear
fee8e15
- remove XML_RPC
fee8e15
- refresh installer
fee8e15
d0e6eba
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.4-8
d0e6eba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d0e6eba
d34a253
* Wed Apr 11 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-7
d34a253
- Update Archive_Tar to 1.3.10
d34a253
ad7c6d7
* Wed Apr 04 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-6
ad7c6d7
- fix Obsoletes version for XML_Util (#226295)
ad7c6d7
- add link to upstream bug - please Provides LICENSE file
ad7c6d7
  https://pear.php.net/bugs/bug.php?id=19368
ad7c6d7
- add link to upstream bug - Incorrect FSF address
ad7c6d7
  https://pear.php.net/bugs/bug.php?id=19367
ad7c6d7
8bb99b1
* Mon Feb 27 2012 Remi Collet <remi@fedoraproject.org> 1:1.9.4-5
8bb99b1
- Update Archive_Tar to 1.3.9
8bb99b1
- add patch from RHEL (Joe Orton)
8bb99b1
- fix install-pear.php URL (with our patch for doc_dir applied)
8bb99b1
dbe4c9d
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.4-4
dbe4c9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
dbe4c9d
fb0779a
* Sat Oct 15 2011 Remi Collet <remi@fedoraproject.org> 1:1.9.4-3
fb0779a
- update Archive_Tar to 1.3.8
fb0779a
- allow to build with "tests" option
fb0779a
867f812
* Sat Aug 27 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.4-2
867f812
- update to XML_RPC-1.5.5
867f812
acb07f9
* Thu Jul 07 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.4-1
acb07f9
- update to 1.9.4
acb07f9
40f9b86
* Fri Jun 10 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.3-2
40f9b86
- fix pecl launcher
40f9b86
a947c82
* Fri Jun 10 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.3-1
a947c82
- update to 1.9.3
a947c82
- sync options in launcher (pecl, pear, peardev) with upstream
a947c82
65cf09f
* Wed Mar 16 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.2-3
65cf09f
- move %%{pear_docdir} to %%{_docdir}/pear
65cf09f
  https://fedorahosted.org/fpc/ticket/69
65cf09f
9daa490
* Tue Mar  8 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.2-2
9daa490
- update Console_Getopt to 1.3.1 (no change)
9daa490
c036b89
* Mon Feb 28 2011 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.2-1
c036b89
- update to 1.9.2 (bug + security fix)
c036b89
  http://pear.php.net/advisory-20110228.txt
c036b89
c86d307
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.9.1-7
c86d307
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c86d307
e598df7
* Sun Dec 12 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.1-6
e598df7
- update Console_Getopt to 1.3.0
e598df7
- don't require php-devel (#657812)
e598df7
- update install-pear.php
e598df7
bee08ed
* Tue Oct 26 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.1-5
bee08ed
- update Structures_Graph to 1.0.4
bee08ed
66a2bd1
* Fri Sep 10 2010 Joe Orton <jorton@redhat.com> - 1:1.9.1-4
66a2bd1
- ship LICENSE file for XML_RPC
66a2bd1
7d74d03
* Fri Sep 10 2010 Joe Orton <jorton@redhat.com> - 1:1.9.1-3
7d74d03
- require php-devel (without which pecl doesn't work)
7d74d03
c0116c6
* Mon Jul 05 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.1-2
c0116c6
- update to XML_RPC-1.5.4
c0116c6
e673091
* Thu May 27 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.1-1
e673091
- update to 1.9.1
e673091
8c9c36c
* Thu Apr 29 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-5
8c9c36c
- update to Archive_Tar-1.3.7 (only metadata fix)
8c9c36c
43f73ef
* Tue Mar 09 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-4
43f73ef
- update to Archive_Tar-1.3.6
43f73ef
5d3e81f
* Sat Jan 16 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-3
f2efa72
- update to XML_RPC-1.5.3
f2efa72
- fix licenses (multiple)
f2efa72
- provide bundled LICENSE files
f2efa72
17e6e44
* Fri Jan 01 2010 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-2
17e6e44
- update to Archive_Tar-1.3.5, Structures_Graph-1.0.3
17e6e44
5a315a6
* Sat Sep 05 2009 Remi Collet <Fedora@FamilleCollet.com> 1:1.9.0-1
5a315a6
- update to PEAR 1.9.0, XML_RPC 1.5.2
5a315a6
9b06c4f
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.1-2
9b06c4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9b06c4f
3c2619d
* Sat May 30 2009 Remi Collet <Fedora@FamilleCollet.com> 1:1.8.1-1
3c2619d
- update to 1.8.1
3c2619d
- Update install-pear.php script (1.39)
3c2619d
- add XML_Util
3c2619d
5bc3a2e
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.7.2-3
5bc3a2e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
5bc3a2e
b750e1c
* Sun May 18 2008 Remi Collet <Fedora@FamilleCollet.com> 1:1.7.2-2
b750e1c
- revert to install-pear.php script 1.31 (for cfg_dir)
b750e1c
eea87a2
* Sun May 18 2008 Remi Collet <Fedora@FamilleCollet.com> 1:1.7.2-1
eea87a2
- update to 1.7.2
eea87a2
- Update install-pear.php script (1.32)
eea87a2
2853f62
* Tue Mar 11 2008 Tim Jackson <rpm@timj.co.uk> 1:1.7.1-2
3c2619d
- Set cfg_dir to be %%{_sysconfdir}/pear (and own it)
2853f62
- Update install-pear.php script
2853f62
- Add %%pear_cfgdir and %%pear_wwwdir macros
2853f62
115cca0
* Sun Feb  3 2008 Remi Collet <Fedora@FamilleCollet.com> 1:1.7.1-1
115cca0
- update to 1.7.1
115cca0
7377411
* Fri Feb  1 2008 Remi Collet <Fedora@FamilleCollet.com> 1:1.7.0-1
7377411
- update to 1.7.0
7377411
932b842
* Thu Oct  4 2007 Joe Orton <jorton@redhat.com> 1:1.6.2-2
932b842
- require php-cli not php
932b842
6fb06dc
* Sun Sep  9 2007 Remi Collet <Fedora@FamilleCollet.com> 1:1.6.2-1
6fb06dc
- update to 1.6.2
6fb06dc
- remove patches merged upstream
6fb06dc
- Fix : "pear install" hangs on non default channel (#283401)
6fb06dc
e05e7ea
* Tue Aug 21 2007 Joe Orton <jorton@redhat.com> 1:1.6.1-2
e05e7ea
- fix License
e05e7ea
d4b666e
* Thu Jul 19 2007 Remi Collet <Fedora@FamilleCollet.com> 1:1.6.1-1
d4b666e
- update to PEAR-1.6.1 and Console_Getopt-1.2.3
d4b666e
d4b666e
* Thu Jul 19 2007 Remi Collet <Fedora@FamilleCollet.com> 1:1.5.4-5
d4b666e
- new SPEC using install-pear.php instead of install-pear-nozlib-1.5.4.phar
d4b666e
3ed1b7d
* Mon Jul 16 2007 Remi Collet <Fedora@FamilleCollet.com> 1:1.5.4-4
3ed1b7d
- update macros.pear (without define)
3ed1b7d
5bb29ca
* Mon Jul 16 2007 Joe Orton <jorton@redhat.com> 1:1.5.4-3
5bb29ca
- add pecl_{un,}install macros to macros.pear (from Remi)
5bb29ca
582fcef
* Fri May 11 2007 Joe Orton <jorton@redhat.com> 1:1.5.4-2
582fcef
- update to 1.5.4
582fcef
5215bfd
* Tue Mar  6 2007 Joe Orton <jorton@redhat.com> 1:1.5.0-3
5215bfd
- add redundant build section (#226295)
5215bfd
- BR php-cli not php (#226295)
5215bfd
780e0ef
* Mon Feb 19 2007 Joe Orton <jorton@redhat.com> 1:1.5.0-2
780e0ef
- update builtin module provides (Remi Collet, #226295)
780e0ef
- drop patch 0
780e0ef
fa2f675
* Thu Feb 15 2007 Joe Orton <jorton@redhat.com> 1:1.5.0-1
fa2f675
- update to 1.5.0
fa2f675
30e6e23
* Mon Feb  5 2007 Joe Orton <jorton@redhat.com> 1:1.4.11-4
30e6e23
- fix Group, mark pear.conf noreplace (#226295)
30e6e23
cbe20f7
* Mon Feb  5 2007 Joe Orton <jorton@redhat.com> 1:1.4.11-3
cbe20f7
- use BuildArch not BuildArchitectures (#226925)
cbe20f7
- fix to use preferred BuildRoot (#226925)
cbe20f7
- strip more buildroot-relative paths from *.reg
9894d03
- force correct gpg path in default pear.conf
cbe20f7
7550ac1
* Thu Jan  4 2007 Joe Orton <jorton@redhat.com> 1:1.4.11-2
7550ac1
- update to 1.4.11
7550ac1
7aebec6
* Fri Jul 14 2006 Joe Orton <jorton@redhat.com> 1:1.4.9-4
7aebec6
- update to XML_RPC-1.5.0
7aebec6
- really package macros.pear
7aebec6
21dfe00
* Thu Jul 13 2006 Joe Orton <jorton@redhat.com> 1:1.4.9-3
21dfe00
- require php-cli
21dfe00
- add /etc/rpm/macros.pear (Christopher Stone)
21dfe00
2f9a8bc
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:1.4.9-2.1
2f9a8bc
- rebuild
2f9a8bc
f98fc6f
* Mon May  8 2006 Joe Orton <jorton@redhat.com> 1:1.4.9-2
f98fc6f
- update to 1.4.9 (thanks to Remi Collet, #183359)
f98fc6f
- package /usr/share/pear/.pkgxml (#190252)
f98fc6f
- update to XML_RPC-1.4.8
f98fc6f
- bundle the v3.0 LICENSE file
f98fc6f
49ab520
* Tue Feb 28 2006 Joe Orton <jorton@redhat.com> 1:1.4.6-2
49ab520
- set cache_dir directory, own /var/cache/php-pear
49ab520
cc0d744
* Mon Jan 30 2006 Joe Orton <jorton@redhat.com> 1:1.4.6-1
cc0d744
- update to 1.4.6
cc0d744
- require php >= 5.1.0 (#178821)
cc0d744
83fab8f
* Fri Dec 30 2005 Tim Jackson <tim@timj.co.uk> 1:1.4.5-6
83fab8f
- Patches to fix "pear makerpm"
83fab8f
9178c0f
* Wed Dec 14 2005 Joe Orton <jorton@redhat.com> 1:1.4.5-5
9178c0f
- set default sig_keydir to /etc/pearkeys
9178c0f
- remove ext_dir setting from /etc/pear.conf (#175673)
9178c0f
d58f42d
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
d58f42d
- rebuilt
d58f42d
977b82d
* Tue Dec  6 2005 Joe Orton <jorton@redhat.com> 1:1.4.5-4
977b82d
- fix virtual provide for PEAR package (#175074)
977b82d
c4b9d17
* Sun Dec  4 2005 Joe Orton <jorton@redhat.com> 1:1.4.5-3
c4b9d17
- fix /usr/bin/{pecl,peardev} (#174882)
c4b9d17
b5bac4b
* Thu Dec  1 2005 Joe Orton <jorton@redhat.com> 1:1.4.5-2
b5bac4b
- add virtual provides (#173806) 
b5bac4b
f2c4aa5
* Wed Nov 23 2005 Joe Orton <jorton@redhat.com> 1.4.5-1
f2c4aa5
- initial build (Epoch: 1 to allow upgrade from php-pear-5.x)