~mozillateam/firefox/firefox.disco

« back to all changes in this revision

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

  • Committer: Olivier Tilloy
  • Date: 2019-11-26 15:23:04 UTC
  • mfrom: (1086.1.227 firefox-beta.disco)
  • Revision ID: olivier.tilloy@canonical.com-20191126152304-pi4224zkncyw5tqf
* New upstream stable release (71.0+build2)

[ Rico Tzschichholz ]
* Update cbindgen to 0.10.0
  - debian/build/create-tarball.py
* Bump build-dep on rustc >= 1.37.0 and cargo >= 0.38
  - debian/control{,.in}
* Add explicit build-dep on libclang-*-dev
  - debian/control{,.in}
* Update patches
  - debian/patches/partially-revert-google-search-update.patch
* Skip Tagalog (tl) and Triqui (trs) localizations
  - debian/config/locales.blacklist
* Include ca-valencia
  - update debian/config/locales.shipped

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
        CheckCall(['cargo', 'new', 'vendored-cbindgen', '--vcs', 'none'])
129
129
        with ScopedWorkingDirectory('vendored-cbindgen'):
130
130
          with open('Cargo.toml', 'a+') as fd:
131
 
            fd.write('cbindgen = "=0.9.1"')
 
131
            fd.write('cbindgen = "=0.10.0"')
132
132
          CheckCall(['cargo', 'vendor'])
133
133
          with ScopedWorkingDirectory('vendor/cbindgen'):
134
134
            os.makedirs('.cargo')