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 2DAE315815E for ; Sat, 3 Feb 2024 13:00:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCAE12BC03D; Sat, 3 Feb 2024 13:00:52 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id 9AF442BC03D for ; Sat, 3 Feb 2024 13:00:52 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AE2173431D1 for ; Sat, 3 Feb 2024 13:00:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C992014CA for ; Sat, 3 Feb 2024 13:00:48 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1706965208.97cb2887079dbffb0581138c42307f0a2b01eae7.xgqt@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-r2.ebuild X-VCS-Directories: app-emacs/ess/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 97cb2887079dbffb0581138c42307f0a2b01eae7 X-VCS-Branch: master Date: Sat, 3 Feb 2024 13:00:48 +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: e6bddd51-4141-4e94-a71f-a6cec2dbb54d X-Archives-Hash: 43083943f7bebce1f209e5397fcf4154 commit: 97cb2887079dbffb0581138c42307f0a2b01eae7 Author: Maciej Barć gentoo org> AuthorDate: Sat Feb 3 12:13:53 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Feb 3 13:00:08 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97cb2887 app-emacs/ess: drop old 18.10.2-r2 Signed-off-by: Maciej Barć gentoo.org> app-emacs/ess/ess-18.10.2-r2.ebuild | 51 ------------------------------------- 1 file changed, 51 deletions(-) diff --git a/app-emacs/ess/ess-18.10.2-r2.ebuild b/app-emacs/ess/ess-18.10.2-r2.ebuild deleted file mode 100644 index 85918a415110..000000000000 --- a/app-emacs/ess/ess-18.10.2-r2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit elisp readme.gentoo-r1 - -DESCRIPTION="Emacs Speaks Statistics" -HOMEPAGE="https://ess.r-project.org/" -SRC_URI="https://ess.r-project.org/downloads/ess/${P}.tgz" - -LICENSE="GPL-2+ GPL-3+ Texinfo-manual" -SLOT="0" -KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux" -RESTRICT="test" - -BDEPEND="app-text/texi2html - virtual/latex-base" - -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 -} - -src_install() { - emake PREFIX="${ED}/usr" \ - LISPDIR="${ED}${SITELISP}/ess" \ - ETCDIR="${ED}${SITEETC}/ess" \ - DOCDIR="${ED}/usr/share/doc/${PF}" \ - install - - # Version 18* doesn't install *.el files any more #685978 - elisp-install ${PN} lisp/*.{el,elc} lisp/obsolete/*.{el,elc} - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - - # Most documentation is installed by the package's build system. - dodoc ChangeLog *NEWS doc/TODO - newdoc doc/ChangeLog ChangeLog-doc - - DOC_CONTENTS="Please see /usr/share/doc/${PF} for the complete - documentation. Usage hints are in ${SITELISP}/${PN}/ess-site.el ." - readme.gentoo_create_doc -}