orig_tarball: fix after source renaming

Source package has been renamed to "rustc". Fix make_orig-dl_tarball.py
tarball generation accordingly.

Signed-off-by: Luca Bruno <lucab@debian.org>
This commit is contained in:
Luca Bruno 2015-03-09 21:26:30 +01:00
parent 7d40d3e194
commit dee625686e

View File

@ -34,7 +34,7 @@ for arch in ('i386', 'x86_64'):
http = urllib3.PoolManager()
def create_dl_tarball():
dl_tarfile = 'rust_' + upstream_version + '.orig-dl.tar.gz'
dl_tarfile = 'rustc_' + upstream_version + '.orig-dl.tar.gz'
dl_tarfile = os.path.join(src_root_parent_dir, dl_tarfile)
tar = tarfile.open(dl_tarfile, 'w:gz')
url_base = 'https://static.rust-lang.org/stage0-snapshots/'