]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/make-tar.sh
ncurses 5.9 - patch 20140412
[ncurses.git] / Ada95 / make-tar.sh
1 #!/bin/sh
2 # $Id: make-tar.sh,v 1.14 2013/10/26 23:10:24 tom Exp $
3 ##############################################################################
4 # Copyright (c) 2010-2011,2013 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 Ada95 tree as well as its associated
31 # documentation.  The reason for doing that is to simplify distributing the
32 # ada binding as a separate package.
33
34 CDPATH=:
35 export CDPATH
36
37 TARGET=`pwd`
38
39 : ${ROOTNAME:=ncurses-Ada95}
40 : ${PKG_NAME:=AdaCurses}
41 : ${DESTDIR:=$TARGET}
42 : ${TMPDIR:=/tmp}
43
44 grep_assign() {
45         grep_assign=`egrep "^$2\>" "$1" | sed -e "s/^$2[        ]*=[    ]*//" -e 's/"//g'`
46         eval $2=\"$grep_assign\"
47 }
48
49 grep_patchdate() {
50         grep_assign ../dist.mk NCURSES_MAJOR
51         grep_assign ../dist.mk NCURSES_MINOR
52         grep_assign ../dist.mk NCURSES_PATCH
53 }
54
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
64 }
65
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
70
71   * snapshot of ncurses subpackage for $PKG_NAME.
72
73  -- `head -n 1 $HOME/.signature`  `date -R`
74 EOF
75 }
76
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 ./Ada95 && cd ./Ada95
80 SOURCE=`cd ..;pwd`
81
82 BUILD=$TMPDIR/make-tar$$
83 trap "cd /; rm -rf $BUILD; exit 0" 0 1 2 5 15
84
85 umask 077
86 if ! ( mkdir $BUILD )
87 then
88         echo "? cannot make build directory $BUILD"
89 fi
90
91 umask 022
92 mkdir $BUILD/$ROOTNAME
93
94 cp -p -r * $BUILD/$ROOTNAME/ || exit
95
96 # Add the config.* utility scripts from the top-level directory.
97 for i in . ..
98 do
99         for j in config.guess config.sub install-sh tar-copy.sh
100         do
101                 test -f $i/$j && cp -p $i/$j $BUILD/$ROOTNAME/
102         done
103 done
104
105 # Make rpm and dpkg scripts for test-builds
106 grep_patchdate
107 for spec in $BUILD/$ROOTNAME/package/*.spec
108 do
109         edit_specfile $spec
110 done
111 for spec in $BUILD/$ROOTNAME/package/debian*
112 do
113         make_changelog $spec/changelog
114 done
115
116 cp -p ../man/MKada_config.in $BUILD/$ROOTNAME/doc/
117 if test -z "$NO_HTML_DOCS"
118 then
119         # Add the ada documentation.
120         cd ../doc/html || exit
121
122         cp -p -r Ada* $BUILD/$ROOTNAME/doc/
123         cp -p -r ada $BUILD/$ROOTNAME/doc/
124 fi
125
126 cp -p $SOURCE/NEWS $BUILD/$ROOTNAME
127
128 # cleanup empty directories (an artifact of ncurses source archives)
129
130 touch $BUILD/$ROOTNAME/MANIFEST 
131 ( cd $BUILD/$ROOTNAME && find . -type f -print |$SOURCE/misc/csort >MANIFEST )
132
133 cd $BUILD || exit 
134
135 # Remove build-artifacts.
136 find . -name RCS -exec rm -rf {} \;
137 find $BUILD/$ROOTNAME -type d -exec rmdir {} \; 2>/dev/null
138 find $BUILD/$ROOTNAME -type d -exec rmdir {} \; 2>/dev/null
139 find $BUILD/$ROOTNAME -type d -exec rmdir {} \; 2>/dev/null
140
141 # There is no need for this script in the tar file.
142 rm -f $ROOTNAME/make-tar.sh
143
144 # Remove build-artifacts.
145 find . -name "*.gz" -exec rm -rf {} \;
146
147 # Make the files writable...
148 chmod -R u+w .
149
150 tar cf - $ROOTNAME | gzip >$DESTDIR/$ROOTNAME.tar.gz
151 cd $DESTDIR
152
153 pwd
154 ls -l $ROOTNAME.tar.gz
155
156 # vi:ts=4 sw=4