From owner-svn-ports-head@freebsd.org Sun Jul 26 19:19:38 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DFD49AB85A; Sun, 26 Jul 2015 19:19:38 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E686B84; Sun, 26 Jul 2015 19:19:38 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6QJJc9E018090; Sun, 26 Jul 2015 19:19:38 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6QJJbxa018084; Sun, 26 Jul 2015 19:19:37 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201507261919.t6QJJbxa018084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 26 Jul 2015 19:19:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392943 - in head/emulators: . py-gns3-converter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jul 2015 19:19:38 -0000 Author: pi Date: Sun Jul 26 19:19:36 2015 New Revision: 392943 URL: https://svnweb.freebsd.org/changeset/ports/392943 Log: GNS3 Converter is designed to convert old ini-style GNS3 topologies (<=0.8.7) to the newer version v1+ JSON format for use in GNS3 v1+ The converter will convert all IOS, Cloud and VirtualBox devices to the new format. It will also convert all QEMU based devices (QEMU VM, ASA, PIX, JUNOS & IDS). VPCS nodes will be converted to cloud devices due to lack of information the 0.8.7 topology files. For topologies containing snapshots, the snapshots will also be converted to the new format automatically. WWW: https://github.com/GNS3/gns3-converter Added: head/emulators/py-gns3-converter/ head/emulators/py-gns3-converter/Makefile (contents, props changed) head/emulators/py-gns3-converter/distinfo (contents, props changed) head/emulators/py-gns3-converter/pkg-descr (contents, props changed) Modified: head/emulators/Makefile Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Sun Jul 26 19:13:23 2015 (r392942) +++ head/emulators/Makefile Sun Jul 26 19:19:36 2015 (r392943) @@ -112,6 +112,7 @@ SUBDIR += pipelight SUBDIR += ppsspp SUBDIR += ppsspp-devel + SUBDIR += py-gns3-converter SUBDIR += q4wine SUBDIR += qemu SUBDIR += qemu-devel Added: head/emulators/py-gns3-converter/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/py-gns3-converter/Makefile Sun Jul 26 19:19:36 2015 (r392943) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= gns3-converter +PORTVERSION= 1.2.3 +CATEGORIES= emulators +MASTER_SITES= CHEESESHOP + +MAINTAINER= pi@FreeBSD.org +COMMENT= Convert old GNS3 (<=0.8.7) topologies to newer versions + +LICENSE= GPLv3 + +USES= python:3 +USE_PYTHON= distutils autoplist + +.include Added: head/emulators/py-gns3-converter/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/py-gns3-converter/distinfo Sun Jul 26 19:19:36 2015 (r392943) @@ -0,0 +1,2 @@ +SHA256 (gns3-converter-1.2.3.tar.gz) = 9257464a112aaca345b2eaec7001ea723f319f9792a8a313cacb94fe7e10a7e9 +SIZE (gns3-converter-1.2.3.tar.gz) = 32962 Added: head/emulators/py-gns3-converter/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/py-gns3-converter/pkg-descr Sun Jul 26 19:19:36 2015 (r392943) @@ -0,0 +1,12 @@ +GNS3 Converter is designed to convert old ini-style GNS3 topologies +(<=0.8.7) to the newer version v1+ JSON format for use in GNS3 v1+ + +The converter will convert all IOS, Cloud and VirtualBox devices +to the new format. It will also convert all QEMU based devices (QEMU +VM, ASA, PIX, JUNOS & IDS). VPCS nodes will be converted to cloud +devices due to lack of information the 0.8.7 topology files. + +For topologies containing snapshots, the snapshots will also be +converted to the new format automatically. + +WWW: https://github.com/GNS3/gns3-converter