Commit fb63a35c authored by John Criswell's avatar John Criswell
Browse files

Created script to help automate part of the release process.

llvm-svn: 15558
parent 6dbb2677
Loading
Loading
Loading
Loading

llvm/utils/mkrel.sh

0 → 100755
+41 −0
Original line number Diff line number Diff line
#!/bin/sh

#
# Shell Script: mkrel
#
# Description:
#   Make LLVM Release source tarballs by grabbing the source from the CVS
#   repository.
#
# Usage:
#   mkrel <version> <release tag> <dir>
#

#
# Constants
#
cvsroot=":pserver:anon@llvm-cvs.cs.uiuc.edu:/var/cvs/llvm"

#
# Save the command line arguments into some variables.
#
version=$1
tag=$2
dir=$3

#
# Create the working directory and make it the current directory.
#
mkdir -p $dir
cd $dir

#
# Extract the LLVM sources given the label.
#
cvs -d $cvsroot export -r $tag llvm llvm-gcc

#
# Create source tarballs.
#
tar -cvf - llvm | gzip > llvm-${version}.tar.gz
tar -cvf - llvm-gcc | gzip > cfrontend-${version}.source.tar.gz