I have got a PPA on LaunchPad and a pack which depends on gawk (>= 1:4.1.1+dfsg-1)
(this is set in the control file). But when uploading the .change
file to LaunchPad with dput
I get this error:
So why is the build failing when it doesn't for any of my other packages of this project? And how can I fix it?
This is the version for Trusty, the versions for Utopic and Vivid build fine. And this is the page with the error message on it: https://launchpad.net/~secretiveppc/+archive/ubuntu/anti-sr/+build/7126328
The problem is that you are attempting to build the package for Trusty (Ubuntu 14.04), but your control
file requires a newer version of gawk
than is currently available for Trusty:
- the latest version of
gawk
available for Trusty is 1:4.0.1+dfsg-2.1ubuntu2 - your
control
file is requesting a version >=1:4.1.1+dfsg-1
The solution is to either change your control
file to require an earlier version (assuming you aren't depending on a feature introduced in a later version) or backport the newer gawk
version.
No comments:
Post a Comment