Reverted the LIBCURL_VERSION_NUM change from October 6. As Dave Dribin
[platform/upstream/curl.git] / maketgz
1 #! /bin/sh
2 # Script to build release-archives with
3 #
4
5 version=$1
6
7 if [ -z "$version" ]; then
8   echo "Specify a version number!"
9   exit
10 fi
11
12 libversion="$version"
13
14 # we make curl the same version as libcurl
15 curlversion=$libversion
16
17 major=`echo $libversion |cut -d. -f1 | sed -e "s/[^0-9]//g"`
18 minor=`echo $libversion |cut -d. -f2 | sed -e "s/[^0-9]//g"`
19 patch=`echo $libversion |cut -d. -f3 | cut -d- -f1 | sed -e "s/[^0-9]//g"`
20
21 numeric=`perl -e 'printf("%02x%02x%02x\n", '"$major, $minor, $patch);"`
22
23 HEADER=include/curl/curlver.h
24 CHEADER=src/version.h
25
26 # Replace version number in header file:
27 sed -e 's/^#define LIBCURL_VERSION .*/#define LIBCURL_VERSION "'$libversion'"/g' \
28     -e 's/^#define LIBCURL_VERSION_NUM .*/#define LIBCURL_VERSION_NUM 0x'$numeric'/g' \
29     -e 's/^#define LIBCURL_VERSION_MAJOR .*/#define LIBCURL_VERSION_MAJOR '$major'/g' \
30     -e 's/^#define LIBCURL_VERSION_MINOR .*/#define LIBCURL_VERSION_MINOR '$minor'/g' \
31     -e 's/^#define LIBCURL_VERSION_PATCH .*/#define LIBCURL_VERSION_PATCH '$patch'/g' \
32  $HEADER >$HEADER.dist
33
34 # Replace version number in header file:
35 sed 's/#define CURL_VERSION .*/#define CURL_VERSION "'$curlversion'"/g' $CHEADER >$CHEADER.dist
36
37 # Replace version number in plist file:
38 PLIST=lib/libcurl.plist
39 sed "s/7\.12\.3/$libversion/g" $PLIST > $PLIST.dist
40
41 echo "curl version $curlversion"
42 echo "libcurl version $libversion"
43 echo "libcurl numerical $numeric"
44
45 findprog()
46 {
47   file="$1"
48   for part in `echo $PATH| tr ':' ' '`; do
49     path="$part/$file"
50     if [ -x "$path" ]; then
51       # there it is!
52       return 1
53     fi
54   done
55
56   # no such executable
57   return 0
58 }
59
60 ############################################################################
61 #
62 # Enforce a rerun of configure (updates the VERSION)
63 #
64
65 echo "Re-running config.status"
66 ./config.status --recheck >/dev/null
67
68 ############################################################################
69 #
70 # automake is needed to run to make a non-GNU Makefile.in if Makefile.am has
71 # been modified.
72 #
73
74 if { findprog automake >/dev/null 2>/dev/null; } then
75   echo "- Could not find or run automake, I hope you know what you're doing!"
76 else
77   echo "Runs automake --include-deps"
78   automake --include-deps Makefile >/dev/null
79 fi
80
81 ############################################################################
82 #
83 # Make sure we have updated HTML versions of all man pages:
84 #
85 echo "make html"
86 make -s html
87
88 # And the PDF versions
89 echo "make pdf"
90 make -s pdf
91
92 ############################################################################
93 #
94 # Now run make dist to generate a tar.gz archive
95 #
96
97 echo "make dist"
98 targz="curl-$version.tar.gz"
99 make -s dist VERSION=$version
100
101 ############################################################################
102 #
103 # Now make a bz2 archive from the tar.gz original
104 #
105
106 bzip2="curl-$version.tar.bz2"
107 echo "Generating $bzip2"
108 gzip -dc $targz | bzip2 - > $bzip2
109
110 ############################################################################
111 #
112 # Now make a zip archive from the tar.gz original
113 #
114 makezip ()
115 {
116   rm -rf $tempdir
117   mkdir $tempdir
118   cd $tempdir
119   gzip -dc ../$targz | tar -xf -
120   find . | zip $zip -@ >/dev/null
121   mv $zip ../
122   cd ..
123   rm -rf $tempdir
124 }
125
126 zip="curl-$version.zip"
127 echo "Generating $zip"
128 tempdir=".builddir"
129 makezip
130
131 echo "------------------"
132 echo "maketgz report:"
133 echo ""
134 ls -l $targz $bzip2 $zip
135
136 md5sum $targz $bzip2 $zip
137
138 echo "Run these commands:"
139 echo "gpg -b -a $targz"
140 echo "gpg -b -a $bzip2"
141 echo "gpg -b -a $zip"