Package Details: fcitx-sogoupinyin 4.2.1.145-1

Git Clone URL: https://aur.archlinux.org/fcitx-sogoupinyin.git (read-only, click to copy)
Package Base: fcitx-sogoupinyin
Description: Sogou Pinyin for Linux
Upstream URL: https://shurufa.sogou.com/linux
Keywords: fcitx sogou sogoupinyin
Licenses: custom
Submitter: JoveYu
Maintainer: qft
Last Packager: qft
Votes: 115
Popularity: 0.128887
First Submitted: 2013-03-28 07:28 (UTC)
Last Updated: 2023-04-09 00:06 (UTC)

Pinned Comments

bianjp commented on 2016-10-13 02:37 (UTC) (edited on 2018-01-05 14:59 (UTC) by bianjp)

Gnome 3.22 changes the default backend to Wayland but fcitx does not fully support wayland yet. Switch to "Gnome on xorg" if fcitx-sogou does not work.

Unable to start? Try rm -rf ~/.sogouinput

Still not working? Try rm -rf ~/.sogouinput ~/.config/SogouPY* and re-login.

Latest Comments

1 2 3 4 5 6 .. 37 Next › Last »

zcb commented on 2024-03-09 12:20 (UTC)

It seem can not run in kde6+wayland how can i use it in wayland?

sxyzy1016 commented on 2024-01-25 09:22 (UTC)

sogoupinyin-service won't stop when shutting down computer. Always stuck at "A stop job is running for User Manager for UID 1000 ...." when shutdown. Using systemd's debug-shell, it seems sogoupinyin-service won't stop until systemd kill it after 1m30s or 2m. Does anyone run into this?

AiCorein commented on 2024-01-15 04:48 (UTC) (edited on 2024-01-15 04:52 (UTC) by AiCorein)

The temporary solution of error "Manual intervention is required: fcitx-sogoupinyin - exit status 4" on version 4.2.1.145:

# Line 25 in PKGBUILD
curl -s $url | grep -o "https://[0-9a-z:\/._-]*/$filename" | xargs curl -o $startdir/$filename
# Modify to
echo <download url string> | xargs curl -o $startdir/$filename
  • Run makepkg or use your own aur helper.

qft commented on 2023-12-01 14:54 (UTC)

@jichu4n 应该是搜狗网站的问题。现在用浏览器打开https://shurufa.sogou.com/linux也一样无法下载安装包。

jichu4n commented on 2023-12-01 09:58 (UTC)

感谢维护这个包!之前一直用的很好,但是今天安装的时候遇到一个之前没有的错误:

==> Making package: fcitx-sogoupinyin 4.2.1.145-1 (Fri 01 Dec 2023 01:53:47 AM PST) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... ==> Removing existing $srcdir/ directory... ==> Extracting sources... ==> Starting prepare()... ==> Retrieving sources... -> Downloading sogoupinyin_4.2.1.145_amd64.deb... curl: (2) no URL specified curl: try 'curl --help' for more information ==> ERROR: A failure occurred in prepare(). Aborting... -> error making: fcitx-sogoupinyin-exit status 4 -> Failed to install the following packages. Manual intervention is required: fcitx-sogoupinyin - exit status 4

sk1418 commented on 2023-04-23 22:46 (UTC)

我这边高分屏幕,更新了4.2.1以后,输入界面巨大...而且调整设置里的字体没效果。有类似问题的么?

blackeeper commented on 2023-04-10 03:50 (UTC)

fcitx-sogoupinyin 4.2.1.145-1 不能用,一直重启

qft commented on 2023-04-09 00:06 (UTC)

URL问题用4.0.1.2800-1的方法解决了。另外4.2.1自带的QT似乎有问题,所以我就把bundle的QT删掉了,完全依赖系统自带的QT.

AsukaMinato commented on 2023-04-08 16:06 (UTC) (edited on 2023-04-08 17:07 (UTC) by AsukaMinato)

实在不行就这样吧,然后手动校验。

package(){
    curl https://shurufa.sogou.com/linux | grep -E "https://ime-sec.*?amd64.deb" -o | xargs wget
    ar x *.deb data.tar.xz
    tar xpvf data.tar.xz -C "$pkgdir"

    mv "$pkgdir"/usr/lib/*-linux-gnu/fcitx "$pkgdir"/usr/lib/
    rmdir "$pkgdir"/usr/lib/*-linux-gnu

    find $pkgdir/opt/sogoupinyin/files/{.license,share} -type d -exec chmod 755 {} \;
    find $pkgdir/opt/sogoupinyin/files/{.license,share} -type f -exec chmod 644 {} \;
}