Include MariaDB in Windows kit

This commit is contained in:
2Shirt 2022-09-28 09:57:03 -07:00
parent 5cbe23166a
commit 9b53a6d79d
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -98,6 +98,15 @@ if ($MyInvocation.InvocationName -ne ".") {
# Python: docopt
Copy-Item -Path "$WD\docopt\docopt-0.6.2-py2.py3-none-any.whl" -Destination "$Temp\docopt.whl"
# Python: mariadb
$DownloadPage = "https://pypi.org/project/mariadb"
$RegEx = "href=.*-cp310-cp310-win32.whl"
$Url = FindDynamicUrl $DownloadPage $RegEx
DownloadFile -Path $Temp -Name "mariadb32.whl" -Url $Url
$RegEx = "href=.*-cp310-cp310-win_amd64.whl"
$Url = FindDynamicUrl $DownloadPage $RegEx
DownloadFile -Path $Temp -Name "mariadb64.whl" -Url $Url
# Python: psutil
$DownloadPage = "https://pypi.org/project/psutil/"
$RegEx = "href=.*-cp310-cp310-win32.whl"
@ -161,6 +170,7 @@ if ($MyInvocation.InvocationName -ne ".") {
"chardet.whl",
"docopt.whl",
"idna.whl",
"mariadb$Arch.whl",
"pytz.whl",
"psutil$Arch.whl",
"requests.whl",