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-audiodecoder-timidity/
Date: Mon, 12 Nov 2018 03:49:15
Message-Id: 1541994538.469342ed567f1da0d8068e0676555349c8462d61.candrews@gentoo
1 commit: 469342ed567f1da0d8068e0676555349c8462d61
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 12 03:44:44 2018 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 12 03:48:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=469342ed
7
8 media-plugins/kodi-audiodecoder-timidity: 1.1.0 is only compatible with Kodi 17
9
10 Closes: https://bugs.gentoo.org/670826
11
12 Package-Manager: Portage-2.3.51, Repoman-2.3.12
13 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
14
15 .../kodi-audiodecoder-timidity-1.1.0-r1.ebuild | 34 ++++++++++++++++++++++
16 1 file changed, 34 insertions(+)
17
18 diff --git a/media-plugins/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity-1.1.0-r1.ebuild b/media-plugins/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity-1.1.0-r1.ebuild
19 new file mode 100644
20 index 00000000000..c539371a7f9
21 --- /dev/null
22 +++ b/media-plugins/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity-1.1.0-r1.ebuild
23 @@ -0,0 +1,34 @@
24 +# Copyright 1999-2018 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=6
28 +
29 +inherit cmake-utils kodi-addon
30 +
31 +DESCRIPTION="Timidity decoder addon for Kodi"
32 +HOMEPAGE="https://github.com/notspiff/audiodecoder.timidity"
33 +SRC_URI=""
34 +
35 +case ${PV} in
36 +9999)
37 + SRC_URI=""
38 + EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.timidity.git"
39 + inherit git-r3
40 + ;;
41 +*)
42 + KEYWORDS="~amd64 ~x86"
43 + SRC_URI="https://github.com/notspiff/audiodecoder.timidity/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 + S="${WORKDIR}/audiodecoder.timidity-${PV}"
45 + ;;
46 +esac
47 +
48 +LICENSE="GPL-2"
49 +SLOT="0"
50 +IUSE=""
51 +
52 +DEPEND="
53 + =media-tv/kodi-17*
54 + "
55 +RDEPEND="
56 + ${DEPEND}
57 + "