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 3505B15802E for ; Fri, 28 Jun 2024 14:00:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE99BE2BB0; Fri, 28 Jun 2024 14:00:30 +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 8219FE2BB0 for ; Fri, 28 Jun 2024 14:00:30 +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 7562A33BF36 for ; Fri, 28 Jun 2024 14:00:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6DB71D7E for ; Fri, 28 Jun 2024 14:00:27 +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: <1719583220.ad6d3b2bc08e743a758183b0e7e0f786990b4779.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/meson-mode/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/meson-mode/meson-mode-0.3-r1.ebuild app-emacs/meson-mode/meson-mode-0.3.ebuild X-VCS-Directories: app-emacs/meson-mode/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: ad6d3b2bc08e743a758183b0e7e0f786990b4779 X-VCS-Branch: master Date: Fri, 28 Jun 2024 14:00:27 +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: 791f58dd-6af9-4716-9128-1af96e86b2c9 X-Archives-Hash: 704dec208886808ee9208788a12f344b commit: ad6d3b2bc08e743a758183b0e7e0f786990b4779 Author: Maciej Barć gentoo org> AuthorDate: Fri Jun 28 13:50:04 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Jun 28 14:00:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad6d3b2b app-emacs/meson-mode: bump EAPI - 7 -> 8; misc tweaks Signed-off-by: Maciej Barć gentoo.org> .../{meson-mode-0.3.ebuild => meson-mode-0.3-r1.ebuild} | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/app-emacs/meson-mode/meson-mode-0.3.ebuild b/app-emacs/meson-mode/meson-mode-0.3-r1.ebuild similarity index 58% rename from app-emacs/meson-mode/meson-mode-0.3.ebuild rename to app-emacs/meson-mode/meson-mode-0.3-r1.ebuild index 7f9a90e2ec2e..2af5cb5acb4e 100644 --- a/app-emacs/meson-mode/meson-mode-0.3.ebuild +++ b/app-emacs/meson-mode/meson-mode-0.3-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 NEED_EMACS=26.1 @@ -9,12 +9,20 @@ inherit elisp DESCRIPTION="A GNU Emacs major mode for Meson build-system files" HOMEPAGE="https://github.com/wentasah/meson-mode" -SRC_URI="https://github.com/wentasah/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/wentasah/${PN}.git" +else + SRC_URI="https://github.com/wentasah/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + + KEYWORDS="amd64 ~arm64 ~riscv" +fi LICENSE="GPL-3+" SLOT="0" -KEYWORDS="amd64 ~arm64 ~riscv" DOCS=( README.md ) - SITEFILE="50${PN}-gentoo.el"