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/autosubsync-mpv/
Date: Tue, 03 May 2022 12:14:16
Message-Id: 1651580049.bd130288d4e018999159ab5bc01e94661093e3b6.smaniotto.nicola@gentoo
1 commit: bd130288d4e018999159ab5bc01e94661093e3b6
2 Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
3 AuthorDate: Tue May 3 12:05:10 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=bd130288
7
8 mpv-plugin/autosubsync-mpv: initial import
9
10 Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>
11
12 mpv-plugin/autosubsync-mpv/Manifest | 1 +
13 .../autosubsync-mpv-20220402.ebuild | 32 ++++++++++++++++++++++
14 mpv-plugin/autosubsync-mpv/metadata.xml | 8 ++++++
15 3 files changed, 41 insertions(+)
16
17 diff --git a/mpv-plugin/autosubsync-mpv/Manifest b/mpv-plugin/autosubsync-mpv/Manifest
18 new file mode 100644
19 index 000000000..ce241e8f5
20 --- /dev/null
21 +++ b/mpv-plugin/autosubsync-mpv/Manifest
22 @@ -0,0 +1 @@
23 +DIST autosubsync-mpv-20220402.tar.gz 9480 BLAKE2B 91cdbde4cef7fd3899d5e2bec649489ed9edb30f544ca333a679cca9ca7b472f5eb7075667f136f364eb4dfcd75430408da8f38d5c639bbf860e21e2db2a8f1c SHA512 f56404fe9fcdf5f77b1a4d5829741fe5737c16e88e4a07e8bea845b1f2b982345446140c3e9663ff41b0b13b953cdddb39c5bcb4203e020f7c53d9d855dc138b
24
25 diff --git a/mpv-plugin/autosubsync-mpv/autosubsync-mpv-20220402.ebuild b/mpv-plugin/autosubsync-mpv/autosubsync-mpv-20220402.ebuild
26 new file mode 100644
27 index 000000000..cbbfccd38
28 --- /dev/null
29 +++ b/mpv-plugin/autosubsync-mpv/autosubsync-mpv-20220402.ebuild
30 @@ -0,0 +1,32 @@
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 +COMMIT="989e73fd25800d4722b9bb1105aac65f55fec035"
41 +MY_P="${PN}-${COMMIT}"
42 +
43 +DESCRIPTION="Automatic subtitle synchronization script for mpv media player"
44 +HOMEPAGE="https://github.com/joaquintorres/autosubsync-mpv/"
45 +
46 +SRC_URI="https://github.com/joaquintorres/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
47 +
48 +LICENSE="MIT"
49 +KEYWORDS="~amd64"
50 +
51 +RDEPEND="
52 + media-video/ffsubsync
53 +" # alass is supported but not in the gentoo tree
54 +
55 +S="${WORKDIR}/${MY_P}"
56 +
57 +MPV_PLUGIN_FILES=(
58 + autosubsync.lua
59 + main.lua
60 + menu.lua
61 + subtitle.lua
62 +)
63
64 diff --git a/mpv-plugin/autosubsync-mpv/metadata.xml b/mpv-plugin/autosubsync-mpv/metadata.xml
65 new file mode 100644
66 index 000000000..be3f1030e
67 --- /dev/null
68 +++ b/mpv-plugin/autosubsync-mpv/metadata.xml
69 @@ -0,0 +1,8 @@
70 +<?xml version="1.0" encoding="UTF-8"?>
71 +<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
72 +<pkgmetadata>
73 + <maintainer type="person">
74 + <email>smaniotto.nicola@×××××.com</email>
75 + <name>Nicola Smaniotto</name>
76 + </maintainer>
77 +</pkgmetadata>