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, 24 Aug 2020 13:46:06
Message-Id: 1598276755.cbc2c94bfc74ca85aa154acfec9b8d4c665760cb.candrews@gentoo
1 commit: cbc2c94bfc74ca85aa154acfec9b8d4c665760cb
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 24 13:41:40 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 24 13:45:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbc2c94b
7
8 media-plugins/kodi-visualization-goom: 3.3.0 version bump
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 media-plugins/kodi-visualization-goom/Manifest | 1 +
14 .../kodi-visualization-goom-3.3.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 5b1673807dc..6da1af370fd 100644
19 --- a/media-plugins/kodi-visualization-goom/Manifest
20 +++ b/media-plugins/kodi-visualization-goom/Manifest
21 @@ -2,3 +2,4 @@ DIST kodi-visualization-goom-2.1.0.tar.gz 8119409 BLAKE2B 4162201e4415df9b8dc4e2
22 DIST kodi-visualization-goom-2.2.0.tar.gz 8119581 BLAKE2B 4e02ac797420f6acf59c9a2c3ce8c185fcf64fc6306d9635401a026207b92eaa6465e492bcbae06b95130fc114c31529d31e5ddcc1e6eeb855f513a8689500e4 SHA512 b6ab828e76b4c1dae54b853cfdc2f31c143e93ec02e81492c3e7152174ce74553eb06720a448f1434a81e44d886ee2b5751c3674ce3f9a45e4988421ea5931ba
23 DIST kodi-visualization-goom-2.2.1.tar.gz 8119580 BLAKE2B 92558e0560e0590bf7ed52e9506518e32ba80d5a71d10d1c622ec99186c8621a73308bb70cd95f97e86f6e2b6bf2920938e6692b5f080d98e2d457e95c1ab958 SHA512 f93f602e77e754545a58dc9f4ff92c850754503db853b47acbb36468263059919e827e8ffeafe261eca7f6e9c8b563a83787914fa8669bfb50f66aa5c551fbc6
24 DIST kodi-visualization-goom-3.2.0.tar.gz 8125972 BLAKE2B 2de0580cdda6a0f94a6dc1bd487910b7683448683670c9ae2c1793beff44351db617ae79fd0aad1bc55b39d030868cdc0f71f8c1853162faf4b68248ce0a0510 SHA512 78111b28918b3ef7a1f00ed1c4b0e74377b7c9e4e11bd7615399d577510da62333f7ad24f40a66a65cd4bec8ad1619122809590054edafd1071e546c7b64fd69
25 +DIST kodi-visualization-goom-3.3.0.tar.gz 1210480 BLAKE2B 1e1f5b48820c2fd6847e5fc241a409eacefae1bc2a95d3b5fca72e6bf4e6d1202b1b9806c0a6810724834655f071bd183528e7cec8242db97ea3826fcffbe72a SHA512 5a51ffa0730786616f38cf156d480c747ddcef5e099c26de1cf9b3459732d50c553e72a5a84b4b00939b91c1cc06b944f0901e357b11895eb87d83290d00e2d0
26
27 diff --git a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.3.0.ebuild b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.3.0.ebuild
28 new file mode 100644
29 index 00000000000..e1aa393b292
30 --- /dev/null
31 +++ b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.3.0.ebuild
32 @@ -0,0 +1,45 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit kodi-addon
39 +
40 +DESCRIPTION="Goom visualizer for Kodi"
41 +HOMEPAGE="https://github.com/xbmc/visualization.goom"
42 +KODI_PLUGIN_NAME="visualization.goom"
43 +
44 +case ${PV} in
45 +9999)
46 + SRC_URI=""
47 + EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git"
48 + inherit git-r3
49 + DEPEND="~media-tv/kodi-9999"
50 + ;;
51 +*)
52 + CODENAME="Matrix"
53 + KEYWORDS="~amd64 ~x86"
54 + SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
55 + S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}"
56 + DEPEND="=media-tv/kodi-19*:="
57 + ;;
58 +esac
59 +
60 +LICENSE="GPL-2+"
61 +SLOT="0"
62 +IUSE=""
63 +
64 +DEPEND+="
65 + >=media-libs/glm-0.9.9.8-r1
66 + virtual/opengl
67 + "
68 +
69 +RDEPEND="${DEPEND}"
70 +
71 +BDEPEND="virtual/pkgconfig"
72 +
73 +src_prepare() {
74 + if [ -d depends ]; then rm -rf depends || die; fi
75 +
76 + cmake_src_prepare
77 +}