~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.2.1/tests/cdash/cfg_symbian.py

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-01-07 14:51:16 UTC
  • mfrom: (4.3.5 sid)
  • Revision ID: package-import@ubuntu.com-20150107145116-yxnafinf4lrdvrmx
Tags: 1.4.1-0.1ubuntu1
* Merge with Debian, remaining changes:
 - Drop soprano, nepomuk build-dep
* Drop ubuntu patches, now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# cfg_symbian.py - Symbian target configurator
 
3
#
 
4
# Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
 
5
#
 
6
# This program is free software; you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation; either version 2 of the License, or
 
9
# (at your option) any later version.
 
10
#
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with this program; if not, write to the Free Software
 
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
#
 
20
import builder
 
21
import os
 
22
import sys
 
23
 
 
24
# Each configurator must export this function
 
25
def create_builder(args):
 
26
    usage = """\
 
27
Usage:
 
28
  main.py cfg_symbian [-h|--help] [-t|--target TARGET] [cfg_site]
 
29
 
 
30
Arguments:
 
31
  cfg_site:            site configuration module. If not specified, "cfg_site" 
 
32
                       is implied
 
33
  -t,--target TARGET:  Symbian target to build. Default is "gcce urel". 
 
34
                       Other values:
 
35
                        "winscw udeb", "gcce udeb", etc.
 
36
  -h, --help           Show this help screen
 
37
"""           
 
38
 
 
39
    cfg_site = "cfg_site"
 
40
    target = "gcce urel"
 
41
    in_option = ""
 
42
    
 
43
    for arg in args:
 
44
        if in_option=="-t":
 
45
            target = arg
 
46
            in_option = ""
 
47
        elif arg=="--target" or arg=="-t":
 
48
            in_option = "-t"
 
49
        elif arg=="--help" or arg=="-h":
 
50
            print usage
 
51
            sys.exit(0)
 
52
        elif arg[0]=="-":
 
53
            print usage
 
54
            sys.exit(1)
 
55
        else:
 
56
            cfg_site = arg
 
57
        
 
58
    if os.access(cfg_site+".py", os.F_OK) == False:
 
59
        print "Error: file '%s.py' doesn't exist." % (cfg_site)
 
60
        sys.exit(1)
 
61
 
 
62
    cfg_site = __import__(cfg_site)
 
63
    test_cfg = builder.BaseConfig(cfg_site.BASE_DIR, \
 
64
                                  cfg_site.URL, \
 
65
                                  cfg_site.SITE_NAME, \
 
66
                                  cfg_site.GROUP, \
 
67
                                  cfg_site.OPTIONS)
 
68
    config_site1 = """\
 
69
#define PJ_TODO(x)
 
70
#include <pj/config_site_sample.h>
 
71
 
 
72
"""
 
73
 
 
74
    config_Site = config_site1 + cfg_site.CONFIG_SITE
 
75
 
 
76
    builders = [
 
77
        builder.SymbianTestBuilder(test_cfg, 
 
78
                                   target=target,
 
79
                                   build_config_name="default",
 
80
                                   config_site=config_site1,
 
81
                                   exclude=cfg_site.EXCLUDE,
 
82
                                   not_exclude=cfg_site.NOT_EXCLUDE)
 
83
        ]
 
84
 
 
85
    return builders
 
86