From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 2F86E3858438; Tue, 16 Nov 2021 10:39:46 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2F86E3858438 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] cleanup Unicode data files after generating updated tables X-Act-Checkin: newlib-cygwin X-Git-Author: Thomas Wolff X-Git-Refname: refs/heads/master X-Git-Oldrev: 3cef6dfb5e83b65b6135dc3876c58aa8b907f79c X-Git-Newrev: 076c85673981493ed41aa176518a5e86fc71a33f Message-Id: <20211116103946.2F86E3858438@sourceware.org> Date: Tue, 16 Nov 2021 10:39:46 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Nov 2021 10:39:46 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=076c85673981493ed41aa176518a5e86fc71a33f commit 076c85673981493ed41aa176518a5e86fc71a33f Author: Thomas Wolff Date: Mon Nov 15 00:00:00 2021 +0100 cleanup Unicode data files after generating updated tables Diff: --- newlib/libc/Makefile.unidata | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/newlib/libc/Makefile.unidata b/newlib/libc/Makefile.unidata index c85c428f2..d0590a75b 100644 --- a/newlib/libc/Makefile.unidata +++ b/newlib/libc/Makefile.unidata @@ -1,11 +1,31 @@ +############################################################################# # Generate Unicode data tables for string/wcwidth and ctype/??w* + +unicode-update: unidata cleanup + +############################################################################# +# Clean up downloaded files + +cleanup: + rm ctype/UnicodeData.txt + rm string/Blocks.txt + rm string/EastAsianWidth.txt + rm string/UnicodeData.txt + rm string/uniset.tar.gz + +############################################################################# # Download Unicode data files + unidata: cd string; ./mkunidata -u cd ctype; ./mkunidata -u -# Generate Unicode data tables for string/wcwidth and ctype/??w* +############################################################################# # Use installed Unicode data files from package unicode-ucd + unidata-local: cd string; ./mkunidata -i cd ctype; ./mkunidata -i + +############################################################################# +# end