63aebc
# Fedora spec file for php-pecl-xdebug3
63aebc
#
63aebc
# Copyright (c) 2010-2021 Remi Collet
63aebc
# Copyright (c) 2006-2009 Christopher Stone
63aebc
#
63aebc
# License: MIT
63aebc
# http://opensource.org/licenses/MIT
63aebc
#
63aebc
# Please, preserve the changelog entries
63aebc
#
63aebc
63aebc
%bcond_without      tests
63aebc
63aebc
# we don't want -z defs linker flag
63aebc
%undefine _strict_symbol_defs_build
63aebc
63aebc
%global pecl_name  xdebug
63aebc
%global with_zts   0%{!?_without_zts:%{?__ztsphp:1}}
63aebc
%global gh_commit  52911afee0d66f4569d71d25bb9532c8fab9d5f5
63aebc
%global gh_short   %(c=%{gh_commit}; echo ${c:0:7})
63aebc
63aebc
# version/release
63aebc
%global upstream_version 3.1.2
63aebc
#global upstream_prever  RC1
63aebc
#global upstream_lower   rc1
63aebc
63aebc
# XDebug should be loaded after opcache
63aebc
%global ini_name  15-%{pecl_name}.ini
63aebc
63aebc
Name:           php-pecl-xdebug3
63aebc
Summary:        Provides functions for function traces and profiling
63aebc
Version:        %{upstream_version}%{?upstream_prever:~%{upstream_lower}}
63aebc
Release:        1%{?dist}
63aebc
Source0:        https://github.com/%{pecl_name}/%{pecl_name}/archive/%{gh_commit}/%{pecl_name}-%{upstream_version}%{?upstream_prever}-%{gh_short}.tar.gz
63aebc
63aebc
# The Xdebug License, version 1.01
63aebc
# (Based on "The PHP License", version 3.0)
63aebc
License:        BSD
63aebc
URL:            https://xdebug.org/
63aebc
63aebc
BuildRequires:  gcc
63aebc
BuildRequires:  make
63aebc
BuildRequires:  php-devel >= 7.2
63aebc
BuildRequires:  php-pear
63aebc
BuildRequires:  php-simplexml
63aebc
BuildRequires:  libtool
63aebc
BuildRequires:  php-soap
63aebc
63aebc
Requires:       php(zend-abi) = %{php_zend_api}
63aebc
Requires:       php(api) = %{php_core_api}
63aebc
63aebc
Provides:       php-%{pecl_name}              = %{version}
63aebc
Provides:       php-%{pecl_name}%{?_isa}      = %{version}
63aebc
Provides:       php-pecl(Xdebug)              = %{version}
63aebc
Provides:       php-pecl(Xdebug)%{?_isa}      = %{version}
63aebc
63aebc
%if 0%{?fedora} >= 35 || 0%{?rhel} >= 9 || "%{php_version}" > "8.0"
63aebc
Obsoletes:     php-pecl-%{pecl_name}          < 3
63aebc
Provides:      php-pecl-%{pecl_name}          = %{version}-%{release}
63aebc
Provides:      php-pecl-%{pecl_name}%{?_isa}  = %{version}-%{release}
63aebc
%else
63aebc
# A single version can be installed
63aebc
Conflicts:     php-pecl-%{pecl_name}          < 3
63aebc
%endif
63aebc
63aebc
%description
63aebc
The Xdebug extension helps you debugging your script by providing a lot of
63aebc
valuable debug information. The debug information that Xdebug can provide
63aebc
includes the following:
63aebc
63aebc
* stack and function traces in error messages with:
63aebc
  o full parameter display for user defined functions
63aebc
  o function name, file name and line indications
63aebc
  o support for member functions
63aebc
* memory allocation
63aebc
* protection for infinite recursions
63aebc
63aebc
Xdebug also provides:
63aebc
63aebc
* profiling information for PHP scripts
63aebc
* code coverage analysis
63aebc
* capabilities to debug your scripts interactively with a debug client
63aebc
63aebc
Documentation: https://xdebug.org/docs/
63aebc
63aebc
63aebc
%prep
63aebc
%setup -qc
63aebc
mv %{pecl_name}-%{gh_commit} NTS
63aebc
mv NTS/package.xml .
63aebc
63aebc
sed -e '/LICENSE/s/role="doc"/role="src"/' -i package.xml
63aebc
63aebc
cd NTS
63aebc
# ignore tests relying on DNS
63aebc
find tests -type f -exec grep -q 'xdebug.client_host=' {} \; -delete -print
63aebc
# ignore test with erratic result
63aebc
rm tests/debugger/start_with_request_default_no_env.phpt
63aebc
63aebc
# Check extension version
63aebc
ver=$(sed -n '/XDEBUG_VERSION/{s/.* "//;s/".*$//;p}' php_xdebug.h)
63aebc
if test "$ver" != "%{upstream_version}%{?upstream_prever}%{?gh_date:-dev}"; then
63aebc
   : Error: Upstream XDEBUG_VERSION version is ${ver}, expecting %{upstream_version}%{?upstream_perver}%{?gh_date:-dev}.
63aebc
   exit 1
63aebc
fi
63aebc
cd ..
63aebc
63aebc
%if %{with_zts}
63aebc
# Duplicate source tree for NTS / ZTS build
63aebc
cp -pr NTS ZTS
63aebc
%endif
63aebc
63aebc
cat << 'EOF' | tee %{ini_name}
63aebc
; Enable xdebug extension module
63aebc
zend_extension=%{pecl_name}.so
63aebc
63aebc
; Configuration
63aebc
; See https://xdebug.org/docs/all_settings
63aebc
63aebc
EOF
63aebc
sed -e '1d' NTS/%{pecl_name}.ini >>%{ini_name}
63aebc
63aebc
63aebc
%build
63aebc
cd NTS
63aebc
%{_bindir}/phpize
63aebc
%configure \
63aebc
    --enable-xdebug  \
63aebc
    --with-php-config=%{_bindir}/php-config
63aebc
make %{?_smp_mflags}
63aebc
63aebc
%if %{with_zts}
63aebc
cd ../ZTS
63aebc
%{_bindir}/zts-phpize
63aebc
%configure \
63aebc
    --enable-xdebug  \
63aebc
    --with-php-config=%{_bindir}/zts-php-config
63aebc
make %{?_smp_mflags}
63aebc
%endif
63aebc
63aebc
63aebc
%install
63aebc
# install NTS extension
63aebc
make -C NTS install INSTALL_ROOT=%{buildroot}
63aebc
63aebc
# install package registration file
63aebc
install -Dpm 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
63aebc
63aebc
# install config file
63aebc
install -Dpm 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
63aebc
63aebc
%if %{with_zts}
63aebc
# Install ZTS extension
63aebc
make -C ZTS install INSTALL_ROOT=%{buildroot}
63aebc
63aebc
install -Dpm 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name}
63aebc
%endif
63aebc
63aebc
# Documentation
63aebc
for i in $(grep 'role="doc"' package.xml | sed -e 's/^.*name="//;s/".*$//')
63aebc
do
63aebc
  [ -f NTS/contrib/$i ] && j=contrib/$i || j=$i
63aebc
  install -Dpm 644 NTS/$j %{buildroot}%{pecl_docdir}/%{pecl_name}/$j
63aebc
done
63aebc
63aebc
63aebc
%check
63aebc
# Shared needed extensions
63aebc
modules=""
63aebc
for mod in simplexml; do
63aebc
  if [ -f %{php_extdir}/${mod}.so ]; then
63aebc
    modules="$modules -d extension=${mod}.so"
63aebc
  fi
63aebc
done
63aebc
63aebc
# only check if build extension can be loaded
63aebc
%{_bindir}/php \
63aebc
    --no-php-ini \
63aebc
    --define zend_extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \
63aebc
    --modules | grep Xdebug
63aebc
63aebc
%if %{with_zts}
63aebc
%{_bindir}/zts-php \
63aebc
    --no-php-ini \
63aebc
    --define zend_extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \
63aebc
    --modules | grep Xdebug
63aebc
%endif
63aebc
63aebc
%if %{with tests}
63aebc
cd NTS
63aebc
: Upstream test suite NTS extension
63aebc
63aebc
%ifarch %{ix86}
63aebc
# see https://bugs.xdebug.org/view.php?id=2048
63aebc
rm tests/base/bug02036.phpt
63aebc
%endif
63aebc
63aebc
# bug00886 is marked as slow as it uses a lot of disk space
63aebc
TEST_OPTS="-q -x --show-diff"
63aebc
63aebc
TEST_PHP_EXECUTABLE=%{_bindir}/php \
63aebc
TEST_PHP_ARGS="-n $modules -d zend_extension=%{buildroot}%{php_extdir}/%{pecl_name}.so" \
63aebc
REPORT_EXIT_STATUS=1 \
63aebc
%{__php} -n run-xdebug-tests.php $TEST_OPTS
63aebc
%else
63aebc
: Test suite disabled
63aebc
%endif
63aebc
63aebc
63aebc
%files
63aebc
%license NTS/LICENSE
63aebc
%doc %{pecl_docdir}/%{pecl_name}
63aebc
%{pecl_xmldir}/%{name}.xml
63aebc
63aebc
%config(noreplace) %{php_inidir}/%{ini_name}
63aebc
%{php_extdir}/%{pecl_name}.so
63aebc
63aebc
%if %{with_zts}
63aebc
%config(noreplace) %{php_ztsinidir}/%{ini_name}
63aebc
%{php_ztsextdir}/%{pecl_name}.so
63aebc
%endif
63aebc
63aebc
63aebc
%changelog
63aebc
* Fri Dec 10 2021 Remi Collet <rcollet@redhat.com> - 3.1.2-1
63aebc
- update to 3.1.2 rhbz#2030322
63aebc
63aebc
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.0.4-5
63aebc
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
63aebc
  Related: rhbz#1991688
63aebc
63aebc
* Thu Jul  8 2021 Remi Collet <rcollet@redhat.com> - 3.0.4-4
63aebc
- ignore tests relying on DNS #1979841
63aebc
63aebc
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 3.0.4-2
63aebc
- Rebuilt for RHEL 9 BETA for openssl 3.0
63aebc
  Related: rhbz#1971065
63aebc
63aebc
* Thu Apr  8 2021 Remi Collet <remi@remirepo.net> - 3.0.4-1
63aebc
- update to 3.0.4
63aebc
63aebc
* Thu Mar  4 2021 Remi Collet <remi@remirepo.net> - 3.0.3-2
63aebc
- rebuild for https://fedoraproject.org/wiki/Changes/php80
63aebc
63aebc
* Mon Feb 22 2021 Remi Collet <remi@remirepo.net> - 3.0.3-1
63aebc
- update to 3.0.3
63aebc
63aebc
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-2
63aebc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
63aebc
63aebc
* Tue Jan  5 2021 Remi Collet <remi@remirepo.net> - 3.0.2-1
63aebc
- update to 3.0.2
63aebc
63aebc
* Mon Dec  7 2020 Remi Collet <remi@remirepo.net> - 3.0.1-1
63aebc
- update to 3.0.1
63aebc
63aebc
* Wed Nov 25 2020 Remi Collet <remi@remirepo.net> - 3.0.0-1
63aebc
- update to 3.0.0 (stable)
63aebc
63aebc
* Sun Nov 15 2020 Remi Collet <remi@remirepo.net> - 3.0.0~rc1-1
63aebc
- update to 3.0.0RC1
63aebc
63aebc
* Thu Oct 15 2020 Remi Collet <remi@remirepo.net> - 3.0.0~beta1-1
63aebc
- update to 3.0.0beta1
63aebc
- rename to php-pecl-xdebug3 for new API
63aebc
- debugclient dropped upstream
63aebc
- raise dependency on PHP 7.2
63aebc
63aebc
* Mon Sep 28 2020 Remi Collet <remi@remirepo.net> - 2.9.8-1
63aebc
- update to 2.9.8
63aebc
63aebc
* Wed Sep 16 2020 Remi Collet <remi@remirepo.net> - 2.9.7-1
63aebc
- update to 2.9.7
63aebc
63aebc
* Sat May 30 2020 Remi Collet <remi@remirepo.net> - 2.9.6-1
63aebc
- update to 2.9.6
63aebc
63aebc
* Tue May  5 2020 Remi Collet <remi@remirepo.net> - 2.9.5-2
63aebc
- rebuild for https://github.com/remicollet/remirepo/issues/146
63aebc
63aebc
* Sun Apr 26 2020 Remi Collet <remi@remirepo.net> - 2.9.5-1
63aebc
- update to 2.9.5
63aebc
63aebc
* Mon Mar 23 2020 Remi Collet <remi@remirepo.net> - 2.9.4-1
63aebc
- update to 2.9.4
63aebc
63aebc
* Sat Mar 14 2020 Remi Collet <remi@remirepo.net> - 2.9.3-1
63aebc
- update to 2.9.3
63aebc
63aebc
* Fri Jan 31 2020 Remi Collet <remi@remirepo.net> - 2.9.2-1
63aebc
- update to 2.9.2
63aebc
63aebc
* Thu Jan 16 2020 Remi Collet <remi@remirepo.net> - 2.9.1-1
63aebc
- update to 2.9.1
63aebc
- raise dependency on PHP 7.1
63aebc
63aebc
* Mon Dec  9 2019 Remi Collet <remi@remirepo.net> - 2.9.0-1
63aebc
- update to 2.9.0
63aebc
63aebc
* Mon Dec  2 2019 Remi Collet <remi@remirepo.net> - 2.8.1-1
63aebc
- update to 2.8.1
63aebc
63aebc
* Thu Oct 31 2019 Remi Collet <remi@remirepo.net> - 2.8.0-1
63aebc
- update to 2.8.0
63aebc
63aebc
* Tue Sep 03 2019 Remi Collet <remi@remirepo.net> - 2.8.0~beta2-2
63aebc
- rebuild for 7.4.0RC1
63aebc
63aebc
* Tue Aug 27 2019 Remi Collet <remi@remirepo.net> - 2.8.0~beta2-1
63aebc
- update to 2.8.0beta2
63aebc
63aebc
* Fri Jul 26 2019 Remi Collet <remi@remirepo.net> - 2.8.0~beta1-1
63aebc
- update to 2.8.0beta1
63aebc
63aebc
* Sat Jun 29 2019 Remi Collet <remi@remirepo.net> - 2.8.0~alpha1-1
63aebc
- update to 2.8.0alpha1
63aebc
63aebc
* Fri Jun 14 2019 Remi Collet <remi@remirepo.net> - 2.8.0~DEV-1.20190614.01167bd
63aebc
- refresh with PR merged
63aebc
63aebc
* Thu Jun 13 2019 Remi Collet <remi@remirepo.net> - 2.8.0~DEV-1.20190613.4ae1efe
63aebc
- update to 2.8.0-dev for PHP 7.4
63aebc
63aebc
* Wed May 29 2019 Remi Collet <remi@remirepo.net> - 2.7.2-2
63aebc
- rebuild
63aebc
63aebc
* Tue May  7 2019 Remi Collet <remi@remirepo.net> - 2.7.2-1
63aebc
- update to 2.7.2
63aebc
63aebc
* Fri Apr  5 2019 Remi Collet <remi@remirepo.net> - 2.7.1-1
63aebc
- update to 2.7.1
63aebc
63aebc
* Thu Mar  7 2019 Remi Collet <remi@remirepo.net> - 2.7.0-1
63aebc
- update to 2.7.0 (stable)
63aebc
63aebc
* Sat Feb 16 2019 Remi Collet <remi@remirepo.net> - 2.7.0~rc2-1
63aebc
- update to 2.7.0RC2
63aebc
63aebc
* Sat Feb  2 2019 Remi Collet <remi@remirepo.net> - 2.7.0~rc1-1
63aebc
- update to 2.7.0RC1
63aebc
63aebc
* Thu Jan 17 2019 Remi Collet <remi@remirepo.net> - 2.7.0~beta1-2
63aebc
- fix SCL dependency
63aebc
63aebc
* Fri Sep 21 2018 Remi Collet <remi@remirepo.net> - 2.7.0~beta1-1
63aebc
- update to 2.7.0beta1
63aebc
- add link to documentation in description and configuration file
63aebc
- open https://github.com/xdebug/xdebug/pull/431 zif_handler in 7.2
63aebc
63aebc
* Tue Apr  3 2018 Remi Collet <remi@remirepo.net> - 2.7.0~alpha1-2
63aebc
- test build for https://github.com/xdebug/xdebug/pull/419
63aebc
63aebc
* Mon Apr  2 2018 Remi Collet <remi@remirepo.net> - 2.7.0~alpha1-1
63aebc
- update to 2.7.0alpha1
63aebc
63aebc
* Tue Jan 30 2018 Remi Collet <remi@remirepo.net> - 2.6.0-1
63aebc
- update to 2.6.0 (stable)
63aebc
63aebc
* Mon Jan 29 2018 Remi Collet <remi@remirepo.net> - 2.6.0-0.12.RC2
63aebc
- Add upstream patch for bigendian
63aebc
63aebc
* Tue Jan 23 2018 Remi Collet <remi@remirepo.net> - 2.6.0-0.11.RC2
63aebc
- update to 2.6.0RC2
63aebc
63aebc
* Fri Dec 29 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.10.beta1
63aebc
- update to 2.6.0beta1
63aebc
63aebc
* Sun Dec  3 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.9.alpha1
63aebc
- update to 2.6.0alpha1
63aebc
63aebc
* Mon Nov 13 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.8.20171112.f7a08bc
63aebc
- refresh
63aebc
63aebc
* Wed Oct 18 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.7.20171018.33ed33d
63aebc
- refresh with upstream fix for big endian
63aebc
63aebc
* Wed Oct 18 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.6.20171017.89ea903
63aebc
- refresh and fix test suite
63aebc
- enable test suite
63aebc
63aebc
* Mon Oct  2 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.5.20170925.9da805c
63aebc
- rebuild
63aebc
63aebc
* Tue Jul 18 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.4.20170601.d82879d
63aebc
- rebuild for PHP 7.2.0beta1 new API
63aebc
63aebc
* Wed Jun 21 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.3.20170601.d82879d
63aebc
- add patch for 7.2.0alpha3 from
63aebc
  https://github.com/xdebug/xdebug/pull/359
63aebc
63aebc
* Wed Jun 21 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.2.20170601.d82879d
63aebc
- rebuild for 7.2.0alpha2
63aebc
63aebc
* Thu Jun 15 2017 Remi Collet <remi@remirepo.net> - 2.6.0-0.1.20170601.d82879d
63aebc
- update to 2.6.0-dev for PHP 7.2
63aebc
- raise dependency on PHP 7
63aebc
63aebc
* Mon May 15 2017 Remi Collet <remi@remirepo.net> - 2.5.4-1
63aebc
- update to 2.5.4
63aebc
63aebc
* Mon May  1 2017 Remi Collet <remi@remirepo.net> - 2.5.3-2
63aebc
- add upstream patch for https://bugs.xdebug.org/view.php?id=1424
63aebc
63aebc
* Fri Apr 21 2017 Remi Collet <remi@remirepo.net> - 2.5.3-1
63aebc
- update to 2.5.3
63aebc
63aebc
* Mon Feb 27 2017 Remi Collet <remi@fedoraproject.org> - 2.5.1-2
63aebc
- use uptream provided configuration with all settings
63aebc
63aebc
* Sun Feb 26 2017 Remi Collet <remi@fedoraproject.org> - 2.5.1-1
63aebc
- Update to 2.5.1
63aebc
63aebc
* Mon Dec  5 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-1
63aebc
- update to 2.5.0
63aebc
63aebc
* Thu Dec  1 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-0.7.rc1
63aebc
- rebuild with PHP 7.1.0 GA
63aebc
63aebc
* Sat Nov 12 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-0.6.rc1
63aebc
- update to 2.5.0RC1
63aebc
63aebc
* Wed Oct 12 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-0.5.20161004git81181b4
63aebc
- new snapshot of 2.5.0-dev
63aebc
63aebc
* Wed Sep 14 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-0.4.20160731git9fe2994
63aebc
- rebuild for PHP 7.1 new API version
63aebc
63aebc
* Tue Aug  2 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-0.3.20160731git9fe2994
63aebc
- new snapshot of 2.5.0-dev
63aebc
63aebc
* Fri Jul 29 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-0.2.20160705git62b3733
63aebc
- new snapshot of 2.5.0-dev
63aebc
63aebc
* Fri Jun 10 2016 Remi Collet <remi@fedoraproject.org> - 2.5.0-0.1.20160529git78fa98b
63aebc
- update to 2.5.0-dev for PHP 7.1
63aebc
63aebc
* Fri Mar  4 2016 Remi Collet <remi@fedoraproject.org> - 2.4.0-1
63aebc
- update to 2.4.0
63aebc
63aebc
* Wed Jan 27 2016 Remi Collet <remi@fedoraproject.org> - 2.4.0-0.8.RC4
63aebc
- update to 2.4.0RC4
63aebc
63aebc
* Sun Dec 13 2015 Remi Collet <remi@fedoraproject.org> - 2.4.0-0.7.RC3
63aebc
- update to 2.4.0RC3
63aebc
63aebc
* Thu Dec  3 2015 Remi Collet <remi@fedoraproject.org> - 2.4.0-0.6.RC2
63aebc
- update to 2.4.0RC2
63aebc
63aebc
* Wed Nov 25 2015 Remi Collet <remi@fedoraproject.org> - 2.4.0-0.5.RC1
63aebc
- update to 2.4.0RC1
63aebc
63aebc
* Thu Nov 19 2015 Remi Collet <remi@fedoraproject.org> - 2.4.0-0.4.20151118git7e4523e
63aebc
- git snapshot, fix segfault with create_function
63aebc
63aebc
* Mon Nov  9 2015 Remi Collet <remi@fedoraproject.org> - 2.4.0-0.2.beta1
63aebc
- add 1 upstream patch (segfault in code coverage)
63aebc
  http://bugs.xdebug.org/view.php?id=1195
63aebc
63aebc
* Thu Nov  5 2015 Remi Collet <remi@fedoraproject.org> - 2.4.0-0.1.beta1
63aebc
- update to 2.4.0beta1
63aebc
63aebc
* Fri Jun 19 2015 Remi Collet <remi@fedoraproject.org> - 2.3.3-1
63aebc
- update to 2.3.3
63aebc
- drop all patches, merged upstream
63aebc
63aebc
* Fri May 29 2015 Remi Collet <remi@fedoraproject.org> - 2.3.2-5
63aebc
- sources from github, with test suite
63aebc
- run test suite when build using "--with tests" option
63aebc
- add upstream patch to fix crash when another extension calls
63aebc
  call_user_function() during RINIT (e.g. phk)
63aebc
63aebc
* Fri May 29 2015 Remi Collet <remi@fedoraproject.org> - 2.3.2-4
63aebc
- add patch for exception code change (for phpunit)
63aebc
63aebc
* Wed May 27 2015 Remi Collet <remi@fedoraproject.org> - 2.3.2-3
63aebc
- add patch for efree/str_efree in php 5.6
63aebc
63aebc
* Wed Apr 22 2015 Remi Collet <remi@fedoraproject.org> - 2.3.2-2
63aebc
- add patch for virtual_file_ex in 5.6 #1214111
63aebc
63aebc
* Sun Mar 22 2015 Remi Collet <remi@fedoraproject.org> - 2.3.2-1
63aebc
- Update to 2.3.2
63aebc
63aebc
* Wed Feb 25 2015 Remi Collet <remi@fedoraproject.org> - 2.3.1-1
63aebc
- Update to 2.3.1
63aebc
63aebc
* Mon Feb 23 2015 Remi Collet <remi@fedoraproject.org> - 2.3.0-1
63aebc
- Update to 2.3.0
63aebc
- raise minimum php version to 5.4
63aebc
63aebc
* Fri Jan 23 2015 Remi Collet <remi@fedoraproject.org> - 2.2.7-2
63aebc
- fix %%postun scriplet
63aebc
63aebc
* Thu Jan 22 2015 Remi Collet <remi@fedoraproject.org> - 2.2.7-1
63aebc
- Update to 2.2.7
63aebc
- drop runtime dependency on pear, new scriptlets
63aebc
63aebc
* Wed Dec 24 2014 Remi Collet <remi@fedoraproject.org> - 2.2.6-3.1
63aebc
- Fedora 21 SCL mass rebuild
63aebc
63aebc
* Wed Dec  3 2014 Remi Collet <remi@fedoraproject.org> - 2.2.6-3
63aebc
- more upstream patch
63aebc
63aebc
* Wed Dec  3 2014 Remi Collet <remi@fedoraproject.org> - 2.2.6-2
63aebc
- add upstream patch for couchbase compatibility
63aebc
  see http://bugs.xdebug.org/view.php?id=1087
63aebc
63aebc
* Sun Nov 16 2014 Remi Collet <remi@fedoraproject.org> - 2.2.6-1
63aebc
- Update to 2.2.6 (stable)
63aebc
63aebc
* Mon Aug 25 2014 Remi Collet <rcollet@redhat.com> - 2.2.5-2
63aebc
- improve SCL build
63aebc
63aebc
* Wed Apr 30 2014 Remi Collet <remi@fedoraproject.org> - 2.2.5-1
63aebc
- Update to 2.2.5 (stable)
63aebc
63aebc
* Wed Apr  9 2014 Remi Collet <remi@fedoraproject.org> - 2.2.4-3
63aebc
- add numerical prefix to extension configuration file
63aebc
- drop uneeded full extension path
63aebc
63aebc
* Wed Mar 19 2014 Remi Collet <rcollet@redhat.com> - 2.2.4-2
63aebc
- allow SCL build
63aebc
63aebc
* Sun Mar 02 2014 Remi Collet <remi@fedoraproject.org> - 2.2.4-1
63aebc
- Update to 2.2.4 (stable)
63aebc
- move documentation in pecl_docdir
63aebc
63aebc
* Wed May 22 2013 Remi Collet <remi@fedoraproject.org> - 2.2.3-1
63aebc
- Update to 2.2.3
63aebc
63aebc
* Sun Mar 24 2013 Remi Collet <remi@fedoraproject.org> - 2.2.2-1
63aebc
- update to 2.2.2 (stable)
63aebc
63aebc
* Mon Mar 18 2013 Remi Collet <remi@fedoraproject.org> - 2.2.2-0.5.gitb1ce1e3
63aebc
- new snapshot
63aebc
63aebc
* Fri Jan 18 2013 Remi Collet <remi@fedoraproject.org> - 2.2.2-0.4.gitb44a72a
63aebc
- new snapshot
63aebc
- drop our patch, merged upstream
63aebc
63aebc
* Thu Jan  3 2013 Remi Collet <remi@fedoraproject.org> - 2.2.2-0.3.gite1b9127
63aebc
- new snapshot
63aebc
- add patch, see https://github.com/xdebug/xdebug/pull/51
63aebc
63aebc
* Fri Nov 30 2012 Remi Collet <remi@fedoraproject.org> - 2.2.2-0.2.gite773b090fc
63aebc
- rebuild with new php 5.5 snaphost with zend_execute_ex
63aebc
63aebc
* Fri Nov 30 2012 Remi Collet <remi@fedoraproject.org> - 2.2.2-0.1.gite773b090fc
63aebc
- update to git snapshot for php 5.5
63aebc
- also provides php-xdebug
63aebc
63aebc
* Sun Sep  9 2012 Remi Collet <remi@fedoraproject.org> - 2.2.1-2
63aebc
- sync with rawhide, cleanups
63aebc
- obsoletes php53*, php54*
63aebc
63aebc
* Tue Jul 17 2012 Remi Collet <remi@fedoraproject.org> - 2.2.1-1
63aebc
- Update to 2.2.1
63aebc
63aebc
* Fri Jun 22 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-2
63aebc
- upstream patch for upstream bug #838/#839/#840
63aebc
63aebc
* Wed May 09 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-1
63aebc
- Update to 2.2.0
63aebc
63aebc
* Sat Apr 28 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.7.RC2
63aebc
- Update to 2.2.0RC2
63aebc
63aebc
* Wed Mar 14 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.6.RC1
63aebc
- Update to 2.2.0RC1
63aebc
63aebc
* Sun Mar 11 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.5.git8d9993b
63aebc
- new git snapshot
63aebc
63aebc
* Sat Jan 28 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.4.git7e971c4
63aebc
- new git snapshot
63aebc
- fix version reported by pecl list
63aebc
63aebc
* Fri Jan 20 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.3.git758d962
63aebc
- new git snapshot
63aebc
63aebc
* Sun Dec 11 2011 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.2.gitd076740
63aebc
- new git snapshot
63aebc
63aebc
* Sun Nov 13 2011 Remi Collet <remi@fedoraproject.org> - 2.2.0-0.1.git535df90
63aebc
- update to 2.2.0-dev, build against php 5.4
63aebc
63aebc
* Tue Oct 04 2011 Remi Collet <Fedora@FamilleCollet.com> - 2.1.2-2
63aebc
- ZTS extension
63aebc
- spec cleanups
63aebc
63aebc
* Thu Jul 28 2011 Remi Collet <Fedora@FamilleCollet.com> - 2.1.2-1
63aebc
- update to 2.1.2
63aebc
- fix provides filter for rpm 4.9
63aebc
- improved description
63aebc
63aebc
* Wed Mar 30 2011 Remi Collet <RPMS@FamilleCollet.com> - 2.1.1-1
63aebc
- allow relocation
63aebc
63aebc
* Wed Mar 30 2011 Remi Collet <Fedora@FamilleCollet.com> - 2.1.1-1
63aebc
- update to 2.1.1
63aebc
- patch reported version
63aebc
63aebc
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-3
63aebc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
63aebc
63aebc
* Sat Oct 23 2010 Remi Collet <Fedora@FamilleCollet.com> - 2.1.0-2
63aebc
- add filter_provides to avoid private-shared-object-provides xdebug.so
63aebc
- add %%check section (minimal load test)
63aebc
- always use libedit
63aebc
63aebc
* Tue Jun 29 2010 Remi Collet <Fedora@FamilleCollet.com> - 2.1.0-1
63aebc
- update to 2.1.0
63aebc
63aebc
* Mon Sep 14 2009 Christopher Stone <chris.stone@gmail.com> 2.0.5-1
63aebc
- Upstream sync
63aebc
63aebc
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-2
63aebc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
63aebc
63aebc
* Sun Jul 12 2009 Remi Collet <Fedora@FamilleCollet.com> - 2.0.4-1
63aebc
- update to 2.0.4 (bugfix + Basic PHP 5.3 support)
63aebc
63aebc
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-5
63aebc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
63aebc
63aebc
* Thu Oct 09 2008 Christopher Stone <chris.stone@gmail.com> 2.0.3-4
63aebc
- Add code coverage patch (bz #460348)
63aebc
- http://bugs.xdebug.org/bug_view_page.php?bug_id=0000344
63aebc
63aebc
* Thu Oct 09 2008 Christopher Stone <chris.stone@gmail.com> 2.0.3-3
63aebc
- Revert last change
63aebc
63aebc
* Thu Oct 09 2008 Christopher Stone <chris.stone@gmail.com> 2.0.3-2
63aebc
- Add php-xml to Requires (bz #464758)
63aebc
63aebc
* Thu May 22 2008 Christopher Stone <chris.stone@gmail.com> 2.0.3-1
63aebc
- Upstream sync
63aebc
- Clean up libedit usage
63aebc
- Minor rpmlint fix
63aebc
63aebc
* Sun Mar 02 2008 Christopher Stone <chris.stone@gmail.com> 2.0.2-4
63aebc
- Add %%{__pecl} to post/postun Requires
63aebc
63aebc
* Fri Feb 22 2008 Christopher Stone <chris.stone@gmail.com> 2.0.2-3
63aebc
- %%define %%pecl_name to properly register package
63aebc
- Install xml package description
63aebc
- Add debugclient
63aebc
- Many thanks to Edward Rudd (eddie@omegaware.com) (bz #432681)
63aebc
63aebc
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.2-2
63aebc
- Autorebuild for GCC 4.3
63aebc
63aebc
* Sun Nov 25 2007 Christopher Stone <chris.stone@gmail.com> 2.0.2-1
63aebc
- Upstream sync
63aebc
63aebc
* Sun Sep 30 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-2
63aebc
- Update to latest standards
63aebc
- Fix encoding on Changelog
63aebc
63aebc
* Sat Sep 08 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-1
63aebc
- Upstream sync
63aebc
- Remove %%{?beta} tags
63aebc
63aebc
* Sun Mar 11 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.5.RC2
63aebc
- Create directory to untar sources
63aebc
- Use new ABI check for FC6
63aebc
- Remove %%{release} from Provides
63aebc
63aebc
* Mon Jan 29 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.4.RC2
63aebc
- Compile with $RPM_OPT_FLAGS
63aebc
- Use %{buildroot} instead of %%{buildroot}
63aebc
- Fix license tag
63aebc
63aebc
* Mon Jan 15 2007 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.3.RC2
63aebc
- Upstream sync
63aebc
63aebc
* Sun Oct 29 2006 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.2.RC1
63aebc
- Upstream sync
63aebc
63aebc
* Wed Sep 06 2006 Christopher Stone <chris.stone@gmail.com> 2.0.0-0.1.beta6
63aebc
- Remove Provides php-xdebug
63aebc
- Fix Release
63aebc
- Remove prior changelog due to Release number change