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 1AD821582EF for ; Mon, 10 Mar 2025 11:33:25 +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 EED8D3430BE for ; Mon, 10 Mar 2025 11:33:24 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 362AC1102E0; Mon, 10 Mar 2025 11:33:21 +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 30CB71102E0 for ; Mon, 10 Mar 2025 11:33:21 +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 DEEEB343050 for ; Mon, 10 Mar 2025 11:33:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C5A8129F for ; Mon, 10 Mar 2025 11:33:19 +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: <1741606363.48593b5322d415dbd053bc0576ce1835fe0aba26.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: 48593b5322d415dbd053bc0576ce1835fe0aba26 X-VCS-Branch: master Date: Mon, 10 Mar 2025 11:33:19 +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: 28b32e70-5a4d-4c58-bcbb-43726273754d X-Archives-Hash: e411df29f6461887497f9ad0fabab216 commit: 48593b5322d415dbd053bc0576ce1835fe0aba26 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:32:43 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=48593b53 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"