1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/usr/bin/env nix-shell
#!nix-shell -i python3 -p nix-update python3Packages.requests
import requests
import subprocess
REPOS = [
( "fcitx", "libime" ),
( "fcitx", "xcb-imdkit"),
( "fcitx", "fcitx5" ),
( "fcitx", "fcitx5-anthy" ),
( "fcitx", "fcitx5-chewing" ),
( "fcitx", "fcitx5-chinese-addons" ),
( "fcitx", "fcitx5-configtool" ),
( "fcitx", "fcitx5-gtk" ),
( "fcitx", "fcitx5-hangul" ),
( "fcitx", "fcitx5-lua" ),
( "fcitx", "fcitx5-m17n" ),
( "fcitx", "fcitx5-qt" ),
( "fcitx", "fcitx5-rime" ),
( "fcitx", "fcitx5-skk" ),
( "fcitx", "fcitx5-table-extra" ),
( "fcitx", "fcitx5-table-other" ),
( "fcitx", "fcitx5-unikey" ),
( "fcitx", "fcitx5-unikey" ),
( "ray2501", "fcitx5-array" )
]
QT_REPOS = [
"fcitx5-chinese-addons",
"fcitx5-configtool",
"fcitx5-qt",
"fcitx5-unikey",
]
def get_latest_tag(repo, owner):
r = requests.get('https://api.github.com/repos/{}/{}/tags'.format(owner,repo))
return r.json()[0].get("name")
def main():
for (owner, repo) in REPOS:
rev = get_latest_tag(repo, owner)
if repo in QT_REPOS:
subprocess.run(["nix-update", "--commit", "--version", rev, "qt6Packages.{}".format(repo)])
else:
subprocess.run(["nix-update", "--commit", "--version", rev, repo])
if __name__ == "__main__":
main ()
|