File: build-source-tarball

package info (click to toggle)
dothost 0.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 120 kB
  • sloc: sh: 141; python: 100; makefile: 36
file content (63 lines) | stat: -rwxr-xr-x 2,414 bytes parent folder | download
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
#!/bin/sh

# Copyright © 2014-2021 Jakub Wilk <jwilk@jwilk.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the “Software”), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

set -e -u
cd "${0%/*}/.."
if [ $# -ge 2 ]
then
    printf '%s [commit]\n' "$0" >&2
    exit 1
fi
if ! [ -d .git ]
then
    printf '%s requires git checkout\n' "$0" >&2
    exit 1
fi
pwd="$PWD"
commit=${1:-HEAD}
commit=$(git describe --always  "$commit")
name=$(git cat-file blob "$commit:doc/changelog" | head -n1 | cut -d ' ' -f 1)
date=$(git rev-list -1 --format=%cI "$commit" | grep -o '^....-..-..' | tr -d -)
version=$(git cat-file blob "$commit:doc/changelog" | head -n1 | cut -d ' ' -f2 | tr -d '()')
released=$(git cat-file blob "$commit:doc/changelog" | head -n1 | grep -v -w UNRELEASED || true)
[ -n "$released" ] || version="${version}rc${date}"
printf 'Commit: %s\nVersion: %s\n' "$commit" "$version" >&2
set -x
sourceroot=$(mktemp -d -t "$name-source-XXXXXX")
tar_opts='--owner root --group root --mode u=rwX,go=rX --format ustar --sort name'
gzip='gzip -9 -n'
git archive "$commit" --prefix="$name-$version/" | tar -C "$sourceroot" -xf -
cd "$sourceroot"/*
rm -r .git*
rm README.rst  # shipped as doc/README
rm private/build-source-tarball
mv LICENSE doc/
find . -empty -delete
cd ..
mkdir -p "$pwd/dist"
tar $tar_opts -I "$gzip" -cf "$pwd/dist/$name-$version.tar.gz" */
rm -r "$sourceroot"
set +x
cd "$pwd"
ls -d "dist/$name-$version.tar.gz"

# vim:ts=4 sts=4 sw=4 et