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 268A2158CBB for ; Mon, 8 May 2023 12:21:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 203E7E0856; Mon, 8 May 2023 12:21:24 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 02E64E0856 for ; Mon, 8 May 2023 12:21:24 +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 F142E340DD9 for ; Mon, 8 May 2023 12:21:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22B43A5D for ; Mon, 8 May 2023 12:21:21 +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: <1683548477.f2186e66f6df7442872abfae9354cd373b7f047c.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/elfeed/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild X-VCS-Directories: app-emacs/elfeed/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: f2186e66f6df7442872abfae9354cd373b7f047c X-VCS-Branch: master Date: Mon, 8 May 2023 12:21:21 +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: 2e3575f4-8e80-4808-a52a-0e1b0c09645f X-Archives-Hash: 364834217140616179fcdec655e3fd3d commit: f2186e66f6df7442872abfae9354cd373b7f047c Author: Maciej Barć gentoo org> AuthorDate: Mon May 8 07:48:36 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon May 8 12:21:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2186e66 app-emacs/elfeed: minor tweaks Signed-off-by: Maciej Barć gentoo.org> app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild b/app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild index 4d41447fde72..544ebdef09f5 100644 --- a/app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild +++ b/app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild @@ -8,12 +8,14 @@ inherit elisp DESCRIPTION="Emacs web feeds client" HOMEPAGE="https://github.com/skeeto/elfeed/" -if [[ ${PV} == *_p* ]] ; then +if [[ ${PV} == *_p20210822 ]] ; then COMMIT=162d7d545ed41c27967d108c04aa31f5a61c8e16 - SRC_URI="https://github.com/skeeto/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://github.com/skeeto/${PN}/archive/${COMMIT}.tar.gz + -> ${P}.tar.gz" S="${WORKDIR}"/${PN}-${COMMIT} else - SRC_URI="https://github.com/skeeto/${PN}/releases/download/${PV}/${P}.tar" + SRC_URI="https://github.com/skeeto/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" fi LICENSE="Unlicense" @@ -22,6 +24,7 @@ KEYWORDS="amd64 ~x86" RDEPEND="net-misc/curl[ssl]" -DOCS=( NEWS.md README.md ) ELISP_REMOVE="${PN}-pkg.el" + +DOCS=( NEWS.md README.md ) SITEFILE="50${PN}-gentoo.el"