Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/unicode-data/
Date: Sat, 25 Sep 2021 23:25:07
Message-Id: 1632612275.0163df02dba9fa2c56460c5831797a38eb06e5f3.sam@gentoo
1 commit: 0163df02dba9fa2c56460c5831797a38eb06e5f3
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 25 23:24:35 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 25 23:24:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0163df02
7
8 Revert "app-i18n/unicode-data: move data to common path"
9
10 This reverts commit 5512fe298f5d656fd8c14fe40d306af22fbdd8ae.
11
12 Bug: https://bugs.gentoo.org/814860
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 .../unicode-data/unicode-data-14.0.0-r1.ebuild | 30 ----------------------
16 1 file changed, 30 deletions(-)
17
18 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
19 deleted file mode 100644
20 index d31503087bd..00000000000
21 --- a/app-i18n/unicode-data/unicode-data-14.0.0-r1.ebuild
22 +++ /dev/null
23 @@ -1,30 +0,0 @@
24 -# Copyright 1999-2021 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=8
28 -
29 -DESCRIPTION="Unicode data from unicode.org"
30 -HOMEPAGE="https://unicode.org/ucd/"
31 -SRC_URI="https://unicode.org/Public/zipped/${PV}/UCD.zip -> ${P}-UCD.zip
32 - https://unicode.org/Public/zipped/${PV}/Unihan.zip -> ${P}-Unihan.zip"
33 -
34 -LICENSE="unicode"
35 -SLOT="0"
36 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
37 -
38 -DEPEND="app-arch/unzip"
39 -S="${WORKDIR}"
40 -
41 -src_prepare() {
42 - # we have separate ebuild for emoji. And it is even more complete that what installs here.
43 - rm -r emoji || die
44 - default
45 -}
46 -
47 -src_install() {
48 - insinto /usr/share/${PN%%-*}
49 - doins -r "${S}"/*
50 - # Unihan.zip needs to be installed as a zip for reverse deps
51 - # https://bugzilla.gnome.org/show_bug.cgi?id=768210
52 - newins "${DISTDIR}"/${P}-Unihan.zip Unihan.zip
53 -}