-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RPI 4 Raspbian Bullseye Build Issue #73
Comments
checkinstall on buster raspberrian using apt doesn't seem to work so I installed it from source. Maybe they have fixed that on bullseye? Remove the the following from the sh file and see what happens...
|
I removed those lines from the pi-build script. I ran the script and I get the following error: `dpkg-deb: building package 'libaeroambe-dev' in 'libaeroambe-dev_1.1-1.deb'. The following packages have unmet dependencies: |
That's because they have removed the qt5-default package. Hmm that's a bother. I guess the easiest way is just remove the dependence. Go through the sh file and remove both references to
becomes
|
Removed the both dependence to qt-5-default. Now received this error, which is the same issue in issue #72 .
I don't see where to execute the program |
I answered my own question about execution. I removed the following from the script:
I still get the following error: `From https://github.com/jontio/libaeroambe
The following packages have unmet dependencies: |
@Stormtracker017: like for my issue it's because the scripts builds .deb with qt5-default as deoendency whereas you don't have this avaliable now. You can replace in the script like this:
By
You should have it twice or more. Let's try this. |
ok so this worked: looks like a qmqtt issue |
@gprime31 I have a roughly 5 hour work around for that... It will build QT5, but its really no fun. |
I could, but I use my pi for other stuff too, don't want to reinstall, i'll wait for a fix. |
I wanted to use JAERO on my RPi3B with the bullseye OS and it failed.
The JAERO build for unittest gave this error:
Attached script has been tested on both these OS: Cheers, |
ok, had some time here is the working script..... #!/bin/bash #linux build (for github "ubuntu-latest") #will get dependancies, build and install jaero #fail on first error #we will need sudo later may as well do a sudo now sudo apt update #install dependancies and build tools if ! apt search qt5-default 2>/dev/null | grep -q qt5-default ; then sudo apt-get install cpputest build-essential cmake checkinstall gettext qtmultimedia5-dev libvorbis-dev libogg-dev libqt5multimedia5-plugins libqcustomplot-dev libqt5svg5-dev libzmq3-dev qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools -y #get script path #qmqtt #libacars #libcorrect #JFFT #libaeroambe #basestation #JAERO #package JAERO ${PACKAGE_VERSION}OS: $(lsb_release -d | cut -f 2)Build Date: $(date -u)Cheers, |
I updated the pi-build script with the suggestion found in issue #72 and now get the following error:
pi@raspberrypi:~/JAERO $ ./pi-build.sh cant find qt5-default in repo Reading package lists... Done Building dependency tree... Done Reading state information... Done qt5-qmake is already the newest version (5.15.2+dfsg-9+rpi1). qtbase5-dev is already the newest version (5.15.2+dfsg-9+rpi1). qtbase5-dev-tools is already the newest version (5.15.2+dfsg-9+rpi1). qtchooser is already the newest version (66-2). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Done Building dependency tree... Done Reading state information... Done build-essential is already the newest version (12.9). checkinstall is already the newest version (1.6.2+git20170426.d24a630-2). cpputest is already the newest version (4.0-2). libogg-dev is already the newest version (1.3.4-0.1). libqcustomplot-dev is already the newest version (2.0.1+dfsg1-4). libqt5multimedia5-plugins is already the newest version (5.15.2-3). libqt5svg5-dev is already the newest version (5.15.2-3). libvorbis-dev is already the newest version (1.3.7-1). libzmq3-dev is already the newest version (4.3.4-1). qtmultimedia5-dev is already the newest version (5.15.2-3). unzip is already the newest version (6.0-26). cmake is already the newest version (3.18.4-2+rpt1+rpi1). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Cloning into 'checkinstall'... remote: Enumerating objects: 313, done. remote: Total 313 (delta 0), reused 0 (delta 0), pack-reused 313 Receiving objects: 100% (313/313), 227.08 KiB | 977.00 KiB/s, done. Resolving deltas: 100% (201/201), done. for file in locale/checkinstall-*.po ; do \ case ${file} in \ locale/checkinstall-template.po) ;; \ *) \ out=
echo $file | sed -s 's/po/mo/'; \ msgfmt -o ${out} ${file} ; \ if [ $? != 0 ] ; then \ exit 1 ; \ fi ; \ ;; \ esac ; \ done /bin/sh: 6: msgfmt: not found make: *** [Makefile:10: all] Error 1
General Device Information:
`cpuinfo
model name : ARMv7 Processor rev 3 (v7l)
Hardware : BCM2711
Revision : c03114
Model : Raspberry Pi 4 Model B Rev 1.4
os-release
PRETTY_NAME="Raspbian GNU/Linux 11 (bullseye)"
NAME="Raspbian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=raspbian
ID_LIKE=debian
`
The text was updated successfully, but these errors were encountered: