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 E521C15A7D9 for ; Sun, 19 Mar 2023 14:18:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D597E0918; Sun, 19 Mar 2023 14:18:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 49FD8E0918 for ; Sun, 19 Mar 2023 14:18: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87ACB341310 for ; Sun, 19 Mar 2023 14:18:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28E748F1 for ; Sun, 19 Mar 2023 14:18:17 +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: <1679233990.df8443f6afd2137fe8cc2a80212884df8e62d133.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/f/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/f/f-0.20.0-r1.ebuild X-VCS-Directories: app-emacs/f/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: df8443f6afd2137fe8cc2a80212884df8e62d133 X-VCS-Branch: master Date: Sun, 19 Mar 2023 14:18:17 +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: 1013a342-3d92-495d-ba4a-655fb6189182 X-Archives-Hash: 7e32fcc1979691a1b51d07410f944537 commit: df8443f6afd2137fe8cc2a80212884df8e62d133 Author: Maciej Barć gentoo org> AuthorDate: Sun Mar 19 12:57:48 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun Mar 19 13:53:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df8443f6 app-emacs/f: DEPEND -> BDEPEND; minor tweaks Signed-off-by: Maciej Barć gentoo.org> app-emacs/f/f-0.20.0-r1.ebuild | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/app-emacs/f/f-0.20.0-r1.ebuild b/app-emacs/f/f-0.20.0-r1.ebuild index 017525aa62d8..b3e020303c5b 100644 --- a/app-emacs/f/f-0.20.0-r1.ebuild +++ b/app-emacs/f/f-0.20.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,17 +6,21 @@ EAPI=8 inherit elisp DESCRIPTION="Modern API for working with files and directories in Emacs" -HOMEPAGE="https://github.com/rejeep/f.el" -SRC_URI="https://github.com/rejeep/f.el/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/rejeep/f.el/" +SRC_URI="https://github.com/rejeep/f.el/archive/v${PV}.tar.gz + -> ${P}.tar.gz" +S="${WORKDIR}"/f.el-${PV} LICENSE="GPL-3+" SLOT="0" KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 ~riscv x86" RESTRICT="test" -RDEPEND="app-emacs/dash app-emacs/s" -DEPEND="${RDEPEND}" +RDEPEND=" + app-emacs/dash + app-emacs/s +" +BDEPEND="${RDEPEND}" -S="${WORKDIR}/f.el-${PV}" +DOCS=( README.md ) SITEFILE="50${PN}-gentoo.el" -DOCS="README.md"