Commit Graph

27 Commits

Author SHA1 Message Date
Mike Hommey
2e51d2ef87 Bug 1147283 - Replace mozpack.path with mozpath. r=mshal
Back when mozpack.path was added, it was used as:

  import mozpack.path
  mozpack.path.func()

Nowadays, the common idiom is:

  import mozpack.path as mozpath
  mozpath.func()

because it's shorter.

$ git grep mozpath\\. | wc -l
423
$ git grep mozpack.path\\. | wc -l
123

This change was done with:
$ git grep -l mozpack.path\\. | xargs sed -i 's/mozpack\.path\./mozpath./g'
$ git grep -l 'import mozpack.path$' | xargs sed -i 's/import mozpack.path$/\0 as mozpath/'
$ (pat='import mozpack.path as mozpath'; git grep -l "$pat" | xargs sed -i "1,/$pat/b;/$pat/d")
2015-03-27 08:13:16 +09:00
Mike Hommey
af2413e477 Bug 910660 - Make the SimplePackager emit a separate base for addons. r=gps
Addons are detected by the presence of an install.rdf file in their base.
2015-03-24 09:10:33 +09:00
Mike Hommey
d14c249954 Bug 1143510 - Fix line numbers for removal errors during make package. r=gps 2015-03-17 10:04:20 +09:00
Mike Shal
b57132dd7f Bug 1123990 - installer needs voucher.bin; r=glandium, r=cpearce, a=RyanVM 2015-02-19 10:04:16 -05:00
Phil Ringnalda
96de3b5850 Back out f543e83304e9 (bug 1123990) for nightly build bustage
CLOSED TREE
2015-02-11 22:12:49 -08:00
Mike Shal
0d9d460e17 Bug 1123990 - installer needs voucher.bin; r=glandium, r=cpearce 2015-01-21 18:27:20 -05:00
Carsten "Tomcat" Book
07f732f050 Backed out changeset 2742651b0cd9 (bug 1123990) for suspicion that this broke the nightly builds a=sheriffduty 2015-02-03 13:49:17 +01:00
Mike Shal
8b5989b20c Bug 1123990 - installer needs voucher.bin; r=glandium, r=cpearce 2015-01-21 18:27:20 -05:00
Stephen Pohl
0fa995bd2a Bug 1096494: Cleanup package manifest after the v2 signing changes on OSX. r=rstrong 2014-11-18 12:15:03 -05:00
Carsten "Tomcat" Book
cb5a2aaea2 Backed out changeset 132909245ca8 (bug 1096494) for causing merge conflicts to m-c 2014-11-18 13:14:15 +01:00
Stephen Pohl
840ad4cc7a Bug 1096494: Cleanup package manifest after the v2 signing changes on OSX. r=rstrong 2014-11-17 13:23:12 -05:00
David Major
61e965f2d8 Bug 1084162 - Part 1: Move the PGO path hack to a more general location. r=ted 2014-11-04 14:26:36 +13:00
Mike Hommey
fc74d6a658 Fixup for bug 1038639. r=me 2014-07-17 09:37:21 +09:00
Brian R. Bondy
e696b03758 Bug 598615 - Rename HAVE_64BIT_OS to HAVE_64BIT_BUILD. r=ted 2014-06-24 22:16:25 -04:00
Alexandre Poirot
264295d76f Bug 999631 - Disable startup cache via a dedicated flag. r=mshal 2014-04-23 04:57:00 -04:00
Gregory Szorc
3ffe1dbe60 Bug 903149 - Part 3: Support for minifying packaged JavaScript; r=glandium 2013-09-11 19:54:19 -07:00
David Major
bd3edb5d47 Bug 919735: For VS2013, put the 32-bit PGO files first on the PATH. r=ted 2014-03-14 12:48:59 -07:00
Nick Alexander
804c0c9a2f Bug 888646 - Update missed use of SimpleManifestSink API. r=trivial
This is a simple follow-up to Bug 887121.
2013-06-29 20:15:08 -07:00
Mike Hommey
5630e65cba Bug 872439 - Fix GRE path used for startup cache precompilation with --with-libxul-sdk. r=gps 2013-05-15 19:23:03 +02:00
Panos Astithas
4bbedfdc51 Bug 855223 - Packaging fails when using a symlink format with: TypeError: fatal() takes exactly 2 arguments (3 given); r=glandium 2013-03-27 13:10:22 +02:00
Gregory Szorc
0b37be4ddf Bug 784841 - Part 17: Handle unicode during packaging; r=glandium 2013-02-25 12:47:17 -08:00
Mike Hommey
8c68cdf751 Bug 840094 - Change how nsZipArchive logging works. r=taras,r=gps
Now log in a single file given by the MOZ_JAR_LOG_FILE environment variable.
Log entries contain the URI of the Zip archive, followed by the path in the
archive.
* * *
Bug 840094 - Fixup for debug builds failure because of nsZipArchive::CloseArchive being called several times
2013-02-19 11:02:12 +01:00
Mike Hommey
2a64cdfa4a Bug 836218 - Always copy files instead of skipping when destination is newer when doing l10n-repacks. r=ted 2013-02-03 07:20:24 +01:00
Mike Hommey
0db6eb8e66 Bug 835309 - Look at .xpi file contents when unifying them for universal builds. r=gps 2013-02-03 07:19:15 +01:00
Mike Hommey
be417d0ed2 Bug 835309 - Fix JarFileReader.readlines() and make flake8 happier. r=gps 2013-02-03 07:18:55 +01:00
Mike Hommey
69aecb9ac9 Bug 834176 - Use NON_OMNIJAR_FILES value in the new packager. r=gps 2013-01-25 00:38:47 +01:00
Mike Hommey
fc89f708a6 Bug 780561 - Import new packager code. r=gps 2013-01-23 11:23:14 +01:00