From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A837E15852A for ; Sat, 17 Aug 2024 01:37:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B624F2BC02F; Sat, 17 Aug 2024 01:37:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76FEB2BC02F for ; Sat, 17 Aug 2024 01:37:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 47E1733BDF0 for ; Sat, 17 Aug 2024 01:37:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83ACA15BB for ; Sat, 17 Aug 2024 01:37:43 +0000 (UTC) From: "Justin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin" Message-ID: <1723858638.1a8e96a6b1b73eed29e9227d57188164401653c9.justin026@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-video/stremio/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-video/stremio/stremio-4.4.164.ebuild X-VCS-Directories: media-video/stremio/ X-VCS-Committer: justin026 X-VCS-Committer-Name: Justin X-VCS-Revision: 1a8e96a6b1b73eed29e9227d57188164401653c9 X-VCS-Branch: dev Date: Sat, 17 Aug 2024 01:37:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 63fff44c-342f-4896-a244-db0946644f3f X-Archives-Hash: 537208d9833429e6fce45e8150506d68 commit: 1a8e96a6b1b73eed29e9227d57188164401653c9 Author: Justin Donofrio protonmail com> AuthorDate: Sat Aug 17 01:37:18 2024 +0000 Commit: Justin protonmail 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 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 -}