Dear Maintainer,
* What led up to the situation?
Building in chroot environment of zstd package
* What exactly did you do that was effective?
sudo debootstrap --components="main,contrib,non-free" "trixie" "/opt/dev/build/trixie" "https://deb.debian.org/debian"
sudo mount -t proc proc /opt/dev/build/trixie/proc/
sudo mount -o bind /sys/ /opt/dev/build/trixie/sys/
sudo mount -o bind /dev/ /opt/dev/build/trixie/dev/
sudo mount -o bind /dev/pts /opt/dev/build/trixie/dev/pts
sudo mount --make-rslave /opt/dev/build/trixie/sys
sudo mount --make-rslave /opt/dev/build/trixie/dev
sudo mount --make-rslave /opt/dev/build/trixie/dev/pts
sudo chroot /opt/dev/build/trixie apt update
sudo chroot /opt/dev/build/trixie apt install devscripts quilt equivs ccache bash-completion sudo -yyy
sudo chroot /opt/dev/build/trixie apt clean
sudo chown -R "${USER}:${USER}" /opt/dev/build/trixie/opt/
sudo chroot "\opt/dev/build/trixie"
Copy into chroot "/opt" directory and unpack:
libzstd_1.5.7+dfsg.orig.tar.xz
libzstd_1.5.7+dfsg-1.debian.tar.xz
(move "debian" dir to src-dir)
cd zstd-1.5.7
export DEB_BUILD_OPTIONS="ccache noautodbgsym parallel=16"
mk-build-deps -ir
dpkg-buildpackage -us -uc -ui -j16
* What was the outcome of this action?
The build was interrupted by an error
* What outcome did you expect instead?
Build package with successful passing of tests
The build runs correctly when tests are skipped with the nocheck option. :
export DEB_BUILD_OPTIONS="ccache noautodbgsym parallel=16 nocheck"