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 E2A9915808E for ; Wed, 27 Apr 2022 22:18:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22464E0895; Wed, 27 Apr 2022 22:18:29 +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 EBEFBE0895 for ; Wed, 27 Apr 2022 22:18:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 AAF723414AA for ; Wed, 27 Apr 2022 22:18:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28F912F9 for ; Wed, 27 Apr 2022 22:18:26 +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: <1651097901.50925bf3dd8720347c7ecce3655d2512c281e14e.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/projectile/files/, app-emacs/projectile/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/projectile/files/50projectile-gentoo.el app-emacs/projectile/projectile-2.5.0-r1.ebuild app-emacs/projectile/projectile-2.5.0.ebuild X-VCS-Directories: app-emacs/projectile/files/ app-emacs/projectile/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 50925bf3dd8720347c7ecce3655d2512c281e14e X-VCS-Branch: master Date: Wed, 27 Apr 2022 22:18:26 +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: e37c469d-521e-4527-b79e-ffab87a8b9f6 X-Archives-Hash: 6bb197007a3d59f2ce1cb30b91410839 commit: 50925bf3dd8720347c7ecce3655d2512c281e14e Author: Maciej Barć gentoo org> AuthorDate: Wed Apr 27 22:17:58 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Apr 27 22:18:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50925bf3 app-emacs/projectile: remove elisp autoload file Signed-off-by: Maciej Barć gentoo.org> app-emacs/projectile/files/50projectile-gentoo.el | 3 ++- .../{projectile-2.5.0.ebuild => projectile-2.5.0-r1.ebuild} | 5 ----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/app-emacs/projectile/files/50projectile-gentoo.el b/app-emacs/projectile/files/50projectile-gentoo.el index 05c734668e49..8b3f91f32ec4 100644 --- a/app-emacs/projectile/files/50projectile-gentoo.el +++ b/app-emacs/projectile/files/50projectile-gentoo.el @@ -1,2 +1,3 @@ (add-to-list 'load-path "@SITELISP@") -(load "@SITELISP@/projectile-autoload.el") +(autoload 'projectile-mode "projectile" + "Minor mode to assist project management and navigation." t) diff --git a/app-emacs/projectile/projectile-2.5.0.ebuild b/app-emacs/projectile/projectile-2.5.0-r1.ebuild similarity index 87% rename from app-emacs/projectile/projectile-2.5.0.ebuild rename to app-emacs/projectile/projectile-2.5.0-r1.ebuild index 9ebbdf6b49f5..26f4e8b00c5e 100644 --- a/app-emacs/projectile/projectile-2.5.0.ebuild +++ b/app-emacs/projectile/projectile-2.5.0-r1.ebuild @@ -26,8 +26,3 @@ src_test() { mkdir -p "${HOME}"/.emacs.d || die # For "projectile--directory-p" test buttercup -L . -L test --traceback full || die } - -src_install() { - elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/ - elisp_src_install -}