Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: mpv-plugin/mpv_thumbnail_script/
Date: Fri, 04 Nov 2022 14:38:52
Message-Id: 1667488098.04bb95bd9702f224b173435934e782d42be003f5.arthurzam@gentoo
1 commit: 04bb95bd9702f224b173435934e782d42be003f5
2 Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
3 AuthorDate: Thu Nov 3 15:08:08 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 3 15:08:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=04bb95bd
7
8 mpv-plugin/mpv_thumbnail_script: add 0.5.1
9
10 Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>
11
12 mpv-plugin/mpv_thumbnail_script/Manifest | 1 +
13 .../mpv_thumbnail_script-0.5.1.ebuild | 30 ++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/mpv-plugin/mpv_thumbnail_script/Manifest b/mpv-plugin/mpv_thumbnail_script/Manifest
17 index f8105c99e..5ae72d011 100644
18 --- a/mpv-plugin/mpv_thumbnail_script/Manifest
19 +++ b/mpv-plugin/mpv_thumbnail_script/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mpv_thumbnail_script-0.4.8.tar.gz 2583047 BLAKE2B dabcc477b49ceac3b15ffcde0c6ff072797a42109a2a8a0b4bcb2a029964fe8b3095f45691b6a03924ad960c1643354f09bc370caa63aa64a3bfa2aadc94a326 SHA512 b28b8dc2b268725d15aa1f0ca2a8dd512d6eb5f9a520786a0d59beae79a1608b6e7a783c92cb75950f36c85893834acf85c75f457995248116c54fc1832792bd
22 DIST mpv_thumbnail_script-0.4.9.tar.gz 2583482 BLAKE2B 195addae18b2876bec80ab64455bdeda026f135f407a92352b34687561da4fb02d9027005a88cc91632c97edc51e5108713ea90b2e6cd7a5e984ff6294e42cfb SHA512 1453f07d29dec36cca1af826d2c99354f0aa8092f0b753e9e3c0ecd00c52d6f1d82490c210d51693faec79d8bd34e71c8cddbabf51bcbdca3abde120544be6ed
23 +DIST mpv_thumbnail_script-0.5.1.tar.gz 2585308 BLAKE2B 1042655fc50ab2031344c3cd40abea19e825ccce35948cccba6dfcaae0c47c5f0b4f3bae848d3db367e5a92154d93d91754efefa789f15e031ccc0ba54965953 SHA512 f1454e57c1f227c8dde9bb34dfeeb55b2eff87dde210c9e392bb2a7a2375e163d4b55dbb9c84d67aac56e551437130a333df851c9d50db014eb4a8b4cedb64a8
24
25 diff --git a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild
26 new file mode 100644
27 index 000000000..fda47afa1
28 --- /dev/null
29 +++ b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +MPV_REQ_USE="lua"
37 +PYTHON_COMPAT=( python3_{8..11} )
38 +inherit mpv-plugin python-any-r1
39 +
40 +DESCRIPTION="A Lua script to show preview thumbnails in mpv's OSC seekbar"
41 +HOMEPAGE="https://github.com/marzzzello/mpv_thumbnail_script"
42 +
43 +SRC_URI="https://github.com/marzzzello/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-3"
46 +KEYWORDS="~amd64"
47 +
48 +BDEPEND="
49 + ${PYTHON_DEPS}
50 +"
51 +
52 +MPV_PLUGIN_FILES=(
53 + ${PN}_client_osc.lua
54 + ${PN}_server.lua
55 +)
56 +
57 +src_compile() {
58 + ${EPYTHON} concat_files.py -r "cat_osc.json" || die
59 + ${EPYTHON} concat_files.py -r "cat_server.json" || die
60 +}