keep a single copy of config-win32.h in version control repository.
[platform/upstream/curl.git] / maketgz
1 #! /bin/sh
2 # Script to build release-archives with. Note that this requires a checkout
3 # from git and you should first run ./buildconf and build curl once.
4 #
5 #***************************************************************************
6 #                                  _   _ ____  _
7 #  Project                     ___| | | |  _ \| |
8 #                             / __| | | | |_) | |
9 #                            | (__| |_| |  _ <| |___
10 #                             \___|\___/|_| \_\_____|
11 #
12 # Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
13 #
14 # This software is licensed as described in the file COPYING, which
15 # you should have received as part of this distribution. The terms
16 # are also available at http://curl.haxx.se/docs/copyright.html.
17 #
18 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
19 # copies of the Software, and permit persons to whom the Software is
20 # furnished to do so, under the terms of the COPYING file.
21 #
22 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
23 # KIND, either express or implied.
24 #
25 ###########################################################################
26
27 version=$1
28
29 if [ -z "$version" ]; then
30   echo "Specify a version number!"
31   exit
32 fi
33
34 libversion="$version"
35
36 # we make curl the same version as libcurl
37 curlversion=$libversion
38
39 major=`echo $libversion |cut -d. -f1 | sed -e "s/[^0-9]//g"`
40 minor=`echo $libversion |cut -d. -f2 | sed -e "s/[^0-9]//g"`
41 patch=`echo $libversion |cut -d. -f3 | cut -d- -f1 | sed -e "s/[^0-9]//g"`
42
43 numeric=`perl -e 'printf("%02x%02x%02x\n", '"$major, $minor, $patch);"`
44
45 HEADER=include/curl/curlver.h
46 CHEADER=src/version.h
47
48 # requires a date command that knows -u for UTC time zone
49 datestamp=`date -u`
50
51 # Replace version number in header file:
52 sed -e 's/^#define LIBCURL_VERSION .*/#define LIBCURL_VERSION "'$libversion'"/g' \
53     -e 's/^#define LIBCURL_VERSION_NUM .*/#define LIBCURL_VERSION_NUM 0x'$numeric'/g' \
54     -e 's/^#define LIBCURL_VERSION_MAJOR .*/#define LIBCURL_VERSION_MAJOR '$major'/g' \
55     -e 's/^#define LIBCURL_VERSION_MINOR .*/#define LIBCURL_VERSION_MINOR '$minor'/g' \
56     -e 's/^#define LIBCURL_VERSION_PATCH .*/#define LIBCURL_VERSION_PATCH '$patch'/g' \
57     -e "s/^#define LIBCURL_TIMESTAMP .*/#define LIBCURL_TIMESTAMP \"$datestamp\"/g" \
58  $HEADER >$HEADER.dist
59
60 # Replace version number in header file:
61 sed 's/#define CURL_VERSION .*/#define CURL_VERSION "'$curlversion'"/g' $CHEADER >$CHEADER.dist
62
63 # Generate VC8, VC9, and VC10 versions from the VC6 Makefile versions
64 for ver in vc8 vc9 vc10; do
65   make -f Makefile.dist $ver
66   mv src/Makefile.$ver src/Makefile.$ver.dist
67   mv lib/Makefile.$ver lib/Makefile.$ver.dist
68 done
69
70 # Replace version number in plist file:
71 PLIST=lib/libcurl.plist
72 sed "s/7\.12\.3/$libversion/g" $PLIST > $PLIST.dist
73
74 echo "curl version $curlversion"
75 echo "libcurl version $libversion"
76 echo "libcurl numerical $numeric"
77 echo "datestamp $datestamp"
78
79 findprog()
80 {
81   file="$1"
82   for part in `echo $PATH| tr ':' ' '`; do
83     path="$part/$file"
84     if [ -x "$path" ]; then
85       # there it is!
86       return 1
87     fi
88   done
89
90   # no such executable
91   return 0
92 }
93
94 echo "maketgz: cp lib/curl_config.h.in src/curl_config.h.in"
95 cp lib/curl_config.h.in src/curl_config.h.in
96
97 echo "maketgz: cp lib/config-win32.h src/config-win32.h"
98 cp lib/config-win32.h src/config-win32.h
99
100 ############################################################################
101 #
102 # Enforce a rerun of configure (updates the VERSION)
103 #
104
105 echo "Re-running config.status"
106 ./config.status --recheck >/dev/null
107
108 ############################################################################
109 #
110 # automake is needed to run to make a non-GNU Makefile.in if Makefile.am has
111 # been modified.
112 #
113
114 if { findprog automake >/dev/null 2>/dev/null; } then
115   echo "- Could not find or run automake, I hope you know what you're doing!"
116 else
117   echo "Runs automake --include-deps"
118   automake --include-deps Makefile >/dev/null
119 fi
120
121 ############################################################################
122 #
123 # Make sure we have updated HTML versions of all man pages:
124 #
125 echo "make html"
126 make -s html
127
128 # And the PDF versions
129 echo "make pdf"
130 make -s pdf
131
132 echo "produce CHANGES"
133 git log --pretty=fuller --no-color --date=short --decorate=full -1000 | ./log2changes.pl > CHANGES.dist
134
135 ############################################################################
136 #
137 # Now run make dist to generate a tar.gz archive
138 #
139
140 echo "make dist"
141 targz="curl-$version.tar.gz"
142 make -s dist VERSION=$version
143
144 ############################################################################
145 #
146 # Now make a bz2 archive from the tar.gz original
147 #
148
149 bzip2="curl-$version.tar.bz2"
150 echo "Generating $bzip2"
151 gzip -dc $targz | bzip2 --best - > $bzip2
152
153 ############################################################################
154 #
155 # Now make an lzma archive from the tar.gz original
156 #
157
158 lzma="curl-$version.tar.lzma"
159 echo "Generating $lzma"
160 gzip -dc $targz | lzma --best - > $lzma
161
162 ############################################################################
163 #
164 # Now make a zip archive from the tar.gz original
165 #
166 makezip ()
167 {
168   rm -rf $tempdir
169   mkdir $tempdir
170   cd $tempdir
171   gzip -dc ../$targz | tar -xf -
172   find . | zip $zip -@ >/dev/null
173   mv $zip ../
174   cd ..
175   rm -rf $tempdir
176 }
177
178 zip="curl-$version.zip"
179 echo "Generating $zip"
180 tempdir=".builddir"
181 makezip
182
183 echo "------------------"
184 echo "maketgz report:"
185 echo ""
186 ls -l $targz $bzip2 $zip $lzma
187
188 echo "Run this:"
189 echo "gpg -b -a $targz && gpg -b -a $bzip2 && gpg -b -a $zip && gpg -b -a $lzma"