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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BBCA6158089 for ; Thu, 5 Oct 2023 07:21:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F11B22BC028; Thu, 5 Oct 2023 07:21:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DC8BA2BC028 for ; Thu, 5 Oct 2023 07:21:24 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 286E0335CE9 for ; Thu, 5 Oct 2023 07:21:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A430A92F for ; Thu, 5 Oct 2023 07:21:22 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1696490429.6457a77c02ec1246577c9d93597b6272266ba52e.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/ess/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/ess/ess-18.10.2-r1.ebuild app-emacs/ess/ess-18.10.2-r2.ebuild X-VCS-Directories: app-emacs/ess/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 6457a77c02ec1246577c9d93597b6272266ba52e X-VCS-Branch: master Date: Thu, 5 Oct 2023 07:21:22 +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: b31c4689-675e-492e-ab08-34d64082524d X-Archives-Hash: 96ab6c91f0ee954020df544f33a60d47 commit: 6457a77c02ec1246577c9d93597b6272266ba52e Author: Ulrich Müller gentoo org> AuthorDate: Thu Oct 5 07:03:30 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Oct 5 07:20:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6457a77c app-emacs/ess: Replace references to font-lock-reference-face Variable font-lock-reference-face was renamed to font-lock-constant-face and is obsolete since 1998 (Emacs 20.3): https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=8acf2292d9a7f7fc0f326a6186423d087f5a7f30 The alias was finally removed in 2022 (Emacs 29.1): https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=107f832577123ea7ebe867cba55601d0142f546f Closes: https://bugs.gentoo.org/915145 Signed-off-by: Ulrich Müller gentoo.org> app-emacs/ess/{ess-18.10.2-r1.ebuild => ess-18.10.2-r2.ebuild} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-emacs/ess/ess-18.10.2-r1.ebuild b/app-emacs/ess/ess-18.10.2-r2.ebuild similarity index 88% rename from app-emacs/ess/ess-18.10.2-r1.ebuild rename to app-emacs/ess/ess-18.10.2-r2.ebuild index 9b0ee42f87c9..85918a415110 100644 --- a/app-emacs/ess/ess-18.10.2-r1.ebuild +++ b/app-emacs/ess/ess-18.10.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -20,6 +20,12 @@ BDEPEND="app-text/texi2html PATCHES=( "${FILESDIR}"/${P}-emacs-28.patch ) SITEFILE="50${PN}-gentoo.el" +src_prepare() { + default + sed -i -e 's/font-lock-reference-face/font-lock-constant-face/g' \ + lisp/*.el || die +} + src_compile() { default }