diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-09-14 13:08:59 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-09-14 22:11:39 +0200 |
commit | 3e4607121bd2cca597945bdc6e00e3b977305677 (patch) | |
tree | 705f60ae12c92032bec0ff208998efeb37e80103 /media-plugins/kodi-inputstream-rtmp | |
parent | media-plugins/kodi-inputstream-ffmpegdirect: drop 19.0.0 (diff) | |
download | gentoo-3e4607121bd2cca597945bdc6e00e3b977305677.tar.gz gentoo-3e4607121bd2cca597945bdc6e00e3b977305677.tar.bz2 gentoo-3e4607121bd2cca597945bdc6e00e3b977305677.zip |
media-plugins/kodi-inputstream-rtmp: drop 19.0.0
Pinned dep on media-tv/kodi-19, to be cleaned up.
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-plugins/kodi-inputstream-rtmp')
-rw-r--r-- | media-plugins/kodi-inputstream-rtmp/Manifest | 1 | ||||
-rw-r--r-- | media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-19.0.0.ebuild | 45 |
2 files changed, 0 insertions, 46 deletions
diff --git a/media-plugins/kodi-inputstream-rtmp/Manifest b/media-plugins/kodi-inputstream-rtmp/Manifest deleted file mode 100644 index 989dfa7cf914..000000000000 --- a/media-plugins/kodi-inputstream-rtmp/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST kodi-inputstream-rtmp-19.0.0.tar.gz 82420 BLAKE2B 9f4d0871e98e94117a7bc335c203ddd85ad7b300729353669b732f710ff175c6a6f5a18c2e100d181eea6c2e369067b5586aa2651b2e928aeaebc5a72d815493 SHA512 8ea7a9fed8ad0d29365a8d0f67c0b0203c16da19607ccc9788e9e244f034b079667d2d1ba2a916fa0ce5af4008563573bbaabce7bface9879c3e1bc1c4c3aed7 diff --git a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-19.0.0.ebuild b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-19.0.0.ebuild deleted file mode 100644 index fd032d679f69..000000000000 --- a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-19.0.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kodi-addon - -DESCRIPTION="Kodi's RTMP inputstream addon" -HOMEPAGE="https://github.com/xbmc/inputstream.rtmp" -KODI_PLUGIN_NAME="inputstream.rtmp" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - media-video/rtmpdump[ssl] - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} |