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 9E1C3158089 for ; Thu, 14 Sep 2023 21:23:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B04A72BC034; Thu, 14 Sep 2023 21:23:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 96D962BC034 for ; Thu, 14 Sep 2023 21:23:49 +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 DFA2B335D1C for ; Thu, 14 Sep 2023 21:23:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3546A11B0 for ; Thu, 14 Sep 2023 21:23:46 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1694726569.5736f0a6f20940fd28c0643bb26df8a26bb8528c.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/vimagit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/vimagit/vimagit-9999.ebuild X-VCS-Directories: app-vim/vimagit/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 5736f0a6f20940fd28c0643bb26df8a26bb8528c X-VCS-Branch: master Date: Thu, 14 Sep 2023 21:23:46 +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: 60f17cba-f82e-4edd-ab15-713589d64804 X-Archives-Hash: e1a6e8666c502bde82459c4b0a2b2b46 commit: 5736f0a6f20940fd28c0643bb26df8a26bb8528c Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Mar 19 17:17:15 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Sep 14 21:22:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5736f0a6 app-vim/vimagit: remove live ebuild Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> app-vim/vimagit/vimagit-9999.ebuild | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/app-vim/vimagit/vimagit-9999.ebuild b/app-vim/vimagit/vimagit-9999.ebuild deleted file mode 100644 index b62d380b1309..000000000000 --- a/app-vim/vimagit/vimagit-9999.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit vim-plugin - -if [[ ${PV} == 9999* ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/jreybert/vimagit.git" -else - SRC_URI="https://github.com/jreybert/vimagit/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -DESCRIPTION="vim plugin: ease your git workflow within vim" -HOMEPAGE="https://github.com/jreybert/vimagit" -LICENSE="vim" -VIM_PLUGIN_HELPFILES="${PN}" - -RDEPEND="dev-vcs/git" - -DOCS=( README.md Changelog )