forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-i18n/unicode-data: Bump to version 10.0.0
Package-Manager: Portage-2.3.6, Repoman-2.3.2
- Loading branch information
Lars Wendler
committed
Jun 26, 2017
1 parent
25d8d33
commit b40e8f0
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST unicode-data-10.0.0-UCD.zip 5991193 SHA256 cb26d649f8bac8b12f69e2fbcd77d1759ecdcd7c8e8f1c4385a9c5a36cf14891 SHA512 4e232ddd01c5c85175f29cbda61d6a87f274669a3184e885cb44410c26f25eee70da984b3f4798f8d6c304b05333e9245e2eb6e3830ee7b16b2f2e50d32c9ee0 WHIRLPOOL 7b6d0f5532e397290bc8a19d572bd76fbed07f80e17a525e42e6705f185db8a62ea775a3bf045ab3c534b86a8762cb99da1148747b1938cac85c38771aca2678 | ||
DIST unicode-data-10.0.0-Unihan.zip 6632227 SHA256 01232063a8529636cf155ba7a1dbad329cb2e63acde83a3d607b5eafa8f933a5 SHA512 377f53ddc9ae514e8866c0e6b79f9b1d3613fad5a7e29c57a06baf8be84cbada0703b1c660401e7dbd2bb861b09fa9159b77322f42b34f5a0dc0d8f70ac4db12 WHIRLPOOL 21dfd6496d2233a632af88ab76c2587f6a5cddaea90ac110e36136ab3c70c655222e1726357aa5fe88b386bf272fb80cbf920a94ef841097649808aa96ad7c76 | ||
DIST unicode-data-9.0.0-UCD.zip 5655592 SHA256 df9e028425816fd5117eaea7173704056f88f7cd030681e457c6f3827f9390ec SHA512 e9bdf8ed6647b4d0bd83c6fcd885cb450fddbf84dac376e9771bddbb7ee1e8ea1ca8c2ca79e23832c26a4819dd62f86fcfa6eb6a1fcc7294185f5bc78be8fa2a WHIRLPOOL a310ca7d6ef780088bb741bd749e4bd2dba6330ac87d23b9a0f2c196e27a36a479069348d48fd2ca0a1c92e4fcfb6d45b7ce7f2cffed06e8391f8e792bd11e81 | ||
DIST unicode-data-9.0.0-Unihan.zip 6558824 SHA256 6afdd48fb3c5d79a527ed27ce2582b2f684c09e16f5d0837fe7e5b0204f46362 SHA512 9856d30afe5d7b0b088bde36c12431eae267992b315944ca8a7ddb3559adee7474fedd2d0d6b22716439f9cddad573a4bb45c6209036b0066a85fbd19412852e WHIRLPOOL 91eeb47a3c933fdafb4277959a3aeeab72ca6f17e954ce6b65b378d36b94a821fd663ba56a67514e07ec3df3afa3bd1299803cee08ccfcd62b838721c0cdd8c1 | ||
DIST unicode-data_6.1.0.orig.tar.gz 8549251 SHA256 e8c6f6ce45c6ab563173813b5817f66865c0c4c2aa577612ba68080e54a092e6 SHA512 8df65c837c686eff1c236d4325fb276928952c570f05224299f52528a4b80354da6e4e3db40acebd0247f328a511363fda62e3e357cdd3119947a495f437cff5 WHIRLPOOL a29824047f1c037948978ec9837f652ab010d08238e0c11564864d8125cfc3abde2526b1af7697b9f26deff9fee44050410a722d63adc3f4d8966cc6ed5ac0f9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="Unicode data from unicode.org" | ||
HOMEPAGE="http://www.unicode.org/ucd/" | ||
SRC_URI="http://www.unicode.org/Public/zipped/${PV}/UCD.zip -> ${P}-UCD.zip | ||
http://www.unicode.org/Public/zipped/${PV}/Unihan.zip -> ${P}-Unihan.zip" | ||
|
||
LICENSE="unicode" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" | ||
IUSE="" | ||
|
||
DEPEND="app-arch/unzip" | ||
RDEPEND="" | ||
|
||
S="${WORKDIR}" | ||
|
||
src_unpack() { | ||
# Unihan.zip needs to be installed as a zip for reverse deps | ||
# https://bugzilla.gnome.org/show_bug.cgi?id=768210 | ||
unpack ${P}-UCD.zip | ||
} | ||
|
||
src_install() { | ||
insinto /usr/share/${PN} | ||
doins -r "${S}"/* | ||
newins "${DISTDIR}"/${P}-Unihan.zip Unihan.zip | ||
} |