diff options
author | Sam James <sam@gentoo.org> | 2021-09-26 00:24:35 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-09-26 00:24:35 +0100 |
commit | 0163df02dba9fa2c56460c5831797a38eb06e5f3 (patch) | |
tree | c2fa5bbea4ca16d91f6b687bf9b9506704631f44 /app-i18n | |
parent | Revert "app-i18n/ibus: reflect new data path of app-i18n/unicode-data" (diff) | |
download | gentoo-0163df02dba9fa2c56460c5831797a38eb06e5f3.tar.gz gentoo-0163df02dba9fa2c56460c5831797a38eb06e5f3.tar.bz2 gentoo-0163df02dba9fa2c56460c5831797a38eb06e5f3.zip |
Revert "app-i18n/unicode-data: move data to common path"
This reverts commit 5512fe298f5d656fd8c14fe40d306af22fbdd8ae.
Bug: https://bugs.gentoo.org/814860
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/unicode-data/unicode-data-14.0.0-r1.ebuild | 30 |
1 files changed, 0 insertions, 30 deletions
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 deleted file mode 100644 index d31503087bd1..000000000000 --- a/app-i18n/unicode-data/unicode-data-14.0.0-r1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# 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 -} |