How can I use a Git repo in a build recipe?

Asked by Zaz Brown

I have a build recipe here: https://code.launchpad.net/~zazbrown/+recipe/tmsu-experimental-0

I need to replace the go-sqlite3 Bazaar repo with this Git one: https://code.launchpad.net/~zazbrown/tmsu/+git/tmsu/+ref/sqlite3

I've read that this is possible, but can't find out how anywhere.

Question information

Language:
English Edit question
Status:
Solved
For:
Launchpad itself Edit question
Assignee:
No assignee Edit question
Solved by:
Colin Watson
Solved:
Last query:
Last reply:
Revision history for this message
Best Colin Watson (cjwatson) said :
#1

All the components of a recipe have to use the same system at the moment (bzr-builder doesn't support pulling in git repositories, and git-build-recipe doesn't support pulling in bzr branches), so you'll have to convert everything in that recipe or nothing. https://help.launchpad.net/Packaging/SourceBuilds/Recipes should document the rest of it.

Revision history for this message
Zaz Brown (zazbrown) said :
#2

Thanks a lot! I'll give that a go.

Revision history for this message
Zaz Brown (zazbrown) said :
#3

Thanks Colin Watson, that solved my question.