public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/syncplay/
Date: Sun, 26 Aug 2018 11:51:10 +0000 (UTC)	[thread overview]
Message-ID: <1535284261.f54579a56fa32b52196191254538ae7a2a31a429.mgorny@gentoo> (raw)

commit:     f54579a56fa32b52196191254538ae7a2a31a429
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 26 11:36:52 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug 26 11:51:01 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f54579a5

media-video/syncplay: Remove support for non-existent deps

 media-video/syncplay/metadata.xml          |  1 -
 media-video/syncplay/syncplay-1.5.0.ebuild | 10 +++-------
 media-video/syncplay/syncplay-1.5.1.ebuild | 10 +++-------
 media-video/syncplay/syncplay-9999.ebuild  | 10 +++-------
 4 files changed, 9 insertions(+), 22 deletions(-)

diff --git a/media-video/syncplay/metadata.xml b/media-video/syncplay/metadata.xml
index 1ad1d49790c..9fa7c960908 100644
--- a/media-video/syncplay/metadata.xml
+++ b/media-video/syncplay/metadata.xml
@@ -15,7 +15,6 @@
 	<use>
 		<flag name="client">Install Syncplay client</flag>
 		<flag name="server">Install Syncplay server</flag>
-		<flag name="gui">Enable gui support</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
index 82e3ec8bd45..88c576cffbd 100644
--- a/media-video/syncplay/syncplay-1.5.0.ebuild
+++ b/media-video/syncplay/syncplay-1.5.0.ebuild
@@ -16,9 +16,8 @@ SRC_URI="https://github.com/Syncplay/syncplay/archive/v${MY_PV}.tar.gz -> ${P}.t
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 x86"
-IUSE="+client +server gui vlc"
+IUSE="+client +server vlc"
 REQUIRED_USE="vlc? ( client )
-	gui? ( client )
 	${PYTHON_REQUIRED_USE}"
 
 DEPEND=""
@@ -27,18 +26,15 @@ RDEPEND="${PYTHON_DEPS}
 		>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
 		dev-python/twisted-core[${PYTHON_USEDEP}]
 	)
-	gui? ( dev-python/pyside[${PYTHON_USEDEP}] )
 	vlc? ( media-video/vlc[lua] )"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 
 src_prepare() {
 	default
-	if ! use gui; then
-		sed -i 's/"noGui": False,/"noGui": True,/' \
-			syncplay/ui/ConfigurationGetter.py \
+	sed -i 's/"noGui": False,/"noGui": True,/' \
+		syncplay/ui/ConfigurationGetter.py \
 		|| die "Failed to patch ConfigurationGetter.py"
-	fi
 }
 
 src_compile() {

diff --git a/media-video/syncplay/syncplay-1.5.1.ebuild b/media-video/syncplay/syncplay-1.5.1.ebuild
index 908f6042f4a..55904564d23 100644
--- a/media-video/syncplay/syncplay-1.5.1.ebuild
+++ b/media-video/syncplay/syncplay-1.5.1.ebuild
@@ -14,9 +14,8 @@ SRC_URI="https://github.com/Syncplay/syncplay/archive/v${PV}.tar.gz -> ${P}.tar.
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc64 x86"
-IUSE="+client +server gui vlc"
+IUSE="+client +server vlc"
 REQUIRED_USE="vlc? ( client )
-	gui? ( client )
 	${PYTHON_REQUIRED_USE}"
 
 DEPEND=""
@@ -27,16 +26,13 @@ RDEPEND="${PYTHON_DEPS}
 		>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
 		dev-python/twisted-core[${PYTHON_USEDEP}]
 	)
-	gui? ( dev-python/pyside[${PYTHON_USEDEP}] )
 	vlc? ( media-video/vlc[lua] )"
 
 src_prepare() {
 	default
-	if ! use gui; then
-		sed -i 's/"noGui": False,/"noGui": True,/' \
-			syncplay/ui/ConfigurationGetter.py \
+	sed -i 's/"noGui": False,/"noGui": True,/' \
+		syncplay/ui/ConfigurationGetter.py \
 		|| die "Failed to patch ConfigurationGetter.py"
-	fi
 }
 
 src_compile() {

diff --git a/media-video/syncplay/syncplay-9999.ebuild b/media-video/syncplay/syncplay-9999.ebuild
index fd8e3170c71..ed87eb7ddfe 100644
--- a/media-video/syncplay/syncplay-9999.ebuild
+++ b/media-video/syncplay/syncplay-9999.ebuild
@@ -15,9 +15,8 @@ EGIT_REPO_URI="https://github.com/Syncplay/${PN}.git"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="+client +server gui vlc"
+IUSE="+client +server vlc"
 REQUIRED_USE="vlc? ( client )
-	gui? ( client )
 	${PYTHON_REQUIRED_USE}"
 
 DEPEND=""
@@ -26,18 +25,15 @@ RDEPEND="${PYTHON_DEPS}
 		>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
 		dev-python/twisted-core[${PYTHON_USEDEP}]
 	)
-	gui? ( dev-python/pyside[${PYTHON_USEDEP}] )
 	vlc? ( media-video/vlc[lua] )"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 
 src_prepare() {
 	default
-	if ! use gui; then
-		sed -i 's/"noGui": False,/"noGui": True,/' \
-			syncplay/ui/ConfigurationGetter.py \
+	sed -i 's/"noGui": False,/"noGui": True,/' \
+		syncplay/ui/ConfigurationGetter.py \
 		|| die "Failed to patch ConfigurationGetter.py"
-	fi
 }
 
 src_compile() {


             reply	other threads:[~2018-08-26 11:51 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-26 11:51 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-04-27  8:03 [gentoo-commits] repo/gentoo:master commit in: media-video/syncplay/ Mikle Kolyada
2020-03-26 17:36 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=1535284261.f54579a56fa32b52196191254538ae7a2a31a429.mgorny@gentoo \
    --to=mgorny@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