diff options
| author | Adam Ruzicka <a.ruzicka@outlook.com> | 2019-02-03 19:46:32 +0100 |
|---|---|---|
| committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-02-25 19:32:38 +0000 |
| commit | f06cccf2db67467a0685a77d5b05d1f25fcf2c55 (patch) | |
| tree | 6c5941b756cc2374cc7373938523c16fd0de4b31 /community/borgbackup/msgpack-fix.patch | |
| parent | 08ab682249a645c4dc445a8400f60b73fc259d36 (diff) | |
| download | aports-f06cccf2db67467a0685a77d5b05d1f25fcf2c55.tar.bz2 aports-f06cccf2db67467a0685a77d5b05d1f25fcf2c55.tar.xz | |
community/borgbackup: backport patch to make borg work again
fixes #9927
(cherry picked from commit 3a0a741747a76ff24c7751c2aae27482bb9a0d35)
Diffstat (limited to 'community/borgbackup/msgpack-fix.patch')
| -rw-r--r-- | community/borgbackup/msgpack-fix.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/community/borgbackup/msgpack-fix.patch b/community/borgbackup/msgpack-fix.patch new file mode 100644 index 0000000000..102492abcc --- /dev/null +++ b/community/borgbackup/msgpack-fix.patch @@ -0,0 +1,13 @@ +--- borgbackup-1.1.7/setup.py.original ++++ borgbackup-1.1.7/setup.py +@@ -39,7 +39,9 @@ + # we are rather picky about msgpack versions, because a good working msgpack is + # very important for borg, see https://github.com/borgbackup/borg/issues/3753 + # best versions seem to be 0.4.6, 0.4.7, 0.4.8 and 0.5.6: +- 'msgpack-python >=0.4.6, <=0.5.6, !=0.5.0, !=0.5.1, !=0.5.2, !=0.5.3, !=0.5.4, !=0.5.5', ++ 'msgpack-python >=0.4.6, <=0.5.6, !=0.5.0, !=0.5.1, !=0.5.2, !=0.5.3, !=0.5.4, !=0.5.5;python_version <"3.4"', ++ 'msgpack-python >=0.4.6, <0.5;python_version=="3.4"', ++ 'msgpack >=0.5.6;python_version >="3.5"', + # if you can't satisfy the above requirement, these are versions that might + # also work ok, IF you make sure to use the COMPILED version of msgpack-python, + # NOT the PURE PYTHON fallback implementation: ==0.5.1, ==0.5.4 |
