Package Details: chirp-next 20240905-1

Git Clone URL: https://aur.archlinux.org/chirp-next.git (read-only, click to copy)
Package Base: chirp-next
Description: GUI tool for programming ham radios, built from daily build
Upstream URL: https://chirpmyradio.com/projects/chirp/wiki/Home
Licenses: GPL-3.0-or-later
Conflicts: chirp, chirp-daily
Provides: chirp
Submitter: WT5A
Maintainer: WT5A
Last Packager: WT5A
Votes: 74
Popularity: 3.46
First Submitted: 2023-01-22 22:04 (UTC)
Last Updated: 2024-09-06 16:02 (UTC)

Latest Comments

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

Oskar93 commented on 2023-06-04 09:42 (UTC)

@HighValueWarrior, could you gide me through to delete the Chirp config files, so that I can reinstall it again. I've tried, but haven´t been able to do so.

Irontobind commented on 2023-05-26 03:07 (UTC)

I am on 3.11 and it opens on my laptop so I'm probably missing something that no one would think of. Lack of a DM maybe

WT5A commented on 2023-05-23 02:17 (UTC)

so, all the dependencies listed in the requirements.txt are in the PKGBUILD, so it shouldn't be that, I'm not sure what the issues would be but first I would make sure you're on python 3.11 and try rebuilding. For dhtseany, I am pretty sure I needed to reinstall yattag after the python 3.11 update (probably a problem with the yattag PKGBUILD, so I would try rebuilding and install yattag.

Irontobind commented on 2023-05-23 01:32 (UTC) (edited on 2023-05-23 01:39 (UTC) by Irontobind)

I am getting some neat python errors, does anyone know what this points to that I am missing?

Traceback (most recent call last):
  File "/usr/bin/chirp", line 8, in <module>
    sys.exit(chirpmain())
             ^^^^^^^^^^^
  File "/usr/lib/python3.11/site-packages/chirp/wxui/__init__.py", line 177, in chirpmain
    mainwindow = main.ChirpMain(None, title='CHIRP')
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/site-packages/chirp/wxui/main.py", line 341, in __init__
    self.SetMenuBar(self.make_menubar())
                    ^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/site-packages/chirp/wxui/main.py", line 465, in make_menubar
    self.OPEN_STOCK_CONFIG_MENU = self.add_stock_menu()
                                  ^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/site-packages/chirp/wxui/main.py", line 445, in add_stock_menu
    stock.Append(wx.MenuItem(stock, wx.ID_SEPARATOR))
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: MenuItem(): argument 2 has unexpected type 'StandardID' 

dhtseany commented on 2023-05-15 20:01 (UTC) (edited on 2023-05-15 20:02 (UTC) by dhtseany)

I saw your update and tried again, now it's complaining about yattag missing even though it installed fine:

ModuleNotFoundError: No module named 'yattag'

$ pacman -Qs python-yattag
local/python-yattag 1.15.1-1
Python library for generating HTML or XML in a pythonic way.

dhtseany commented on 2023-05-15 19:07 (UTC) (edited on 2023-05-15 19:08 (UTC) by dhtseany)

New install of chirp-next, previously used the flatpak which I removed then I removed ~/.chirp

Installed chirp-next, tried to open the app but nothing happens, tried to launch it from terminal but it throws this module error:

[user@archbench]$ chirp Traceback (most recent call last): File "/usr/bin/chirp", line 5, in <module> from chirp.wxui import chirpmain ModuleNotFoundError: No module named 'chirp'

HighValueWarrior commented on 2023-05-09 18:20 (UTC)

Oskar93 uninstall, delete the config files and reinstall. If you do not delete the chirp config folder before reinstalling it will not work.

Oskar93 commented on 2023-05-09 10:26 (UTC)

I used to work until I've tried it today. When calling for the program, it seems to be loadin and then it disapears without the program been loaded. I've tried reinstaling it and keeps doing the same. Has ther been an update or is an update needed?

WT5A commented on 2023-05-04 15:06 (UTC)

done, thanks.

Coelacanthus commented on 2023-05-04 07:51 (UTC) (edited on 2023-05-04 07:55 (UTC) by Coelacanthus)

You should use local site_packages=$(python -c "import site; print(site.getsitepackages()[0])") to get current site-packages directory instead of hard-coded it. As Arch Wiki said, https://wiki.archlinux.org/title/Python_package_guidelines#Using_site-packages

Current hardcoded locate breaks build with new python 3.11 because it included version in path.