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 078CE139695 for ; Tue, 28 Feb 2017 19:24:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5311DE0D2E; Tue, 28 Feb 2017 19:23:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 218B5E0D2E for ; Tue, 28 Feb 2017 19:23:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E0DA834164C for ; Tue, 28 Feb 2017 19:23:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5676357D8 for ; Tue, 28 Feb 2017 19:23:06 +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: <1488232143.0f5206c7ecb03ce261c57de3d600fdb025adabc8.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:ebuild-mode commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog ebuild-mode.el ebuild-mode.texi X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 0f5206c7ecb03ce261c57de3d600fdb025adabc8 X-VCS-Branch: ebuild-mode Date: Tue, 28 Feb 2017 19:23:06 +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-Archives-Salt: 0d070871-d1e0-4082-9921-fca815c0f7e2 X-Archives-Hash: d3e27ba513dcca45783e8141baf6e0c9 commit: 0f5206c7ecb03ce261c57de3d600fdb025adabc8 Author: Ulrich Müller gentoo org> AuthorDate: Mon Feb 27 21:49:03 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Feb 27 21:49:03 2017 +0000 URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=0f5206c7 Update documentation to be less Portage specific. * ebuild-mode.el: * ebuild-mode.texi: Update documentation to use generic terms where possible, instead of being Portage specific. ChangeLog | 6 ++++++ ebuild-mode.el | 10 +++++----- ebuild-mode.texi | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2f327d2..fe1ced8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-02-27 Ulrich Müller + + * ebuild-mode.el: + * ebuild-mode.texi: Update documentation to use generic terms + where possible, instead of being Portage specific. + 2017-02-26 Ulrich Müller * Version 1.32 released. diff --git a/ebuild-mode.el b/ebuild-mode.el index e32b3d0..3f3e0fe 100644 --- a/ebuild-mode.el +++ b/ebuild-mode.el @@ -73,7 +73,7 @@ A formfeed is not considered whitespace by this function." (defvar ebuild-mode-portdir "/usr/portage" - "Location of the Portage tree.") + "Location of the ebuild repository.") (defvar ebuild-mode-arch-list (or @@ -85,7 +85,7 @@ A formfeed is not considered whitespace by this function." (replace-match "")) (sort (split-string (buffer-string)) 'ebuild-mode-arch-lessp)) (file-error nil)) - ;; could not read architectures from Portage tree, so fall back to default + ;; could not read architectures from repository, so fall back to default '("alpha" "amd64" "arm" "hppa" "ia64" "m68k" "mips" "ppc" "ppc64" "s390" "sh" "sparc" "x86" "amd64-fbsd" "sparc-fbsd" "x86-fbsd")) "List of architectures.") @@ -117,7 +117,7 @@ A formfeed is not considered whitespace by this function." (directory-files (concat ebuild-mode-portdir "/licenses") nil "\\`[^.]") (file-error nil)) - "List of licenses, determined from the Portage tree.") + "List of licenses, determined from the ebuild repository.") (defvar ebuild-mode-eclasses (condition-case nil @@ -126,7 +126,7 @@ A formfeed is not considered whitespace by this function." (directory-files (concat ebuild-mode-portdir "/eclass") nil "\\.eclass\\'")) (file-error nil)) - "List of eclasses, determined from the Portage tree.") + "List of eclasses, determined from the ebuild repository.") (defvar ebuild-mode-restrict-list '("binchecks" "bindist" "fetch" "installsources" "mirror" @@ -228,7 +228,7 @@ Optional argument LIMIT restarts collection after that number of elements." ;;;###autoload (define-derived-mode ebuild-mode shell-script-mode "Ebuild" - "Major mode for Portage .ebuild and .eclass files." + "Major mode for Gentoo .ebuild and .eclass files." (if (featurep 'xemacs) ;; make-local-hook gives a byte-compiler warning in GNU Emacs (make-local-hook 'write-contents-hooks)) diff --git a/ebuild-mode.texi b/ebuild-mode.texi index 349a64b..1b616b2 100644 --- a/ebuild-mode.texi +++ b/ebuild-mode.texi @@ -74,7 +74,7 @@ As the ebuild format is based on the Bash syntax, sh-mode is called as a base, where ebuild specific things are added/changed on top. If font-locking is enabled, keywords are highlighted, both the standard -set available from vanilla Portage and special functions from all common +set defined by the package manager and special functions from all common eclasses. Missing highlighting should be reported on @code{https://bugs.gentoo.org/}.