diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-04-23 19:48:05 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-04-23 22:34:04 +0200 |
commit | 388220eab9a207d386dec56cab9709a2b3f4fd71 (patch) | |
tree | 81ee595632e5b5fd04159aea63f418f2f796102f /source/x/fcitx5-gtk | |
parent | a99ccc15cf498bcf74ed85f9adfdd04b7f9c12b4 (diff) | |
download | current-388220eab9a207d386dec56cab9709a2b3f4fd71.tar.gz current-388220eab9a207d386dec56cab9709a2b3f4fd71.tar.xz |
Tue Apr 23 19:48:05 UTC 202420240423194805
a/ed-1.20.2-x86_64-1.txz: Upgraded.
d/parallel-20240422-noarch-1.txz: Upgraded.
kde/krusader-2.8.1-x86_64-1.txz: Upgraded.
kde/ktextaddons-1.5.4-x86_64-1.txz: Upgraded.
l/libgusb-0.4.9-x86_64-1.txz: Upgraded.
n/nmap-7.95-x86_64-1.txz: Upgraded.
x/fcitx5-5.1.9-x86_64-1.txz: Upgraded.
x/fcitx5-anthy-5.1.4-x86_64-1.txz: Upgraded.
x/fcitx5-chinese-addons-5.1.5-x86_64-1.txz: Upgraded.
x/fcitx5-gtk-5.1.3-x86_64-1.txz: Upgraded.
x/fcitx5-hangul-5.1.3-x86_64-1.txz: Upgraded.
x/fcitx5-kkc-5.1.3-x86_64-1.txz: Upgraded.
x/fcitx5-m17n-5.1.1-x86_64-1.txz: Upgraded.
x/fcitx5-qt-5.1.6-x86_64-1.txz: Upgraded.
x/fcitx5-sayura-5.1.2-x86_64-1.txz: Upgraded.
x/fcitx5-table-extra-5.1.5-x86_64-1.txz: Upgraded.
x/fcitx5-table-other-5.1.2-x86_64-1.txz: Upgraded.
x/fcitx5-unikey-5.1.4-x86_64-1.txz: Upgraded.
x/libime-1.1.7-x86_64-1.txz: Upgraded.
extra/emacs-regular-build/emacs-29.3-x86_64-2_regular.txz: Rebuilt.
This is a bugfix release.
Only build the X11/GTK+3 version. Use "emacs -nw" if you want to start it
in a terminal emulator in text mode, or rebuild if you really need to get
rid of the X11 dependency for some reason.
Build using --with-pdumper=auto. It seems that --with-dumping=unexec produces
a buggy Emacs here in the modern era, with symptoms such as "child signal FD:
Invalid argument". It's possible this had something to do with the reported
memory leaks as well.
Thanks to 3Tom for the bug report.
Diffstat (limited to 'source/x/fcitx5-gtk')
-rw-r--r-- | source/x/fcitx5-gtk/fcitx5-gtk-5.1.3.tar.zst | bin | 0 -> 67927 bytes | |||
-rwxr-xr-x | source/x/fcitx5-gtk/fcitx5-gtk.SlackBuild | 6 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source/x/fcitx5-gtk/fcitx5-gtk-5.1.3.tar.zst b/source/x/fcitx5-gtk/fcitx5-gtk-5.1.3.tar.zst Binary files differnew file mode 100644 index 000000000..09108d813 --- /dev/null +++ b/source/x/fcitx5-gtk/fcitx5-gtk-5.1.3.tar.zst diff --git a/source/x/fcitx5-gtk/fcitx5-gtk.SlackBuild b/source/x/fcitx5-gtk/fcitx5-gtk.SlackBuild index a9c83b56e..b08edfe65 100755 --- a/source/x/fcitx5-gtk/fcitx5-gtk.SlackBuild +++ b/source/x/fcitx5-gtk/fcitx5-gtk.SlackBuild @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 2022 Heinz Wiesinger, Amsterdam, The Netherlands -# Copyright 2022 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2022, 2024 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=fcitx5-gtk -VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d- | rev)} +VERSION=${VERSION:-$(echo $PKGNAM-*.tar.zst | rev | cut -f 3- -d . | cut -f 1 -d- | rev)} BUILD=${BUILD:-1} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} @@ -73,7 +73,7 @@ rm -rf $PKG mkdir -p $TMP $PKG cd $TMP rm -rf fcitx5-gtk-$VERSION -tar xvf $CWD/fcitx5-gtk-$VERSION.tar.?z || exit 1 +tar xvf $CWD/fcitx5-gtk-$VERSION.tar.zst || exit 1 cd fcitx5-gtk-$VERSION || exit 1 chown -R root:root . |