From owner-svn-ports-head@freebsd.org Wed May 31 12:59:09 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BAE6DB793B7; Wed, 31 May 2017 12:59:09 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9393477537; Wed, 31 May 2017 12:59:09 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4VCx8Kf028053; Wed, 31 May 2017 12:59:08 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4VCx8Ci028048; Wed, 31 May 2017 12:59:08 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201705311259.v4VCx8Ci028048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Wed, 31 May 2017 12:59:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442154 - in head/misc: . unicode-ucd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 May 2017 12:59:09 -0000 Author: kwm Date: Wed May 31 12:59:08 2017 New Revision: 442154 URL: https://svnweb.freebsd.org/changeset/ports/442154 Log: Add unicode-ucd. The Unicode Character Database (UCD) consists of a number of data files listing Unicode character properties and related data. It also includes data files containing test data for conformance to several important Unicode algorithms. Also contains the data files for the Unified Han database of Hanzi/Kanji/Hanja Chinese characters. Added: head/misc/unicode-ucd/ head/misc/unicode-ucd/Makefile (contents, props changed) head/misc/unicode-ucd/distinfo (contents, props changed) head/misc/unicode-ucd/pkg-descr (contents, props changed) head/misc/unicode-ucd/pkg-plist (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Wed May 31 12:42:02 2017 (r442153) +++ head/misc/Makefile Wed May 31 12:59:08 2017 (r442154) @@ -474,6 +474,7 @@ SUBDIR += uk-postcodes SUBDIR += umodunpack SUBDIR += unclutter + SUBDIR += unicode-ucd SUBDIR += upclient SUBDIR += us-zipcodes SUBDIR += usbids Added: head/misc/unicode-ucd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unicode-ucd/Makefile Wed May 31 12:59:08 2017 (r442154) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= unicode-ucd +PORTVERSION= 9.0.0 +CATEGORIES= misc +MASTER_SITES= http://www.unicode.org/Public/zipped/${PORTVERSION}/ +DISTFILES= UCD.zip \ + Unihan.zip +DIST_SUBDIR= unicode/${PORTVERSION} + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Unicode Character Database + +# https://fedoraproject.org/wiki/Licensing/MIT#Modern_Style_without_sublicense_.28Unicode.29 +LICENSE= MIT + +USES= zip + +NO_WRKSUBDIR= yes +NO_BUILD= yes + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/share/${PORTNAME} + cd ${WRKSRC} && ${COPYTREE_SHARE} . \ + ${STAGEDIR}${PREFIX}/share/${PORTNAME}/ +# we unpack Unihan.zip but gucharmap wants the Unihan.zip to be present + ${INSTALL_DATA} ${DISTDIR}${DIST_SUBDIR}/Unihan.zip \ + ${STAGEDIR}${PREFIX}/share/${PORTNAME}/ + +.include Added: head/misc/unicode-ucd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unicode-ucd/distinfo Wed May 31 12:59:08 2017 (r442154) @@ -0,0 +1,5 @@ +TIMESTAMP = 1470738390 +SHA256 (unicode/9.0.0/UCD.zip) = df9e028425816fd5117eaea7173704056f88f7cd030681e457c6f3827f9390ec +SIZE (unicode/9.0.0/UCD.zip) = 5655592 +SHA256 (unicode/9.0.0/Unihan.zip) = 6afdd48fb3c5d79a527ed27ce2582b2f684c09e16f5d0837fe7e5b0204f46362 +SIZE (unicode/9.0.0/Unihan.zip) = 6558824 Added: head/misc/unicode-ucd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unicode-ucd/pkg-descr Wed May 31 12:59:08 2017 (r442154) @@ -0,0 +1,9 @@ +The Unicode Character Database (UCD) consists of a number of data files +listing Unicode character properties and related data. It also includes +data files containing test data for conformance to several important +Unicode algorithms. + +This package contains Unihan.zip which contains the data files for the +Unified Han database of Hanzi/Kanji/Hanja Chinese characters. + +WWW: http://www.unicode.org/ucd/ Added: head/misc/unicode-ucd/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unicode-ucd/pkg-plist Wed May 31 12:59:08 2017 (r442154) @@ -0,0 +1,71 @@ +%%DATADIR%%/ArabicShaping.txt +%%DATADIR%%/BidiBrackets.txt +%%DATADIR%%/BidiCharacterTest.txt +%%DATADIR%%/BidiMirroring.txt +%%DATADIR%%/BidiTest.txt +%%DATADIR%%/Blocks.txt +%%DATADIR%%/CJKRadicals.txt +%%DATADIR%%/CaseFolding.txt +%%DATADIR%%/CompositionExclusions.txt +%%DATADIR%%/DerivedAge.txt +%%DATADIR%%/DerivedCoreProperties.txt +%%DATADIR%%/DerivedNormalizationProps.txt +%%DATADIR%%/EastAsianWidth.txt +%%DATADIR%%/EmojiSources.txt +%%DATADIR%%/HangulSyllableType.txt +%%DATADIR%%/Index.txt +%%DATADIR%%/IndicPositionalCategory.txt +%%DATADIR%%/IndicSyllabicCategory.txt +%%DATADIR%%/Jamo.txt +%%DATADIR%%/LineBreak.txt +%%DATADIR%%/NameAliases.txt +%%DATADIR%%/NamedSequences.txt +%%DATADIR%%/NamedSequencesProv.txt +%%DATADIR%%/NamesList.html +%%DATADIR%%/NamesList.txt +%%DATADIR%%/NormalizationCorrections.txt +%%DATADIR%%/NormalizationTest.txt +%%DATADIR%%/PropList.txt +%%DATADIR%%/PropertyAliases.txt +%%DATADIR%%/PropertyValueAliases.txt +%%DATADIR%%/ReadMe.txt +%%DATADIR%%/ScriptExtensions.txt +%%DATADIR%%/Scripts.txt +%%DATADIR%%/SpecialCasing.txt +%%DATADIR%%/StandardizedVariants.html +%%DATADIR%%/StandardizedVariants.txt +%%DATADIR%%/TangutSources.txt +%%DATADIR%%/USourceData.txt +%%DATADIR%%/USourceGlyphs.pdf +%%DATADIR%%/UnicodeData.txt +%%DATADIR%%/Unihan.zip +%%DATADIR%%/Unihan_DictionaryIndices.txt +%%DATADIR%%/Unihan_DictionaryLikeData.txt +%%DATADIR%%/Unihan_IRGSources.txt +%%DATADIR%%/Unihan_NumericValues.txt +%%DATADIR%%/Unihan_OtherMappings.txt +%%DATADIR%%/Unihan_RadicalStrokeCounts.txt +%%DATADIR%%/Unihan_Readings.txt +%%DATADIR%%/Unihan_Variants.txt +%%DATADIR%%/auxiliary/GraphemeBreakProperty.txt +%%DATADIR%%/auxiliary/GraphemeBreakTest.html +%%DATADIR%%/auxiliary/GraphemeBreakTest.txt +%%DATADIR%%/auxiliary/LineBreakTest.html +%%DATADIR%%/auxiliary/LineBreakTest.txt +%%DATADIR%%/auxiliary/SentenceBreakProperty.txt +%%DATADIR%%/auxiliary/SentenceBreakTest.html +%%DATADIR%%/auxiliary/SentenceBreakTest.txt +%%DATADIR%%/auxiliary/WordBreakProperty.txt +%%DATADIR%%/auxiliary/WordBreakTest.html +%%DATADIR%%/auxiliary/WordBreakTest.txt +%%DATADIR%%/extracted/DerivedBidiClass.txt +%%DATADIR%%/extracted/DerivedBinaryProperties.txt +%%DATADIR%%/extracted/DerivedCombiningClass.txt +%%DATADIR%%/extracted/DerivedDecompositionType.txt +%%DATADIR%%/extracted/DerivedEastAsianWidth.txt +%%DATADIR%%/extracted/DerivedGeneralCategory.txt +%%DATADIR%%/extracted/DerivedJoiningGroup.txt +%%DATADIR%%/extracted/DerivedJoiningType.txt +%%DATADIR%%/extracted/DerivedLineBreak.txt +%%DATADIR%%/extracted/DerivedNumericType.txt +%%DATADIR%%/extracted/DerivedNumericValues.txt