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 34C7A1582EF for ; Sat, 08 Mar 2025 06:32:20 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1DD8B342F9D for ; Sat, 08 Mar 2025 06:32:20 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 1D40111027C; Sat, 08 Mar 2025 06:32:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 179FE11027C for ; Sat, 08 Mar 2025 06:32:19 +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 B739C340C76 for ; Sat, 08 Mar 2025 06:32:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E1CB280C for ; Sat, 08 Mar 2025 06:32:17 +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: <1741415360.77074b4b1f0c2b8ea900a40f814879576a96cd0b.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: app-emacs/emacs-common/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: app-emacs/emacs-common/emacs-common-9999.ebuild X-VCS-Directories: app-emacs/emacs-common/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 77074b4b1f0c2b8ea900a40f814879576a96cd0b X-VCS-Branch: master Date: Sat, 08 Mar 2025 06:32:17 +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: b2f1168c-ed7d-4735-b42b-939681ae0ce9 X-Archives-Hash: 106d08666ceea43a46381d2a4c704f68 commit: 77074b4b1f0c2b8ea900a40f814879576a96cd0b Author: Ulrich Müller gentoo org> AuthorDate: Sat Mar 8 06:29:20 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Mar 8 06:29:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=77074b4b app-emacs/emacs-common: Use upstream README files Signed-off-by: Ulrich Müller gentoo.org> app-emacs/emacs-common/emacs-common-9999.ebuild | 28 ++++--------------------- 1 file changed, 4 insertions(+), 24 deletions(-) diff --git a/app-emacs/emacs-common/emacs-common-9999.ebuild b/app-emacs/emacs-common/emacs-common-9999.ebuild index 6db48eb..99ccf3a 100644 --- a/app-emacs/emacs-common/emacs-common-9999.ebuild +++ b/app-emacs/emacs-common/emacs-common-9999.ebuild @@ -64,31 +64,11 @@ src_install() { fi fi - DOC_CONTENTS="All site initialisation for Gentoo-installed packages is - added to ${SITELISP}/site-gentoo.el. In order for this site - initialisation to be loaded for all users automatically, a default - site startup file /etc/emacs/site-start.el is installed. You are - responsible for maintenance of this file. - \n\nAlternatively, individual users can add the following command: - \n\n\t(require 'site-gentoo) - \n\nto their ~/.emacs initialisation files, or, for greater - flexibility, users may load single package-specific initialisation - files from the ${SITELISP}/site-gentoo.d/ directory." - - [[ -d /run/openrc ]] && DOC_CONTENTS+="\n\n\nTo have OpenRC - (version 0.60 or later) automatically start Emacs as a daemon in - your user session, login as normal user and execute the command: - \n\n\t$ rc-update --user add emacs default - \n\nThis will add emacs to the default runlevel in - ~/.config/rc/runlevels/. - \n\nIf you want to start your user's Emacs daemon at system startup - and have it persist between login sessions, do the following in - addition (as the superuser): - \n\n\t# ln -s user /etc/init.d/user. - \n\t# rc-service user. start - \n\t# rc-update add user. default - \n\nSee OpenRC's user guide for the full documentation." + dodoc README.daemon + local DOC_CONTENTS DISABLE_AUTOFORMATTING=1 + DOC_CONTENTS=$(sed -e "s:@SITELISP@:${EPREFIX}${SITELISP}:g" \ + README.gentoo.in) || die readme.gentoo_create_doc }