mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'stable'

+7 -7
+1 -1
mkchangelog.sh
··· 5 5 # This would generate based on the last update of the ChangeLog, instead: 6 6 # lrev=$(git log -1 --pretty=format:"%H" ChangeLog) 7 7 8 - lrev=$(git describe --tags --match 'mutt-*-rel' --abbrev=0) 8 + lrev=`git describe --tags --match 'mutt-*-rel' --abbrev=0` 9 9 10 10 # This is a rough approximation of the official ChangeLog format 11 11 # previously generated by hg. Git doesn't provide enough formatting
+2 -2
mkreldate.sh
··· 3 3 # Generates the reldate.h contents from either git or the ChangeLog file 4 4 5 5 if [ -r ".git" ] && command -v git >/dev/null 2>&1; then 6 - reldate=$(TZ=UTC git log -1 --date=format-local:"%F" --pretty=format:"%cd") 6 + reldate=`TZ=UTC git log -1 --date=format-local:"%F" --pretty=format:"%cd"` 7 7 else 8 - reldate=$(head -n 1 ChangeLog | LC_ALL=C cut -d ' ' -f 1) 8 + reldate=`head -n 1 ChangeLog | LC_ALL=C cut -d ' ' -f 1` 9 9 fi 10 10 11 11 echo $reldate
+4 -4
version.sh
··· 10 10 { [ -r ".git" ] && command -v git >/dev/null 2>&1; } \ 11 11 || exec cat VERSION 12 12 13 - latesttag="$(git describe --tags --match 'mutt-*-rel' --abbrev=0)" 14 - version="$(echo $latesttag | sed -e s/mutt-// -e s/-rel// -e s/-/./g)" 15 - distance="$(git rev-list --count $latesttag..)" 16 - commitid="$(git rev-parse --short HEAD)" 13 + latesttag=`git describe --tags --match 'mutt-*-rel' --abbrev=0` 14 + version=`echo $latesttag | sed -e s/mutt-// -e s/-rel// -e s/-/./g` 15 + distance=`git rev-list --count $latesttag..` 16 + commitid=`git rev-parse --short HEAD` 17 17 18 18 if [ $distance -eq 0 ]; then 19 19 distance=