summaryrefslogtreecommitdiff
path: root/morphlib/buildcommand.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix copyright yearSam Thursfield2013-01-281-1/+1
|
* Run ldconfig after populating staging chrootSam Thursfield2013-01-241-0/+3
| | | | | | | | After installing libraries into the staging area, we need to run ldconfig to update the shared library cache. I presume that this wasn't required until now because the cache in the staging filler tarball was enough.
* Validate stratum build-depends against system contentsSam Thursfield2012-12-171-0/+19
| | | | | This ensures that we don't try to build the same stratum from two different refs.
* morph build: Allow forcing build branches to be pushedSam Thursfield2012-11-121-0/+1
| | | | | This is for users who prefer the old behaviour of building from the remote repos.
* Validate that systems, strata reference correct kindsLars Wirzenius2012-10-111-0/+43
|
* Always cache artifacts locally and report filenames during build.Daniel Silverstone2012-09-211-0/+7
| | | | | | | | | | | The artifact being built is often subsequently hard to find since the user has to go digging around in their artifact cache to try and determine which artifact is the one they want. With this change, the filepath to the artifact will be displayed after building it. As a side effect, we also need to always cache artifacts locally in order to do this, otherwise we'd have to report URLs to the remote artifact cache instead and that might be less useful overall.
* Move BuildCommand from app into its own moduleRichard Maw2012-08-011-0/+298
morphlib.app should be for application bringup and providing command line options used by the library code. Any external plugins that refer to morphlib.app.BuildCommand will need fixing.