mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
ae65e281f3
to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
86 lines
2.0 KiB
Bash
Executable File
86 lines
2.0 KiB
Bash
Executable File
#!/bin/sh
|
|
#===-- tag.sh - Tag the LLVM release candidates ----------------------------===#
|
|
#
|
|
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
# See https://llvm.org/LICENSE.txt for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
#
|
|
#===------------------------------------------------------------------------===#
|
|
#
|
|
# Create branches and release candidates for the LLVM release.
|
|
#
|
|
#===------------------------------------------------------------------------===#
|
|
|
|
set -e
|
|
|
|
projects="llvm cfe test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp libunwind"
|
|
base_url="https://llvm.org/svn/llvm-project"
|
|
|
|
release=""
|
|
rc=""
|
|
|
|
usage() {
|
|
echo "Export the SVN sources and build tarballs from them"
|
|
echo "usage: `basename $0`"
|
|
echo " "
|
|
echo " -release <num> The version number of the release"
|
|
echo " -rc <num> The release candidate number"
|
|
echo " -final The final tag"
|
|
}
|
|
|
|
export_sources() {
|
|
release_no_dot=`echo $release | sed -e 's,\.,,g'`
|
|
tag_dir="tags/RELEASE_$release_no_dot/$rc"
|
|
|
|
if [ "$rc" = "final" ]; then
|
|
rc=""
|
|
fi
|
|
|
|
for proj in $projects; do
|
|
echo "Exporting $proj ..."
|
|
svn export \
|
|
$base_url/$proj/$tag_dir \
|
|
$proj-$release$rc.src
|
|
|
|
echo "Creating tarball ..."
|
|
tar cfJ $proj-$release$rc.src.tar.xz $proj-$release$rc.src
|
|
done
|
|
}
|
|
|
|
while [ $# -gt 0 ]; do
|
|
case $1 in
|
|
-release | --release )
|
|
shift
|
|
release=$1
|
|
;;
|
|
-rc | --rc )
|
|
shift
|
|
rc="rc$1"
|
|
;;
|
|
-final | --final )
|
|
rc="final"
|
|
;;
|
|
-h | -help | --help )
|
|
usage
|
|
exit 0
|
|
;;
|
|
* )
|
|
echo "unknown option: $1"
|
|
usage
|
|
exit 1
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
if [ "x$release" = "x" ]; then
|
|
echo "error: need to specify a release version"
|
|
exit 1
|
|
fi
|
|
|
|
# Make sure umask is not overly restrictive.
|
|
umask 0022
|
|
|
|
export_sources
|
|
exit 0
|