Changeset 5081:9d16f502b2ee for build-release
- Timestamp:
- 2007-04-06 13:14:24 (20 months ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
build-release (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
build-release
r4969 r5081 24 24 devel="devel/" # comment out for the stable branch 25 25 26 # test for uncommitted changes 27 if hg id | grep -q '+' 28 then 29 echo "Uncommitted changes" 30 exit 1 31 fi 32 26 33 # update the source 27 34 28 #cvsupdate35 hg update 29 36 30 37 # Do automated security checks … … 67 74 #cvs commit -m "automatic post-release commit for mutt-${VERSION}" 68 75 #make commit-changelog 69 #cvstag ${TAG}76 hg tag ${TAG} 70 77 71 78 # build the diff between the two releases 72 79 73 if test "$diff" = yes ; then 74 cvs rdiff -u -r ${OTAG} -r ${TAG} mutt | gzip -9 \ 80 if test "$diff" = yes 81 then 82 hg diff -r ${OTAG} -r ${TAG} | gzip -9 \ 75 83 > diff-${OVERSION}-${VERSION}.gz 76 84 fi … … 102 110 done 103 111 104 cvs update 112 hg update 113 gpg sign 105 114 106 115 # Finally, announce the new mutt to the public
