Compare commits
13 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
99b1194495 | ||
|
|
e7e42d3bd3 | ||
|
|
b354bc652e | ||
|
|
4c7a4eb5b6 | ||
|
|
eb36b08a67 | ||
|
|
8ffd60c64a | ||
|
|
9a8b2e2571 | ||
|
|
a633d94739 | ||
|
|
831351df1a | ||
|
|
295cc11f84 | ||
|
|
a7a7bcb02e | ||
|
|
d5621d40a8 | ||
|
|
5bc23fc550 |
9 changed files with 307 additions and 78 deletions
12
.gitignore
vendored
12
.gitignore
vendored
|
|
@ -57,3 +57,15 @@ ibus-table-1.3.0.20100621.tar.gz
|
|||
/ibus-table-1.9.23.tar.gz
|
||||
/ibus-table-1.9.24.tar.gz
|
||||
/ibus-table-1.9.25.tar.gz
|
||||
/ibus-table-1.10.0.tar.gz
|
||||
/ibus-table-1.10.1.tar.gz
|
||||
/ibus-table-1.11.0.tar.gz
|
||||
/ibus-table-1.12.0.tar.gz
|
||||
/ibus-table-1.12.1.tar.gz
|
||||
/ibus-table-1.12.2.tar.gz
|
||||
/ibus-table-1.12.3.tar.gz
|
||||
/ibus-table-1.12.4.tar.gz
|
||||
/ibus-table-1.12.5.tar.gz
|
||||
/ibus-table-1.12.6.tar.gz
|
||||
/ibus-table-1.13.0.tar.gz
|
||||
/ibus-table-1.13.1.tar.gz
|
||||
|
|
|
|||
161
ibus-table.spec
161
ibus-table.spec
|
|
@ -3,7 +3,7 @@
|
|||
%global _python_bytecompile_extra 1
|
||||
|
||||
Name: ibus-table
|
||||
Version: 1.9.25
|
||||
Version: 1.13.1
|
||||
Release: 1%{?dist}
|
||||
Summary: The Table engine for IBus platform
|
||||
License: LGPLv2+
|
||||
|
|
@ -15,9 +15,15 @@ Requires: python(abi) >= 3.3
|
|||
BuildRequires: gcc
|
||||
BuildRequires: ibus-devel > 1.3.0
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: libappstream-glib
|
||||
# for the unit tests
|
||||
BuildRequires: appstream
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: python3-mock
|
||||
BuildRequires: python3-gobject
|
||||
BuildRequires: python3-gobject-base
|
||||
BuildRequires: dbus-x11
|
||||
BuildRequires: xorg-x11-server-Xvfb
|
||||
BuildRequires: ibus-table-chinese-wubi-jidian
|
||||
BuildRequires: ibus-table-chinese-cangjie
|
||||
BuildRequires: ibus-table-chinese-stroke5
|
||||
|
|
@ -25,6 +31,8 @@ BuildRequires: ibus-table-code
|
|||
BuildRequires: ibus-table-latin
|
||||
BuildRequires: ibus-table-translit
|
||||
BuildRequires: ibus-table-tv
|
||||
# A window manger is needed for the GUI test
|
||||
BuildRequires: i3
|
||||
|
||||
Obsoletes: ibus-table-additional < 1.2.0.20100111-5
|
||||
|
||||
|
|
@ -40,12 +48,20 @@ Requires: %{name} = %{version}-%{release}, pkgconfig
|
|||
%description -n %{name}-devel
|
||||
Development files for %{name}.
|
||||
|
||||
%package tests
|
||||
Summary: Tests for the %{name} package
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description tests
|
||||
The %{name}-tests package contains tests that can be used to verify
|
||||
the functionality of the installed %{name} package.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
export PYTHON=%{__python3}
|
||||
%configure --disable-static --disable-additional
|
||||
%configure --disable-static --disable-additional --enable-installed-tests
|
||||
%__make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
|
|
@ -56,6 +72,7 @@ export PYTHON=%{__python3}
|
|||
%find_lang %{name}
|
||||
|
||||
%check
|
||||
appstreamcli validate --pedantic --explain --no-net %{buildroot}/%{_datadir}/metainfo/*.appdata.xml
|
||||
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.appdata.xml
|
||||
desktop-file-validate \
|
||||
$RPM_BUILD_ROOT%{_datadir}/applications/ibus-setup-table.desktop
|
||||
|
|
@ -74,11 +91,32 @@ dconf dump /
|
|||
dconf write /org/freedesktop/ibus/engine/table/wubi-jidian/chinesemode 1
|
||||
dconf write /org/freedesktop/ibus/engine/table/wubi-jidian/spacekeybehavior false
|
||||
dconf dump /
|
||||
ibus-daemon -drx
|
||||
make -C tests run_tests
|
||||
pushd tests
|
||||
./run_tests
|
||||
popd
|
||||
export DISPLAY=:1
|
||||
Xvfb $DISPLAY -screen 0 1024x768x16 &
|
||||
# A window manager and and ibus-daemon are needed to run the GUI
|
||||
# test tests/test_gtk.py, for example i3 can be used.
|
||||
#
|
||||
# To debug what is going on if there is a problem with the GUI test
|
||||
# add BuildRequires: x11vnc and start a vnc server:
|
||||
#
|
||||
# x11vnc -display $DISPLAY -unixsock /tmp/mysock -bg -nopw -listen localhost -xkb
|
||||
#
|
||||
# Then one can view what is going on outside of the chroot with vncviewer:
|
||||
#
|
||||
# vncviewer /var/lib/mock/fedora-32-x86_64/root/tmp/mysock
|
||||
#
|
||||
# The GUI test will be skipped if XDG_SESSION_TYPE is not x11 or wayland.
|
||||
#
|
||||
#ibus-daemon -drx
|
||||
#touch /tmp/i3config
|
||||
#i3 -c /tmp/i3config &
|
||||
#export XDG_SESSION_TYPE=x11
|
||||
|
||||
make check && rc=0 || rc=1
|
||||
cat tests/*.log
|
||||
if [ $rc != 0 ] ; then
|
||||
exit $rc
|
||||
fi
|
||||
|
||||
%post
|
||||
[ -x %{_bindir}/ibus ] && \
|
||||
|
|
@ -104,7 +142,114 @@ popd
|
|||
%files devel
|
||||
%{_datadir}/pkgconfig/%{name}.pc
|
||||
|
||||
%files tests
|
||||
%dir %{_libexecdir}/installed-tests
|
||||
%{_libexecdir}/installed-tests/%{name}
|
||||
%dir %{_datadir}/installed-tests
|
||||
%{_datadir}/installed-tests/%{name}
|
||||
|
||||
%changelog
|
||||
* Sun May 16 2021 Mike FABIAN <mfabian@redhat.com> - 1.13.1-1
|
||||
- Update to 1.13.1
|
||||
- Fix reading the source file for the suggestions phrase.txt.bz2
|
||||
- Update translations from Weblate (updates for ca, fr)
|
||||
|
||||
* Tue May 04 2021 Mike FABIAN <mfabian@redhat.com> - 1.13.0-1
|
||||
- Update to 1.13.0
|
||||
- Make switch to pinyin mode also happen immediately even
|
||||
when the preedit is not empty (for consistency)
|
||||
- Make rolling the mouse wheel in the candidate area of the lookup table work
|
||||
- Commit English input and then switch into direct mode
|
||||
(Resolves: https://github.com/kaio/ibus-table/issues/68)
|
||||
- Apply a couple modes immediately when changed
|
||||
- Add a dark theme option
|
||||
(Resolves: https://github.com/kaio/ibus-table/issues/67)
|
||||
- Show all the tabkeys when using wildcards
|
||||
- Remove Python2 compatibility stuff
|
||||
- Start adding some type hints
|
||||
- Update translations from Weblate (update for de, ja, tr, uk, zh_CN)
|
||||
|
||||
* Mon May 03 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.6-1
|
||||
- Update to 1.12.6
|
||||
- In main.py “import factory” only when the --xml option is not used
|
||||
- Resolves: rhbz#1955283
|
||||
- Make the keybindings treeview sortable by clicking the column headers
|
||||
- Update translations from Weblate (update for pt_BR, now 100%)
|
||||
|
||||
* Fri Mar 05 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.5-1
|
||||
- Update to 1.12.5
|
||||
- Return False in _execute_command_commit_candidate_number(self, number)
|
||||
if number out of range
|
||||
- Resolves: https://github.com/moebiuscurve/ibus-table-others/issues/21
|
||||
- remove Use-from-unittest-import-mock-instead-of-just-import.patch
|
||||
(included upstream)
|
||||
- Update translations from Weblate (New translation for Sinhala (si) started)
|
||||
|
||||
* Sun Jan 24 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.4-1
|
||||
- Update to 1.12.4
|
||||
- Update translations from Weblate (updated es, cs, fa, pt_BR, zh_CN).
|
||||
zh_CN is 100% complete now.
|
||||
|
||||
* Wed Jan 06 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.3-1
|
||||
- Update to 1.12.3
|
||||
- Pass the key for the command 'cancel' (default Esc) through
|
||||
if the preedit is empty
|
||||
- Resolves: https://github.com/kaio/ibus-table/issues/64
|
||||
|
||||
* Mon Jan 04 2021 Mike FABIAN <mfabian@redhat.com> - 1.12.2-1
|
||||
- Update to 1.12.2
|
||||
- Update translations from Weblate
|
||||
(updated ca, cs, es, fa, ja, pt_BR, pt_PT, tr, zh_CN, zh_HK, zh_TW)
|
||||
|
||||
* Fri Sep 04 2020 Mike FABIAN <mfabian@redhat.com> - 1.12.1-1
|
||||
- Update to 1.12.1
|
||||
- Enable compose support.
|
||||
- Add buttons to move key bindings for a command up or down.
|
||||
- Make translations of 'Edit key bindings for command “%s”' work
|
||||
- Added it_util.py to POTFILES, it had translatable strings for
|
||||
the “About” dialog and the key settings dialog.
|
||||
- Update translations from Weblate (updated ca, de, fr, tr, uk)
|
||||
|
||||
* Wed Aug 26 2020 Mike FABIAN <mfabian@redhat.com> - 1.12.0-1
|
||||
- Update to 1.12.0
|
||||
- New setup tool, now keybindings can be configured with a GUI.
|
||||
- Resolves: https://github.com/kaio/ibus-table/issues/57
|
||||
- Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1133127
|
||||
- Put exact (except tone) pinyin matches next after exact
|
||||
matches in the candidate list.
|
||||
- Resolves: https://github.com/kaio/ibus-table/issues/63
|
||||
- Allow lookup table orientation “System Default” in the setup
|
||||
- Remove “spacekeybehavior” option, it became useless as all
|
||||
keybindings are configurable now.
|
||||
- Added a “debuglevel” option.
|
||||
- Update translations from Weblate (updated ca, cs, de, es, fa,
|
||||
fr, ja, pt_BR, pt_PT, uk, zh_TW, zh_HK, zh_CN)
|
||||
|
||||
* Sun Aug 16 2020 Mike FABIAN <mfabian@redhat.com> - 1.11.0-1
|
||||
- Update to 1.11.0
|
||||
- Make key bindings configurable.
|
||||
Only via the command line for the moment, not yet easy to do
|
||||
for normal users. I have to rewrite the setup tool eventually
|
||||
to make that possible.
|
||||
- Resolves: https://github.com/ibus/ibus/issues/2241
|
||||
|
||||
* Wed Jul 15 2020 Mike FABIAN <mfabian@redhat.com> - 1.10.1-1
|
||||
- Update to 1.10.1
|
||||
- Add GUI test
|
||||
- Make output of ibus-table-createdb deterministic
|
||||
- Update translations from Weblate (updated fr, tr, zh_CN)
|
||||
|
||||
* Wed Jul 01 2020 Mike FABIAN <mfabian@redhat.com> - 1.10.0-1
|
||||
- Update to 1.10.0
|
||||
- Add suggestion mode feature
|
||||
- Resolves: https://github.com/mike-fabian/ibus-table/pull/9
|
||||
- Resolves: rhbz#835376
|
||||
- Add test cases for suggestion mode feature
|
||||
- Fix problems with the behaviour of the property menus
|
||||
- Use python logging module with log file rotation instead
|
||||
of writing to stdout/stderr
|
||||
- Update translations from Weblate (updated de, es, fr, pt_BR, pt_PT, tr, uk)
|
||||
|
||||
* Wed Feb 12 2020 Mike FABIAN <mfabian@redhat.com> - 1.9.25-1
|
||||
- update to 1.9.25
|
||||
- Fix crash when changing some options using the menu or the floating panel
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (ibus-table-1.9.25.tar.gz) = d6db134ae9dfd6ea478dfdf7544c47fa6d94aca398451ac3fd451d22de806e91c0972478b6e25caa037d9dbac3de13e28b3f0d9b7c06b28bf19f50a0b389974e
|
||||
SHA512 (ibus-table-1.13.1.tar.gz) = 19748dbb111976b7cc594558cdea925c8f311264d994df6eba99cf11d2642ad95c10d57e7ec7b6026ea1c78da0db61e7d8f56deb40dc1a552d2fd64eedd00f65
|
||||
|
|
|
|||
|
|
@ -1,15 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
|
||||
check_return_value () {
|
||||
if [ $1 != 0 ] ; then
|
||||
exit $1
|
||||
fi
|
||||
}
|
||||
|
||||
cd $1
|
||||
./configure --prefix=/usr
|
||||
check_return_value $?
|
||||
make check && rc=0 || rc=1; cat tests/test-suite.log
|
||||
exit $rc
|
||||
25
tests/roles/ibus-desktop-testing-role/defaults/main.yml
Normal file
25
tests/roles/ibus-desktop-testing-role/defaults/main.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
role_pkgs_req:
|
||||
- rsync
|
||||
- xorg-x11-server-Xvfb
|
||||
- appstream
|
||||
- libappstream-glib
|
||||
- desktop-file-utils
|
||||
- python3-mock
|
||||
- python3-gobject
|
||||
- python3-gobject-base
|
||||
- glib2
|
||||
- gtk3
|
||||
- dconf
|
||||
- dbus-x11
|
||||
- ibus
|
||||
- ibus-devel
|
||||
- gcc
|
||||
- python3-devel
|
||||
- python3-pyxdg
|
||||
- xorg-x11-server-Xvfb
|
||||
- ibus-table-chinese-wubi-jidian
|
||||
- ibus-table-chinese-cangjie
|
||||
- ibus-table-chinese-stroke5
|
||||
- ibus-table-code
|
||||
- ibus-table-latin
|
||||
- ibus-table-translit
|
||||
4
tests/roles/ibus-desktop-testing-role/meta/main.yml
Normal file
4
tests/roles/ibus-desktop-testing-role/meta/main.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
|
||||
dependencies:
|
||||
- role: str-common-init
|
||||
106
tests/roles/ibus-desktop-testing-role/tasks/main.yml
Normal file
106
tests/roles/ibus-desktop-testing-role/tasks/main.yml
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
---
|
||||
- name: Check if GNOME installed-tests testing harness is installed
|
||||
register: gnome_desktop_testing_runner
|
||||
find:
|
||||
paths: "{{ ansible_env.PATH.split(':') }}"
|
||||
pattern: gnome-desktop-testing-runner
|
||||
|
||||
- name: Build and install GNOME installed-tests testing harness
|
||||
when: gnome_desktop_testing_runner.matched == 0
|
||||
block:
|
||||
- name: Installing build dependencies for IBus and GNOME installed-tests testing harness
|
||||
package:
|
||||
name:
|
||||
- git
|
||||
- make
|
||||
- gcc
|
||||
- diffutils
|
||||
- autoconf
|
||||
- automake
|
||||
- libtool
|
||||
- glib2-devel
|
||||
- systemd-devel
|
||||
- gnome-session
|
||||
- gnome-shell
|
||||
- dbus-x11
|
||||
- xorg-x11-server-Xvfb
|
||||
- ibus
|
||||
- ibus-desktop-testing
|
||||
- ibus-table-tests
|
||||
|
||||
- name: Fetching GNOME installed-tests testing harness source from remote repository
|
||||
git:
|
||||
repo: 'https://gitlab.gnome.org/GNOME/gnome-desktop-testing.git'
|
||||
dest: gnome-desktop-testing
|
||||
force: yes
|
||||
|
||||
- name: Configure GNOME installed-tests testing harness build
|
||||
command: ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
||||
args:
|
||||
chdir: gnome-desktop-testing
|
||||
|
||||
- name: Build GNOME installed-tests testing harness
|
||||
command: make
|
||||
args:
|
||||
chdir: gnome-desktop-testing
|
||||
|
||||
- name: Install GNOME installed-tests testing harness
|
||||
command: make install
|
||||
args:
|
||||
chdir: gnome-desktop-testing
|
||||
|
||||
- name: Start IBus installed-tests testing harness
|
||||
environment:
|
||||
ANSIBLE: 1
|
||||
TMPDIR: '{{ remote_artifacts }}'
|
||||
G_MESSAGES_DEBUG: 'all'
|
||||
block:
|
||||
- name: Execute IBus table tests
|
||||
shell: |
|
||||
set -e
|
||||
status="FAIL: frame"
|
||||
ibus-desktop-testing-runner \
|
||||
--no-graphics \
|
||||
--runner=gnome \
|
||||
--timeout=1200 \
|
||||
--tests='{{ installed_test_name }}' \
|
||||
--output='{{ remote_artifacts }}/{{ installed_test_name }}.log' \
|
||||
--result='{{ remote_artifacts }}/test.log' \
|
||||
null
|
||||
if [ $? -eq 0 ]; then
|
||||
status="PASS: frame"
|
||||
fi
|
||||
echo "${status} $TEST" >> {{ remote_artifacts }}/test.log
|
||||
|
||||
- name: Check the results
|
||||
shell: |
|
||||
IS_RAWHIDE=`grep -i rawhide /etc/fedora-release`
|
||||
if [ x"$IS_RAWHIDE" != x ] ; then
|
||||
echo PASS
|
||||
exit 0
|
||||
fi
|
||||
log="{{ remote_artifacts }}/test.log"
|
||||
if [ ! -f $log ] ; then
|
||||
echo ERROR
|
||||
exit 1
|
||||
else
|
||||
FAIL=`grep "^FAIL: " $log | grep -v 'FAIL: 0$'`
|
||||
if [ x"$FAIL" != x ] ; then
|
||||
echo ERROR
|
||||
exit 1
|
||||
else
|
||||
echo PASS
|
||||
fi
|
||||
fi
|
||||
register: test_fails
|
||||
#failed_when: False
|
||||
|
||||
- name: Set role result
|
||||
set_fact:
|
||||
role_result: "{{ test_fails.stdout }}"
|
||||
role_result_failed: "{{ (test_fails.stdout|d|length > 0) or (test_fails.stderr|d|length > 0) }}"
|
||||
role_result_msg: "{{ test_fails.stdout|d('tests failed.') }}"
|
||||
|
||||
- include_role:
|
||||
name: str-common-final
|
||||
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
|
||||
check_return_value () {
|
||||
if [ $1 != 0 ] ; then
|
||||
exit $1
|
||||
fi
|
||||
}
|
||||
|
||||
pushd /usr/share/ibus-table/engine
|
||||
for i in $@; do
|
||||
python3 ${i} -v
|
||||
check_return_value $?
|
||||
done
|
||||
popd
|
||||
|
|
@ -1,40 +1,8 @@
|
|||
- hosts: localhost
|
||||
vars:
|
||||
- artifacts: "{{ lookup('env', 'TEST_ARTIFACTS')|default('./artifacts', true) }}"
|
||||
tags:
|
||||
- classic
|
||||
remote_user: root
|
||||
roles:
|
||||
- role: standard-test-source # to get the source tar ball to do “make check”
|
||||
- role: standard-test-basic
|
||||
required_packages:
|
||||
- make
|
||||
- libappstream-glib
|
||||
- desktop-file-utils
|
||||
- python3-gobject
|
||||
- python3-gobject-base
|
||||
- glib2
|
||||
- gtk3
|
||||
- dconf
|
||||
- dbus-x11
|
||||
- ibus
|
||||
- ibus-devel
|
||||
- gcc
|
||||
- python3-devel
|
||||
- python3-pyxdg
|
||||
- ibus-table-chinese-wubi-jidian
|
||||
- ibus-table-chinese-cangjie
|
||||
- ibus-table-chinese-stroke5
|
||||
- ibus-table-code
|
||||
- ibus-table-latin
|
||||
- ibus-table-translit
|
||||
tests:
|
||||
- make-check:
|
||||
dir: ./
|
||||
run: bash ./make_check.sh ./source
|
||||
- doctests-table.py:
|
||||
dir: ./
|
||||
run: bash ./run_python_doctests.sh table.py
|
||||
- doctests-it_util.py:
|
||||
dir: ./
|
||||
run: bash ./run_python_doctests.sh it_util.py
|
||||
- role: ibus-desktop-testing-role
|
||||
installed_test_name: ibus-table
|
||||
tags:
|
||||
- classic
|
||||
- gating
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue