From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CEF5815827B for ; Mon, 01 Sep 2025 12:24:54 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 910F8340EC7 for ; Mon, 01 Sep 2025 12:24:54 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 91FAD110562; Mon, 01 Sep 2025 12:24:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 89BF1110562 for ; Mon, 01 Sep 2025 12:24:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3FBF1340E8D for ; Mon, 01 Sep 2025 12:24:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2BF8318B for ; Mon, 01 Sep 2025 12:24:51 +0000 (UTC) From: "Mats Lidell" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mats Lidell" Message-ID: <1756729434.779460f9e1663e6c5437aaba3192637bba416509.matsl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/xemacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/xemacs/xemacs-21.5.36-r2.ebuild app-editors/xemacs/xemacs-21.5.9999.ebuild X-VCS-Directories: app-editors/xemacs/ X-VCS-Committer: matsl X-VCS-Committer-Name: Mats Lidell X-VCS-Revision: 779460f9e1663e6c5437aaba3192637bba416509 X-VCS-Branch: master Date: Mon, 01 Sep 2025 12:24:51 +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: adfd16de-1e63-4d1d-97e7-c5323c5d7d7a X-Archives-Hash: 41390014baaf33fcf4b2357aabe3d66e commit: 779460f9e1663e6c5437aaba3192637bba416509 Author: Mats Lidell gentoo org> AuthorDate: Mon Sep 1 12:21:54 2025 +0000 Commit: Mats Lidell gentoo org> CommitDate: Mon Sep 1 12:23:54 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=779460f9 app-editors/xemacs: disable ccache in src_compile ccache does not support #embed directive https://bugs.gentoo.org/959756 Signed-off-by: Mats Lidell gentoo.org> app-editors/xemacs/xemacs-21.5.36-r2.ebuild | 3 ++- app-editors/xemacs/xemacs-21.5.9999.ebuild | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app-editors/xemacs/xemacs-21.5.36-r2.ebuild b/app-editors/xemacs/xemacs-21.5.36-r2.ebuild index 6d8ca659530b..d81731910682 100644 --- a/app-editors/xemacs/xemacs-21.5.36-r2.ebuild +++ b/app-editors/xemacs/xemacs-21.5.36-r2.ebuild @@ -65,7 +65,6 @@ src_prepare() { eapply "${FILESDIR}/${P}-failing-tests.patch" eapply "${FILESDIR}/${P}-failing-tests-2.patch" eapply "${FILESDIR}/${P}-configure-postgresql.patch" - eapply "${FILESDIR}/${P}-embed.patch" eapply_user eautoconf @@ -186,6 +185,8 @@ src_configure() { } src_compile() { + # bug #959756 + local -x CCACHE_DISABLE=1 emake EMACSLOADPATH="${S}"/lisp } diff --git a/app-editors/xemacs/xemacs-21.5.9999.ebuild b/app-editors/xemacs/xemacs-21.5.9999.ebuild index ca2519e9d60a..b6aa207a9c9c 100644 --- a/app-editors/xemacs/xemacs-21.5.9999.ebuild +++ b/app-editors/xemacs/xemacs-21.5.9999.ebuild @@ -185,6 +185,8 @@ src_configure() { } src_compile() { + # bug: #959756 + local -x CCACHE_DISABLE=1 emake EMACSLOADPATH="${S}"/lisp }