Blame SPECS/php-pecl-xdebug.spec

f3cca4
# RHEL spec file for php-pecl-xdebug, from
f3cca4
#
f3cca4
# Fedora spec file for php-pecl-xdebug
f3cca4
#
f3cca4
# Copyright (c) 2010-2020 Remi Collet
f3cca4
# Copyright (c) 2006-2009 Christopher Stone
f3cca4
#
f3cca4
# License: MIT
f3cca4
# http://opensource.org/licenses/MIT
f3cca4
#
f3cca4
# Please, preserve the changelog entries
f3cca4
#
f3cca4
f3cca4
# we don't want -z defs linker flag
f3cca4
%undefine _strict_symbol_defs_build
f3cca4
f3cca4
%global pecl_name  xdebug
f3cca4
%global with_zts   0%{!?_without_zts:%{?__ztsphp:1}}
f3cca4
%global gh_commit  1f11f5a389cfcebf8e1ca64e092f75be9224abea
f3cca4
%global gh_short   %(c=%{gh_commit}; echo ${c:0:7})
f3cca4
# XDebug should be loaded after opcache
f3cca4
%global ini_name   15-%{pecl_name}.ini
f3cca4
%global with_tests 0%{!?_without_tests:1}
f3cca4
# version/release
f3cca4
%global upstream_version 2.9.5
f3cca4
#global upstream_prever  beta2
f3cca4
#global upstream_lower   beta2
f3cca4
f3cca4
Name:           php-pecl-xdebug
f3cca4
Summary:        PECL package for debugging PHP scripts
f3cca4
Version:        %{upstream_version}%{?upstream_prever:~%{upstream_lower}}
f3cca4
Release:        1%{?dist}
f3cca4
Source0:        https://github.com/%{pecl_name}/%{pecl_name}/archive/%{gh_commit}/%{pecl_name}-%{upstream_version}%{?upstream_prever}-%{gh_short}.tar.gz
f3cca4
f3cca4
# The Xdebug License, version 1.01
f3cca4
# (Based on "The PHP License", version 3.0)
f3cca4
License:        PHP
f3cca4
URL:            https://xdebug.org/
f3cca4
f3cca4
BuildRequires:  php-pear  > 1.9.1
f3cca4
BuildRequires:  php-devel > 7.1
f3cca4
BuildRequires:  php-simplexml
f3cca4
BuildRequires:  libedit-devel
f3cca4
BuildRequires:  libtool
f3cca4
f3cca4
Requires:       php(zend-abi) = %{php_zend_api}
f3cca4
Requires:       php(api) = %{php_core_api}
f3cca4
f3cca4
Provides:       php-%{pecl_name} = %{version}
f3cca4
Provides:       php-%{pecl_name}%{?_isa} = %{version}
f3cca4
Provides:       php-pecl(Xdebug) = %{version}
f3cca4
Provides:       php-pecl(Xdebug)%{?_isa} = %{version}
f3cca4
f3cca4
f3cca4
%description
f3cca4
The Xdebug extension helps you debugging your script by providing a lot of
f3cca4
valuable debug information. The debug information that Xdebug can provide
f3cca4
includes the following:
f3cca4
f3cca4
* stack and function traces in error messages with:
f3cca4
  o full parameter display for user defined functions
f3cca4
  o function name, file name and line indications
f3cca4
  o support for member functions
f3cca4
* memory allocation
f3cca4
* protection for infinite recursions
f3cca4
f3cca4
Xdebug also provides:
f3cca4
f3cca4
* profiling information for PHP scripts
f3cca4
* code coverage analysis
f3cca4
* capabilities to debug your scripts interactively with a debug client
f3cca4
f3cca4
Documentation: https://xdebug.org/docs/
f3cca4
f3cca4
f3cca4
%prep
f3cca4
%setup -qc
f3cca4
mv %{pecl_name}-%{gh_commit} NTS
f3cca4
mv NTS/package.xml .
f3cca4
f3cca4
sed -e '/LICENSE/s/role="doc"/role="src"/' -i package.xml
f3cca4
f3cca4
cd NTS
f3cca4
# Check extension version
f3cca4
ver=$(sed -n '/XDEBUG_VERSION/{s/.* "//;s/".*$//;p}' php_xdebug.h)
f3cca4
if test "$ver" != "%{upstream_version}%{?upstream_prever}%{?gh_date:-dev}"; then
f3cca4
   : Error: Upstream XDEBUG_VERSION version is ${ver}, expecting %{upstream_version}%{?upstream_perver}%{?gh_date:-dev}.
f3cca4
   exit 1
f3cca4
fi
f3cca4
cd ..
f3cca4
f3cca4
%if %{with_zts}
f3cca4
# Duplicate source tree for NTS / ZTS build
f3cca4
cp -pr NTS ZTS
f3cca4
%endif
f3cca4
f3cca4
cat << 'EOF' | tee %{ini_name}
f3cca4
; Enable xdebug extension module
f3cca4
zend_extension=%{pecl_name}.so
f3cca4
f3cca4
EOF
f3cca4
sed -e '1d' NTS/%{pecl_name}.ini >>%{ini_name}
f3cca4
f3cca4
f3cca4
%build
f3cca4
cd NTS
f3cca4
%{_bindir}/phpize
f3cca4
%configure \
f3cca4
    --enable-xdebug  \
f3cca4
    --with-php-config=%{_bindir}/php-config
f3cca4
make %{?_smp_mflags}
f3cca4
f3cca4
# Build debugclient
f3cca4
pushd debugclient
f3cca4
# buildconf required for aarch64 support
f3cca4
./buildconf
f3cca4
%configure --with-libedit
f3cca4
make %{?_smp_mflags}
f3cca4
popd
f3cca4
f3cca4
%if %{with_zts}
f3cca4
cd ../ZTS
f3cca4
%{_bindir}/zts-phpize
f3cca4
%configure \
f3cca4
    --enable-xdebug  \
f3cca4
    --with-php-config=%{_bindir}/zts-php-config
f3cca4
make %{?_smp_mflags}
f3cca4
%endif
f3cca4
f3cca4
f3cca4
%install
f3cca4
# install NTS extension
f3cca4
make -C NTS install INSTALL_ROOT=%{buildroot}
f3cca4
f3cca4
# install debugclient
f3cca4
install -Dpm 755 NTS/debugclient/debugclient \
f3cca4
        %{buildroot}%{_bindir}/debugclient
f3cca4
f3cca4
# install package registration file
f3cca4
install -Dpm 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
f3cca4
f3cca4
# install config file
f3cca4
install -Dpm 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
f3cca4
f3cca4
%if %{with_zts}
f3cca4
# Install ZTS extension
f3cca4
make -C ZTS install INSTALL_ROOT=%{buildroot}
f3cca4
f3cca4
install -Dpm 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name}
f3cca4
%endif
f3cca4
f3cca4
# Documentation
f3cca4
for i in $(grep 'role="doc"' package.xml | sed -e 's/^.*name="//;s/".*$//')
f3cca4
do
f3cca4
  [ -f NTS/contrib/$i ] && j=contrib/$i || j=$i
f3cca4
  install -Dpm 644 NTS/$j %{buildroot}%{pecl_docdir}/%{pecl_name}/$j
f3cca4
done
f3cca4
f3cca4
f3cca4
%check
f3cca4
# Shared needed extensions
f3cca4
modules=""
f3cca4
for mod in simplexml; do
f3cca4
  if [ -f %{php_extdir}/${mod}.so ]; then
f3cca4
    modules="$modules -d extension=${mod}.so"
f3cca4
  fi
f3cca4
done
f3cca4
f3cca4
# only check if build extension can be loaded
f3cca4
%{_bindir}/php \
f3cca4
    --no-php-ini \
f3cca4
    --define zend_extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \
f3cca4
    --modules | grep Xdebug
f3cca4
f3cca4
%if %{with_zts}
f3cca4
%{_bindir}/zts-php \
f3cca4
    --no-php-ini \
f3cca4
    --define zend_extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \
f3cca4
    --modules | grep Xdebug
f3cca4
%endif
f3cca4
f3cca4
%if %{with_tests}
f3cca4
cd NTS
f3cca4
f3cca4
: Upstream test suite NTS extension
f3cca4
# bug00886 is marked as slow as it uses a lot of disk space
f3cca4
TEST_OPTS="-q -x --show-diff"
f3cca4
f3cca4
TEST_PHP_EXECUTABLE=%{_bindir}/php \
f3cca4
TEST_PHP_ARGS="-n $modules -d zend_extension=%{buildroot}%{php_extdir}/%{pecl_name}.so -d xdebug.auto_trace=0 -d foo=yes" \
f3cca4
REPORT_EXIT_STATUS=1 \
f3cca4
%{__php} -n run-xdebug-tests.php $TEST_OPTS
f3cca4
%else
f3cca4
: Test suite disabled
f3cca4
%endif
f3cca4
f3cca4
f3cca4
%files
f3cca4
%license NTS/LICENSE
f3cca4
%doc %{pecl_docdir}/%{pecl_name}
f3cca4
%{_bindir}/debugclient
f3cca4
%{pecl_xmldir}/%{name}.xml
f3cca4
f3cca4
%config(noreplace) %{php_inidir}/%{ini_name}
f3cca4
%{php_extdir}/%{pecl_name}.so
f3cca4
f3cca4
%if %{with_zts}
f3cca4
%config(noreplace) %{php_ztsinidir}/%{ini_name}
f3cca4
%{php_ztsextdir}/%{pecl_name}.so
f3cca4
%endif
f3cca4
f3cca4
f3cca4
%changelog
f3cca4
* Thu May 14 2020 Remi Collet <rcollet@redhat.com> - 2.9.5-1
f3cca4
- update to 2.9.5
f3cca4
f3cca4
* Fri Nov 29 2019 Remi Collet <rcollet@redhat.com> - 2.8.0-1
f3cca4
- build for RHEL 8 #1769857
f3cca4
f3cca4
* Thu Oct 31 2019 Remi Collet <remi@remirepo.net> - 2.8.0-1
f3cca4
- update to 2.8.0
f3cca4
f3cca4
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.2-2
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
f3cca4
f3cca4
* Tue May  7 2019 Remi Collet <remi@remirepo.net> - 2.7.2-1
f3cca4
- update to 2.7.2
f3cca4
f3cca4
* Fri Apr  5 2019 Remi Collet <remi@remirepo.net> - 2.7.1-1
f3cca4
- update to 2.7.1
f3cca4
f3cca4
* Fri Mar 22 2019 Remi Collet <remi@remirepo.net> - 2.7.0-1
f3cca4
- update to 2.7.0 (stable)
f3cca4
f3cca4
* Thu Feb 21 2019 Remi Collet <remi@remirepo.net> - 2.7.0-0.3.RC2
f3cca4
- update to 2.7.0RC2
f3cca4
f3cca4
* Mon Feb  4 2019 Remi Collet <remi@remirepo.net> - 2.7.0-0.2.rc1
f3cca4
- update to 2.7.0RC1
f3cca4
f3cca4
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.0-0.1.beta1.1
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
f3cca4
f3cca4
* Fri Nov  2 2018 Remi Collet <remi@remirepo.net> - 2.7.0-0.1.beta1
f3cca4
- rebuild
f3cca4
f3cca4
* Fri Sep 21 2018 Remi Collet <remi@remirepo.net> - 2.7.0~beta1-1
f3cca4
- update to 2.7.0beta1
f3cca4
- add link to documentation in description and configuration file
f3cca4
- open https://github.com/xdebug/xdebug/pull/431 zif_handler in 7.2
f3cca4
f3cca4
* Fri Aug 17 2018 Remi Collet <remi@remirepo.net> - 2.6.1-1
f3cca4
- update to 2.6.1 (stable)
f3cca4
f3cca4
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-3
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
f3cca4
f3cca4
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-2
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f3cca4
f3cca4
* Tue Jan 30 2018 Remi Collet <remi@remirepo.net> - 2.6.0-1
f3cca4
- update to 2.6.0 (stable)
f3cca4
f3cca4
* Tue Jan 23 2018 Remi Collet <remi@remirepo.net> - 2.6.0-0.5.RC2
f3cca4
- update to 2.6.0RC2
f3cca4
- undefine _strict_symbol_defs_build
f3cca4
- temporarily ignore 6 failed tests on big endian
f3cca4
f3cca4
* Fri Dec 29 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.4.beta1
f3cca4
- update to 2.6.0beta1
f3cca4
f3cca4
* Sun Dec  3 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.3.alpha1
f3cca4
- update to 2.6.0alpha1
f3cca4
f3cca4
* Wed Oct 18 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.2.20171018.33ed33d
f3cca4
- refresh with upstream fix for big endian
f3cca4
- enable test suite
f3cca4
f3cca4
* Tue Oct  3 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.1.20170925.9da805c
f3cca4
- update to 2.6.0-dev for PHP 7.2
f3cca4
f3cca4
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.5-3
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
f3cca4
f3cca4
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.5-2
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f3cca4
f3cca4
* Thu Jun 22 2017 Remi Collet <remi@remirepo.net> - 2.5.5-1
f3cca4
- update to 2.5.5
f3cca4
f3cca4
* Mon May 15 2017 Remi Collet <remi@remirepo.net> - 2.5.4-1
f3cca4
- update to 2.5.4
f3cca4
f3cca4
* Mon Apr 24 2017 Remi Collet <remi@remirepo.net> - 2.5.3-1
f3cca4
- update to 2.5.3
f3cca4
f3cca4
* Mon Feb 27 2017 Remi Collet <remi@fedoraproject.org> - 2.5.1-2
f3cca4
- use uptream provided configuration with all settings
f3cca4
f3cca4
* Mon Feb 27 2017 Remi Collet <remi@fedoraproject.org> - 2.5.1-1
f3cca4
- update to 2.5.1
f3cca4
f3cca4
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.0-2
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
f3cca4
f3cca4
* Mon Dec  5 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-1
f3cca4
- update to 2.5.0
f3cca4
f3cca4
* Mon Nov 14 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-0.1.RC1
f3cca4
- update to 2.5.0RC1 for PHP 7.1
f3cca4
f3cca4
* Tue Aug  2 2016 Remi Collet <remi@fedoraproject.org> - 2.4.1-1
f3cca4
- update to 2.4.1
f3cca4
f3cca4
* Mon Jun 27 2016 Remi Collet <remi@fedoraproject.org> - 2.4.0-2
f3cca4
- rebuild for https://fedoraproject.org/wiki/Changes/php70
f3cca4
f3cca4
* Tue Mar  8 2016 Remi Collet <remi@fedoraproject.org> - 2.4.0-1
f3cca4
- update to 2.4.0
f3cca4
f3cca4
* Sat Feb 13 2016 Remi Collet <remi@fedoraproject.org> - 2.3.3-3
f3cca4
- drop scriptlets (replaced by file triggers in php-pear)
f3cca4
- cleanup
f3cca4
f3cca4
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-2
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f3cca4
f3cca4
* Fri Jun 19 2015 Remi Collet <remi@fedoraproject.org> - 2.3.3-1
f3cca4
- update to 2.3.3
f3cca4
- drop all patches, merged upstream
f3cca4
f3cca4
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-4
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f3cca4
f3cca4
* Fri May 29 2015 Remi Collet <remi@fedoraproject.org> - 2.3.2-3
f3cca4
- add patch for exception code change (for phpunit)
f3cca4
f3cca4
* Wed May 27 2015 Remi Collet <remi@fedoraproject.org> - 2.3.2-2
f3cca4
- add patch for efree/str_efree in php 5.6
f3cca4
- add patch for virtual_file_ex in 5.6 #1214111
f3cca4
f3cca4
* Sun Mar 22 2015 Remi Collet <remi@fedoraproject.org> - 2.3.2-1
f3cca4
- Update to 2.3.2
f3cca4
f3cca4
* Wed Feb 25 2015 Remi Collet <remi@fedoraproject.org> - 2.3.1-1
f3cca4
- Update to 2.3.1
f3cca4
f3cca4
* Mon Feb 23 2015 Remi Collet <remi@fedoraproject.org> - 2.3.0-1
f3cca4
- Update to 2.3.0
f3cca4
- raise minimum php version to 5.4
f3cca4
f3cca4
* Thu Jan 22 2015 Remi Collet <remi@fedoraproject.org> - 2.2.7-1
f3cca4
- Update to 2.2.7
f3cca4
f3cca4
* Sun Nov 16 2014 Remi Collet <remi@fedoraproject.org> - 2.2.6-1
f3cca4
- Update to 2.2.6 (stable)
f3cca4
f3cca4
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.5-4
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
f3cca4
f3cca4
* Thu Jun 19 2014 Remi Collet <rcollet@redhat.com> - 2.2.5-3
f3cca4
- rebuild for https://fedoraproject.org/wiki/Changes/Php56
f3cca4
f3cca4
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.5-2
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f3cca4
f3cca4
* Wed Apr 30 2014 Remi Collet <remi@fedoraproject.org> - 2.2.5-1
f3cca4
- Update to 2.2.5 (stable)
f3cca4
f3cca4
* Wed Apr 23 2014 Remi Collet <remi@fedoraproject.org> - 2.2.4-2
f3cca4
- add numerical prefix to extension configuration file
f3cca4
- drop uneeded full extension path
f3cca4
f3cca4
* Sun Mar 02 2014 Remi Collet <remi@fedoraproject.org> - 2.2.4-1
f3cca4
- Update to 2.2.4 (stable)
f3cca4
- move documentation in pecl_docdir
f3cca4
- cleanups
f3cca4
f3cca4
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.3-3
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
f3cca4
f3cca4
* Tue Jul 16 2013 Remi Collet <remi@fedoraproject.org> - 2.2.3-2
f3cca4
- adapt for SCL
f3cca4
f3cca4
* Wed May 22 2013 Remi Collet <remi@fedoraproject.org> - 2.2.3-1
f3cca4
- Update to 2.2.3
f3cca4
f3cca4
* Sun Mar 24 2013 Remi Collet <remi@fedoraproject.org> - 2.2.2-1
f3cca4
- update to 2.2.2 (stable)
f3cca4
- run buildconf for aarch64 support #926329
f3cca4
- modernize spec
f3cca4
f3cca4
* Fri Mar 22 2013 Remi Collet <rcollet@redhat.com> - 2.2.2-0.1.gitb1ce1e3
f3cca4
- update to 2.2.2dev for php 5.5
f3cca4
- rebuild for http://fedoraproject.org/wiki/Features/Php55
f3cca4
- also provides php-xdebug
f3cca4
f3cca4
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-3
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f3cca4
f3cca4
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-2
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f3cca4
f3cca4
* Tue Jul 17 2012 Remi Collet <remi@fedoraproject.org> - 2.2.1-1
f3cca4
- Update to 2.2.1
f3cca4
f3cca4
* Fri Jun 22 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-2
f3cca4
- upstream patch for upstream bug #838/#839/#840
f3cca4
f3cca4
* Wed May 09 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-1
f3cca4
- Update to 2.2.0
f3cca4
f3cca4
* Sun Apr 29 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.3.RC2
f3cca4
- Update to 2.2.0RC2
f3cca4
f3cca4
* Sat Mar 17 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.2.RC1
f3cca4
- update to 2.2.0RC1
f3cca4
- enable ZTS build
f3cca4
- fix License which is PHP, with some renaming
f3cca4
f3cca4
* Fri Jan 20 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.1.gitd076740
f3cca4
- update to 2.2.0-dev, build against php 5.4
f3cca4
f3cca4
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.2-2
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f3cca4
f3cca4
* Thu Jul 28 2011 Remi Collet <Fedora@FamilleCollet.com> - 2.1.2-1
f3cca4
- update to 2.1.2
f3cca4
- fix provides filter for rpm 4.9
f3cca4
- improved description
f3cca4
f3cca4
* Wed Mar 30 2011 Remi Collet <Fedora@FamilleCollet.com> - 2.1.1-1
f3cca4
- update to 2.1.1
f3cca4
- patch reported version
f3cca4
f3cca4
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-3
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f3cca4
f3cca4
* Sat Oct 23 2010 Remi Collet <Fedora@FamilleCollet.com> - 2.1.0-2
f3cca4
- add filter_provides to avoid private-shared-object-provides xdebug.so
f3cca4
- add %%check section (minimal load test)
f3cca4
- always use libedit
f3cca4
f3cca4
* Tue Jun 29 2010 Remi Collet <Fedora@FamilleCollet.com> - 2.1.0-1
f3cca4
- update to 2.1.0
f3cca4
f3cca4
* Mon Sep 14 2009 Christopher Stone <chris.stone@gmail.com> 2.0.5-1
f3cca4
- Upstream sync
f3cca4
f3cca4
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-2
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f3cca4
f3cca4
* Sun Jul 12 2009 Remi Collet <Fedora@FamilleCollet.com> - 2.0.4-1
f3cca4
- update to 2.0.4 (bugfix + Basic PHP 5.3 support)
f3cca4
f3cca4
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-5
f3cca4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f3cca4
f3cca4
* Thu Oct 09 2008 Christopher Stone <chris.stone@gmail.com> 2.0.3-4
f3cca4
- Add code coverage patch (bz #460348)
f3cca4
- http://bugs.xdebug.org/bug_view_page.php?bug_id=0000344
f3cca4
f3cca4
* Thu Oct 09 2008 Christopher Stone <chris.stone@gmail.com> 2.0.3-3
f3cca4
- Revert last change
f3cca4
f3cca4
* Thu Oct 09 2008 Christopher Stone <chris.stone@gmail.com> 2.0.3-2
f3cca4
- Add php-xml to Requires (bz #464758)
f3cca4
f3cca4
* Thu May 22 2008 Christopher Stone <chris.stone@gmail.com> 2.0.3-1
f3cca4
- Upstream sync
f3cca4
- Clean up libedit usage
f3cca4
- Minor rpmlint fix
f3cca4
f3cca4
* Sun Mar 02 2008 Christopher Stone <chris.stone@gmail.com> 2.0.2-4
f3cca4
- Add %%{__pecl} to post/postun Requires
f3cca4
f3cca4
* Fri Feb 22 2008 Christopher Stone <chris.stone@gmail.com> 2.0.2-3
f3cca4
- %%define %%pecl_name to properly register package
f3cca4
- Install xml package description
f3cca4
- Add debugclient
f3cca4
- Many thanks to Edward Rudd (eddie@omegaware.com) (bz #432681)
f3cca4
f3cca4
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.2-2
f3cca4
- Autorebuild for GCC 4.3
f3cca4
f3cca4
* Sun Nov 25 2007 Christopher Stone <chris.stone@gmail.com> 2.0.2-1
f3cca4
- Upstream sync
f3cca4
f3cca4
* Sun Sep 30 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-2
f3cca4
- Update to latest standards
f3cca4
- Fix encoding on Changelog
f3cca4
f3cca4
* Sat Sep 08 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-1
f3cca4
- Upstream sync
f3cca4
- Remove %%{?beta} tags
f3cca4
f3cca4
* Sun Mar 11 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.5.RC2
f3cca4
- Create directory to untar sources
f3cca4
- Use new ABI check for FC6
f3cca4
- Remove %%{release} from Provides
f3cca4
f3cca4
* Mon Jan 29 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.4.RC2
f3cca4
- Compile with $RPM_OPT_FLAGS
f3cca4
- Use $RPM_BUILD_ROOT instead of %%{buildroot}
f3cca4
- Fix license tag
f3cca4
f3cca4
* Mon Jan 15 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.3.RC2
f3cca4
- Upstream sync
f3cca4
f3cca4
* Sun Oct 29 2006 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.2.RC1
f3cca4
- Upstream sync
f3cca4
f3cca4
* Wed Sep 06 2006 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.1.beta6
f3cca4
- Remove Provides php-xdebug
f3cca4
- Fix Release
f3cca4
- Remove prior changelog due to Release number change