Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/libskk/
Date: Wed, 02 Sep 2020 14:25:42
Message-Id: 1599056716.36bf46805a98eb977542dd36f3328602d27a99bf.hattya@gentoo
1 commit: 36bf46805a98eb977542dd36f3328602d27a99bf
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 2 14:24:31 2020 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 2 14:25:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36bf4680
7
8 app-i18n/libskk: new upstream release
9
10 Package-Manager: Portage-3.0.4, Repoman-2.3.23
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-i18n/libskk/Manifest | 1 +
14 app-i18n/libskk/libskk-1.0.5.ebuild | 48 +++++++++++++++++++++++++++++++++++++
15 app-i18n/libskk/metadata.xml | 14 +++++------
16 3 files changed, 56 insertions(+), 7 deletions(-)
17
18 diff --git a/app-i18n/libskk/Manifest b/app-i18n/libskk/Manifest
19 index ab428f2bac6..df8b78b8541 100644
20 --- a/app-i18n/libskk/Manifest
21 +++ b/app-i18n/libskk/Manifest
22 @@ -1 +1,2 @@
23 DIST libskk-1.0.2.tar.gz 867572 BLAKE2B 32f599e83bf7ced796d2f37f6f4bf5e45f47c90e144784b7b3e082866cc619a26e3aca4f16051685baa4d8ac54b0462930193f978bc1e8220b378679269c5833 SHA512 f8fff94b216c18f66bf1004ee068f8d737177f1b70ac36d054d9a68ce02ba9b8d1b7b4127d9a330f64054b2fe06f352070c750a3562d4be36fecf20cb854e6c0
24 +DIST libskk-1.0.5.tar.xz 564488 BLAKE2B e7108bd2f44e5a0a0756cd25da4b07376b36604d6d2159b283e8a5f4ef76006210ff993d58b653cbce01ae4c9e003acf4acbd93ebc40711fec2600e514c49e9f SHA512 6db675edba89b83da0c29afb42644c39bcb0ccfc47f067a18e0eda817df4f58a86c86e8747080018c132d8734754a6fd8a30fe6578050eb93ff636edeed534ab
25
26 diff --git a/app-i18n/libskk/libskk-1.0.5.ebuild b/app-i18n/libskk/libskk-1.0.5.ebuild
27 new file mode 100644
28 index 00000000000..eab92a1f7f0
29 --- /dev/null
30 +++ b/app-i18n/libskk/libskk-1.0.5.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="7"
36 +
37 +inherit vala virtualx
38 +
39 +DESCRIPTION="GObject-based library to deal with Japanese kana-to-kanji conversion method"
40 +HOMEPAGE="https://github.com/ueno/libskk"
41 +SRC_URI="https://github.com/ueno/${PN}/releases/download/${PV}/${P}.tar.xz"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="+introspection nls static-libs"
47 +
48 +RDEPEND="dev-libs/glib:2
49 + dev-libs/json-glib
50 + dev-libs/libgee:0.8
51 + x11-libs/libxkbcommon
52 + introspection? ( dev-libs/gobject-introspection )
53 + nls? ( virtual/libintl )"
54 +DEPEND="${RDEPEND}
55 + $(vala_depend)
56 + virtual/pkgconfig
57 + nls? ( sys-devel/gettext )"
58 +
59 +src_prepare() {
60 + vala_src_prepare
61 + default
62 +}
63 +
64 +src_configure() {
65 + econf \
66 + $(use_enable introspection) \
67 + $(use_enable nls) \
68 + $(use_enable static-libs static)
69 +}
70 +
71 +src_test() {
72 + export GSETTINGS_BACKEND="memory"
73 + virtx emake check
74 +}
75 +
76 +src_install() {
77 + default
78 + use static-libs || find "${ED}" -name '*.la' -delete || die
79 +}
80
81 diff --git a/app-i18n/libskk/metadata.xml b/app-i18n/libskk/metadata.xml
82 index 47d519fd605..8d9f83d4f2e 100644
83 --- a/app-i18n/libskk/metadata.xml
84 +++ b/app-i18n/libskk/metadata.xml
85 @@ -1,11 +1,11 @@
86 <?xml version="1.0" encoding="UTF-8"?>
87 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
88 <pkgmetadata>
89 - <maintainer type="project">
90 - <email>cjk@g.o</email>
91 - <name>Cjk</name>
92 - </maintainer>
93 - <upstream>
94 - <remote-id type="github">ueno/libskk</remote-id>
95 - </upstream>
96 + <maintainer type="project">
97 + <email>cjk@g.o</email>
98 + <name>Cjk</name>
99 + </maintainer>
100 + <upstream>
101 + <remote-id type="github">ueno/libskk</remote-id>
102 + </upstream>
103 </pkgmetadata>