diff options
author | Craig Andrews <candrews@gentoo.org> | 2021-06-21 15:14:52 -0400 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2021-06-21 15:14:52 -0400 |
commit | 780e4f4f0ca8127f78d20d5a1b76209ee95d02a2 (patch) | |
tree | e1d53fe959ca8ad048f16f3f52b74825be48e37b /media-plugins | |
parent | media-plugins/kodi-inputstream-adaptive: 2.6.17 version bump (diff) | |
download | gentoo-780e4f4f0ca8127f78d20d5a1b76209ee95d02a2.tar.gz gentoo-780e4f4f0ca8127f78d20d5a1b76209ee95d02a2.tar.bz2 gentoo-780e4f4f0ca8127f78d20d5a1b76209ee95d02a2.zip |
media-plugins/kodi-inputstream-adaptive: Cleanup old version
Package-Manager: Portage-3.0.20, 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.16.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 67af778e72fa..f6e3102ee7f2 100644 --- a/media-plugins/kodi-inputstream-adaptive/Manifest +++ b/media-plugins/kodi-inputstream-adaptive/Manifest @@ -1,2 +1 @@ -DIST kodi-inputstream-adaptive-2.6.16.tar.gz 751849 BLAKE2B 6081d4b77de125460d61d9453094242b784eed31a4593a3849ffa1bbb644b6ccc66f969765fc09cd9f492fc763b52e8c346ecbc09a764eed0e476956415a7971 SHA512 af51e5469b20f670311f1f17c264d1a0e6a169479e990aceef439b2964c3f2f50d7b58153c16c8380f122bc167a9e770391c5876f63ff4fe89e7bb57284f6fbf DIST kodi-inputstream-adaptive-2.6.17.tar.gz 752293 BLAKE2B f6b2c5d512bd5222e9e7bf1d5b06cb174c804bd24e12ef3b01c56e47db41eed4adbbc1bf46a777c8dc60d01367745b82cf59e4b09a138461c925e489379056e3 SHA512 512a299d5711012c0396c2b84c68a364122b52d5e75f14a4de9e1f5767d652f8d992436c54970c2f5f141207f926b4d4112ff61f3414862456a212a2f77f2c3d diff --git a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.6.16.ebuild b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.6.16.ebuild deleted file mode 100644 index eb913a08d263..000000000000 --- a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.6.16.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 -} |