From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: bug#27593: [PATCH] gnu: groff: Remove timestamps. Date: Thu, 6 Jul 2017 03:01:44 +0200 Message-ID: <20170706010144.31568-1-dannym@scratchpost.org> References: <20170706025451.312ddebe@scratchpost.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38739) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dSvBG-00046c-NQ for bug-guix@gnu.org; Wed, 05 Jul 2017 21:02:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dSvBC-0005XI-S8 for bug-guix@gnu.org; Wed, 05 Jul 2017 21:02:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51271) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dSvBC-0005Wv-Om for bug-guix@gnu.org; Wed, 05 Jul 2017 21:02:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dSvBC-0006Ei-D9 for bug-guix@gnu.org; Wed, 05 Jul 2017 21:02:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20170706025451.312ddebe@scratchpost.org> 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: 27593@debbugs.gnu.org Fixes . * gnu/packages/groff.scm (groff)[source]: Remove timestamps. --- gnu/packages/groff.scm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm index 46e1ccf23..e5dd732ab 100644 --- a/gnu/packages/groff.scm +++ b/gnu/packages/groff.scm @@ -40,7 +40,20 @@ (uri (string-append "mirror://gnu/groff/groff-" version ".tar.gz")) (sha256 (base32 - "1998v2kcs288d3y7kfxpvl369nqi06zbbvjzafyvyl3pr7bajj1s")))) + "1998v2kcs288d3y7kfxpvl369nqi06zbbvjzafyvyl3pr7bajj1s")) + (modules '((guix build utils))) + (snippet + '(begin + (substitute* "mdate.sh" + (("^LANGUAGE=") " + +echo \"1 Jan 1970\" +exit 0 + +")) + (substitute* '("src/devices/grops/ps.cpp" + "src/devices/grohtml/post-html.cpp") + (("time\\(0\\)") "0")))))) (build-system gnu-build-system) (outputs '("out" "doc")) ;12MiB of PS, PDF, HTML, and examples