tools/generate-news Add a script to generate a NEWS file template

This commit is contained in:
Ville Pätsi 2015-05-02 14:23:10 -04:00 committed by Michael Natterer
parent 1b61c121b9
commit 8b5308b97a
1 changed files with 30 additions and 0 deletions

30
tools/generate-news Executable file
View File

@ -0,0 +1,30 @@
#!/bin/bash
# Copyright (C) 2015 Ville Pätsi <drc@gimp.org>
SCRIPT_FOLDER=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
FIRST_COMMIT="$1"
[ -z "$FIRST_COMMIT" ] && FIRST_COMMIT="950412fbdc720fe2600f58f04f25145d9073895d" # First after tag 2.8.0
declare -a FOLDERS=('app tools menus etc' \
'libgimp libgimpbase libgimpcolor libgimpconfig libgimpmath libgimpmodule libgimpthumb libgimpwidgets' \
'plug-ins' \
'modules'
'build' \
'themes icons')
OUTPUTFILE=${SCRIPT_FOLDER}/../NEWS_since_"${FIRST_COMMIT}"
pushd ${SCRIPT_FOLDER}/..
for folderloop in "${FOLDERS[@]}"
do uppercase_folderloop="`echo ${folderloop:0:1} | tr '[:lower:]' '[:upper:]'`${folderloop:1}"
echo -e "${uppercase_folderloop}:\n" >> "${OUTPUTFILE}"
git log --date-order --reverse --date=short --pretty=format:"- %h %s" "${FIRST_COMMIT}"..HEAD ${folderloop} >> "${OUTPUTFILE}"
echo -e "\n\n" >> "${OUTPUTFILE}"
done
popd
echo "NEWS generated into ${OUTPUTFILE}"