31
Nightly builds / Re: The 27 July 2026 build (13924) is out.
« Last post by Xaviou on July 28, 2026, 05:30:59 pm »Hi.
The "00_update_revision.sh" script is just a copy of the one include in codeblocks sources witch changes the final name of the archives (line 59)
I then obtain the sources packages only : I then sign them and upload them to launchpad and the build starts automatically.
Regards
Xav'
@Xaviou, I could not reproduce the compilation error in clangd_client when compiled against wxWidgets-3.2.11. May be due to difference in configurations. Missing header include is added in svn rev 13925, hope it will fix the issue.It does : thank you. I've replaced the rev13924 archives by rev13925 ones for download
Could you please provide steps to reproduce error on building for Ubuntu-26.04 on launchpad? Is this something we can replicate locally?I just use an updated old made script : here is its content:
Code: sh
#!/bin/sh
cd ~/codeblocks/sources
if [ "x$1" != "xcurrent" ]; then
rm debian/changelog
if [ "x$1" != "x" ]; then
svn update --revision $1 .
else
svn update .
fi;
fi;
if [ -f ./.last_revision ]; then
rm ./.last_revision
fi
../00_update_revision.sh 26.04.1
sed -i 's/UNRELEASED/resolute/' ./debian/changelog
echo 10 > debian/compat
echo Running Bootstrap...
./bootstrap
echo Running debian/setup_control.sh
./debian/setup_control.sh resolute
echo Running Debuild...
debuild -S -sa -d -us -uc
cd ..Code
dch -v 25.03+svn$REV~ubuntu$1 "New svn revision"I then obtain the sources packages only : I then sign them and upload them to launchpad and the build starts automatically.
Regarding the 26.04 failure, Gemini says:I'll try to have a look at this ASAP : thank you.QuoteThe reason it fails on Ubuntu 26.04 is that the Common Debian Build System (cdbs) package officially dropped and deleted the deprecated autotools.mk and makefile.mk files.
If you control the source code of the project or package, the best fix is to stop using cdbs with the old autotools.mk include. Instead, rewrite your debian/rules file to use modern, clean dh (Debhelper) syntax, which handles autotools automatically.
Regards
Xav'
Recent Posts