summaryrefslogtreecommitdiff
path: root/dist/s_readme
blob: f497a04fa1db85b4a5b59565a3780b81381af7c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#! /bin/sh

t=__wt.$$
trap 'rm -f $t; exit 0' 0 1 2 3 13 15
f=../README

. ../RELEASE_INFO

force=no
while :
	do case "$1" in
	-f)	# Force versions to be updated
		force=yes
		shift;;
	*)
		break;;
	esac
done

# If the version hasn't changed and we aren't forcing the issue, we're done.
# Don't generate a new README file just because the date changed unless forced:
# that happens all the time.
if test "$force" = no ; then
	cnt=`(sed -e q < $f; echo "$WIREDTIGER_VERSION_STRING") |
	    sed -e 's/:.*//' | sort -u | wc -l`
	test $cnt -eq 1 && exit 0
fi

cat << END_TEXT > $t
$WIREDTIGER_VERSION_STRING

This is version $WIREDTIGER_VERSION of WiredTiger.

WiredTiger release packages and documentation can be found at:

	http://source.wiredtiger.com/

WiredTiger uses JIRA for issue management:

	http://jira.mongodb.org/browse/WT

Please do not report issues through GitHub.

Information on configuring, building and installing WiredTiger can be
found at:

	http://source.wiredtiger.com/$WIREDTIGER_VERSION/install.html

WiredTiger licensing information can be found at:

	http://source.wiredtiger.com/license.html

For general questions and discussion, please use the WiredTiger mailing
list:

	http://groups.google.com/group/wiredtiger-users
END_TEXT

cmp $t $f > /dev/null 2>&1 ||
    (echo "Building $f" && rm -f $f && cp $t $f)