Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
@ -1,21 +1,15 @@
|
|||||||
Name: sombok
|
Name: sombok
|
||||||
Version: 2.4.0
|
Version: 2.4.0
|
||||||
Release: 7%{?dist}
|
Release: 16%{?dist}
|
||||||
Summary: Unicode Text Segmentation Package
|
Summary: Unicode Text Segmentation Package
|
||||||
|
|
||||||
Group: System Environment/Libraries
|
|
||||||
License: GPLv2+ or Artistic clarified
|
License: GPLv2+ or Artistic clarified
|
||||||
URL: http://sf.net/projects/linefold/
|
URL: http://sf.net/projects/linefold/
|
||||||
Source0: https://github.com/hatukanezumi/sombok/archive/%{name}-%{version}.tar.gz
|
Source0: https://github.com/hatukanezumi/sombok/archive/%{name}-%{version}.tar.gz
|
||||||
# A multilib-safe wrapper, bug #1853166
|
# A multilib-safe wrapper, bug #1853260
|
||||||
Source1: sombok.h
|
Source1: sombok.h
|
||||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
||||||
|
|
||||||
# libthai is available only in Fedora and EL6
|
BuildRequires: make
|
||||||
%if 0%{?rhel} > 5 || 0%{?fedora}
|
|
||||||
BuildRequires: libthai-devel
|
BuildRequires: libthai-devel
|
||||||
%endif
|
|
||||||
|
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
@ -31,7 +25,6 @@ Annex #29 (UAX #29).
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Group: Development/Libraries
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
Requires: pkgconfig
|
Requires: pkgconfig
|
||||||
|
|
||||||
@ -51,41 +44,61 @@ make %{?_smp_mflags}
|
|||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||||
|
|
||||||
# Rename sombok.h to sombok-ARCH.h and install a sombok.h wrapper to avoid
|
# Rename sombok.h to sombok-ARCH.h and install a sombok.h wrapper to avoid
|
||||||
# a file conflict on multilib systems, bug #1853166
|
# a file conflict on multilib systems, bug #1853260
|
||||||
mv %{buildroot}/%{_includedir}/sombok.h %{buildroot}/%{_includedir}/sombok-%{_arch}.h
|
mv %{buildroot}/%{_includedir}/sombok.h %{buildroot}/%{_includedir}/sombok-%{_arch}.h
|
||||||
install -m 0644 %{SOURCE1} %{buildroot}/%{_includedir}/sombok.h
|
install -m 0644 %{SOURCE1} %{buildroot}/%{_includedir}/sombok.h
|
||||||
|
|
||||||
|
|
||||||
%clean
|
%ldconfig_scriptlets
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%license COPYING
|
||||||
%doc AUTHORS ChangeLog ChangeLog.REL1 COPYING NEWS README README.ja_JP
|
%doc AUTHORS ChangeLog ChangeLog.REL1 NEWS README README.ja_JP
|
||||||
%{_libdir}/libsombok.so.*
|
%{_libdir}/libsombok.so.*
|
||||||
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_includedir}/sombok*.h
|
%{_includedir}/sombok*.h
|
||||||
%{_libdir}/libsombok.so
|
%{_libdir}/libsombok.so
|
||||||
%{_libdir}/pkgconfig/sombok.pc
|
%{_libdir}/pkgconfig/sombok.pc
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jul 03 2020 Petr Pisar <ppisar@redhat.com> - 2.4.0-7
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2.4.0-16
|
||||||
- Make sombok-devel package multilib safe (bug #1853166)
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.4.0-15
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 03 2020 Petr Pisar <ppisar@redhat.com> - 2.4.0-12
|
||||||
|
- Make sombok-devel package multilib safe (bug #1853260)
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Apr 19 2018 Xavier Bachelot <xavier@bachelot.org> 2.4.0-7
|
||||||
|
- Spec clean up.
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-6
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-6
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
Loading…
Reference in New Issue
Block a user