]> git.pld-linux.org Git - packages/crossnacl-gcc.git/blame - get-source.sh
use bare git repo
[packages/crossnacl-gcc.git] / get-source.sh
CommitLineData
ced35f34
ER
1#!/bin/sh
2# Make snapshot of nacl-binutils
3# Author: Elan Ruusamäe <glen@pld-linux.org>
ced35f34
ER
4set -e
5
6# Generated from git
7# git clone http://git.chromium.org/native_client/nacl-gcc.git
8# (Checkout ID taken from chromium-15.0.874.106/native_client/tools/REVISIONS)
9# cd nacl-gcc
10# git checkout cff9ac884908ba53ae16149e7c7d19c336aa4895
11# cd ..
12# For gcc version, echo gcc/BASE-VER
13# mv nacl-gcc nacl-gcc-4.4.3-gitcff9ac88
14# tar cfj nacl-gcc-4.4.3-gitcff9ac88.tar.bz2 nacl-gcc-4.4.3-gitcff9ac88
15
16package=nacl-gcc
17repo_url=http://git.chromium.org/native_client/$package.git
9da9bef5
ER
18nacl_trunk=http://src.chromium.org/native_client/trunk
19omahaproxy_url=https://omahaproxy.appspot.com
ced35f34
ER
20specfile=crossnacl-gcc.spec
21
9da9bef5
ER
22# if you get errors that sha1 hash not found, try increasing depth
23# fatal: Path 'gcc/BASE-VER' does not exist in 'c69a5b7252d2f073d0f526800e4fca3b63cd1fab'
24depth=5
ced35f34 25
64a65cbc 26chrome_channel=${1:-stable}
9da9bef5 27chrome_version=$(curl -s "$omahaproxy_url/?os=linux&channel=$chrome_channel" | awk -F, 'NR > 1{print $3}')
6fcf51a6 28test -n "$chrome_version"
9da9bef5 29chrome_revision=$(curl -s $omahaproxy_url/revision?version=$chrome_version)
6fcf51a6 30test -n "$chrome_revision"
ced35f34 31chrome_branch=$(IFS=.; set -- $chrome_version; echo $3)
9da9bef5 32
ced35f34
ER
33test -e DEPS.py || svn cat http://src.chromium.org/chrome/branches/$chrome_branch/src/DEPS@$chrome_revision > DEPS.py
34nacl_revision=$(awk -F'"' '/nacl_revision.:/{print $4}' DEPS.py)
6fcf51a6 35test -n "$nacl_revision"
ced35f34 36
a6cd2124 37export GIT_DIR=$package.git
ced35f34 38
a6cd2124
ER
39if [ ! -d $GIT_DIR ]; then
40 install -d $GIT_DIR
41 git init --bare
ced35f34 42 git remote add origin $repo_url
9da9bef5 43 git fetch --depth $depth origin refs/heads/master:refs/remotes/origin/master
ced35f34
ER
44else
45 git fetch origin refs/heads/master:refs/remotes/origin/master
46fi
47
48# get src/native_client/tools/REVISIONS directly from svn
6fcf51a6 49test -n "$nacl_revision"
9da9bef5 50test -e NACL_REVISIONS.sh || svn cat $nacl_trunk/src/native_client/tools/REVISIONS@$nacl_revision > NACL_REVISIONS.sh
ced35f34
ER
51
52if grep -Ev '^(#|(LINUX_HEADERS_FOR_NACL|NACL_(BINUTILS|GCC|GDB|GLIBC|NEWLIB))_COMMIT=[0-9a-f]+$|)' NACL_REVISIONS.sh >&2; then
53 echo >&2 "I refuse to execute grabbed file for security concerns"
54 exit 1
55fi
56. ./NACL_REVISIONS.sh
57
58githash=$NACL_GCC_COMMIT
59version=$(git show $githash:gcc/BASE-VER)
60shorthash=$(git rev-parse --short $githash)
61prefix=$package-$version-git$shorthash
62
9c139859
ER
63if [ -f $prefix.tar.xz ]; then
64 echo "Tarball $prefix.tar.xz already exists at $shorthash"
9da9bef5 65 rm -f NACL_REVISIONS.sh DEPS.py
ced35f34
ER
66 exit 0
67fi
68
69git archive $githash --prefix $prefix/ > $prefix.tar
9c139859 70xz -9 $prefix.tar
ced35f34 71
9c139859 72../dropin $prefix.tar.xz
ced35f34
ER
73
74rm -f NACL_REVISIONS.sh DEPS.py
This page took 0.032702 seconds and 4 git commands to generate.