CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2022/12/05 11:49:20
Modified files:
sysutils/borgbackup/1.1: Tag: OPENBSD_7_2 Makefile distinfo
Log message:
Fix msgpack runtime on sparc64
$ borg init -e none ./repo ; echo $?
Unknown integrity data version 0 in integrity.1
0
borg 1.1.x bundles msgpack-python, which messed up __BYTE_ORDER handling,
but only on sparc64 using ports GCC 8.4.0; macppc base clang 13 is fine.
msgpack-python got fixed, borg's 1.1-maint branch merged it, pull the PR.
borgbackup/1.2 and py-msgpack will get the same fix but in a different
commit as py-msgpack has more consumers than borg 1.2.
Tested on little endian amd64/base-clang and big endian macppc/base-clang,
sparc64/ports-gcc.
OK bket