forked from DMTF/python-redfish-utility
-
Notifications
You must be signed in to change notification settings - Fork 41
/
MakefileWin36.ps1
144 lines (116 loc) · 6.27 KB
/
MakefileWin36.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
$START_DIR = "$(get-location)"
$product_version = $Env:MTX_PRODUCT_VERSION
if (!"$product_version") {
$product_version = "9.9.9.9"
}
$build_number = $Env:MTX_BUILD_NUMBER
if (!"$build_number") {
$build_number = "999"
}
Set-Location -Path "${START_DIR}"
$PYTHON_BASE="${START_DIR}\python310"
$PYTHONPATH="${START_DIR}\python310"
$PYTHON="${PYTHON_BASE}\python.exe"
$PIP="${PYTHON_BASE}\Scripts\pip.exe"
$PYINSTALLER="${PYTHON} -m PyInstaller"
$SIGNER="C:\Program Files\HPE\signing\signinghelper.exe"
Set-Location -Path "${START_DIR}"
if( Test-Path .\python310 ) { Remove-Item .\python310 -Recurse -Force }
New-Item -ItemType directory -Path .\python310
& 7z x -y -opython310 .\packaging\python3\windows\back2\Python38.zip
Get-ChildItem -Path ${PYTHON_BASE}
# Add FIPS requirements
# Add ssl, _ssl, and _hashlib which point to morpheus project OPENSSL
Copy-Item "${START_DIR}\packaging\python3\windows\back2\*.pyd" "$PYTHON_BASE\DLLs" -Recurse -Force
Copy-Item "${START_DIR}\packaging\python3\windows\back2\ssl.py" "$PYTHON_BASE\Lib" -Recurse -Force
#Copy-Item "${START_DIR}\packaging\python3\windows\back2\*.DLL" "$PYTHON_BASE\DLLs" -Recurse -Force
#Copy-Item "${START_DIR}\packaging\python3\windows\back2\*.cnf" "$PYTHON_BASE\DLLs" -Recurse -Force
#& ${PIP} -V
Set-Location -Path $START_DIR
Copy-Item "${START_DIR}\packaging\python3\windows\back2\print_ssl_version.py" "$(get-location)" -Recurse -Force
& ${PYTHON} print_ssl_version.py
Function InstallPythonModuleZip($python, $name, $version) {
Set-Location -Path "${START_DIR}"
if( Test-Path .\${name} ) { Remove-Item .\${name} -Recurse -Force }
New-Item -ItemType directory -Path "${START_DIR}\${name}"
& 7z x -y "-o${name}" .\packaging\ext\${name}-${version}.zip
Set-Location -Path "${START_DIR}\${name}\${name}-${version}"
& $python setup.py install
Set-Location -Path "${START_DIR}"
}
Function InstallPythonModule($python, $name, $version) {
Set-Location -Path "${START_DIR}"
if( Test-Path .\${name} ) { Remove-Item .\${name} -Recurse -Force }
New-Item -ItemType directory -Path "${START_DIR}\${name}"
& 7z x -y "-o${name}" .\packaging\ext\${name}-${version}.tar.gz
if (Test-Path .\${name}\dist ) {
& 7z x -y "-o${name}" "${START_DIR}\${name}\dist\${name}-${version}.tar"
}
else {
& 7z x -y "-o${name}" "${START_DIR}\${name}\${name}-${version}.tar"
}
Set-Location -Path "${START_DIR}\${name}\${name}-${version}"
& $python setup.py install
Set-Location -Path "${START_DIR}"
}
Function InstallPythonModulePIP($pip, $name, $version) {
Set-Location -Path "${START_DIR}"
if( Test-Path .\${name} ) { Remove-Item .\${name} -Recurse -Force }
New-Item -ItemType directory -Path "${START_DIR}\${name}"
& 7z x -y "-o${name}" .\packaging\ext\${name}-${version}.tar.gz
if (Test-Path .\${name}\dist ) {
& 7z x -y "-o${name}" "${START_DIR}\${name}\dist\${name}-${version}.tar"
}
else {
& 7z x -y "-o${name}" "${START_DIR}\${name}\${name}-${version}.tar"
}
Set-Location -Path "${START_DIR}\${name}\${name}-${version}"
& $pip install .
Set-Location -Path "${START_DIR}"
}
Copy-Item "$Env:MTX_STAGING_PATH\externals\*.zip" "${START_DIR}\packaging\ext"
InstallPythonModuleZip "${PYTHON}" "python-ilorest-library" "$Env:MX_ILOREST_LIB_VERSION"
InstallPythonModulePIP "${PIP}" "pyinstaller" "5.7.0"
#InstallPythonModule "${PYTHON}" "pyinstaller" "5.7.0"
#Set-Location -Path "${START_DIR}\packaging\ext"
#& ${PIP} install pyinstaller-5.7.0.tar.gz
Set-Location -Path "${START_DIR}"
Function CreateMSI($python, $pyinstaller, $pythondir, $arch) {
Set-Location -Path "${START_DIR}"
if( Test-Path $START_DIR\dist ) { Remove-Item $START_DIR\dist -Recurse -Force }
if( Test-Path $START_DIR\build ) { Remove-Item $START_DIR\build -Recurse -Force }
Set-Location -Path "${START_DIR}"
$DOUBLE_START_DIR = $START_DIR.replace("\", "\\")
$DOUBLE_PYTHONDIR = $pythondir.replace("\", "\\")
cat win32\rdmc-pyinstaller.spec.in | %{$_ -replace '\$pwd',"${DOUBLE_START_DIR}" } | %{$_ -replace '\$pythondir',"${DOUBLE_PYTHONDIR}" } > rdmc-pyinstaller.spec
# kill the BOM (stupid powershell)
$MyFile = Get-Content "${START_DIR}\rdmc-pyinstaller.spec"
$Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding($False)
[System.IO.File]::WriteAllLines("${START_DIR}\rdmc-pyinstaller.spec", $MyFile, $Utf8NoBomEncoding)
Write-Host "PyInstaller Begin"
Set-Location -Path "${START_DIR}\ilorest"
& ${PYTHON} -m PyInstaller --clean --log-level DEBUG "${START_DIR}\rdmc-pyinstaller.spec"
Write-Host "PyInstaller END"
& ${SIGNER} -i "${START_DIR}\ilorest\dist\ilorest.exe" -o $Env:MTX_COLLECTION_PATH -p $Env:MX_SIGN_PROJECT
#& perl C:\ABSbuild\CodeSigning\SignFile.pl "${START_DIR}\ilorest\dist\ilorest.exe"
Copy-Item "${START_DIR}\ilorest\dist\ilorest.exe" "${START_DIR}\ilorest.exe"
Copy-Item "$Env:MTX_STAGING_PATH\externals\*.dll" "${START_DIR}\ilorest\dist\"
& ${SIGNER} -i "${START_DIR}\ilorest\dist\ilorest_chif.dll" -o $Env:MTX_COLLECTION_PATH -p $Env:MX_SIGN_PROJECT
Copy-Item "${START_DIR}\packaging\packages\*.dll" "${START_DIR}\ilorest\dist\"
Copy-Item "${START_DIR}\rdmc-windows.conf" "${START_DIR}\ilorest\dist\redfish.conf"
Copy-Item "${START_DIR}\ilorest\dist" "${START_DIR}" -Recurse -Force
Set-Location -Path "${START_DIR}"
$product_version
cat win32\rdmc.${arch}.wxs | %{$_ -replace '\$product_version',"${product_version}" } > rdmc.wxs
& c:\ABSbuild\WiX36\candle.exe "-dsrcFolder=$(get-location)" rdmc.wxs
& c:\ABSbuild\WiX36\light.exe -b $(get-location) rdmc.wixobj -ext WixUIExtension -ext WixUtilExtension.dll -out "ilorest-${product_version}-${build_number}.${arch}.msi"
if ("$Env:MTX_COLLECTION_PATH") {
& ${SIGNER} -i "ilorest-${product_version}-${build_number}.${arch}.msi" -o "$Env:MTX_COLLECTION_PATH" -p $Env:MX_SIGN_PROJECT -a="-noextract -r noappend"
#& perl C:\ABSbuild\CodeSigning\SignFile.pl "ilorest-${product_version}-${build_number}.${arch}.msi"
Copy-Item "ilorest-${product_version}-${build_number}.${arch}.msi" "$Env:MTX_COLLECTION_PATH"
}
Set-Location -Path "${START_DIR}"
}
Set-Location -Path "${START_DIR}"
#Copy-Item "${START_DIR}\pywin32amd64\PLATLIB\pywin32_system32\*" .
CreateMSI "${PYTHON}" "${PYINSTALLER}" "${PYTHON_BASE}" "x86_64"