summaryrefslogtreecommitdiff
path: root/Admin/gen-uninames
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2021-12-31 19:41:25 +0100
committerBruno Haible <bruno@clisp.org>2021-12-31 19:41:25 +0100
commita051c863a4d82ccad43f28a985bfcc4e30c9dfce (patch)
tree33aab4cf78660240be987fdc2e2995c035d15568 /Admin/gen-uninames
parenta61e78d8edc1beeeeb0c0818eb96ca8d09592296 (diff)
downloadlibunistring-a051c863a4d82ccad43f28a985bfcc4e30c9dfce.tar.gz
Update maintainer instructions and scripts.
Diffstat (limited to 'Admin/gen-uninames')
-rwxr-xr-xAdmin/gen-uninames13
1 files changed, 4 insertions, 9 deletions
diff --git a/Admin/gen-uninames b/Admin/gen-uninames
index 4121260..795f418 100755
--- a/Admin/gen-uninames
+++ b/Admin/gen-uninames
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# Copyright (C) 2015 Free Software Foundation, Inc.
+# Copyright (C) 2015-2021 Free Software Foundation, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -93,19 +93,14 @@ signal=0
("$CLISP" --version) >/dev/null 2>/dev/null \
|| { echo "$progname: *** clisp not found; skipping uniname" 1>&2; exit 0; }
-sed -e '/^[0-9A-F]*;</d' "$UCD/UnicodeData.txt" > "$tmp/UnicodeDataNames.txt"
-
-sed -e 's/ *$//' -e '/^#/d' -e '/^$/d' < "$UCD/NameAliases.txt" \
- > "$tmp/NameAliases.txt"
-
"$CLISP" "$GNULIB_SRCDIR/lib/uniname/gen-uninames.lisp" \
- "$tmp/UnicodeDataNames.txt" \
+ "$UCD/UnicodeData.txt" \
"$GNULIB_SRCDIR/lib/uniname/uninames.h" \
- "$tmp/NameAliases.txt"
+ "$UCD/NameAliases.txt"
# Copy necessary files from UCD
for dstfile in "$GNULIB_SRCDIR/tests/uniname/UnicodeData.txt" \
- "$GNULIB_SRCDIR/tests/uniname/NameAliases.txt" ; do
+ "$GNULIB_SRCDIR/tests/uniname/NameAliases.txt" ; do
srcfile=`expr "$dstfile" : '.*/\(.*\)'`
if test -f "$UCD/$srcfile"; then
srcfile="$UCD/$srcfile"