From 71081c3c3f342248a9f03a6c1152e6c2c93758d7 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Thu, 1 Aug 2019 13:37:43 -0400 Subject: [PATCH] import sombok-2.4.0-6.el8 --- .gitignore | 1 + .sombok.metadata | 1 + SPECS/sombok.spec | 142 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 144 insertions(+) create mode 100644 .gitignore create mode 100644 .sombok.metadata create mode 100644 SPECS/sombok.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57af34d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/sombok-2.4.0.tar.gz diff --git a/.sombok.metadata b/.sombok.metadata new file mode 100644 index 0000000..36c857f --- /dev/null +++ b/.sombok.metadata @@ -0,0 +1 @@ +7d63cb56bf18703e03c9868db90d343d1a8a2b5a SOURCES/sombok-2.4.0.tar.gz diff --git a/SPECS/sombok.spec b/SPECS/sombok.spec new file mode 100644 index 0000000..d46278f --- /dev/null +++ b/SPECS/sombok.spec @@ -0,0 +1,142 @@ +Name: sombok +Version: 2.4.0 +Release: 6%{?dist} +Summary: Unicode Text Segmentation Package + +Group: System Environment/Libraries +License: GPLv2+ or Artistic clarified +URL: http://sf.net/projects/linefold/ +Source0: https://github.com/hatukanezumi/sombok/archive/%{name}-%{version}.tar.gz +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) + +# libthai is available only in Fedora and EL6 +%if 0%{?rhel} > 5 || 0%{?fedora} +BuildRequires: libthai-devel +%endif + +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: libtool + + +%description +Sombok library package performs Line Breaking Algorithm described in Unicode +Standards Annex #14 (UAX #14). East_Asian_Width informative properties defined +by Annex #11 (UAX #11) may be concerned to determine breaking positions. This +package also implements "default" Grapheme Cluster segmentation described in +Annex #29 (UAX #29). + + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: pkgconfig + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q -n %{name}-%{name}-%{version} + + +%build +autoreconf -vif +%configure --disable-static +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc AUTHORS ChangeLog ChangeLog.REL1 COPYING NEWS README README.ja_JP +%{_libdir}/libsombok.so.* + + +%files devel +%defattr(-,root,root,-) +%{_includedir}/sombok*.h +%{_libdir}/libsombok.so +%{_libdir}/pkgconfig/sombok.pc + + +%changelog +* Fri Feb 09 2018 Fedora Release Engineering - 2.4.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 2.4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 2.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 2.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Feb 05 2016 Fedora Release Engineering - 2.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Sep 14 2015 Xavier Bachelot 2.4.0-1 +- Update to 2.4.0. + +* Fri Jun 19 2015 Fedora Release Engineering - 2.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Aug 18 2014 Fedora Release Engineering - 2.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 2.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Sep 29 2013 Xavier Bachelot 2.3.1-1 +- Update to 2.3.1. + +* Sun Aug 04 2013 Fedora Release Engineering - 2.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Feb 15 2013 Fedora Release Engineering - 2.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Jul 21 2012 Fedora Release Engineering - 2.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Thu Apr 12 2012 Xavier Bachelot 2.2.1-1 +- Update to 2.2.1. +- Update License: to GPLv2+ or Artistic clarified. + +* Thu Mar 01 2012 Xavier Bachelot 2.1.1-1 +- Update to 2.1.1. + +* Sat Feb 04 2012 Xavier Bachelot 2.1.0-1 +- Update to 2.1.0. + +* Sat Jan 14 2012 Fedora Release Engineering - 2.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri Nov 18 2011 Xavier Bachelot 2.0.6-1 +- Update to 2.0.6. + +* Tue Jul 26 2011 Xavier Bachelot 2.0.5-2 +- Fix conditional BuildRequires on libthai-devel. +- Fix description. +- Fix Requires in the devel subpackage. +- Be more specific on filenames in the %%files' sections. + +* Tue May 17 2011 Xavier Bachelot 2.0.5-1 +- Initial Fedora release.