diff options
author | Craig Andrews <candrews@gentoo.org> | 2021-04-02 14:45:53 -0400 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2021-04-02 14:46:28 -0400 |
commit | ed5a4eaeead4f93a297ce55e9a47df492f524c96 (patch) | |
tree | 9cac50cdb78279b0a24e4cbc36c1e961d4bf15f9 /media-plugins | |
parent | media-video/rav1e: Version bump (diff) | |
download | gentoo-ed5a4eaeead4f93a297ce55e9a47df492f524c96.tar.gz gentoo-ed5a4eaeead4f93a297ce55e9a47df492f524c96.tar.bz2 gentoo-ed5a4eaeead4f93a297ce55e9a47df492f524c96.zip |
media-plugins/kodi-vfs-libarchive: 2.0.1 version bump
Package-Manager: Portage-3.0.18, Repoman-3.0.3
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-2.0.1.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/media-plugins/kodi-vfs-libarchive/Manifest b/media-plugins/kodi-vfs-libarchive/Manifest index dace39c470a7..345d51b7eb27 100644 --- a/media-plugins/kodi-vfs-libarchive/Manifest +++ b/media-plugins/kodi-vfs-libarchive/Manifest @@ -1 +1,2 @@ DIST kodi-vfs-libarchive-2.0.0.tar.gz 56515 BLAKE2B da4e7634b908677871931eef458d44d7088e6bc9ed19c39462154b3eda0c5347e42306e8116bf072acd1d59642113be1f213b23113680c4e4b45896d2d425502 SHA512 689734fe24a74a756a8243e0ea721d1e3877b485f5294040b34c763c905d53754daba857982875b3df1dc5630efefc71f17558b89b5470fb2bb084402beb4199 +DIST kodi-vfs-libarchive-2.0.1.tar.gz 56520 BLAKE2B 32d2fe05da176cbbbd601e62434595aa6b597074fd9c22495ccbf8db97abb479cc8df22a3b45cb7a79734245d29fe15e429410fa638cd98f5fac26198c89a8f4 SHA512 8a72a1ef01beedf6cbbc4349b4f1cec135dc99158cdd1d5fcda0bfbde74ed3cced9f2f8c01dafdb3891109c5b257b16a2448124de2396cb6db50b0316f67efb7 diff --git a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-2.0.1.ebuild b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-2.0.1.ebuild new file mode 100644 index 000000000000..eff36cf2fc22 --- /dev/null +++ b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-2.0.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake 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" + EGIT_BRANCH="Matrix" + inherit git-r3 + ;; +*) + CODENAME="Matrix" + 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-19* + " +RDEPEND="${DEPEND}" |