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 212BD138334 for ; Sat, 14 Dec 2019 22:52:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59265E0841; Sat, 14 Dec 2019 22:52:39 +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 2A68EE0841 for ; Sat, 14 Dec 2019 22:52:39 +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 8D42434D87B for ; Sat, 14 Dec 2019 22:52:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56B19905 for ; Sat, 14 Dec 2019 22:52:35 +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: <1576363937.7eab5531d6186d46c2597689b5e7a5f00b9ab0d9.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-xemacs/ebuild-mode/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-xemacs/ebuild-mode/ebuild-mode-1.47.ebuild app-xemacs/ebuild-mode/ebuild-mode-1.48.ebuild X-VCS-Directories: app-xemacs/ebuild-mode/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 7eab5531d6186d46c2597689b5e7a5f00b9ab0d9 X-VCS-Branch: master Date: Sat, 14 Dec 2019 22:52:35 +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: 641ba348-f278-4126-83a6-038e2dc97ce3 X-Archives-Hash: 2b1a597d64d3cedc66133978505e892c commit: 7eab5531d6186d46c2597689b5e7a5f00b9ab0d9 Author: Ulrich Müller gentoo org> AuthorDate: Sat Dec 14 19:04:31 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Dec 14 22:52:17 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eab5531 app-xemacs/ebuild-mode: Inline functions from xemacs-elisp.eclass. Acked-by: Mats Lidell gentoo.org> Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: Ulrich Müller gentoo.org> app-xemacs/ebuild-mode/ebuild-mode-1.47.ebuild | 23 +++++++++++++++++------ app-xemacs/ebuild-mode/ebuild-mode-1.48.ebuild | 23 +++++++++++++++++------ 2 files changed, 34 insertions(+), 12 deletions(-) diff --git a/app-xemacs/ebuild-mode/ebuild-mode-1.47.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-1.47.ebuild index e65982b198e..9ed99b9368d 100644 --- a/app-xemacs/ebuild-mode/ebuild-mode-1.47.ebuild +++ b/app-xemacs/ebuild-mode/ebuild-mode-1.47.ebuild @@ -3,8 +3,6 @@ EAPI=7 -inherit xemacs-elisp - DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" @@ -15,11 +13,24 @@ KEYWORDS="amd64 hppa x86" RDEPEND=">=app-editors/xemacs-21.4.20-r5 app-xemacs/sh-script" -DEPEND="${RDEPEND}" +BDEPEND="${RDEPEND}" src_compile() { - ${XEMACS_BATCH_CLEAN} -eval "(add-to-list 'load-path \".\")" \ - -f batch-byte-compile ebuild-mode.el gentoo-newsitem-mode.el || die - xemacs-elisp-make-autoload-file \ + local XEMACS="${EPREFIX}/usr/bin/xemacs" + + "${XEMACS}" -batch -q --no-site-file \ + -eval "(add-to-list 'load-path \".\")" \ + -f batch-byte-compile \ + ebuild-mode.el gentoo-newsitem-mode.el || die + + "${XEMACS}" -batch -q --no-site-file \ + -eval "(setq autoload-package-name \"${PN}\")" \ + -eval "(setq generated-autoload-file \"${S}/auto-autoloads.el\")" \ + -l autoload -f batch-update-autoloads \ ebuild-mode.el gentoo-newsitem-mode.el || die } + +src_install() { + insinto /usr/share/xemacs/site-packages/lisp/${PN} + doins *.el *.elc +} diff --git a/app-xemacs/ebuild-mode/ebuild-mode-1.48.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-1.48.ebuild index ad5a9ccad6d..d329637b970 100644 --- a/app-xemacs/ebuild-mode/ebuild-mode-1.48.ebuild +++ b/app-xemacs/ebuild-mode/ebuild-mode-1.48.ebuild @@ -3,8 +3,6 @@ EAPI=7 -inherit xemacs-elisp - DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" @@ -15,11 +13,24 @@ KEYWORDS="~amd64 ~hppa ~x86" RDEPEND=">=app-editors/xemacs-21.4.20-r5 app-xemacs/sh-script" -DEPEND="${RDEPEND}" +BDEPEND="${RDEPEND}" src_compile() { - ${XEMACS_BATCH_CLEAN} -eval "(add-to-list 'load-path \".\")" \ - -f batch-byte-compile ebuild-mode.el gentoo-newsitem-mode.el || die - xemacs-elisp-make-autoload-file \ + local XEMACS="${EPREFIX}/usr/bin/xemacs" + + "${XEMACS}" -batch -q --no-site-file \ + -eval "(add-to-list 'load-path \".\")" \ + -f batch-byte-compile \ + ebuild-mode.el gentoo-newsitem-mode.el || die + + "${XEMACS}" -batch -q --no-site-file \ + -eval "(setq autoload-package-name \"${PN}\")" \ + -eval "(setq generated-autoload-file \"${S}/auto-autoloads.el\")" \ + -l autoload -f batch-update-autoloads \ ebuild-mode.el gentoo-newsitem-mode.el || die } + +src_install() { + insinto /usr/share/xemacs/site-packages/lisp/${PN} + doins *.el *.elc +}