Gentoo Archives: gentoo-portage-dev

From: Zac Medico <zmedico@g.o>
To: gentoo-portage-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: Re: [gentoo-portage-dev] [PATCH v3] repoman commit: Support --bug (-b) and --closes (-c) for git footer
Date: Sun, 06 Aug 2017 05:53:39
Message-Id: CAMiTYSoUC5qD1tNFVZwAZRQ73etkxDBEuRe38BLbUqAMqOr_cg@mail.gmail.com
In Reply to: [gentoo-portage-dev] [PATCH v3] repoman commit: Support --bug (-b) and --closes (-c) for git footer by "Michał Górny"
1 On Sat, Aug 5, 2017 at 2:26 PM, Michał Górny <mgorny@g.o> wrote:
2 > + parser.add_argument(
3 > + '-b', '--bug', dest='bug', action='append', metavar='<BUG-NO|BUG-URL>',
4 > + default=[],
5 > + help=(
6 > + 'Mention a Gentoo or upstream bug in the commit footer; '
7 > + 'takes either Gentoo bug number or full bug URL'))
8 > +
9 > + parser.add_argument(
10 > + '-c', '--closes', dest='closes', action='append', metavar='<PR-NO|PR-URL>',
11 > + default=[],
12 > + help=(
13 > + 'Adds a Closes footer to close GitHub pull request (or compatible); '
14 > + 'takes either GitHub PR number or full PR URL'))
15 > +
16
17 We should document these in repoman/man/repoman.1 as well.
18 --
19 Thanks,
20 Zac