~mozillateam/thunderbird/thunderbird.xenial

« back to all changes in this revision

Viewing changes to debian/build/create-tarball.py

  • Committer: Olivier Tilloy
  • Date: 2019-01-16 08:46:09 UTC
  • Revision ID: olivier.tilloy@canonical.com-20190116084609-u5ehihhmgu8j6nuw
* New upstream stable release (60.4.0build2)

* Refresh patches
  - update debian/patches/rust-drop-dll-checksums.patch
* Fix a typo in the help text for the script to create the source tarball
  - update debian/build/create-tarball.py
* Use https for source repositories
  - update debian/config/branch.mk

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
  def __init__(self):
112
112
    OptionParser.__init__(self, 'usage: %prog [options]')
113
113
 
114
 
    self.add_option('-r', '--repo', dest='repo', help='The remote repository from which to pull the rain source')
 
114
    self.add_option('-r', '--repo', dest='repo', help='The remote repository from which to pull the main source')
115
115
    self.add_option('-s', '--sub-repo', dest='subrepo', help='The remote repository from which to pull the embedding source')
116
116
    self.add_option('--sub-repo-dir', dest='subrepodir', help='The subdirectory in which to save the embedding source')
117
117
    self.add_option('-c', '--cache', dest='cache', help='A local cache of the remote repositories')