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 2038115807A for ; Sun, 6 Oct 2024 19:53:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84E10E29B4; Sun, 6 Oct 2024 19:53:35 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C99CE29B4 for ; Sun, 6 Oct 2024 19:53:35 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3EE5C34315F for ; Sun, 6 Oct 2024 19:53:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8906E22D7 for ; Sun, 6 Oct 2024 19:53:31 +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: <1728244292.e911db1903a1a67abe97d18c2f3c5eee1e5f8e6e.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/elixir-mode/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/elixir-mode/elixir-mode-2.5.0.ebuild X-VCS-Directories: app-emacs/elixir-mode/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: e911db1903a1a67abe97d18c2f3c5eee1e5f8e6e X-VCS-Branch: master Date: Sun, 6 Oct 2024 19:53:31 +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: 560496ab-b8e6-4444-a68e-db2198a5dd50 X-Archives-Hash: 64b277f9c8b72d5770f8d3185ca04880 commit: e911db1903a1a67abe97d18c2f3c5eee1e5f8e6e Author: Maciej Barć gentoo org> AuthorDate: Sun Oct 6 18:42:57 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun Oct 6 19:51:32 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e911db19 app-emacs/elixir-mode: minor tweaks Signed-off-by: Maciej Barć gentoo.org> app-emacs/elixir-mode/elixir-mode-2.5.0.ebuild | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/app-emacs/elixir-mode/elixir-mode-2.5.0.ebuild b/app-emacs/elixir-mode/elixir-mode-2.5.0.ebuild index cc7f9f3b5819..605cde75fb0c 100644 --- a/app-emacs/elixir-mode/elixir-mode-2.5.0.ebuild +++ b/app-emacs/elixir-mode/elixir-mode-2.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -8,30 +8,28 @@ inherit elisp DESCRIPTION="Emacs major mode for editing Elixir files" HOMEPAGE="https://github.com/elixir-editors/emacs-elixir/" -if [[ ${PV} == *9999* ]] ; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 + EGIT_REPO_URI="https://github.com/elixir-editors/emacs-elixir.git" else SRC_URI="https://github.com/elixir-editors/emacs-elixir/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}"/emacs-elixir-${PV} + S="${WORKDIR}/emacs-elixir-${PV}" + KEYWORDS="~amd64 ~x86" fi LICENSE="GPL-2+" SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" BDEPEND=" - test? ( dev-lang/elixir ) + test? ( + dev-lang/elixir + ) " DOCS=( CHANGELOG.md README.md ) SITEFILE="50${PN}-gentoo.el" -elisp-enable-tests ert-runner - -src_test() { - ert-runner -L . -L tests --reporter ert+duration tests || die -} +elisp-enable-tests ert-runner tests