bump product version to 4.1.6.2
[LibreOffice.git] / scp2 / source / python / file_python.scp
bloba21636df9fa2543a81a5fb858353eda81d311998
1 /*
2  * This file is part of the LibreOffice project.
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  *
8  * This file incorporates work covered by the following license notice:
9  *
10  *   Licensed to the Apache Software Foundation (ASF) under one or more
11  *   contributor license agreements. See the NOTICE file distributed
12  *   with this work for additional information regarding copyright
13  *   ownership. The ASF licenses this file to you under the Apache
14  *   License, Version 2.0 (the "License"); you may not use this file
15  *   except in compliance with the License. You may obtain a copy of
16  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
17  */
19 #include "macros.inc"
21 #ifndef DISABLE_PYUNO
23 File gid_File_scriptproviderforpython
24     TXT_FILE_BODY;
25     Dir = FILELIST_DIR;
26     Name = "scriptproviderforpython.filelist";
27     Styles = (FILELIST, PACKED);
28 End
30 File gid_File_Lib_Pyuno
31     LIB_FILE_BODY;
32   #ifdef UNX
33     Name = STRING(CONCAT2(libpyuno,UNXSUFFIX));
34   #else
35   #ifdef MSVC_PKG_DEBUG_RUNTIME
36     Name = "pyuno_d.pyd";
37   #else
38     Name = "pyuno.pyd";
39   #endif // MSVC_PKG_DEBUG_RUNTIME
40   #endif
41     Dir = gid_Brand_Dir_Program;
42     Styles = (PACKED);
43 End
45 STD_LIB_FILE( gid_File_Lib_Pythonloader, pythonloader )
47 File gid_File_Py_Unohelper
48     TXT_FILE_BODY;
49     Dir = gid_Brand_Dir_Program;
50     Name = "pyuno/unohelper.py";
51     Styles = (PACKED);
52 End
54 File gid_File_Py_Uno
55     TXT_FILE_BODY;
56     Dir = gid_Brand_Dir_Program;
57     Name = "pyuno/uno.py";
58     Styles = (PACKED);
59 End
61 File gid_File_Py_Pythonloader
62     TXT_FILE_BODY;
63     Dir = gid_Brand_Dir_Program;
64     Name = "pyuno/pythonloader.py";
65     Styles = (PACKED);
66 End
68 #ifndef SYSTEM_PYTHON
69 File gid_File_Py_Bin_Python
70     BIN_FILE_BODY;
71     Name = EXENAME(pyuno/python);
72     Dir = gid_Brand_Dir_Program;
73     Styles = (PACKED);
74 End
76 #ifndef MACOSX
77 Directory gid_Dir_Py_PythonCore
78     ParentID = gid_Brand_Dir_Program;
79     HostName = STRING(CONCAT2(python-core-,PYVERSION));
80 End
82 Directory gid_Dir_Py_PythonCore_Lib
83     ParentID = gid_Dir_Py_PythonCore;
84     HostName = "lib";
85 End
86 #endif
88 File gid_File_Py_Python_Core
89     TXT_FILE_BODY;
90     Dir = FILELIST_DIR;
91     Name = "python3.filelist";
92     Styles = (FILELIST,USE_INTERNAL_RIGHTS);
93 End
95 #ifdef WNT
96 Directory gid_Dir_Py_PythonCore_Bin
97     ParentID = gid_Dir_Py_PythonCore;
98     HostName = "bin";
99 End
100 #endif
102 #endif // SYSTEM_PYTHON
104 //Scripting Framework Python example scripts
106 File gid_File_Scripts_Python
107     Dir = FILELIST_DIR;
108     TXT_FILE_BODY;
109     Styles = (FILELIST);
110     Name = "scripting_ScriptsPython.filelist";
113 // Scripting Framework Python configuration settings
115 File gid_File_Share_Registry_Pyuno_Xcd
116     TXT_FILE_BODY;
117     Styles = (PACKED);
118     Dir = gid_Brand_Dir_Share_Registry;
119     Name = "pyuno.xcd";
122 #ifdef UNX
124 // pyuno.so even on Mac OS X, because it is a python module
125 File gid_File_Pyuno
126     LIB_FILE_BODY;
127     Name = "pyuno.so";
128     Dir = gid_Brand_Dir_Program;
129     Styles = (PACKED);
132 #endif
134 #ifdef MINGW_SYSTEM_PYTHON
136 // python_wrapper.exe
137 File gid_File_Py_Bin_Python
138     BIN_FILE_BODY;
139     Name = EXENAME(pyuno/python);
140     Dir = gid_Brand_Dir_Program;
141     Styles = (PACKED);
144 Directory gid_Dir_Py_PythonCore
145     ParentID = gid_Brand_Dir_Program;
146     HostName = STRING(CONCAT2(python-core-,PYVERSION));
149 Directory gid_Dir_Py_PythonCore_Lib
150     ParentID = gid_Dir_Py_PythonCore;
151     HostName = "lib";
154 File gid_File_Py_Python_Core
155     TXT_FILE_BODY;
156     Dir = gid_Dir_Py_PythonCore_Lib;
157     Name = STRING(CONCAT3(python-core-,PYVERSION,.zip));
158     Styles = (ARCHIVE);
161 Directory gid_Dir_Py_PythonCore_Bin
162     ParentID = gid_Dir_Py_PythonCore;
163     HostName = "bin";
166 File gid_File_Py_Python_Bin
167     BIN_FILE_BODY;
168     Dir = gid_Dir_Py_PythonCore_Bin;
169     Name = EXENAME(python);
170     Styles = (PACKED);
174 #endif //MINGW_SYSTEM_PYTHON
176 // DISABLE_PYUNO
177 #endif