use Tizen:Main instead Trunk as the default project
authorZhang Qiang <qiang.z.zhang@intel.com>
Wed, 6 Jun 2012 05:19:18 +0000 (13:19 +0800)
committerZhang Qiang <qiang.z.zhang@intel.com>
Wed, 6 Jun 2012 06:54:17 +0000 (14:54 +0800)
README.rst
gitbuildsys/cmd_remotebuild.py
tools/gbs

index 80c1f09..d4611ae 100644 (file)
@@ -237,10 +237,10 @@ to build. The usage of subcommand `remotebuild` can be available using `gbs remo
       -h, --help          show this help message and exit
       -B BASE_OBSPRJ, --base-obsprj=BASE_OBSPRJ
                           Base OBS project being used to branch from, use
-                          "Trunk" if not specified
+                          "Tizen:Main" by default if not specified
       -T TARGET_OBSPRJ, --target-obsprj=TARGET_OBSPRJ
                           OBS target project being used to build package, use
-                          "home:<userid>:gbs:Trunk" if not specified
+                          "home:<userid>:gbs:Tizen:Main" if not specified
 
 Before running gbs remotebuild, you need to prepare a package git repository
 first, and packaging directory must be exist and have spec file in it. The spec
index 25bebee..d5908ee 100644 (file)
@@ -96,7 +96,7 @@ def do(opts, args):
 
     if opts.base_obsprj is None:
         # TODO, get current branch of git to determine it
-        base_prj = 'Trunk'
+        base_prj = 'Tizen:Main'
     else:
         base_prj = opts.base_obsprj
 
index 5c99126..7c120d1 100755 (executable)
--- a/tools/gbs
+++ b/tools/gbs
@@ -171,7 +171,7 @@ class Gbs(cmdln.Cmdln):
 
         if -D not specified, distconf key in ~/.gbs.conf would be used.
         If distconf key is None, dist conf file would be got  from  OBS
-        project (Trunk by default).
+        project (Tizen:Main by default).
 
         ${cmd_option_list}
         """
@@ -188,7 +188,7 @@ class Gbs(cmdln.Cmdln):
                   type='string',
                   callback=handle_project,
                   help='OBS target project being used to build package, ' \
-                       'use "home:<userid>:gbs:Trunk" if not specified')
+                       'use "home:<userid>:gbs:Tizen:Main" if not specified')
     @cmdln.option('-B', '--base-obsprj',
                   action='callback',
                   default=None,
@@ -196,7 +196,7 @@ class Gbs(cmdln.Cmdln):
                   type='string',
                   callback=handle_project,
                   help='Base OBS project being used to branch from, ' \
-                       'use "Trunk" if not specified')
+                       'use "Tizen:Main" if not specified')
     @cmdln.option('--spec',
                   default=None,
                   dest='spec',