diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2011-07-07 18:04:39 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2011-07-08 04:29:04 +0200 |
commit | 88a019107b591ad91c2bf79ba2b6c64330ae11e5 (patch) | |
tree | 5f624ac4000bb0e139ee9e276077b90481e47c27 | |
parent | 8d25e25e45812d2b09f5db8f377a552848214edc (diff) |
Update sync.profile dependencies to new syntax
%dependencies now has a simpler format of gitmodule => %gitref instead
of using qt modules and keywords.
Change-Id: I785f30e24e0a793218e2e307bdde56067760c511
Reviewed-on: http://codereview.qt.nokia.com/1286
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
-rw-r--r-- | sync.profile | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sync.profile b/sync.profile index 952c709..e1dfeb2 100644 --- a/sync.profile +++ b/sync.profile @@ -1,11 +1,15 @@ -# Modules and programs, and their dependencies. +# Module dependencies. +# Every module that is required to build this module should have one entry. # Each of the module version specifiers can take one of the following values: # - A specific Git revision. -# - "LATEST_REVISION", to always test against the latest revision. -# - "LATEST_RELEASE", to always test against the latest public release. -# - "THIS_REPOSITORY", to indicate that the module is in this repository. +# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch) +# %dependencies = ( - "qtwebkit-examples-and-demos" => { - "QtWebKit" => "LATEST_REVISION", - }, + "qtbase" => "refs/heads/master", + "qtwebkit" => "refs/heads/qt-modularization-base", + "qtscript" => "refs/heads/master", + "qtsvg" => "refs/heads/master", + "qtxmlpatterns" => "refs/heads/master", + "qtdeclarative" => "refs/heads/master", + "qtphonon" => "refs/heads/master", ); |