Date: Sun, 26 Jul 2015 19:19:37 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> 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 Message-ID: <201507261919.t6QJJbxa018084@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507261919.t6QJJbxa018084>