Compare commits

...

No commits in common. "c8s" and "c9" have entirely different histories.
c8s ... c9

7 changed files with 36 additions and 62 deletions

5
.gitignore vendored
View File

@ -1,4 +1 @@
libhangul-0.0.10.tar.gz
/libhangul-0.0.11.tar.gz
/libhangul-0.0.12.tar.gz
/libhangul-0.1.0.tar.gz
SOURCES/libhangul-0.1.0.tar.gz

1
.libhangul.metadata Normal file
View File

@ -0,0 +1 @@
9c6f3a82f2d4068771215f1b9f13a0d4bdbbfc77 SOURCES/libhangul-0.1.0.tar.gz

View File

@ -1,16 +1,16 @@
Name: libhangul
Version: 0.1.0
Release: 16%{?dist}
Release: 25%{?dist}
License: LGPLv2+
URL: https://code.google.com/p/libhangul/
URL: https://github.com/libhangul/libhangul
# Change Source URL when upstream released tar ball
# Source0: https://github.com/libhangul/libhangul/archive/libhangul-%{version}.tar.gz
Source0: https://libhangul.googlecode.com/files/libhangul-%{version}.tar.gz
Summary: Hangul input library
Group: System Environment/Libraries
Requires(post): /sbin/ldconfig
Requires(postun): /sbin/ldconfig
BuildRequires: gettext-devel, automake, libtool
BuildRequires: make
%description
@ -19,7 +19,6 @@ libhangul provides common features for Hangul input method programs.
%package devel
Summary: Development files for libhangul
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: pkgconfig
%description devel
@ -44,27 +43,50 @@ rm $RPM_BUILD_ROOT%{_libdir}/%{name}.la
%find_lang %{name}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%ldconfig_scriptlets
%files -f %{name}.lang
%defattr(-, root, root)
%doc AUTHORS COPYING ChangeLog NEWS README
%{_libdir}/lib*.so.*
%{_datadir}/%{name}
%{_bindir}/hangul
%files devel
%defattr(-, root, root)
%{_includedir}/hangul-*
%{_libdir}/pkgconfig/*.pc
%{_libdir}/*.so
%changelog
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.1.0-25
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.1.0-24
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.0-23
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.0-22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.0-21
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.0-20
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.0-19
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.0-18
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Thu Jul 12 2018 Peng Wu <pwu@redhat.com> - 0.1.0-17
- Fixes URL
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.0-16
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild

View File

@ -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}

View File

@ -1 +0,0 @@
SHA512 (libhangul-0.1.0.tar.gz) = cf84850bf7a41e743457300513c5efdf7b3e18d168f4fdc324aaa8e1be78743752fcb98385764f94c707777ab82cc9444e076808e61fdbd915c9c0d7ea93c534

View File

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

View File

@ -1,20 +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
- gettext-devel
tests:
- make-check:
dir: ./
run: bash ./make_check.sh ./source