Package: flatbuffers / 23.5.26+dfsg-4

Metadata

Package Version Patches format
flatbuffers 23.5.26+dfsg-4 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
s390x.patch | (download)

include/flatbuffers/base.h | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

---
8201.patch | (download)

tests/reflection_test.cpp | 4 4 + 0 - 0 !
1 file changed, 4 insertions(+)

 [patch] tests: fix the expected bin dump of nan for mips and hppa
 architectures.

The build fails on mips64el and hppa due to the decimal dump of the
`testnestedflatbuffer` does not match with the hard coded expectation.
See the build log as follows:

https://buildd.debian.org/status/fetch.php?pkg=flatbuffers&arch=mips64el&ver=23.5.26%2Bdfsg-1%7Eexp0&stamp=1696723928&raw=0

According to tests/is_quiet_nan.h, the binary value for mips and hppa
architectures is `0x7FBFFFFFu`, instead of `0x7FC00000u` like amd64.
Thus, the expected decimal dump should be
`255 (FF), 255 (FF), 191 (BF), 127 (7F)`
instead of
`0 (00), 0 (00), 192 (C0), 127 (7F)`
in little endian format.

setup py.patch | (download)

python/setup.py | 1 0 + 1 - 0 !
1 file changed, 1 deletion(-)

 get rid of build failure since setuptools >= 78.x due
 to feature deprecation. The flatbuffer upstream latest release
 has already got rid of this line.