From 550fec593a829b75ec46ea57d9853353ea5ec36e Mon Sep 17 00:00:00 2001 From: Liu Yiding Date: Sat, 28 Feb 2026 17:02:03 +0800 Subject: xdebug: upgrade 3.5.0 -> 3.5.1 Changelog: https://github.com/xdebug/xdebug/releases/tag/3.5.1 Signed-off-by: Liu Yiding Signed-off-by: Khem Raj --- meta-webserver/recipes-php/xdebug/xdebug_3.5.0.bb | 35 ---------------------- meta-webserver/recipes-php/xdebug/xdebug_3.5.1.bb | 36 +++++++++++++++++++++++ 2 files changed, 36 insertions(+), 35 deletions(-) delete mode 100644 meta-webserver/recipes-php/xdebug/xdebug_3.5.0.bb create mode 100644 meta-webserver/recipes-php/xdebug/xdebug_3.5.1.bb diff --git a/meta-webserver/recipes-php/xdebug/xdebug_3.5.0.bb b/meta-webserver/recipes-php/xdebug/xdebug_3.5.0.bb deleted file mode 100644 index b07546d521..0000000000 --- a/meta-webserver/recipes-php/xdebug/xdebug_3.5.0.bb +++ /dev/null @@ -1,35 +0,0 @@ -SUMMARY = "Debugging and profiling extension for PHP" -LICENSE = "Xdebug" -LIC_FILES_CHKSUM = "file://LICENSE;md5=afd6ce4aa04fdc346e5b3c6e634bd75c" - -DEPENDS = "php re2c-native" - -SRC_URI = "https://xdebug.org/files/xdebug-${PV}.tgz" - -SRC_URI[sha256sum] = "f6daf55a5c7adadb07dd2af25ff78b1cc9b1c58d6cc442a463eba015b678aabf" - -UPSTREAM_CHECK_URI = "https://github.com/xdebug/xdebug/releases" -UPSTREAM_CHECK_REGEX = "releases/tag/(?P\d+(\.\d+)+)$" - -inherit autotools - -EXTRA_OECONF += "--enable-xdebug -with-php-config=${STAGING_BINDIR_CROSS}/php-config" - -do_configure() { - cd ${S} - ${STAGING_BINDIR_CROSS}/phpize - cd ${B} - - # Running autoreconf as autotools_do_configure would do here - # breaks the libtool configuration resulting in a failure later - # in do_compile. It's possible this may be fixable, however the - # easiest course of action for the moment is to avoid doing that. - oe_runconf -} - -do_install() { - oe_runmake install INSTALL_ROOT=${D} -} - -FILES:${PN} += "${libdir}/php*/extensions/*/*.so" -FILES:${PN}-dbg += "${libdir}/php*/extensions/*/.debug" diff --git a/meta-webserver/recipes-php/xdebug/xdebug_3.5.1.bb b/meta-webserver/recipes-php/xdebug/xdebug_3.5.1.bb new file mode 100644 index 0000000000..4c2c6538b5 --- /dev/null +++ b/meta-webserver/recipes-php/xdebug/xdebug_3.5.1.bb @@ -0,0 +1,36 @@ +SUMMARY = "Debugging and profiling extension for PHP" +HOMEPAGE = "https://xdebug.org/" +LICENSE = "Xdebug" +LIC_FILES_CHKSUM = "file://LICENSE;md5=afd6ce4aa04fdc346e5b3c6e634bd75c" + +DEPENDS = "php re2c-native" + +SRC_URI = "https://xdebug.org/files/xdebug-${PV}.tgz" + +SRC_URI[sha256sum] = "0f26849a5edf3d9120edc100219854599d54f923a8a4d1cb4fe4403520e49678" + +UPSTREAM_CHECK_URI = "https://github.com/xdebug/xdebug/releases" +UPSTREAM_CHECK_REGEX = "releases/tag/(?P\d+(\.\d+)+)$" + +inherit autotools + +EXTRA_OECONF += "--enable-xdebug -with-php-config=${STAGING_BINDIR_CROSS}/php-config" + +do_configure() { + cd ${S} + ${STAGING_BINDIR_CROSS}/phpize + cd ${B} + + # Running autoreconf as autotools_do_configure would do here + # breaks the libtool configuration resulting in a failure later + # in do_compile. It's possible this may be fixable, however the + # easiest course of action for the moment is to avoid doing that. + oe_runconf +} + +do_install() { + oe_runmake install INSTALL_ROOT=${D} +} + +FILES:${PN} += "${libdir}/php*/extensions/*/*.so" +FILES:${PN}-dbg += "${libdir}/php*/extensions/*/.debug" -- cgit v1.2.3-54-g00ecf