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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A1A25138334 for ; Sun, 26 Aug 2018 11:51:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3816E08ED; Sun, 26 Aug 2018 11:51:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66587E08ED for ; Sun, 26 Aug 2018 11:51:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B4DA335CC0 for ; Sun, 26 Aug 2018 11:51:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 375D53BC for ; Sun, 26 Aug 2018 11:51:10 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1535284261.f54579a56fa32b52196191254538ae7a2a31a429.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/syncplay/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/syncplay/metadata.xml media-video/syncplay/syncplay-1.5.0.ebuild media-video/syncplay/syncplay-1.5.1.ebuild media-video/syncplay/syncplay-9999.ebuild X-VCS-Directories: media-video/syncplay/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f54579a56fa32b52196191254538ae7a2a31a429 X-VCS-Branch: master Date: Sun, 26 Aug 2018 11:51:10 +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-Archives-Salt: bc680064-a6f5-49e8-a81f-68041139557b X-Archives-Hash: e406ecc44676e739a67622d5f5bba077 commit: f54579a56fa32b52196191254538ae7a2a31a429 Author: Michał Górny gentoo org> AuthorDate: Sun Aug 26 11:36:52 2018 +0000 Commit: Michał Górny gentoo 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 @@ Install Syncplay client Install Syncplay server - Enable gui support Enable VLC2.x support 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() {