bzr dailydeb fails with 'bzr: ERROR: No such tag: upstream-201109191100 - Stage 5/5'

Asked by hjanetzek

when I try to test a recipe with bzr dailydeb it fails while the same recipe is working when building on launchpad.
the recipe is: https://code.launchpad.net/~hannes-janetzek/+recipe/expedite-svn

bzr: ERROR: unknown command "--verbose"
jeff@rappelkiste:/opt/testing% bzr dailydeb --verbose expedite.recipe
Building tree.
Retrieving 'lp:~hannes-janetzek/enlightenment-svn/expedite' to put at '/tmp/bzr-builder-YY3tKV/expedite-201109191120-{revno}'.
All changes applied successfully.
Committing to: /tmp/bzr-builder-YY3tKV/expedite-201109191120-{revno}/
added debian
added debian/changelog
added debian/compat
added debian/control
added debian/copyright
added debian/rules
Committed revision 230.
bzr: ERROR: No such tag: upstream-201109191120 - Stage 5/5

Question information

Language:
English Edit question
Status:
Solved
For:
bzr-builder Edit question
Assignee:
Jelmer Vernooij Edit question
Solved by:
hjanetzek
Solved:
Last query:
Last reply:
Revision history for this message
Jelmer Vernooij (jelmer) said :
#1

You are trying to build a non-native package but your branch doesn't contain a tag for the upstream tarball. bzr-builder needs this tag so it can create an .orig.tar.gz file.

You should either:

 * create a tag for the upstream version named upstream-201109191120
 * change the package to be a native package
 * allow bzr-builder to make the package a native package by building with --allow-fallback-to-native.

Revision history for this message
hjanetzek (hannes-janetzek) said :
#2

The third option worked. I'll check the other when needed :)
Thank You!