From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4621459CA2 for ; Sat, 13 Feb 2016 09:59:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD72AE07D5; Sat, 13 Feb 2016 09:59:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6B8C1E07D5 for ; Sat, 13 Feb 2016 09:59:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6EF5F340BC1 for ; Sat, 13 Feb 2016 09:59:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 053AA150 for ; Sat, 13 Feb 2016 09:59:19 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1455357548.45cd7c09cf2f2e664af3e1e90770318372288eb9.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/bison/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/bison/bison-3.0.4-r1.ebuild X-VCS-Directories: sys-devel/bison/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 45cd7c09cf2f2e664af3e1e90770318372288eb9 X-VCS-Branch: master Date: Sat, 13 Feb 2016 09:59:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fa2aaab4-a0e7-48f6-9353-c14b6f13223d X-Archives-Hash: 4abe197180c481098cea7cb82858123e commit: 45cd7c09cf2f2e664af3e1e90770318372288eb9 Author: Mike Frysinger gentoo org> AuthorDate: Sat Feb 13 09:44:29 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Feb 13 09:59:08 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45cd7c09 sys-devel/bison: avoid bison.info regeneration #574492 The build logic generates a timestamp from the info pages, but does so with a timezone aware function, and then truncates it to granularity of days. If your TZ happens to wrap the timezone over to a diff day, then the build logic updates some files and runs makeinfo. Clobber the info timestamp so it's newer than the sources and the TZ state doesn't work. sys-devel/bison/bison-3.0.4-r1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys-devel/bison/bison-3.0.4-r1.ebuild b/sys-devel/bison/bison-3.0.4-r1.ebuild index 1fcf9c9..8a24b52 100644 --- a/sys-devel/bison/bison-3.0.4-r1.ebuild +++ b/sys-devel/bison/bison-3.0.4-r1.ebuild @@ -29,6 +29,8 @@ src_prepare() { # The makefiles make the man page depend on the configure script # which we patched above. Touch it to prevent regeneration. touch doc/bison.1 #548778 #538300#9 + # Avoid regenerating the info page when the timezone is diff. + touch doc/bison.info #574492 } src_configure() {