From owner-svn-ports-head@freebsd.org Fri Dec 13 22:36:12 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6DB041D8F0A; Fri, 13 Dec 2019 22:36:12 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47ZQW02L1pz4bxH; Fri, 13 Dec 2019 22:36:12 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 46ED51B23A; Fri, 13 Dec 2019 22:36:12 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBDMaCCs077635; Fri, 13 Dec 2019 22:36:12 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBDMaBgx077628; Fri, 13 Dec 2019 22:36:11 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201912132236.xBDMaBgx077628@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Fri, 13 Dec 2019 22:36:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520071 - in head/multimedia: . mpv-mpris X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/multimedia: . mpv-mpris X-SVN-Commit-Revision: 520071 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2019 22:36:12 -0000 Author: tcberner Date: Fri Dec 13 22:36:11 2019 New Revision: 520071 URL: https://svnweb.freebsd.org/changeset/ports/520071 Log: New port: multimedia/mpv-mpris: MPRIS plugin for mpv mpv-mpris is a plugin for mpv which allows control of the player using standard media keys. This plugin implements the MPRIS D-Bus interface and can be controlled using tools such as playerctl or through many Linux DEs, such as Gnome and KDE. WWW: https://github.com/hoyon/mpv-mpris - This makes KDE Plasma desktop's panels media control available for mpv, and also exposes mpv to kdeconnect-kde. Added: head/multimedia/mpv-mpris/ head/multimedia/mpv-mpris/Makefile (contents, props changed) head/multimedia/mpv-mpris/distinfo (contents, props changed) head/multimedia/mpv-mpris/pkg-descr (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Fri Dec 13 21:14:38 2019 (r520070) +++ head/multimedia/Makefile Fri Dec 13 22:36:11 2019 (r520071) @@ -277,6 +277,7 @@ SUBDIR += mplex SUBDIR += mps-youtube SUBDIR += mpv + SUBDIR += mpv-mpris SUBDIR += msdl SUBDIR += msopenh264 SUBDIR += mswebrtc Added: head/multimedia/mpv-mpris/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mpv-mpris/Makefile Fri Dec 13 22:36:11 2019 (r520071) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= mpv-mpris +DISTVERSION= 0.2 +CATEGORIES= multimedia + +MAINTAINER= tcberner@FreeBSD.org +COMMENT= MPRIS plugin for mpv + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= mpv:multimedia/mpv + +USES= gettext-runtime gnome +USE_GNOME= glib20 +USE_GITHUB= yes +GH_ACCOUNT= hoyon + +ALL_TARGET= mpris.so + +PLIST_FILES= etc/mpv/scripts/mpris.so + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/mpv/scripts + ${INSTALL_LIB} ${BUILD_WRKSRC}/mpris.so \ + ${STAGEDIR}${PREFIX}/etc/mpv/scripts + +.include Added: head/multimedia/mpv-mpris/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mpv-mpris/distinfo Fri Dec 13 22:36:11 2019 (r520071) @@ -0,0 +1,3 @@ +TIMESTAMP = 1576275542 +SHA256 (hoyon-mpv-mpris-0.2_GH0.tar.gz) = d21a9617759bc368d6e9cb229d099b12968f0e673db5cd0bf12d8a251516d81a +SIZE (hoyon-mpv-mpris-0.2_GH0.tar.gz) = 6902 Added: head/multimedia/mpv-mpris/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mpv-mpris/pkg-descr Fri Dec 13 22:36:11 2019 (r520071) @@ -0,0 +1,7 @@ +mpv-mpris is a plugin for mpv which allows control of the player using standard +media keys. + +This plugin implements the MPRIS D-Bus interface and can be controlled using +tools such as playerctl or through many Linux DEs, such as Gnome and KDE. + +WWW: https://github.com/hoyon/mpv-mpris