mpv-plugin/mpv_sponsorblock: add 20230130

Signed-off-by: Nicola Smaniotto <smaniotto.nicola@gmail.com>
This commit is contained in:
Nicola Smaniotto
2023-02-08 12:45:44 +01:00
parent f7ce5e033f
commit e53267a7d9
2 changed files with 38 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST mpv_sponsorblock-20211223.tar.gz 19424 BLAKE2B 33e9f83ae36cd04363401edf030350f8e47ac296ef904e084a4c4d8c01192492b904720dbb45262fee813299d72def0314c3551a3c43b7c91d2a31bc842c3a4c SHA512 7bbda9999ff1954ab3992d37d0633cc31b94517d42d32c32196b8343c8b8151f2f5ce01fcec9c19e50b29fd4088a140488b54c5e6ca42afc47f63d51107756e0
DIST mpv_sponsorblock-20220924.tar.gz 19518 BLAKE2B bcf132f6ccfea2dc43fb9134ae03c7eb3fa712c2fb878a864f70ba6546086265c5a9510248f4032d9a1a024d8f7fbf569d711cc23962335bbfcce57ca9a540e1 SHA512 44621fbfdbbb7ebdc167040cc4db3e8290ce359574366f14e16f8c815090eea94e13ef0a73ba606a71b6cda64af039c361741d601c987a0a6d97027e0b98c0b6
DIST mpv_sponsorblock-20230130.tar.gz 19518 BLAKE2B 5a756bc12fae3fb1c68958ac95174d4ec820d3437788591d2baa9980e667194ca87118cbc0e64c5c5967d44ecf60e53ae76c4b7e845aca81ff03f814af7f0182 SHA512 36b0b1d0a4cda9dcce84b410dd322822a7cc36bb7c8ef86422b85cc43824eb415776a24ac1b0d221b5a316932b6de45b4d88182ad2112c9abf3a0f464c2dc806

View File

@@ -0,0 +1,37 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_MPV="rdepend"
MPV_REQ_USE="lua"
PYTHON_COMPAT=( python3_{8..11} pypy3 )
inherit mpv-plugin python-single-r1
COMMIT="7785c1477103f2fafabfd65fdcf28ef26e6d7f0d"
DESCRIPTION="mpv script to skip sponsored segments of YouTube videos"
HOMEPAGE="https://github.com/po5/mpv_sponsorblock"
SRC_URI="https://github.com/po5/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"
LICENSE="GPL-3"
KEYWORDS="~amd64"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
"
MPV_PLUGIN_FILES=(
sponsorblock_shared
sponsorblock.lua
)
src_prepare() {
default
# we 1) install in the system folder 2) use EPYTHON
sed -i sponsorblock.lua \
-e 's|scripts_dir =.*|scripts_dir = "/etc/mpv/scripts"|' \
-e "s|python3|${EPYTHON}|" || die
}