Ms2ger
7d23bc88e5
Merge mozilla-central into build-system
2013-01-06 11:58:19 +01:00
Ms2ger
d7ee0dea01
Merge mozilla-central into build-system
2013-01-04 21:21:29 +01:00
Ms2ger
04c7c229cf
Merge mozilla-central into build-system
2013-01-03 10:46:16 +01:00
Chris Peterson
d48b26d091
Bug 826120 - mach's warning parser should not stop at first '['. r=gps
2013-01-02 16:33:46 -08:00
Gregory Szorc
b79dd1462b
Bug 818646 - Add mozbuild Python tests to |make check|; r=ted
2012-12-21 12:43:46 -08:00
Gregory Szorc
eaa6814912
Bug 818777 - Switch to NamedTemporaryFile from mozfile; r=ted
...
This version works with Windows.
2012-12-20 16:11:35 -08:00
Nicholas Nethercote
e569e9c8a0
Bug 825820 - Call WarningsDatabase.prune at the end of Build(). r=gps.
2013-01-02 17:20:47 -08:00
Jorge Luis Mendez
fd29c509bc
Bug 820285 - Use distutils.version.StrictVersion in OSX version tests; r=gps
...
DONTBUILD (NPOTB)
2012-12-12 19:56:48 -05:00
Jorge Luis Mendez
92f3af8a58
Bug 820117 - Remove XQuartz from OS X prerequisites; r=gps
...
DONTBUILD (NPOTB)
2012-12-11 14:02:27 -08:00
Richard Newman
54a6f7a6bf
Bug 820179 - Mach command for packaging. r=gps
2012-12-11 11:42:11 -08:00
Gregory Szorc
8f6bd3c1e8
Bug 818649 - Ensure mach logs are written to log file; r=jhammel
...
DONTBUILD (NPOTB)
2012-12-07 11:44:11 -08:00
Gregory Szorc
fb266a78db
Bug 818656 - Normalize paths when loading mozconfigs; r=glandium
...
DONTBUILD (NPOTB)
2012-12-05 22:47:35 -08:00
Gregory Szorc
5139a90005
Bug 803400 - Add clobber mach command; r=glandium
...
DONTBUILD (NPOTB)
2012-12-05 22:46:01 -08:00
Gregory Szorc
dc85eba020
Bug 818545 - Gracefully handle errors when loading mozconfigs; r=glandium
...
DONTBUILD (NPOTB)
2012-12-05 14:34:14 -08:00
Gregory Szorc
4de7128613
Bug 818366 - Ability to pass through file descriptors to child processes; r=jhammel
2012-12-05 14:22:58 -08:00
Gregory Szorc
79424256a7
Bug 810742 - Handle callee thrown exceptions when invoking a mach command; r=jhammel
2012-12-05 14:21:58 -08:00
Gregory Szorc
9542c7a37a
Bug 818628 - Handle long exit code values; r=edmorley
...
DONTBUILD (NPOTB)
2012-12-05 12:32:09 -08:00
Gregory Szorc
cceb5c0a5b
Bug 818554 - Handle empty variables when parsing mozconfig output; r=glandium
...
DONTBUILD (NPOTB)
2012-12-05 11:20:59 -08:00
Gregory Szorc
0d253490f6
Bug 818543 - Define topsrcdir in mozbuild evaluation environment; r=glandium
...
DONTBUILD (NPOTB)
2012-12-05 10:20:42 -08:00
Gregory Szorc
fe1674dd23
Bug 808357 - Part 2: Implement mozconfig finding and loading in Python; r=glandium
2012-12-04 22:02:06 -08:00
Gregory Szorc
6710134ad1
Bug 808357 - Part 1: Split mozconfig code into own Python module; r=glandium
2012-12-04 22:02:03 -08:00
Benedict Singer
4578b67208
Bug 794180 - Rich comparison operators instead of __cmp__; r=gps
...
DONTBUILD (NPOTB)
2012-11-30 15:36:27 -05:00
Gregory Szorc
b4da7dafd2
Bug 814075 - Remove reference to mach test, fix help usage; r=me
...
DONTBUILD (NPOTB)
2012-11-21 10:25:44 -08:00
Gregory Szorc
139ddeb204
Bug 797471 - Handle mochitest failures gracefully in mach; r=Ms2ger
2012-11-14 12:56:02 -08:00
Ryan VanderMeulen
0b87b15172
Merge m-c to inbound.
2012-11-07 20:48:51 -05:00
Ryan VanderMeulen
2634344b9e
Merge the last PGO-green inbound changeset to m-c.
2012-11-07 20:08:02 -05:00
Cameron McCormack
54b9b74398
Bug 809650 - Handle mach @CommandArguments in the right order. DONTBUILD (NPOTB) r=gps
2012-11-08 10:21:43 +11:00
Gregory Szorc
b0bff8f586
Bug 809544 - mach now prints elapsed time as MM:SS; r=jhammel
2012-11-07 11:54:41 -08:00
Gregory Szorc
e0977b87ce
Bug 807974 - Handle make errors more gracefully; r=jhammel
...
We now return the status code from executed processes. The API to
require a successful status code has been changed from ignore_errors to
ensure_exit_code. The build mach command no longer spews a stack trace
if make fails.
DONTBUILD (NPOTB)
2012-11-06 17:01:08 -08:00
Gregory Szorc
c65a732d60
Bug 808346 - Don't scan sys.path to discover mach commands; r=jhammel
...
All mach modules are now explicitly listed in the mach driver.
2012-11-06 17:00:19 -08:00
Gregory Szorc
2a98f9435a
Bug 808336 - Part 2: Discover mach settings providers via decorators; r=jhammel
...
With this patch, mach is now decoupled from the build system and is
truly a generic command dispatching framework.
2012-11-06 16:58:13 -08:00
Gregory Szorc
bd2380c69d
Bug 808336 - Part 1: Refactor mach command handler management; r=jhammel
...
Previously we were tighly coupled with MozbuildObject. This was not in
the spirit of mach being a generic tool. Now, instead of passing multiple
arguments to __init__ of the class providing the mach command we either
pass 0 or 1. The number of arguments is detected when processing the
@CommandProvider decorator. The optional argument is a named tuple
containing mach run-time state.
Capturing of mach command provider information is now captured in a
class (as opposed to an anoymous tuple). We also capture these in a rich
data structure which is passed as part of the run-time data to the
command provider class. This allows mach commands to inspect the mach
environment.
Mach decorators have been moved to mach.decorators. mach.base is
reserved for generic mach data/container classes.
Existing mach command classes derived from MozbuildObject have been
replaced with either object or mozbuild.base.MachCommandBase. This
latter class translates the mach context instance passed to __init__
into the constructor arguments for MozbuildObject.__init__.
Support for registering function handlers with mach has been removed.
All handlers must be inside classes.
2012-11-06 16:57:41 -08:00
Ehsan Akhgari
4f638274fb
Merge mozilla-central into mozilla-inbound
2012-11-07 17:24:27 -05:00
Ted Mielczarek
31b55cd53f
bug 803654 - Import mock into virtualenv. r=jhammel
2012-10-29 11:12:30 -04:00
Ryan VanderMeulen
a4f5bb2eaa
Merge m-c to inbound.
2012-11-02 16:11:46 -04:00
Freddie F. Haddad
24086c0cc7
Bug 803990 - Add Gentoo to mozboot; r=gps
...
DONTBUILD (NPOTB)
2012-11-01 17:06:00 -07:00
Gregory Szorc
95ba36a723
Bug 805835 - Update virtualenv to fix lib64 path issues; r=glandium
...
The following commits were cherry-picked from virtualenv's Git
repository from the develop branch:
0da2c50eafbf6841afad078e04aa873780905b99
e1ec5f3b9f5c3cfa533f5ce440d7ac251c14ad7d
da95f04065328a98d16bcad1e9ad0e89f3a41ebe
These should hopefully be part of virtualenv 1.8.3, whenever it is
released.
2012-11-02 10:33:56 -07:00
Gregory Szorc
8abc8899ba
Bug 795769 - Add "bootstrap" command to mach; r=ted
...
The command is currently just a proxy into mozboot.
DONTBUILD (NPOTB)
2012-10-10 17:17:00 -07:00
Gregory Szorc
1ee3fab3a9
Bug 805127 - Upgrade virtualenv to 1.8.2; r=ted
...
Upstream tarball uncompressed in python/virtualenv. egg-info directory
was deleted. All other files are unchanged.
2012-10-24 14:25:40 -07:00
Gregory Szorc
aaa2f38201
Bug 800633 - Clean up references to code moved out of mozbuild; r=jhammel
...
DONTBUILD (NPOTB)
2012-10-11 17:13:18 -07:00
Ms2ger
c80132867e
Bug 799648 - Followup followup: Add the line back where it was meant to be; r=gps (NPOTB, DONTBUILD)
2012-10-11 22:00:37 +02:00
Ms2ger
c704e29d3a
Bug 799648 - Followup: Remove a line accidentally left in; r=gps (NPOTB, DONTBUILD)
2012-10-11 21:47:11 +02:00
Gregory Szorc
e467e93a88
Bug 799648 - Part 4: Temporarily disable settings file integration; r=jhammel
...
DONTBUILD (NPOTB)
2012-10-10 11:09:21 -07:00
Gregory Szorc
44d9223b6b
Bug 799648 - Part 3: Move config module from mozbuild to mach; r=jhammel
2012-10-10 11:08:10 -07:00
Gregory Szorc
8f12c07ca6
Bug 799648 - Part 2: Move mozbuild's log manager into mach; r=jhammel
2012-10-10 11:08:09 -07:00
Gregory Szorc
72aeaf9af2
Bug 799648 - Part 1: Move process execution and logging methods into Mach mixin classes; r=jhammel
2012-10-10 11:08:09 -07:00
Gregory Szorc
863c52dc14
Bug 799312 - Implement |mach help <command>|; r=jhammel
...
Previously you had to |mach <command> --help|. Both forms now work.
2012-10-10 11:08:09 -07:00
Gregory Szorc
47f6631e13
Bug 795427 - Part 3: Print more user friendly error messages; r=jhammel
2012-10-10 11:08:09 -07:00
Gregory Szorc
2b27cf1cf0
Bug 799291 - Part 3: Move mozbuild.testing into testing/; r=jhammel
2012-10-10 11:08:09 -07:00
Gregory Szorc
23804a0c6d
Bug 799291 - Part 2: Remove "test" command from mach; r=jhammel
...
The command was practically worthless and will likely be reborn as a
generic "run a test by specific a path or special name" command. But,
that requires a more intelligent build system first.
2012-10-10 11:08:09 -07:00