Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: mpv-plugin/autoload/
Date: Mon, 30 May 2022 11:58:15
Message-Id: 1653903956.08ce51bf3fcf3e005e06180b42b91742735a228b.andrewammerlaan@gentoo
1 commit: 08ce51bf3fcf3e005e06180b42b91742735a228b
2 Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
3 AuthorDate: Mon May 30 09:40:54 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 09:45:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=08ce51bf
7
8 mpv-plugin/autoload: add 0.34.1
9
10 Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>
11
12 mpv-plugin/autoload/Manifest | 1 +
13 mpv-plugin/autoload/autoload-0.34.1.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/mpv-plugin/autoload/Manifest b/mpv-plugin/autoload/Manifest
17 index ec4b015b3..94da30585 100644
18 --- a/mpv-plugin/autoload/Manifest
19 +++ b/mpv-plugin/autoload/Manifest
20 @@ -1 +1,2 @@
21 DIST mpv-0.33.1.tar.gz 3259882 BLAKE2B 97ab101c2013ffb219d36a788020fb9fc4382d09971ac0beee42701a54667a6c766521be7b052193de4505b2117c2d47b3682ebafab46632fc40b637e0d19c04 SHA512 99d6c40d18c5cf83814b44ec6d8eade229800c5b51a734c9bbe831c3aeb95f8931124c94f6ae2360ffff62053c163bc3c55b254df021e005b350ebc3df7e952b
22 +DIST mpv-0.34.1.tar.gz 3288356 BLAKE2B c0e5dc3cd23307449a526bd2cf0df5d870322aa1914a139784fd50d77274d42648a769ee4da3ba74e34a7a080700a5740dae13ed0827df1b3cfef36846f983ab SHA512 77ea349d6999f8cce9b5cce4cebd3506a224fc18ab08d22dd16bd34c34d012bb170879b268ddd62db40d116b4cc0b2d9d651b8097f387ed9115c426834cac77e
23
24 diff --git a/mpv-plugin/autoload/autoload-0.34.1.ebuild b/mpv-plugin/autoload/autoload-0.34.1.ebuild
25 new file mode 100644
26 index 000000000..f82929a01
27 --- /dev/null
28 +++ b/mpv-plugin/autoload/autoload-0.34.1.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +USE_MPV="rdepend"
36 +MPV_REQ_USE="lua"
37 +inherit mpv-plugin
38 +
39 +DESCRIPTION="Loads playlist entries before and after the the currently played file"
40 +HOMEPAGE="https://github.com/mpv-player/mpv/tree/master/TOOLS/lua"
41 +
42 +# use the already available mpv tarball
43 +SRC_URI="https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> mpv-${PV}.tar.gz"
44 +
45 +# since this comes from mpv, use its licenses
46 +LICENSE="LGPL-2.1+ GPL-2+ BSD ISC"
47 +KEYWORDS="~amd64"
48 +
49 +# lock mpv version
50 +RDEPEND="~media-video/mpv-${PV}"
51 +
52 +S="${WORKDIR}/mpv-${PV}/TOOLS/lua"
53 +
54 +MPV_PLUGIN_FILES=( ${PN}.lua )