archives/ruby3.2: new aport

This commit is contained in:
Antoine Martin 2024-08-09 22:28:02 -04:00
parent e7773e8def
commit a6bb19365d
Signed by: ayakael
GPG key ID: D62A472A4AA7D541
6 changed files with 443 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#!/bin/sh
ver_new="$1"
ver_old="$2"
if [ "$(apk version -t "$ver_old" "2.5.0-r0")" = "<" ]; then
cat >&2 <<-EOF
*
* In Ruby 2.5 more parts of the stdlib has been splitted into standalone
* gems, yet still installed with Ruby by default. We have moved some of
* them into separate subpackages. If you don't know which subpackages you
* need, you may install meta-package "ruby-full".
*
EOF
fi
exit 0