upload orig tarball only once for multiple source packages?

Asked by Braden Pellett

For a given project I have one source package per ubuntu series, which all use the same orig tarball. When I use dput to upload the source packages, the same orig tarball gets uploaded for each series. Is there a way to prevent this?

For that matter, I've been having to up the package version as I try to fix some packaging errors, and of course these all depend on the same orig tarball, yet dput uploads that same orig tarball again.

So I suppose in general: is there a way to tell dput that it doesn't need to upload the orig tarball because I know it already exists on the server?

Thanks for any help...

Question information

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

dput will upload every file listed in the *_source.changes file. That's usually generated by debuild, which takes the '-sd' option (the inverse of '-sa') to tell it to only include the diff, not the tarball.

Revision history for this message
Braden Pellett (dabrado) said :
#2

Ahh... I had used that option before but messed up and dput'ed the -sd .changes files before the -sa one... sigh...

Thanks much, it is working!

Revision history for this message
Braden Pellett (dabrado) said :
#3

Thanks William Grant, that solved my question.