├── .gitignore ├── COPYING ├── README.md ├── dave-script.sh ├── scripts └── tatt ├── setup.py ├── tatt.1 ├── tatt.5 ├── tatt ├── __init__.py ├── dot-tatt-spec ├── gentooPackage.py ├── job.py ├── packageFinder.py ├── scriptwriter.py ├── tattConfig.py ├── tinderbox.py ├── tool.py └── usecombis.py └── templates ├── cleanup ├── commit-footer ├── commit-header ├── commit-snippet ├── commit-snippet-2 ├── revdep-footer ├── revdep-header ├── revdep-snippet ├── tatt_functions.sh ├── updatebug ├── use-footer ├── use-header ├── use-loop ├── use-snippet └── use-test-snippet /.gitignore: -------------------------------------------------------------------------------- 1 | tatt.out 2 | .ropeproject 3 | *.pyc 4 | TAGS 5 | manual.html 6 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/README.md -------------------------------------------------------------------------------- /dave-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/dave-script.sh -------------------------------------------------------------------------------- /scripts/tatt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/scripts/tatt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/setup.py -------------------------------------------------------------------------------- /tatt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt.1 -------------------------------------------------------------------------------- /tatt.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt.5 -------------------------------------------------------------------------------- /tatt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tatt/dot-tatt-spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt/dot-tatt-spec -------------------------------------------------------------------------------- /tatt/gentooPackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt/gentooPackage.py -------------------------------------------------------------------------------- /tatt/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt/job.py -------------------------------------------------------------------------------- /tatt/packageFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt/packageFinder.py -------------------------------------------------------------------------------- /tatt/scriptwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt/scriptwriter.py -------------------------------------------------------------------------------- /tatt/tattConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt/tattConfig.py -------------------------------------------------------------------------------- /tatt/tinderbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt/tinderbox.py -------------------------------------------------------------------------------- /tatt/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt/tool.py -------------------------------------------------------------------------------- /tatt/usecombis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/tatt/usecombis.py -------------------------------------------------------------------------------- /templates/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/cleanup -------------------------------------------------------------------------------- /templates/commit-footer: -------------------------------------------------------------------------------- 1 | # Anything to be done here? 2 | -------------------------------------------------------------------------------- /templates/commit-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/commit-header -------------------------------------------------------------------------------- /templates/commit-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/commit-snippet -------------------------------------------------------------------------------- /templates/commit-snippet-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/commit-snippet-2 -------------------------------------------------------------------------------- /templates/revdep-footer: -------------------------------------------------------------------------------- 1 | 2 | exit ${test_ret} 3 | -------------------------------------------------------------------------------- /templates/revdep-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/revdep-header -------------------------------------------------------------------------------- /templates/revdep-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/revdep-snippet -------------------------------------------------------------------------------- /templates/tatt_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/tatt_functions.sh -------------------------------------------------------------------------------- /templates/updatebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/updatebug -------------------------------------------------------------------------------- /templates/use-footer: -------------------------------------------------------------------------------- 1 | 2 | exit ${test_ret} 3 | -------------------------------------------------------------------------------- /templates/use-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/use-header -------------------------------------------------------------------------------- /templates/use-loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/use-loop -------------------------------------------------------------------------------- /templates/use-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/use-snippet -------------------------------------------------------------------------------- /templates/use-test-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/tatt/HEAD/templates/use-test-snippet --------------------------------------------------------------------------------