├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin ├── bups ├── bups.desktop └── create-launcher.py ├── bups ├── VERSION ├── __init__.py ├── config.py ├── config │ └── config.json ├── fuse │ ├── __init__.py │ ├── base.py │ ├── bup.py │ ├── encfs.py │ ├── google_drive.py │ ├── root.py │ └── sshfs.py ├── gtk.py ├── manager.py ├── scheduler │ ├── __init__.py │ ├── anacron.py │ ├── systemd.py │ └── systemd_user.py ├── scheduler_worker.py ├── sudo.py ├── sudo_worker.py ├── version.py └── worker.py ├── config └── config.json ├── locale ├── de │ └── LC_MESSAGES │ │ └── bups.po ├── es │ └── LC_MESSAGES │ │ └── bups.po └── fr │ └── LC_MESSAGES │ └── bups.po ├── setup.py ├── stdeb.cfg └── tools ├── makedeb.sh ├── makemo.sh └── makepot.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/README.md -------------------------------------------------------------------------------- /bin/bups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bin/bups -------------------------------------------------------------------------------- /bin/bups.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bin/bups.desktop -------------------------------------------------------------------------------- /bin/create-launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bin/create-launcher.py -------------------------------------------------------------------------------- /bups/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.1 2 | -------------------------------------------------------------------------------- /bups/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/__init__.py -------------------------------------------------------------------------------- /bups/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/config.py -------------------------------------------------------------------------------- /bups/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/config/config.json -------------------------------------------------------------------------------- /bups/fuse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bups/fuse/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/fuse/base.py -------------------------------------------------------------------------------- /bups/fuse/bup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/fuse/bup.py -------------------------------------------------------------------------------- /bups/fuse/encfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/fuse/encfs.py -------------------------------------------------------------------------------- /bups/fuse/google_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/fuse/google_drive.py -------------------------------------------------------------------------------- /bups/fuse/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/fuse/root.py -------------------------------------------------------------------------------- /bups/fuse/sshfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/fuse/sshfs.py -------------------------------------------------------------------------------- /bups/gtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/gtk.py -------------------------------------------------------------------------------- /bups/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/manager.py -------------------------------------------------------------------------------- /bups/scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/scheduler/__init__.py -------------------------------------------------------------------------------- /bups/scheduler/anacron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/scheduler/anacron.py -------------------------------------------------------------------------------- /bups/scheduler/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/scheduler/systemd.py -------------------------------------------------------------------------------- /bups/scheduler/systemd_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/scheduler/systemd_user.py -------------------------------------------------------------------------------- /bups/scheduler_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/scheduler_worker.py -------------------------------------------------------------------------------- /bups/sudo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/sudo.py -------------------------------------------------------------------------------- /bups/sudo_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/sudo_worker.py -------------------------------------------------------------------------------- /bups/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/version.py -------------------------------------------------------------------------------- /bups/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/bups/worker.py -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/config/config.json -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/bups.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/locale/de/LC_MESSAGES/bups.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/bups.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/locale/es/LC_MESSAGES/bups.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/bups.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/locale/fr/LC_MESSAGES/bups.po -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/setup.py -------------------------------------------------------------------------------- /stdeb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/stdeb.cfg -------------------------------------------------------------------------------- /tools/makedeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/tools/makedeb.sh -------------------------------------------------------------------------------- /tools/makemo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/tools/makemo.sh -------------------------------------------------------------------------------- /tools/makepot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/bups/HEAD/tools/makepot.sh --------------------------------------------------------------------------------