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 4179C139694 for ; Mon, 10 Jul 2017 00:17:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 686FC2340B3; Mon, 10 Jul 2017 00:17:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43A472340A9 for ; Mon, 10 Jul 2017 00:17:53 +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 40659341BF8 for ; Mon, 10 Jul 2017 00:17:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4B9474AC for ; Mon, 10 Jul 2017 00:17:50 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1499645801.220b40fb409ad227d0fc4a3b3d5d804d8b7bdd3d.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/gns3-gui/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/gns3-gui/gns3-gui-2.0.3.ebuild X-VCS-Directories: net-misc/gns3-gui/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 220b40fb409ad227d0fc4a3b3d5d804d8b7bdd3d X-VCS-Branch: master Date: Mon, 10 Jul 2017 00:17:50 +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: ca4018af-d2a4-4115-9aff-fcc6d30f6843 X-Archives-Hash: ae3f5f81cba2f7d6b5c3ab18f3934269 commit: 220b40fb409ad227d0fc4a3b3d5d804d8b7bdd3d Author: Aaron Bauman gentoo org> AuthorDate: Tue Jul 4 13:57:40 2017 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Mon Jul 10 00:16:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=220b40fb net-misc/gns3-gui: Add test comments, fix absolute paths, and remove unneeded dependencies Closes: https://github.com/gentoo/gentoo/pull/5007 net-misc/gns3-gui/gns3-gui-2.0.3.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/net-misc/gns3-gui/gns3-gui-2.0.3.ebuild b/net-misc/gns3-gui/gns3-gui-2.0.3.ebuild index ea2a02c0475..95f4a1dd6fc 100644 --- a/net-misc/gns3-gui/gns3-gui-2.0.3.ebuild +++ b/net-misc/gns3-gui/gns3-gui-2.0.3.ebuild @@ -14,6 +14,7 @@ SRC_URI="https://github.com/GNS3/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" +# tests are severely broken upstream and they have been notified RESTRICT="test" #net-misc/gns3-server version should always match gns3-gui version @@ -24,8 +25,6 @@ RDEPEND=" >=dev-python/requests-2.6.0[${PYTHON_USEDEP}] >=dev-python/paramiko-1.15.1[${PYTHON_USEDEP}] =net-misc/gns3-server-$PVR[${PYTHON_USEDEP}] - dev-qt/qtgui:5 - dev-qt/qtsvg:5 dev-python/PyQt5[gui,network,svg,widgets,${PYTHON_USEDEP}] " DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" @@ -38,6 +37,6 @@ src_prepare() { python_install_all() { distutils-r1_python_install_all - doicon "${WORKDIR}/${P}/resources/images/gns3.ico" - make_desktop_entry "gns3" "GNS3" "/usr/share/pixmaps/gns3.ico" "Utility" + doicon gns3.ico + make_desktop_entry "gns3" "GNS3" "gns3.ico" "Utility" }