├── .gitignore ├── COPYING ├── README.md ├── backport.py ├── check-dnsseeds.py ├── clang-format.py ├── delete_nonreduced_fuzz_inputs.sh ├── fastcopy-chaindata.py ├── ghmeta └── __init__.py ├── ghwatch.py ├── github-merge.py ├── list-pulls.py ├── make-tag.py ├── optimize-pngs.py ├── patches └── stripbuildinfo.patch ├── release-prep.sh ├── signoff.py ├── termlib ├── __init__.py ├── attr.py ├── input.py └── tableprinter.py ├── treehash512.py ├── unittest-statistics.py └── update-translations.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/README.md -------------------------------------------------------------------------------- /backport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/backport.py -------------------------------------------------------------------------------- /check-dnsseeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/check-dnsseeds.py -------------------------------------------------------------------------------- /clang-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/clang-format.py -------------------------------------------------------------------------------- /delete_nonreduced_fuzz_inputs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/delete_nonreduced_fuzz_inputs.sh -------------------------------------------------------------------------------- /fastcopy-chaindata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/fastcopy-chaindata.py -------------------------------------------------------------------------------- /ghmeta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/ghmeta/__init__.py -------------------------------------------------------------------------------- /ghwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/ghwatch.py -------------------------------------------------------------------------------- /github-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/github-merge.py -------------------------------------------------------------------------------- /list-pulls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/list-pulls.py -------------------------------------------------------------------------------- /make-tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/make-tag.py -------------------------------------------------------------------------------- /optimize-pngs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/optimize-pngs.py -------------------------------------------------------------------------------- /patches/stripbuildinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/patches/stripbuildinfo.patch -------------------------------------------------------------------------------- /release-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/release-prep.sh -------------------------------------------------------------------------------- /signoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/signoff.py -------------------------------------------------------------------------------- /termlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /termlib/attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/termlib/attr.py -------------------------------------------------------------------------------- /termlib/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/termlib/input.py -------------------------------------------------------------------------------- /termlib/tableprinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/termlib/tableprinter.py -------------------------------------------------------------------------------- /treehash512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/treehash512.py -------------------------------------------------------------------------------- /unittest-statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/unittest-statistics.py -------------------------------------------------------------------------------- /update-translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoin-core/bitcoin-maintainer-tools/HEAD/update-translations.py --------------------------------------------------------------------------------