mirror of
				https://github.com/9001/copyparty.git
				synced 2025-11-04 05:43:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			112 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
run ./build.sh in git-bash to build + upload the exe
 | 
						|
 | 
						|
 | 
						|
## ============================================================
 | 
						|
## first-time setup on a stock win7x32sp1 and/or win10x64 vm:
 | 
						|
## 
 | 
						|
 | 
						|
to obtain the files referenced below, see ./deps.txt
 | 
						|
 | 
						|
download + install git (32bit OK on 64):
 | 
						|
http://192.168.123.1:3923/ro/pyi/Git-2.44.0-32-bit.exe
 | 
						|
 | 
						|
===[ copy-paste into git-bash ]================================
 | 
						|
uname -s | grep NT-10 && w10=1 || {
 | 
						|
  w7=1; uname -s | grep WOW64 && w7x64=1 || w7x32=1
 | 
						|
}
 | 
						|
fns=(
 | 
						|
  altgraph-0.17.4-py2.py3-none-any.whl
 | 
						|
  packaging-24.0-py3-none-any.whl
 | 
						|
  pefile-2023.2.7-py3-none-any.whl
 | 
						|
  pyinstaller_hooks_contrib-2024.3-py2.py3-none-any.whl
 | 
						|
  pywin32_ctypes-0.2.2-py3-none-any.whl
 | 
						|
  setuptools-68.2.2-py3-none-any.whl
 | 
						|
)
 | 
						|
[ $w10 ] && fns+=(
 | 
						|
  pyinstaller-6.5.0-py3-none-win_amd64.whl
 | 
						|
  Jinja2-3.1.3-py3-none-any.whl
 | 
						|
  MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl
 | 
						|
  mutagen-1.47.0-py3-none-any.whl
 | 
						|
  pillow-10.3.0-cp311-cp311-win_amd64.whl
 | 
						|
  python-3.11.9-amd64.exe
 | 
						|
  upx-4.2.2-win64.zip
 | 
						|
)
 | 
						|
[ $w7 ] && fns+=(
 | 
						|
  pyinstaller-5.13.2-py3-none-win32.whl
 | 
						|
  certifi-2024.2.2-py3-none-any.whl
 | 
						|
  charset_normalizer-3.3.2-cp37-cp37m-win32.whl
 | 
						|
  idna-3.6-py3-none-any.whl
 | 
						|
  requests-2.31.0-py3-none-any.whl
 | 
						|
  urllib3-1.26.18-py2.py3-none-any.whl
 | 
						|
  upx-4.2.2-win32.zip
 | 
						|
)
 | 
						|
[ $w7 ] && fns+=(
 | 
						|
  future-1.0.0-py3-none-any.whl
 | 
						|
  importlib_metadata-6.7.0-py3-none-any.whl
 | 
						|
  pip-24.0-py3-none-any.whl
 | 
						|
  typing_extensions-4.7.1-py3-none-any.whl
 | 
						|
  zipp-3.15.0-py3-none-any.whl
 | 
						|
)
 | 
						|
[ $w7x64 ] && fns+=(
 | 
						|
  windows6.1-kb2533623-x64.msu
 | 
						|
  python-3.7.9-amd64.exe
 | 
						|
)
 | 
						|
[ $w7x32 ] && fns+=(
 | 
						|
  windows6.1-kb2533623-x86.msu
 | 
						|
  pyinstaller-5.13.2-py3-none-win32.whl
 | 
						|
  python-3.7.9.exe
 | 
						|
)
 | 
						|
dl() { curl -fkLOC- "$1" && return 0; echo "$1"; return 1; }
 | 
						|
cd ~/Downloads &&
 | 
						|
for fn in "${fns[@]}"; do
 | 
						|
  dl "https://192.168.123.1:3923/ro/pyi/$fn" || {
 | 
						|
    echo ERROR; ok=; break
 | 
						|
  }
 | 
						|
done
 | 
						|
 | 
						|
manually install:
 | 
						|
  windows6.1-kb2533623 + reboot
 | 
						|
  python-3.7.9
 | 
						|
 | 
						|
===[ copy-paste into git-bash ]================================
 | 
						|
uname -s | grep NT-10 && w10=1 || w7=1
 | 
						|
[ $w7 ] && pyv=37 || pyv=311
 | 
						|
appd=$(cygpath.exe "$APPDATA")
 | 
						|
cd ~/Downloads &&
 | 
						|
yes | unzip upx-*-win32.zip &&
 | 
						|
mv upx-*/upx.exe . &&
 | 
						|
python -m ensurepip &&
 | 
						|
{ [ $w10 ] || python -m pip install --user -U pip-*.whl; } &&
 | 
						|
python -m pip install --user -U packaging-*.whl &&
 | 
						|
{ [ $w7 ] || python -m pip install --user -U {setuptools,mutagen,Pillow,Jinja2,MarkupSafe}-*.whl; } &&
 | 
						|
{ [ $w10 ] || python -m pip install --user -U {requests,urllib3,charset_normalizer,certifi,idna}-*.whl; } &&
 | 
						|
{ [ $w10 ] || python -m pip install --user -U future-*.whl importlib_metadata-*.whl typing_extensions-*.whl zipp-*.whl; } &&
 | 
						|
python -m pip install --user -U pyinstaller-*.whl pefile-*.whl pywin32_ctypes-*.whl pyinstaller_hooks_contrib-*.whl altgraph-*.whl &&
 | 
						|
sed -ri 's/--lzma/--best/' $appd/Python/Python$pyv/site-packages/pyinstaller/building/utils.py &&
 | 
						|
curl -fkLO https://192.168.123.1:3923/cpp/scripts/uncomment.py &&
 | 
						|
python uncomment.py 1 $(for d in $appd/Python/Python$pyv/site-packages/{requests,urllib3,charset_normalizer,certifi,idna,mutagen,PIL,jinja2,markupsafe}; do find $d -name \*.py; done) &&
 | 
						|
cd &&
 | 
						|
rm -f build.sh &&
 | 
						|
curl -fkLO https://192.168.123.1:3923/cpp/scripts/pyinstaller/build.sh &&
 | 
						|
{ [ $w10 ] || curl -fkLO https://192.168.123.1:3923/cpp/scripts/pyinstaller/up2k.sh; } &&
 | 
						|
echo ok
 | 
						|
# python -m pip install --user -U Pillow-9.2.0-cp37-cp37m-win32.whl
 | 
						|
# sed -ri 's/, bestopt, /]+bestopt+[/' $APPDATA/Python/Python37/site-packages/pyinstaller/building/utils.py
 | 
						|
# sed -ri 's/(^\s+bestopt = ).*/\1["--best","--lzma","--ultra-brute"]/' $APPDATA/Python/Python37/site-packages/pyinstaller/building/utils.py
 | 
						|
 | 
						|
 | 
						|
## ============================================================
 | 
						|
## notes
 | 
						|
##
 | 
						|
 | 
						|
size   t-unpack  virustotal                     cmnt
 | 
						|
8059k  0m0.375s  5/70 generic-only, sandbox-ok  no-upx
 | 
						|
7095k  0m0.563s  4/70 generic-only, sandbox-ok  standard-upx
 | 
						|
6958k  0m0.578s  7/70 generic-only, sandbox-ok  upx+upx
 | 
						|
 | 
						|
use python 3.7 since 3.8 onwards requires KB2533623 on target
 | 
						|
 | 
						|
generate loader.rc template:
 | 
						|
%appdata%\python\python37\scripts\pyi-grab_version C:\Users\ed\AppData\Local\Programs\Python\Python37\python.exe
 | 
						|
 |