Package Details: gns3-gui 2.2.49-1

Git Clone URL: https://aur.archlinux.org/gns3-gui.git (read-only, click to copy)
Package Base: gns3-gui
Description: GNS3 network simulator. Graphical user interface package.
Upstream URL: https://github.com/GNS3/gns3-gui
Licenses: GPL-3.0-only
Groups: gns3
Submitter: korjjj
Maintainer: buzo
Last Packager: buzo
Votes: 96
Popularity: 0.25
First Submitted: 2014-05-13 18:56 (UTC)
Last Updated: 2024-08-08 16:46 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 .. 13 Next › Last »

jpbd commented on 2021-12-14 06:56 (UTC)

@buzo the dependency python-sentry_sdk has been updated to

python-sentry_sdk-1.5.1-1

breaks the gns3-gui on update

Traceback (most recent call last):
  File "/usr/bin/gns3", line 33, in <module>
    sys.exit(load_entry_point('gns3-gui==2.2.27', 'gui_scripts', 'gns3')())
  File "/usr/bin/gns3", line 22, in importlib_load_entry_point
    for entry_point in distribution(dist_name).entry_points
  File "/usr/lib/python3.10/importlib/metadata/__init__.py", line 919, in distribution
    return Distribution.from_name(distribution_name)
  File "/usr/lib/python3.10/importlib/metadata/__init__.py", line 518, in from_name
    raise PackageNotFoundError(name)
importlib.metadata.PackageNotFoundError: No package metadata was found for gns3-gui

buzo commented on 2021-12-01 16:16 (UTC)

marcBarbier: Can you tell me all missing dependencies, please? Are they required or optional? What are they needed for?

marcBarbier commented on 2021-12-01 13:41 (UTC)

you need to add some packages as dependancies like telnet-bsd and ubridge

buzo commented on 2021-05-10 17:07 (UTC)

Thanks zbe and kazaii, fixed.

kazaii commented on 2021-05-09 15:49 (UTC) (edited on 2021-05-09 15:50 (UTC) by kazaii)

zbe is correct. This has been broken for me since ~ Friday. Fixed it by deleting the contents of ~/.cache/yay/gns3-gui & gns3-server

then re-installing with: yay -S --editmenu gns3-server yay -S --editmenu gns3-gui

(say yes to editing the pkgbuild)

and adding (don't use quotes) "-e 's|^sentry-sdk==1.0.0$|sentry-sdk>=1.0.0|' \"

to similar entries in "prepare() {" section, (the sed commands)

example:

prepare() {
    cd "$pkgname-$pkgver"
    # Arch usually has the latest versions. Patch requirements to allow them.
    sed -i \
        -e 's|^psutil==5\.8\.0$|psutil>=5.8.0|' \
        -e 's|^distro==1\.5\.0$|distro>=1.5.0|' \
        -e 's|^sentry-sdk==1.0.0$|sentry-sdk>=1.0.0|' \   <---- here! 
        requirements.txt

Afte rebuilding both packages, I'm back in my lab. Thanks zbe!

zbe commented on 2021-05-07 07:08 (UTC) (edited on 2021-05-09 21:35 (UTC) by zbe)

gns3-gui doesn't start after updating to python-sentry_sdk 1.1.0-1.

Edit: Add "-e 's|^sentry-sdk==1\.0\.0$|sentry-sdk>=1.0.0|' \" to PKGBUILD.

buzo commented on 2021-04-09 19:33 (UTC)

cookiewookie: Should be fixed with 2.2.20, since upstream switched to sentry-sdk 1.0.0.

cookiewookie commented on 2021-04-05 14:35 (UTC)

python-sentry_sdk fails to download from pypi!

csirek commented on 2020-10-29 07:27 (UTC) (edited on 2020-10-29 07:28 (UTC) by csirek)

After i upgraded from 2.2.5 to 2.2.15 the gns3 does'nt start with a lot of error like this:

$ gns3 Traceback (most recent call last): File "/usr/lib/python3.8/site-packages/pkg_resources/init.py", line 567, in _build_master ws.require(requires) File "/usr/lib/python3.8/site-packages/pkg_resources/init.py", line 884, in require needed = self.resolve(parse_requirements(requirements))

etc etc etc....

And the last line is:

pkg_resources.DistributionNotFound: The 'jsonschema==3.2.0' distribution was not found and is required by gns3-gui

So the main problem is need to install "python-jsonschema" 3.2.0-2 and after that the gns3 run as normal. So this jsonschema is a dependency but not install when i upgrade (or remove the old and isntall the new) gns3.