mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 02:17:19 +00:00
This moves the `.asc` files into subdirectories, and writes out the according `.list` files into them. It moves from templates to written-out `.list` files for clarity and ease of implementation (Debian and Ubuntu need different templates for `zulip`), and as a way of making explicit which releases are supported for each list. For the special-case of the PGroonga signing key, we source an additional file within the directory. This simplifies the process for adding another class of `.list` file.
42 lines
1.7 KiB
Bash
Executable File
42 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ ! -e /usr/share/doc/groonga-apt-source/copyright ]]; then
|
|
remove_pgroonga_apt_tmp_dir() {
|
|
rm -rf "$pgroonga_apt_tmp_dir"
|
|
}
|
|
pgroonga_apt_tmp_dir=$(mktemp --directory)
|
|
trap remove_pgroonga_apt_tmp_dir EXIT
|
|
|
|
{
|
|
cd "$pgroonga_apt_tmp_dir" || exit 1
|
|
tmp_gpg_home=.gnupg
|
|
pgroonga_apt_sign_key="$LIST_PATH/pgroonga-packages.groonga.org.asc"
|
|
gpg --homedir="$tmp_gpg_home" --import "$pgroonga_apt_sign_key"
|
|
# Find fingerprint of the first key.
|
|
pgroonga_apt_sign_key_fingerprint=$(
|
|
gpg --homedir="$tmp_gpg_home" --with-colons --list-keys \
|
|
| grep '^fpr:' \
|
|
| cut --delimiter=: --fields=10 \
|
|
| head --lines=1
|
|
)
|
|
release=$(lsb_release -sc)
|
|
distribution=$(lsb_release -si | tr '[:upper:]' '[:lower:]')
|
|
groonga_apt_source_deb="groonga-apt-source-latest-$release.deb"
|
|
groonga_apt_source_deb_sign="$groonga_apt_source_deb.asc.$pgroonga_apt_sign_key_fingerprint"
|
|
wget "https://packages.groonga.org/$distribution/$groonga_apt_source_deb"
|
|
wget "https://packages.groonga.org/$distribution/$groonga_apt_source_deb_sign"
|
|
gpg \
|
|
--homedir="$tmp_gpg_home" \
|
|
--verify \
|
|
"$groonga_apt_source_deb_sign" \
|
|
"$groonga_apt_source_deb"
|
|
# To suppress the following warning by "apt-get install":
|
|
# N: Download is performed unsandboxed as root as file
|
|
# '.../groonga-apt-source-latest-$release.deb' couldn't be
|
|
# accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied)
|
|
chown _apt .
|
|
apt-get -y install "./$groonga_apt_source_deb"
|
|
}
|
|
touch "$STAMP_FILE"
|
|
fi
|