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-visualization-goom/
Date: Mon, 13 Sep 2021 13:39:50
Message-Id: 1631540383.9ba6af36a92ad71e0212a3f14ae589fde2319b47.candrews@gentoo
1 commit: 9ba6af36a92ad71e0212a3f14ae589fde2319b47
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 13 13:39:09 2021 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 13 13:39:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba6af36
7
8 media-plugins/kodi-visualization-goom: 19.0.0 version bump
9
10 Package-Manager: Portage-3.0.23, Repoman-3.0.3
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 media-plugins/kodi-visualization-goom/Manifest | 1 +
14 .../kodi-visualization-goom-19.0.0.ebuild | 45 ++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/media-plugins/kodi-visualization-goom/Manifest b/media-plugins/kodi-visualization-goom/Manifest
18 index 2f4edd30af5..3884008628a 100644
19 --- a/media-plugins/kodi-visualization-goom/Manifest
20 +++ b/media-plugins/kodi-visualization-goom/Manifest
21 @@ -1 +1,2 @@
22 +DIST kodi-visualization-goom-19.0.0.tar.gz 1217302 BLAKE2B 7e7092d47a176cb25930616eed696023541e2e056efdb9b0cb0396763f761ec34d3c38f5c95540408dddb14d26ca9f95817b6bba12931485046f3081bbb17cd8 SHA512 199fb3dfb03f2874b5cf6df33fd29de3727026c98a7115333db2f19fa880a723930a1b8336ab125f769928af1e823b01fbdaeb66ee02f673c77d68cc61b84f13
23 DIST kodi-visualization-goom-3.4.0.tar.gz 1210534 BLAKE2B c871188f50a1deab108e36e4199dc4d0450ddb59cf8f87090505b46f7494a66006b796d4a7c60e61057f8668dc7afebbab15e1018ed8fa644d77315ea8b3c2be SHA512 d864932202b2611b435b91a0ced86cc60b5e1853dfa958651a7327e931d7744b267d4a151f1a8e1d8080f37c009b6bc5d22ca9cef5bf2f9cecc8d4a114fa1971
24
25 diff --git a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-19.0.0.ebuild b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-19.0.0.ebuild
26 new file mode 100644
27 index 00000000000..472e40b89e8
28 --- /dev/null
29 +++ b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-19.0.0.ebuild
30 @@ -0,0 +1,45 @@
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 kodi-addon
37 +
38 +DESCRIPTION="Goom visualizer for Kodi"
39 +HOMEPAGE="https://github.com/xbmc/visualization.goom"
40 +KODI_PLUGIN_NAME="visualization.goom"
41 +
42 +case ${PV} in
43 +9999)
44 + SRC_URI=""
45 + EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git"
46 + inherit git-r3
47 + DEPEND="~media-tv/kodi-9999"
48 + ;;
49 +*)
50 + CODENAME="Matrix"
51 + KEYWORDS="~amd64 ~x86"
52 + SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
53 + S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}"
54 + DEPEND="=media-tv/kodi-19*:="
55 + ;;
56 +esac
57 +
58 +LICENSE="GPL-2+"
59 +SLOT="0"
60 +IUSE=""
61 +
62 +DEPEND+="
63 + >=media-libs/glm-0.9.9.8-r1
64 + virtual/opengl
65 + "
66 +
67 +RDEPEND="${DEPEND}"
68 +
69 +BDEPEND="virtual/pkgconfig"
70 +
71 +src_prepare() {
72 + if [ -d depends ]; then rm -rf depends || die; fi
73 +
74 + cmake_src_prepare
75 +}