~mozillateam/firefox/firefox-beta.xenial

« back to all changes in this revision

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

  • Committer: Rico Tzschichholz
  • Date: 2023-09-15 05:07:28 UTC
  • Revision ID: ricotz@ubuntu.com-20230915050728-0lha2ordlxhcik7t
* New upstream release from the beta channel (FIREFOX_118_0b8_BUILD1)
* Update cbindgen to 0.25.0
  - debian/build/create-tarball.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
        CheckCall(['cargo', 'new', 'vendored-cbindgen', '--vcs', 'none'])
137
137
        with ScopedWorkingDirectory('vendored-cbindgen'):
138
138
          with open('Cargo.toml', 'a+') as fd:
139
 
            fd.write('cbindgen = "=0.24.5"')
 
139
            fd.write('cbindgen = "=0.25.0"')
140
140
          CheckCall(['cargo', 'vendor'])
141
141
          with ScopedWorkingDirectory('vendor/cbindgen'):
142
142
            os.makedirs('.cargo')