summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Andrews <candrews@gentoo.org>2020-03-29 21:20:46 -0400
committerCraig Andrews <candrews@gentoo.org>2020-03-29 21:21:45 -0400
commit5d26d59ae76267292359dbaec09c1e4881e62e76 (patch)
treec52962abeee3dfd257cd2bbe463db92a350689a2 /media-plugins
parentmedia-plugins/kodi-vfs-sacd: 1.0.4 version bump (diff)
downloadgentoo-5d26d59ae76267292359dbaec09c1e4881e62e76.tar.gz
gentoo-5d26d59ae76267292359dbaec09c1e4881e62e76.tar.bz2
gentoo-5d26d59ae76267292359dbaec09c1e4881e62e76.zip
media-plugins/kodi-vfs-libarchive: 1.0.7 version bump
Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r--media-plugins/kodi-vfs-libarchive/Manifest1
-rw-r--r--media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.7.ebuild43
2 files changed, 44 insertions, 0 deletions
diff --git a/media-plugins/kodi-vfs-libarchive/Manifest b/media-plugins/kodi-vfs-libarchive/Manifest
index ec367de99cda..f1d898e58c3e 100644
--- a/media-plugins/kodi-vfs-libarchive/Manifest
+++ b/media-plugins/kodi-vfs-libarchive/Manifest
@@ -1,3 +1,4 @@
DIST kodi-vfs-libarchive-1.0.2.tar.gz 21985 BLAKE2B 0d3b8d7405cc7ea1a766a138b4327de295811f248ba50ab085d223406e172607ff08e1cd395b8d421e8f81a7339e9f053a4542567007803ea6285b52907d2264 SHA512 fec6506e4e85da9cde8fb5b800486cd95666bfcf834e4da9331ee67ff35880507175249229504fd3e10d3b3b475ffc8d1bd90d5c5ad0d3457dc5cf01eff36f83
DIST kodi-vfs-libarchive-1.0.5.tar.gz 32808 BLAKE2B f822cfb188d5d6ff2f5237fc3d242b7e9095d967314d9701a1a1635ff7865b9fd4d836686af5dd6afc90fd52c097952937d0ed7c02eb56c4c51b335d8f9b328c SHA512 3d9c5d1b8cba0545ca2b30a3a72d2ed930324329968f17a1fe3c145b54632d8d60dee45efdc1d7e74f7872503ce893101c71b6d9063b372de912a60980c762c7
DIST kodi-vfs-libarchive-1.0.6.tar.gz 47484 BLAKE2B ed0140b6266884c277f58d33280942cd2274e9b07a73a6471a58eb0fff54836d54c8956921617fc92e332d318451af6fb58df85ee5be2fc20c8d1c359c1d6126 SHA512 395f226640fca5adc31a3dc12e99c25bf379d531f5ee972a8c087afeda6d872add1aef8bd66aabed53671a6657ea223a998521902a7ce8c9d4c96384272b8b2b
+DIST kodi-vfs-libarchive-1.0.7.tar.gz 53326 BLAKE2B ad9088f04cc4b4ec19b10535bcff3d2c8d4fc33eb0751f7d97be95d68db9359a9598be806e03da427cd7a0d75c26ba09be06c1277f1e235900ae00240fe6e2c2 SHA512 982d691e290aa3aed5c9822903a540a13a5f65f3b85d52987ee2bedfcd06faee7bd7745d8e614a5e6502f102e637baed111e60b371294b658ea1f733623ad53a
diff --git a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.7.ebuild b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.7.ebuild
new file mode 100644
index 000000000000..7a993c6932b4
--- /dev/null
+++ b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.7.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils kodi-addon
+
+DESCRIPTION="Libarchive VFS add-on for Kodi"
+HOMEPAGE="https://github.com/xbmc/vfs.libarchive"
+SRC_URI=""
+
+case ${PV} in
+9999)
+ SRC_URI=""
+ EGIT_REPO_URI="https://github.com/xbmc/vfs.libarchive.git"
+ inherit git-r3
+ ;;
+*)
+ CODENAME="Leia"
+ KEYWORDS="~amd64 ~x86"
+ SRC_URI="https://github.com/xbmc/vfs.libarchive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
+ S="${WORKDIR}/vfs.libarchive-${PV}-${CODENAME}"
+ ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="libressl"
+
+DEPEND="
+ app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib]
+ app-arch/lzma
+ app-arch/bzip2
+ sys-libs/zlib
+ app-arch/lz4
+ dev-libs/lzo:2
+ !libressl? ( >=dev-libs/openssl-1.0.2l:0= )
+ libressl? (
+ dev-libs/libressl:0=
+ app-arch/libarchive[libressl]
+ )
+ =media-tv/kodi-18*
+ "