Changeset 5421
- Timestamp:
- Dec 8, 2022 4:53:03 PM (6 months ago)
- Location:
- install
- Files:
-
- 26 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
install/build_scripts/win64.bat
r5418 r5421 68 68 call conda list -f m2w64-gcc-fortran | findstr /B /C:# /V >> Build.notes.txt 69 69 70 REM====== upload to svn server70 REM====== upload binaries to svn server 71 71 cd .. 72 72 dir … … 104 104 call constructor g2full 105 105 if ERRORLEVEL 1 exit 1 106 REM make copy of current version as "latest" 106 107 for /f "usebackq" %%i in ( `dir gsas2full*.exe /b` ) do copy %%i gsas2full-Latest-Windows-x86_64.exe 107 108 for /f "usebackq" %%i in ( `dir gsas2full*.exe /b` ) do scp %%i svnpgsas@s11bmbcda.xray.aps.anl.gov:/home/joule/SVN/subversion/pyGSAS/downloads -
install/g2complete/build.sh.template
r4741 r5421 8 8 mkdir -p $PREFIX/GSASII 9 9 cp $RECIPE_DIR/src/bootstrap.py $PREFIX/GSASII 10 python $PREFIX/GSASII/bootstrap.py --binary=**npversion**,**pyversion** > $PREFIX/GSASII/conda_G2build_out.log 2>&1 10 if [[ $OSTYPE == 'darwin'* ]]; then 11 echo 'macOS: creating svn directory' 12 svn export https://subversion.xray.aps.anl.gov/pyGSAS/install/svn/homebrew_MacOS $PREFIX/SVN > $PREFIX/GSASII/conda_G2build_out.log 2>&1 13 fi 14 python $PREFIX/GSASII/bootstrap.py --binary=**npversion**,**pyversion** >> $PREFIX/GSASII/conda_G2build_out.log 2>&1 -
install/g2complete/meta.yaml.template
r5418 r5421 20 20 - conda 21 21 - requests 22 - subversion [ not win]22 - subversion [linux] 23 23 - hdf5 24 24 - h5py -
install/g2full/g2postinstall.bat.template
r5414 r5421 7 7 echo python %PREFIX%\GSASII\bootstrap.py >> "%PREFIX%\start_G2_bootstrap.bat" 8 8 REM constructor fixups: missing empty directories & changed binary files ======= 9 mkdir $PREFIX/GSASII/.svn/tmp9 mkdir %PREFIX%\GSASII\.svn\tmp 10 10 %PREFIX%\GSASII\SVN\svn.exe revert -R %PREFIX%\GSASII\bindist 11 11 -
install/g2full/g2postinstall.sh.template
r4759 r5421 6 6 echo "$PREFIX/bin/python $PREFIX/GSASII/bootstrap.py" >> $PREFIX/start_G2_bootstrap.sh 7 7 # constructor fixups: missing empty directories & changed binary files ====================== 8 mkdir -p $PREFIX/GSASII/.svn/tmp 8 if [[ (! -d $PREFIX/GSASII/.svn/tmp) ]] 9 then 10 mkdir -p $PREFIX/GSASII/.svn/tmp 11 fi 9 12 $PREFIX/bin/svn revert $PREFIX/GSASII/bindist/* 10 13 # … … 13 16 # try to update to latest GSAS-II version (will fail if no network) 14 17 #$PREFIX/bin/python $PREFIX/GSASII/bootstrap.py --noinstall >> $PREFIX/GSASII/conda_inst.log 2>&1 15 $PREFIX/bin/python $PREFIX/GSASII/bootstrap.py --noinstall18 $PREFIX/bin/python $PREFIX/GSASII/bootstrap.py --noinstall 16 19 # finish installation 17 20 #$PREFIX/bin/python $PREFIX/GSASII/bootstrap.py --nonet > $PREFIX/GSASII/conda_inst.log 2>&1 18 $PREFIX/bin/python $PREFIX/GSASII/bootstrap.py --nonet21 $PREFIX/bin/python $PREFIX/GSASII/bootstrap.py --nonet 19 22 # create shortcut to start GSAS-II ======================================================= 20 23 echo "# Commands to start GSAS-II" > $PREFIX/start_GSASII.sh
Note: See TracChangeset
for help on using the changeset viewer.