forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-plugins/kodi-pvr-demo: 7.1.3 version bump
Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Craig Andrews <[email protected]>
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST kodi-pvr-demo-7.1.2.tar.gz 42295 BLAKE2B 215fe80473237dc4fffe31368e7e2b70899577f1f576e178b707c51892960d22f2d1df6ee719b28ca050ecd636832119963e881ecb29dc2f492d9798afb7ab7a SHA512 c9d0e22405efc5dc8b2aab1714d5f1de1b538121820cfe46dc2f6e42812b92292bde6591f70d7551c3afbb4ee0349f4530b05b8c15132c9aab7fb69b7683c744 | ||
DIST kodi-pvr-demo-7.1.3.tar.gz 42285 BLAKE2B c2bb67dc47bb85e26bc4cd34d72d272507bb635b1e6f5d14ce57575b6493448bb362a0ac7e0334852b84e9fe4f0f1df611ec9965c11f05dbd91f9b1a93ef7d22 SHA512 faf896f1a531d9bb35c36cd303ec75f66f22030fedc43c1a83a25591d7297e57148bf8adc34d6072370c861b34ee1b9bc037997817cfdd651b069c0057366d2e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit cmake kodi-addon | ||
|
||
DESCRIPTION="Demo PVR for Kodi" | ||
HOMEPAGE="https://github.com/kodi-pvr/pvr.demo" | ||
SRC_URI="" | ||
|
||
case ${PV} in | ||
9999) | ||
SRC_URI="" | ||
EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.demo.git" | ||
inherit git-r3 | ||
;; | ||
*) | ||
CODENAME="Matrix" | ||
KEYWORDS="~amd64 ~x86" | ||
SRC_URI="https://github.com/kodi-pvr/pvr.demo/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" | ||
S="${WORKDIR}/pvr.demo-${PV}-${CODENAME}" | ||
;; | ||
esac | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
IUSE="" | ||
|
||
DEPEND=" | ||
=media-tv/kodi-19* | ||
dev-libs/tinyxml | ||
" | ||
|
||
RDEPEND=" | ||
${DEPEND} | ||
" |