~mozillateam/firefox/firefox-beta.trusty

« back to all changes in this revision

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

  • Committer: Rico Tzschichholz
  • Date: 2019-03-27 10:53:57 UTC
  • Revision ID: ricotz@ubuntu.com-20190327105357-p3plc4yy9ow41d69
* New upstream release from the beta channel (FIREFOX_67_0b5_BUILD1)
* Update patches
  - debian/patches/partially-revert-google-search-update.patch
  - debian/patches/mark-distribution-search-engines-as-read-only.patch
  - debian/patches/support-coinstallable-trunk-build.patch
  - debian/patches/cleanup-old-distribution-search-engines.patch
  - debian/patches/ubuntu-ua-string-changes.patch
  - debian/patches/armhf-disable-unaligned-fp-access-emulation.patch
* Bump build-dep on rustc >= 1.32.0 and cargo >= 0.33
* Update cbindgen to 0.8.2
  - debian/build/create-tarball.py

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.7.1"')
 
131
            fd.write('cbindgen = "=0.8.2"')
132
132
          CheckCall(['cargo', 'vendor'])
133
133
          with ScopedWorkingDirectory('vendor/cbindgen'):
134
134
            os.makedirs('.cargo')