public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Akinori Hattori" <hattya@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/unicode-data/
Date: Wed,  6 May 2020 13:13:20 +0000 (UTC)	[thread overview]
Message-ID: <1588770768.91beddacc6fb43521195adfedfba36f2e9b7e6a3.hattya@gentoo> (raw)

commit:     91beddacc6fb43521195adfedfba36f2e9b7e6a3
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Wed May  6 13:12:48 2020 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Wed May  6 13:12:48 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91beddac

app-i18n/unicode-data: new upstream release

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>

 app-i18n/unicode-data/Manifest                   |  2 ++
 app-i18n/unicode-data/unicode-data-13.0.0.ebuild | 30 ++++++++++++++++++++++++
 2 files changed, 32 insertions(+)

diff --git a/app-i18n/unicode-data/Manifest b/app-i18n/unicode-data/Manifest
index f46ca75a5d7..229e95b1c6c 100644
--- a/app-i18n/unicode-data/Manifest
+++ b/app-i18n/unicode-data/Manifest
@@ -2,3 +2,5 @@ DIST unicode-data-12.0.0-UCD.zip 8410561 BLAKE2B 10d34faaad501ddaba6de73a126b8dc
 DIST unicode-data-12.0.0-Unihan.zip 6749737 BLAKE2B a6caeb86f5c9dc13bc265c81acaa8ae791fdc8dbf728d3fba7a7004edcfbfa655424371cd4c9e667e1f1d6a5623b0ac1d320f0709c232b58b02494a728c7d2dd SHA512 7fdefad078284c14a9105655d1cb4d2b0dc1c89c56effe92ffcbd5a30b325559a56d97574b6077144d7a4ed02df6e6a402a2a5360e4abc0c84bae5c589044375
 DIST unicode-data-12.1.0-UCD.zip 8410738 BLAKE2B b635b449a04f3ffed8ec7311064cf2093cec5e7ebf8ec9a52b753a1c9a3f50374bdfe41a4e3e61bceefb69a847474b086b24a43f7f02de7183474737086f869f SHA512 68512627ecb75520b354160216cc14622c0d5321356f03429a102f734bddf6859c4ab266ed15db177dcbffd76c97d13d90de9a4fc38b10082a0e58fe3c82cda4
 DIST unicode-data-12.1.0-Unihan.zip 6749737 BLAKE2B a6caeb86f5c9dc13bc265c81acaa8ae791fdc8dbf728d3fba7a7004edcfbfa655424371cd4c9e667e1f1d6a5623b0ac1d320f0709c232b58b02494a728c7d2dd SHA512 7fdefad078284c14a9105655d1cb4d2b0dc1c89c56effe92ffcbd5a30b325559a56d97574b6077144d7a4ed02df6e6a402a2a5360e4abc0c84bae5c589044375
+DIST unicode-data-13.0.0-UCD.zip 7537310 BLAKE2B 5bcc8f010f81fea22cd0b5806ee190bbe9e58348c5cc3627141de3b1df5a00cbdcd800ebd0eb3bc0499b2c26920f6cadf42804b539e5be0aeeeb9eaee334a817 SHA512 aed6d06c370dd87bc5713e19ff4cde47b065b76a18149194fa843e4efc5269f749ec8905cad9132d3b803ab621a46e372052b8f3c3e9b6a65afa6516b0f2b4f2
+DIST unicode-data-13.0.0-Unihan.zip 7044963 BLAKE2B fffcd322c87c607e9e689bfef4ec79b4ec576b4ffd84465ed6d38f485ac4fccc7d0f46662f76dbb79630e070b12bf9e1530bbbd5b32c043b71f696018e1f3ad2 SHA512 87238202b5da069ab1bbc4672d86c6fd0711e354fb17f53b0b4152850c56c0fa09e6e45820ae52d49756b25fe696518ceaa34cbfe5366ff60688c9a5c3a2d5be

diff --git a/app-i18n/unicode-data/unicode-data-13.0.0.ebuild b/app-i18n/unicode-data/unicode-data-13.0.0.ebuild
new file mode 100644
index 00000000000..02c0e2af5ca
--- /dev/null
+++ b/app-i18n/unicode-data/unicode-data-13.0.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+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 ~s390 ~sparc ~x86"
+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
+}


             reply	other threads:[~2020-05-06 13:13 UTC|newest]

Thread overview: 77+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-06 13:13 Akinori Hattori [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-15  7:26 [gentoo-commits] repo/gentoo:master commit in: app-i18n/unicode-data/ Akinori Hattori
2024-09-15  7:26 Akinori Hattori
2024-03-02 13:53 Michał Górny
2024-02-28  2:32 Ionen Wolkens
2024-02-12 13:05 Sam James
2024-02-12 13:05 Sam James
2024-02-12  8:55 Sam James
2024-02-12  8:55 Sam James
2024-02-12  8:55 Sam James
2023-12-01  0:11 Matt Turner
2023-09-14  3:05 Matt Turner
2022-11-23 17:52 Jakov Smolić
2022-11-16 18:10 Arthur Zamarin
2022-11-07  7:26 Sam James
2022-11-05 18:58 Arthur Zamarin
2022-11-05  9:58 Arthur Zamarin
2022-11-05  9:44 Arthur Zamarin
2022-11-05  5:59 Arthur Zamarin
2022-09-16  2:40 Matt Turner
2022-08-18  2:53 Matt Turner
2022-03-12 20:07 Arthur Zamarin
2022-03-06 23:49 Sam James
2022-03-06  7:54 Sam James
2022-03-01 11:30 Agostino Sarubbo
2022-03-01 11:28 Agostino Sarubbo
2022-03-01  9:44 Jakov Smolić
2022-03-01  0:01 Sam James
2022-02-28 23:59 Sam James
2021-09-25 23:25 Sam James
2021-09-25 22:57 Vadim Misbakh-Soloviov
2021-09-25 22:57 Vadim Misbakh-Soloviov
2021-06-02  2:42 Yixun Lan
2021-02-26 17:34 Sergei Trofimovich
2021-02-26 13:53 Sam James
2021-02-26  9:39 Agostino Sarubbo
2021-02-26  8:09 Agostino Sarubbo
2021-02-25 17:52 Sam James
2021-02-25 15:46 Sam James
2021-02-25 15:45 Sam James
2021-02-25 15:45 Sam James
2021-02-25 15:42 Sam James
2020-05-06 13:13 Akinori Hattori
2019-11-17 18:23 Mart Raudsepp
2019-08-03 20:37 Thomas Deutschmann
2019-08-03 20:37 Thomas Deutschmann
2019-07-13 12:08 Sergei Trofimovich
2019-06-17 19:40 Sergei Trofimovich
2019-06-17 10:07 Mikle Kolyada
2019-05-23 13:02 Mikle Kolyada
2019-05-10 17:49 Mikle Kolyada
2019-05-10 17:33 Mikle Kolyada
2019-05-08  9:33 Mikle Kolyada
2019-04-21 19:19 Virgil Dupras
2019-02-13 19:41 Dennis Lamm
2018-08-18  5:19 Mikle Kolyada
2018-07-20 22:24 Sergei Trofimovich
2018-05-01  7:41 Markus Meier
2018-04-07 20:22 Sergei Trofimovich
2018-03-31 21:46 Aaron Bauman
2018-03-31 17:52 Tobias Klausmann
2018-03-28 19:09 Matt Turner
2018-03-23 23:38 Sergei Trofimovich
2017-06-26 22:57 Lars Wendler
2017-06-26 22:57 Lars Wendler
2017-06-18 13:25 Alexis Ballier
2016-12-25 10:09 Agostino Sarubbo
2016-12-20  9:44 Agostino Sarubbo
2016-10-08  7:07 Pacho Ramos
2016-10-01 11:41 Jeroen Roovers
2016-09-29  4:11 Jeroen Roovers
2016-09-27 18:47 Markus Meier
2016-09-17 19:09 Pacho Ramos
2016-09-04 13:17 Tobias Klausmann
2016-08-01 16:40 Mike Gilbert
2016-07-31 11:44 Pacho Ramos
2016-07-31 11:44 Pacho Ramos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1588770768.91beddacc6fb43521195adfedfba36f2e9b7e6a3.hattya@gentoo \
    --to=hattya@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox