From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id B095C1582EF for ; Mon, 10 Mar 2025 11:10:16 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 92DDD343153 for ; Mon, 10 Mar 2025 11:10:16 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id EF01511037D; Mon, 10 Mar 2025 11:10:12 +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 bobolink.gentoo.org (Postfix) with ESMTPS id E290C11037D for ; Mon, 10 Mar 2025 11:10:12 +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 94FA3343147 for ; Mon, 10 Mar 2025 11:10:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F334527E6 for ; Mon, 10 Mar 2025 11:10:10 +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: <1741604987.3801b02af6a571c4ee4fc638537a80edfd9f96b7.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: app-emacs/emacs-daemon/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: app-emacs/emacs-daemon/emacs-daemon-9999.ebuild X-VCS-Directories: app-emacs/emacs-daemon/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 3801b02af6a571c4ee4fc638537a80edfd9f96b7 X-VCS-Branch: master Date: Mon, 10 Mar 2025 11:10:10 +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: aaa2929e-9769-4b96-80db-c2afc23118fe X-Archives-Hash: 2a9f78dc9d762a1169dc31c8f8a76379 commit: 3801b02af6a571c4ee4fc638537a80edfd9f96b7 Author: Ulrich Müller gentoo org> AuthorDate: Mon Mar 10 11:09:47 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Mar 10 11:09:47 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=3801b02a app-emacs/emacs-daemon: Add conditional for live version Signed-off-by: Ulrich Müller gentoo.org> app-emacs/emacs-daemon/emacs-daemon-9999.ebuild | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild b/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild index 797198b..fdda794 100644 --- a/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild +++ b/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild @@ -3,15 +3,21 @@ EAPI=8 -EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/emacs-tools.git" -EGIT_BRANCH="${PN}" -EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}" - -inherit elisp git-r3 +inherit elisp + +if [[ ${PV##*.} = 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/emacs-tools.git" + EGIT_BRANCH="${PN}" + EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}" + S="${EGIT_CHECKOUT_DIR}" +else + SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" +fi DESCRIPTION="Gentoo support for Emacs running as a server in the background" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" -S="${WORKDIR}/${PN}" LICENSE="GPL-2+" SLOT="0"