* tool/make-snapshot: supported multiple snapshots.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-06-19 12:35:35 +00:00
parent 2bcb0a1a35
commit 0a3b487504
2 changed files with 88 additions and 22 deletions

View File

@ -1,3 +1,7 @@
Thu Jun 19 21:35:32 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* tool/make-snapshot: supported multiple snapshots.
Thu Jun 19 20:37:00 2008 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* lib/net/pop.rb (Net::POP3#set_all_uids): speed

View File

@ -1,30 +1,84 @@
#!/bin/bash
LC_ALL=C LANG=C
SVNURL=http://svn.ruby-lang.org/repos/ruby/trunk
nLC_ALL=C LANG=C
SVNURL=http://svn.ruby-lang.org/repos/ruby
export LC_ALL LANG
: ${VPATH=include/ruby} ${YACC=bison} ${BASERUBY=ruby} ${RUBY=ruby} ${MV=mv} ${MINIRUBY=ruby}
for var in YACC BASERUBY RUBY MV MINIRUBY; do
eval 'cmd="${'$var'}"'
type -p ${cmd%% *} > /dev/null || {
echo "$0: $var command not found${cmd:+ - $cmd}" 1>&2
exit 1
}
done
export VPATH YACC BASERUBY RUBY MV MINIRUBY
if [ ! "$1" ]; then
echo usage: `basename $0` new-directory-to-save 1>&2
echo "usage: $(basename $0) new-directory-to-save [version ...]" 1>&2
exit 1
fi
[ -d "$1" ] || mkdir "$1" || exit 1
dest=`cd "$1"; pwd`
dest=$(cd "$1"; pwd)
shift
[ "$#" = 0 ] && set trunk
tmp="${TMP_DIR-/tmp}/ruby-snapshot-$$"
mkdir -p "$tmp"
(cd "$tmp"
revision=`svn export $SVNURL ruby | sed -n '$s/[^0-9]//gp'`
[ $revision ] || revision=`svn info $SVNURL | sed -n 's/Revision: //p'`
echo "#define RUBY_REVISION $revision" > ruby/revision.h
version=`sed -n -e '/^#define RUBY_VERSION /s/[^0-9.]//gp' ruby/version.h`
v=ruby-$version-${2-r$revision}
mv ruby $v
(cd $v; autoconf; (sed '/lex\.c/,/^$/!d' Makefile.in; sed 's/{[^{}]*}//g' common.mk) | make -f - prereq srcdir=.)
trap "cd /; exec rm -fr $tmp" 0 2 3 13 15
cd "$tmp"
files=
for cmd in "bzip tarball.tar.bz2 tar cjf" "gzip tarball.tar.gz tar czf" "zip archive.zip zip -qr"; do
exec 3>&1
for rev; do
tag=
case "$rev" in
trunk | branches/* | tags/*)
url=$SVNURL/rev;;
stable)
url=$SVNURL/brances/$(svn ls $SVNURL/branches | grep '^ruby_[0-9]_[0-9]/' | tail -1);;
*.*.*-p* | *.*.*-*)
tag=${rev##*-}; url=${rev/-p/_}; url=${url/-/_}; url=$SVNURL/tags/v${url//./_};;
*.*)
url=$SVNURL/branches/ruby_${rev//./_};;
*)
echo "$0: unknown version - $rev" 1>&2
continue;;
esac
revision=$(svn info "$url" 2>&1 | sed -n 's/Last Changed Rev: //p')
if [ "$revision" = "" ]; then
url="$SVNURL/trunk"
version=$(svn cat "$url/version.h" | sed -n -e '/^#define RUBY_VERSION /s/[^0-9.]//gp')
[ "$rev" = "$version" ] || { echo "$0: $rev not found"; exit 1; }
revision=$(svn info "$url" | sed -n 's/Last Changed Rev: //p' 2>/dev/null)
fi
echo "Exporting $rev@$revision"
status=$(exec 4>&1; { svn export "$url" ruby; echo $? 1>&4; } | grep -v '^A' 1>&3)
[ "$status" = 0 ] || exit $status
echo "#define RUBY_REVISION $revision" > ruby/revision.h
version=$(sed -n -e '/^#define RUBY_VERSION /s/[^0-9.]//gp' ruby/version.h)
if [ x"$tag" = x ]; then
patchlevel=$(sed -n -e '/^#define RUBY_PATCHLEVEL /s/[^0-9.]//gp' ruby/version.h)
if [ "${patchlevel:-0}" = 0 ]; then
tag=r$revision
else
tag=p$patchlevel
fi
fi
v=ruby-$version-$tag
mv ruby $v
(cd $v
autoconf
rm -fr autom4te.cache
if [ -f common.mk ] && grep '^prereq' common.mk > /dev/null; then
(sed '/lex\.c/,/^$/!d' Makefile.in; sed 's/{[^{}]*}//g' common.mk) |
make -f - prereq srcdir=. IFCHANGE=tool/ifchange
else
${YACC} -o parse.c parse.y
fi || exit $?) || exit $?
for cmd in "bzip tarball.tar.bz2 tar cjf" "gzip tarball.tar.gz tar czf" "zip archive.zip zip -qr"; do
mesg="${cmd%%.*}" cmd="${cmd#*.}"
ext="${cmd%% *}" cmd="${cmd#* }"
echo -n creating $mesg... $dest/$v.$ext
@ -33,6 +87,14 @@ for cmd in "bzip tarball.tar.bz2 tar cjf" "gzip tarball.tar.gz tar czf" "zip arc
else
echo " failed"
fi
files="$files $dest/$v.$ext"
done
rm -fr $v
done
for file in $files; do
md5=$(md5sum $file)
sha256=$(sha256sum $file)
echo "MD5(${file##*/})= ${md5%% *}"
echo "SHA256(${file##*/})= ${sha256%% *}"
echo "SIZE(${file##*/})= `find $file -printf %s`"
done
exec rm -fr $v)
exec rmdir "$tmp"