Overview
Comment: | Added README and ChangeLog |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 82027084f1fe3328453fe1b5452b9008e320e005 |
User & Date: | rkeene on 2009-04-18 03:36:55 |
Other Links: | manifest | tags |
Context
2009-04-18
| ||
03:39 | Changed build script to copy kits to root of archive check-in: 40f0c560a5 user: rkeene tags: trunk | |
03:36 | Added README and ChangeLog check-in: 82027084f1 user: rkeene tags: trunk | |
03:34 | Renamed teapot project to teaparty project to be less ambigious check-in: a1ae48180e user: rkeene tags: trunk | |
Changes
Added HEADER version [9cc3c39871].
> > > > > > > > |
1 2 3 4 5 6 7 8 |
@@UTIL@@ @@VERS@@ Release information: pkg: @@UTIL@@ version @@VERS@@ url: http://www.rkeene.org/devel/@@UTIL@@-@@VERS@@.tar.gz date: @@DATE@@ -------------------------------------------------------------------------- |
Added README.txt version [90191f367c].
> |
1 |
This is a very basic implementation of a Teapot client
|
Modified build/makearch.info from [3e5fb22bda] to [df10183a01].
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
..
36
37
38
39
40
41
42
43
|
# Space sperated list of documents, if they exist, they will be
# prefixed with the contents of the DOC_HDR file and substitution
# will occur:
# @@UTIL@@ becomes the utility name ${UTIL}
# @@VERS@@ becomes the utility version
# @@DATE@@ becomes the current date
DOCS="README"
DOC_HDR="HEADER"
# These files follow the same convention as DOCS, but don't have the header
# tacked onto them.
UPDATE_VARS=""
# This script is executed immediately after copying the files
................................................................................
BEFORE=""
# This script is executed immediately prior to creation of the
# tarball
AFTER=""
# Files matching these (space-seperated) patterns are deleted
TMPS="*.out HEADER"
|
|
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
..
36
37
38
39
40
41
42
43
|
# Space sperated list of documents, if they exist, they will be # prefixed with the contents of the DOC_HDR file and substitution # will occur: # @@UTIL@@ becomes the utility name ${UTIL} # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date DOCS="README.txt ChangeLog" DOC_HDR="HEADER" # These files follow the same convention as DOCS, but don't have the header # tacked onto them. UPDATE_VARS="" # This script is executed immediately after copying the files ................................................................................ BEFORE="" # This script is executed immediately prior to creation of the # tarball AFTER="" # Files matching these (space-seperated) patterns are deleted TMPS="*.out HEADER build" |