From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B06A915817D for ; Sat, 8 Jun 2024 17:47:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06B8DE29AC; Sat, 8 Jun 2024 17:47:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DD21EE2A1D for ; Sat, 8 Jun 2024 17:47:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D6578340815 for ; Sat, 8 Jun 2024 17:47:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 711491A32 for ; Sat, 8 Jun 2024 17:47:43 +0000 (UTC) From: "Nickolas Raymond Kaczynski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nickolas Raymond Kaczynski" Message-ID: <1717868845.f218d2f5d88535bf8032ce89a33977843028ac38.nrk@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: mpv-plugin/mdmenu/ X-VCS-Repository: repo/proj/guru X-VCS-Files: mpv-plugin/mdmenu/Manifest mpv-plugin/mdmenu/mdmenu-20240215.ebuild mpv-plugin/mdmenu/metadata.xml X-VCS-Directories: mpv-plugin/mdmenu/ X-VCS-Committer: nrk X-VCS-Committer-Name: Nickolas Raymond Kaczynski X-VCS-Revision: f218d2f5d88535bf8032ce89a33977843028ac38 X-VCS-Branch: dev Date: Sat, 8 Jun 2024 17:47:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b8a6e6ea-2820-4620-ab98-48199c6e3b1f X-Archives-Hash: 96acf066cd81e06e87d78c296af178a2 commit: f218d2f5d88535bf8032ce89a33977843028ac38 Author: NRK disroot org> AuthorDate: Sat Jun 8 17:44:30 2024 +0000 Commit: Nickolas Raymond Kaczynski disroot org> CommitDate: Sat Jun 8 17:47:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f218d2f5 mpv-plugin/mdmenu: new package Signed-off-by: NRK disroot.org> mpv-plugin/mdmenu/Manifest | 1 + mpv-plugin/mdmenu/mdmenu-20240215.ebuild | 34 ++++++++++++++++++++++++++++++++ mpv-plugin/mdmenu/metadata.xml | 18 +++++++++++++++++ 3 files changed, 53 insertions(+) diff --git a/mpv-plugin/mdmenu/Manifest b/mpv-plugin/mdmenu/Manifest new file mode 100644 index 000000000..7370c507a --- /dev/null +++ b/mpv-plugin/mdmenu/Manifest @@ -0,0 +1 @@ +DIST mdmenu-20240215.tar.gz 21585 BLAKE2B 1b67b59a74a494d1c8e43533dd95a72008c59191a9d41a9f7b9cbd4da6db8b5e457be0ed6bcc4d9c82769f302ef2bf65065909ffba6905c6d6ae5b6ec6347c7e SHA512 2c37d64136f1c5c19537ab675215616fe24708d3f988ae0c539add3f0d94f73f76b1ec7b0c7cb8f258ddc45c4bb15967500cc72eee42247a9c1d6f6ce4fd1779 diff --git a/mpv-plugin/mdmenu/mdmenu-20240215.ebuild b/mpv-plugin/mdmenu/mdmenu-20240215.ebuild new file mode 100644 index 000000000..bed09fd27 --- /dev/null +++ b/mpv-plugin/mdmenu/mdmenu-20240215.ebuild @@ -0,0 +1,34 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit mpv-plugin + +DESCRIPTION="dmenu based selection menu for chapters, tracks, playlist etc" +HOMEPAGE="https://codeberg.org/NRK/mpv-toolbox" + +SRC_URI="https://codeberg.org/NRK/mpv-toolbox/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/mpv-toolbox/${PN}" + +LICENSE="GPL-3+" +KEYWORDS="~amd64" +IUSE="custom-cmd" + +RDEPEND=" + >=media-video/mpv-0.36.0[lua] + !custom-cmd? ( x11-misc/dmenu ) +" + +MPV_PLUGIN_FILES=( mdmenu.lua ) +DOCS=( mdmenu.conf README.md ) + +pkg_postinst() { + mpv-plugin_pkg_postinst + if use custom-cmd ; then + ewarn "mdmenu has been installed without a launcher." + ewarn "You will need to configure \`cmd\` in script-opt " + ewarn "to a dmenu-compatible app for mdmenu to work." + ewarn "Please refer to the documents for more info." + fi +} diff --git a/mpv-plugin/mdmenu/metadata.xml b/mpv-plugin/mdmenu/metadata.xml new file mode 100644 index 000000000..1ed7a22b2 --- /dev/null +++ b/mpv-plugin/mdmenu/metadata.xml @@ -0,0 +1,18 @@ + + + + + nrk@disroot.org + NRK + + + + Do not install dmenu as a dependency. + This requires you to configure a custom dmenu-compatible + command in the configuration. + + + + NRK/mpv-toolbox + +