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 83BA4158090 for ; Tue, 3 May 2022 12:14:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49D12E0729; Tue, 3 May 2022 12:14:15 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8EE8E0729 for ; Tue, 3 May 2022 12:14:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9B1273419CD for ; Tue, 3 May 2022 12:14:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C18B23BF for ; Tue, 3 May 2022 12:14:11 +0000 (UTC) From: "Nicola Smaniotto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicola Smaniotto" Message-ID: <1651580049.b28384f839ffacb568cb4a6804395d97a52b41dc.smaniotto.nicola@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: mpv-plugin/autoload/ X-VCS-Repository: repo/proj/guru X-VCS-Files: mpv-plugin/autoload/Manifest mpv-plugin/autoload/autoload-0.33.1.ebuild mpv-plugin/autoload/metadata.xml X-VCS-Directories: mpv-plugin/autoload/ X-VCS-Committer: smaniotto.nicola X-VCS-Committer-Name: Nicola Smaniotto X-VCS-Revision: b28384f839ffacb568cb4a6804395d97a52b41dc X-VCS-Branch: dev Date: Tue, 3 May 2022 12:14:11 +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: a1718ccc-1b3c-4337-9f1e-4c2fa12d3f57 X-Archives-Hash: 75e5ca91dc842ffae69deefbcf7aa36a commit: b28384f839ffacb568cb4a6804395d97a52b41dc Author: Nicola Smaniotto gmail com> AuthorDate: Tue May 3 12:04:58 2022 +0000 Commit: Nicola Smaniotto gmail com> CommitDate: Tue May 3 12:14:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b28384f8 mpv-plugin/autoload: initial import Signed-off-by: Nicola Smaniotto gmail.com> mpv-plugin/autoload/Manifest | 1 + mpv-plugin/autoload/autoload-0.33.1.ebuild | 25 +++++++++++++++++++++++++ mpv-plugin/autoload/metadata.xml | 8 ++++++++ 3 files changed, 34 insertions(+) diff --git a/mpv-plugin/autoload/Manifest b/mpv-plugin/autoload/Manifest new file mode 100644 index 000000000..ec4b015b3 --- /dev/null +++ b/mpv-plugin/autoload/Manifest @@ -0,0 +1 @@ +DIST mpv-0.33.1.tar.gz 3259882 BLAKE2B 97ab101c2013ffb219d36a788020fb9fc4382d09971ac0beee42701a54667a6c766521be7b052193de4505b2117c2d47b3682ebafab46632fc40b637e0d19c04 SHA512 99d6c40d18c5cf83814b44ec6d8eade229800c5b51a734c9bbe831c3aeb95f8931124c94f6ae2360ffff62053c163bc3c55b254df021e005b350ebc3df7e952b diff --git a/mpv-plugin/autoload/autoload-0.33.1.ebuild b/mpv-plugin/autoload/autoload-0.33.1.ebuild new file mode 100644 index 000000000..f82929a01 --- /dev/null +++ b/mpv-plugin/autoload/autoload-0.33.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_MPV="rdepend" +MPV_REQ_USE="lua" +inherit mpv-plugin + +DESCRIPTION="Loads playlist entries before and after the the currently played file" +HOMEPAGE="https://github.com/mpv-player/mpv/tree/master/TOOLS/lua" + +# use the already available mpv tarball +SRC_URI="https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> mpv-${PV}.tar.gz" + +# since this comes from mpv, use its licenses +LICENSE="LGPL-2.1+ GPL-2+ BSD ISC" +KEYWORDS="~amd64" + +# lock mpv version +RDEPEND="~media-video/mpv-${PV}" + +S="${WORKDIR}/mpv-${PV}/TOOLS/lua" + +MPV_PLUGIN_FILES=( ${PN}.lua ) diff --git a/mpv-plugin/autoload/metadata.xml b/mpv-plugin/autoload/metadata.xml new file mode 100644 index 000000000..be3f1030e --- /dev/null +++ b/mpv-plugin/autoload/metadata.xml @@ -0,0 +1,8 @@ + + + + + smaniotto.nicola@gmail.com + Nicola Smaniotto + +