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 EEBBA158083 for ; Sat, 14 Sep 2024 20:12:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5E60E29CD; Sat, 14 Sep 2024 20:12:10 +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 BF00FE29CD for ; Sat, 14 Sep 2024 20:12:10 +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 140F6342F65 for ; Sat, 14 Sep 2024 20:12:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A633727F5 for ; Sat, 14 Sep 2024 20:12:06 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1726344706.6be569587fe2601936fbaadc119b7799f2fd4dd3.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-vfs-sftp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/kodi-vfs-sftp/Manifest media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-2.0.0.ebuild X-VCS-Directories: media-plugins/kodi-vfs-sftp/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6be569587fe2601936fbaadc119b7799f2fd4dd3 X-VCS-Branch: master Date: Sat, 14 Sep 2024 20:12:06 +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: b2f61330-7207-409f-aaf0-aaf6cd7c964f X-Archives-Hash: 879b9928ada98d94cd8aaf16b82316dd commit: 6be569587fe2601936fbaadc119b7799f2fd4dd3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Sep 14 11:10:55 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Sep 14 20:11:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6be56958 media-plugins/kodi-vfs-sftp: drop 2.0.0 Pinned dep on media-tv/kodi-19, to be cleaned up. Signed-off-by: Andreas Sturmlechner gentoo.org> media-plugins/kodi-vfs-sftp/Manifest | 1 - .../kodi-vfs-sftp/kodi-vfs-sftp-2.0.0.ebuild | 40 ---------------------- 2 files changed, 41 deletions(-) diff --git a/media-plugins/kodi-vfs-sftp/Manifest b/media-plugins/kodi-vfs-sftp/Manifest deleted file mode 100644 index 599b0c2982b4..000000000000 --- a/media-plugins/kodi-vfs-sftp/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST kodi-vfs-sftp-2.0.0.tar.gz 36146 BLAKE2B 50aadf1087b64791c6e284673c4072829592dd10e8772b739e34091257c3a410862225dae98c322b6616663e3dd0d6ebe8ae7e1518fe89cc9e8b2233dec95cf0 SHA512 223dc0f7ef53318963e77f4b4c5ddb9bc3afa9f3ea5d8ba202269d71a68f24600b99c6927ee856441fe216fbec9e821af8328c3911ef306dff61bb107a7cf0df diff --git a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-2.0.0.ebuild b/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-2.0.0.ebuild deleted file mode 100644 index 4f57d2b4aa6c..000000000000 --- a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-2.0.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SFTP VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sftp" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.sftp.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sftp/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sftp-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - net-libs/libssh[sftp] - =media-tv/kodi-19* - " -RDEPEND="${DEPEND}" - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -}