mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-15 05:35:56 +00:00
dpkg: warning: parsing file #64
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 @buckstephenh on GitHub (Jul 22, 2019).
I have a few errors when using 'sudo dpkg -I blah.deb' to install the .deb file
dpkg: warning: parsing file '/var/lib/dpkg/tmp.ci/control' near line 5 package
...
missing description
missing maintainer
missing version
I have .csproj fields for
<Description><Company><Authors> <VersionPrefix><VersionSuffix>so not sure if these are the ones that are supposed to map into the .deb control file or if the information is supposed to come from somewhere else. I'm looking in the project for examples or notes on this.@buckstephenh commented on GitHub (Jul 31, 2019):
Turns out a read of the control file standards at https://www.debian.org/doc/debian-policy/ch-controlfields.html and adjusting the description field solves the problem. dotnet-packaging does not appear to trim the contents of
<description>in .csproj.