public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrew Ammerlaan" <andrewammerlaan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vidify/
Date: Sat, 22 May 2021 10:03:28 +0000 (UTC)	[thread overview]
Message-ID: <1621677754.e9f5d7ffc0559b0051a8d0dbd7895a5daa8fc982.andrewammerlaan@gentoo> (raw)

commit:     e9f5d7ffc0559b0051a8d0dbd7895a5daa8fc982
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sat May 22 09:35:24 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat May 22 10:02:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9f5d7ff

media-video/vidify: import from ::guru

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 media-video/vidify/Manifest            |  1 +
 media-video/vidify/metadata.xml        | 23 ++++++++++
 media-video/vidify/vidify-2.2.6.ebuild | 80 ++++++++++++++++++++++++++++++++++
 3 files changed, 104 insertions(+)

diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
new file mode 100644
index 00000000000..c352a45f3bf
--- /dev/null
+++ b/media-video/vidify/Manifest
@@ -0,0 +1 @@
+DIST vidify-2.2.6.tar.gz 2906511 BLAKE2B 3df48ca57e102f664852e2fc2abeb3d19427673e1fec5144a8c0afda112a0f3b281b18db43b4326244266d6e9dfbcb2443319ddad3f864098a61bd1e3c966307 SHA512 15487ee9dcbe647b2b287bd2eb3c09962b557320313a9a3885fb3c0d6af945909531111d5297c1a5fb5b451af5df6fd968b3953bbf79af113980ed368a5674b5

diff --git a/media-video/vidify/metadata.xml b/media-video/vidify/metadata.xml
new file mode 100644
index 00000000000..a000e80a0c1
--- /dev/null
+++ b/media-video/vidify/metadata.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+	<maintainer type="person">
+		<email>andrewammerlaan@gentoo.org</email>
+		<name>Andrew Ammerlaan</name>
+	</maintainer>
+	<use>
+		<flag name="vlc">Use python-vlc as backend for vidify</flag>
+		<flag name="mpv">Use python-mpv as backend for vidify</flag>
+		<flag name="zeroconf">Use an external network player</flag>
+		<flag name="dbus">Support local MPRIS players</flag>
+	</use>
+	<upstream>
+		<maintainer>
+			<email>marioortizmanero@gmail.com</email>
+			<name>Mario Ortiz Manero</name>
+		</maintainer>
+		<remote-id type="github">vidify/vidify</remote-id>
+		<bugs-to>https://github.com/vidify/vidify/issues</bugs-to>
+	</upstream>
+</pkgmetadata>

diff --git a/media-video/vidify/vidify-2.2.6.ebuild b/media-video/vidify/vidify-2.2.6.ebuild
new file mode 100644
index 00000000000..d80a08f9793
--- /dev/null
+++ b/media-video/vidify/vidify-2.2.6.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit xdg distutils-r1 optfeature virtualx
+
+DESCRIPTION="Watch music videos in real time for the songs playing on your device"
+HOMEPAGE="https://vidify.org"
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="dbus vlc mpv zeroconf"
+
+REQUIRED_USE="|| ( vlc mpv zeroconf )"
+
+RDEPEND="
+	dev-python/appdirs[${PYTHON_USEDEP}]
+	dev-python/QtPy[gui,webengine,${PYTHON_USEDEP}]
+	net-misc/lyricwikia[${PYTHON_USEDEP}]
+	net-misc/youtube-dl[${PYTHON_USEDEP}]
+	dbus? ( dev-python/pydbus[${PYTHON_USEDEP}] )
+	!dbus? ( dev-python/tekore[${PYTHON_USEDEP}] )
+	mpv? ( dev-python/python-mpv[${PYTHON_USEDEP}] )
+	vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )
+	zeroconf? ( dev-python/zeroconf[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests unittest
+
+python_prepare_all() {
+	# skip online test
+	rm tests/api/test_spotify_web.py || die
+	rm tests/player/test_external.py || die
+
+	# this needs dbus and a player running
+	rm tests/api/test_mpris.py || die
+
+	# can't parse non-existent config
+	rm tests/test_api_and_player_data.py || die
+
+	# do not hard depend on this
+	sed -i \
+		-e '/qdarkstyle/d' \
+		-e '/python-vlc/d' \
+		-e '/python-mpv/d' \
+		-e '/pydbus/d' \
+		-e '/tekore/d' \
+		-e '/zeroconf/d' \
+		-e '/If PySide2 is installed and PyQt5/,/PyQtWebEngine/d' \
+		setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	virtx "${EPYTHON}" -m unittest discover -v
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+
+	elog "If video playback is not working please check 'vidify --debug' for missing-codec-errors"
+	elof "and recompile media-video/vlc or media-video/mpv with the missing codecs"
+
+	optfeature "using an MPRIS(D-Bus) audio player (e.g spotify)" dev-python/pydbus
+	optfeature "using the Spotify Web API as audio player" dev-python/tekore
+	optfeature "using an external network player" dev-python/zeroconf
+	optfeature "using media-video/mpv for video playback" dev-python/python-mpv
+	optfeature "using media-video/vlc for video playback" dev-python/python-vlc
+	optfeature "'vidify --dark-mode'" dev-python/qdarkstyle
+	optfeature "'vidify --audiosync'" media-video/vidify-audiosync
+}


             reply	other threads:[~2021-05-22 10:03 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-22 10:03 Andrew Ammerlaan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-05-22 20:55 [gentoo-commits] repo/gentoo:master commit in: media-video/vidify/ Andrew Ammerlaan
2021-10-20 11:40 Andrew Ammerlaan
2022-06-08 20:24 Andrew Ammerlaan
2023-01-12 11:15 Andrew Ammerlaan
2023-09-26 10:09 Andrew Ammerlaan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1621677754.e9f5d7ffc0559b0051a8d0dbd7895a5daa8fc982.andrewammerlaan@gentoo \
    --to=andrewammerlaan@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox