From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A37D158015 for ; Sat, 25 Sep 2021 22:57:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6B1BE08BF; Sat, 25 Sep 2021 22:57:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B714FE08BF for ; Sat, 25 Sep 2021 22:57:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C040342EFE for ; Sat, 25 Sep 2021 22:57:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03A1210C for ; Sat, 25 Sep 2021 22:57:16 +0000 (UTC) From: "Vadim Misbakh-Soloviov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vadim Misbakh-Soloviov" Message-ID: <1632610603.5512fe298f5d656fd8c14fe40d306af22fbdd8ae.mva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/unicode-data/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/unicode-data/unicode-data-14.0.0-r1.ebuild X-VCS-Directories: app-i18n/unicode-data/ X-VCS-Committer: mva X-VCS-Committer-Name: Vadim Misbakh-Soloviov X-VCS-Revision: 5512fe298f5d656fd8c14fe40d306af22fbdd8ae X-VCS-Branch: master Date: Sat, 25 Sep 2021 22:57:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e847c735-b43d-456c-a127-35e4a66e53c0 X-Archives-Hash: 6c315b10ca8f1cd9671706ba40057a61 commit: 5512fe298f5d656fd8c14fe40d306af22fbdd8ae Author: Vadim Misbakh-Soloviov gentoo org> AuthorDate: Sat Sep 25 22:13:01 2021 +0000 Commit: Vadim Misbakh-Soloviov gentoo org> CommitDate: Sat Sep 25 22:56:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5512fe29 app-i18n/unicode-data: move data to common path Package-Manager: Portage-3.0.23, Repoman-3.0.1 Signed-off-by: Vadim Misbakh-Soloviov gentoo.org> .../unicode-data/unicode-data-14.0.0-r1.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app-i18n/unicode-data/unicode-data-14.0.0-r1.ebuild b/app-i18n/unicode-data/unicode-data-14.0.0-r1.ebuild new file mode 100644 index 00000000000..d31503087bd --- /dev/null +++ b/app-i18n/unicode-data/unicode-data-14.0.0-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Unicode data from unicode.org" +HOMEPAGE="https://unicode.org/ucd/" +SRC_URI="https://unicode.org/Public/zipped/${PV}/UCD.zip -> ${P}-UCD.zip + https://unicode.org/Public/zipped/${PV}/Unihan.zip -> ${P}-Unihan.zip" + +LICENSE="unicode" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +DEPEND="app-arch/unzip" +S="${WORKDIR}" + +src_prepare() { + # we have separate ebuild for emoji. And it is even more complete that what installs here. + rm -r emoji || die + default +} + +src_install() { + insinto /usr/share/${PN%%-*} + doins -r "${S}"/* + # Unihan.zip needs to be installed as a zip for reverse deps + # https://bugzilla.gnome.org/show_bug.cgi?id=768210 + newins "${DISTDIR}"/${P}-Unihan.zip Unihan.zip +}