3

I'm encountering this strange issue when using this Launchpad recipe. The source package fails to build with this error message in the buildlog:

dpkg-source -i -I -b recipe-{debupstream}-0~{revno}
dpkg-source: error: can't build with source format '3.0 (native)': native package version may not have a revision
dpkg-buildpackage: error: dpkg-source -i -I -b recipe-{debupstream}-0~{revno} gave error exit status 255

It seems to be happening only for Trusty, but I suspect that this is a more general packaging issue. The debian/changelog contains this entry:

xfce4-appmenu-plugin (0.10-1) unstable; urgency=low
  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>

 -- [Maintainer]  Tue, 15 Nov 2011 14:02:29 +0800

Any ideas what is going wrong?

Braiam
  • 67,791
  • 32
  • 179
  • 269
landroni
  • 5,941
  • 7
  • 36
  • 58

1 Answers1

2

Probably you need have your version X.X-0 or X.X. You should have X.X-1 if this is the first revision of a non-native package.

Darek
  • 161