This website works better with JavaScript
Home
Explore
Help
Sign In
mirrors
/
borg
mirror of
https://github.com/borgbackup/borg
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
move borg package to src/
Thomas Waldmann
9 years ago
parent
d22bbe17c5
commit
d1ea925a5b
48 changed files
with
0 additions
and
0 deletions
Split View
Show Diff Stats
0
0
src/borg/__init__.py
0
0
src/borg/__main__.py
0
0
src/borg/_chunker.c
0
0
src/borg/_hashindex.c
0
0
src/borg/archive.py
0
0
src/borg/archiver.py
0
0
src/borg/cache.py
0
0
src/borg/chunker.pyx
0
0
src/borg/compress.pyx
0
0
src/borg/constants.py
0
0
src/borg/crypto.pyx
0
0
src/borg/fuse.py
0
0
src/borg/hash_sizes.py
0
0
src/borg/hashindex.pyx
0
0
src/borg/helpers.py
0
0
src/borg/key.py
0
0
src/borg/locking.py
0
0
src/borg/logger.py
0
0
src/borg/lrucache.py
0
0
src/borg/platform.py
0
0
src/borg/platform_darwin.pyx
0
0
src/borg/platform_freebsd.pyx
0
0
src/borg/platform_linux.pyx
0
0
src/borg/remote.py
0
0
src/borg/repository.py
0
0
src/borg/selftest.py
0
0
src/borg/shellpattern.py
0
0
src/borg/testsuite/__init__.py
0
0
src/borg/testsuite/archive.py
0
0
src/borg/testsuite/archiver.py
0
0
src/borg/testsuite/benchmark.py
0
0
src/borg/testsuite/chunker.py
0
0
src/borg/testsuite/compress.py
0
0
src/borg/testsuite/conftest.py
0
0
src/borg/testsuite/crypto.py
0
0
src/borg/testsuite/hashindex.py
0
0
src/borg/testsuite/helpers.py
0
0
src/borg/testsuite/key.py
0
0
src/borg/testsuite/locking.py
0
0
src/borg/testsuite/logger.py
0
0
src/borg/testsuite/lrucache.py
0
0
src/borg/testsuite/platform.py
0
0
src/borg/testsuite/repository.py
0
0
src/borg/testsuite/shellpattern.py
0
0
src/borg/testsuite/upgrader.py
0
0
src/borg/testsuite/xattr.py
0
0
src/borg/upgrader.py
0
0
src/borg/xattr.py
+ 0
- 0
borg/__init__.py → src/borg/__init__.py
View File
+ 0
- 0
borg/__main__.py → src/borg/__main__.py
View File
+ 0
- 0
borg/_chunker.c → src/borg/_chunker.c
View File
+ 0
- 0
borg/_hashindex.c → src/borg/_hashindex.c
View File
+ 0
- 0
borg/archive.py → src/borg/archive.py
View File
+ 0
- 0
borg/archiver.py → src/borg/archiver.py
View File
+ 0
- 0
borg/cache.py → src/borg/cache.py
View File
+ 0
- 0
borg/chunker.pyx → src/borg/chunker.pyx
View File
+ 0
- 0
borg/compress.pyx → src/borg/compress.pyx
View File
+ 0
- 0
borg/constants.py → src/borg/constants.py
View File
+ 0
- 0
borg/crypto.pyx → src/borg/crypto.pyx
View File
+ 0
- 0
borg/fuse.py → src/borg/fuse.py
View File
+ 0
- 0
borg/hash_sizes.py → src/borg/hash_sizes.py
View File
+ 0
- 0
borg/hashindex.pyx → src/borg/hashindex.pyx
View File
+ 0
- 0
borg/helpers.py → src/borg/helpers.py
View File
+ 0
- 0
borg/key.py → src/borg/key.py
View File
+ 0
- 0
borg/locking.py → src/borg/locking.py
View File
+ 0
- 0
borg/logger.py → src/borg/logger.py
View File
+ 0
- 0
borg/lrucache.py → src/borg/lrucache.py
View File
+ 0
- 0
borg/platform.py → src/borg/platform.py
View File
+ 0
- 0
borg/platform_darwin.pyx → src/borg/platform_darwin.pyx
View File
+ 0
- 0
borg/platform_freebsd.pyx → src/borg/platform_freebsd.pyx
View File
+ 0
- 0
borg/platform_linux.pyx → src/borg/platform_linux.pyx
View File
+ 0
- 0
borg/remote.py → src/borg/remote.py
View File
+ 0
- 0
borg/repository.py → src/borg/repository.py
View File
+ 0
- 0
borg/selftest.py → src/borg/selftest.py
View File
+ 0
- 0
borg/shellpattern.py → src/borg/shellpattern.py
View File
+ 0
- 0
borg/testsuite/__init__.py → src/borg/testsuite/__init__.py
View File
+ 0
- 0
borg/testsuite/archive.py → src/borg/testsuite/archive.py
View File
+ 0
- 0
borg/testsuite/archiver.py → src/borg/testsuite/archiver.py
View File
+ 0
- 0
borg/testsuite/benchmark.py → src/borg/testsuite/benchmark.py
View File
+ 0
- 0
borg/testsuite/chunker.py → src/borg/testsuite/chunker.py
View File
+ 0
- 0
borg/testsuite/compress.py → src/borg/testsuite/compress.py
View File
+ 0
- 0
borg/testsuite/conftest.py → src/borg/testsuite/conftest.py
View File
+ 0
- 0
borg/testsuite/crypto.py → src/borg/testsuite/crypto.py
View File
+ 0
- 0
borg/testsuite/hashindex.py → src/borg/testsuite/hashindex.py
View File
+ 0
- 0
borg/testsuite/helpers.py → src/borg/testsuite/helpers.py
View File
+ 0
- 0
borg/testsuite/key.py → src/borg/testsuite/key.py
View File
+ 0
- 0
borg/testsuite/locking.py → src/borg/testsuite/locking.py
View File
+ 0
- 0
borg/testsuite/logger.py → src/borg/testsuite/logger.py
View File
+ 0
- 0
borg/testsuite/lrucache.py → src/borg/testsuite/lrucache.py
View File
+ 0
- 0
borg/testsuite/platform.py → src/borg/testsuite/platform.py
View File
+ 0
- 0
borg/testsuite/repository.py → src/borg/testsuite/repository.py
View File
+ 0
- 0
borg/testsuite/shellpattern.py → src/borg/testsuite/shellpattern.py
View File
+ 0
- 0
borg/testsuite/upgrader.py → src/borg/testsuite/upgrader.py
View File
+ 0
- 0
borg/testsuite/xattr.py → src/borg/testsuite/xattr.py
View File
+ 0
- 0
borg/upgrader.py → src/borg/upgrader.py
View File
+ 0
- 0
borg/xattr.py → src/borg/xattr.py
View File