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: Wed, 09 Sep 2020 16:52:52
Message-Id: 1599670359.13d41f65f3fa9661905a9b343420a8149db71768.candrews@gentoo
1 commit: 13d41f65f3fa9661905a9b343420a8149db71768
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 9 16:43:17 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 9 16:52:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13d41f65
7
8 media-plugins/kodi-peripheral-joystick: 1.7.0 version bump
9
10 Package-Manager: Portage-3.0.6, Repoman-3.0.1
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 media-plugins/kodi-peripheral-joystick/Manifest | 1 +
14 .../kodi-peripheral-joystick-1.7.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 11ce1818181..fe853b137ad 100644
19 --- a/media-plugins/kodi-peripheral-joystick/Manifest
20 +++ b/media-plugins/kodi-peripheral-joystick/Manifest
21 @@ -4,3 +4,4 @@ DIST kodi-peripheral-joystick-1.4.8.tar.gz 90965 BLAKE2B b9bb3aa6e1a5531c304f2f3
22 DIST kodi-peripheral-joystick-1.4.9.tar.gz 111161 BLAKE2B bcee8aedff118cbceec050ae1b6c0a559aeb735c539624f59ae59648107937b5a904ed24bc1c323443e00289d78b2c1b83ff8e18fc9affb22b8ca706b115fb12 SHA512 6d5d8e5922c7b9c38a55372da585366331f550864ee7d95369bb8b32897250b38d4cbb0e2f5fc7eb91aea34f09f6f33a62b148f731f422ac1b6ead9b2eac4ae5
23 DIST kodi-peripheral-joystick-1.6.0.tar.gz 117163 BLAKE2B 24e6eb1b4b4310fc3fc452a719094cdaac7caf7ef4825add4a9bcde453044e5a352b859b0c247fa445bde5554a3b82e40c65f185adc524f855140126716a3e27 SHA512 9fd11af0e75a80cfd1086caf29213616a441c0f8c5066ab2d54dac94603240c5f13af9048ae0691f6bd34511ac36c8cf478cdd6cd179ef97f282ae82f932e0fe
24 DIST kodi-peripheral-joystick-1.6.1.tar.gz 117588 BLAKE2B c117990d6dc90ff53f4d23e08288df1cfe2fa0f685498a9f9630a07e6ee36207af3c2ed6faf81746e06bdcd94674cd89d97fe6ff75ea5263754c4eba10498605 SHA512 3907fea59d1919f9580e17e01b672aa525b106cb126dc6e7c873fe20b8dd68f395f39fb52ae08a02206a1c301523cd9a2b2f67076cb5e6c4b582d46800a892c7
25 +DIST kodi-peripheral-joystick-1.7.0.tar.gz 117000 BLAKE2B a13cf86805afc77c6178a69fb735fa4544fbc0befb30c43e92d07a695416d1c0006a2227e46c91784c139e7ea205f9653b4f4802bfd734f36c7db9a69782d4ed SHA512 d6c837b28e907376b88e84b37cb9e2f04d96cd97db33f53165c1771087317682409057457596e007410c4dce0b6442551dd922d8a2c4841187e48457ec7ce340
26
27 diff --git a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.7.0.ebuild b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.7.0.ebuild
28 new file mode 100644
29 index 00000000000..b29f362fab0
30 --- /dev/null
31 +++ b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.7.0.ebuild
32 @@ -0,0 +1,38 @@
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 cmake kodi-addon
39 +
40 +DESCRIPTION="Libretro compatibility layer for the Kodi Game API"
41 +HOMEPAGE="https://github.com/xbmc/peripheral.joystick"
42 +SRC_URI=""
43 +
44 +case ${PV} in
45 +9999)
46 + SRC_URI=""
47 + EGIT_BRANCH="Matrix"
48 + EGIT_REPO_URI="https://github.com/xbmc/peripheral.joystick.git"
49 + inherit git-r3
50 + ;;
51 +*)
52 + KEYWORDS="~amd64 ~x86"
53 + CODENAME="Matrix"
54 + SRC_URI="https://github.com/xbmc/peripheral.joystick/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
55 + S="${WORKDIR}/peripheral.joystick-${PV}-${CODENAME}"
56 + ;;
57 +esac
58 +
59 +LICENSE="GPL-2"
60 +SLOT="0"
61 +IUSE=""
62 +
63 +DEPEND="
64 + =media-tv/kodi-19*
65 + dev-libs/libpcre
66 + dev-libs/tinyxml
67 + "
68 +RDEPEND="
69 + ${DEPEND}
70 + "