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