summaryrefslogtreecommitdiff
path: root/buildrump.sh/tarup.sh
blob: cd8192e3631abc10be2f58c45509176764d61ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#! /usr/bin/env sh
#
# Copyright (c) 2013 
# Jens Staal <staal1978@gmail.com>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#

# This script will generate a tar.{gz,xz} archive of the current git checkout
# The "version number" of the tarball is in unix time format 

unset force
[ "$1" = '-f' ] && force=-TARUP-f

: ${GIT:=git}

# files which are not relevant in the tarball
STRIPFILES='README.md tarup.sh checkout.sh .travis.yml'

echo ">> Detecting buildrump.sh git revision"

_revision=$(${GIT} rev-parse HEAD)
# ideally $_date would be in UTC
_date=$(${GIT} show -s --format="%ci" ${_revision})

#incremental "version number" in unix time format
_date_filename=$(echo ${_date} | sed 's/-//g;s/ .*//')

tarballdir=tarup
tarball=${tarballdir}/buildrump-${_date_filename}${force}.tar
echo ">> Target basename: ${tarball}"

DEST=buildrump-${_date_filename}

die ()
{

  echo '>> ERROR:' $*
  exit 1
}

nuketmp ()
{

  rm -rf "${DEST}" "${tarball}"*
  exit 1
}

if [ -z "${force}" ]
then
  [ -e ${tarball} ] && die "${tarball} already exists"
  gitstat="$(${GIT} status --porcelain)"
  if [ ! -z "${gitstat}" ]
  then
    IFS=' '
    die "working directory not clean:
${gitstat}"
  fi
  ${GIT} status --porcelain -b | grep -q '## master' \
    || die "not on master branch"
fi

rm -f ${tarball}

if [ -z "${_revision}" ]
then
  die "git revision could not be detected"
else
  echo ">> buildrump.sh git revision is ${_revision}"
fi

trap "nuketmp" INT QUIT
mkdir -p "${DEST}" || die "failed to create directory \"${DEST}\""
mkdir -p "${tarballdir}" || die "failed to create directory \"${tarballdir}\""

echo ">> Fetching NetBSD sources"

./buildrump.sh -s ${DEST}/src checkoutgit || die "Checkout failed!"

# don't need .git in the tarball
rm -rf ${DEST}/src/.git

echo ">> Checkout done"

echo ">> Generating temporary directory to be compressed"

# generate sed expression to filter out unwanted files
unset filt
for file in ${STRIPFILES}
do
  filt="/^${file}\$/d;${filt}"
done

# copy desired files into staging directory
${GIT} ls-files | sed "${filt}" | xargs tar -cf - | (cd ${DEST} ; tar -xf -)

echo ${_revision} > "${DEST}/tarup-gitrevision"
echo ${_date} > "${DEST}/tarup-gitdate"

cat > "${DEST}/README" << EOF
This archive is a self-contained tarball for building rump kernels,
including the build scripts and NetBSD kernel driver sources.  The
archive is meant for example for networkless environments where
fetching the NetBSD kernel drivers at build-time is not possible.

You can recreate this archive by cloning the buildrump.sh repository [1],
checking out revision ${_revision}
and running the "tarup.sh" script.

To build rump kernels for the current platform, run "./buildrump.sh".
For crosscompilation and other instructions, see the git repository.

Unless you have a need to use this self-contained archive, it is
recommended that you use the git repository.

[1] https://github.com/rumpkernel/buildrump.sh


The following NetBSD source timestamps were used in this snapshot:
EOF
./checkout.sh listdates >> "${DEST}/README"

echo ">> Creating archive of sources"

tar -cf "${tarball}" "${DEST}"
gzipsfx=gz
xzsfx=xz
for compress in gzip xz
do
  eval suf=\${${compress}sfx}
  echo ">> Compressing with ${compress}"
  ${compress} - < "${tarball}" > "${tarball}.${suf}.tmp"
  mv "${tarball}.${suf}.tmp" "${tarball}.${suf}"
done

echo ">> Removing temporary files"
rm -rf "${DEST}" "${tarball}"

echo ">> Your archives are at ${tarball}.{gz,xz}"
exit 0