diff options
author | Craig Andrews <candrews@gentoo.org> | 2021-05-21 21:32:05 -0400 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2021-05-21 21:33:53 -0400 |
commit | 79b396b1e9ddea127cb8bbd351c45157e6e1bc74 (patch) | |
tree | 88351978518889a59fe1a718922e9629f84c7030 /media-plugins | |
parent | media-plugins/kodi-inputstream-adaptive: 2.6.16 version bump (diff) | |
download | gentoo-79b396b1e9ddea127cb8bbd351c45157e6e1bc74.tar.gz gentoo-79b396b1e9ddea127cb8bbd351c45157e6e1bc74.tar.bz2 gentoo-79b396b1e9ddea127cb8bbd351c45157e6e1bc74.zip |
media-plugins/kodi-inputstream-adaptive: Cleanup old version
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/kodi-inputstream-adaptive/Manifest | 1 | ||||
-rw-r--r-- | media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.6.15.ebuild | 54 |
2 files changed, 0 insertions, 55 deletions
diff --git a/media-plugins/kodi-inputstream-adaptive/Manifest b/media-plugins/kodi-inputstream-adaptive/Manifest index a7aca1e68372..1a807c5cb489 100644 --- a/media-plugins/kodi-inputstream-adaptive/Manifest +++ b/media-plugins/kodi-inputstream-adaptive/Manifest @@ -1,2 +1 @@ -DIST kodi-inputstream-adaptive-2.6.15.tar.gz 751617 BLAKE2B cd384265f891983c67a9b8b7532343e01cd07a9ee18467d8857909784cc023561e4348492d5a359fb6dc881a7754b343670b258ef83f905fb93c3313161e22f2 SHA512 85a3ab7d2fee6293cef1f69f9ddd5ee08a8eed6d93cda25dd1c4040059536aa0ee0329154856f09cfb40665503baa8f822c62c8af60d887aa6784752932ac1bf DIST kodi-inputstream-adaptive-2.6.16.tar.gz 751849 BLAKE2B 6081d4b77de125460d61d9453094242b784eed31a4593a3849ffa1bbb644b6ccc66f969765fc09cd9f492fc763b52e8c346ecbc09a764eed0e476956415a7971 SHA512 af51e5469b20f670311f1f17c264d1a0e6a169479e990aceef439b2964c3f2f50d7b58153c16c8380f122bc167a9e770391c5876f63ff4fe89e7bb57284f6fbf diff --git a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.6.15.ebuild b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.6.15.ebuild deleted file mode 100644 index eb913a08d263..000000000000 --- a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.6.15.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's Adaptive inputstream addon" -HOMEPAGE="https://github.com/peak3d/inputstream.adaptive.git" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/peak3d/inputstream.adaptive.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/peak3d/inputstream.adaptive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/inputstream.adaptive-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -RESTRICT="!test? ( test )" -IUSE="test" - -COMMON_DEPEND=" - dev-libs/expat - =media-tv/kodi-19* - " -DEPEND=" - ${COMMON_DEPEND} - test? ( dev-cpp/gtest ) - " -RDEPEND=" - ${COMMON_DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DBUILD_TESTING=$(usex test) - ) - cmake_src_configure -} |