From 4b7b1bef5a10a9ae22f66465e63a1e372da1222a Mon Sep 17 00:00:00 2001 From: Viorel Munteanu Date: Fri, 26 Jun 2026 15:50:52 +0300 Subject: [PATCH] mpv-plugin/mpv_thumbnail_script: drop old Signed-off-by: Viorel Munteanu --- mpv-plugin/mpv_thumbnail_script/Manifest | 2 - .../mpv_thumbnail_script-0.5.2.ebuild | 56 ------------------- .../mpv_thumbnail_script-0.5.3.ebuild | 56 ------------------- 3 files changed, 114 deletions(-) delete mode 100644 mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild delete mode 100644 mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.3.ebuild diff --git a/mpv-plugin/mpv_thumbnail_script/Manifest b/mpv-plugin/mpv_thumbnail_script/Manifest index e536750e5b..1e8af77c3a 100644 --- a/mpv-plugin/mpv_thumbnail_script/Manifest +++ b/mpv-plugin/mpv_thumbnail_script/Manifest @@ -1,3 +1 @@ -DIST mpv_thumbnail_script-0.5.2.tar.gz 2585900 BLAKE2B f0b2afe1f1cba942ddb469ae66f32f1d444679302f47b13742feb924bbe3de331c74bb60530079580a8802258109d9d17e6ebe1581910c8083e2897370961274 SHA512 d151c6e5aa0ad276a0a5451f0b0ab36c5bf4426521ce17b3db7ca9a94ee4265bf66f3632ff48f8210a96d176cdba0f7926138e9a4971eca4b0331dfc87034e11 -DIST mpv_thumbnail_script-0.5.3.tar.gz 2588152 BLAKE2B a15399bf2fca65bf721a33718b4c27752fb5a7ce9c158eddff7ea1c6018929b372f0091ddb44a6f102dd3657b1e14148779543db5dac4953ca06fac21689dc3e SHA512 4a785bbd0037f18ffb60aa4980ed94ff6f03f75db43c5ebf5dde5bf53e0afa4970a94ecd5be26b279d71875540a98e2f4efd8c636dd553f2af5e6f3918f8b5fa DIST mpv_thumbnail_script-0.5.4.tar.gz 2587970 BLAKE2B beac1f447551a8eed8b58f1d9cc27bec93937d5e84df71ff104f5799a574eacfe893029135fc2840f1077791d810fc8b0bc2ca517b3fe0a41a18e091c9d50e00 SHA512 a25b69eaa02de347dbb32f7adf61cd775b35f78872cb212c64c533222c3f24a131ffbd029604079bc48c26332698e5ef977268e241eae36be9b037a8199559ca diff --git a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild deleted file mode 100644 index 9945be28c4..0000000000 --- a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MPV_REQ_USE="lua" -PYTHON_COMPAT=( python3_{12..13} ) -inherit mpv-plugin python-any-r1 - -DESCRIPTION="A Lua script to show preview thumbnails in mpv's OSC seekbar" -HOMEPAGE="https://github.com/marzzzello/mpv_thumbnail_script" - -SRC_URI="https://github.com/marzzzello/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -KEYWORDS="~amd64" - -BDEPEND=" - ${PYTHON_DEPS} -" - -MPV_PLUGIN_FILES=( - ${PN}_client_osc.lua - ${PN}_server.lua -) - -src_compile() { - ${EPYTHON} concat_files.py -r "cat_osc.json" || die - ${EPYTHON} concat_files.py -r "cat_server.json" || die -} - -src_install() { - mpv-plugin_src_install - - # add multiple threads - THUMBNAIL_SERVER_THREADS="${THUMBNAIL_SERVER_THREADS:-1}" - - if [[ "${THUMBNAIL_SERVER_THREADS}" -gt 1 ]]; then - i=1 - while [[ ${i} -lt ${THUMBNAIL_SERVER_THREADS} ]]; do - dosym -r "/etc/mpv/scripts/mpv_thumbnail_script_server.lua" \ - "/etc/mpv/scripts/mpv_thumbnail_script_server_${i}.lua" || die - (( i++ )) - done - fi -} - -pkg_postinst(){ - mpv-plugin_pkg_postinst - - if [[ "${THUMBNAIL_SERVER_THREADS}" -gt 1 ]]; then - elog "Created a total of ${THUMBNAIL_SERVER_THREADS} server threads. Setting this too high is not recommended" - else - elog "You can create multiple thumbnailing threads by setting THUMBNAIL_SERVER_THREADS" - fi -} diff --git a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.3.ebuild b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.3.ebuild deleted file mode 100644 index 9945be28c4..0000000000 --- a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MPV_REQ_USE="lua" -PYTHON_COMPAT=( python3_{12..13} ) -inherit mpv-plugin python-any-r1 - -DESCRIPTION="A Lua script to show preview thumbnails in mpv's OSC seekbar" -HOMEPAGE="https://github.com/marzzzello/mpv_thumbnail_script" - -SRC_URI="https://github.com/marzzzello/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -KEYWORDS="~amd64" - -BDEPEND=" - ${PYTHON_DEPS} -" - -MPV_PLUGIN_FILES=( - ${PN}_client_osc.lua - ${PN}_server.lua -) - -src_compile() { - ${EPYTHON} concat_files.py -r "cat_osc.json" || die - ${EPYTHON} concat_files.py -r "cat_server.json" || die -} - -src_install() { - mpv-plugin_src_install - - # add multiple threads - THUMBNAIL_SERVER_THREADS="${THUMBNAIL_SERVER_THREADS:-1}" - - if [[ "${THUMBNAIL_SERVER_THREADS}" -gt 1 ]]; then - i=1 - while [[ ${i} -lt ${THUMBNAIL_SERVER_THREADS} ]]; do - dosym -r "/etc/mpv/scripts/mpv_thumbnail_script_server.lua" \ - "/etc/mpv/scripts/mpv_thumbnail_script_server_${i}.lua" || die - (( i++ )) - done - fi -} - -pkg_postinst(){ - mpv-plugin_pkg_postinst - - if [[ "${THUMBNAIL_SERVER_THREADS}" -gt 1 ]]; then - elog "Created a total of ${THUMBNAIL_SERVER_THREADS} server threads. Setting this too high is not recommended" - else - elog "You can create multiple thumbnailing threads by setting THUMBNAIL_SERVER_THREADS" - fi -}