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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 81A73158042 for ; Tue, 22 Oct 2024 00:08:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE3F9E0969; Tue, 22 Oct 2024 00:08:57 +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 B9341E0969 for ; Tue, 22 Oct 2024 00:08:57 +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 0D7BA343024 for ; Tue, 22 Oct 2024 00:08:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F03122DA for ; Tue, 22 Oct 2024 00:08: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: <1729555724.79aa9ec627783fe061602fd398cef374fc08288b.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/fedi/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/fedi/Manifest app-emacs/fedi/fedi-0.2.ebuild app-emacs/fedi/metadata.xml X-VCS-Directories: app-emacs/fedi/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 79aa9ec627783fe061602fd398cef374fc08288b X-VCS-Branch: master Date: Tue, 22 Oct 2024 00:08: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: d4d1977a-f4e2-4fe1-aec9-2c7e636fdf97 X-Archives-Hash: 871e568b33c3af0f26d8f3364b703057 commit: 79aa9ec627783fe061602fd398cef374fc08288b Author: Maciej Barć gentoo org> AuthorDate: Mon Oct 21 21:06:23 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Tue Oct 22 00:08:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79aa9ec6 app-emacs/fedi: new package; add 0.2 Signed-off-by: Maciej Barć gentoo.org> app-emacs/fedi/Manifest | 1 + app-emacs/fedi/fedi-0.2.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++ app-emacs/fedi/metadata.xml | 14 ++++++++++++++ 3 files changed, 55 insertions(+) diff --git a/app-emacs/fedi/Manifest b/app-emacs/fedi/Manifest new file mode 100644 index 000000000000..b8995145751f --- /dev/null +++ b/app-emacs/fedi/Manifest @@ -0,0 +1 @@ +DIST fedi-0.2.tar.gz 23341 BLAKE2B 588fefb92404d9c654c9c6a62a4404ec6ba624bbb16e64532a863d460feb7cea3aeb924f86f04d543dcb842dff7c54858628cda2170d228be5fb7590f55c77ee SHA512 e6f9a27ef9beb45df7e3fbb8dba54965135e378c37fbcdaea95e6ce8c46cb0f7b5219220c245d5cf40636e8219932a5b6bd86251ee655674d8e453d249376218 diff --git a/app-emacs/fedi/fedi-0.2.ebuild b/app-emacs/fedi/fedi-0.2.ebuild new file mode 100644 index 000000000000..2a89507c0b2c --- /dev/null +++ b/app-emacs/fedi/fedi-0.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="28.1" + +inherit elisp + +DESCRIPTION="Helper functions for Fediverse or other REST API clients for GNU Emacs" +HOMEPAGE="https://codeberg.org/martianh/fedi.el/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://codeberg.org/martianh/${PN}.el.git" +else + SRC_URI="https://codeberg.org/martianh/${PN}.el/archive/${PV}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}/${PN}.el" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + app-emacs/markdown-mode + || ( + >=app-editors/emacs-31.0 + >=app-editors/emacs-${NEED_EMACS}[json] + ) +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( readme.org ) +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/fedi/metadata.xml b/app-emacs/fedi/metadata.xml new file mode 100644 index 000000000000..953a3e572ba3 --- /dev/null +++ b/app-emacs/fedi/metadata.xml @@ -0,0 +1,14 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + https://codeberg.org/martianh/fedi.el/releases/ + https://codeberg.org/martianh/fedi.el/issues/ + martianh/fedi.el + +