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 57BE7158041 for ; Sat, 30 Mar 2024 23:09:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8DBD5E2AF3; Sat, 30 Mar 2024 23:09:54 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 6D524E2AF3 for ; Sat, 30 Mar 2024 23:09: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 E148A343164 for ; Sat, 30 Mar 2024 23:09:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9361B1614 for ; Sat, 30 Mar 2024 23:09:49 +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: <1711840167.78bf2c3b3ba99a2c6c99a29695db689ae7bad04a.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/mastodon/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/mastodon/mastodon-1.0.18.ebuild X-VCS-Directories: app-emacs/mastodon/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 78bf2c3b3ba99a2c6c99a29695db689ae7bad04a X-VCS-Branch: master Date: Sat, 30 Mar 2024 23:09:49 +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: 2168dede-a9fc-4fa4-b1be-71bea6f61c95 X-Archives-Hash: 362685419968fd114d834229650b26aa commit: 78bf2c3b3ba99a2c6c99a29695db689ae7bad04a Author: Maciej Barć gentoo org> AuthorDate: Sat Mar 30 20:38:24 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Mar 30 23:09:27 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78bf2c3b app-emacs/mastodon: support live Signed-off-by: Maciej Barć gentoo.org> app-emacs/mastodon/mastodon-1.0.18.ebuild | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/app-emacs/mastodon/mastodon-1.0.18.ebuild b/app-emacs/mastodon/mastodon-1.0.18.ebuild index 99625fea4848..38f5552d3c9f 100644 --- a/app-emacs/mastodon/mastodon-1.0.18.ebuild +++ b/app-emacs/mastodon/mastodon-1.0.18.ebuild @@ -9,19 +9,29 @@ inherit elisp DESCRIPTION="Emacs client for Mastodon, federated microblogging social network" HOMEPAGE="https://codeberg.org/martianh/mastodon.el/" -SRC_URI="https://codeberg.org/martianh/${PN}.el/archive/${PV}.tar.gz - -> ${P}.tar.gz" -S="${WORKDIR}/${PN}.el/lisp" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://codeberg.org/martianh/mastodon.el.git" +else + SRC_URI="https://codeberg.org/martianh/${PN}.el/archive/${PV}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}/${PN}.el/lisp" + + KEYWORDS="~amd64 ~x86" +fi LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64 ~x86" RDEPEND=" app-emacs/persist app-emacs/request " -BDEPEND="${RDEPEND}" +BDEPEND=" + ${RDEPEND} +" DOCS=( ../README.org ) ELISP_TEXINFO="../${PN}.texi"