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 572B7158092 for ; Sun, 12 Sep 2021 23:57:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 608F9E084A; Sun, 12 Sep 2021 23:57:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7C540E084A for ; Sun, 12 Sep 2021 23:57:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C2E16342E08 for ; Sun, 12 Sep 2021 23:57:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 011354E for ; Sun, 12 Sep 2021 23:57:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1631490996.32467195a7c32ef88f84e81ac1fcc05abd19ccfa.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gd/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gd/gd-2.3.3.ebuild X-VCS-Directories: media-libs/gd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 32467195a7c32ef88f84e81ac1fcc05abd19ccfa X-VCS-Branch: master Date: Sun, 12 Sep 2021 23:57:45 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cfe85f8a-0ef1-48e1-acb5-a1ca698b917a X-Archives-Hash: b13a9a3a832b0b392c35a6926461c87c commit: 32467195a7c32ef88f84e81ac1fcc05abd19ccfa Author: Sam James gentoo org> AuthorDate: Sun Sep 12 23:56:36 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 12 23:56:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32467195 media-libs/gd: set TMPDIR for tests Useful to respect ${T} for temporary work from installing ebuilds, although it passed tests without this for me. See: https://github.com/libgd/libgd/issues/763 Signed-off-by: Sam James gentoo.org> media-libs/gd/gd-2.3.3.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/media-libs/gd/gd-2.3.3.ebuild b/media-libs/gd/gd-2.3.3.ebuild index 5797a5d83b0..e890c90f2dd 100644 --- a/media-libs/gd/gd-2.3.3.ebuild +++ b/media-libs/gd/gd-2.3.3.ebuild @@ -84,6 +84,11 @@ multilib_src_configure() { ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } +multilib_src_test() { + # See https://github.com/libgd/libgd/issues/763 (although it still passed without it here?) + TMPDIR="${T}" default +} + multilib_src_install_all() { dodoc README.md find "${ED}" -name '*.la' -delete || die