mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-10-09 23:20:06 +02:00
.gitlab-ci
.reuse
LICENSES
docs
fuzzing
gio
girepository
glib
gmodule
gobject
gthread
m4macros
po
subprojects
tests
tools
gen-visibility-macros.py
generate-uac-manifest.py
glib-gettextize.in
glib.supp
meson.build
update-unicode-data.sh
.clang-format
.dir-locals.el
.editorconfig
.gitignore
.gitlab-ci.yml
.gitmodules
.lcovrc
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
INSTALL.md
NEWS
README.md
SECURITY.md
glib.doap
meson.build
meson_options.txt
We need to perform multiple actions on unicode updates, so let's handle all the commands in a single script so that we don't have to remember all the details each time.
39 lines
1.0 KiB
Bash
Executable File
39 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ ! -d "$1" ]; then
|
|
echo "Usage $(basename "$0") UCD-directory [version]"
|
|
exit 1
|
|
fi
|
|
|
|
ucd=$(realpath "$1")
|
|
version=$2
|
|
glib_dir=$(git -C "$(dirname "$0")" rev-parse --show-toplevel)
|
|
|
|
# shellcheck disable=SC2144 # we only want to match a file like this
|
|
if ! [ -f "$ucd"/UnicodeData*.txt ] || ! [ -f "$ucd"/CaseFolding.*txt ]; then
|
|
echo "'$ucd' does not look like an Unicode Database directory";
|
|
fi
|
|
|
|
if [ -z "$version" ]; then
|
|
readme=("$ucd"/ReadMe*.txt)
|
|
version=$(sed -n "s,.*Version \([0-9.]\+\) of the Unicode Standard.*,\1,p" \
|
|
"${readme[@]}")
|
|
|
|
if [ -z "$version" ]; then
|
|
echo "Invalid version found"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
cd "$glib_dir" || exit 1
|
|
|
|
echo "Updating generated code to Unicode version $version"
|
|
set -xe
|
|
|
|
(cd glib && ./gen-unicode-tables.pl -both "$version" "$ucd")
|
|
glib/tests/gen-casefold-txt.py "$version" \
|
|
"$ucd"/CaseFolding*.txt > glib/tests/casefold.txt
|
|
glib/tests/gen-casemap-txt.py "$version" \
|
|
"$ucd"/UnicodeData*.txt \
|
|
"$ucd"/SpecialCasing*.txt > glib/tests/casemap.txt
|