From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 36375 invoked by alias); 5 Sep 2017 05:16:09 -0000 Mailing-List: contact kawa-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: kawa-owner@sourceware.org Received: (qmail 36362 invoked by uid 89); 5 Sep 2017 05:16:08 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.2 spammy= X-HELO: johanna3.inet.fi Received: from mta-out1.inet.fi (HELO johanna3.inet.fi) (62.71.2.233) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 05 Sep 2017 05:16:01 +0000 RazorGate-KAS: Status: not_detected RazorGate-KAS: Rate: 0 RazorGate-KAS: Envelope from: RazorGate-KAS: Version: 5.5.3 RazorGate-KAS: LuaCore: 80 2014-11-10_18-01-23 260f8afb9361da3c7edfd3a8e3a4ca908191ad29 RazorGate-KAS: Lua profiles 69136 [Nov 12 2014] RazorGate-KAS: Method: none Received: from deimos.wickedbsd.net (88.193.168.229) by johanna3.inet.fi (9.0.002.03-2-gbe5d057) id 59A30C4900D63AD0; Tue, 5 Sep 2017 08:15:59 +0300 Received: from deimos.wickedbsd.net (localhost [127.0.0.1]) by deimos.wickedbsd.net (OpenSMTPD) with ESMTP id 127265a8; Tue, 5 Sep 2017 08:15:57 +0300 (EEST) Received: from deimos.wickedbsd.net (localhost [127.0.0.1]) by deimos.wickedbsd.net (OpenSMTPD) with ESMTP id 6bc86eaa; Tue, 5 Sep 2017 08:15:52 +0300 (EEST) Received: from phobos.wickedbsd.net.wickedbsd.net (10.0.0.6 [10.0.0.6]) by mail.wickedbsd.net (OpenSMTPD) with ESMTPSA id 626e903d (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 5 Sep 2017 08:15:52 +0300 (EEST) From: timo.myyra@wickedbsd.net (Timo =?utf-8?Q?Myyr=C3=A4?=) To: Per Bothner Cc: kawa@sourceware.org Subject: Re: please test kawa-3.0 release candidate 2 References: <871sno72ix.fsf@phobos.wickedbsd.net> <18ee4550-88d2-526f-a32c-64a7d193ffc7@bothner.com> Date: Tue, 05 Sep 2017 05:16:00 -0000 In-Reply-To: <18ee4550-88d2-526f-a32c-64a7d193ffc7@bothner.com> (Per Bothner's message of "Mon, 4 Sep 2017 20:16:14 -0700") Message-ID: <87r2vl3eyw.fsf@phobos.wickedbsd.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-SW-Source: 2017-q3/txt/msg00034.txt.bz2 Per Bothner writes: > On 09/02/2017 10:51 PM, Timo Myyr=C3=A4 wrote: > >> Running the tests won't work fully on OpenBSD yet, there are open issues= on >> Gitlab with patches for these: >> https://gitlab.com/kashell/Kawa/issues/17 >> https://gitlab.com/kashell/Kawa/issues/18 > > Oops. Checked in now. > >> Man pages seem to copy nicely now but I looked at them with mandoc lint = and they >> contain few minor style errors: >> >> $ mandoc -Tlint qexo.man >> mandoc: qexo.man:95:41: STYLE: whitespace at end of input line >> mandoc: qexo.man:96:40: STYLE: whitespace at end of input line >> mandoc: qexo.man:102:5: STYLE: unterminated quoted argument >> mandoc: qexo.man:1:2: WARNING: missing date, using today's date: TH >> mandoc: qexo.man:87:2: WARNING: skipping paragraph macro: P empty >> mandoc: qexo.man:94:2: WARNING: skipping paragraph macro: P empty >> mandoc: qexo.man:101:2: WARNING: skipping paragraph macro: P empty >> >> $ mandoc -Tlint kawa.man >> mandoc: kawa.man:84:41: STYLE: whitespace at end of input line >> mandoc: kawa.man:1:2: WARNING: missing date, using today's date: TH >> mandoc: kawa.man:83:2: WARNING: skipping paragraph macro: P empty > > I checked in most of your patches. > > However, I'm not sure about how to add a date to the TH macro. > Manually putting a date in there seems wrong. Better might be > to use the same date as the UPDATED macro in version.texi. > Or maybe the date *should* be manually updated - these are files > that are seldom updated anyway. Hmm, probably best to add some code to update the date when building the release. That way the date in man page would reflect the release date of kawa. It would make the date shown in man page useful.=20 Perhaps add some place holder in the man page and rewrite it in Makefile: kawa.man: sed "s/#RELEASE_DATE#/$(date +%Y-%m-%d)/" kawa.man.tmp > kawa.man qexo.man: sed "s/#RELEASE_DATE#/$(date +%Y-%m-%d)/" qexo.man.tmp > qexo.man The above is just example, I haven't tested it yet. Timo