mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-16 13:55:09 +00:00
Weird missing dependencies when installing .deb #108
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @markpendlebury on GitHub (Oct 18, 2021).
After implementing dotnet packaging in my core 3.1 application and building a .deb file if i attempt to install the package using:
apt install ./mypackage.debi get the following output:Applications builds and runs perfectly on the same machine from source (dotnet run) and i have no reference to nor am i aware that i'm using
libicuxx?Any ideas?
@atauenis commented on GitHub (Oct 18, 2021):
As a workaround, this is working:
Someone of Linux package maintainers thought that every version of distribution must have own version of
libicuwith own package name (not package version), and all who use thelibiculibrary should update dependency name every half-year. This library is in depends of .NET Core Runtime (and its package name in dependency list is always up to date), so this is whydotnet runworks correctly. Currently dotnet-packaging have outdated list by default, actual only for Ubuntu 18.04/19.xx and similar.@qmfrederik commented on GitHub (Nov 10, 2021):
@atauenis is right. #208 fixes this; there should be a new version on NuGet in about 30 minutes or so.