re-import sources as agreed with the maintainer

This commit is contained in:
Adam Samalik 2023-07-18 12:02:16 +02:00
parent 04c2627cb0
commit 262e5f57c8
3 changed files with 53 additions and 1 deletions

10
.gitignore vendored
View File

@ -1,2 +1,10 @@
SOURCES/ibus-hangul-1.5.1.tar.gz
ibus-hangul-1.2.0.20100102.tar.gz
ibus-hangul-1.3.0.20100329.tar.gz
/ibus-hangul-1.3.0.20100329.tar.gz
/ibus-hangul-1.3.1.tar.gz
/ibus-hangul-1.3.2.tar.gz
/ibus-hangul-1.4.0.tar.gz
/ibus-hangul-1.4.1.tar.gz
/ibus-hangul-1.4.2.tar.gz
/ibus-hangul-1.5.0.tar.gz
/ibus-hangul-1.5.1.tar.gz

15
tests/make_check.sh Normal file
View File

@ -0,0 +1,15 @@
#!/bin/bash
set -x
check_return_value () {
if [ $1 != 0 ] ; then
exit $1
fi
}
cd $1
./configure --prefix=/usr
check_return_value $?
make check
exit $?

29
tests/tests.yml Normal file
View File

@ -0,0 +1,29 @@
- 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
- intltool
- python3-devel
- libhangul-devel
tests:
- make-check:
dir: ./
run: bash ./make_check.sh ./source