Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/gns3-gui/
Date: Mon, 10 Jul 2017 00:17:54
Message-Id: 1499645801.220b40fb409ad227d0fc4a3b3d5d804d8b7bdd3d.bman@gentoo
1 commit: 220b40fb409ad227d0fc4a3b3d5d804d8b7bdd3d
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 4 13:57:40 2017 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 10 00:16:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=220b40fb
7
8 net-misc/gns3-gui: Add test comments, fix absolute paths, and remove unneeded dependencies
9
10 Closes: https://github.com/gentoo/gentoo/pull/5007
11
12 net-misc/gns3-gui/gns3-gui-2.0.3.ebuild | 7 +++----
13 1 file changed, 3 insertions(+), 4 deletions(-)
14
15 diff --git a/net-misc/gns3-gui/gns3-gui-2.0.3.ebuild b/net-misc/gns3-gui/gns3-gui-2.0.3.ebuild
16 index ea2a02c0475..95f4a1dd6fc 100644
17 --- a/net-misc/gns3-gui/gns3-gui-2.0.3.ebuild
18 +++ b/net-misc/gns3-gui/gns3-gui-2.0.3.ebuild
19 @@ -14,6 +14,7 @@ SRC_URI="https://github.com/GNS3/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
20 LICENSE="GPL-3"
21 SLOT="0"
22 KEYWORDS="~amd64"
23 +# tests are severely broken upstream and they have been notified
24 RESTRICT="test"
25
26 #net-misc/gns3-server version should always match gns3-gui version
27 @@ -24,8 +25,6 @@ RDEPEND="
28 >=dev-python/requests-2.6.0[${PYTHON_USEDEP}]
29 >=dev-python/paramiko-1.15.1[${PYTHON_USEDEP}]
30 =net-misc/gns3-server-$PVR[${PYTHON_USEDEP}]
31 - dev-qt/qtgui:5
32 - dev-qt/qtsvg:5
33 dev-python/PyQt5[gui,network,svg,widgets,${PYTHON_USEDEP}]
34 "
35 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
36 @@ -38,6 +37,6 @@ src_prepare() {
37 python_install_all() {
38 distutils-r1_python_install_all
39
40 - doicon "${WORKDIR}/${P}/resources/images/gns3.ico"
41 - make_desktop_entry "gns3" "GNS3" "/usr/share/pixmaps/gns3.ico" "Utility"
42 + doicon gns3.ico
43 + make_desktop_entry "gns3" "GNS3" "gns3.ico" "Utility"
44 }