Gentoo Archives: gentoo-commits

From: Viorel Munteanu <ceamac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: mpv-plugin/autoload/
Date: Mon, 27 Feb 2023 18:04:34
Message-Id: 1677510812.0d154d51a4bb8f5f4196468af75f74fd9f1b3acb.ceamac@gentoo
1 commit: 0d154d51a4bb8f5f4196468af75f74fd9f1b3acb
2 Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 27 11:36:43 2023 +0000
4 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 15:13:32 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0d154d51
7
8 mpv-plugin/autoload: add 0.35.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.35.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 081911f37..de69fca51 100644
18 --- a/mpv-plugin/autoload/Manifest
19 +++ b/mpv-plugin/autoload/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mpv-0.34.1.tar.gz 3288356 BLAKE2B c0e5dc3cd23307449a526bd2cf0df5d870322aa1914a139784fd50d77274d42648a769ee4da3ba74e34a7a080700a5740dae13ed0827df1b3cfef36846f983ab SHA512 77ea349d6999f8cce9b5cce4cebd3506a224fc18ab08d22dd16bd34c34d012bb170879b268ddd62db40d116b4cc0b2d9d651b8097f387ed9115c426834cac77e
22 DIST mpv-0.35.0.tar.gz 3365752 BLAKE2B 9b8dca943fc60a68f8474549d75c021dd9157195253c5ec09721969e500b2756c033e86975499f5632f0c943ac7bb54699f47340f0dee73d7284668d4419b17f SHA512 d5c1f734057f6b6c27e7f59de43cf7c0e7f813d842b8c7fd2ae1073dbe649c8187b7686df4efe928db2952e9f1efc171245e6f8780c1d9f174f4d7abff1e073a
23 +DIST mpv-0.35.1.tar.gz 3367913 BLAKE2B 706a2031a2ca973eb3a092ec7f62ba40ca4dfd78e3ffe5d6e432486b0018852b034152a21805be594054178ccb17856dafe2b860cddcc22d27df895d163871de SHA512 42f3564a9ed4d972d14b2c697b0163f06a8bb68a0606a86c34935181247c783e3cb62286b445799998def0919fb13fce8b8f6453f82652d5bfaea5929119127a
24
25 diff --git a/mpv-plugin/autoload/autoload-0.35.1.ebuild b/mpv-plugin/autoload/autoload-0.35.1.ebuild
26 new file mode 100644
27 index 000000000..e46627eca
28 --- /dev/null
29 +++ b/mpv-plugin/autoload/autoload-0.35.1.ebuild
30 @@ -0,0 +1,25 @@
31 +# Copyright 2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +USE_MPV="rdepend"
37 +MPV_REQ_USE="lua"
38 +inherit mpv-plugin
39 +
40 +DESCRIPTION="Loads playlist entries before and after the the currently played file"
41 +HOMEPAGE="https://github.com/mpv-player/mpv/tree/master/TOOLS/lua"
42 +
43 +# use the already available mpv tarball
44 +SRC_URI="https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> mpv-${PV}.tar.gz"
45 +
46 +# since this comes from mpv, use its licenses
47 +LICENSE="LGPL-2.1+ GPL-2+ BSD ISC MIT"
48 +KEYWORDS="~amd64"
49 +
50 +# lock mpv version
51 +RDEPEND="~media-video/mpv-${PV}"
52 +
53 +S="${WORKDIR}/mpv-${PV}/TOOLS/lua"
54 +
55 +MPV_PLUGIN_FILES=( ${PN}.lua )