# HG changeset patch # User Chris Cannam # Date 1306404186 -3600 # Node ID 6e2801ed68a14b8a13fbdd5db5309030730d8bb6 # Parent b2f15a7c66cc18b8bca141f509dd0247adfa001a Add archiving script, minor README update diff -r b2f15a7c66cc -r 6e2801ed68a1 README.txt --- a/README.txt Thu May 26 10:53:18 2011 +0100 +++ b/README.txt Thu May 26 11:03:06 2011 +0100 @@ -14,9 +14,7 @@ Thus: - * Clone this repository - - * hg update easyhg_kdiff3_simplifications + * if starting from repository: hg update easyhg_kdiff3_simplifications * cd kdiff3/src-QT4 diff -r b2f15a7c66cc -r 6e2801ed68a1 make-archive.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/make-archive.sh Thu May 26 11:03:06 2011 +0100 @@ -0,0 +1,12 @@ +#!/bin/bash +v="$1" +if [ -z "$v" ]; then + echo "Usage: $0 " + echo "where is the corresponding KDiff3-EasyHg version number" + exit 2 +fi +hg archive -r easyhg_kdiff3_simplifications \ + -I README.txt -I kdiff3/src-QT4 -I kdiff3/AUTHORS -I kdiff3/COPYING \ + "kdiff3-for-easyhg-$v.tar.gz" + +