Commit Graph

388 Commits

Author SHA1 Message Date
Weijia Wang
7d6fdad11c ibus-engines.bamboo: 0.8.4-rc6 -> 0.8.5 (#522012) 2026-08-16 20:47:05 +00:00
Weijia Wang
55a77af308 ibus-engines.table: 1.17.18 -> 1.17.19 (#519146) 2026-08-16 19:11:37 +00:00
Weijia Wang
33aa5c64e7 ibus-engines.typing-booster-unwrapped: 2.30.6 -> 2.30.11 (#513281) 2026-08-16 10:31:35 +00:00
Weijia Wang
a78e683b6f ibus-engines.m17n: 1.4.37 -> 1.4.40 (#491049) 2026-08-15 22:02:36 +00:00
Weijia Wang
2c616054e9 ibus-engines.table-others: 1.3.21 -> 1.3.22 (#491048) 2026-08-15 22:01:53 +00:00
R. Ryantm
b75c05bf6f ibus-engines.typing-booster-unwrapped: 2.30.6 -> 2.30.11 2026-07-30 16:06:47 +00:00
R. Ryantm
2120146b39 ibus-engines.libthai: 0.1.5 -> 0.1.6 2026-07-13 12:28:37 +00:00
R. Ryantm
41a579293d ibus-engines.m17n: 1.4.37 -> 1.4.40 2026-07-01 17:46:41 +00:00
Clément
5d26766cbf treewide: add missing meta.homepage with source git repository
Added homepage where missing, where the sources are pulled from:
- https://github.com
- https://git.sr.ht
- https://gitlab.com
- https://invent.kde.org
- https://codeberg.org
- https://gitlab.gnome.org
- https://gitlab.freedesktop.org
- https://git.FreeBSD.org
- https://salsa.debian.org
- https://git.tvdr.de
- https://git.suckless.org
2026-06-01 23:40:52 +02:00
R. Ryantm
2f387762e2 ibus-engines.rime: 1.6.0 -> 1.6.1 2026-05-26 00:37:28 +00:00
R. Ryantm
a4ac9c01a7 ibus-engines.bamboo: 0.8.4-rc6 -> 0.8.5 2026-05-19 17:40:03 +00:00
R. Ryantm
b00bc89fe5 ibus-engines.table: 1.17.18 -> 1.17.19 2026-05-11 20:23:50 +00:00
R. Ryantm
131089ab18 ibus-engines.table: 1.17.17 -> 1.17.18 2026-04-28 01:28:40 +00:00
Peder Bergebakken Sundt
bdbcebb43c ibus-engines.typing-booster-unwrapped: 2.30.4 -> 2.30.6 (#508052) 2026-04-21 18:24:36 +00:00
Marcin Serwin
659737ffe6 maintainers: drop pneumaticat
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2026-04-17 18:38:06 +02:00
R. Ryantm
39bb7cc43e ibus-engines.typing-booster-unwrapped: 2.30.4 -> 2.30.6 2026-04-08 19:52:45 +00:00
R. Ryantm
086a2c21f7 ibus-engines.typing-booster-unwrapped: 2.30.3 -> 2.30.4 2026-02-17 02:38:33 +00:00
R. Ryantm
668e7992ae ibus-engines.table-others: 1.3.21 -> 1.3.22 2026-02-16 13:55:03 +00:00
R. Ryantm
72e344e582 ibus-engines.typing-booster-unwrapped: 2.30.2 -> 2.30.3 2026-02-09 16:12:28 +00:00
R. Ryantm
28d392aa88 ibus-engines.typing-booster-unwrapped: 2.30.0 -> 2.30.2 2026-02-02 13:24:03 +00:00
Weijia Wang
c12b1d6819 ibus-engines.typing-booster-unwrapped: 2.28.1 -> 2.30.0 (#458113) 2026-02-01 10:22:02 +00:00
Nick Cao
66c1d93131 ibus-engines.table: 1.17.16 -> 1.17.17 (#483159) 2026-01-26 21:40:23 +00:00
R. Ryantm
055c869a26 ibus-engines.typing-booster-unwrapped: 2.28.1 -> 2.30.0 2026-01-26 14:50:20 +00:00
quantenzitrone
7d8132a92c treewide: remove references to the xorg namespace in pkgs (automated)
this creates some eval errors that will be fixed in the next commit

done with the following script:

```fish
\#!/usr/bin/env fish

set packagesjson (nix eval --impure --json --expr '
let
  lib = import ./lib;
in
import pkgs/servers/x11/xorg/default.nix (lib.mapAttrs (
  name: _:
  if name == "lib" then
    lib
  else if name == "config" then
    { allowAliases = false; }
  else
    name
) (__functionArgs (import pkgs/servers/x11/xorg/default.nix))) { }
' | jq)

set one (grep '^    [A-Za-z0-9_-]*$' pkgs/servers/x11/xorg/default.nix | string trim | string replace -r '$' Z | sort | string sub -e -1)
set two (grep '^  [A-Za-z0-9_-]* = [A-Za-z0-9_-]*;$' pkgs/servers/x11/xorg/default.nix | cut -d= -f1 | string trim | string replace -r '$' Z | sort | string sub -e -1)

for arg in $one $two
    set oname $arg
    set nname (echo $packagesjson | jq -r .$oname)

    if test $nname = null
        echo (set_color red)warn:(set_color normal) unknown package xorg.$oname >&2
        continue
    end

    echo $oname "->" $nname

    # replace basic xorg.$name references
    for file in (rg -F "xorg.$oname" --files-with-matches pkgs)
        # special cases
        sd -F "$oname = xorg.$oname;" "$nname = $nname;" $file

        # replace
        sd -F "xorg.$oname" "$nname" $file

        # fixup function arguments

        # prevent duplicate function args
        if grep -E " ($oname|$nname),\$" $file >/dev/null
            continue
        end

        if grep 'xorg\..' $file >/dev/null # case1: there is more so we can't just remove the function arg

            if grep ' xorg,$' $file >/dev/null
                sd ' xorg,$' " xorg,
                $nname," $file

            else if grep ' xorg ? .*,$' $file >/dev/null
                sd 'xorg( ? .*),$' "xorg\$1,
                $nname," $file

            else
                sd -F 'xorg,' "$nname,
                xorg," $file
            end

        else # case there is no more xorg..* so we can just replace the function arg
            sd 'xorg(| ? .*),.*$' "$nname," $file
        end
    end
end

nix fmt
```
2026-01-25 22:28:09 +01:00
R. Ryantm
51462ae47f ibus-engines.table: 1.17.16 -> 1.17.17 2026-01-23 20:02:39 +00:00
R. Ryantm
b593180957 ibus-engines.rime: 1.5.1 -> 1.6.0 2026-01-08 00:25:22 +00:00
R. Ryantm
c3b1e0e489 ibus-engines.m17n: 1.4.36 -> 1.4.37 2025-12-26 19:50:48 +00:00
Ihar Hrachyshka
567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00
goatastronaut0212
10760f8ce6 maintainers: remove astronaut0212 2025-10-27 14:46:07 +07:00
Weijia Wang
9b49f03334 ibus-engines.table: 1.17.15 -> 1.17.16 (#449072) 2025-10-25 19:08:50 +00:00
Weijia Wang
ff923dd4e4 ibus-engines.table-chinese: 1.8.12 -> 1.8.14 (#450514) 2025-10-25 18:56:01 +00:00
Weijia Wang
a7e1ecdb22 ibus-engines.typing-booster-unwrapped: 2.27.74 -> 2.28.1 (#445969) 2025-10-25 18:54:55 +00:00
Sigmanificient
689bb003be ibus-engines.kkc: drop 2025-10-23 12:40:58 +02:00
R. Ryantm
bb74cb9d6d ibus-engines.typing-booster-unwrapped: 2.27.74 -> 2.28.1 2025-10-18 15:50:45 +00:00
Winterer, Mathis Aaron
9baf121641 ibus-engines.table-chinese: 1.8.12 -> 1.8.14 2025-10-10 02:52:21 +02:00
R. Ryantm
ee30db440a ibus-engines.table: 1.17.15 -> 1.17.16 2025-10-06 09:46:00 +00:00
Wolfgang Walther
c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00
Weijia Wang
0d0179ec99 ibus-engines.libpinyin: 1.16.4 -> 1.16.5 (#444365) 2025-09-27 23:03:44 +00:00
Weijia Wang
ce962c2a99 ibus-engines.chewing: 2.1.6 -> 2.1.7 (#443321) 2025-09-27 21:34:09 +00:00
Wolfgang Walther
7155e5e3a4 ibus-engines.typing-booster-unwrapped: 2.27.73 -> 2.27.74 (#442809) 2025-09-23 08:42:05 +00:00
R. Ryantm
574fa33213 ibus-engines.libpinyin: 1.16.4 -> 1.16.5 2025-09-19 14:20:13 +00:00
Wolfgang Walther
bc0fa2e7bb maintainers: drop vanzef (#441692) 2025-09-16 19:46:00 +00:00
R. Ryantm
4a3ed535c0 ibus-engines.chewing: 2.1.6 -> 2.1.7 2025-09-16 02:20:51 +00:00
R. Ryantm
c589f3f52d ibus-engines.typing-booster-unwrapped: 2.27.73 -> 2.27.74 2025-09-14 04:08:26 +00:00
Wolfgang Walther
329f957e93 ibus-engines.typing-booster-unwrapped: 2.27.72 -> 2.27.73 (#439649) 2025-09-13 20:45:15 +00:00
Wolfgang Walther
d7aae1b4ef ibus-engines.chewing: 2.1.5 -> 2.1.6 (#436529) 2025-09-13 20:32:40 +00:00
Wolfgang Walther
685c72d557 maintainers: drop vanzef
Inactive since 2021.
2025-09-10 08:55:46 +02:00
R. Ryantm
924c98db26 ibus-engines.typing-booster-unwrapped: 2.27.72 -> 2.27.73 2025-09-02 17:25:06 +00:00
R. Ryantm
a02cec6cb6 ibus-engines.chewing: 2.1.5 -> 2.1.6 2025-08-24 17:28:57 +00:00
Bobby Rong
9786375566 ibus-engines.libpinyin: Fix typelib finding
Same as 9f7bd20a99.

Fixes `ValueError: Namespace Gtk not available for version 3.0` when
opening ibus-setup-libpinyin from gnome-control-center (when `cat
./result/libexec/ibus-setup-libpinyin` you will now find GI_TYPELIB_PATH
being passed to makeCWrapper).

The issue can be not reproducible on some impure environments,
I guess the best way to test is to directly run
GI_TYPELIB_PATH= ./result/libexec/ibus-setup-libpinyin
2025-08-24 18:02:09 +08:00