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 DC9D315808B for ; Thu, 24 Mar 2022 06:44:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E744DE0893; Thu, 24 Mar 2022 06:44:54 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43157E0893 for ; Thu, 24 Mar 2022 06:44:54 +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 9043A342BC1 for ; Thu, 24 Mar 2022 06:44:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D42DE1BD for ; Thu, 24 Mar 2022 06:44:50 +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: <1648104280.2588a1fdb15b806daf793ad02121de05bbe2386d.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: eclass/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: eclass/elisp-common.eclass eclass/elisp.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 2588a1fdb15b806daf793ad02121de05bbe2386d X-VCS-Branch: master Date: Thu, 24 Mar 2022 06:44:50 +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: 74f95790-3c83-4065-ab72-f7d7168a9ca4 X-Archives-Hash: b415ce7c9051e73190f0daa73684507a commit: 2588a1fdb15b806daf793ad02121de05bbe2386d Author: Ulrich Müller gentoo org> AuthorDate: Thu Mar 24 06:44:40 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Mar 24 06:44:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=2588a1fd elisp*.eclass: Sync from Gentoo repository Signed-off-by: Ulrich Müller gentoo.org> eclass/elisp-common.eclass | 16 ++++++++-------- eclass/elisp.eclass | 11 ++++++----- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index b2c4f10..a821e4a 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -171,44 +171,44 @@ case ${EAPI:-0} in *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -# @ECLASS-VARIABLE: SITELISP +# @ECLASS_VARIABLE: SITELISP # @DESCRIPTION: # Directory where packages install Emacs Lisp files. SITELISP=/usr/share/emacs/site-lisp -# @ECLASS-VARIABLE: SITEETC +# @ECLASS_VARIABLE: SITEETC # @DESCRIPTION: # Directory where packages install miscellaneous (not Lisp) files. SITEETC=/usr/share/emacs/etc -# @ECLASS-VARIABLE: EMACSMODULES +# @ECLASS_VARIABLE: EMACSMODULES # @DESCRIPTION: # Directory where packages install dynamically loaded modules. # May contain a @libdir@ token which will be replaced by $(get_libdir). EMACSMODULES=/usr/@libdir@/emacs/modules -# @ECLASS-VARIABLE: EMACS +# @ECLASS_VARIABLE: EMACS # @DESCRIPTION: # Path of Emacs executable. EMACS=${EPREFIX}/usr/bin/emacs -# @ECLASS-VARIABLE: EMACSFLAGS +# @ECLASS_VARIABLE: EMACSFLAGS # @DESCRIPTION: # Flags for executing Emacs in batch mode. # These work for Emacs versions 18-24, so don't change them. EMACSFLAGS="-batch -q --no-site-file" -# @ECLASS-VARIABLE: BYTECOMPFLAGS +# @ECLASS_VARIABLE: BYTECOMPFLAGS # @DESCRIPTION: # Emacs flags used for byte-compilation in elisp-compile(). BYTECOMPFLAGS="-L ." -# @ECLASS-VARIABLE: NEED_EMACS +# @ECLASS_VARIABLE: NEED_EMACS # @DESCRIPTION: # The minimum Emacs version required for the package. : ${NEED_EMACS:=23.1} -# @ECLASS-VARIABLE: _ELISP_EMACS_VERSION +# @ECLASS_VARIABLE: _ELISP_EMACS_VERSION # @INTERNAL # @DESCRIPTION: # Cached value of Emacs version detected in elisp-check-emacs-version(). diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index c3c0045..2fea311 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -10,6 +10,7 @@ # Christian Faulhammer # Ulrich Müller # @SUPPORTED_EAPIS: 6 7 8 +# @PROVIDES: elisp-common # @BLURB: Eclass for Emacs Lisp packages # @DESCRIPTION: # @@ -26,7 +27,7 @@ # file with the file name ${P}.el, then this eclass will move ${P}.el to # ${PN}.el in src_unpack(). -# @ECLASS-VARIABLE: NEED_EMACS +# @ECLASS_VARIABLE: NEED_EMACS # @PRE_INHERIT # @DEFAULT_UNSET # @DESCRIPTION: @@ -34,7 +35,7 @@ # variable before inheriting elisp.eclass. Set it to the version your # package uses and the dependency will be adjusted. -# @ECLASS-VARIABLE: ELISP_PATCHES +# @ECLASS_VARIABLE: ELISP_PATCHES # @DEFAULT_UNSET # @DESCRIPTION: # Space separated list of patches to apply after unpacking the sources. @@ -42,12 +43,12 @@ # FILESDIR. This variable is semi-deprecated, preferably use the # PATCHES array instead. -# @ECLASS-VARIABLE: ELISP_REMOVE +# @ECLASS_VARIABLE: ELISP_REMOVE # @DEFAULT_UNSET # @DESCRIPTION: # Space separated list of files to remove after unpacking the sources. -# @ECLASS-VARIABLE: SITEFILE +# @ECLASS_VARIABLE: SITEFILE # @DEFAULT_UNSET # @DESCRIPTION: # Name of package's site-init file. The filename must match the shell @@ -55,7 +56,7 @@ # reserved for internal use. "50${PN}-gentoo.el" is a reasonable choice # in most cases. -# @ECLASS-VARIABLE: ELISP_TEXINFO +# @ECLASS_VARIABLE: ELISP_TEXINFO # @DEFAULT_UNSET # @DESCRIPTION: # Space separated list of Texinfo sources. Respective GNU Info files