├── .dir-locals.el ├── .github └── workflows │ ├── freight-man-pages.yml │ └── freight-tests.yml ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── NOTES ├── README.md ├── bin ├── freight ├── freight-add ├── freight-cache ├── freight-clear-cache └── freight-init ├── debian ├── .gitignore ├── changelog ├── compat ├── control └── rules ├── etc ├── bash_completion.d │ └── freight ├── freight.conf.example └── profile.d │ └── freight.sh ├── lib └── freight │ ├── apt.sh │ └── conf.sh ├── man ├── man1 │ ├── freight-add.1 │ ├── freight-add.1.ronn │ ├── freight-cache.1 │ ├── freight-cache.1.ronn │ ├── freight-clear-cache.1 │ ├── freight-clear-cache.1.ronn │ ├── freight-init.1 │ ├── freight-init.1.ronn │ ├── freight.1 │ └── freight.1.ronn └── man5 │ ├── freight.5 │ └── freight.5.ronn └── test ├── apt_add.bats ├── apt_cache.bats ├── apt_cache_source.bats ├── apt_helpers.bash ├── fixtures ├── apt.conf ├── first_key.gpg ├── gpg.conf ├── gpg2.conf ├── passphrase ├── second_key.gpg ├── source-git_1.0-1.dsc ├── source-git_1.0-1.git ├── source_1.0-1.dsc ├── source_1.0-1.tar.bz2 ├── source_1.0-1.tar.gz ├── source_1.0-1.tar.lzma ├── source_1.0-1.tar.xz ├── source_1.0.orig.tar.gz └── test_1.0_all.deb └── freight_helpers.bash /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/freight-man-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/.github/workflows/freight-man-pages.yml -------------------------------------------------------------------------------- /.github/workflows/freight-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/.github/workflows/freight-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/Makefile -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/README.md -------------------------------------------------------------------------------- /bin/freight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/bin/freight -------------------------------------------------------------------------------- /bin/freight-add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/bin/freight-add -------------------------------------------------------------------------------- /bin/freight-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/bin/freight-cache -------------------------------------------------------------------------------- /bin/freight-clear-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/bin/freight-clear-cache -------------------------------------------------------------------------------- /bin/freight-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/bin/freight-init -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/debian/control -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/debian/rules -------------------------------------------------------------------------------- /etc/bash_completion.d/freight: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/freight.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/etc/freight.conf.example -------------------------------------------------------------------------------- /etc/profile.d/freight.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/freight/apt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/lib/freight/apt.sh -------------------------------------------------------------------------------- /lib/freight/conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/lib/freight/conf.sh -------------------------------------------------------------------------------- /man/man1/freight-add.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight-add.1 -------------------------------------------------------------------------------- /man/man1/freight-add.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight-add.1.ronn -------------------------------------------------------------------------------- /man/man1/freight-cache.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight-cache.1 -------------------------------------------------------------------------------- /man/man1/freight-cache.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight-cache.1.ronn -------------------------------------------------------------------------------- /man/man1/freight-clear-cache.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight-clear-cache.1 -------------------------------------------------------------------------------- /man/man1/freight-clear-cache.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight-clear-cache.1.ronn -------------------------------------------------------------------------------- /man/man1/freight-init.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight-init.1 -------------------------------------------------------------------------------- /man/man1/freight-init.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight-init.1.ronn -------------------------------------------------------------------------------- /man/man1/freight.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight.1 -------------------------------------------------------------------------------- /man/man1/freight.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man1/freight.1.ronn -------------------------------------------------------------------------------- /man/man5/freight.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man5/freight.5 -------------------------------------------------------------------------------- /man/man5/freight.5.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/man/man5/freight.5.ronn -------------------------------------------------------------------------------- /test/apt_add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/apt_add.bats -------------------------------------------------------------------------------- /test/apt_cache.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/apt_cache.bats -------------------------------------------------------------------------------- /test/apt_cache_source.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/apt_cache_source.bats -------------------------------------------------------------------------------- /test/apt_helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/apt_helpers.bash -------------------------------------------------------------------------------- /test/fixtures/apt.conf: -------------------------------------------------------------------------------- 1 | Dir "./test/tmp/apt"; 2 | Debug::NoLocking true; 3 | -------------------------------------------------------------------------------- /test/fixtures/first_key.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/first_key.gpg -------------------------------------------------------------------------------- /test/fixtures/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/gpg.conf -------------------------------------------------------------------------------- /test/fixtures/gpg2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/gpg2.conf -------------------------------------------------------------------------------- /test/fixtures/passphrase: -------------------------------------------------------------------------------- 1 | freight 2 | -------------------------------------------------------------------------------- /test/fixtures/second_key.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/second_key.gpg -------------------------------------------------------------------------------- /test/fixtures/source-git_1.0-1.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/source-git_1.0-1.dsc -------------------------------------------------------------------------------- /test/fixtures/source-git_1.0-1.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/source-git_1.0-1.git -------------------------------------------------------------------------------- /test/fixtures/source_1.0-1.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/source_1.0-1.dsc -------------------------------------------------------------------------------- /test/fixtures/source_1.0-1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/source_1.0-1.tar.bz2 -------------------------------------------------------------------------------- /test/fixtures/source_1.0-1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/source_1.0-1.tar.gz -------------------------------------------------------------------------------- /test/fixtures/source_1.0-1.tar.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/source_1.0-1.tar.lzma -------------------------------------------------------------------------------- /test/fixtures/source_1.0-1.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/source_1.0-1.tar.xz -------------------------------------------------------------------------------- /test/fixtures/source_1.0.orig.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/source_1.0.orig.tar.gz -------------------------------------------------------------------------------- /test/fixtures/test_1.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/fixtures/test_1.0_all.deb -------------------------------------------------------------------------------- /test/freight_helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freight-team/freight/HEAD/test/freight_helpers.bash --------------------------------------------------------------------------------