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/mpv-autosub/
Date: Tue, 03 May 2022 12:14:18
Message-Id: 1651580049.e7c42e6fac12eb81f5ce2c6d0a2ea3bcb351d157.smaniotto.nicola@gentoo
1 commit: e7c42e6fac12eb81f5ce2c6d0a2ea3bcb351d157
2 Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
3 AuthorDate: Tue May 3 12:05:36 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=e7c42e6f
7
8 mpv-plugin/mpv-autosub: initial import
9
10 Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>
11
12 mpv-plugin/mpv-autosub/Manifest | 1 +
13 mpv-plugin/mpv-autosub/metadata.xml | 8 +++++++
14 mpv-plugin/mpv-autosub/mpv-autosub-20210629.ebuild | 27 ++++++++++++++++++++++
15 3 files changed, 36 insertions(+)
16
17 diff --git a/mpv-plugin/mpv-autosub/Manifest b/mpv-plugin/mpv-autosub/Manifest
18 new file mode 100644
19 index 000000000..b846c710c
20 --- /dev/null
21 +++ b/mpv-plugin/mpv-autosub/Manifest
22 @@ -0,0 +1 @@
23 +DIST mpv-autosub-20210629.tar.gz 5080 BLAKE2B cfedb100e9d95626b85b6e60579512121130ef0443e5d00bef86418779a37dfaac2c964083e4395017e46ca2199b8b769e794ed96f30342be9c7c4b04a122b18 SHA512 ae3da7ed624a40acef543aaa38b2220e71db1608eac965f38aeec17d552e86dda6f7b13b8018b0383ecced0acc26f3cea44efa4e750728310b9f27638f2d7045
24
25 diff --git a/mpv-plugin/mpv-autosub/metadata.xml b/mpv-plugin/mpv-autosub/metadata.xml
26 new file mode 100644
27 index 000000000..be3f1030e
28 --- /dev/null
29 +++ b/mpv-plugin/mpv-autosub/metadata.xml
30 @@ -0,0 +1,8 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>smaniotto.nicola@×××××.com</email>
36 + <name>Nicola Smaniotto</name>
37 + </maintainer>
38 +</pkgmetadata>
39
40 diff --git a/mpv-plugin/mpv-autosub/mpv-autosub-20210629.ebuild b/mpv-plugin/mpv-autosub/mpv-autosub-20210629.ebuild
41 new file mode 100644
42 index 000000000..b8a8fecc3
43 --- /dev/null
44 +++ b/mpv-plugin/mpv-autosub/mpv-autosub-20210629.ebuild
45 @@ -0,0 +1,27 @@
46 +# Copyright 2022 Gentoo Authors
47 +# Distributed under the terms of the GNU General Public License v2
48 +
49 +EAPI=8
50 +
51 +USE_MPV="rdepend"
52 +MPV_REQ_USE="lua"
53 +inherit mpv-plugin
54 +
55 +COMMIT="35115355bd339681f97d067538356c29e5b14afa"
56 +MY_P="${PN}-${COMMIT}"
57 +
58 +DESCRIPTION="Fully automatic subtitle downloading for the MPV media player"
59 +HOMEPAGE="https://github.com/davidde/mpv-autosub"
60 +
61 +SRC_URI="https://github.com/davidde/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
62 +
63 +LICENSE="MIT"
64 +KEYWORDS="~amd64"
65 +
66 +RDEPEND="
67 + media-video/subliminal
68 +"
69 +
70 +S="${WORKDIR}/${MY_P}"
71 +
72 +MPV_PLUGIN_FILES=( autosub.lua )