• Home
  • Raw
  • Download

Lines Matching +full:ls +full:- +full:files

3 # Use of this source code is governed by a BSD-style license that can be
9 if [ $# -lt 1 ];
11 echo "Usage: "$0" version (e.g. '56-1')" >&2
17 # Makes ("68" "1") from "68-1".
18 readonly major_minor_version=(${version//-/ })
23 repoprefix="https://github.com/unicode-org/icu/tags/release-"
28 svn ls "${repo}" > /dev/null 2>&1 || \
34 rm -rf "${treeroot}/${file}"
40 svn export --native-eol LF "${repo}/${file}" "${treeroot}/${file}"
46 rm -rf "${treeroot}/source/${d}"
49 echo "deleting Visual Studio build files ..."
50 find "${treeroot}/source" -name *vcxp* -o -name *sln | xargs rm
52 echo "restoring local data and configuration files ..."
56 git checkout -- "${treeroot}/source/data/"${line}
60 sed -i.orig -e '/^ac_config_files=/ s:\ layoutex/Makefile::g' \
61 -e '/^ac_config_files=/ s: samples/M: samples/M:' \
63 rm -f "${treeroot}/source/configure.orig"
65 echo "git-adding new files"
66 git status source | sed -n '/^Untracked/,$ p' | grep source | xargs git add
72 find source/i18n -maxdepth 1 ! -type d | egrep '\.(c|cpp|h)$' |sort | \
74 ls source/i18n/unicode/*h | sort | sed 's/^\(.*\)$/ "\1",/' > i18n_hdr.list
76 find source/common -maxdepth 1 ! -type d | egrep '\.(c|cpp|h)$' |sort | \
78 ls source/common/unicode/*h | sort | \
81 sed -i \
99 echo "Updating icu.gyp* files"
101 ls source/i18n/unicode/*h | sort | \
103 ls source/common/unicode/*h | sort | \
107 find source/i18n -maxdepth 1 ! -type d | egrep '\.(c|cpp)$' | \
109 find source/common -maxdepth 1 ! -type d | egrep '\.(c|cpp)$' | \
112 sed -i \
122 sed -i \
134 # read it without parsing .gni files.