* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-01-21 15:17 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-01-21 15:17 UTC (permalink / raw
To: gentoo-commits
commit: 12e1c3665d893eb4477f8f6f2dcf7d20c171d2a2
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jan 21 15:16:21 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jan 21 15:16:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=12e1c366
media-video/vidify: Watch live music videos for songs playing
Next version of spotify-music-videos
Upstream will rename the package in the next release
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/metadata.xml | 17 ++++++++++
media-video/vidify/vidify-9999.ebuild | 63 +++++++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/media-video/vidify/metadata.xml b/media-video/vidify/metadata.xml
new file mode 100644
index 0000000..a604fe4
--- /dev/null
+++ b/media-video/vidify/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+ <maintainer type="person">
+ <email>andrewammerlaan@riseup.net</email>
+ <name>Andrew Ammerlaan</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</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>
+ </use>
+</pkgmetadata>
diff --git a/media-video/vidify/vidify-9999.ebuild b/media-video/vidify/vidify-9999.ebuild
new file mode 100644
index 0000000..0fe24e7
--- /dev/null
+++ b/media-video/vidify/vidify-9999.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit eutils desktop distutils-r1 git-r3 xdg-utils
+
+DESCRIPTION="Watch live music videos for the songs playing on your device"
+HOMEPAGE="https://github.com/marioortizmanero/spotify-music-videos"
+EGIT_REPO_URI="https://github.com/marioortizmanero/spotify-music-videos.git"
+EGIT_BRANCH="next"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=
+
+IUSE="+vlc mpv"
+
+REQUIRED_USE="|| ( vlc mpv )"
+
+RDEPEND="
+ dev-python/pydbus[${PYTHON_USEDEP}]
+ dev-python/QtPy[gui,webengine,${PYTHON_USEDEP}]
+ dev-python/lyricwikia[${PYTHON_USEDEP}]
+ vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )
+ mpv? ( dev-python/python-mpv[${PYTHON_USEDEP}] )
+ net-misc/youtube-dl[${PYTHON_USEDEP}]
+ dev-python/appdirs[${PYTHON_USEDEP}]
+ dev-python/tekore[${PYTHON_USEDEP}]"
+
+python_install_all() {
+ distutils-r1_python_install_all
+ newicon -s scalable vidify/gui/res/icon.svg ${PN}.svg
+ if use mpv && use !vlc; then
+ make_desktop_entry "${PN} --player mpv" "Vidify" "${PN}" "AudioVideo;Music"
+ elif use mpv && use vlc; then
+ make_desktop_entry "${PN} --player mpv" "Vidify (mpv)" "${PN}" "AudioVideo;Music"
+ make_desktop_entry "${PN}" "Vidify (vlc)" "${PN}" "AudioVideo;Music"
+ else
+ make_desktop_entry "${PN}" "Vidify" "${PN}" "AudioVideo;Music"
+ fi
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+
+ use mpv && elog "media-video/vlc is the default vidify player, to use mpv run 'vidify --player mpv' or set 'player = mpv' in the config file"
+ use vlc && elog "If video playback is not working please check 'vidify --debug' for missing-codec-errors and recompile media-video/vlc with the missing codecs"
+ use mpv && elog "If video playback is not working please check 'vidify --player mpv --debug' for missing-codec-errors and recompile media-video/mpv with the missing codecs"
+
+ optfeature "'vidify --dark-mode'" dev-python/qdarkstyle
+ optfeature "'vidify --audiosync'" media-video/vidify-audiosync
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-02-03 18:07 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-02-03 18:07 UTC (permalink / raw
To: gentoo-commits
commit: aeb56d71b291d52b4364993cfc5ffe3ad1e1ced3
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Feb 3 17:57:39 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Feb 3 17:57:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aeb56d71
media-video/vidify: Remove py3_6
py3_6 is not working with dep tekore
so it has to go here as well
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/metadata.xml | 4 ----
media-video/vidify/vidify-9999.ebuild | 2 +-
2 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/media-video/vidify/metadata.xml b/media-video/vidify/metadata.xml
index a604fe4..13b78b5 100644
--- a/media-video/vidify/metadata.xml
+++ b/media-video/vidify/metadata.xml
@@ -6,10 +6,6 @@
<email>andrewammerlaan@riseup.net</email>
<name>Andrew Ammerlaan</name>
</maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</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>
diff --git a/media-video/vidify/vidify-9999.ebuild b/media-video/vidify/vidify-9999.ebuild
index 0fe24e7..50bdc76 100644
--- a/media-video/vidify/vidify-9999.ebuild
+++ b/media-video/vidify/vidify-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_7 )
DISTUTILS_USE_SETUPTOOLS=rdepend
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-02-10 10:55 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-02-10 10:55 UTC (permalink / raw
To: gentoo-commits
commit: f7fdc8c15d07dc777a831355b575ee9511ee5e32
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Feb 10 10:52:32 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Feb 10 10:52:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f7fdc8c1
media-video/vidify: Version bump 2.0
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 1 +
.../{vidify-9999.ebuild => vidify-2.0.ebuild} | 21 ++++++++++-----------
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
new file mode 100644
index 0000000..2007e78
--- /dev/null
+++ b/media-video/vidify/Manifest
@@ -0,0 +1 @@
+DIST vidify-2.0.tar.gz 1156699 BLAKE2B e30cd3b3de4e01627b28c2bfcbf3c54bf70b7481fa1823002391b5063c91c780f9e883610ff8087edb19b59f08101c8c2970323b5e5b185624d748313a86038d SHA512 185439efde93c24eec4486d3d6e50e494b56458f8cbf4fdc30c6bb8f3ca9fa1c1a0c5d6b6ee33c98b4558f4fa9c7df40f39d3ffdf483367e4e1a93b5e486a4d9
diff --git a/media-video/vidify/vidify-9999.ebuild b/media-video/vidify/vidify-2.0.ebuild
similarity index 84%
rename from media-video/vidify/vidify-9999.ebuild
rename to media-video/vidify/vidify-2.0.ebuild
index 50bdc76..40b903f 100644
--- a/media-video/vidify/vidify-9999.ebuild
+++ b/media-video/vidify/vidify-2.0.ebuild
@@ -7,30 +7,29 @@ PYTHON_COMPAT=( python3_7 )
DISTUTILS_USE_SETUPTOOLS=rdepend
-inherit eutils desktop distutils-r1 git-r3 xdg-utils
+inherit eutils desktop distutils-r1 xdg-utils
DESCRIPTION="Watch live music videos for the songs playing on your device"
-HOMEPAGE="https://github.com/marioortizmanero/spotify-music-videos"
-EGIT_REPO_URI="https://github.com/marioortizmanero/spotify-music-videos.git"
-EGIT_BRANCH="next"
+HOMEPAGE="https://github.com/vidify/vidify"
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="MIT"
+LICENSE="LGPL-3"
SLOT="0"
-KEYWORDS=
+KEYWORDS="~amd64 ~x86"
IUSE="+vlc mpv"
REQUIRED_USE="|| ( vlc mpv )"
RDEPEND="
+ dev-python/appdirs[${PYTHON_USEDEP}]
+ dev-python/lyricwikia[${PYTHON_USEDEP}]
dev-python/pydbus[${PYTHON_USEDEP}]
dev-python/QtPy[gui,webengine,${PYTHON_USEDEP}]
- dev-python/lyricwikia[${PYTHON_USEDEP}]
- vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )
- mpv? ( dev-python/python-mpv[${PYTHON_USEDEP}] )
+ dev-python/tekore[${PYTHON_USEDEP}]
net-misc/youtube-dl[${PYTHON_USEDEP}]
- dev-python/appdirs[${PYTHON_USEDEP}]
- dev-python/tekore[${PYTHON_USEDEP}]"
+ mpv? ( dev-python/python-mpv[${PYTHON_USEDEP}] )
+ vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )"
python_install_all() {
distutils-r1_python_install_all
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-02-10 19:33 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-02-10 19:33 UTC (permalink / raw
To: gentoo-commits
commit: 603925a2f7d2d9e4943973734bad46b956d0047d
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Feb 10 19:33:29 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Feb 10 19:33:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=603925a2
media-video/vidify: Version bump 2.0.4
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 2 +-
.../vidify/{vidify-2.0.ebuild => vidify-2.0.4.ebuild} | 15 ++-------------
2 files changed, 3 insertions(+), 14 deletions(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
index 2007e78..3435fb2 100644
--- a/media-video/vidify/Manifest
+++ b/media-video/vidify/Manifest
@@ -1 +1 @@
-DIST vidify-2.0.tar.gz 1156699 BLAKE2B e30cd3b3de4e01627b28c2bfcbf3c54bf70b7481fa1823002391b5063c91c780f9e883610ff8087edb19b59f08101c8c2970323b5e5b185624d748313a86038d SHA512 185439efde93c24eec4486d3d6e50e494b56458f8cbf4fdc30c6bb8f3ca9fa1c1a0c5d6b6ee33c98b4558f4fa9c7df40f39d3ffdf483367e4e1a93b5e486a4d9
+DIST vidify-2.0.4.tar.gz 2329536 BLAKE2B 1c29521fb5f754bc74adbcc330e37cb8be3c5f37763ae5ef53fa8bcf66d0160f484415fec0ef7634dc2c4dca5a2142d642a286d3f92115a0fd2dfa799e6769a5 SHA512 debbf1d34546ec3929aab5d0f65354b75bf1556dffdfc27b18a1c83a860624cbe27bade9dbd3b06194feac2ed0e6ec7bf6507db9d4d0abda91ae03c87465f87a
diff --git a/media-video/vidify/vidify-2.0.ebuild b/media-video/vidify/vidify-2.0.4.ebuild
similarity index 74%
rename from media-video/vidify/vidify-2.0.ebuild
rename to media-video/vidify/vidify-2.0.4.ebuild
index 40b903f..284ffc7 100644
--- a/media-video/vidify/vidify-2.0.ebuild
+++ b/media-video/vidify/vidify-2.0.4.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_7 )
DISTUTILS_USE_SETUPTOOLS=rdepend
-inherit eutils desktop distutils-r1 xdg-utils
+inherit eutils distutils-r1 xdg-utils
DESCRIPTION="Watch live music videos for the songs playing on your device"
HOMEPAGE="https://github.com/vidify/vidify"
@@ -31,18 +31,7 @@ RDEPEND="
mpv? ( dev-python/python-mpv[${PYTHON_USEDEP}] )
vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )"
-python_install_all() {
- distutils-r1_python_install_all
- newicon -s scalable vidify/gui/res/icon.svg ${PN}.svg
- if use mpv && use !vlc; then
- make_desktop_entry "${PN} --player mpv" "Vidify" "${PN}" "AudioVideo;Music"
- elif use mpv && use vlc; then
- make_desktop_entry "${PN} --player mpv" "Vidify (mpv)" "${PN}" "AudioVideo;Music"
- make_desktop_entry "${PN}" "Vidify (vlc)" "${PN}" "AudioVideo;Music"
- else
- make_desktop_entry "${PN}" "Vidify" "${PN}" "AudioVideo;Music"
- fi
-}
+# Tests work (mostly) outside of emerge, but core dump inside emerge/virtx
pkg_postinst() {
xdg_desktop_database_update
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-02-10 19:42 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-02-10 19:42 UTC (permalink / raw
To: gentoo-commits
commit: 2de79cb624caf45daad3e70095e50509fab1ec95
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Feb 10 19:41:49 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Feb 10 19:41:49 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2de79cb6
media-video/vidify: Version bump 2.0.5
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 2 +-
media-video/vidify/{vidify-2.0.4.ebuild => vidify-2.0.5.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
index 3435fb2..a820818 100644
--- a/media-video/vidify/Manifest
+++ b/media-video/vidify/Manifest
@@ -1 +1 @@
-DIST vidify-2.0.4.tar.gz 2329536 BLAKE2B 1c29521fb5f754bc74adbcc330e37cb8be3c5f37763ae5ef53fa8bcf66d0160f484415fec0ef7634dc2c4dca5a2142d642a286d3f92115a0fd2dfa799e6769a5 SHA512 debbf1d34546ec3929aab5d0f65354b75bf1556dffdfc27b18a1c83a860624cbe27bade9dbd3b06194feac2ed0e6ec7bf6507db9d4d0abda91ae03c87465f87a
+DIST vidify-2.0.5.tar.gz 2331312 BLAKE2B 8d57e971efb1e23df4a5903366bc10a0a1ab6650d4a40054d650c54c2ea5a75a6b3ce1213dc58146a3d2dfa99a5e48c95f66cde3e90f3eaf3cb1b32fae054e3a SHA512 2e6139e1147b6f49dc73ed102dd63dacbbca0c2456b3f0d553b8d3f85fa872a67e083c963db41d40b008d26d09e3b9ff264a4bb033ea47fab4ed8a8fc6e2b51f
diff --git a/media-video/vidify/vidify-2.0.4.ebuild b/media-video/vidify/vidify-2.0.5.ebuild
similarity index 100%
rename from media-video/vidify/vidify-2.0.4.ebuild
rename to media-video/vidify/vidify-2.0.5.ebuild
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-02-24 12:29 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-02-24 12:29 UTC (permalink / raw
To: gentoo-commits
commit: 3664597f04479b6f6a33896d7d98173ba52c4203
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Feb 24 12:29:15 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Feb 24 12:29:15 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3664597f
media-video/vidify: Version bump 2.1.0
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 2 +-
.../{vidify-2.0.5.ebuild => vidify-2.1.0.ebuild} | 19 ++++++++++++++++---
2 files changed, 17 insertions(+), 4 deletions(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
index a820818..f437ef6 100644
--- a/media-video/vidify/Manifest
+++ b/media-video/vidify/Manifest
@@ -1 +1 @@
-DIST vidify-2.0.5.tar.gz 2331312 BLAKE2B 8d57e971efb1e23df4a5903366bc10a0a1ab6650d4a40054d650c54c2ea5a75a6b3ce1213dc58146a3d2dfa99a5e48c95f66cde3e90f3eaf3cb1b32fae054e3a SHA512 2e6139e1147b6f49dc73ed102dd63dacbbca0c2456b3f0d553b8d3f85fa872a67e083c963db41d40b008d26d09e3b9ff264a4bb033ea47fab4ed8a8fc6e2b51f
+DIST vidify-2.1.0.tar.gz 2332514 BLAKE2B c3199cd20de6e306406482a15addaf1875630c61271ea04b4a0c283d14030102eced6428e2dc8945ab482af6c81f94c51742983e9a9b6581b3aac60bd1c942f6 SHA512 e1a7d60caacd30d68fc8b1ebf3ea30a0527218257fe762989dd8ca5213beb247c300a7ffafe68554c88a1f3bb2a054a555fe15a66a727c57911f1f545e8d0297
diff --git a/media-video/vidify/vidify-2.0.5.ebuild b/media-video/vidify/vidify-2.1.0.ebuild
similarity index 75%
rename from media-video/vidify/vidify-2.0.5.ebuild
rename to media-video/vidify/vidify-2.1.0.ebuild
index 284ffc7..7432733 100644
--- a/media-video/vidify/vidify-2.0.5.ebuild
+++ b/media-video/vidify/vidify-2.1.0.ebuild
@@ -9,9 +9,9 @@ DISTUTILS_USE_SETUPTOOLS=rdepend
inherit eutils distutils-r1 xdg-utils
-DESCRIPTION="Watch live music videos for the songs playing on your device"
+DESCRIPTION="Watch music videos in real time for the songs playing on your device"
HOMEPAGE="https://github.com/vidify/vidify"
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
@@ -31,7 +31,20 @@ RDEPEND="
mpv? ( dev-python/python-mpv[${PYTHON_USEDEP}] )
vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )"
-# Tests work (mostly) outside of emerge, but core dump inside emerge/virtx
+distutils_enable_tests unittest
+
+python_prepare_all() {
+ # skip online test
+ rm tests/apis/test_spotify_web.py || die
+
+ # this needs dbus running
+ rm tests/apis/test_mpris.py || die
+
+ # fails to parse config for some reason
+ rm tests/test_api_and_player_data.py || die
+
+ distutils-r1_python_prepare_all
+}
pkg_postinst() {
xdg_desktop_database_update
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-03-02 21:29 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-03-02 21:29 UTC (permalink / raw
To: gentoo-commits
commit: a8635b19166658f9f7788616cac4cf2f150d94c9
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Mar 2 21:29:04 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Mar 2 21:29:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a8635b19
media-video/vidify: iherit xdg instead of xdg-utils
Package-Manager: Portage-2.3.91, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/vidify-2.1.0.ebuild | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/media-video/vidify/vidify-2.1.0.ebuild b/media-video/vidify/vidify-2.1.0.ebuild
index 7432733..7cc16dd 100644
--- a/media-video/vidify/vidify-2.1.0.ebuild
+++ b/media-video/vidify/vidify-2.1.0.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_7 )
DISTUTILS_USE_SETUPTOOLS=rdepend
-inherit eutils distutils-r1 xdg-utils
+inherit eutils xdg distutils-r1
DESCRIPTION="Watch music videos in real time for the songs playing on your device"
HOMEPAGE="https://github.com/vidify/vidify"
@@ -47,8 +47,7 @@ python_prepare_all() {
}
pkg_postinst() {
- xdg_desktop_database_update
- xdg_icon_cache_update
+ xdg_pkg_postinst
use mpv && elog "media-video/vlc is the default vidify player, to use mpv run 'vidify --player mpv' or set 'player = mpv' in the config file"
use vlc && elog "If video playback is not working please check 'vidify --debug' for missing-codec-errors and recompile media-video/vlc with the missing codecs"
@@ -57,8 +56,3 @@ pkg_postinst() {
optfeature "'vidify --dark-mode'" dev-python/qdarkstyle
optfeature "'vidify --audiosync'" media-video/vidify-audiosync
}
-
-pkg_postrm() {
- xdg_desktop_database_update
- xdg_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
2020-04-02 10:12 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-04-01 19:38 ` Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-04-01 19:38 UTC (permalink / raw
To: gentoo-commits
commit: 6575e940f59f1566a87489665b425f980a0d8b4f
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Wed Apr 1 19:38:28 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Apr 1 19:38:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6575e940
media-video/vidify: version bump 2.2.0
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 2 +-
.../{vidify-2.1.0.ebuild => vidify-2.2.0.ebuild} | 20 ++++++++++++++------
2 files changed, 15 insertions(+), 7 deletions(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
index f437ef6..552a9ac 100644
--- a/media-video/vidify/Manifest
+++ b/media-video/vidify/Manifest
@@ -1 +1 @@
-DIST vidify-2.1.0.tar.gz 2332514 BLAKE2B c3199cd20de6e306406482a15addaf1875630c61271ea04b4a0c283d14030102eced6428e2dc8945ab482af6c81f94c51742983e9a9b6581b3aac60bd1c942f6 SHA512 e1a7d60caacd30d68fc8b1ebf3ea30a0527218257fe762989dd8ca5213beb247c300a7ffafe68554c88a1f3bb2a054a555fe15a66a727c57911f1f545e8d0297
+DIST vidify-2.2.0.tar.gz 2903665 BLAKE2B 0740ad35728eb80537170f75180e03dd88bdbaba2ab84e7d4c0453bc8e104550a510f5a25f42d9a84a9e5659f7bd142d1eae537c58b629cc509a110d14e353b8 SHA512 456ad36487c7a66b004de2e8837e718a9b18a235a5bc95bc6322ee43e4fbdf610f4a38dfdbea139e05ae3dc9551eb9116ace7a4dddf01356bea9858599aaa6cd
diff --git a/media-video/vidify/vidify-2.1.0.ebuild b/media-video/vidify/vidify-2.2.0.ebuild
similarity index 77%
rename from media-video/vidify/vidify-2.1.0.ebuild
rename to media-video/vidify/vidify-2.2.0.ebuild
index 7cc16dd..66c27c9 100644
--- a/media-video/vidify/vidify-2.1.0.ebuild
+++ b/media-video/vidify/vidify-2.2.0.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_7 )
DISTUTILS_USE_SETUPTOOLS=rdepend
-inherit eutils xdg distutils-r1
+inherit eutils xdg distutils-r1 virtualx
DESCRIPTION="Watch music videos in real time for the songs playing on your device"
HOMEPAGE="https://github.com/vidify/vidify"
@@ -25,27 +25,36 @@ RDEPEND="
dev-python/appdirs[${PYTHON_USEDEP}]
dev-python/lyricwikia[${PYTHON_USEDEP}]
dev-python/pydbus[${PYTHON_USEDEP}]
+ dev-python/qdarkstyle[${PYTHON_USEDEP}]
dev-python/QtPy[gui,webengine,${PYTHON_USEDEP}]
dev-python/tekore[${PYTHON_USEDEP}]
net-misc/youtube-dl[${PYTHON_USEDEP}]
+ dev-python/zeroconf[${PYTHON_USEDEP}]
mpv? ( dev-python/python-mpv[${PYTHON_USEDEP}] )
- vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )"
+ vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )
+"
distutils_enable_tests unittest
python_prepare_all() {
# skip online test
- rm tests/apis/test_spotify_web.py || die
+ rm tests/api/test_spotify_web.py || die
+ rm tests/player/test_external.py || die
- # this needs dbus running
- rm tests/apis/test_mpris.py || die
+ # this needs dbus and a player running
+ rm tests/api/test_mpris.py || die
# fails to parse config for some reason
+ # likely because of the removal of the above tests
rm tests/test_api_and_player_data.py || die
distutils-r1_python_prepare_all
}
+python_test() {
+ virtx "${EPYTHON}" -m unittest discover -v
+}
+
pkg_postinst() {
xdg_pkg_postinst
@@ -53,6 +62,5 @@ pkg_postinst() {
use vlc && elog "If video playback is not working please check 'vidify --debug' for missing-codec-errors and recompile media-video/vlc with the missing codecs"
use mpv && elog "If video playback is not working please check 'vidify --player mpv --debug' for missing-codec-errors and recompile media-video/mpv with the missing codecs"
- optfeature "'vidify --dark-mode'" dev-python/qdarkstyle
optfeature "'vidify --audiosync'" media-video/vidify-audiosync
}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
2020-04-02 10:12 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-04-02 9:18 ` Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-04-02 9:18 UTC (permalink / raw
To: gentoo-commits
commit: 8fd3794e55c8782f342e6ac188c5218b195ae6ee
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Apr 2 09:18:11 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 2 09:18:11 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8fd3794e
media-video/vidify: do not hardepend on everything
we can only use one video/audio player at the time
so there is no need to force the user to install
all the dependencies
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/metadata.xml | 2 ++
media-video/vidify/vidify-2.2.0.ebuild | 35 +++++++++++++++++++++++++---------
2 files changed, 28 insertions(+), 9 deletions(-)
diff --git a/media-video/vidify/metadata.xml b/media-video/vidify/metadata.xml
index 13b78b5..bb03a0b 100644
--- a/media-video/vidify/metadata.xml
+++ b/media-video/vidify/metadata.xml
@@ -9,5 +9,7 @@
<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>
</pkgmetadata>
diff --git a/media-video/vidify/vidify-2.2.0.ebuild b/media-video/vidify/vidify-2.2.0.ebuild
index 66c27c9..dd17701 100644
--- a/media-video/vidify/vidify-2.2.0.ebuild
+++ b/media-video/vidify/vidify-2.2.0.ebuild
@@ -17,21 +17,23 @@ LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="+vlc mpv"
+IUSE="dbus vlc mpv zeroconf"
-REQUIRED_USE="|| ( vlc mpv )"
+REQUIRED_USE="|| ( vlc mpv zeroconf )"
RDEPEND="
dev-python/appdirs[${PYTHON_USEDEP}]
dev-python/lyricwikia[${PYTHON_USEDEP}]
- dev-python/pydbus[${PYTHON_USEDEP}]
- dev-python/qdarkstyle[${PYTHON_USEDEP}]
dev-python/QtPy[gui,webengine,${PYTHON_USEDEP}]
- dev-python/tekore[${PYTHON_USEDEP}]
net-misc/youtube-dl[${PYTHON_USEDEP}]
- dev-python/zeroconf[${PYTHON_USEDEP}]
+ || (
+ dev-python/tekore[${PYTHON_USEDEP}]
+ dev-python/pydbus[${PYTHON_USEDEP}]
+ )
+ dbus? ( dev-python/pydbus[${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
@@ -48,6 +50,17 @@ python_prepare_all() {
# likely because of the removal of the above tests
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
}
@@ -58,9 +71,13 @@ python_test() {
pkg_postinst() {
xdg_pkg_postinst
- use mpv && elog "media-video/vlc is the default vidify player, to use mpv run 'vidify --player mpv' or set 'player = mpv' in the config file"
- use vlc && elog "If video playback is not working please check 'vidify --debug' for missing-codec-errors and recompile media-video/vlc with the missing codecs"
- use mpv && elog "If video playback is not working please check 'vidify --player mpv --debug' for missing-codec-errors and recompile media-video/mpv with the missing codecs"
+ elog "If video playback is not working please check 'vidify --debug' for missing-codec-errors and recompile media-video/vlc or media-video/mpv with the missing codecs"
+ optfeature "using a 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
}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-04-03 10:06 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-04-03 10:06 UTC (permalink / raw
To: gentoo-commits
commit: 508368d91a63018bf41262931e0052dbf47e5377
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Apr 3 10:03:14 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Apr 3 10:04:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=508368d9
media-video/vidify: version bump 2.2.2
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 2 +-
media-video/vidify/{vidify-2.2.0.ebuild => vidify-2.2.2.ebuild} | 7 ++-----
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
index 552a9ac..ca25206 100644
--- a/media-video/vidify/Manifest
+++ b/media-video/vidify/Manifest
@@ -1 +1 @@
-DIST vidify-2.2.0.tar.gz 2903665 BLAKE2B 0740ad35728eb80537170f75180e03dd88bdbaba2ab84e7d4c0453bc8e104550a510f5a25f42d9a84a9e5659f7bd142d1eae537c58b629cc509a110d14e353b8 SHA512 456ad36487c7a66b004de2e8837e718a9b18a235a5bc95bc6322ee43e4fbdf610f4a38dfdbea139e05ae3dc9551eb9116ace7a4dddf01356bea9858599aaa6cd
+DIST vidify-2.2.2.tar.gz 2909012 BLAKE2B 2c80dcda1ece119cc925eb1c63dc8e37ea09667e7c42d9754d934870e1ec695d1357dccdfb288504edad11ac50b0668ee9a80c94a023764993b73a7a67863634 SHA512 d62db0a93eac56b6417d25846d66fa4c9111e32483e8dd9c5fee4ba96d6dba45f4d6f1aaa9106103803642bf79e1e01a4a6252b958c64d847a3bbe78ba43dbab
diff --git a/media-video/vidify/vidify-2.2.0.ebuild b/media-video/vidify/vidify-2.2.2.ebuild
similarity index 93%
rename from media-video/vidify/vidify-2.2.0.ebuild
rename to media-video/vidify/vidify-2.2.2.ebuild
index dd17701..7f19c38 100644
--- a/media-video/vidify/vidify-2.2.0.ebuild
+++ b/media-video/vidify/vidify-2.2.2.ebuild
@@ -26,11 +26,8 @@ RDEPEND="
dev-python/lyricwikia[${PYTHON_USEDEP}]
dev-python/QtPy[gui,webengine,${PYTHON_USEDEP}]
net-misc/youtube-dl[${PYTHON_USEDEP}]
- || (
- dev-python/tekore[${PYTHON_USEDEP}]
- dev-python/pydbus[${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}] )
@@ -74,7 +71,7 @@ pkg_postinst() {
elog "If video playback is not working please check 'vidify --debug' for missing-codec-errors and recompile media-video/vlc or media-video/mpv with the missing codecs"
optfeature "using a 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 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
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
2020-04-07 15:04 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-04-07 15:06 ` Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-04-07 15:06 UTC (permalink / raw
To: gentoo-commits
commit: b7445bde9f2cc1442e1b9cb094ee57102ade1fd6
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Apr 7 15:00:28 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 7 15:00:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b7445bde
media-video/vidify: version bump 2.2.3
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 2 +-
media-video/vidify/{vidify-2.2.2.ebuild => vidify-2.2.3.ebuild} | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
index ca25206..1dd5bc6 100644
--- a/media-video/vidify/Manifest
+++ b/media-video/vidify/Manifest
@@ -1 +1 @@
-DIST vidify-2.2.2.tar.gz 2909012 BLAKE2B 2c80dcda1ece119cc925eb1c63dc8e37ea09667e7c42d9754d934870e1ec695d1357dccdfb288504edad11ac50b0668ee9a80c94a023764993b73a7a67863634 SHA512 d62db0a93eac56b6417d25846d66fa4c9111e32483e8dd9c5fee4ba96d6dba45f4d6f1aaa9106103803642bf79e1e01a4a6252b958c64d847a3bbe78ba43dbab
+DIST vidify-2.2.3.tar.gz 2908707 BLAKE2B a79e697dbbcbe0d09837f52e02b41902c74222f4f27dcfc86eabe9c5064dd7cce0bf874f3a479551e87782660e32b244065b092cf7f27c9c94004e97dca74388 SHA512 a97d6f1fb8fdc968c464ea1603e600ac92bc100c9ef4dd4c86dd964947875498dacd92b370c322557c259d8a1dc89c36e2a83e2e469118018da8196c1e27a0a7
diff --git a/media-video/vidify/vidify-2.2.2.ebuild b/media-video/vidify/vidify-2.2.3.ebuild
similarity index 95%
rename from media-video/vidify/vidify-2.2.2.ebuild
rename to media-video/vidify/vidify-2.2.3.ebuild
index 7f19c38..7e8bf24 100644
--- a/media-video/vidify/vidify-2.2.2.ebuild
+++ b/media-video/vidify/vidify-2.2.3.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{6,7} )
DISTUTILS_USE_SETUPTOOLS=rdepend
@@ -31,6 +31,7 @@ RDEPEND="
mpv? ( dev-python/python-mpv[${PYTHON_USEDEP}] )
vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )
zeroconf? ( dev-python/zeroconf[${PYTHON_USEDEP}] )
+ $(python_gen_cond_dep 'dev-python/dataclasses[${PYTHON_USEDEP}]' python3_6)
"
distutils_enable_tests unittest
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
2020-04-13 17:50 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-04-13 10:01 ` Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-04-13 10:01 UTC (permalink / raw
To: gentoo-commits
commit: 085d03e37a807c76d2707fbac07f9d0198240d2f
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Apr 13 09:57:49 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Apr 13 10:01:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=085d03e3
media-video/vidify: bump 2.2.4
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 2 +-
media-video/vidify/{vidify-2.2.3.ebuild => vidify-2.2.4.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
index 1dd5bc6..3d3dcfe 100644
--- a/media-video/vidify/Manifest
+++ b/media-video/vidify/Manifest
@@ -1 +1 @@
-DIST vidify-2.2.3.tar.gz 2908707 BLAKE2B a79e697dbbcbe0d09837f52e02b41902c74222f4f27dcfc86eabe9c5064dd7cce0bf874f3a479551e87782660e32b244065b092cf7f27c9c94004e97dca74388 SHA512 a97d6f1fb8fdc968c464ea1603e600ac92bc100c9ef4dd4c86dd964947875498dacd92b370c322557c259d8a1dc89c36e2a83e2e469118018da8196c1e27a0a7
+DIST vidify-2.2.4.tar.gz 2909082 BLAKE2B 555208341b73ee8ef4d8b2422effced0769bc2bbdc3836cf7568cd81e546a8f3283e958392b29edb9e6b7a961989a01ce640dc840c679697cd181a116e28a582 SHA512 e874ed5166bab67af06381e8479ef416ddf794044f1a7c6f8bd23502d775ec7597404965f357b09c632f97289bf0e73dc0c902319b7d153b8330afde1442d7fb
diff --git a/media-video/vidify/vidify-2.2.3.ebuild b/media-video/vidify/vidify-2.2.4.ebuild
similarity index 100%
rename from media-video/vidify/vidify-2.2.3.ebuild
rename to media-video/vidify/vidify-2.2.4.ebuild
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-04-30 13:47 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-04-30 13:47 UTC (permalink / raw
To: gentoo-commits
commit: 14087cbc4af4b3ee6873b8afefad1f8a4623349d
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Apr 30 13:47:03 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 30 13:47:03 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=14087cbc
media-video/vidify: add upstreams new awesome website
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/vidify-2.2.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/vidify/vidify-2.2.4.ebuild b/media-video/vidify/vidify-2.2.4.ebuild
index b86c66f..55298d9 100644
--- a/media-video/vidify/vidify-2.2.4.ebuild
+++ b/media-video/vidify/vidify-2.2.4.ebuild
@@ -10,7 +10,7 @@ DISTUTILS_USE_SETUPTOOLS=rdepend
inherit eutils xdg distutils-r1 virtualx
DESCRIPTION="Watch music videos in real time for the songs playing on your device"
-HOMEPAGE="https://github.com/vidify/vidify"
+HOMEPAGE="https://github.com/vidify/vidify https://vidify.org"
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-3"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
2020-05-07 11:13 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-05-07 9:40 ` Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-05-07 9:40 UTC (permalink / raw
To: gentoo-commits
commit: a52c469449d3654369a00098fea8ebd9f01bb089
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu May 7 09:40:27 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu May 7 09:40:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a52c4694
media-video/vidify: minor version bump
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 2 +-
media-video/vidify/{vidify-2.2.4.ebuild => vidify-2.2.5.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
index 3d3dcfe..7ac79ea 100644
--- a/media-video/vidify/Manifest
+++ b/media-video/vidify/Manifest
@@ -1 +1 @@
-DIST vidify-2.2.4.tar.gz 2909082 BLAKE2B 555208341b73ee8ef4d8b2422effced0769bc2bbdc3836cf7568cd81e546a8f3283e958392b29edb9e6b7a961989a01ce640dc840c679697cd181a116e28a582 SHA512 e874ed5166bab67af06381e8479ef416ddf794044f1a7c6f8bd23502d775ec7597404965f357b09c632f97289bf0e73dc0c902319b7d153b8330afde1442d7fb
+DIST vidify-2.2.5.tar.gz 2906471 BLAKE2B f66de21762697182e63317cd78feb7b70d0e10fb0186c8f4a8caff355772a8d0cded6f7126ba2e0d9c020c3858549e38e4024464db8c8b563887660ab47bc196 SHA512 c5d2a0011b65e4bd5487bfe2c24cd24c4e383c242dafbd76888635a1779ac9b23b01225dac65f09ea2c08eb15162243b30cd50da669057f08d26d8ebeb23121c
diff --git a/media-video/vidify/vidify-2.2.4.ebuild b/media-video/vidify/vidify-2.2.5.ebuild
similarity index 100%
rename from media-video/vidify/vidify-2.2.4.ebuild
rename to media-video/vidify/vidify-2.2.5.ebuild
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-06-30 19:27 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-06-30 19:27 UTC (permalink / raw
To: gentoo-commits
commit: 18125d4bb4dd23bb7cc67d68df86342d427e5b27
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jun 30 19:26:55 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jun 30 19:26:55 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=18125d4b
media-video/vidify: drop py3_6
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/vidify-2.2.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/vidify/vidify-2.2.5.ebuild b/media-video/vidify/vidify-2.2.5.ebuild
index 55298d9..c207e1d 100644
--- a/media-video/vidify/vidify-2.2.5.ebuild
+++ b/media-video/vidify/vidify-2.2.5.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_7 )
DISTUTILS_USE_SETUPTOOLS=rdepend
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-08-14 18:20 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-08-14 18:20 UTC (permalink / raw
To: gentoo-commits
commit: 775b2978ad36194cc1b41185ecccadd3536ac033
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Aug 14 18:18:16 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Aug 14 18:18:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=775b2978
media-video/vidify: add py3.8
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/vidify-2.2.5.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/media-video/vidify/vidify-2.2.5.ebuild b/media-video/vidify/vidify-2.2.5.ebuild
index c207e1d..8ca22c8 100644
--- a/media-video/vidify/vidify-2.2.5.ebuild
+++ b/media-video/vidify/vidify-2.2.5.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
@@ -31,7 +31,6 @@ RDEPEND="
mpv? ( dev-python/python-mpv[${PYTHON_USEDEP}] )
vlc? ( dev-python/python-vlc[${PYTHON_USEDEP}] )
zeroconf? ( dev-python/zeroconf[${PYTHON_USEDEP}] )
- $(python_gen_cond_dep 'dev-python/dataclasses[${PYTHON_USEDEP}]' python3_6)
"
distutils_enable_tests unittest
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-09-08 13:27 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-09-08 13:27 UTC (permalink / raw
To: gentoo-commits
commit: 1b7512e9356f5e7cbe340743a3b259fdf5a55c2d
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Sep 8 13:26:45 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Sep 8 13:26:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1b7512e9
media-video/vidify: version bump 2.2.6
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/Manifest | 2 +-
media-video/vidify/{vidify-2.2.5.ebuild => vidify-2.2.6.ebuild} | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/media-video/vidify/Manifest b/media-video/vidify/Manifest
index 7ac79eaf..c352a45f 100644
--- a/media-video/vidify/Manifest
+++ b/media-video/vidify/Manifest
@@ -1 +1 @@
-DIST vidify-2.2.5.tar.gz 2906471 BLAKE2B f66de21762697182e63317cd78feb7b70d0e10fb0186c8f4a8caff355772a8d0cded6f7126ba2e0d9c020c3858549e38e4024464db8c8b563887660ab47bc196 SHA512 c5d2a0011b65e4bd5487bfe2c24cd24c4e383c242dafbd76888635a1779ac9b23b01225dac65f09ea2c08eb15162243b30cd50da669057f08d26d8ebeb23121c
+DIST vidify-2.2.6.tar.gz 2906511 BLAKE2B 3df48ca57e102f664852e2fc2abeb3d19427673e1fec5144a8c0afda112a0f3b281b18db43b4326244266d6e9dfbcb2443319ddad3f864098a61bd1e3c966307 SHA512 15487ee9dcbe647b2b287bd2eb3c09962b557320313a9a3885fb3c0d6af945909531111d5297c1a5fb5b451af5df6fd968b3953bbf79af113980ed368a5674b5
diff --git a/media-video/vidify/vidify-2.2.5.ebuild b/media-video/vidify/vidify-2.2.6.ebuild
similarity index 96%
rename from media-video/vidify/vidify-2.2.5.ebuild
rename to media-video/vidify/vidify-2.2.6.ebuild
index 8ca22c84..58e0fc70 100644
--- a/media-video/vidify/vidify-2.2.5.ebuild
+++ b/media-video/vidify/vidify-2.2.6.ebuild
@@ -43,8 +43,7 @@ python_prepare_all() {
# this needs dbus and a player running
rm tests/api/test_mpris.py || die
- # fails to parse config for some reason
- # likely because of the removal of the above tests
+ # can't parse non-existent config
rm tests/test_api_and_player_data.py || die
# do not hard depend on this
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2020-09-24 12:50 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2020-09-24 12:50 UTC (permalink / raw
To: gentoo-commits
commit: 8eed2a0ce90647e303e5adc4967d365f0e65a72c
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Sep 24 12:33:57 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Sep 24 12:33:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8eed2a0c
media-video/vidify: eutils --> optfeature
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/vidify-2.2.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/vidify/vidify-2.2.6.ebuild b/media-video/vidify/vidify-2.2.6.ebuild
index 58e0fc70..974600dc 100644
--- a/media-video/vidify/vidify-2.2.6.ebuild
+++ b/media-video/vidify/vidify-2.2.6.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
-inherit eutils xdg distutils-r1 virtualx
+inherit xdg distutils-r1 optfeature virtualx
DESCRIPTION="Watch music videos in real time for the songs playing on your device"
HOMEPAGE="https://github.com/vidify/vidify https://vidify.org"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2021-02-17 18:54 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2021-02-17 18:54 UTC (permalink / raw
To: gentoo-commits
commit: f5e05465c3e1bc071d7e46bc515cb130de6e925c
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Wed Feb 17 18:54:22 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Feb 17 18:54:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f5e05465
media-video/vidify: add py3.9
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
media-video/vidify/vidify-2.2.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-video/vidify/vidify-2.2.6.ebuild b/media-video/vidify/vidify-2.2.6.ebuild
index 974600dc..f36a4f70 100644
--- a/media-video/vidify/vidify-2.2.6.ebuild
+++ b/media-video/vidify/vidify-2.2.6.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
DISTUTILS_USE_SETUPTOOLS=rdepend
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/
@ 2021-05-21 17:08 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2021-05-21 17:08 UTC (permalink / raw
To: gentoo-commits
commit: a0940d741fdf7e3b4bd9bdd4af25e35d7f12e5ce
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Fri May 21 17:07:25 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Fri May 21 17:07:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a0940d74
media-video/vidify: drop x86
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
media-video/vidify/vidify-2.2.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/vidify/vidify-2.2.6.ebuild b/media-video/vidify/vidify-2.2.6.ebuild
index f36a4f702..f91ab7e25 100644
--- a/media-video/vidify/vidify-2.2.6.ebuild
+++ b/media-video/vidify/vidify-2.2.6.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
IUSE="dbus vlc mpv zeroconf"
^ permalink raw reply related [flat|nested] 20+ messages in thread
end of thread, other threads:[~2021-05-21 17:08 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-21 15:17 [gentoo-commits] repo/proj/guru:dev commit in: media-video/vidify/ Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2020-02-03 18:07 Andrew Ammerlaan
2020-02-10 10:55 Andrew Ammerlaan
2020-02-10 19:33 Andrew Ammerlaan
2020-02-10 19:42 Andrew Ammerlaan
2020-02-24 12:29 Andrew Ammerlaan
2020-03-02 21:29 Andrew Ammerlaan
2020-04-02 10:12 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-01 19:38 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-02 10:12 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-02 9:18 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-03 10:06 Andrew Ammerlaan
2020-04-07 15:04 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-07 15:06 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-13 17:50 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-13 10:01 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-30 13:47 Andrew Ammerlaan
2020-05-07 11:13 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-05-07 9:40 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-06-30 19:27 Andrew Ammerlaan
2020-08-14 18:20 Andrew Ammerlaan
2020-09-08 13:27 Andrew Ammerlaan
2020-09-24 12:50 Andrew Ammerlaan
2021-02-17 18:54 Andrew Ammerlaan
2021-05-21 17:08 Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox