* [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/
@ 2024-08-15 3:10 Justin
0 siblings, 0 replies; 9+ messages in thread
From: Justin @ 2024-08-15 3:10 UTC (permalink / raw
To: gentoo-commits
commit: b5c1f62ce66a7b9ce0884daa3b89a7b6dbc85dd5
Author: Justin Donofrio <justin026 <AT> protonmail <DOT> com>
AuthorDate: Thu Aug 15 03:09:44 2024 +0000
Commit: Justin <justin026 <AT> protonmail <DOT> com>
CommitDate: Thu Aug 15 03:09:44 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b5c1f62c
media-video/stremio: new package, add 4.4.164
Signed-off-by: Justin Donofrio <justin026 <AT> protonmail.com>
media-video/stremio/Manifest | 1 +
media-video/stremio/metadata.xml | 11 ++++++
media-video/stremio/stremio-4.4.164.ebuild | 56 ++++++++++++++++++++++++++++++
3 files changed, 68 insertions(+)
diff --git a/media-video/stremio/Manifest b/media-video/stremio/Manifest
new file mode 100644
index 000000000..7ef9bb334
--- /dev/null
+++ b/media-video/stremio/Manifest
@@ -0,0 +1 @@
+DIST server.js 6029535 BLAKE2B 222f8f25d12acf3dae0b861e8fdd01ad29aacb9d46ee381faeb29442eb7f0b21002b6f05f818ed7fc9450e7f22d7afd00c08cf4fd171b7e15949d19d878dee86 SHA512 dbd540c3cf88fd53b36fe424f1fb146cb46c41360d7bf35cdb6ade40d34fb1e93aa33c9b1e3a79ff7a74e6f8202fe3407c9ab28878cfd5a5e373ac5a963fe5c0
diff --git a/media-video/stremio/metadata.xml b/media-video/stremio/metadata.xml
new file mode 100644
index 000000000..2f1516048
--- /dev/null
+++ b/media-video/stremio/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>justin026@protonmail.com</email>
+ <name>Justin</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">Stremio/stremio-shell</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/media-video/stremio/stremio-4.4.164.ebuild b/media-video/stremio/stremio-4.4.164.ebuild
new file mode 100644
index 000000000..e5db9b122
--- /dev/null
+++ b/media-video/stremio/stremio-4.4.164.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop git-r3 qmake-utils xdg
+
+DESCRIPTION="Stremio is a modern media center for your video entertainment."
+HOMEPAGE="https://github.com/Stremio/stremio-shell https://www.stremio.com/"
+SRC_URI="https://dl.strem.io/server/v${PV}/desktop/server.js"
+
+EGIT_REPO_URI="https://github.com/Stremio/stremio-shell.git"
+EGIT_COMMIT="v${PV}"
+EGIT_SUBMODULES=( '*' '-test-*' )
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RESTRICT="bindist mirror test strip"
+
+RDEPEND="
+ gnome-base/librsvg
+ dev-qt/qtquickcontrols
+ dev-qt/qtopengl
+ dev-qt/qtwebengine:5
+ media-video/ffmpeg[network]
+ media-video/mpv
+ net-libs/nodejs[ssl]
+"
+
+src_compile() {
+ eqmake5
+ emake -f release.makefile
+}
+
+src_install() {
+ insinto /opt/stremio
+ doins build/stremio
+ doins "${DISTDIR}"/server.js
+
+ dosym -r /usr/bin/node /opt/stremio/node
+
+ dosym -r /opt/stremio/stremio /usr/bin/${PN}
+ domenu smartcode-stremio.desktop
+ local x
+ for x in 16 22 24 32 64 128; do
+ newicon -s ${x} icons/smartcode-stremio_${x}.png smartcode-stremio.png
+ done
+
+ fperms +x /opt/stremio/stremio
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/
@ 2024-08-15 4:11 Justin
0 siblings, 0 replies; 9+ messages in thread
From: Justin @ 2024-08-15 4:11 UTC (permalink / raw
To: gentoo-commits
commit: 69213e5e0e8a5cd65f23ab9502b0ebac467d8dce
Author: Justin Donofrio <justin026 <AT> protonmail <DOT> com>
AuthorDate: Thu Aug 15 04:06:38 2024 +0000
Commit: Justin <justin026 <AT> protonmail <DOT> com>
CommitDate: Thu Aug 15 04:08:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=69213e5e
media-video/stremio: unkeyword 4.4.164 to fix VisibleVcsPkg error
Signed-off-by: Justin Donofrio <justin026 <AT> protonmail.com>
media-video/stremio/stremio-4.4.164.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/media-video/stremio/stremio-4.4.164.ebuild b/media-video/stremio/stremio-4.4.164.ebuild
index e5db9b122..15deb6ef1 100644
--- a/media-video/stremio/stremio-4.4.164.ebuild
+++ b/media-video/stremio/stremio-4.4.164.ebuild
@@ -6,7 +6,7 @@ EAPI=8
inherit desktop git-r3 qmake-utils xdg
DESCRIPTION="Stremio is a modern media center for your video entertainment."
-HOMEPAGE="https://github.com/Stremio/stremio-shell https://www.stremio.com/"
+HOMEPAGE="https://github.com/Stremio/stremio-shell/ https://www.stremio.com/"
SRC_URI="https://dl.strem.io/server/v${PV}/desktop/server.js"
EGIT_REPO_URI="https://github.com/Stremio/stremio-shell.git"
@@ -15,11 +15,10 @@ EGIT_SUBMODULES=( '*' '-test-*' )
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64"
RESTRICT="bindist mirror test strip"
-RDEPEND="
+DEPEND="
gnome-base/librsvg
dev-qt/qtquickcontrols
dev-qt/qtopengl
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/
@ 2024-08-17 1:36 Justin
0 siblings, 0 replies; 9+ messages in thread
From: Justin @ 2024-08-17 1:36 UTC (permalink / raw
To: gentoo-commits
commit: 3ad33f4902cad41d2e5854733a4d8face71767e0
Author: Justin Donofrio <justin026 <AT> protonmail <DOT> com>
AuthorDate: Sat Aug 17 01:35:01 2024 +0000
Commit: Justin <justin026 <AT> protonmail <DOT> com>
CommitDate: Sat Aug 17 01:35:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3ad33f49
media-video/stremio: add 4.4.168
Signed-off-by: Justin Donofrio <justin026 <AT> protonmail.com>
media-video/stremio/Manifest | 4 ++
media-video/stremio/stremio-4.4.168.ebuild | 69 ++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/media-video/stremio/Manifest b/media-video/stremio/Manifest
index 7ef9bb334..76ebdfcf7 100644
--- a/media-video/stremio/Manifest
+++ b/media-video/stremio/Manifest
@@ -1 +1,5 @@
+DIST libmpv.gh.tar.gz 31116341 BLAKE2B 65116ed2cbe40137fa71339d8c62e2b20816647f16d00aeff0d18ac5fdfa8d70e1211365d87101796d31af7f42510ce87b791b85222cfdca1a4871e534aced30 SHA512 b8c6155b36b67ff274d379accae40b93f4b0bb3e4dadf01b60b2f4c13fa493b297c1b0c525cdc40b1d74edede8e2804e783beb61f9762be394b68eb6e9aee30a
+DIST razerchroma.gh.tar.gz 20606 BLAKE2B 7764f6f0b9d4f73251f6947dbe3bd7e42f36266e76fe449b600fa57733b1d279cce046c1f7c59b44ec86b7b8caa702011dce424c2071d9722cb0c827edc12ee2 SHA512 e0ace9d6d105f59052b38e475ca7e48ee6e024c850efae54f5e49fe3323399a5e326a8ce69dbd7ff7c9147863a8a4e381daf870534d82e0b259c072c05f6c6d5
DIST server.js 6029535 BLAKE2B 222f8f25d12acf3dae0b861e8fdd01ad29aacb9d46ee381faeb29442eb7f0b21002b6f05f818ed7fc9450e7f22d7afd00c08cf4fd171b7e15949d19d878dee86 SHA512 dbd540c3cf88fd53b36fe424f1fb146cb46c41360d7bf35cdb6ade40d34fb1e93aa33c9b1e3a79ff7a74e6f8202fe3407c9ab28878cfd5a5e373ac5a963fe5c0
+DIST singleapplication.gh.tar.gz 20630 BLAKE2B 0b5f492f50f13e057ccfdd40a82413ecdaaf9060e6f831bed00c2132b22ac78c37f7b682bd3beef17684637d4db57e5410508e48d31d651ad33b6459d156050d SHA512 df0c877c5513efc0f801e6616f28d03ebb3b53c586005a5ca4b1dfd353f7035da6ede23a90d4bbe0378d24895cfdf8edd36718109b7abebf5b3fef59b39a7da3
+DIST stremio-shell.gh.tar.gz 126085979 BLAKE2B b6a92b7bb398b4f250d0f4731b339b34135831e954887c75af776ec2b8f18fbd982efd1367984fcd4699adcdb2b64e50c562c02587d501d5b488f36de1be86a9 SHA512 2920e075cc7de7e134960d85e091e3ee7e2ae87a92bac66632e5be99dc3892560a2c6a7cdd05043e56de067768c58d16db7121edca5e345a4ec2ac73491ca2c2
diff --git a/media-video/stremio/stremio-4.4.168.ebuild b/media-video/stremio/stremio-4.4.168.ebuild
new file mode 100644
index 000000000..32fb39636
--- /dev/null
+++ b/media-video/stremio/stremio-4.4.168.ebuild
@@ -0,0 +1,69 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop qmake-utils xdg
+
+DESCRIPTION="Stremio is a modern media center for your video entertainment."
+HOMEPAGE="https://github.com/Stremio/stremio-shell/ https://www.stremio.com/"
+SRC_URI="
+ https://github.com/Stremio/stremio-shell/archive/refs/tags/v${PV}.tar.gz -> stremio-shell.gh.tar.gz
+ https://github.com/itay-grudev/SingleApplication/archive/aede311d28d20179216c5419b581087be2a8409f.tar.gz -> singleapplication.gh.tar.gz
+ https://github.com/Ivshti/libmpv/archive/b0eae77cf6dc59aaf142b7d079cb13a0904fd3ee.tar.gz -> libmpv.gh.tar.gz
+ https://github.com/Ivshti/razerchroma/archive/99045142479ba0e2fc3b9cccb72e348c67cd5829.tar.gz -> razerchroma.gh.tar.gz
+ https://dl.strem.io/server/v4.20.8/desktop/server.js
+"
+
+S="${WORKDIR}/${PN}-shell-${PV}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RESTRICT="bindist mirror test strip"
+
+RDEPEND="
+ gnome-base/librsvg
+ dev-qt/qtquickcontrols
+ dev-qt/qtopengl
+ dev-qt/qtwebengine:5
+ media-video/ffmpeg[network]
+ media-video/mpv
+ net-libs/nodejs[ssl]
+"
+
+src_compile() {
+ mv ../SingleApplication* ../singleapplication || die
+ mv ../libmpv* ../libmpv || die
+ mv ../razerchroma* ../chroma || die
+
+ mv -t deps \
+ ../singleapplication \
+ ../libmpv \
+ ../chroma || die
+
+ eqmake5
+ emake -f release.makefile
+}
+
+src_install() {
+ insinto /opt/stremio
+ doins build/stremio
+ doins "${DISTDIR}"/server.js
+
+ dosym -r /usr/bin/node /opt/stremio/node
+
+ dosym -r /opt/stremio/stremio /usr/bin/${PN}
+ domenu smartcode-stremio.desktop
+ local x
+ for x in 16 22 24 32 64 128; do
+ newicon -s ${x} icons/smartcode-stremio_${x}.png smartcode-stremio.png
+ done
+
+ fperms +x /opt/stremio/stremio
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/
@ 2024-08-17 1:37 Justin
0 siblings, 0 replies; 9+ messages in thread
From: Justin @ 2024-08-17 1:37 UTC (permalink / raw
To: gentoo-commits
commit: 1a8e96a6b1b73eed29e9227d57188164401653c9
Author: Justin Donofrio <justin026 <AT> protonmail <DOT> com>
AuthorDate: Sat Aug 17 01:37:18 2024 +0000
Commit: Justin <justin026 <AT> protonmail <DOT> com>
CommitDate: Sat Aug 17 01:37:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1a8e96a6
media-video/stremio: drop 4.4.164
Signed-off-by: Justin Donofrio <justin026 <AT> protonmail.com>
media-video/stremio/stremio-4.4.164.ebuild | 55 ------------------------------
1 file changed, 55 deletions(-)
diff --git a/media-video/stremio/stremio-4.4.164.ebuild b/media-video/stremio/stremio-4.4.164.ebuild
deleted file mode 100644
index 15deb6ef1..000000000
--- a/media-video/stremio/stremio-4.4.164.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop git-r3 qmake-utils xdg
-
-DESCRIPTION="Stremio is a modern media center for your video entertainment."
-HOMEPAGE="https://github.com/Stremio/stremio-shell/ https://www.stremio.com/"
-SRC_URI="https://dl.strem.io/server/v${PV}/desktop/server.js"
-
-EGIT_REPO_URI="https://github.com/Stremio/stremio-shell.git"
-EGIT_COMMIT="v${PV}"
-EGIT_SUBMODULES=( '*' '-test-*' )
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RESTRICT="bindist mirror test strip"
-
-DEPEND="
- gnome-base/librsvg
- dev-qt/qtquickcontrols
- dev-qt/qtopengl
- dev-qt/qtwebengine:5
- media-video/ffmpeg[network]
- media-video/mpv
- net-libs/nodejs[ssl]
-"
-
-src_compile() {
- eqmake5
- emake -f release.makefile
-}
-
-src_install() {
- insinto /opt/stremio
- doins build/stremio
- doins "${DISTDIR}"/server.js
-
- dosym -r /usr/bin/node /opt/stremio/node
-
- dosym -r /opt/stremio/stremio /usr/bin/${PN}
- domenu smartcode-stremio.desktop
- local x
- for x in 16 22 24 32 64 128; do
- newicon -s ${x} icons/smartcode-stremio_${x}.png smartcode-stremio.png
- done
-
- fperms +x /opt/stremio/stremio
-}
-
-pkg_postinst() {
- xdg_pkg_postinst
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/
@ 2024-08-17 16:56 Justin
0 siblings, 0 replies; 9+ messages in thread
From: Justin @ 2024-08-17 16:56 UTC (permalink / raw
To: gentoo-commits
commit: bd7cced99f08711537d439620e29927f3693fd2c
Author: Justin Donofrio <justin026 <AT> protonmail <DOT> com>
AuthorDate: Sat Aug 17 16:50:15 2024 +0000
Commit: Justin <justin026 <AT> protonmail <DOT> com>
CommitDate: Sat Aug 17 16:50:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bd7cced9
media-video/stremio: update SRC_URI
Signed-off-by: Justin Donofrio <justin026 <AT> protonmail.com>
media-video/stremio/Manifest | 10 +++++-----
media-video/stremio/stremio-4.4.168.ebuild | 25 ++++++++++++-------------
2 files changed, 17 insertions(+), 18 deletions(-)
diff --git a/media-video/stremio/Manifest b/media-video/stremio/Manifest
index 76ebdfcf7..f2004657a 100644
--- a/media-video/stremio/Manifest
+++ b/media-video/stremio/Manifest
@@ -1,5 +1,5 @@
-DIST libmpv.gh.tar.gz 31116341 BLAKE2B 65116ed2cbe40137fa71339d8c62e2b20816647f16d00aeff0d18ac5fdfa8d70e1211365d87101796d31af7f42510ce87b791b85222cfdca1a4871e534aced30 SHA512 b8c6155b36b67ff274d379accae40b93f4b0bb3e4dadf01b60b2f4c13fa493b297c1b0c525cdc40b1d74edede8e2804e783beb61f9762be394b68eb6e9aee30a
-DIST razerchroma.gh.tar.gz 20606 BLAKE2B 7764f6f0b9d4f73251f6947dbe3bd7e42f36266e76fe449b600fa57733b1d279cce046c1f7c59b44ec86b7b8caa702011dce424c2071d9722cb0c827edc12ee2 SHA512 e0ace9d6d105f59052b38e475ca7e48ee6e024c850efae54f5e49fe3323399a5e326a8ce69dbd7ff7c9147863a8a4e381daf870534d82e0b259c072c05f6c6d5
-DIST server.js 6029535 BLAKE2B 222f8f25d12acf3dae0b861e8fdd01ad29aacb9d46ee381faeb29442eb7f0b21002b6f05f818ed7fc9450e7f22d7afd00c08cf4fd171b7e15949d19d878dee86 SHA512 dbd540c3cf88fd53b36fe424f1fb146cb46c41360d7bf35cdb6ade40d34fb1e93aa33c9b1e3a79ff7a74e6f8202fe3407c9ab28878cfd5a5e373ac5a963fe5c0
-DIST singleapplication.gh.tar.gz 20630 BLAKE2B 0b5f492f50f13e057ccfdd40a82413ecdaaf9060e6f831bed00c2132b22ac78c37f7b682bd3beef17684637d4db57e5410508e48d31d651ad33b6459d156050d SHA512 df0c877c5513efc0f801e6616f28d03ebb3b53c586005a5ca4b1dfd353f7035da6ede23a90d4bbe0378d24895cfdf8edd36718109b7abebf5b3fef59b39a7da3
-DIST stremio-shell.gh.tar.gz 126085979 BLAKE2B b6a92b7bb398b4f250d0f4731b339b34135831e954887c75af776ec2b8f18fbd982efd1367984fcd4699adcdb2b64e50c562c02587d501d5b488f36de1be86a9 SHA512 2920e075cc7de7e134960d85e091e3ee7e2ae87a92bac66632e5be99dc3892560a2c6a7cdd05043e56de067768c58d16db7121edca5e345a4ec2ac73491ca2c2
+DIST 4.4.168-libmpv.gh.tar.gz 31116341 BLAKE2B 65116ed2cbe40137fa71339d8c62e2b20816647f16d00aeff0d18ac5fdfa8d70e1211365d87101796d31af7f42510ce87b791b85222cfdca1a4871e534aced30 SHA512 b8c6155b36b67ff274d379accae40b93f4b0bb3e4dadf01b60b2f4c13fa493b297c1b0c525cdc40b1d74edede8e2804e783beb61f9762be394b68eb6e9aee30a
+DIST 4.4.168-razerchroma.gh.tar.gz 20606 BLAKE2B 7764f6f0b9d4f73251f6947dbe3bd7e42f36266e76fe449b600fa57733b1d279cce046c1f7c59b44ec86b7b8caa702011dce424c2071d9722cb0c827edc12ee2 SHA512 e0ace9d6d105f59052b38e475ca7e48ee6e024c850efae54f5e49fe3323399a5e326a8ce69dbd7ff7c9147863a8a4e381daf870534d82e0b259c072c05f6c6d5
+DIST 4.4.168-server.js 6029535 BLAKE2B 222f8f25d12acf3dae0b861e8fdd01ad29aacb9d46ee381faeb29442eb7f0b21002b6f05f818ed7fc9450e7f22d7afd00c08cf4fd171b7e15949d19d878dee86 SHA512 dbd540c3cf88fd53b36fe424f1fb146cb46c41360d7bf35cdb6ade40d34fb1e93aa33c9b1e3a79ff7a74e6f8202fe3407c9ab28878cfd5a5e373ac5a963fe5c0
+DIST 4.4.168-singleapplication.gh.tar.gz 20630 BLAKE2B 0b5f492f50f13e057ccfdd40a82413ecdaaf9060e6f831bed00c2132b22ac78c37f7b682bd3beef17684637d4db57e5410508e48d31d651ad33b6459d156050d SHA512 df0c877c5513efc0f801e6616f28d03ebb3b53c586005a5ca4b1dfd353f7035da6ede23a90d4bbe0378d24895cfdf8edd36718109b7abebf5b3fef59b39a7da3
+DIST 4.4.168-stremio-shell.gh.tar.gz 126085979 BLAKE2B b6a92b7bb398b4f250d0f4731b339b34135831e954887c75af776ec2b8f18fbd982efd1367984fcd4699adcdb2b64e50c562c02587d501d5b488f36de1be86a9 SHA512 2920e075cc7de7e134960d85e091e3ee7e2ae87a92bac66632e5be99dc3892560a2c6a7cdd05043e56de067768c58d16db7121edca5e345a4ec2ac73491ca2c2
diff --git a/media-video/stremio/stremio-4.4.168.ebuild b/media-video/stremio/stremio-4.4.168.ebuild
index 32fb39636..8db1ebe52 100644
--- a/media-video/stremio/stremio-4.4.168.ebuild
+++ b/media-video/stremio/stremio-4.4.168.ebuild
@@ -8,11 +8,11 @@ inherit desktop qmake-utils xdg
DESCRIPTION="Stremio is a modern media center for your video entertainment."
HOMEPAGE="https://github.com/Stremio/stremio-shell/ https://www.stremio.com/"
SRC_URI="
- https://github.com/Stremio/stremio-shell/archive/refs/tags/v${PV}.tar.gz -> stremio-shell.gh.tar.gz
- https://github.com/itay-grudev/SingleApplication/archive/aede311d28d20179216c5419b581087be2a8409f.tar.gz -> singleapplication.gh.tar.gz
- https://github.com/Ivshti/libmpv/archive/b0eae77cf6dc59aaf142b7d079cb13a0904fd3ee.tar.gz -> libmpv.gh.tar.gz
- https://github.com/Ivshti/razerchroma/archive/99045142479ba0e2fc3b9cccb72e348c67cd5829.tar.gz -> razerchroma.gh.tar.gz
- https://dl.strem.io/server/v4.20.8/desktop/server.js
+ https://github.com/Stremio/stremio-shell/archive/refs/tags/v${PV}.tar.gz -> ${PV}-stremio-shell.gh.tar.gz
+ https://github.com/itay-grudev/SingleApplication/archive/aede311d28d20179216c5419b581087be2a8409f.tar.gz -> ${PV}-singleapplication.gh.tar.gz
+ https://github.com/Ivshti/libmpv/archive/b0eae77cf6dc59aaf142b7d079cb13a0904fd3ee.tar.gz -> ${PV}-libmpv.gh.tar.gz
+ https://github.com/Ivshti/razerchroma/archive/99045142479ba0e2fc3b9cccb72e348c67cd5829.tar.gz -> ${PV}-razerchroma.gh.tar.gz
+ https://dl.strem.io/server/v4.20.8/desktop/server.js -> ${PV}-server.js
"
S="${WORKDIR}/${PN}-shell-${PV}"
@@ -21,9 +21,7 @@ LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
-RESTRICT="bindist mirror test strip"
-
-RDEPEND="
+DEPEND="
gnome-base/librsvg
dev-qt/qtquickcontrols
dev-qt/qtopengl
@@ -34,6 +32,7 @@ RDEPEND="
"
src_compile() {
+ # Move dependencies to build dir
mv ../SingleApplication* ../singleapplication || die
mv ../libmpv* ../libmpv || die
mv ../razerchroma* ../chroma || die
@@ -43,14 +42,18 @@ src_compile() {
../libmpv \
../chroma || die
+ cp "${DISTDIR}"/*server.js server.js || die
+
eqmake5
emake -f release.makefile
}
src_install() {
+ # I would prefer to install to /usr/bin but the server won't start unless placed in the same
+ # directory as a node binary and the server.js file
insinto /opt/stremio
doins build/stremio
- doins "${DISTDIR}"/server.js
+ doins server.js
dosym -r /usr/bin/node /opt/stremio/node
@@ -63,7 +66,3 @@ src_install() {
fperms +x /opt/stremio/stremio
}
-
-pkg_postinst() {
- xdg_pkg_postinst
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/
@ 2024-08-17 17:03 Justin
0 siblings, 0 replies; 9+ messages in thread
From: Justin @ 2024-08-17 17:03 UTC (permalink / raw
To: gentoo-commits
commit: 02408673d450897c0bd1ce34824714aad567908e
Author: Justin Donofrio <justin026 <AT> protonmail <DOT> com>
AuthorDate: Sat Aug 17 16:59:08 2024 +0000
Commit: Justin <justin026 <AT> protonmail <DOT> com>
CommitDate: Sat Aug 17 16:59:08 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=02408673
media-video/stremio: Fix cp error
Signed-off-by: Justin Donofrio <justin026 <AT> protonmail.com>
media-video/stremio/stremio-4.4.168.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/stremio/stremio-4.4.168.ebuild b/media-video/stremio/stremio-4.4.168.ebuild
index 8db1ebe52..f81c711fe 100644
--- a/media-video/stremio/stremio-4.4.168.ebuild
+++ b/media-video/stremio/stremio-4.4.168.ebuild
@@ -42,7 +42,7 @@ src_compile() {
../libmpv \
../chroma || die
- cp "${DISTDIR}"/*server.js server.js || die
+ cp ../../distdir/*server.js server.js || die
eqmake5
emake -f release.makefile
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/
@ 2024-08-17 17:26 Justin
0 siblings, 0 replies; 9+ messages in thread
From: Justin @ 2024-08-17 17:26 UTC (permalink / raw
To: gentoo-commits
commit: fff0fb5146c866d4e701fa375b6a272577d7f460
Author: Justin Donofrio <justin026 <AT> protonmail <DOT> com>
AuthorDate: Sat Aug 17 17:24:02 2024 +0000
Commit: Justin <justin026 <AT> protonmail <DOT> com>
CommitDate: Sat Aug 17 17:24:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fff0fb51
media-video/stremio: fix cp error 2
Sorry for committing this twice
Signed-off-by: Justin Donofrio <justin026 <AT> protonmail.com>
media-video/stremio/stremio-4.4.168.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/stremio/stremio-4.4.168.ebuild b/media-video/stremio/stremio-4.4.168.ebuild
index f81c711fe..1b5e58bc1 100644
--- a/media-video/stremio/stremio-4.4.168.ebuild
+++ b/media-video/stremio/stremio-4.4.168.ebuild
@@ -42,7 +42,7 @@ src_compile() {
../libmpv \
../chroma || die
- cp ../../distdir/*server.js server.js || die
+ cp "${DISTDIR}"/${PV}-server.js server.js || die
eqmake5
emake -f release.makefile
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/
@ 2024-08-20 14:32 Justin
0 siblings, 0 replies; 9+ messages in thread
From: Justin @ 2024-08-20 14:32 UTC (permalink / raw
To: gentoo-commits
commit: 8a344785eb6782d0c22889c57c6330eb1cfdd1cd
Author: Justin Donofrio <justin026 <AT> protonmail <DOT> com>
AuthorDate: Tue Aug 20 14:29:24 2024 +0000
Commit: Justin <justin026 <AT> protonmail <DOT> com>
CommitDate: Tue Aug 20 14:31:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8a344785
media-video/stremio: fix formatting and add qtdbus as a dependency
Closes: https://bugs.gentoo.org/938153
Signed-off-by: Justin Donofrio <justin026 <AT> protonmail.com>
media-video/stremio/Manifest | 8 ++++----
media-video/stremio/stremio-4.4.168.ebuild | 27 +++++++++++++++++++--------
2 files changed, 23 insertions(+), 12 deletions(-)
diff --git a/media-video/stremio/Manifest b/media-video/stremio/Manifest
index f2004657a..5e90510c6 100644
--- a/media-video/stremio/Manifest
+++ b/media-video/stremio/Manifest
@@ -1,5 +1,5 @@
-DIST 4.4.168-libmpv.gh.tar.gz 31116341 BLAKE2B 65116ed2cbe40137fa71339d8c62e2b20816647f16d00aeff0d18ac5fdfa8d70e1211365d87101796d31af7f42510ce87b791b85222cfdca1a4871e534aced30 SHA512 b8c6155b36b67ff274d379accae40b93f4b0bb3e4dadf01b60b2f4c13fa493b297c1b0c525cdc40b1d74edede8e2804e783beb61f9762be394b68eb6e9aee30a
-DIST 4.4.168-razerchroma.gh.tar.gz 20606 BLAKE2B 7764f6f0b9d4f73251f6947dbe3bd7e42f36266e76fe449b600fa57733b1d279cce046c1f7c59b44ec86b7b8caa702011dce424c2071d9722cb0c827edc12ee2 SHA512 e0ace9d6d105f59052b38e475ca7e48ee6e024c850efae54f5e49fe3323399a5e326a8ce69dbd7ff7c9147863a8a4e381daf870534d82e0b259c072c05f6c6d5
+DIST 4.4.168-libmpv.tar.gz 31116341 BLAKE2B 65116ed2cbe40137fa71339d8c62e2b20816647f16d00aeff0d18ac5fdfa8d70e1211365d87101796d31af7f42510ce87b791b85222cfdca1a4871e534aced30 SHA512 b8c6155b36b67ff274d379accae40b93f4b0bb3e4dadf01b60b2f4c13fa493b297c1b0c525cdc40b1d74edede8e2804e783beb61f9762be394b68eb6e9aee30a
+DIST 4.4.168-razerchroma.tar.gz 20606 BLAKE2B 7764f6f0b9d4f73251f6947dbe3bd7e42f36266e76fe449b600fa57733b1d279cce046c1f7c59b44ec86b7b8caa702011dce424c2071d9722cb0c827edc12ee2 SHA512 e0ace9d6d105f59052b38e475ca7e48ee6e024c850efae54f5e49fe3323399a5e326a8ce69dbd7ff7c9147863a8a4e381daf870534d82e0b259c072c05f6c6d5
DIST 4.4.168-server.js 6029535 BLAKE2B 222f8f25d12acf3dae0b861e8fdd01ad29aacb9d46ee381faeb29442eb7f0b21002b6f05f818ed7fc9450e7f22d7afd00c08cf4fd171b7e15949d19d878dee86 SHA512 dbd540c3cf88fd53b36fe424f1fb146cb46c41360d7bf35cdb6ade40d34fb1e93aa33c9b1e3a79ff7a74e6f8202fe3407c9ab28878cfd5a5e373ac5a963fe5c0
-DIST 4.4.168-singleapplication.gh.tar.gz 20630 BLAKE2B 0b5f492f50f13e057ccfdd40a82413ecdaaf9060e6f831bed00c2132b22ac78c37f7b682bd3beef17684637d4db57e5410508e48d31d651ad33b6459d156050d SHA512 df0c877c5513efc0f801e6616f28d03ebb3b53c586005a5ca4b1dfd353f7035da6ede23a90d4bbe0378d24895cfdf8edd36718109b7abebf5b3fef59b39a7da3
-DIST 4.4.168-stremio-shell.gh.tar.gz 126085979 BLAKE2B b6a92b7bb398b4f250d0f4731b339b34135831e954887c75af776ec2b8f18fbd982efd1367984fcd4699adcdb2b64e50c562c02587d501d5b488f36de1be86a9 SHA512 2920e075cc7de7e134960d85e091e3ee7e2ae87a92bac66632e5be99dc3892560a2c6a7cdd05043e56de067768c58d16db7121edca5e345a4ec2ac73491ca2c2
+DIST 4.4.168-singleapplication.tar.gz 20630 BLAKE2B 0b5f492f50f13e057ccfdd40a82413ecdaaf9060e6f831bed00c2132b22ac78c37f7b682bd3beef17684637d4db57e5410508e48d31d651ad33b6459d156050d SHA512 df0c877c5513efc0f801e6616f28d03ebb3b53c586005a5ca4b1dfd353f7035da6ede23a90d4bbe0378d24895cfdf8edd36718109b7abebf5b3fef59b39a7da3
+DIST 4.4.168-stremio-shell.tar.gz 126085979 BLAKE2B b6a92b7bb398b4f250d0f4731b339b34135831e954887c75af776ec2b8f18fbd982efd1367984fcd4699adcdb2b64e50c562c02587d501d5b488f36de1be86a9 SHA512 2920e075cc7de7e134960d85e091e3ee7e2ae87a92bac66632e5be99dc3892560a2c6a7cdd05043e56de067768c58d16db7121edca5e345a4ec2ac73491ca2c2
diff --git a/media-video/stremio/stremio-4.4.168.ebuild b/media-video/stremio/stremio-4.4.168.ebuild
index 1b5e58bc1..32683843e 100644
--- a/media-video/stremio/stremio-4.4.168.ebuild
+++ b/media-video/stremio/stremio-4.4.168.ebuild
@@ -3,15 +3,15 @@
EAPI=8
-inherit desktop qmake-utils xdg
+inherit desktop xdg
DESCRIPTION="Stremio is a modern media center for your video entertainment."
HOMEPAGE="https://github.com/Stremio/stremio-shell/ https://www.stremio.com/"
SRC_URI="
- https://github.com/Stremio/stremio-shell/archive/refs/tags/v${PV}.tar.gz -> ${PV}-stremio-shell.gh.tar.gz
- https://github.com/itay-grudev/SingleApplication/archive/aede311d28d20179216c5419b581087be2a8409f.tar.gz -> ${PV}-singleapplication.gh.tar.gz
- https://github.com/Ivshti/libmpv/archive/b0eae77cf6dc59aaf142b7d079cb13a0904fd3ee.tar.gz -> ${PV}-libmpv.gh.tar.gz
- https://github.com/Ivshti/razerchroma/archive/99045142479ba0e2fc3b9cccb72e348c67cd5829.tar.gz -> ${PV}-razerchroma.gh.tar.gz
+ https://github.com/Stremio/stremio-shell/archive/refs/tags/v${PV}.tar.gz -> ${PV}-stremio-shell.tar.gz
+ https://github.com/itay-grudev/SingleApplication/archive/aede311d28d20179216c5419b581087be2a8409f.tar.gz -> ${PV}-singleapplication.tar.gz
+ https://github.com/Ivshti/libmpv/archive/b0eae77cf6dc59aaf142b7d079cb13a0904fd3ee.tar.gz -> ${PV}-libmpv.tar.gz
+ https://github.com/Ivshti/razerchroma/archive/99045142479ba0e2fc3b9cccb72e348c67cd5829.tar.gz -> ${PV}-razerchroma.tar.gz
https://dl.strem.io/server/v4.20.8/desktop/server.js -> ${PV}-server.js
"
@@ -21,17 +21,25 @@ LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
+RDEPEND="
+ media-video/ffmpeg[network]
+"
+
DEPEND="
+ ${RDEPEND}
+"
+
+BDEPEND="
gnome-base/librsvg
+ dev-qt/qtbase[dbus]
dev-qt/qtquickcontrols
dev-qt/qtopengl
dev-qt/qtwebengine:5
- media-video/ffmpeg[network]
media-video/mpv
net-libs/nodejs[ssl]
"
-src_compile() {
+src_prepare() {
# Move dependencies to build dir
mv ../SingleApplication* ../singleapplication || die
mv ../libmpv* ../libmpv || die
@@ -44,7 +52,10 @@ src_compile() {
cp "${DISTDIR}"/${PV}-server.js server.js || die
- eqmake5
+ default
+}
+
+src_compile() {
emake -f release.makefile
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/
@ 2024-08-24 21:40 Justin
0 siblings, 0 replies; 9+ messages in thread
From: Justin @ 2024-08-24 21:40 UTC (permalink / raw
To: gentoo-commits
commit: dcd4359b143e58689ca584a2ccd2d275fab1392c
Author: Justin Donofrio <justin026 <AT> protonmail <DOT> com>
AuthorDate: Sat Aug 24 21:39:10 2024 +0000
Commit: Justin <justin026 <AT> protonmail <DOT> com>
CommitDate: Sat Aug 24 21:39:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dcd4359b
media-video/stremio: update SRC_URI and dependencies
Closes: https://bugs.gentoo.org/938287
Signed-off-by: Justin Donofrio <justin026 <AT> protonmail.com>
media-video/stremio/Manifest | 10 +++++-----
media-video/stremio/stremio-4.4.168.ebuild | 23 ++++++++++-------------
2 files changed, 15 insertions(+), 18 deletions(-)
diff --git a/media-video/stremio/Manifest b/media-video/stremio/Manifest
index 5e90510c6..b34b5ae57 100644
--- a/media-video/stremio/Manifest
+++ b/media-video/stremio/Manifest
@@ -1,5 +1,5 @@
-DIST 4.4.168-libmpv.tar.gz 31116341 BLAKE2B 65116ed2cbe40137fa71339d8c62e2b20816647f16d00aeff0d18ac5fdfa8d70e1211365d87101796d31af7f42510ce87b791b85222cfdca1a4871e534aced30 SHA512 b8c6155b36b67ff274d379accae40b93f4b0bb3e4dadf01b60b2f4c13fa493b297c1b0c525cdc40b1d74edede8e2804e783beb61f9762be394b68eb6e9aee30a
-DIST 4.4.168-razerchroma.tar.gz 20606 BLAKE2B 7764f6f0b9d4f73251f6947dbe3bd7e42f36266e76fe449b600fa57733b1d279cce046c1f7c59b44ec86b7b8caa702011dce424c2071d9722cb0c827edc12ee2 SHA512 e0ace9d6d105f59052b38e475ca7e48ee6e024c850efae54f5e49fe3323399a5e326a8ce69dbd7ff7c9147863a8a4e381daf870534d82e0b259c072c05f6c6d5
-DIST 4.4.168-server.js 6029535 BLAKE2B 222f8f25d12acf3dae0b861e8fdd01ad29aacb9d46ee381faeb29442eb7f0b21002b6f05f818ed7fc9450e7f22d7afd00c08cf4fd171b7e15949d19d878dee86 SHA512 dbd540c3cf88fd53b36fe424f1fb146cb46c41360d7bf35cdb6ade40d34fb1e93aa33c9b1e3a79ff7a74e6f8202fe3407c9ab28878cfd5a5e373ac5a963fe5c0
-DIST 4.4.168-singleapplication.tar.gz 20630 BLAKE2B 0b5f492f50f13e057ccfdd40a82413ecdaaf9060e6f831bed00c2132b22ac78c37f7b682bd3beef17684637d4db57e5410508e48d31d651ad33b6459d156050d SHA512 df0c877c5513efc0f801e6616f28d03ebb3b53c586005a5ca4b1dfd353f7035da6ede23a90d4bbe0378d24895cfdf8edd36718109b7abebf5b3fef59b39a7da3
-DIST 4.4.168-stremio-shell.tar.gz 126085979 BLAKE2B b6a92b7bb398b4f250d0f4731b339b34135831e954887c75af776ec2b8f18fbd982efd1367984fcd4699adcdb2b64e50c562c02587d501d5b488f36de1be86a9 SHA512 2920e075cc7de7e134960d85e091e3ee7e2ae87a92bac66632e5be99dc3892560a2c6a7cdd05043e56de067768c58d16db7121edca5e345a4ec2ac73491ca2c2
+DIST stremio-4.4.168-libmpv.tar.gz 31116341 BLAKE2B 65116ed2cbe40137fa71339d8c62e2b20816647f16d00aeff0d18ac5fdfa8d70e1211365d87101796d31af7f42510ce87b791b85222cfdca1a4871e534aced30 SHA512 b8c6155b36b67ff274d379accae40b93f4b0bb3e4dadf01b60b2f4c13fa493b297c1b0c525cdc40b1d74edede8e2804e783beb61f9762be394b68eb6e9aee30a
+DIST stremio-4.4.168-razerchroma.tar.gz 20606 BLAKE2B 7764f6f0b9d4f73251f6947dbe3bd7e42f36266e76fe449b600fa57733b1d279cce046c1f7c59b44ec86b7b8caa702011dce424c2071d9722cb0c827edc12ee2 SHA512 e0ace9d6d105f59052b38e475ca7e48ee6e024c850efae54f5e49fe3323399a5e326a8ce69dbd7ff7c9147863a8a4e381daf870534d82e0b259c072c05f6c6d5
+DIST stremio-4.4.168-server.js 6029535 BLAKE2B 222f8f25d12acf3dae0b861e8fdd01ad29aacb9d46ee381faeb29442eb7f0b21002b6f05f818ed7fc9450e7f22d7afd00c08cf4fd171b7e15949d19d878dee86 SHA512 dbd540c3cf88fd53b36fe424f1fb146cb46c41360d7bf35cdb6ade40d34fb1e93aa33c9b1e3a79ff7a74e6f8202fe3407c9ab28878cfd5a5e373ac5a963fe5c0
+DIST stremio-4.4.168-singleapplication.tar.gz 20630 BLAKE2B 0b5f492f50f13e057ccfdd40a82413ecdaaf9060e6f831bed00c2132b22ac78c37f7b682bd3beef17684637d4db57e5410508e48d31d651ad33b6459d156050d SHA512 df0c877c5513efc0f801e6616f28d03ebb3b53c586005a5ca4b1dfd353f7035da6ede23a90d4bbe0378d24895cfdf8edd36718109b7abebf5b3fef59b39a7da3
+DIST stremio-4.4.168.tar.gz 126085979 BLAKE2B b6a92b7bb398b4f250d0f4731b339b34135831e954887c75af776ec2b8f18fbd982efd1367984fcd4699adcdb2b64e50c562c02587d501d5b488f36de1be86a9 SHA512 2920e075cc7de7e134960d85e091e3ee7e2ae87a92bac66632e5be99dc3892560a2c6a7cdd05043e56de067768c58d16db7121edca5e345a4ec2ac73491ca2c2
diff --git a/media-video/stremio/stremio-4.4.168.ebuild b/media-video/stremio/stremio-4.4.168.ebuild
index 32683843e..4c0e5da4a 100644
--- a/media-video/stremio/stremio-4.4.168.ebuild
+++ b/media-video/stremio/stremio-4.4.168.ebuild
@@ -8,11 +8,11 @@ inherit desktop xdg
DESCRIPTION="Stremio is a modern media center for your video entertainment."
HOMEPAGE="https://github.com/Stremio/stremio-shell/ https://www.stremio.com/"
SRC_URI="
- https://github.com/Stremio/stremio-shell/archive/refs/tags/v${PV}.tar.gz -> ${PV}-stremio-shell.tar.gz
- https://github.com/itay-grudev/SingleApplication/archive/aede311d28d20179216c5419b581087be2a8409f.tar.gz -> ${PV}-singleapplication.tar.gz
- https://github.com/Ivshti/libmpv/archive/b0eae77cf6dc59aaf142b7d079cb13a0904fd3ee.tar.gz -> ${PV}-libmpv.tar.gz
- https://github.com/Ivshti/razerchroma/archive/99045142479ba0e2fc3b9cccb72e348c67cd5829.tar.gz -> ${PV}-razerchroma.tar.gz
- https://dl.strem.io/server/v4.20.8/desktop/server.js -> ${PV}-server.js
+ https://github.com/Stremio/stremio-shell/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+ https://github.com/itay-grudev/SingleApplication/archive/aede311d28d20179216c5419b581087be2a8409f.tar.gz -> ${P}-singleapplication.tar.gz
+ https://github.com/Ivshti/libmpv/archive/b0eae77cf6dc59aaf142b7d079cb13a0904fd3ee.tar.gz -> ${P}-libmpv.tar.gz
+ https://github.com/Ivshti/razerchroma/archive/99045142479ba0e2fc3b9cccb72e348c67cd5829.tar.gz -> ${P}-razerchroma.tar.gz
+ https://dl.strem.io/server/v4.20.8/desktop/server.js -> ${P}-server.js
"
S="${WORKDIR}/${PN}-shell-${PV}"
@@ -26,14 +26,11 @@ RDEPEND="
"
DEPEND="
- ${RDEPEND}
-"
-
-BDEPEND="
gnome-base/librsvg
- dev-qt/qtbase[dbus]
- dev-qt/qtquickcontrols
- dev-qt/qtopengl
+ dev-qt/qtbase
+ dev-qt/qtdbus:5
+ dev-qt/qtquickcontrols:5
+ dev-qt/qtopengl:5
dev-qt/qtwebengine:5
media-video/mpv
net-libs/nodejs[ssl]
@@ -50,7 +47,7 @@ src_prepare() {
../libmpv \
../chroma || die
- cp "${DISTDIR}"/${PV}-server.js server.js || die
+ cp "${DISTDIR}"/${P}-server.js server.js || die
default
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-08-24 21:40 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-17 17:03 [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/ Justin
-- strict thread matches above, loose matches on Subject: below --
2024-08-24 21:40 Justin
2024-08-20 14:32 Justin
2024-08-17 17:26 Justin
2024-08-17 16:56 Justin
2024-08-17 1:37 Justin
2024-08-17 1:36 Justin
2024-08-15 4:11 Justin
2024-08-15 3:10 Justin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox