php-src/makedist

149 lines
3.5 KiB
Plaintext
Raw Normal View History

1999-04-07 21:05:13 +00:00
#!/bin/sh
#
2009-07-14 21:49:44 +00:00
# Distribution generator for SVN based packages.
1999-04-07 21:05:13 +00:00
# To work, this script needs a consistent tagging of all releases.
# Each release of a package should have a tag of the form
#
# <package>_<version>
#
2009-07-14 21:49:44 +00:00
# where <package> is the package name and the SVN module
1999-04-07 21:05:13 +00:00
# and <version> s the version number with underscores instead of dots.
#
2009-07-14 21:49:44 +00:00
# For example: svn cp $PHPROOT/php/php-src/trunk $PHPROOT/php/php-src/tags/php_5_0_1
1999-04-07 21:05:13 +00:00
#
# The distribution ends up in a .tar.gz file that contains the distribution
# in a directory called <package>-<version>. The distribution contains all
2009-07-14 21:49:44 +00:00
# directories from the SVN module except the one called "nodist", but only
1999-04-07 21:05:13 +00:00
# the files INSTALL, README and config* are included.
2009-07-14 21:49:44 +00:00
# A .tar.bz2 file is also created.
1999-04-07 21:05:13 +00:00
#
# Usage: makedist <package> <version>
#
# Written by Stig Bakken <ssb@guardian.no> 1997-05-28.
#
# $Id$
#
2000-06-25 22:48:02 +00:00
if test "$#" != "2"; then
echo "Usage: makedist <package> <version>" >&2
exit 1
fi
PKG=$1 ; shift
VER=$1 ; shift
old_IFS="$IFS"
IFS=.
2002-03-20 18:54:30 +00:00
eval set `bison --version| grep 'GNU Bison' | cut -d ' ' -f 4 | sed -e 's/\./ /'`
if test "${1}" = "1" -a "${2}" -lt "28"; then
echo "You will need bison 1.28 if you want to regenerate the Zend parser (found ${1}.${2}).)"
2000-06-25 22:48:02 +00:00
exit 10
fi
IFS="$old_IFS"
2009-07-14 21:49:44 +00:00
PHPROOT=http://svn.php.net/repository
PHPMOD=php/php-src
LT_TARGETS='ltconfig ltmain.sh config.guess config.sub'
1999-04-07 21:05:13 +00:00
if echo '\c' | grep -s c >/dev/null 2>&1
then
ECHO_N="echo -n"
ECHO_C=""
else
ECHO_N="echo"
ECHO_C='\c'
fi
1999-07-17 11:59:37 +00:00
MY_OLDPWD=`pwd`
1999-04-07 21:05:13 +00:00
# the destination .tar.gz file
ARCHIVE=$MY_OLDPWD/$PKG-$VER.tar
1999-04-07 21:05:13 +00:00
2009-07-14 21:49:44 +00:00
# temporary directory used to check out files from SVN
DIR=$PKG-$VER
DIRPATH=$MY_OLDPWD/$DIR
1999-04-07 21:05:13 +00:00
if test -d "$DIRPATH"; then
echo "The directory $DIR"
echo "already exists, rename or remove it and run makedist again."
exit 1
fi
2009-07-14 21:49:44 +00:00
# version part of the SVN release tag
SVNVER=`echo $VER | sed -e 's/[\.\-]/_/g'`
1999-04-07 21:05:13 +00:00
2009-07-14 21:49:44 +00:00
# SVN release tag
if test "$VER" != "HEAD" -a "$VER" != "trunk"; then
SVNTAG=tags/${PKG}_$SVNVER
else
2009-07-14 21:49:44 +00:00
SVNTAG=trunk
fi
1999-04-07 21:05:13 +00:00
2009-07-14 21:49:44 +00:00
#if test ! -d $DIRPATH; then
# mkdir -p $DIRPATH || exit 2
#fi
1999-04-07 21:05:13 +00:00
# Export PHP
2009-07-14 21:49:44 +00:00
$ECHO_N "makedist: exporting tag '$SVNTAG' from '$PHPMOD'...$ECHO_C"
svn export $PHPROOT/$PHPMOD/$SVNTAG $DIRPATH || exit 4
1999-04-07 21:05:13 +00:00
echo ""
2009-07-14 21:49:44 +00:00
# remove SVN stuff...
cd $DIR || exit 5
2009-07-14 21:49:44 +00:00
find . \( -name .svn -type d \) -exec rm -rf {} \;
1999-04-07 21:05:13 +00:00
2000-05-04 17:52:14 +00:00
# The full ChangeLog is available separately from lxr.php.net
rm -f ChangeLog*
# hide away our own versions of libtool-generated files
for i in $LT_TARGETS; do
if test -f "$i"; then
mv $i $i.bak
cp $i.bak $i
fi
done
1999-04-07 21:05:13 +00:00
# generate some files so people don't need bison, flex and autoconf
# to install
set -x
2003-05-22 00:31:31 +00:00
./buildconf --copy --force
# remove buildmk.stamp. Otherwise, buildcheck.sh might not be run,
# when a user runs buildconf in the distribution.
rm -f buildmk.stamp
./genfiles
# now restore our versions of libtool-generated files
for i in $LT_TARGETS; do
test -f "$i" && mv $i.bak $i
done
# download pear
$ECHO_N "makedist: Attempting to download PEAR's phar archive"
if test ! -x wget; then
wget http://pear.php.net/install-pear-nozlib.phar -nd -P pear/
else
$ECHO_N "Missing wget binary needed for pear download";
exit 0;
fi
cd $MY_OLDPWD
1999-04-07 21:05:13 +00:00
$ECHO_N "makedist: making gzipped tar archive...$ECHO_C"
2002-10-10 19:01:34 +00:00
rm -f $ARCHIVE.gz
tar cf $ARCHIVE $PKG-$VER || exit 8
gzip -9 $ARCHIVE || exit 9
1999-04-07 21:05:13 +00:00
echo ""
2002-08-24 09:56:51 +00:00
$ECHO_N "makedist: making bz2zipped tar archive...$ECHO_C"
2002-10-10 19:01:34 +00:00
rm -f $ARCHIVE.bz2
2002-08-24 09:56:51 +00:00
tar cf $ARCHIVE $PKG-$VER || exit 10
bzip2 -9 $ARCHIVE || exit 11
echo ""
1999-04-07 21:05:13 +00:00
$ECHO_N "makedist: cleaning up...$ECHO_C"
2002-08-24 09:56:51 +00:00
rm -rf $DIRPATH || exit 12
1999-04-07 21:05:13 +00:00
echo ""
exit 0