From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: bug#32698: Fwd: Re: bug#32698: Package azr3-1.2.3 fails during install Date: Sun, 07 Oct 2018 23:40:00 +0200 Message-ID: <87va6dqvv3.fsf@elephly.net> References: <87y3c8jgnv.fsf@elephly.net> <00b59718-250a-9ffc-6837-553d7773652a@freenet.de> <87d0squ4cc.fsf@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38250) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g9GnS-0007XA-De for bug-guix@gnu.org; Sun, 07 Oct 2018 17:41:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g9GnP-0007AC-6x for bug-guix@gnu.org; Sun, 07 Oct 2018 17:41:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35449) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1g9GnO-00078s-Vc for bug-guix@gnu.org; Sun, 07 Oct 2018 17:41:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1g9GnO-0002Yv-M2 for bug-guix@gnu.org; Sun, 07 Oct 2018 17:41:02 -0400 In-Reply-To: Sender: "Debbugs-submit" Resent-To: bug-guix@gnu.org Resent-Message-ID: List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: t_w_@freenet.de Cc: 32698-done@debbugs.gnu.org [Resending because this email could not be delivered to debbugs.] Ricardo Wurmus writes: > Thorsten Wilms writes: > >> On 11.09.2018 15:40, Ricardo Wurmus wrote: >>> >>> Hi Thorsten, >>> >>>> //gnu/store/rxn9php37bgcvznjiq0mvvr6a4s8zayg-azr3-1.2.3/share/doc/azr3= -jack >>>> man_section=3D`echo azr3.1 | sed 's/.*\.\([0-9]\)/\1/'`; mkdir -p >>>> //gnu/store/rxn9php37bgcvznjiq0mvvr6a4s8zayg-azr3-1.2.3/share/man/man$= man_section; >>>> gzip -c azr3.1 > >>>> //gnu/store/rxn9php37bgcvznjiq0mvvr6a4s8zayg-azr3-1.2.3/share/man/man$= man_section/`basename >>>> azr3.1`.gz >>>> gzip: azr3.1: warning: file timestamp out of range for gzip format >>> >>> We might be able to fix this with a build phase like this: >>> >>> --8<---------------cut here---------------start------------->8--- >>> (add-before 'reset-gzip-timestamps 'make-manpages-writable >>> (lambda* (#:key outputs #:allow-other-keys) >>> (map make-file-writable >>> (find-files (string-append (assoc-ref outputs "out") >>> "/share/man") >>> ".*\\.gz$")) >>> #t)) >>> --8<---------------cut here---------------end--------------->8--- >>> >>> Would you like to give that a try? >> >> I got the exact same message as before, now with your snippet inserted >> as follows, testing via >> ./pre-inst-env guix build azr3: > > Ah, the error is about the input to gzip; this error happens during > installation. So all that=E2=80=99s needed is to update the timestamp of= the > man page source. > > This is now fixed with commit ef1f9acf4. --=20 Ricardo