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 A74C21581D3 for ; Sun, 19 May 2024 23:32:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 856B2E29E5; Sun, 19 May 2024 23:32:54 +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 5A0B6E29E5 for ; Sun, 19 May 2024 23:32: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9618533BEA5 for ; Sun, 19 May 2024 23:32:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31BA11AE0 for ; Sun, 19 May 2024 23:32:52 +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: <1716161549.ce02acf5ebe864a0911620d829f4c41c88f046fa.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/magit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/magit/magit-9999.ebuild X-VCS-Directories: app-emacs/magit/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: ce02acf5ebe864a0911620d829f4c41c88f046fa X-VCS-Branch: master Date: Sun, 19 May 2024 23:32:52 +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: f3e32cbe-a4c1-4611-b305-722d1968e390 X-Archives-Hash: e084fc4f40839e25db9c4aebd5fb0323 commit: ce02acf5ebe864a0911620d829f4c41c88f046fa Author: Maciej Barć gentoo org> AuthorDate: Sun May 19 23:31:25 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun May 19 23:32:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce02acf5 app-emacs/magit: update live deps Signed-off-by: Maciej Barć gentoo.org> app-emacs/magit/magit-9999.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app-emacs/magit/magit-9999.ebuild b/app-emacs/magit/magit-9999.ebuild index a9701898bfb4..31188d0515ae 100644 --- a/app-emacs/magit/magit-9999.ebuild +++ b/app-emacs/magit/magit-9999.ebuild @@ -9,13 +9,14 @@ DESCRIPTION="A Git porcelain inside Emacs" HOMEPAGE="https://magit.vc/ https://github.com/magit/magit/" -if [[ ${PV} == *9999* ]] ; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/magit/magit.git" else SRC_URI="https://github.com/magit/magit/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" fi @@ -29,9 +30,10 @@ ELISP_TEXINFO="../docs/*.texi" SITEFILE="50${PN}-gentoo.el" RDEPEND=" + >=app-emacs/compat-29.1.4.5 >=app-emacs/dash-2.19.1 - >=app-emacs/transient-0.3.6 - >=app-emacs/with-editor-3.0.5 + >=app-emacs/transient-0.6.0 + >=app-emacs/with-editor-3.3.2 " BDEPEND=" ${RDEPEND} @@ -45,5 +47,5 @@ src_prepare() { default rm magit-libgit.el || die - echo "(setq magit-version \"${PV}\")" > magit-version.el || die + echo "(setq magit-version \"${PV}\")" > ./magit-version.el || die }