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 - 2016, 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 https://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
27version=$1
28
29if [ -z "$version" ]; then
30  echo "Specify a version number!"
31  exit
32fi
33
34libversion="$version"
35
36# we make curl the same version as libcurl
37curlversion=$libversion
38
39major=`echo $libversion |cut -d. -f1 | sed -e "s/[^0-9]//g"`
40minor=`echo $libversion |cut -d. -f2 | sed -e "s/[^0-9]//g"`
41patch=`echo $libversion |cut -d. -f3 | cut -d- -f1 | sed -e "s/[^0-9]//g"`
42
43numeric=`perl -e 'printf("%02x%02x%02x\n", '"$major, $minor, $patch);"`
44
45HEADER=include/curl/curlver.h
46CHEADER=src/tool_version.h
47
48# requires a date command that knows -u for UTC time zone
49datestamp=`LC_TIME=C date -u`
50
51# Replace version number in header file:
52sed -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:
61sed 's/#define CURL_VERSION .*/#define CURL_VERSION "'$curlversion'"/g' $CHEADER >$CHEADER.dist
62
63# Generate VC7, VC8, VC9, VC10, VC11, VC12 and VC14 versions from the VC6
64# Makefile versions
65for ver in vc7 vc8 vc9 vc10 vc11 vc12 vc14; do
66  make -f Makefile.dist $ver
67  mv src/Makefile.$ver src/Makefile.$ver.dist
68  mv lib/Makefile.$ver lib/Makefile.$ver.dist
69done
70
71# Replace version number in plist file:
72PLIST=lib/libcurl.plist
73sed "s/7\.12\.3/$libversion/g" $PLIST > $PLIST.dist
74
75echo "curl version $curlversion"
76echo "libcurl version $libversion"
77echo "libcurl numerical $numeric"
78echo "datestamp $datestamp"
79
80findprog()
81{
82  file="$1"
83  for part in `echo $PATH| tr ':' ' '`; do
84    path="$part/$file"
85    if [ -x "$path" ]; then
86      # there it is!
87      return 1
88    fi
89  done
90
91  # no such executable
92  return 0
93}
94
95############################################################################
96#
97# Enforce a rerun of configure (updates the VERSION)
98#
99
100echo "Re-running config.status"
101./config.status --recheck >/dev/null
102
103############################################################################
104#
105# automake is needed to run to make a non-GNU Makefile.in if Makefile.am has
106# been modified.
107#
108
109if { findprog automake >/dev/null 2>/dev/null; } then
110  echo "- Could not find or run automake, I hope you know what you're doing!"
111else
112  echo "Runs automake --include-deps"
113  automake --include-deps Makefile >/dev/null
114fi
115
116############################################################################
117#
118# Make sure we have updated HTML versions of all man pages:
119#
120echo "make html"
121make -s html
122
123# And the PDF versions
124echo "make pdf"
125make -s pdf
126
127# And the IDE files
128echo "make vc-ide"
129make -s vc-ide
130
131echo "produce CHANGES"
132git log --pretty=fuller --no-color --date=short --decorate=full -1000 | ./scripts/log2changes.pl > CHANGES.dist
133
134############################################################################
135#
136# Now run make dist to generate a tar.gz archive
137#
138
139echo "make dist"
140targz="curl-$version.tar.gz"
141make -sj dist VERSION=$version
142
143############################################################################
144#
145# Now make a bz2 archive from the tar.gz original
146#
147
148bzip2="curl-$version.tar.bz2"
149echo "Generating $bzip2"
150gzip -dc $targz | bzip2 --best > $bzip2
151
152############################################################################
153#
154# Now make an lzma archive from the tar.gz original
155#
156
157lzma="curl-$version.tar.lzma"
158echo "Generating $lzma"
159gzip -dc $targz | lzma --best - > $lzma
160
161############################################################################
162#
163# Now make a zip archive from the tar.gz original
164#
165makezip ()
166{
167  rm -rf $tempdir
168  mkdir $tempdir
169  cd $tempdir
170  gzip -dc ../$targz | tar -xf -
171  find . | zip $zip -@ >/dev/null
172  mv $zip ../
173  cd ..
174  rm -rf $tempdir
175}
176
177zip="curl-$version.zip"
178echo "Generating $zip"
179tempdir=".builddir"
180makezip
181
182echo "------------------"
183echo "maketgz report:"
184echo ""
185ls -l $targz $bzip2 $zip $lzma
186
187echo "Run this:"
188echo "gpg -b -a $targz && gpg -b -a $bzip2 && gpg -b -a $zip && gpg -b -a $lzma"
189