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 CD2E0138E10 for ; Sun, 16 Oct 2016 06:44:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1ABFEE0944; Sun, 16 Oct 2016 06:44:32 +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 F3630E0944 for ; Sun, 16 Oct 2016 06:44:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A67993411FB for ; Sun, 16 Oct 2016 06:44:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63C26300 for ; Sun, 16 Oct 2016 06:44:28 +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: <1476600166.e56aacc3cda3ade85659bb8ddad71989a16e828e.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-1.5.2-r1.ebuild X-VCS-Directories: net-misc/gns3-gui/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: e56aacc3cda3ade85659bb8ddad71989a16e828e X-VCS-Branch: master Date: Sun, 16 Oct 2016 06:44:28 +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: 0fe9b542-ff47-4f4e-89e7-25f89f510bd9 X-Archives-Hash: 4b5bb645ddcd400685968d23387a9d60 commit: e56aacc3cda3ade85659bb8ddad71989a16e828e Author: Aaron Bauman gentoo org> AuthorDate: Sun Oct 16 06:42:46 2016 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sun Oct 16 06:42:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e56aacc3 net-misc/gns3-gui: bump with sed fix for gns3-converter bug #596868 net-misc/gns3-gui/gns3-gui-1.5.2-r1.ebuild | 46 ++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/net-misc/gns3-gui/gns3-gui-1.5.2-r1.ebuild b/net-misc/gns3-gui/gns3-gui-1.5.2-r1.ebuild new file mode 100644 index 00000000..42e465f --- /dev/null +++ b/net-misc/gns3-gui/gns3-gui-1.5.2-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python3_4 ) + +inherit distutils-r1 eutils + +DESCRIPTION="Graphical Network Simulator" +HOMEPAGE="http://www.gns3.net/" +SRC_URI="https://github.com/GNS3/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +#net-misc/gns3-server version should always match gns3-gui version + +RDEPEND=" + >=dev-python/libcloud-0.15.1[${PYTHON_USEDEP}] + >=dev-python/ws4py-0.3.4[${PYTHON_USEDEP}] + >=dev-python/requests-2.6.0[${PYTHON_USEDEP}] + >=dev-python/paramiko-1.15.1[${PYTHON_USEDEP}] + >=dev-python/psutil-3.0.0[${PYTHON_USEDEP}] + >=net-misc/gns3-converter-1.3.0[${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}]" + +python_configure() { + # temporary fix until upstream releases 1.4.5 with proper setup.py + sed -i -e 's/gns3-net-converter/gns3-converter/' setup.py requirements.txt || die +} + +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" +}