summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2020-04-27 11:02:37 +0300
committerMikle Kolyada <zlogene@gentoo.org>2020-04-27 11:02:37 +0300
commit5b7011e354c1d8507ef909f6dba6075c861e3bb5 (patch)
tree02f392f24c3027c9340f49ffb81d84becfcf9ca7 /media-video
parentdev-python/nevow: remove last-rited pkg (diff)
downloadgentoo-5b7011e354c1d8507ef909f6dba6075c861e3bb5.tar.gz
gentoo-5b7011e354c1d8507ef909f6dba6075c861e3bb5.tar.bz2
gentoo-5b7011e354c1d8507ef909f6dba6075c861e3bb5.zip
media-video/syncplay: remove last-rited pkg
Closes: https://bugs.gentoo.org/710240 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r--media-video/syncplay/Manifest2
-rw-r--r--media-video/syncplay/metadata.xml13
-rw-r--r--media-video/syncplay/syncplay-1.5.0.ebuild54
-rw-r--r--media-video/syncplay/syncplay-1.5.1.ebuild52
-rw-r--r--media-video/syncplay/syncplay-9999.ebuild53
5 files changed, 0 insertions, 174 deletions
diff --git a/media-video/syncplay/Manifest b/media-video/syncplay/Manifest
deleted file mode 100644
index 793278dbb8b4..000000000000
--- a/media-video/syncplay/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST syncplay-1.5.0.tar.gz 1588514 BLAKE2B 0f2bddf3500758c3081bdba993b21fe60a0d3af7081c5edd0f684e1d60a2a95edce133a597e79747350e681dd40768226226f0b26e295850a8c218107b1da3e9 SHA512 8a57add8a845c041c02147415fc4b7941a41edfb80fc037c3af4e246d9ca6391be9f3886407470b1b51b8783ad6306e42bb34991e7cbb08eea87e781e3cd2200
-DIST syncplay-1.5.1.tar.gz 1603524 BLAKE2B 0d7edb0c2129f67ce457cffb57f5600d0c0d6bee017119efc866d748f63e6e984becd21f88324e19dcac3f0ce52e2e2f1bf65326aab6237ea41b04bdecf26334 SHA512 8d7f99132b49148003dcdc83b5afc3158ebd7ad0b8a161229f8f576e7683e3c432d09793db071239e6344490f6e08d01c9061a32556b5bce6dcd68823b47a0cf
diff --git a/media-video/syncplay/metadata.xml b/media-video/syncplay/metadata.xml
deleted file mode 100644
index 7c4c9284a32e..000000000000
--- a/media-video/syncplay/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="github">Syncplay/syncplay</remote-id>
- </upstream>
- <use>
- <flag name="client">Install Syncplay client</flag>
- <flag name="server">Install Syncplay server</flag>
- <flag name="vlc">Enable VLC2.x support</flag>
- </use>
-</pkgmetadata>
diff --git a/media-video/syncplay/syncplay-1.5.0.ebuild b/media-video/syncplay/syncplay-1.5.0.ebuild
deleted file mode 100644
index 2300d465955e..000000000000
--- a/media-video/syncplay/syncplay-1.5.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-r1
-
-MY_PV=${PV/_rc/-RC}
-
-DESCRIPTION="Client/server to synchronize media playback"
-HOMEPAGE="https://syncplay.pl"
-SRC_URI="https://github.com/Syncplay/syncplay/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE="+client +server vlc"
-REQUIRED_USE="vlc? ( client )
- ${PYTHON_REQUIRED_USE}"
-
-DEPEND=""
-RDEPEND="${PYTHON_DEPS}
- >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
- vlc? ( media-video/vlc[lua] )"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-src_prepare() {
- default
- sed -i 's/"noGui": False,/"noGui": True,/' \
- syncplay/ui/ConfigurationGetter.py \
- || die "Failed to patch ConfigurationGetter.py"
-}
-
-src_compile() {
- :
-}
-
-src_install() {
- local MY_MAKEOPTS=( DESTDIR="${D}" PREFIX=/usr )
- use client && \
- emake "${MY_MAKEOPTS[@]}" VLC_SUPPORT=$(usex vlc true false) install-client
- use server && \
- emake "${MY_MAKEOPTS[@]}" install-server
-}
-
-pkg_postinst() {
- if use client; then
- einfo "Syncplay supports the following players:"
- einfo "media-video/mpv, media-video/mplayer2, media-video/vlc"
- fi
-}
diff --git a/media-video/syncplay/syncplay-1.5.1.ebuild b/media-video/syncplay/syncplay-1.5.1.ebuild
deleted file mode 100644
index 57714f0b4faf..000000000000
--- a/media-video/syncplay/syncplay-1.5.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-r1
-
-DESCRIPTION="Client/server to synchronize media playback"
-HOMEPAGE="https://syncplay.pl"
-SRC_URI="https://github.com/Syncplay/syncplay/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 x86"
-IUSE="+client +server vlc"
-REQUIRED_USE="vlc? ( client )
- ${PYTHON_REQUIRED_USE}"
-
-DEPEND=""
-# TODO: investigate the possibility of enabling PyQt5 gui
-# possible licensing concerns
-RDEPEND="${PYTHON_DEPS}
- >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
- vlc? ( media-video/vlc[lua] )"
-
-src_prepare() {
- default
- sed -i 's/"noGui": False,/"noGui": True,/' \
- syncplay/ui/ConfigurationGetter.py \
- || die "Failed to patch ConfigurationGetter.py"
-}
-
-src_compile() {
- :
-}
-
-src_install() {
- local MY_MAKEOPTS=( DESTDIR="${D}" PREFIX=/usr )
- use client && \
- emake "${MY_MAKEOPTS[@]}" VLC_SUPPORT=$(usex vlc true false) install-client
- use server && \
- emake "${MY_MAKEOPTS[@]}" install-server
-}
-
-pkg_postinst() {
- if use client; then
- einfo "Syncplay supports the following players:"
- einfo "media-video/mpv, media-video/mplayer2, media-video/vlc"
- fi
-}
diff --git a/media-video/syncplay/syncplay-9999.ebuild b/media-video/syncplay/syncplay-9999.ebuild
deleted file mode 100644
index d1c1f6fabbbd..000000000000
--- a/media-video/syncplay/syncplay-9999.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit git-r3 python-r1
-
-MY_PV=${PV/_rc/-RC}
-
-DESCRIPTION="Client/server to synchronize media playback"
-HOMEPAGE="https://syncplay.pl"
-EGIT_REPO_URI="https://github.com/Syncplay/${PN}.git"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="+client +server vlc"
-REQUIRED_USE="vlc? ( client )
- ${PYTHON_REQUIRED_USE}"
-
-DEPEND=""
-RDEPEND="${PYTHON_DEPS}
- >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
- vlc? ( media-video/vlc[lua] )"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-src_prepare() {
- default
- sed -i 's/"noGui": False,/"noGui": True,/' \
- syncplay/ui/ConfigurationGetter.py \
- || die "Failed to patch ConfigurationGetter.py"
-}
-
-src_compile() {
- :
-}
-
-src_install() {
- local MY_MAKEOPTS=( DESTDIR="${D}" PREFIX=/usr )
- use client && \
- emake "${MY_MAKEOPTS[@]}" VLC_SUPPORT=$(usex vlc true false) install-client
- use server && \
- emake "${MY_MAKEOPTS[@]}" install-server
-}
-
-pkg_postinst() {
- if use client; then
- einfo "Syncplay supports the following players:"
- einfo "media-video/mpv, media-video/mplayer2, media-video/vlc"
- fi
-}