From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::226]) by sourceware.org (Postfix) with ESMTPS id 72FD73858D39; Wed, 19 Jan 2022 11:33:27 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 72FD73858D39 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=seketeli.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=seketeli.org Received: (Authenticated sender: dodji@seketeli.org) by mail.gandi.net (Postfix) with ESMTPSA id B26C1C0012; Wed, 19 Jan 2022 11:33:25 +0000 (UTC) Received: by localhost (Postfix, from userid 1000) id C8467581891; Wed, 19 Jan 2022 12:33:24 +0100 (CET) From: Dodji Seketeli To: grawlinson at archlinux dot org via Libabigail Cc: grawlinson at archlinux dot org Subject: Re: [Bug default/28663] New: generate man page for kmidiff Organization: Me, myself and I References: X-Operating-System: Fedora 36 X-URL: http://www.seketeli.net/~dodji Date: Wed, 19 Jan 2022 12:33:24 +0100 In-Reply-To: (grawlinson at archlinux dot org via Libabigail's message of "Mon, 06 Dec 2021 20:37:16 +0000") Message-ID: <87k0ewarjv.fsf@seketeli.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-10.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libabigail@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Mailing list of the Libabigail project List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jan 2022 11:33:29 -0000 Hello George, grawlinson at archlinux dot org via Libabigail = a =C3=A9crit: [...] > Created attachment 13828 > --> https://sourceware.org/bugzilla/attachment.cgi?id=3D13828&action=3D= edit > generate man page for kmidiff > > I've started packaging this for Arch Linux's AUR, and I noticed that a ma= n page > is not generated for kmidiff. I've attached a patch that successfully gen= erates > one, but it will need adjusting. I do not know the author(s) of the parti= cular > documentation, therefore have put 'unknown' in that field. Thank you very much! I took your patch, adapted it a little bit and committed this patch to the master branch as a result. Thanks! >From eb3e549794d059294cf1f4a63865e6eb7af8b2e3 Mon Sep 17 00:00:00 2001 From: George Rawlinson Date: Wed, 19 Jan 2022 11:49:47 +0100 Subject: [PATCH] Bug 28663 - generate man page for kmidiff This patch is based on a patch submitted to this bug report by George Rawlinson . It generates a man page for the kmidiff tool. * doc/manuals/conf.py: Update copyright year. Generate man page for the kmidiff tool. Signed-off-by: Dodji Seketeli --- doc/manuals/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/manuals/conf.py b/doc/manuals/conf.py index a0967a26..1e372865 100644 --- a/doc/manuals/conf.py +++ b/doc/manuals/conf.py @@ -41,7 +41,7 @@ master_doc =3D 'index' =20 # General information about the project. project =3D u'Libabigail' -copyright =3D u'2014-2016, Red Hat, Inc.' +copyright =3D u'2014-2022, Red Hat, Inc.' =20 # The version info for the project you're documenting, acts as replacement= for # |version| and |release|, also used in various other places throughout the @@ -220,6 +220,7 @@ man_pages =3D [ ('abilint', 'abilint', u'validate an abigail ABI representation', [u'D= odji Seketeli'], 1), ('abicompat', 'abicompat', u'check ABI compatibility', [u'Dodji Sekete= li'], 1), ('fedabipkgdiff', 'fedabipkgdiff', u'compare ABIs of Fedora packages',= [u'Chenxiong Qi'], 1), + ('kmidiff', 'kmidiff', u'compare KMIs of Linux Kernel trees', [u'Dodji= Seketeli'], 1), ] =20 # If true, show URL addresses after external links. --=20 2.33.1 --=20 Dodji