mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
64 lines
2.2 KiB
Bash
Executable File
64 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
###########################################################################
|
|
# astyle-all.sh
|
|
# ---------------------
|
|
# Date : August 2008
|
|
# Copyright : (C) 2008 by Juergen E. Fischer
|
|
# Email : jef at norbit dot de
|
|
###########################################################################
|
|
# #
|
|
# This program is free software; you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation; either version 2 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
###########################################################################
|
|
|
|
|
|
PATH=$PATH:$(dirname $0)
|
|
|
|
set -e
|
|
|
|
export elcr="$(tput el)$(tput cr)"
|
|
|
|
find python src tests -type f -print | while read f; do
|
|
case "$f" in
|
|
src/app/gps/qwtpolar-*|src/core/spatialite/*|src/core/spatialindex/src/*|src/core/gps/qextserialport/*|src/plugins/grass/qtermwidget/*|src/astyle/*|python/pyspatialite/*|src/providers/sqlanywhere/sqlanyconnection/*|src/providers/spatialite/qspatialite/*|src/plugins/dxf2shp_converter/dxflib/src/*|src/plugins/globe/osgEarthQt/*|src/plugins/globe/osgEarthUtil/*)
|
|
echo $f skipped
|
|
continue
|
|
;;
|
|
|
|
*.cpp|*.h|*.c|*.h|*.cxx|*.hxx|*.c++|*.h++|*.cc|*.hh|*.C|*.H|*.hpp)
|
|
cmd=astyle.sh
|
|
;;
|
|
|
|
*.ui|*.qgm|*.txt|*.t2t|*.sip|resources/context_help/*)
|
|
cmd="flip -ub"
|
|
;;
|
|
|
|
*.py)
|
|
cmd="perl -i.prepare -pe 's/[\r\t ]+$//;'"
|
|
;;
|
|
|
|
*)
|
|
echo -ne "$f skipped $elcr"
|
|
continue
|
|
;;
|
|
esac
|
|
|
|
if [ -f "$f.astyle" ]; then
|
|
# reformat backup
|
|
cp "$f.astyle" "$f"
|
|
touch -r "$f.astyle" "$f"
|
|
else
|
|
# make backup
|
|
cp "$f" "$f.astyle"
|
|
touch -r "$f" "$f.astyle"
|
|
fi
|
|
|
|
echo -ne "Reformating $f $elcr"
|
|
eval "$cmd '$f'"
|
|
done
|
|
|
|
echo
|