public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Yixun Lan" <dlan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-libpinyin/
Date: Sun, 24 Nov 2024 08:57:09 +0000 (UTC)	[thread overview]
Message-ID: <1732438519.6a1ec49682a3212cfd61226c234cdececfc45b1c.dlan@gentoo> (raw)

commit:     6a1ec49682a3212cfd61226c234cdececfc45b1c
Author:     Graham Ramsey <graham.ramsey <AT> gmail <DOT> com>
AuthorDate: Thu Nov 21 18:11:02 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sun Nov 24 08:55:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a1ec496

app-i18n/ibus-libpinyin: Version bump 1.15.8

Includes fix to prevent build breaking with latest toolchain.

Closes: https://bugs.gentoo.org/935270
Closes: https://github.com/gentoo/gentoo/pull/39400
Signed-off-by: Graham Ramsey <graham.ramsey <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 app-i18n/ibus-libpinyin/Manifest                   |  1 +
 .../ibus-libpinyin/ibus-libpinyin-1.15.8.ebuild    | 70 ++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/app-i18n/ibus-libpinyin/Manifest b/app-i18n/ibus-libpinyin/Manifest
index dfab2eab8291..4cb1b9af7dfe 100644
--- a/app-i18n/ibus-libpinyin/Manifest
+++ b/app-i18n/ibus-libpinyin/Manifest
@@ -1 +1,2 @@
 DIST ibus-libpinyin-1.15.2.tar.gz 1728300 BLAKE2B a7699fe7f4d7360d09b8c311919630c87fcf2250929f42be2adf1b29a16e60bef2df46539e0fb75ee27700ec7262eb175e6a4d56bedeb895a6272e097a636d00 SHA512 be7525221c4a95df885d1c8c60716c32ad0cfa0a13ca5f9034d06efebf18ab1c207383b30c017da28c1078724b4d9943fc82def68c94bb4e2a0a1e6273c7ad7f
+DIST ibus-libpinyin-1.15.8.tar.gz 1732564 BLAKE2B 94c2729ce0135fbc9ba9f4baad81e97b8589d1bbd048cae840de3565a01513a0d23e3152ddad6aefaf57915f67ca8d2c6592627ab622f2cefb451aab7ee3325c SHA512 525529b1d53a7c40d72097c48f6bfb912810049d46759d8c3c4408b88196edb1d2914d8804d3e83b7f3b5d90a3134697aa8032ecf333ebfd1eb1e6fe741dc025

diff --git a/app-i18n/ibus-libpinyin/ibus-libpinyin-1.15.8.ebuild b/app-i18n/ibus-libpinyin/ibus-libpinyin-1.15.8.ebuild
new file mode 100644
index 000000000000..58b6b8f884c0
--- /dev/null
+++ b/app-i18n/ibus-libpinyin/ibus-libpinyin-1.15.8.ebuild
@@ -0,0 +1,70 @@
+# Copyright 2015-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+LUA_COMPAT=( lua5-{1..3} )
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit autotools gnome2-utils lua-single python-single-r1
+
+DESCRIPTION="Intelligent Pinyin and Bopomofo input methods based on LibPinyin for IBus"
+HOMEPAGE="https://github.com/libpinyin/ibus-libpinyin https://sourceforge.net/projects/libpinyin/"
+SRC_URI="https://github.com/libpinyin/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="boost lua opencc"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+	lua? ( ${LUA_REQUIRED_USE} )"
+
+BDEPEND="dev-db/sqlite:3
+	sys-devel/gettext
+	virtual/pkgconfig"
+
+DEPEND="${PYTHON_DEPS}
+	>=app-i18n/libpinyin-2.7.91:=
+	dev-db/sqlite:3
+	dev-libs/glib:2
+	virtual/libintl
+	$(python_gen_cond_dep '
+		app-i18n/ibus[python(+),${PYTHON_USEDEP}]
+		dev-python/pygobject:3[${PYTHON_USEDEP}]
+	')
+	boost? ( dev-libs/boost:= )
+	lua? ( ${LUA_DEPS} )
+	opencc? ( app-i18n/opencc:= )"
+
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+	python-single-r1_pkg_setup
+
+	if use lua; then
+		lua-single_pkg_setup
+	fi
+}
+
+src_prepare() {
+	sed -i \
+		-e "/^appdatadir/s:/appdata:/metainfo:" \
+		data/Makefile.am || die
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-english-input-mode \
+		$(use_enable boost) \
+		$(use_enable lua lua-extension) \
+		$(use_enable opencc)
+}
+
+pkg_postinst() {
+	gnome2_schemas_update
+}
+
+pkg_postrm() {
+	gnome2_schemas_update
+}


             reply	other threads:[~2024-11-24  8:57 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-24  8:57 Yixun Lan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-15 13:48 [gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-libpinyin/ Petr Vaněk
2024-12-04  9:15 Sam James
2024-06-09 18:54 Matt Turner
2024-05-19 12:14 Yixun Lan
2023-09-09  7:08 Joonas Niilola
2023-09-09  6:57 Joonas Niilola
2023-09-08 18:50 Arthur Zamarin
2023-09-08  7:18 Joonas Niilola
2023-05-15  5:42 Sam James
2023-05-15  5:42 Sam James
2023-05-08 12:35 Sam James
2023-05-08 12:35 Sam James
2023-03-05 15:19 Sam James
2023-03-05 15:19 Sam James
2023-02-28 19:10 Sam James
2023-02-28 18:34 Arthur Zamarin
2022-10-08  1:37 Yixun Lan
2022-09-05 12:42 Yixun Lan
2022-07-07 14:01 Yixun Lan
2022-07-04  7:10 Joonas Niilola
2022-07-04  7:10 Joonas Niilola
2022-06-23 23:13 Yixun Lan
2021-03-25 23:52 Conrad Kostecki
2020-12-07 18:14 Mike Gilbert
2020-09-04 15:11 Sam James
2020-08-30 17:14 Thomas Deutschmann
2020-08-30  8:57 Joonas Niilola
2020-08-26  3:23 Yixun Lan
2020-05-29 14:11 Yixun Lan
2020-05-29 14:11 Yixun Lan
2020-05-18 21:13 Agostino Sarubbo
2020-05-18 21:10 Agostino Sarubbo
2020-02-09 16:11 Michał Górny
2020-01-17 19:09 Mike Gilbert
2019-10-16 13:43 Yixun Lan
2019-10-14 11:50 Agostino Sarubbo
2019-10-14 11:16 Agostino Sarubbo
2019-10-09  7:37 Yixun Lan
2019-10-09  7:37 Yixun Lan
2019-10-09  7:37 Yixun Lan
2018-07-11  8:56 Tony Vroon
2018-07-11  8:56 Tony Vroon
2018-06-23 22:55 Jonas Stein
2018-02-21 20:34 Mike Gilbert
2018-02-21 20:34 Mike Gilbert
2017-11-28 18:36 Mike Gilbert
2017-11-01 20:54 Mike Gilbert
2017-09-11 18:39 Mike Gilbert
2017-08-31 19:53 Mike Gilbert
2017-08-31 19:53 Mike Gilbert
2017-08-22 14:21 Mike Gilbert
2017-08-14 22:24 Patrice Clement
2017-04-20  7:59 David Seifert
2016-05-27 10:22 Yixun Lan
2016-01-05 13:42 Agostino Sarubbo
2015-10-31  9:36 Ian Delaney

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=1732438519.6a1ec49682a3212cfd61226c234cdececfc45b1c.dlan@gentoo \
    --to=dlan@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