Compare commits
No commits in common. "c8s" and "c8" have entirely different histories.
11
.gitignore
vendored
11
.gitignore
vendored
@ -1,10 +1 @@
|
||||
libthai-0.1.12.tar.gz
|
||||
libdatrie-0.2.2.tar.gz
|
||||
/libdatrie-0.2.6.tar.xz
|
||||
/libthai-0.1.19.tar.xz
|
||||
/libdatrie-0.2.8.tar.xz
|
||||
/libthai-0.1.20.tar.xz
|
||||
/libthai-0.1.21.tar.xz
|
||||
/libthai-0.1.24.tar.xz
|
||||
/libthai-0.1.25.tar.xz
|
||||
/libthai-0.1.27.tar.xz
|
||||
SOURCES/libthai-0.1.27.tar.xz
|
||||
|
1
.libthai.metadata
Normal file
1
.libthai.metadata
Normal file
@ -0,0 +1 @@
|
||||
bb74972fb9acc4425763034aad1d0929dc03cb72 SOURCES/libthai-0.1.27.tar.xz
|
@ -1,7 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
# this is the testcase identifier, which OSCI pipeline uses
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
@ -1,36 +0,0 @@
|
||||
Index: ChangeLog
|
||||
===================================================================
|
||||
--- ChangeLog.orig
|
||||
+++ ChangeLog
|
||||
@@ -28,6 +28,18 @@
|
||||
|
||||
2015-11-22 Theppitak Karoonboonyanan <theppitak@gmail.com>
|
||||
|
||||
+ Fix compilation error with GCC 6
|
||||
+
|
||||
+ * include/thai/thctype.h (_th_bitmsk):
|
||||
+ - Use unsigned int instead of unsigned short for bitmask base,
|
||||
+ as GCC 6 takes ~0 as -1 for unsigned short,
|
||||
+ and causes compilation error for scim-thai.
|
||||
+
|
||||
+ Thanks Martin Michlmayr for the report via Debian #811690
|
||||
+ http://bugs.debian.org/811690
|
||||
+
|
||||
+2016-01-20 Theppitak Karoonboonyanan <theppitak@gmail.com>
|
||||
+
|
||||
* configure.ac: Post-release version suffix added.
|
||||
|
||||
2015-10-22 Theppitak Karoonboonyanan <theppitak@gmail.com>
|
||||
Index: include/thai/thctype.h
|
||||
===================================================================
|
||||
--- include/thai/thctype.h.orig
|
||||
+++ include/thai/thctype.h
|
||||
@@ -363,7 +363,7 @@ extern int th_iscombchar(thchar_t c);
|
||||
#include <ctype.h>
|
||||
#define _th_ISbit(bit) (1 << (bit))
|
||||
#define _th_bitfld(base, val) ((val) << (base))
|
||||
-#define _th_bitmsk(base, bits) (~((~(unsigned short)0) << (bits)) << (base))
|
||||
+#define _th_bitmsk(base, bits) (~((~(unsigned)0) << (bits)) << (base))
|
||||
|
||||
enum {
|
||||
_th_IStis = _th_ISbit(0), /* TIS-620 char */
|
1
sources
1
sources
@ -1 +0,0 @@
|
||||
SHA512 (libthai-0.1.27.tar.xz) = 931ba74ab003c7670b0919fc12bf456df1b516f859f55fbf6c063341215f1743158070f6256f78c49f56641d16ab0e8b0c71b96078c448f454b1257d44b10757
|
@ -1,17 +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_return_value $?
|
||||
make check
|
||||
exit $?
|
@ -1,21 +0,0 @@
|
||||
- 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
|
||||
- gcc
|
||||
- autoconf
|
||||
- automake
|
||||
- libtool
|
||||
- doxygen
|
||||
- libdatrie-devel
|
||||
tests:
|
||||
- make-check:
|
||||
dir: ./
|
||||
run: bash ./make_check.sh ./source
|
Loading…
Reference in New Issue
Block a user