masqmail

view misc/list-versions @ 221:8742d2cee364

added a note to the long vs. int question in md5.h Solar Designer explained to me in privat conversation that the int had performed much better on some systems and that 16bit ints are very rare. Still I like using the long.
author meillo@marmaro.de
date Fri, 23 Jul 2010 10:53:04 +0200
parents
children
line source
1 #!/bin/sh
2 #
3 # list the version numbers in several important files
4 # run this script before generating a release
6 (
7 grep '^AC_INIT' /dev/null configure.*
8 printf "Changelog:"
9 sed -n '/^[0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}/{p;q}' ChangeLog
10 printf "NEWS:"
11 sed -n '/^[0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}/{p;q}' NEWS
12 grep '^\.TH' /dev/null man/*.[0-9]
13 ) | sed 's~\([^:]*\):.*\([0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}\).*~\2 \1~'