public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mikle Kolyada" <zlogene@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/syncplay/
Date: Mon, 27 Apr 2020 08:03:37 +0000 (UTC)	[thread overview]
Message-ID: <1587974557.5b7011e354c1d8507ef909f6dba6075c861e3bb5.zlogene@gentoo> (raw)

commit:     5b7011e354c1d8507ef909f6dba6075c861e3bb5
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 27 08:02:37 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Apr 27 08:02:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b7011e3

media-video/syncplay: remove last-rited pkg

Closes: https://bugs.gentoo.org/710240

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 media-video/syncplay/Manifest              |  2 --
 media-video/syncplay/metadata.xml          | 13 -------
 media-video/syncplay/syncplay-1.5.0.ebuild | 54 ------------------------------
 media-video/syncplay/syncplay-1.5.1.ebuild | 52 ----------------------------
 media-video/syncplay/syncplay-9999.ebuild  | 53 -----------------------------
 5 files changed, 174 deletions(-)

diff --git a/media-video/syncplay/Manifest b/media-video/syncplay/Manifest
deleted file mode 100644
index 793278dbb8b..00000000000
--- 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 7c4c9284a32..00000000000
--- 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 2300d465955..00000000000
--- 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 57714f0b4fa..00000000000
--- 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 d1c1f6fabbb..00000000000
--- 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
-}


             reply	other threads:[~2020-04-27  8:03 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-27  8:03 Mikle Kolyada [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-03-26 17:36 [gentoo-commits] repo/gentoo:master commit in: media-video/syncplay/ Michał Górny
2018-08-26 11:51 Michał Górny
2018-05-20  0:16 Aaron Bauman
2018-04-23 14:50 Aaron Bauman
2018-01-30 22:19 Patrice Clement
2018-01-30 22:19 Patrice Clement
2017-11-22 23:07 Patrice Clement
2017-11-20 14:11 Manuel Rüger
2017-10-26 18:54 Thomas Deutschmann
2017-05-30 21:25 Patrice Clement

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1587974557.5b7011e354c1d8507ef909f6dba6075c861e3bb5.zlogene@gentoo \
    --to=zlogene@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox