From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 340191396D1 for ; Tue, 3 Oct 2017 22:03:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78169E0CB0; Tue, 3 Oct 2017 22:03:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5B55BE0CB0 for ; Tue, 3 Oct 2017 22:03:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 775FD3417B4 for ; Tue, 3 Oct 2017 22:03:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DB1B9098 for ; Tue, 3 Oct 2017 22:03:55 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1507068223.46613dd254cb789aabc84dd7e77427fb1d419fb1.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/rt/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/rt/rt-4.2.12-r1.ebuild www-apps/rt/rt-4.4.1.ebuild X-VCS-Directories: www-apps/rt/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 46613dd254cb789aabc84dd7e77427fb1d419fb1 X-VCS-Branch: master Date: Tue, 3 Oct 2017 22:03:55 +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: dd61ffb3-50ab-4b0d-8846-36c49ace1d94 X-Archives-Hash: e071b45dc71aaf332d1b2363aa3683a1 commit: 46613dd254cb789aabc84dd7e77427fb1d419fb1 Author: Kent Fredric gentoo org> AuthorDate: Tue Sep 26 17:32:25 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Oct 3 22:03:43 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46613dd2 www-apps/rt: fix loading of Date::Manip w/ Factory TZ. On machines where TZ=Factory, such as ones freshly rolled out from gentoo install media, `use Date::Manip` fails. This leads to a failure at configure and install time. Ideally, end users will need to configure their machines properly. But their Timezone being right should have no bearing on the ability to build this package. Package-Manager: Portage-2.3.8, Repoman-2.3.3 Closes: https://github.com/gentoo/gentoo/pull/5795 www-apps/rt/rt-4.2.12-r1.ebuild | 6 +++++- www-apps/rt/rt-4.4.1.ebuild | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/www-apps/rt/rt-4.2.12-r1.ebuild b/www-apps/rt/rt-4.2.12-r1.ebuild index 00b268f8c87..011c42d0189 100644 --- a/www-apps/rt/rt-4.2.12-r1.ebuild +++ b/www-apps/rt/rt-4.2.12-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -231,6 +231,10 @@ src_configure() { web="apache" depsconf+=" --with-MODPERL2" fi + # Any loading Date::Manip from here on + # may fail if TZ=Factory as it is on gentoo install + # media ( affects install as well ) + export TZ=UTC ./configure --enable-layout=Gentoo \ --with-bin-owner=rt \ diff --git a/www-apps/rt/rt-4.4.1.ebuild b/www-apps/rt/rt-4.4.1.ebuild index 3fa6e51a7e6..35232292400 100644 --- a/www-apps/rt/rt-4.4.1.ebuild +++ b/www-apps/rt/rt-4.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -236,6 +236,10 @@ src_configure() { web="apache" depsconf+=" --with-MODPERL2" fi + # Any loading Date::Manip from here on + # may fail if TZ=Factory as it is on gentoo install + # media ( affects install as well ) + export TZ=UTC ./configure --enable-layout=Gentoo \ --with-bin-owner=rt \