Gentoo Archives: gentoo-commits

From: Nicola Smaniotto <smaniotto.nicola@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: mpv-plugin/autoload/
Date: Tue, 03 May 2022 12:14:17
Message-Id: 1651580049.b28384f839ffacb568cb4a6804395d97a52b41dc.smaniotto.nicola@gentoo
1 commit: b28384f839ffacb568cb4a6804395d97a52b41dc
2 Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
3 AuthorDate: Tue May 3 12:04:58 2022 +0000
4 Commit: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
5 CommitDate: Tue May 3 12:14:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b28384f8
7
8 mpv-plugin/autoload: initial import
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.33.1.ebuild | 25 +++++++++++++++++++++++++
14 mpv-plugin/autoload/metadata.xml | 8 ++++++++
15 3 files changed, 34 insertions(+)
16
17 diff --git a/mpv-plugin/autoload/Manifest b/mpv-plugin/autoload/Manifest
18 new file mode 100644
19 index 000000000..ec4b015b3
20 --- /dev/null
21 +++ b/mpv-plugin/autoload/Manifest
22 @@ -0,0 +1 @@
23 +DIST mpv-0.33.1.tar.gz 3259882 BLAKE2B 97ab101c2013ffb219d36a788020fb9fc4382d09971ac0beee42701a54667a6c766521be7b052193de4505b2117c2d47b3682ebafab46632fc40b637e0d19c04 SHA512 99d6c40d18c5cf83814b44ec6d8eade229800c5b51a734c9bbe831c3aeb95f8931124c94f6ae2360ffff62053c163bc3c55b254df021e005b350ebc3df7e952b
24
25 diff --git a/mpv-plugin/autoload/autoload-0.33.1.ebuild b/mpv-plugin/autoload/autoload-0.33.1.ebuild
26 new file mode 100644
27 index 000000000..f82929a01
28 --- /dev/null
29 +++ b/mpv-plugin/autoload/autoload-0.33.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"
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 )
56
57 diff --git a/mpv-plugin/autoload/metadata.xml b/mpv-plugin/autoload/metadata.xml
58 new file mode 100644
59 index 000000000..be3f1030e
60 --- /dev/null
61 +++ b/mpv-plugin/autoload/metadata.xml
62 @@ -0,0 +1,8 @@
63 +<?xml version="1.0" encoding="UTF-8"?>
64 +<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
65 +<pkgmetadata>
66 + <maintainer type="person">
67 + <email>smaniotto.nicola@×××××.com</email>
68 + <name>Nicola Smaniotto</name>
69 + </maintainer>
70 +</pkgmetadata>