libncurses: updated to 6.0
[tomato.git] / release / src / router / libncurses / test / make-tar.sh
blob9371ac9afd83bbb388f1f3fd561fbc4f903949c2
1 #!/bin/sh
2 # $Id: make-tar.sh,v 1.13 2015/05/16 17:12:45 tom Exp $
3 ##############################################################################
4 # Copyright (c) 2010-2013,2015 Free Software Foundation, Inc. #
5 # #
6 # Permission is hereby granted, free of charge, to any person obtaining a #
7 # copy of this software and associated documentation files (the "Software"), #
8 # to deal in the Software without restriction, including without limitation #
9 # the rights to use, copy, modify, merge, publish, distribute, distribute #
10 # with modifications, sublicense, and/or sell copies of the Software, and to #
11 # permit persons to whom the Software is furnished to do so, subject to the #
12 # following conditions: #
13 # #
14 # The above copyright notice and this permission notice shall be included in #
15 # all copies or substantial portions of the Software. #
16 # #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
20 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
22 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
23 # DEALINGS IN THE SOFTWARE. #
24 # #
25 # Except as contained in this notice, the name(s) of the above copyright #
26 # holders shall not be used in advertising or otherwise to promote the sale, #
27 # use or other dealings in this Software without prior written #
28 # authorization. #
29 ##############################################################################
30 # Construct a tar-file containing only the test tree as well as its associated
31 # scripts. The reason for doing that is to simplify distributing the test
32 # programs as a separate package.
34 CDPATH=:
35 export CDPATH
37 TARGET=`pwd`
39 : ${PKG_NAME:=ncurses-examples}
40 : ${ROOTNAME:=ncurses-test}
41 : ${DESTDIR:=$TARGET}
42 : ${TMPDIR:=/tmp}
44 grep_assign() {
45 grep_assign=`egrep "^$2\>" "$1" | sed -e "s/^$2[ ]*=[ ]*//" -e 's/"//g'`
46 eval $2=\"$grep_assign\"
49 grep_patchdate() {
50 grep_assign ../dist.mk NCURSES_MAJOR
51 grep_assign ../dist.mk NCURSES_MINOR
52 grep_assign ../dist.mk NCURSES_PATCH
55 # The rpm spec-file in the ncurses tree is a template. Fill in the version
56 # information from dist.mk
57 edit_specfile() {
58 sed \
59 -e "s/\\<MAJOR\\>/$NCURSES_MAJOR/g" \
60 -e "s/\\<MINOR\\>/$NCURSES_MINOR/g" \
61 -e "s/\\<YYYYMMDD\\>/$NCURSES_PATCH/g" $1 >$1.new
62 chmod u+w $1
63 mv $1.new $1
66 make_changelog() {
67 test -f $1 && chmod u+w $1
68 cat >$1 <<EOF
69 `echo $PKG_NAME|tr '[A-Z]' '[a-z]'` ($NCURSES_MAJOR.$NCURSES_MINOR+$NCURSES_PATCH) unstable; urgency=low
71 * snapshot of ncurses subpackage for $PKG_NAME.
73 -- `head -n 1 $HOME/.signature` `date -R`
74 EOF
77 # This can be run from either the subdirectory, or from the top-level
78 # source directory. We will put the tar file in the original directory.
79 test -d ./test && cd ./test
80 SOURCE=`cd ..;pwd`
82 BUILD=$TMPDIR/make-tar$$
83 trap "cd /; rm -rf $BUILD; exit 0" 0 1 2 5 15
85 umask 077
86 if ! ( mkdir $BUILD )
87 then
88 echo "? cannot make build directory $BUILD"
91 umask 022
92 mkdir $BUILD/$ROOTNAME
94 cp -p -r * $BUILD/$ROOTNAME/ || exit
96 # Add the config.* utility scripts from the top-level directory.
97 for i in . ..
99 for j in config.guess config.sub install-sh tar-copy.sh
101 test -f $i/$j && cp -p $i/$j $BUILD/$ROOTNAME/
102 done
103 done
105 # Make rpm and dpkg scripts for test-builds
106 grep_patchdate
107 for spec in $BUILD/$ROOTNAME/package/*.spec
109 edit_specfile $spec
110 done
111 for spec in $BUILD/$ROOTNAME/package/debian*
113 make_changelog $spec/changelog
114 done
116 cp -p $SOURCE/NEWS $BUILD/$ROOTNAME
118 # cleanup empty directories (an artifact of ncurses source archives)
120 touch $BUILD/$ROOTNAME/MANIFEST
121 ( cd $BUILD/$ROOTNAME && find . -type f -print |$SOURCE/misc/csort >MANIFEST )
123 cd $BUILD || exit
125 # Remove build-artifacts.
126 find . -name RCS -exec rm -rf {} \;
127 find $BUILD/$ROOTNAME -type d -exec rmdir {} \; 2>/dev/null
128 find $BUILD/$ROOTNAME -type d -exec rmdir {} \; 2>/dev/null
129 find $BUILD/$ROOTNAME -type d -exec rmdir {} \; 2>/dev/null
131 # There is no need for this script in the tar file.
132 rm -f $ROOTNAME/make-tar.sh
134 # Remove build-artifacts.
135 find . -name "*.gz" -exec rm -rf {} \;
137 # Make the files writable...
138 chmod -R u+w .
140 tar cf - $ROOTNAME | gzip >$DESTDIR/$ROOTNAME.tar.gz
141 cd $DESTDIR
144 ls -l $ROOTNAME.tar.gz
146 # vi:ts=4 sw=4