Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-inputstream-adaptive/
Date: Mon, 21 Jun 2021 19:15:02
Message-Id: 1624302892.780e4f4f0ca8127f78d20d5a1b76209ee95d02a2.candrews@gentoo
1 commit: 780e4f4f0ca8127f78d20d5a1b76209ee95d02a2
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 21 19:14:52 2021 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 21 19:14:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=780e4f4f
7
8 media-plugins/kodi-inputstream-adaptive: Cleanup old version
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 media-plugins/kodi-inputstream-adaptive/Manifest | 1 -
14 .../kodi-inputstream-adaptive-2.6.16.ebuild | 54 ----------------------
15 2 files changed, 55 deletions(-)
16
17 diff --git a/media-plugins/kodi-inputstream-adaptive/Manifest b/media-plugins/kodi-inputstream-adaptive/Manifest
18 index 67af778e72f..f6e3102ee7f 100644
19 --- a/media-plugins/kodi-inputstream-adaptive/Manifest
20 +++ b/media-plugins/kodi-inputstream-adaptive/Manifest
21 @@ -1,2 +1 @@
22 -DIST kodi-inputstream-adaptive-2.6.16.tar.gz 751849 BLAKE2B 6081d4b77de125460d61d9453094242b784eed31a4593a3849ffa1bbb644b6ccc66f969765fc09cd9f492fc763b52e8c346ecbc09a764eed0e476956415a7971 SHA512 af51e5469b20f670311f1f17c264d1a0e6a169479e990aceef439b2964c3f2f50d7b58153c16c8380f122bc167a9e770391c5876f63ff4fe89e7bb57284f6fbf
23 DIST kodi-inputstream-adaptive-2.6.17.tar.gz 752293 BLAKE2B f6b2c5d512bd5222e9e7bf1d5b06cb174c804bd24e12ef3b01c56e47db41eed4adbbc1bf46a777c8dc60d01367745b82cf59e4b09a138461c925e489379056e3 SHA512 512a299d5711012c0396c2b84c68a364122b52d5e75f14a4de9e1f5767d652f8d992436c54970c2f5f141207f926b4d4112ff61f3414862456a212a2f77f2c3d
24
25 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
26 deleted file mode 100644
27 index eb913a08d26..00000000000
28 --- a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.6.16.ebuild
29 +++ /dev/null
30 @@ -1,54 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit cmake kodi-addon
37 -
38 -DESCRIPTION="Kodi's Adaptive inputstream addon"
39 -HOMEPAGE="https://github.com/peak3d/inputstream.adaptive.git"
40 -SRC_URI=""
41 -
42 -case ${PV} in
43 -9999)
44 - SRC_URI=""
45 - EGIT_REPO_URI="https://github.com/peak3d/inputstream.adaptive.git"
46 - EGIT_BRANCH="Matrix"
47 - inherit git-r3
48 - ;;
49 -*)
50 - KEYWORDS="~amd64 ~x86"
51 - CODENAME="Matrix"
52 - SRC_URI="https://github.com/peak3d/inputstream.adaptive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
53 - S="${WORKDIR}/inputstream.adaptive-${PV}-${CODENAME}"
54 - ;;
55 -esac
56 -
57 -LICENSE="GPL-2"
58 -SLOT="0"
59 -RESTRICT="!test? ( test )"
60 -IUSE="test"
61 -
62 -COMMON_DEPEND="
63 - dev-libs/expat
64 - =media-tv/kodi-19*
65 - "
66 -DEPEND="
67 - ${COMMON_DEPEND}
68 - test? ( dev-cpp/gtest )
69 - "
70 -RDEPEND="
71 - ${COMMON_DEPEND}
72 - "
73 -
74 -src_prepare() {
75 - [ -d depends ] && rm -rf depends || die
76 - cmake_src_prepare
77 -}
78 -
79 -src_configure() {
80 - local mycmakeargs=(
81 - -DBUILD_TESTING=$(usex test)
82 - )
83 - cmake_src_configure
84 -}