Salome HOME
spns #18704 DB9 - embed gcc 8.5 - native gcc is not fully c++17 compliant
[tools/sat_salome.git] / products / Python.pyconf
1 default :
2 {
3     name : "Python"
4     build_source : "script"
5     compil_script : $name + $VARS.scriptExtension
6     get_source : "archive"
7     system_info : 
8     {
9         # Python is a mandatory part of current used Linux platforms, no need to check its presence therefore.
10         # As version of Python 3.x differs on each of them, a better solution would to eventually check the binary presence.
11         rpm : []
12         rpm_dev : []
13         apt : []
14         apt_dev : []
15     }
16     environ :
17     {
18        env_script : $name + ".py"
19     }
20     depend : []
21     opt_depend: ["gcc"]
22     patches : []
23     source_dir : $APPLICATION.workdir + $VARS.sep + 'SOURCES' + $VARS.sep + $name
24     build_dir : $APPLICATION.workdir + $VARS.sep + 'BUILD' + $VARS.sep + $name
25     install_dir : 'base'
26     properties:
27     {
28       incremental : "yes"
29       compile_and_runtime : "yes"
30     }
31 }
32
33 version_2_6_6 :
34 {
35     patches : ["Python_zlib_detection.patch", "Python_SSL.patch"]
36 }
37
38 version_2_7_10 :
39 {
40     patches : ['Python-2.7.10-ssl.patch']
41 }
42
43 version_3_6_5 :
44 {
45  patches : []
46 }
47
48 version_3_6_5_win :
49 {
50     compil_script : "Python-3.6.5.bat"
51     patches : ['Python-3.6.5_windows.patch']
52 }
53 version_3_7_9 :
54 {
55  patches : []
56 }
57
58 version_3_7_9_win :
59 {
60     compil_script : "Python-3.7.9.bat"
61     patches : []
62     build_depend : ['perl']
63 }
64