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/fcitx-configtool/
Date: Mon, 11 Dec 2023 13:33:49 +0000 (UTC)	[thread overview]
Message-ID: <1702301619.896fe1a28a143b63fdbae26f6352ff744e7b1b1f.dlan@gentoo> (raw)

commit:     896fe1a28a143b63fdbae26f6352ff744e7b1b1f
Author:     Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Thu Nov 30 15:51:54 2023 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Dec 11 13:33:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896fe1a2

app-i18n/fcitx-configtool: add 5.1.2

After fcitx5, the configtool for fcitx was split into separate package

Closes: https://github.com/gentoo/gentoo/pull/34066
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 app-i18n/fcitx-configtool/Manifest                 |  1 +
 .../fcitx-configtool/fcitx-configtool-5.1.2.ebuild | 69 ++++++++++++++++++++++
 app-i18n/fcitx-configtool/metadata.xml             | 14 +++++
 3 files changed, 84 insertions(+)

diff --git a/app-i18n/fcitx-configtool/Manifest b/app-i18n/fcitx-configtool/Manifest
index 1cf6ca87802c..084499ce246e 100644
--- a/app-i18n/fcitx-configtool/Manifest
+++ b/app-i18n/fcitx-configtool/Manifest
@@ -1 +1,2 @@
 DIST fcitx-configtool-0.4.10.tar.xz 50440 BLAKE2B f2f2241d3ea139f6f3de9b8c6ffcc71c789dfa291efe4c551596eebc8a04f13f9fe698cc25d8349a174399044d15ddca2aeab952ac2bc7f0f4e9e47d453329ca SHA512 1c1267e9de694bbd5f258b5bba1e7514c4f8556cdc82a1cce5eafd8a4ec571955285dade0acd02f128eca01f867a30c5c6264ee7e91d32a333eba6e4d275fe8f
+DIST fcitx-configtool-5.1.2.tar.xz 114064 BLAKE2B 856ae67ab5d2b4c40e83d7bac57e3c92b6525259931bdaf63328a88f5c3dc36b52ec116502d01b02dd10a779330f81e779ba732f0cd9df85c77634ba3b3d4e82 SHA512 66271146d0867f629d9dfe193c4b9a0aa5e3f81ecd94fc3e8e6273a7332bcddb321f4993e7fc3794bd1172aceaaa21f9bab7449b45b1a23b6523ecd67712ad84

diff --git a/app-i18n/fcitx-configtool/fcitx-configtool-5.1.2.ebuild b/app-i18n/fcitx-configtool/fcitx-configtool-5.1.2.ebuild
new file mode 100644
index 000000000000..52c58f63ba0c
--- /dev/null
+++ b/app-i18n/fcitx-configtool/fcitx-configtool-5.1.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="fcitx5-configtool"
+
+inherit cmake
+
+DESCRIPTION="Configuration module for Fcitx"
+HOMEPAGE="https://fcitx-im.org/ https://github.com/fcitx/fcitx5-configtool"
+SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}.tar.xz -> ${P}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="5"
+KEYWORDS="~amd64 ~x86"
+IUSE="kcm +config-qt test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	>=app-i18n/fcitx-5.1.5:5
+	>=app-i18n/fcitx-qt-5.1.3:5[qt5,-onlyplugin]
+	app-text/iso-codes
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtdbus:5
+	dev-qt/qtgui:5
+	dev-qt/qtwidgets:5
+	dev-qt/qtx11extras:5
+	kde-frameworks/kwidgetsaddons:5
+	sys-devel/gettext
+	virtual/libintl
+	x11-libs/libX11
+	x11-libs/libxkbfile
+	x11-misc/xkeyboard-config
+	config-qt? (
+		kde-frameworks/kitemviews:5
+	)
+	kcm? (
+		x11-libs/libxkbcommon
+		dev-qt/qtquickcontrols2:5
+		kde-frameworks/kcoreaddons:5
+		kde-frameworks/kdeclarative:5
+		kde-frameworks/ki18n:5
+		kde-frameworks/kiconthemes:5
+		kde-frameworks/kirigami:5
+		kde-frameworks/kpackage:5
+		kde-plasma/libplasma:5
+	)
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	kde-frameworks/extra-cmake-modules:0
+	sys-devel/gettext
+	virtual/pkgconfig
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DKDE_INSTALL_USE_QT_SYS_PATHS=yes
+		-DENABLE_KCM=$(usex kcm)
+		-DENABLE_CONFIG_QT=$(usex config-qt)
+		-DENABLE_TEST=$(usex test)
+	)
+
+	cmake_src_configure
+}

diff --git a/app-i18n/fcitx-configtool/metadata.xml b/app-i18n/fcitx-configtool/metadata.xml
index e2e7b8d6f49a..4ca0ab7fbf64 100644
--- a/app-i18n/fcitx-configtool/metadata.xml
+++ b/app-i18n/fcitx-configtool/metadata.xml
@@ -1,15 +1,29 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
+	<maintainer type="person" proxied="yes">
+		<email>tanekliang@gmail.com</email>
+		<name>Yongxiang Liang</name>
+	</maintainer>
 	<maintainer type="person" proxied="yes">
 		<email>arfrever.fta@gmail.com</email>
 		<name>Arfrever Frehtes Taifersar Arahesis</name>
 	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 	<maintainer type="project">
 		<email>cjk@gentoo.org</email>
 		<name>Cjk</name>
 	</maintainer>
+	<use>
+		<flag name="config-qt">Enable fcitx5-config-qt</flag>
+		<flag name="kcm">Enable KDE KCM support</flag>
+		<flag name="test">Enable Test</flag>
+	</use>
 	<upstream>
 		<remote-id type="github">fcitx/fcitx-configtool</remote-id>
+		<remote-id type="github">fcitx/fcitx5-configtool</remote-id>
 	</upstream>
 </pkgmetadata>


             reply	other threads:[~2023-12-11 13:33 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-11 13:33 Yixun Lan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-07  7:23 [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-configtool/ Sam James
2025-02-08  0:18 Yixun Lan
2024-12-20 20:26 Andreas Sturmlechner
2024-10-11  0:07 Yixun Lan
2024-10-07 23:06 Andreas Sturmlechner
2024-10-07 23:06 Andreas Sturmlechner
2024-09-02 19:25 Sam James
2024-06-16  6:21 Yixun Lan
2024-06-09 18:54 Matt Turner
2024-06-02  3:25 Yixun Lan
2024-06-02  3:25 Yixun Lan
2024-04-25  0:43 Yixun Lan
2024-04-25  0:43 Yixun Lan
2024-03-08  9:12 Yixun Lan
2024-01-17  9:04 Jakov Smolić
2024-01-16 17:50 Arthur Zamarin
2024-01-11  0:22 Yixun Lan
2024-01-11  0:22 Yixun Lan
2024-01-02  3:56 WANG Xuerui
2021-04-27 22:02 Sam James
2020-11-03 20:20 Mike Gilbert
2020-09-24 14:26 Mike Gilbert
2019-10-04 18:43 Mike Gilbert
2017-11-18 10:13 Sergei Trofimovich
2017-11-18 10:03 Sergei Trofimovich
2017-10-23 19:27 Mike Gilbert
2017-09-27 19:57 Mike Gilbert
2017-09-21 21:06 Mike Gilbert
2017-09-21 21:06 Mike Gilbert
2017-09-02 15:52 Mike Gilbert
2017-09-02 15:52 Mike Gilbert
2017-09-02 15:52 Mike Gilbert

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=1702301619.896fe1a28a143b63fdbae26f6352ff744e7b1b1f.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