Accepting request 680065 from M17N
- run time-consuming tests simutaneously via script or tumbleweed will fail due to OBS thought the job was stuck - Update to 2.5.3 - Update translations from zanata (ja, pl updated) - Update emoji annotations from CLDR - Use “NoIME” instead of “NoIme” as the internal name of the dummy input method - Update to 2.5.2 - Fix test case for selecting non existing candidates for Fedora rawhide - Update UnicodeData.txt to current Unicode 12.0 draft - Update emoji data to Unicode 12.0 final for 2019 - Update emoji annotations from CLDR - Initialize self.dictionary_sub_properties_prop_list = [] in self._init_properties() (Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/46) - Fix test case for case mode change - Improve filter for dictionary selection if langtable available OBS-URL: https://build.opensuse.org/request/show/680065 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ibus-typing-booster?expand=0&rev=17
This commit is contained in:
commit
09a9c64c85
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fc815a9d58da5f3ccd064e2bead6f8af40ceb7824fad4ea01d8db8de98a2a6ef
|
|
||||||
size 6232907
|
|
3
ibus-typing-booster-2.5.3.tar.gz
Normal file
3
ibus-typing-booster-2.5.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cfcad6cc36a45b6f05deae0b89fd80f800bda414c9c9663f866f020e8c15f31a
|
||||||
|
size 6463060
|
@ -1,3 +1,31 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 05:18:56 UTC 2019 - Marguerite Su <i@marguerite.su>
|
||||||
|
|
||||||
|
- run time-consuming tests simutaneously via script
|
||||||
|
or tumbleweed will fail due to OBS thought the job
|
||||||
|
was stuck
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 18 17:59:09 UTC 2019 - maiku.fabian@gmail.com
|
||||||
|
|
||||||
|
- Update to 2.5.3
|
||||||
|
- Update translations from zanata (ja, pl updated)
|
||||||
|
- Update emoji annotations from CLDR
|
||||||
|
- Use “NoIME” instead of “NoIme” as the internal name of the dummy input method
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 06 14:27:28 UTC 2019 - maiku.fabian@gmail.com
|
||||||
|
|
||||||
|
- Update to 2.5.2
|
||||||
|
- Fix test case for selecting non existing candidates for Fedora rawhide
|
||||||
|
- Update UnicodeData.txt to current Unicode 12.0 draft
|
||||||
|
- Update emoji data to Unicode 12.0 final for 2019
|
||||||
|
- Update emoji annotations from CLDR
|
||||||
|
- Initialize self.dictionary_sub_properties_prop_list = [] in self._init_properties()
|
||||||
|
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/46)
|
||||||
|
- Fix test case for case mode change
|
||||||
|
- Improve filter for dictionary selection if langtable available
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 30 09:40:32 UTC 2019 - maiku.fabian@gmail.com
|
Wed Jan 30 09:40:32 UTC 2019 - maiku.fabian@gmail.com
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
Name: ibus-typing-booster
|
Name: ibus-typing-booster
|
||||||
Version: 2.5.1
|
Version: 2.5.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An input completion utility
|
Summary: An input completion utility
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
@ -103,6 +103,19 @@ cp -p inscript2/icons/* %{buildroot}%{_datadir}/m17n/icons
|
|||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
|
cat << 'EOF' >> engine.sh
|
||||||
|
#!/bin/sh
|
||||||
|
# run doctests
|
||||||
|
pushd engine
|
||||||
|
for i in hunspell_suggest.py m17n_translit.py itb_emoji.py itb_util.py; do
|
||||||
|
python3 ${i} &
|
||||||
|
done
|
||||||
|
popd
|
||||||
|
wait
|
||||||
|
echo "engine tests passed"
|
||||||
|
EOF
|
||||||
|
chmod +x engine.sh
|
||||||
|
|
||||||
%check
|
%check
|
||||||
export LC_ALL=en_US.UTF-8
|
export LC_ALL=en_US.UTF-8
|
||||||
export M17NDIR=%{buildroot}%{_datadir}/m17n/
|
export M17NDIR=%{buildroot}%{_datadir}/m17n/
|
||||||
@ -111,13 +124,14 @@ desktop-file-validate \
|
|||||||
%{buildroot}%{_datadir}/applications/ibus-setup-typing-booster.desktop
|
%{buildroot}%{_datadir}/applications/ibus-setup-typing-booster.desktop
|
||||||
desktop-file-validate \
|
desktop-file-validate \
|
||||||
$RPM_BUILD_ROOT%{_datadir}/applications/emoji-picker.desktop
|
$RPM_BUILD_ROOT%{_datadir}/applications/emoji-picker.desktop
|
||||||
pushd engine
|
time ./engine.sh
|
||||||
|
#pushd engine
|
||||||
# run doctests
|
# run doctests
|
||||||
python3 hunspell_suggest.py
|
#python3 hunspell_suggest.py
|
||||||
python3 m17n_translit.py
|
#python3 m17n_translit.py
|
||||||
python3 itb_emoji.py
|
#python3 itb_emoji.py
|
||||||
python3 itb_util.py
|
#python3 itb_util.py
|
||||||
popd
|
#popd
|
||||||
mkdir -p /tmp/glib-2.0/schemas/
|
mkdir -p /tmp/glib-2.0/schemas/
|
||||||
cp org.freedesktop.ibus.engine.typing-booster.gschema.xml \
|
cp org.freedesktop.ibus.engine.typing-booster.gschema.xml \
|
||||||
/tmp/glib-2.0/schemas/org.freedesktop.ibus.engine.typing-booster.gschema.xml
|
/tmp/glib-2.0/schemas/org.freedesktop.ibus.engine.typing-booster.gschema.xml
|
||||||
@ -129,7 +143,7 @@ dconf write /org/freedesktop/ibus/engine/typing-booster/offtherecord false
|
|||||||
dconf write /org/freedesktop/ibus/engine/typing-booster/usedigitsasselectkeys true
|
dconf write /org/freedesktop/ibus/engine/typing-booster/usedigitsasselectkeys true
|
||||||
dconf write /org/freedesktop/ibus/engine/typing-booster/addspaceoncommit true
|
dconf write /org/freedesktop/ibus/engine/typing-booster/addspaceoncommit true
|
||||||
dconf write /org/freedesktop/ibus/engine/typing-booster/tabenable false
|
dconf write /org/freedesktop/ibus/engine/typing-booster/tabenable false
|
||||||
dconf write /org/freedesktop/ibus/engine/typing-booster/inputmethod "'NoIme'"
|
dconf write /org/freedesktop/ibus/engine/typing-booster/inputmethod "'NoIME'"
|
||||||
dconf write /org/freedesktop/ibus/engine/typing-booster/rememberlastusedpreeditime true
|
dconf write /org/freedesktop/ibus/engine/typing-booster/rememberlastusedpreeditime true
|
||||||
dconf write /org/freedesktop/ibus/engine/typing-booster/mincharcomplete 1
|
dconf write /org/freedesktop/ibus/engine/typing-booster/mincharcomplete 1
|
||||||
dconf write /org/freedesktop/ibus/engine/typing-booster/dictionary "'en_US'"
|
dconf write /org/freedesktop/ibus/engine/typing-booster/dictionary "'en_US'"
|
||||||
|
Loading…
Reference in New Issue
Block a user