+1 for this one and get it fixed.
after some troubleshooting, it looks like it simply requires a re-compilation and it should be running fine.
Using package embedded Python leads to a killed process:
> bash -x CHIRP.app/Contents/MacOS/chirp
++ dirname CHIRP.app/Contents/MacOS/chirp
+ LOCATION=CHIRP.app/Contents/MacOS
+ PYTHON=CHIRP.app/Contents/MacOS/../CHIRP
+ export PYTHONPATH=/Library/Python/2.7/site-packages:CHIRP.app/Contents/MacOS/../Resources/site-packages:.
+ PYTHONPATH=/Library/Python/2.7/site-packages:CHIRP.app/Contents/MacOS/../Resources/site-packages:.
+ export DYLD_FALLBACK_LIBRARY_PATH=CHIRP.app/Contents/MacOS/../Resources/lib:/opt/homebrew/lib/
+ DYLD_FALLBACK_LIBRARY_PATH=CHIRP.app/Contents/MacOS/../Resources/lib:/opt/homebrew/lib/
+ export DYLD_VERSIONED_LIBRARY_PATH=CHIRP.app/Contents/MacOS/../Resources/lib:/opt/homebrew/lib/
+ DYLD_VERSIONED_LIBRARY_PATH=CHIRP.app/Contents/MacOS/../Resources/lib:/opt/homebrew/lib/
+ exec CHIRP.app/Contents/MacOS/../CHIRP CHIRP.app/Contents/MacOS/../Resources/chirp/chirpw
Killed: 9
Changing the script to use the system python fails with not found library (didn't realize there is a hard-coded dependency on it):
> bash -x CHIRP.app/Contents/MacOS/chirp
++ dirname CHIRP.app/Contents/MacOS/chirp
+ LOCATION=CHIRP.app/Contents/MacOS
+ PYTHON=CHIRP.app/Contents/MacOS/../CHIRP
+ export PYTHONPATH=/Library/Python/2.7/site-packages:CHIRP.app/Contents/MacOS/../Resources/site-packages:.
+ PYTHONPATH=/Library/Python/2.7/site-packages:CHIRP.app/Contents/MacOS/../Resources/site-packages:.
+ export DYLD_FALLBACK_LIBRARY_PATH=CHIRP.app/Contents/MacOS/../Resources/lib:/opt/homebrew/lib/
+ DYLD_FALLBACK_LIBRARY_PATH=CHIRP.app/Contents/MacOS/../Resources/lib:/opt/homebrew/lib/
+ export DYLD_VERSIONED_LIBRARY_PATH=CHIRP.app/Contents/MacOS/../Resources/lib:/opt/homebrew/lib/
+ DYLD_VERSIONED_LIBRARY_PATH=CHIRP.app/Contents/MacOS/../Resources/lib:/opt/homebrew/lib/
+ /usr/bin/arch -x86_64 /usr/bin/python CHIRP.app/Contents/MacOS/../Resources/chirp/chirpw
Traceback (most recent call last):
File "CHIRP.app/Contents/MacOS/../Resources/chirp/chirpw", line 24, in
from chirp.drivers import *
File "CHIRP.app/Contents/Resources/chirp/chirp/drivers/anytone_iii.py", line 33, in
from chirp.ui.memdetail import MemoryDetailEditor
File "CHIRP.app/Contents/Resources/chirp/chirp/ui/memdetail.py", line 16, in
import gtk
File "CHIRP.app/Contents/Resources/site-packages/gtk/__init__.py", line 30, in
import gobject as _gobject
File "CHIRP.app/Contents/Resources/site-packages/gobject/__init__.py", line 26, in
from glib import spawn_async, idle_add, timeout_add, timeout_add_seconds, \
File "CHIRP.app/Contents/Resources/site-packages/glib/__init__.py", line 22, in
from glib._glib import *
ImportError: dlopen(CHIRP.app/Contents/Resources/site-packages/glib/_glib.so, 2): Library not loaded: /usr/local/opt/glib/lib/libgobject-2.0.0.dylib
Referenced from: CHIRP.app/Contents/Resources/site-packages/glib/_glib.so
Reason: image not found
I guess, installing x64 version of Homebrew might solve the problem, but I don't really want to keep two versions of Homebrew.