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-peripheral-joystick/
Date: Sun, 05 Sep 2021 18:36:38
Message-Id: 1630866990.295ff27367ddfbc3078f96c7f2cad91ab39a2349.candrews@gentoo
1 commit: 295ff27367ddfbc3078f96c7f2cad91ab39a2349
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 5 18:34:43 2021 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 5 18:36:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=295ff273
7
8 media-plugins/kodi-peripheral-joystick: 19.0.0 version bump
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 media-plugins/kodi-peripheral-joystick/Manifest | 1 +
14 .../kodi-peripheral-joystick-19.0.0.ebuild | 38 ++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/media-plugins/kodi-peripheral-joystick/Manifest b/media-plugins/kodi-peripheral-joystick/Manifest
18 index d9f883acb78..e7e067024b3 100644
19 --- a/media-plugins/kodi-peripheral-joystick/Manifest
20 +++ b/media-plugins/kodi-peripheral-joystick/Manifest
21 @@ -1 +1,2 @@
22 DIST kodi-peripheral-joystick-1.7.2.tar.gz 119922 BLAKE2B b4e1c67bb4b473b7907990dc8a9dababdb6c87c69205a91b763a35b3cc381e6f831f505a6fa654bb37cc9939ec3cf83d6c2735a76851f33d8cd9fb38467efbb1 SHA512 d838f44281704e2bc7f3280f05b93347dd2e7a10b8e2b31efdc34b8994723f6aa6ca643fce01f515003caf7d85abbd3eed6a3833e6adf88b9fb22184d2c2e1ae
23 +DIST kodi-peripheral-joystick-19.0.0.tar.gz 125088 BLAKE2B 3dea375a1939f8520e6f537ba607fb1db68a9283d7954a78cbfb95cfd53b29a4d8c3c7e97469af3753e268a5481d044a9b9b5898c11f9de14d5bece17d815f96 SHA512 edb2582d56a6fee5965e99bf6ceeaf89d7278e767dd3991eba0bbe2be7431c3d53c856727f343db7a7f76aafa36eb5cd947a9136afa0248805f87cd66d751bb4
24
25 diff --git a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-19.0.0.ebuild b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-19.0.0.ebuild
26 new file mode 100644
27 index 00000000000..0afe32da893
28 --- /dev/null
29 +++ b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-19.0.0.ebuild
30 @@ -0,0 +1,38 @@
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="Libretro compatibility layer for the Kodi Game API"
39 +HOMEPAGE="https://github.com/xbmc/peripheral.joystick"
40 +SRC_URI=""
41 +
42 +case ${PV} in
43 +9999)
44 + SRC_URI=""
45 + EGIT_BRANCH="Matrix"
46 + EGIT_REPO_URI="https://github.com/xbmc/peripheral.joystick.git"
47 + inherit git-r3
48 + ;;
49 +*)
50 + KEYWORDS="~amd64 ~x86"
51 + CODENAME="Matrix"
52 + SRC_URI="https://github.com/xbmc/peripheral.joystick/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
53 + S="${WORKDIR}/peripheral.joystick-${PV}-${CODENAME}"
54 + ;;
55 +esac
56 +
57 +LICENSE="GPL-2"
58 +SLOT="0"
59 +IUSE=""
60 +
61 +DEPEND="
62 + =media-tv/kodi-19*
63 + dev-libs/libpcre
64 + dev-libs/tinyxml
65 + "
66 +RDEPEND="
67 + ${DEPEND}
68 + "