source: setup.py@ 967:843cc4f0f5d5

python3
Last change on this file since 967:843cc4f0f5d5 was 967:843cc4f0f5d5, checked in by István Váradi <ivaradi@…>, 5 years ago

Removed some superflouous stuff from the setup code (re #347)

File size: 10.6 KB
RevLine 
[20]1# -*- coding: iso-8859-2 -*-
2
3import sys
4import os
5from glob import glob
6from distutils.core import setup
[935]7from pathlib import Path
[20]8
[37]9scriptdir=os.path.dirname(sys.argv[0])
10sys.path.insert(0, os.path.join(scriptdir, "src"))
[20]11
[27]12import mlx.const
[37]13import mlx.update
[20]14
[947]15defaultManifest="""<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
16<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
17 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
18 <security>
19 <requestedPrivileges>
20 <requestedExecutionLevel level="asInvoker"/>
21 </requestedPrivileges>
22 </security>
23 </trustInfo>
24 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
25 <application>
26 <!--The ID below indicates application support for Windows Vista -->
27 <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
28 <!--The ID below indicates application support for Windows 7 -->
29 <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
30 <!--The ID below indicates application support for Windows 8 -->
31 <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
32 <!--The ID below indicates application support for Windows 8.1 -->
33 <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
34 <!--The ID below indicates application support for Windows 10 -->
35 <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
36 </application>
37 </compatibility>
38</assembly>"""
39
40adminManifest=defaultManifest.replace("asInvoker", "requireAdministrator")
41
42RT_MANIFEST=24
43
[137]44data_files = [("sounds", glob(os.path.join("sounds", "*.*")))]
[287]45for language in ["en", "hu"]:
46 data_files.append((os.path.join("doc", "manual", language),
47 glob(os.path.join("doc", "manual", language, "*.*"))))
48 data_files.append((os.path.join("locale", language, "LC_MESSAGES"),
49 [os.path.join("locale", language, "LC_MESSAGES",
50 "mlx.mo")]))
[875]51
52rootFiles = ["logo.png", "conn_grey.png", "conn_red.png", "conn_green.png"]
53if os.name!="nt":
54 rootFiles.append("Microsoft.VC90.CRT.manifest")
55data_files.append(("", rootFiles))
[682]56
[20]57if os.name=="nt":
58 import py2exe
59
[28]60 data_files.append(("", ["logo.ico"]))
[27]61
[20]62 msvcrDir = os.environ["MSVCRDIR"] if "MSVCRDIR" in os.environ else None
63 if msvcrDir:
[875]64 data_files.append(("Microsoft.VC90.CRT",
65 ["Microsoft.VC90.CRT.manifest"] +
66 glob(os.path.join(msvcrDir, "*.*"))))
[653]67 os.environ["PATH"] = os.environ["PATH"] + ";" + glob(os.path.join(msvcrDir))[0]
[20]68
69 gtkRuntimeDir = os.environ["GTKRTDIR"] if "GTKRTDIR" in os.environ else None
70 if gtkRuntimeDir:
[935]71 if gtkRuntimeDir.endswith("/mingw32"):
72 files = {}
[20]73
[935]74 for components in [ ["lib", "girepository-1.0"],
75 ["lib", "gdk-pixbuf-2.0", "2.10.0"],
76 ["share", "icons"],
77 ["share", "locale", "hu"],
78 ["share", "locale", "en"],
79 ["share", "themes"],
80 ["share", "glib-2.0", "schemas"]]:
81 path = os.path.join(*components)
82 p = Path(os.path.join(gtkRuntimeDir, path))
83 for f in p.glob("**/*"):
84 if f.is_file():
85 d = os.path.join(path, str(f.parent.relative_to(p)))
86 if d in files:
87 files[d].append(str(f))
88 else:
89 files[d] = [str(f)]
[373]90
[935]91 for path in files:
92 data_files.append((path, files[path]))
93 data_files.append(("",
94 [os.path.join(gtkRuntimeDir, "bin", "librsvg-2-2.dll"),
95 os.path.join(gtkRuntimeDir, "bin", "libcroco-0.6-3.dll")]))
96 else:
97 path = os.path.join("lib", "gtk-2.0", "2.10.0", "engines")
98 data_files.append((os.path.join("library", path),
99 [os.path.join(gtkRuntimeDir, path, "libwimp.dll")]))
100
101 path = os.path.join("share", "themes", "MS-Windows", "gtk-2.0")
102 data_files.append((os.path.join("library", path),
103 glob(os.path.join(gtkRuntimeDir, path, "*"))))
104
105 path = os.path.join("share", "locale", "hu", "LC_MESSAGES")
106 data_files.append((os.path.join("library", path),
107 glob(os.path.join(gtkRuntimeDir, path, "*"))))
108 path = os.path.join("share", "icons", "hicolor")
109 data_files.append((os.path.join("library", path),
110 glob(os.path.join(gtkRuntimeDir, path, "*"))))
[373]111
[653]112 cefDir = os.environ.get("CEFDIR")
113 if cefDir:
[935]114 for fileName in ["icudtl.dat", "subprocess.exe", "natives_blob.bin",
115 "snapshot_blob.bin", "v8_context_snapshot.bin",
116 "cef.pak", "cef_100_percent.pak",
117 "cef_200_percent.pak", "cef_extensions.pak"]:
[653]118 data_files.append(("", [os.path.join(cefDir, fileName)]))
119
120 data_files.append(("locales",
121 glob(os.path.join(cefDir, "locales", "*"))))
122
[916]123 if os.getenv("WINE")=="yes":
124 winsysdir=os.getenv("WINSYSDIR")
125
126 if gtkRuntimeDir:
127 gtkBinDir = os.path.join(gtkRuntimeDir, "bin")
[938]128 data_files.append(("", [
[916]129 os.path.join(gtkBinDir, "libatk-1.0-0.dll"),
[938]130 os.path.join(gtkBinDir, "libbz2-1.dll"),
[916]131 os.path.join(gtkBinDir, "libcairo-2.dll"),
[938]132 os.path.join(gtkBinDir, "libcairo-gobject-2.dll"),
133 os.path.join(gtkBinDir, "libcroco-0.6-3.dll"),
134 os.path.join(gtkBinDir, "libcrypto-1_1.dll"),
135 os.path.join(gtkBinDir, "libdatrie-1.dll"),
136 os.path.join(gtkBinDir, "libepoxy-0.dll"),
[916]137 os.path.join(gtkBinDir, "libexpat-1.dll"),
[938]138 os.path.join(gtkBinDir, "libexslt-0.dll"),
139 os.path.join(gtkBinDir, "libffi-6.dll"),
140 os.path.join(gtkBinDir, "libfontconfig-1.dll"),
141 os.path.join(gtkBinDir, "libfreetype-6.dll"),
142 os.path.join(gtkBinDir, "libfribidi-0.dll"),
143 os.path.join(gtkBinDir, "libgcc_s_dw2-1.dll"),
144 os.path.join(gtkBinDir, "libgdk_pixbuf-2.0-0.dll"),
[916]145 os.path.join(gtkBinDir, "libgio-2.0-0.dll"),
[938]146 os.path.join(gtkBinDir, "libgirepository-1.0-1.dll"),
147 os.path.join(gtkBinDir, "libglib-2.0-0.dll"),
148 os.path.join(gtkBinDir, "libgmodule-2.0-0.dll"),
[916]149 os.path.join(gtkBinDir, "libgobject-2.0-0.dll"),
[938]150 os.path.join(gtkBinDir, "libgraphite2.dll"),
151 os.path.join(gtkBinDir, "libharfbuzz-0.dll"),
152 os.path.join(gtkBinDir, "libiconv-2.dll"),
153 os.path.join(gtkBinDir, "libintl-8.dll"),
154 os.path.join(gtkBinDir, "liblzma-5.dll"),
155 os.path.join(gtkBinDir, "libmpdec-2.dll"),
[916]156 os.path.join(gtkBinDir, "libpango-1.0-0.dll"),
157 os.path.join(gtkBinDir, "libpangocairo-1.0-0.dll"),
[938]158 os.path.join(gtkBinDir, "libpangoft2-1.0-0.dll"),
159 os.path.join(gtkBinDir, "libpangowin32-1.0-0.dll"),
160 os.path.join(gtkBinDir, "libpcre-1.dll"),
161 os.path.join(gtkBinDir, "libpixman-1-0.dll"),
162 os.path.join(gtkBinDir, "libpng16-16.dll"),
163 os.path.join(gtkBinDir, "librsvg-2-2.dll"),
164 os.path.join(gtkBinDir, "libssl-1_1.dll"),
165 os.path.join(gtkBinDir, "libssp-0.dll"),
166 os.path.join(gtkBinDir, "libstdc++-6.dll"),
167 os.path.join(gtkBinDir, "libthai-0.dll"),
168 os.path.join(gtkBinDir, "libwinpthread-1.dll"),
169 os.path.join(gtkBinDir, "libxml2-2.dll"),
170 os.path.join(gtkBinDir, "libxslt-1.dll"),
171 os.path.join(gtkBinDir, "zlib1.dll"),
[916]172 ]))
173 if cefDir:
[938]174 data_files.append(("", [
175 os.path.join(cefDir, "libcef.dll"),
176 os.path.join(cefDir, "chrome_elf.dll")
[916]177 ]))
178
[919]179 print(data_files)
[653]180
[20]181 with open("mlx-common.nsh", "wt") as f:
[919]182 print('!define MLX_VERSION "%s"' % (mlx.const.VERSION), file=f)
[20]183 f.close()
[682]184else:
185 for (dirpath, dirnames, filenames) in os.walk("patches"):
186 if filenames:
187 filenames = [os.path.join(dirpath, filename)
188 for filename in filenames]
189 data_files.append((dirpath, filenames))
190
191
[20]192long_description="""MAVA Logger X
193
194This is a program to log and evaluate the actions
195of a pilot flying a virtual Malév flight operated
196by MAVA."""
197
198setup(name = "mlx",
[27]199 version = mlx.const.VERSION,
[20]200 description = "MAVA Logger X",
201 long_description = long_description,
202 author = "István Váradi",
203 author_email = "ivaradi@gmail.com",
204 url = "http://mlx.varadiistvan.hu",
205 package_dir = { "" : "src" },
[28]206 packages = ["mlx", "mlx.gui"],
[497]207 requires = ["pyuipc", "xplra"],
[27]208 windows = [{ "script" : "runmlx.py",
[947]209 "icon_resources" : [(1, "logo.ico")],
210 "other_resources": [(RT_MANIFEST, 1, defaultManifest)]},
[36]211 { "script" : "mlxupdate.py",
[947]212 "other_resources": [(RT_MANIFEST, 1, adminManifest)]}],
[935]213 options = { "py2exe" : { "packages" : "gi, lxml",
[37]214 "skip_archive": True} },
[935]215 zipfile = "library",
[20]216 data_files = data_files,
217 platforms = ["Win32", "Linux"],
218 license = "Public Domain"
219 )
[37]220
221if os.name=="nt":
222 mlx.update.buildManifest(os.path.join(scriptdir, "dist"))
[378]223 with open(os.path.join(scriptdir, "dist", "Uninstall.conf"), "wt") as f:
[919]224 print("StartMenuFolder=MAVA Logger X", file=f)
225 print("LinkName=MAVA Logger X", file=f)
Note: See TracBrowser for help on using the repository browser.