Skip to content

Update dependencies #94

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions modules/bazel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ sources:
- type: file
only-arches:
- x86_64
url: https://github.com/bazelbuild/bazel/releases/download/8.2.1/bazel-8.2.1-linux-x86_64
sha256: 7ff2b6a675b59a791d007c526977d5262ade8fa52efc8e0d1ff9e18859909fc0
url: https://github.com/bazelbuild/bazel/releases/download/8.3.0/bazel-8.3.0-linux-x86_64
sha256: 55ba395ed114ee35ee9add63fbc44fa46a6b518b3c2f6d0211a574957cddde2d
dest-filename: bazel
x-checker-data:
type: anitya
Expand All @@ -19,8 +19,8 @@ sources:
- type: file
only-arches:
- aarch64
url: https://github.com/bazelbuild/bazel/releases/download/8.2.1/bazel-8.2.1-linux-arm64
sha256: 1f50df607751a56ace7775872ffb5dff4c15c25c11a2df30b7b0035ef53a9937
url: https://github.com/bazelbuild/bazel/releases/download/8.3.0/bazel-8.3.0-linux-arm64
sha256: 11ac131e56c1190c3c19cbe05d2bd723d5b772216090f0ca7b4a9c294408fa77
dest-filename: bazel
x-checker-data:
type: anitya
Expand Down
4 changes: 2 additions & 2 deletions modules/enchant.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ cleanup:
- /include
sources:
- type: archive
url: https://github.com/rrthomas/enchant/releases/download/v2.8.6/enchant-2.8.6.tar.gz
sha256: c4cd0889d8aff8248fc3913de5a83907013962f0e1895030a3836468cd40af5b
url: https://github.com/rrthomas/enchant/releases/download/v2.8.10/enchant-2.8.10.tar.gz
sha256: 6db791265ace652c63a6d24f376f4c562b742284d70d3ccb9e1ce8be45b288c9
x-checker-data:
type: anitya
project-id: 6601
Expand Down
33 changes: 17 additions & 16 deletions org.fcitx.Fcitx5.Addon.Rime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ cleanup:
- /include
- /lib/pkgconfig
- /lib/cmake
- "/lib/python*"
- /lib/python*
- /share/cmake
- "*.la"
- '*.la'

modules:
- modules/boost.yaml
Expand All @@ -38,12 +38,13 @@ modules:
sources:
- type: git
url: https://github.com/rime/librime
tag: 1.12.0
tag: 1.13.1
x-checker-data:
type: anitya
project-id: 228902
stable-only: true
tag-template: ${version}
commit: 1c23358157934bd6e6d6981f0c0164f05393b497
- type: git
url: https://github.com/lotem/librime-octagram.git
commit: dfcc15115788c828d9dd7b4bff68067d3ce2ffb8
Expand Down Expand Up @@ -73,20 +74,20 @@ modules:
- install -Dm644 rime-prelude/*.yaml -t rime-data/
# copy all other rime schemas
- |
for _ime in rime-*; do
[ "$_ime" != "rime-data" ] &&
[ "$_ime" != "rime-essay" ] &&
[ "$_ime" != "rime-prelude" ] &&
install -Dm644 ${_ime}/*.yaml -t rime-data/
done
cd rime-data/
for _ime_schema in $(ls *.schema.yaml); do
rime_deployer --compile $_ime_schema
done
for _ime in rime-*; do
[ "$_ime" != "rime-data" ] &&
[ "$_ime" != "rime-essay" ] &&
[ "$_ime" != "rime-prelude" ] &&
install -Dm644 ${_ime}/*.yaml -t rime-data/
done
cd rime-data/
for _ime_schema in $(ls *.schema.yaml); do
rime_deployer --compile $_ime_schema
done
- |
install -Dm644 rime-data/*.{txt,yaml} -t ${FLATPAK_DEST}/share/rime-data/
rm rime-data/build/*.txt
install -Dm644 rime-data/build/* -t ${FLATPAK_DEST}/share/rime-data/build/
install -Dm644 rime-data/*.{txt,yaml} -t ${FLATPAK_DEST}/share/rime-data/
rm rime-data/build/*.txt
install -Dm644 rime-data/build/* -t ${FLATPAK_DEST}/share/rime-data/build/
sources:
- type: archive
url: https://github.com/rime/rime-essay/archive/917e5691d090f75c40f0bc72476c2f483bae0c21/rime-essay-917e5691d090f75c40f0bc72476c2f483bae0c21.tar.gz
Expand Down