From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-libpinyin/
Date: Sun, 9 Jun 2024 18:54:43 +0000 (UTC) [thread overview]
Message-ID: <1717959275.4892cff2bf3e43595fdad1b53c5a9747d07464ae.mattst88@gentoo> (raw)
commit: 4892cff2bf3e43595fdad1b53c5a9747d07464ae
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 9 18:47:49 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jun 9 18:54:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4892cff2
app-i18n/fcitx-libpinyin: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
app-i18n/fcitx-libpinyin/Manifest | 1 -
.../fcitx-libpinyin/fcitx-libpinyin-0.5.3.ebuild | 74 ----------------------
2 files changed, 75 deletions(-)
diff --git a/app-i18n/fcitx-libpinyin/Manifest b/app-i18n/fcitx-libpinyin/Manifest
index 6c2928452c73..ad5d77bddd69 100644
--- a/app-i18n/fcitx-libpinyin/Manifest
+++ b/app-i18n/fcitx-libpinyin/Manifest
@@ -1,3 +1,2 @@
DIST fcitx-data-model.text.20161206.tar.gz 15099931 BLAKE2B 80e6a6fe5109011d6ea8683658d3fa89fc00e9dacfd140da3e993afc7db088c445da636797fbdac416e70119d37d47bdb0cb18d3865cebb397dbaa8a3055d703 SHA512 26450e347b7a211e5abd94acbb9befc8cee7d8fc20e5161ef11b8b9b1ad47cde4f1add5c41484d9af04e4dde2aa748090e297e799ee7f6d2f9fcec3873eee429
-DIST fcitx-libpinyin-0.5.3_dict.tar.xz 15149856 BLAKE2B 35297477b3a4df9152162b8ad57d536333c5007510f387323d03e862901f17bb337504f20e6edc8d48e338916a6c4543900974027b60f7e87b0005f836677d29 SHA512 d132e0c007bd62286cfa89f6605a5315b6f5ae94a75bdd389fff1061e1547ad64c615fb0b75189d8cf35fa289a53e5d485911e06e368b2bf3af7b5a996fcd08a
DIST fcitx-libpinyin-0.5.4_dict.tar.xz 15148952 BLAKE2B 1f6d3d4d334eafd24799b2bd6df9ad42318b819b8989600f0b89992640e45cd660e3b2c4e5c857c5ddccd7893182c41d6f7599a48a70129807922812e6ee9d7d SHA512 e91dbcb42bbaa74320ad593918c3c86cc6f6bc209f3f0fee2f8870c4fb86ecbf3c9f17618b8c8b29db67771fe54ffcffc79c62545299037dc623146e6073b2e1
diff --git a/app-i18n/fcitx-libpinyin/fcitx-libpinyin-0.5.3.ebuild b/app-i18n/fcitx-libpinyin/fcitx-libpinyin-0.5.3.ebuild
deleted file mode 100644
index 1742c97885a1..000000000000
--- a/app-i18n/fcitx-libpinyin/fcitx-libpinyin-0.5.3.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 2012-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit cmake xdg-utils
-
-if [[ "${PV}" =~ (^|\.)9999$ ]]; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/fcitx/fcitx-libpinyin"
-fi
-
-DESCRIPTION="Chinese LibPinyin input methods for Fcitx"
-HOMEPAGE="https://fcitx-im.org/ https://github.com/fcitx/fcitx-libpinyin"
-if [[ "${PV}" =~ (^|\.)9999$ ]]; then
- SRC_URI="https://download.fcitx-im.org/data/model.text.20161206.tar.gz -> fcitx-data-model.text.20161206.tar.gz"
-else
- SRC_URI="https://download.fcitx-im.org/${PN}/${P}_dict.tar.xz"
-fi
-
-LICENSE="GPL-2+ GPL-3+"
-SLOT="4"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="dictionary-manager"
-
-BDEPEND=">=app-i18n/fcitx-4.2.9:4
- >=app-i18n/libpinyin-2.1.0
- virtual/pkgconfig
- dictionary-manager? (
- >=dev-qt/qtcore-5.7:5
- >=dev-qt/qtwidgets-5.7:5
- )"
-DEPEND=">=app-i18n/fcitx-4.2.9:4
- >=app-i18n/libpinyin-2.1.0:=
- dev-libs/glib:2
- sys-apps/dbus
- virtual/libintl
- dictionary-manager? (
- >=app-i18n/fcitx-qt5-1.1:4
- >=dev-qt/qtcore-5.7:5
- >=dev-qt/qtdbus-5.7:5
- >=dev-qt/qtgui-5.7:5
- >=dev-qt/qtnetwork-5.7:5
- >=dev-qt/qtwebengine-5.7:5[widgets]
- >=dev-qt/qtwidgets-5.7:5
- )"
-RDEPEND="${DEPEND}"
-
-DOCS=(AUTHORS)
-
-src_prepare() {
- if [[ "${PV}" =~ (^|\.)9999$ ]]; then
- ln -s "${DISTDIR}/fcitx-data-model.text.20161206.tar.gz" data/model.text.20161206.tar.gz || die
- fi
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_QT=$(usex dictionary-manager)
- )
-
- cmake_src_configure
-}
-
-pkg_postinst() {
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_icon_cache_update
-}
next reply other threads:[~2024-06-09 18:54 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-09 18:54 Matt Turner [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-20 20:26 [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-libpinyin/ Andreas Sturmlechner
2023-10-01 18:14 Arthur Zamarin
2023-09-08 9:29 Sam James
2023-09-08 9:29 Sam James
2023-09-08 9:29 Sam James
2022-10-18 11:05 Jakov Smolić
2022-10-18 11:05 Jakov Smolić
2020-10-02 17:45 Mike Gilbert
2020-10-02 17:45 Mike Gilbert
2020-09-24 14:26 Mike Gilbert
2017-11-18 10:13 Sergei Trofimovich
2017-11-18 10:03 Sergei Trofimovich
2017-09-27 19:57 Mike Gilbert
2017-09-27 19:57 Mike Gilbert
2017-09-27 19:57 Mike Gilbert
2017-09-18 18:31 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-22 14:21 Mike Gilbert
2017-08-22 14:21 Mike Gilbert
2017-08-22 14:21 Mike Gilbert
2016-06-17 15:28 Mike Gilbert
2016-05-27 10:22 Yixun Lan
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=1717959275.4892cff2bf3e43595fdad1b53c5a9747d07464ae.mattst88@gentoo \
--to=mattst88@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