TW
2bcff382cb
Merge pull request #4247 from ThomasWaldmann/memoryview-cm
...
correctly release memoryview
2019-01-29 15:53:47 +01:00
TW
45382e0fd3
Merge pull request #4271 from ThomasWaldmann/fix-configparser-diaper-master
...
avoid diaper pattern in configparser by opening files, fixes #4263
2019-01-27 06:40:45 +01:00
Thomas Waldmann
b4c68de128
avoid diaper pattern in configparser by opening files, fixes #4263
...
this will fail early with correct error msg / exception traceback
if a config file is not readable.
2019-01-27 03:28:11 +01:00
Thomas Waldmann
78361744ea
keep "data" as is, use "d" for slices
...
so that the data.release() call is on the original memoryview and
also we can delete the last reference to a slice of it first.
2019-01-25 02:09:00 +01:00
Thomas Waldmann
2910d13055
use try/finally to ensure correct memoryview release
...
see #4243 .
2019-01-25 02:09:00 +01:00
Thomas Waldmann
02f3daebbe
use a contextmanager to ensure correct memoryview release
...
see #4243 .
2019-01-25 02:09:00 +01:00
TW
b8fe7b6b83
Merge pull request #4264 from ThomasWaldmann/travis-fix-brew
...
fix the homebrew 1.9 issues on travis-ci, fixes #4254
2019-01-24 23:16:03 +01:00
Thomas Waldmann
235c2994ec
fix the homebrew 1.9 issues on travis-ci, fixes #4254
...
https://github.com/Homebrew/brew/pull/5517/files
2019-01-24 21:29:54 +01:00
TW
4d29747f85
Merge pull request #4244 from ThomasWaldmann/support-msgpack060
...
avoid breakage with msgpack 0.6.0+, keep old limits, fixes #4220
2019-01-05 23:45:01 +01:00
Thomas Waldmann
2a981ba8eb
avoid breakage with msgpack 0.6.0+, keep old limits, fixes #4220
...
for the Unpacker class, our msgpack wrapper already enforced own
defaults (identical to msgpack < 0.6.0 defaults) - no problem there.
for the unpack and unpackb functions, this changeset enforces the
same defaults in the wrapper, overriding the msgpack 0.6.0+ new
defaults (which caused breakage as seen in #4220 ).
2019-01-05 22:54:35 +01:00
TW
3948763838
Merge pull request #4242 from step21/patch-1
...
Added vorta gui
2019-01-05 21:28:01 +01:00
step21
a577a63313
Added vorta gui
2019-01-05 21:07:28 +01:00
cornop
1dad7a39fd
Clarify the necessity to separately backup key in repokey mode ( #4237 )
...
clarify the necessity to separately backup key in repokey mode
2019-01-05 14:46:24 +01:00
Greg Grossmeier
b311b62e0d
Docs: Improve logging in example automation script ( #4226 )
...
docs: improve logging in example automation script
* add an info entry for the compacting step
* add a final info entry for successful completion
2018-12-21 18:54:58 +01:00
TW
9e05bf9cde
Merge pull request #4216 from ThomasWaldmann/fwd-ports
...
Fwd ports
2018-12-15 22:41:05 +01:00
Thomas Waldmann
15695205a1
Vagrantfile: use python 3.6.7 for binary building
2018-12-15 21:39:52 +01:00
Thomas Waldmann
042dfa0c73
Vagrantfile: add python 3.5.0 for testing
2018-12-15 21:37:43 +01:00
Thomas Waldmann
ca6a7d1500
on linux, symlinks can't have ACLs, see #4044
...
(cherry picked from commit ca1928c925
)
2018-12-15 21:32:27 +01:00
TW
1c4a231a17
Merge pull request #4215 from ThomasWaldmann/cythonize-ll3
...
cythonize: set language_level to 3, fixes #4214
2018-12-15 19:34:15 +01:00
Thomas Waldmann
a255e91988
cythonize: set language_level to 3, fixes #4214
2018-12-15 18:52:26 +01:00
TW
e05866074d
Merge pull request #4208 from ThomasWaldmann/remove-deprecated
...
remove deprecated commands/options
2018-12-12 12:10:02 +01:00
Thomas Waldmann
2864fb781c
update changelog about removed deprecated stuff
2018-12-11 23:55:29 +01:00
Thomas Waldmann
2fe88c0efb
remove deprecated option: --no-files-cache
...
replaced by: --files-cache=disabled
2018-12-11 23:55:29 +01:00
Thomas Waldmann
d6a82acbc1
remove deprecated option: --ignore-inode
...
replaced by: --files-cache (without "inode")
2018-12-11 22:55:33 +01:00
Thomas Waldmann
c87393cab7
remove deprecated option: --list-format
...
replaced by: --format
2018-12-11 22:42:48 +01:00
Thomas Waldmann
933e82a49c
remove deprecated option: --keep-tag-files
...
replaced by: --keep-exclude-tags
2018-12-11 22:41:23 +01:00
Thomas Waldmann
7cd1b8151e
remove deprecated command: borg change-passphrase
...
replaced by: borg key change-passphrase
2018-12-11 22:36:39 +01:00
TW
c089d6e8ab
Merge pull request #4207 from ThomasWaldmann/msgpack-060
...
msgpack: also allow version 0.6.0
2018-12-11 02:50:35 +01:00
Thomas Waldmann
07f89d4518
msgpack: also allow version 0.6.0
2018-12-11 01:55:18 +01:00
TW
d467ff5eab
Merge pull request #4206 from ThomasWaldmann/on-py35-again
...
enable py35 again
2018-12-11 01:43:41 +01:00
Thomas Waldmann
2be5446098
Revert "drop support for python 3.5, fixes #3919 "
...
This reverts commit 55314f807e
.
2018-12-11 00:53:43 +01:00
TW
f7a5d3fb15
Merge pull request #4198 from ThomasWaldmann/docs-json
...
docs: --format is required for some expensive-to-compute values
2018-12-07 01:24:24 +01:00
Thomas Waldmann
fc6e81c8bb
docs: --format is required for some expensive-to-compute values
...
borg list by default does not compute expensive values except when
they are needed. whether they are needed is determined by the format,
in standard mode as well as in --json mode.
2018-12-07 01:18:32 +01:00
TW
7b2c0fbf08
Merge pull request #4197 from ThomasWaldmann/fat-binary-docs-master
...
docs: tell that our binaries are amd/intel, bauerj has ARM
2018-12-07 00:52:55 +01:00
Thomas Waldmann
02f3c80d83
docs: tell that our binaries are amd/intel, bauerj has ARM
...
(cherry picked from commit 13986a1a6a
)
2018-12-07 00:51:51 +01:00
TW
388c35dfce
Merge pull request #4188 from ralphtheninja/master
...
Fix tiny typo in README
2018-11-28 12:07:56 +01:00
Lars-Magnus Skog
35de001deb
Fix tiny typo in README
2018-11-28 03:05:46 +01:00
TW
6afd69ae09
Merge pull request #4186 from ThomasWaldmann/location-parse-error-msg
...
invalid locations: give err msg containing parsed location, fixes #4179
2018-11-28 01:55:18 +01:00
Thomas Waldmann
65d8091245
invalid locations: give err msg containing parsed location, fixes #4179
2018-11-28 01:04:28 +01:00
TW
b8165491c1
Merge pull request #4184 from ThomasWaldmann/more-placeholders
...
list repo: add placeholders for hostname and username, fixes #4130
2018-11-28 00:24:42 +01:00
Thomas Waldmann
e9ac9beef0
list repo: add placeholders for hostname and username, fixes #4130
...
also: use a more generic get_meta() access method to avoid duplication.
2018-11-27 23:56:07 +01:00
TW
29cbf5cd53
Merge pull request #4171 from ThomasWaldmann/eisdir-fix
...
fix EISDIR issues
2018-11-17 00:01:29 +01:00
Thomas Waldmann
3d05a4b114
xattrs: linux does not allow user.* xattrs on symlinks
2018-11-16 23:15:04 +01:00
Thomas Waldmann
53971e8e79
xattr key names must start with user. on linux
...
... or the call will just error with "operation not supported"
2018-11-16 23:15:04 +01:00
Thomas Waldmann
562cce1dee
stop using fakeroot on travis, avoids #2482
...
on osx, we already ran the tests w/o fakeroot, directly as root.
do the same for linux.
2018-11-16 23:15:04 +01:00
TW
87262c88f7
Merge pull request #4175 from ThomasWaldmann/pytest4
...
support Pytest4
2018-11-16 21:52:26 +01:00
Thomas Waldmann
d0a01c532e
pytest4 complains if we directly call the fixture function, fixes #4172
...
just added a normal function with the code, call it from fixture and
also from unittest test method.
2018-11-16 01:30:31 +01:00
Thomas Waldmann
55717c4751
pytest: use latest version
2018-11-16 01:04:56 +01:00
TW
c0373d4f53
Merge pull request #4174 from ThomasWaldmann/use-pytest3
...
avoid pytest4 issues for now
2018-11-16 00:55:50 +01:00
Thomas Waldmann
56ae559b07
avoid pytest4 issues for now
2018-11-16 00:28:13 +01:00