├── .github └── workflows │ └── ci.yaml ├── COPYING ├── Dockerfile ├── README.rst ├── meson.build ├── pram ├── pram.1 └── test ├── 00basic.sh ├── 01signoff-missing.sh ├── 01signoff-partial.sh ├── 01signoff-present.sh ├── 02bug-number.sh ├── 02bug-url.sh ├── 02closes-number.sh ├── 02closes-url.sh ├── 03bug-multiple.sh ├── 03closes-multiple.sh ├── 03combined-bug-closes.sh ├── 03combined-signoff-bug.sh ├── 04interactive-no.sh ├── 04interactive-yes.sh ├── 05editor-empty.sh ├── 05editor-fail.sh ├── 06gpgsign.sh ├── 10threeway-disabled.sh ├── 10threeway.sh ├── 11combined-partof-signoff-bug.sh ├── 11partof.sh └── common-setup.sh /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/README.rst -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/meson.build -------------------------------------------------------------------------------- /pram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/pram -------------------------------------------------------------------------------- /pram.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/pram.1 -------------------------------------------------------------------------------- /test/00basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/00basic.sh -------------------------------------------------------------------------------- /test/01signoff-missing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/01signoff-missing.sh -------------------------------------------------------------------------------- /test/01signoff-partial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/01signoff-partial.sh -------------------------------------------------------------------------------- /test/01signoff-present.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/01signoff-present.sh -------------------------------------------------------------------------------- /test/02bug-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/02bug-number.sh -------------------------------------------------------------------------------- /test/02bug-url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/02bug-url.sh -------------------------------------------------------------------------------- /test/02closes-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/02closes-number.sh -------------------------------------------------------------------------------- /test/02closes-url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/02closes-url.sh -------------------------------------------------------------------------------- /test/03bug-multiple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/03bug-multiple.sh -------------------------------------------------------------------------------- /test/03closes-multiple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/03closes-multiple.sh -------------------------------------------------------------------------------- /test/03combined-bug-closes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/03combined-bug-closes.sh -------------------------------------------------------------------------------- /test/03combined-signoff-bug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/03combined-signoff-bug.sh -------------------------------------------------------------------------------- /test/04interactive-no.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/04interactive-no.sh -------------------------------------------------------------------------------- /test/04interactive-yes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/04interactive-yes.sh -------------------------------------------------------------------------------- /test/05editor-empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/05editor-empty.sh -------------------------------------------------------------------------------- /test/05editor-fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/05editor-fail.sh -------------------------------------------------------------------------------- /test/06gpgsign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/06gpgsign.sh -------------------------------------------------------------------------------- /test/10threeway-disabled.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/10threeway-disabled.sh -------------------------------------------------------------------------------- /test/10threeway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/10threeway.sh -------------------------------------------------------------------------------- /test/11combined-partof-signoff-bug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/11combined-partof-signoff-bug.sh -------------------------------------------------------------------------------- /test/11partof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/11partof.sh -------------------------------------------------------------------------------- /test/common-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pram/HEAD/test/common-setup.sh --------------------------------------------------------------------------------