Salome HOME
merge from master
[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_FD34:
49 {
50   patches: ["python_3.6.5-allocation.patch"] # https://github.com/pyenv/pyenv/issues/1889
51 }
52
53 version_3_6_5_win :
54 {
55     compil_script : "Python-3.6.5.bat"
56     patches : ['Python-3.6.5_windows.patch']
57 }
58
59 version_3_6_8 :
60 {
61  compil_script : 'Python-3.6.8.sh'
62  patches : []
63 }
64
65 version_3_6_15 :
66 {
67  compil_script : "Python-3.6.15.sh"
68  patches : []
69 }
70
71 version_3_6_15_FD34:
72 {
73   patches: ["python_3.6.15-allocation.patch"] # https://github.com/pyenv/pyenv/issues/1889
74 }
75
76 version_3_6_15_win :
77 {
78     compil_script : "Python-3.6.15.bat"
79     patches : ['Python-3.6.15_windows.patch']
80 }
81
82 version_3_7_9 :
83 {
84  patches : []
85 }
86
87 version_3_7_9_win :
88 {
89     compil_script : "Python-3.7.9.bat"
90     patches : []
91     build_depend : ['perl']
92 }
93  
94 version_3_7_14 :
95 {
96  compil_script : "Python-3.7.sh"
97  patches : []
98 }
99
100 version_3_7_14_win :
101 {
102     compil_script : "Python-3.9.bat"
103     patches : []
104     build_depend : ['perl']
105 }
106  
107 version_3_9_14 :
108 {
109  compil_script : "Python-3.9.sh"
110  patches : []
111 }
112
113 version_3_9_14_win :
114 {
115     compil_script : "Python-3.9.bat"
116     patches : []
117     build_depend : ['perl']
118 }
119