1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#!/bin/sh
#
# KIM-API: An API for interatomic models
# Copyright (c) 2013--2022, Regents of the University of Minnesota.
# All rights reserved.
#
# Contributors:
# Ryan S. Elliott
#
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
#
# Release: This file is part of the kim-api.git repository.
#
# filter file list # NOTE: keep in sync with verion in git-hooks/pre-commit
filter_file_list () {
local file_list="$1"
local ignore_file="`git rev-parse --show-toplevel`/.format-ignore"
files_to_check_format=""
for file in ${file_list}; do
local keep=`printf ${file} | sed -e 's/^.*\.f90$//'`
if test -f "${ignore_file}"; then
if test `grep -c "^${file}$" "${ignore_file}"` -gt 0; then
# ignore
printf "File '${file}' is in format-ignore file: ignoring.\n"
keep=no
fi
fi
if test x"${keep}" = x""; then
files_to_check_format="${files_to_check_format} ${file}"
fi
done
}
# goto the top level repo directory
if THE_GIT_DIR="`git rev-parse --show-toplevel 2> /dev/null`"; then
cd "${THE_GIT_DIR}"
else
printf "Not in the git repo. Exiting...\n"
exit 1
fi
files=`find . -name "*.f90" | \
sed -e 's|^\./||'`
printf "Executing fprettify on all f90 files in directory ${PWD}.\n"
files_to_check_format=""
filter_file_list "${files}"
fprettify ${files_to_check_format}
|