-
Notifications
You must be signed in to change notification settings - Fork 209
/
_pkg.sh
executable file
·145 lines (121 loc) · 3.91 KB
/
_pkg.sh
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
#!/usr/bin/env bash
# Copyright (C) Viktor Szakats. See LICENSE.md
# SPDX-License-Identifier: MIT
# shellcheck disable=SC3040,SC2039
set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail
cd "$(dirname "$0")"
mode="${2:-}"
if [ "${_HOST}" = 'mac' ]; then
tar() { gtar "$@"; }
fi
_cdo="$(pwd)"
if [ "${_NAM}" != "${_UNIPKG}" ]; then
chmod -R a+rw-s,go-w "${_DST}"
# NOTE: Not effective on MSYS2:
find "${_DST}" -name '*.a' -exec chmod a-x '{}' +
if [ "${_OS}" = 'win' ]; then
find "${_DST}" \( -name '*.exe' -o -name '*.dll' \) -exec chmod a+x '{}' +
fi
# First, merge this package into the unified package
unipkg="${_UNIPKG}"
{
[ -d "${_DST}/bin" ] && rsync --archive --update "${_DST}/bin" "${unipkg}"
[ -d "${_DST}/include" ] && rsync --archive --update "${_DST}/include" "${unipkg}"
if [ "${_NAM}" = 'libssh2' ]; then
mkdir -p "${unipkg}/dep/${_NAM}"
rsync --archive --update "${_DST}/docs" "${unipkg}/dep/${_NAM}"
fi
[ -d "${_DST}/lib" ] && rsync --archive --update "${_DST}/lib" "${unipkg}"
if [ "${_NAM}" = 'curl' ]; then
cp -f -p "${_DST}"/*.* "${unipkg}"
rsync --archive --update "${_DST}/docs" "${unipkg}"
else
_NAM_DEP="${unipkg}/dep/${_NAM}"
mkdir -p "${_NAM_DEP}"
cp -f -p "${_DST}"/*.* "${_NAM_DEP}"
fi
}
fi
create_pkg() {
arch_ext="$2"
if [ "${_NAM}" != "${_UNIPKG}" ]; then
_suf="${_FLAV}"
else
_suf='' # _FLAV already added, do not add it a second time
fi
# Alter filename for non-release packages
if [[ "${_CONFIG}" = *'main'* ]]; then
if [ "${PUBLISH_PROD_FROM}" != "${_HOST}" ]; then
_suf+="-built-on-${_HOST}"
fi
else
_suf+="-test-built-on-${_HOST}"
fi
_pkg="${_OUT}${_suf}${arch_ext}"
_FLS="$(dirname "$0")/_files"
(
cd "${_DST}/.."
case "${_HOST}" in
win) find "${_BAS}" -exec attrib +A -R '{}' \;
esac
find "${_DST}" -depth -type d -exec touch -c -r "$1" '{}' +
find "${_BAS}" | sort > "${_FLS}"
rm -f "${_cdo}/${_pkg}"
case "${arch_ext}" in
.tar.xz) TZ=UTC tar --create \
--format=ustar \
--owner=0 --group=0 --numeric-owner \
--sort=name \
--no-recursion \
--files-from "${_FLS}" | xz > "${_cdo}/${_pkg}";;
.zip) TZ=UTC zip --quiet -9 --strip-extra \
--names-stdin - < "${_FLS}" > "${_cdo}/${_pkg}";;
esac
touch -c -r "$1" "${_cdo}/${_pkg}"
)
rm -f "${_FLS}"
# <filename>: <size> bytes <YYYY-MM-DD> <HH:MM>
case "${_HOST}" in
bsd|mac) TZ=UTC stat -f '%N: %z bytes %Sm' -t '%Y-%m-%d %H:%M' "${_pkg}";;
*) TZ=UTC stat -c '%n: %s bytes %y' "${_pkg}";;
esac
openssl dgst -sha256 "${_pkg}" | sed 's/^SHA256/SHA2-256/g' | tee "${_pkg}.txt" | tee -a hashes.txt
# Sign releases only
if [ -z "${_suf}" ]; then
./_sign-pkg.sh "${_pkg}"
fi
}
if [ "${CW_NOPKG:-}" = '1' ]; then
if [ "${CW_PKG_NODELETE:-}" != '1' ]; then
rm -r -f "${_DST:?}"
fi
exit
fi
if [ "${_NAM}" != "${_UNIPKG}" ]; then
ver="${_VER}"
url=''
[ "${#ver}" -ge 32 ] && ver="$(printf '%.8s' "${ver}")"
namver="${_NAM} ${ver}"
[ -f "${_NAM}/__url__.txt" ] && url=" $(cat "${_NAM}/__url__.txt")"
echo "${namver}${url}" >> "${_UNIMFT}"
echo "${namver}${url}" >> "${_URLS}"
if ! grep -q -a -F "${namver}" -- "${_BLD}"; then
echo "${namver}" >> "${_BLD}"
fi
elif [ "${mode}" = 'macuni' ] || [[ "${_CONFIG}" != *'macuni'* ]]; then
create_pkg "$1" '.tar.xz'
if [ "${_OS}" = 'win' ]; then
create_pkg "$1" '.zip'
fi
fi
if [ "${mode}" = 'unified' ] && [[ "${_CONFIG}" = *'macuni'* ]]; then
touch "${_DST}/__macuni__.txt"
else
# If this is a unified (containing all packages) release tree and we have
# been asked to not delete them (e.g. for manual post-processing or
# packaging), leave them on the disk.
if [ "${_NAM}" = "${_UNIPKG}" ] && [ "${CW_PKG_NODELETE:-}" = '1' ]; then
exit
fi
rm -r -f "${_DST:?}"
fi