diff options
author | Craig Andrews <candrews@gentoo.org> | 2019-02-14 09:09:30 -0500 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2019-02-14 09:09:49 -0500 |
commit | 4101a16270e30581a4ad6f6d5de585eb4d1b90e8 (patch) | |
tree | e5ac19a20bc3a28f10c3a7e54942b42aa12e3dba /media-plugins | |
parent | www-apache/mod_h2: 1.12.3 version bump (diff) | |
download | gentoo-4101a16270e30581a4ad6f6d5de585eb4d1b90e8.tar.gz gentoo-4101a16270e30581a4ad6f6d5de585eb4d1b90e8.tar.bz2 gentoo-4101a16270e30581a4ad6f6d5de585eb4d1b90e8.zip |
media-plugins/kodi-vfs-libarchive: 1.0.5 version bump
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/kodi-vfs-libarchive/Manifest | 1 | ||||
-rw-r--r-- | media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.5.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/media-plugins/kodi-vfs-libarchive/Manifest b/media-plugins/kodi-vfs-libarchive/Manifest index 37ae5eafb5f0..266dc93e32c1 100644 --- a/media-plugins/kodi-vfs-libarchive/Manifest +++ b/media-plugins/kodi-vfs-libarchive/Manifest @@ -1 +1,2 @@ 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 diff --git a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.5.ebuild b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.5.ebuild new file mode 100644 index 000000000000..6c8ff0eb44f4 --- /dev/null +++ b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.5.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2019 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* + " |