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 2748D138334 for ; Thu, 17 Oct 2019 13:19:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 759D1E08C9; Thu, 17 Oct 2019 13:19:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5ED7CE08C9 for ; Thu, 17 Oct 2019 13:19:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 208B934BF48 for ; Thu, 17 Oct 2019 13:19:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5652588B for ; Thu, 17 Oct 2019 13:19:21 +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: <1571318329.b08072005d86445b5992ede577194c892974b03a.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/expand-region/, app-emacs/expand-region/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/expand-region/expand-region-0.11.0-r1.ebuild app-emacs/expand-region/expand-region-0.11.0.ebuild app-emacs/expand-region/files/50expand-region-gentoo.el X-VCS-Directories: app-emacs/expand-region/ app-emacs/expand-region/files/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: b08072005d86445b5992ede577194c892974b03a X-VCS-Branch: master Date: Thu, 17 Oct 2019 13:19:21 +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: f6a0d437-536d-4953-a110-fe6d643a7c7b X-Archives-Hash: 4553bfcfcdaa56c7838c4f03715706dc commit: b08072005d86445b5992ede577194c892974b03a Author: Ulrich Müller gentoo org> AuthorDate: Thu Oct 17 11:05:45 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Oct 17 13:18:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0807200 app-emacs/expand-region: Inline autoloads. Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: Ulrich Müller gentoo.org> ...egion-0.11.0.ebuild => expand-region-0.11.0-r1.ebuild} | 15 +++++---------- app-emacs/expand-region/files/50expand-region-gentoo.el | 3 ++- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/app-emacs/expand-region/expand-region-0.11.0.ebuild b/app-emacs/expand-region/expand-region-0.11.0-r1.ebuild similarity index 52% rename from app-emacs/expand-region/expand-region-0.11.0.ebuild rename to app-emacs/expand-region/expand-region-0.11.0-r1.ebuild index b151534d2ef..520e27025fa 100644 --- a/app-emacs/expand-region/expand-region-0.11.0.ebuild +++ b/app-emacs/expand-region/expand-region-0.11.0-r1.ebuild @@ -1,23 +1,18 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit elisp DESCRIPTION="Emacs extension to increase selected region by semantic units" HOMEPAGE="https://github.com/magnars/expand-region.el" -SRC_URI="https://github.com/magnars/expand-region.el/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/magnars/${PN}.el/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~x86" -S="${WORKDIR}/expand-region.el-${PV}" +S="${WORKDIR}/${PN}.el-${PV}" SITEFILE="50${PN}-gentoo.el" DOCS="README.md" - -src_compile() { - elisp-compile *.el - elisp-make-autoload-file -} diff --git a/app-emacs/expand-region/files/50expand-region-gentoo.el b/app-emacs/expand-region/files/50expand-region-gentoo.el index bd5b4054078..4b065061de9 100644 --- a/app-emacs/expand-region/files/50expand-region-gentoo.el +++ b/app-emacs/expand-region/files/50expand-region-gentoo.el @@ -1,2 +1,3 @@ (add-to-list 'load-path "@SITELISP@") -(load "expand-region-autoloads" nil t) +(autoload 'er/expand-region "expand-region" + "Increase selected region by semantic units." t)