From aefc34a041240889948f5af09c1526077c4fc0ca Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 22 Dec 2007 06:14:50 +0000 Subject: * common.mk (encs, ext/ripper/ripper.c): needs MFLAGS. * configure.in (STRINGIZE): stringizing macro. * include/ruby/defines.h (STRINGIZE): fallback. * tool/make-snapshot: new file. * version.c (ruby_description, ruby_copyright): string constants for -v option. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14469 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/make-snapshot | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 tool/make-snapshot (limited to 'tool/make-snapshot') diff --git a/tool/make-snapshot b/tool/make-snapshot new file mode 100755 index 0000000000..b86e13e816 --- /dev/null +++ b/tool/make-snapshot @@ -0,0 +1,31 @@ +#!/bin/bash + +LC_ALL=C LANG=C +SVNURL=http://svn.ruby-lang.org/repos/ruby/trunk +export LC_ALL LANG +: ${VPATH=include/ruby} ${YACC=bison} ${BASERUBY=ruby} ${RUBY=ruby} ${MV=mv} +export VPATH YACC BASERUBY RUBY MV + +[ -d "$1" ] || mkdir "$1" || exit 1 +dest=`cd "$1"; pwd` + +tmp=${TMP_DIR-/tmp}/ #ruby-snapshot-$$ +mkdir -p "$tmp" +cd "$tmp" +revision=`svn export $SVNURL ruby | sed -n '$s/.*\([0-9]+\).*/\1/p'` +[ $revision ] || revision=`svn info $SVNURL | sed -n 's/Revision: //p'` +echo "#define RUBY_REVISION $revision" > ruby/revision.h +v=ruby-r$revision +mv ruby $v +(cd $v; sed 's/{[^{}]*}//g' common.mk | make -f - prereq srcdir=.) + +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 + if $cmd $dest/$v.$ext $v; then + echo " done" + else + echo " failed" + fi +done -- cgit v1.2.3