A few more codespell fixes
Promote examples/{tests,tutorials}/ to {tests,tutorials}/This shortens paths and improves consistency between test target namesand paths to the source and output files. Most of the work wascompl
Promote examples/{tests,tutorials}/ to {tests,tutorials}/This shortens paths and improves consistency between test target namesand paths to the source and output files. Most of the work wascompleted by this script, followed by mild cleanup of nonconformingcases.for makefile in `git ls-files 'src/*makefile'`; do if rg -q 'DIRS.*\bexamples\b' $makefile; then base=$(dirname $makefile) dirs=$(cd $base/examples && ls -d tests tutorials 2>/dev/null | xargs echo) perl -pi -e "s#^(DIRS.*)\bexamples\b#\1${dirs}#" $makefile git rm $base/examples/makefile for t in $dirs; do git mv $base/examples/$t $base/ perl -pi -e "s#^(LOCDIR[[:space:]]*=).*#\1 $base/$t/#" $base/$t done fidonegit grep -l -E -z 'examples/(tutorials|tests)' | xargs -0 perl -pi -e 's#examples/(tutorials|tests)#\1#g'git checkout @ \ src/docs/website/documentation/changes/ \ src/benchmarks/results/
show more ...
update Apple example project settings per XcodeCommit-type: bug-fix
Apple removed old locations of docsetsA google search revealed this new location but it it is not clear if this is the correct location to store themCommit-type: bug-fix, documentation
OSX: fix .dmg create script to set PETSC_DIRAlso fix paths to work on case sensitive file systems.
updates for generating Apple installations due to changes in locations of include files
some updates for building Apple installers
Minor OSX framework stuff
updates for iOS 8.0
explicitly turn off MPICH shared libraries in its configure if requested by userfix message for Apple XOS framework built by user
completed tools for generating OSX and iOS installersNote iOS framework not tested on iOS device
both OSX and iOS build .dmg distribution files and examplesCurrently OSX distributes the release version and iOS the simulator version eventually each will distribute both
converted OSX frameworker and installer to use location PETSc-OSX/release or debugonly release implemented
cleaup docs of makeframework
apple installer now makes two examples work as stand-alone code not requiring PETSc source tree
continue to add examples to Apple installer
make PETSc framework examples not search in $PETSC_ARCH location for framework
clearer documentation on installing and using PETSc.framework
start to add examples to PETSc.dmgfix OSX example projects to look for PETSc.framework in /Library/Frameworks
added missing files for building Apple Framework from PETSc
add systems/Apple/OSX/bin/makeall that handle entire building of PETSc.dmg installer for framework and docs
generate list of symbols fo xcode to use in quick searches of docs
build PETSc.docset outside of PETSc.frameworkmake installer allow installing PETSc.* in correct locations
DAMN crappy Apple documentation why don't you say where Nodes.xml goes!
trying to make docs readbable for xcode, currently docsetutil is stopping with useless error message
12