summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-05-17 12:37:41 +0100
committerSam James <sam@gentoo.org>2021-05-17 21:09:10 +0000
commit1b651e42d64613eee8b80d7d349079cb0013b671 (patch)
tree2f1e67355f19ac8ca8d921f6e833d76703c40396 /media-video
parentapp-admin/lastpass-cli: Remove last-rited pkg (diff)
downloadgentoo-1b651e42d64613eee8b80d7d349079cb0013b671.tar.gz
gentoo-1b651e42d64613eee8b80d7d349079cb0013b671.tar.bz2
gentoo-1b651e42d64613eee8b80d7d349079cb0013b671.zip
media-video/orion: Remove last-rited pkg
Closes: https://bugs.gentoo.org/782601 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r--media-video/orion/Manifest1
-rw-r--r--media-video/orion/metadata.xml16
-rw-r--r--media-video/orion/orion-1.6.7.ebuild47
3 files changed, 0 insertions, 64 deletions
diff --git a/media-video/orion/Manifest b/media-video/orion/Manifest
deleted file mode 100644
index 38bc6c5c4cb7..000000000000
--- a/media-video/orion/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST orion-1.6.7.tar.gz 644899 BLAKE2B 7aa188bc5eaf1f1781735416152a9324a2945f10b2c1ccd55fa5a2b557c31e4bdad55d282c4efc0552dbf998db7193bc19ec0679034ec53cbd97f688b572f74c SHA512 dc4c4d364423cae52f95c4ad2d241e311d6947066c2a7b02b5754df2b69a7bb7aeed54d4515afe31b4437b8e47057e939e9444e7812ca0125ba3a8c65678d3d0
diff --git a/media-video/orion/metadata.xml b/media-video/orion/metadata.xml
deleted file mode 100644
index 6c00b2de8dd7..000000000000
--- a/media-video/orion/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>voyageur@gentoo.org</email>
- <name>Bernard Cafarelli</name>
- </maintainer>
- <use>
- <flag name="mpv">Use the <pkg>media-video/mpv</pkg> player (upstream default)</flag>
- <flag name="qtav">Use the <pkg>media-libs/qtav</pkg> player</flag>
- <flag name="qtmedia">Use the <pkg>dev-qt/qtmultimedia</pkg></flag>
- </use>
- <upstream>
- <remote-id type="github">alamminsalo/orion</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/media-video/orion/orion-1.6.7.ebuild b/media-video/orion/orion-1.6.7.ebuild
deleted file mode 100644
index 095b3c005cf1..000000000000
--- a/media-video/orion/orion-1.6.7.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit desktop qmake-utils xdg
-
-DESCRIPTION="Cross-platform Twitch client"
-HOMEPAGE="https://alamminsalo.github.io/orion/"
-SRC_URI="https://github.com/alamminsalo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+mpv qtav qtmedia"
-
-DEPEND=">=dev-qt/qtdbus-5.8:5
- >=dev-qt/qtquickcontrols-5.8:5
- >=dev-qt/qtquickcontrols2-5.8:5
- >=dev-qt/qtsvg-5.8:5
- >=dev-qt/qtwebengine-5.8:5
- mpv? ( media-video/mpv[libmpv] )
- qtav? ( media-libs/qtav )
- qtmedia? ( >=dev-qt/qtmultimedia-5.8:5 )"
-RDEPEND="${DEPEND}
- !mpv? ( media-plugins/gst-plugins-hls )"
-
-REQUIRED_USE="^^ ( mpv qtav qtmedia )"
-
-src_configure() {
- local PLAYER
- if use mpv; then
- PLAYER=mpv
- elif use qtav; then
- PLAYER=qtav
- else
- PLAYER=multimedia
- fi
- eqmake5 ${PN}.pro CONFIG+=${PLAYER}
-}
-
-src_install() {
- dobin ${PN}
- domenu distfiles/*.desktop
-
- insinto /usr/share/icons/hicolor/scalable/apps
- doins distfiles/${PN}.svg
-}