Browse Source

move borg package to src/

Thomas Waldmann 9 years ago
parent
commit
d1ea925a5b
48 changed files with 0 additions and 0 deletions
  1. 0 0
      src/borg/__init__.py
  2. 0 0
      src/borg/__main__.py
  3. 0 0
      src/borg/_chunker.c
  4. 0 0
      src/borg/_hashindex.c
  5. 0 0
      src/borg/archive.py
  6. 0 0
      src/borg/archiver.py
  7. 0 0
      src/borg/cache.py
  8. 0 0
      src/borg/chunker.pyx
  9. 0 0
      src/borg/compress.pyx
  10. 0 0
      src/borg/constants.py
  11. 0 0
      src/borg/crypto.pyx
  12. 0 0
      src/borg/fuse.py
  13. 0 0
      src/borg/hash_sizes.py
  14. 0 0
      src/borg/hashindex.pyx
  15. 0 0
      src/borg/helpers.py
  16. 0 0
      src/borg/key.py
  17. 0 0
      src/borg/locking.py
  18. 0 0
      src/borg/logger.py
  19. 0 0
      src/borg/lrucache.py
  20. 0 0
      src/borg/platform.py
  21. 0 0
      src/borg/platform_darwin.pyx
  22. 0 0
      src/borg/platform_freebsd.pyx
  23. 0 0
      src/borg/platform_linux.pyx
  24. 0 0
      src/borg/remote.py
  25. 0 0
      src/borg/repository.py
  26. 0 0
      src/borg/selftest.py
  27. 0 0
      src/borg/shellpattern.py
  28. 0 0
      src/borg/testsuite/__init__.py
  29. 0 0
      src/borg/testsuite/archive.py
  30. 0 0
      src/borg/testsuite/archiver.py
  31. 0 0
      src/borg/testsuite/benchmark.py
  32. 0 0
      src/borg/testsuite/chunker.py
  33. 0 0
      src/borg/testsuite/compress.py
  34. 0 0
      src/borg/testsuite/conftest.py
  35. 0 0
      src/borg/testsuite/crypto.py
  36. 0 0
      src/borg/testsuite/hashindex.py
  37. 0 0
      src/borg/testsuite/helpers.py
  38. 0 0
      src/borg/testsuite/key.py
  39. 0 0
      src/borg/testsuite/locking.py
  40. 0 0
      src/borg/testsuite/logger.py
  41. 0 0
      src/borg/testsuite/lrucache.py
  42. 0 0
      src/borg/testsuite/platform.py
  43. 0 0
      src/borg/testsuite/repository.py
  44. 0 0
      src/borg/testsuite/shellpattern.py
  45. 0 0
      src/borg/testsuite/upgrader.py
  46. 0 0
      src/borg/testsuite/xattr.py
  47. 0 0
      src/borg/upgrader.py
  48. 0 0
      src/borg/xattr.py

+ 0 - 0
borg/__init__.py → src/borg/__init__.py


+ 0 - 0
borg/__main__.py → src/borg/__main__.py


+ 0 - 0
borg/_chunker.c → src/borg/_chunker.c


+ 0 - 0
borg/_hashindex.c → src/borg/_hashindex.c


+ 0 - 0
borg/archive.py → src/borg/archive.py


+ 0 - 0
borg/archiver.py → src/borg/archiver.py


+ 0 - 0
borg/cache.py → src/borg/cache.py


+ 0 - 0
borg/chunker.pyx → src/borg/chunker.pyx


+ 0 - 0
borg/compress.pyx → src/borg/compress.pyx


+ 0 - 0
borg/constants.py → src/borg/constants.py


+ 0 - 0
borg/crypto.pyx → src/borg/crypto.pyx


+ 0 - 0
borg/fuse.py → src/borg/fuse.py


+ 0 - 0
borg/hash_sizes.py → src/borg/hash_sizes.py


+ 0 - 0
borg/hashindex.pyx → src/borg/hashindex.pyx


+ 0 - 0
borg/helpers.py → src/borg/helpers.py


+ 0 - 0
borg/key.py → src/borg/key.py


+ 0 - 0
borg/locking.py → src/borg/locking.py


+ 0 - 0
borg/logger.py → src/borg/logger.py


+ 0 - 0
borg/lrucache.py → src/borg/lrucache.py


+ 0 - 0
borg/platform.py → src/borg/platform.py


+ 0 - 0
borg/platform_darwin.pyx → src/borg/platform_darwin.pyx


+ 0 - 0
borg/platform_freebsd.pyx → src/borg/platform_freebsd.pyx


+ 0 - 0
borg/platform_linux.pyx → src/borg/platform_linux.pyx


+ 0 - 0
borg/remote.py → src/borg/remote.py


+ 0 - 0
borg/repository.py → src/borg/repository.py


+ 0 - 0
borg/selftest.py → src/borg/selftest.py


+ 0 - 0
borg/shellpattern.py → src/borg/shellpattern.py


+ 0 - 0
borg/testsuite/__init__.py → src/borg/testsuite/__init__.py


+ 0 - 0
borg/testsuite/archive.py → src/borg/testsuite/archive.py


+ 0 - 0
borg/testsuite/archiver.py → src/borg/testsuite/archiver.py


+ 0 - 0
borg/testsuite/benchmark.py → src/borg/testsuite/benchmark.py


+ 0 - 0
borg/testsuite/chunker.py → src/borg/testsuite/chunker.py


+ 0 - 0
borg/testsuite/compress.py → src/borg/testsuite/compress.py


+ 0 - 0
borg/testsuite/conftest.py → src/borg/testsuite/conftest.py


+ 0 - 0
borg/testsuite/crypto.py → src/borg/testsuite/crypto.py


+ 0 - 0
borg/testsuite/hashindex.py → src/borg/testsuite/hashindex.py


+ 0 - 0
borg/testsuite/helpers.py → src/borg/testsuite/helpers.py


+ 0 - 0
borg/testsuite/key.py → src/borg/testsuite/key.py


+ 0 - 0
borg/testsuite/locking.py → src/borg/testsuite/locking.py


+ 0 - 0
borg/testsuite/logger.py → src/borg/testsuite/logger.py


+ 0 - 0
borg/testsuite/lrucache.py → src/borg/testsuite/lrucache.py


+ 0 - 0
borg/testsuite/platform.py → src/borg/testsuite/platform.py


+ 0 - 0
borg/testsuite/repository.py → src/borg/testsuite/repository.py


+ 0 - 0
borg/testsuite/shellpattern.py → src/borg/testsuite/shellpattern.py


+ 0 - 0
borg/testsuite/upgrader.py → src/borg/testsuite/upgrader.py


+ 0 - 0
borg/testsuite/xattr.py → src/borg/testsuite/xattr.py


+ 0 - 0
borg/upgrader.py → src/borg/upgrader.py


+ 0 - 0
borg/xattr.py → src/borg/xattr.py