On Wed, Jun 03, 2020 at 06:54:33AM +0000, PICCA Frederic-Emmanuel wrote: > I endup with this error > > dht debian2dsc -o lab p/gitit/debian > uscan: Newest version of gitit on remote site is 0.12.3.2, specified download > version is 0.12.3.2 > Successfully repacked lab/gitit-0.12.3.2.tar.gz as > lab/gitit_0.12.3.2+dfsg.orig.tar.xz, deleting 9 files from it. > Couldn't download tarball with uscan or apt-get source. See above for errors > > > Do you have the same issue ? > > repacking is an issue ?
Yes. The watch file uses a repacksuffix of "+dfsg" but the version in debian/changelog is missing that string. So uscan generates a tarball called "gitit_0.12.3.2+dfsg.orig.tar.xz" but because of the changelog version, dht debian2dsc is expecting a filename called "gitit_0.12.3.2.orig.tar.xz". If you fix debian/changelog to say "0.12.3.2+dfsg-1" instead of "0.12.3.2-1", it will become happier.
