2022-04-27 09:35:20 +00:00
|
|
|
#!/usr/bin/env nix-shell
|
2022-09-11 15:47:08 +00:00
|
|
|
#!nix-shell --pure -i bash -p cacert bundix bundler
|
2022-04-27 09:35:20 +00:00
|
|
|
|
|
|
|
# Do these steps before running this script:
|
|
|
|
# 1. Copy Gemfile from new Redmine version to this folder
|
|
|
|
# 2. Manually modify the database lines in Gemfile (diff the two files, it's obvious)
|
|
|
|
|
|
|
|
pkg_dir="$(dirname "$0")"
|
|
|
|
cd ${pkg_dir}
|
|
|
|
|
|
|
|
for file in "gemset.nix" "Gemfile.lock"; do
|
|
|
|
if [ -f ${file} ]; then
|
|
|
|
rm ${file}
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2022-09-11 15:47:08 +00:00
|
|
|
bundle lock --add-platform ruby
|
2024-07-27 06:49:29 +00:00
|
|
|
bundle lock --remove-platform aarch64-linux
|
|
|
|
bundle lock --remove-platform aarch64-linux-gnu
|
|
|
|
bundle lock --remove-platform aarch64-linux-musl
|
|
|
|
bundle lock --remove-platform arm-linux
|
|
|
|
bundle lock --remove-platform arm-linux-gnu
|
|
|
|
bundle lock --remove-platform arm-linux-musl
|
|
|
|
bundle lock --remove-platform arm64-darwin
|
|
|
|
bundle lock --remove-platform x86-linux
|
|
|
|
bundle lock --remove-platform x86-linux-gnu
|
|
|
|
bundle lock --remove-platform x86-linux-musl
|
|
|
|
bundle lock --remove-platform x86_64-darwin
|
|
|
|
bundle lock --remove-platform x86_64-linux-gnu
|
|
|
|
bundle lock --remove-platform x86_64-linux-musl
|
2022-04-27 09:35:20 +00:00
|
|
|
bundix -l
|