├── .gitignore ├── CODEOWNERS ├── COPYING ├── LICENSE ├── README.md ├── RELEASE_NOTES ├── Vagrantfile ├── bin ├── canon-zip ├── gbuild ├── gsign ├── gverify └── make-base-vm ├── contrib ├── README.md ├── devtools │ ├── README.md │ └── github-merge.py └── verify-commits │ ├── README.md │ ├── allow-revsig-commits │ ├── gpg.sh │ ├── pre-push-hook.sh │ ├── trusted-git-root │ ├── trusted-keys │ └── verify-commits.sh ├── doc ├── CACHE ├── DOWNLOADER.md └── NOTES ├── etc ├── lxc.3.config.in └── lxc.config.in ├── libexec ├── config-bootstrap-fixup ├── config-lxc ├── copy-from-target ├── copy-to-target ├── gconfig ├── make-clean-vm ├── on-target ├── start-target └── stop-target ├── share └── gitian_updater.py └── target-bin ├── bootstrap-fixup.in ├── grab-packages.sh ├── init-build.sh └── upgrade-system.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @devrandom 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/RELEASE_NOTES -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/canon-zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/bin/canon-zip -------------------------------------------------------------------------------- /bin/gbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/bin/gbuild -------------------------------------------------------------------------------- /bin/gsign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/bin/gsign -------------------------------------------------------------------------------- /bin/gverify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/bin/gverify -------------------------------------------------------------------------------- /bin/make-base-vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/bin/make-base-vm -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/devtools/github-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/contrib/devtools/github-merge.py -------------------------------------------------------------------------------- /contrib/verify-commits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/contrib/verify-commits/README.md -------------------------------------------------------------------------------- /contrib/verify-commits/allow-revsig-commits: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/verify-commits/gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/contrib/verify-commits/gpg.sh -------------------------------------------------------------------------------- /contrib/verify-commits/pre-push-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/contrib/verify-commits/pre-push-hook.sh -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-git-root: -------------------------------------------------------------------------------- 1 | bb4f92f6cbde6ee78e39ae35b0934da3b55e154d 2 | -------------------------------------------------------------------------------- /contrib/verify-commits/trusted-keys: -------------------------------------------------------------------------------- 1 | 498FA3769A88C4AD1B187A7428EB4B0FB7AAF6B0 2 | -------------------------------------------------------------------------------- /contrib/verify-commits/verify-commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/contrib/verify-commits/verify-commits.sh -------------------------------------------------------------------------------- /doc/CACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/doc/CACHE -------------------------------------------------------------------------------- /doc/DOWNLOADER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/doc/DOWNLOADER.md -------------------------------------------------------------------------------- /doc/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/doc/NOTES -------------------------------------------------------------------------------- /etc/lxc.3.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/etc/lxc.3.config.in -------------------------------------------------------------------------------- /etc/lxc.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/etc/lxc.config.in -------------------------------------------------------------------------------- /libexec/config-bootstrap-fixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/libexec/config-bootstrap-fixup -------------------------------------------------------------------------------- /libexec/config-lxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/libexec/config-lxc -------------------------------------------------------------------------------- /libexec/copy-from-target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/libexec/copy-from-target -------------------------------------------------------------------------------- /libexec/copy-to-target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/libexec/copy-to-target -------------------------------------------------------------------------------- /libexec/gconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/libexec/gconfig -------------------------------------------------------------------------------- /libexec/make-clean-vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/libexec/make-clean-vm -------------------------------------------------------------------------------- /libexec/on-target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/libexec/on-target -------------------------------------------------------------------------------- /libexec/start-target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/libexec/start-target -------------------------------------------------------------------------------- /libexec/stop-target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/libexec/stop-target -------------------------------------------------------------------------------- /share/gitian_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/share/gitian_updater.py -------------------------------------------------------------------------------- /target-bin/bootstrap-fixup.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/target-bin/bootstrap-fixup.in -------------------------------------------------------------------------------- /target-bin/grab-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/target-bin/grab-packages.sh -------------------------------------------------------------------------------- /target-bin/init-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/target-bin/init-build.sh -------------------------------------------------------------------------------- /target-bin/upgrade-system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrandom/gitian-builder/HEAD/target-bin/upgrade-system.sh --------------------------------------------------------------------------------