dev-util/quilttools: Mailbox to quilt series converter (new package)

mb2q analyses the complete mailbox and collects various tags (Reviewed-by,
Acked-by, Tested-by) from replies to individual patches and to the cover
letter. If a tag is in a reply to the cover letter it is applied to all
patches which reference the cover letter.

Optionally the output can be redirected into a mailbox which can be applied
with git-am.

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
This commit is contained in:
Kurt Kanzenbach
2020-02-19 20:25:45 +01:00
parent fd496eaaa4
commit a9ba7a56da
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST quilttools-0.3.tar.gz 20525 BLAKE2B 9dafcbb68b7a7f667c3667af0144082b791832e8cdd35de2d06be3dfc15c0ca6390e309fcbbd13f8132cc6f40f967aa1bba2010270a3ed743172b5379d2a29e5 SHA512 50358996dd1b8a9a75616324d53d0ff459da701d9647e91d015d9fb810f2e22ee31de91c6f47202e925be53c1548914b1919bc41d951646e2e19b0ad79e2ed12

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>kurt@kmk-computers.de</email>
<name>Kurt Kanzenbach</name>
</maintainer>
<longdescription>
mb2q analyses the complete mailbox and collects various tags (Reviewed-by,
Acked-by, Tested-by) from replies to individual patches and to the cover
letter. If a tag is in a reply to the cover letter it is applied to all
patches which reference the cover letter.
Optionally the output can be redirected into a mailbox which can be applied
with git-am.
</longdescription>
</pkgmetadata>

View File

@@ -0,0 +1,42 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=(python3_{6,7})
inherit python-single-r1
DESCRIPTION="Mailbox to quilt series converter"
HOMEPAGE="https://git.kernel.org/pub/scm/linux/kernel/git/tglx/quilttools.git/about/"
SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/tglx/quilttools.git/snapshot/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
BDEPEND="dev-python/sphinx"
RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
net-mail/notmuch[python,${PYTHON_MULTI_USEDEP}]
')"
src_compile() {
emake -C Documentation man
use doc && emake -C Documentation html
}
src_install() {
dobin mb2q
doman Documentation/output/man/mb2q.1
python_fix_shebang "${ED}"
local DOCS=( README.md )
use doc && local HTML_DOCS=( Documentation/output/html/. )
einstalldocs
use examples && dodoc -r Documentation/examples
}