Closed BaloneyGeek closed 2 months ago
Thought that was reverted to librtlsdr0 ... It is in debian: https://packages.debian.org/sid/libs/librtlsdr0
So i don't know what the F ubuntu is doing. I guess they went the same way for their dev branch but didn't change it back in 24.04? https://packages.ubuntu.com/search?keywords=librtlsdr
I'll leave this open ... but really it's not of concern to me. Solution: don't use Ubuntu.
Or just use the containers on ubuntu ... https://sdr-enthusiasts.gitbook.io/ads-b
This version bump was a mistake and rolled back really. Especially because the API didn't change.
Came here because I noticed the same issue.
Ubuntu previously used librtlsdr0 because the package was being built against rtl-sdr version 0.6.0. They renamed it in Noble to librtlsdr2 because the package in Noble is now based on rtl-sdr version 2.0.1 code. I know what Ubuntu is doing not sure I understand why Debian would continue to label it as version 0 even though it is now using version 2 code as well. IMO they both should have named it librtlsdr if they were not planning on supporting two different versions at once.
The only two ways around this that I can think.
It is hackish but using librtlsdr-dev will use an additional ~150kb to ~635kb of disk space for development files depending on the architecture but will fulfill the librtlsdr dependency on both distros.
So ... this fixes the build for Ubuntu24 ... i gather people will manage to do this if they find this issue.
sed -i -e 's/librtlsdr0/librtlsdr2/g' debian/control
Just as a note, the library version is usually only changed if the API changes. Because if the API doesn't change, there is no need to change that version number exactly because it breaks dependencies.
Osmocom realized their mistake and reverted the change. The issue is that Ubuntu did a release with this change which is very unfortunate.
Osmocom realized their mistake and reverted the change. The issue is that Ubuntu did a release with this change which is very unfortunate.
I see so they did set the soversion back to 0 instead of 2 in 2.0.2. It was 2 in v2.0.1 which was the version the Noble package was built against.
Ran into this issue running against 24.04 on GitHub runner. But have reverted to 22.04 and all good.
Hi,
Ubuntu 24.04 calls the rtl-sdr library package
librtlsdr2
instead oflibrtlsdr0
. I was able to build the package fine by editing the control file locally and it runs flawlessly, so I guess it doesn't break source compatibility.I'd submit a patch myself, but unfortunately I'm not sure how to support both package names with just one control file. Sorry about that :-(
Thanks, Boud