From fb63a35c3cd2ffbbbe227b283f85d85a4fa25282 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Fri, 6 Aug 2004 21:03:59 +0000 Subject: [PATCH] Created script to help automate part of the release process. llvm-svn: 15558 --- llvm/utils/mkrel.sh | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 llvm/utils/mkrel.sh diff --git a/llvm/utils/mkrel.sh b/llvm/utils/mkrel.sh new file mode 100755 index 000000000000..d1de19cd025d --- /dev/null +++ b/llvm/utils/mkrel.sh @@ -0,0 +1,41 @@ +#!/bin/sh + +# +# Shell Script: mkrel +# +# Description: +# Make LLVM Release source tarballs by grabbing the source from the CVS +# repository. +# +# Usage: +# mkrel +# + +# +# 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