Framework: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2018-10-11 08:41:21 +02:00
parent 66ff7b608d
commit 591cb741e6
2 changed files with 9 additions and 6 deletions

View File

@ -74,8 +74,8 @@ KDE_FRAMEWORKS_VERSION?= 5.50.0
KDE_FRAMEWORKS_BRANCH?= stable
# Current KDE applications.
KDE_APPLICATIONS_VERSION?= 18.08.1
KDE_APPLICATIONS_SHLIB_VER?= 5.9.1
KDE_APPLICATIONS_VERSION?= 18.08.2
KDE_APPLICATIONS_SHLIB_VER?= 5.9.2
KDE_APPLICATIONS_BRANCH?= stable
# Upstream moves old software to Attic/. Specify the newest applications release there.
# Only the major version is used for the comparison.

View File

@ -405,10 +405,13 @@ commit()
log "Your commit message is:"
cat svnlog
answer=`ask "Do you want to edit again your commit message?"`
if [ "${answer}" = "y" ] ; then
$EDITOR svnlog
fi
answer=y
while [ "${answer}" = "y" ] ; do
answer=`ask "Do you want to edit your commit message again?"`
if [ "${answer}" = "y" ] ; then
$EDITOR svnlog
fi
done
answer=`ask "Do you want to commit now?"`