a588c1
#%%global debugtrace 1
a588c1
a588c1
Name:      icu
a588c1
Version:   67.1
a588c1
Release:   9%{?dist}
a588c1
Summary:   International Components for Unicode
a588c1
a588c1
License:   MIT and UCD and Public Domain
a588c1
URL:       http://site.icu-project.org/
a588c1
Source0:   https://github.com/unicode-org/icu/releases/download/release-67-1/icu4c-67_1-src.tgz
a588c1
Source1:   icu-config.sh
a588c1
a588c1
BuildRequires: gcc
a588c1
BuildRequires: gcc-c++
a588c1
BuildRequires: doxygen, autoconf, python3
a588c1
BuildRequires: make
a588c1
Requires: lib%{name}%{?_isa} = %{version}-%{release}
a588c1
a588c1
Patch4: gennorm2-man.patch
a588c1
Patch5: icuinfo-man.patch
a588c1
Patch6: coverity.patch
a588c1
a588c1
%description
a588c1
Tools and utilities for developing with icu.
a588c1
a588c1
%package -n lib%{name}
a588c1
Summary: International Components for Unicode - libraries
a588c1
a588c1
%description -n lib%{name}
a588c1
The International Components for Unicode (ICU) libraries provide
a588c1
robust and full-featured Unicode services on a wide variety of
a588c1
platforms. ICU supports the most current version of the Unicode
a588c1
standard, and they provide support for supplementary Unicode
a588c1
characters (needed for GB 18030 repertoire support).
a588c1
As computing environments become more heterogeneous, software
a588c1
portability becomes more important. ICU lets you produce the same
a588c1
results across all the various platforms you support, without
a588c1
sacrificing performance. It offers great flexibility to extend and
a588c1
customize the supplied services.
a588c1
a588c1
%package  -n lib%{name}-devel
a588c1
Summary:  Development files for International Components for Unicode
a588c1
Requires: lib%{name}%{?_isa} = %{version}-%{release}
a588c1
Requires: pkgconfig
a588c1
a588c1
%description -n lib%{name}-devel
a588c1
Includes and definitions for developing with icu.
a588c1
a588c1
%package -n lib%{name}-doc
a588c1
Summary: Documentation for International Components for Unicode
a588c1
BuildArch: noarch
a588c1
a588c1
%description -n lib%{name}-doc
a588c1
%{summary}.
a588c1
a588c1
%{!?endian: %global endian %(%{__python3} -c "import sys;print (0 if sys.byteorder=='big' else 1)")}
a588c1
# " this line just fixes syntax highlighting for vim that is confused by the above and continues literal
a588c1
a588c1
a588c1
%prep
a588c1
%autosetup -p1 -n %{name}
a588c1
a588c1
a588c1
%build
a588c1
pushd source
a588c1
autoconf
a588c1
CFLAGS='%optflags -fno-strict-aliasing'
a588c1
CXXFLAGS='%optflags -fno-strict-aliasing'
a588c1
# Endian: BE=0 LE=1
a588c1
%if ! 0%{?endian}
a588c1
CPPFLAGS='-DU_IS_BIG_ENDIAN=1'
a588c1
%endif
a588c1
a588c1
#rhbz856594 do not use --disable-renaming or cope with the mess
a588c1
OPTIONS='--with-data-packaging=library --disable-samples'
a588c1
%if 0%{?debugtrace}
a588c1
OPTIONS=$OPTIONS' --enable-debug --enable-tracing'
a588c1
%endif
a588c1
%configure $OPTIONS
a588c1
a588c1
#rhbz#225896
a588c1
sed -i 's|-nodefaultlibs -nostdlib||' config/mh-linux
a588c1
#rhbz#813484
a588c1
sed -i 's| \$(docfilesdir)/installdox||' Makefile
a588c1
# There is no source/doc/html/search/ directory
a588c1
sed -i '/^\s\+\$(INSTALL_DATA) \$(docsrchfiles) \$(DESTDIR)\$(docdir)\/\$(docsubsrchdir)\s*$/d' Makefile
a588c1
# rhbz#856594 The configure --disable-renaming and possibly other options
a588c1
# result in icu/source/uconfig.h.prepend being created, include that content in
a588c1
# icu/source/common/unicode/uconfig.h to propagate to consumer packages.
a588c1
test -f uconfig.h.prepend && sed -e '/^#define __UCONFIG_H__/ r uconfig.h.prepend' -i common/unicode/uconfig.h
a588c1
a588c1
# more verbosity for build.log
a588c1
sed -i -r 's|(PKGDATA_OPTS = )|\1-v |' data/Makefile
a588c1
a588c1
%make_build
a588c1
%make_build doc
a588c1
a588c1
a588c1
%install
a588c1
rm -rf $RPM_BUILD_ROOT source/__docs
a588c1
%make_install %{?_smp_mflags} -C source
a588c1
make %{?_smp_mflags} -C source install-doc docdir=__docs
a588c1
chmod +x $RPM_BUILD_ROOT%{_libdir}/*.so.*
a588c1
(
a588c1
 cd $RPM_BUILD_ROOT%{_bindir}
a588c1
 mv icu-config icu-config-%{__isa_bits}
a588c1
)
a588c1
install -p -m755 -D %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/icu-config
a588c1
a588c1
a588c1
%check
a588c1
# test to ensure that -j(X>1) didn't "break" man pages. b.f.u #2357
a588c1
if grep -q @VERSION@ source/tools/*/*.8 source/tools/*/*.1 source/config/*.1; then
a588c1
    exit 1
a588c1
fi
a588c1
%ifarch i686
a588c1
# F26 since the mass rebuild in 2017-Feb fails a check, ignore error. TODO: find cause / disable only one.
a588c1
%make_build -C source check ||:
a588c1
%else
a588c1
%make_build -C source check
a588c1
%endif
a588c1
a588c1
# log available codes
a588c1
pushd source
a588c1
LD_LIBRARY_PATH=lib:stubdata:tools/ctestfw:$LD_LIBRARY_PATH bin/uconv -l
a588c1
a588c1
a588c1
%ldconfig_scriptlets -n lib%{name}
a588c1
a588c1
a588c1
%files
a588c1
%license license.html
a588c1
%exclude %{_datadir}/%{name}/*/LICENSE
a588c1
%{_bindir}/derb
a588c1
%{_bindir}/genbrk
a588c1
%{_bindir}/gencfu
a588c1
%{_bindir}/gencnval
a588c1
%{_bindir}/gendict
a588c1
%{_bindir}/genrb
a588c1
%{_bindir}/makeconv
a588c1
%{_bindir}/pkgdata
a588c1
%{_bindir}/uconv
a588c1
%{_sbindir}/*
a588c1
%{_mandir}/man1/derb.1*
a588c1
%{_mandir}/man1/gencfu.1*
a588c1
%{_mandir}/man1/gencnval.1*
a588c1
%{_mandir}/man1/gendict.1*
a588c1
%{_mandir}/man1/genrb.1*
a588c1
%{_mandir}/man1/genbrk.1*
a588c1
%{_mandir}/man1/makeconv.1*
a588c1
%{_mandir}/man1/pkgdata.1*
a588c1
%{_mandir}/man1/uconv.1*
a588c1
%{_mandir}/man8/*.8*
a588c1
a588c1
%files -n lib%{name}
a588c1
%license LICENSE
a588c1
%doc readme.html
a588c1
%{_libdir}/*.so.*
a588c1
a588c1
%files -n lib%{name}-devel
a588c1
%license LICENSE
a588c1
%doc source/samples/
a588c1
%{_bindir}/%{name}-config*
a588c1
%{_bindir}/icuinfo
a588c1
%{_mandir}/man1/%{name}-config.1*
a588c1
%{_mandir}/man1/icuinfo.1*
a588c1
%{_includedir}/unicode
a588c1
%{_libdir}/*.so
a588c1
%{_libdir}/pkgconfig/*.pc
a588c1
%{_libdir}/%{name}
a588c1
%dir %{_datadir}/%{name}
a588c1
%dir %{_datadir}/%{name}/%{version}
a588c1
%{_datadir}/%{name}/%{version}/install-sh
a588c1
%{_datadir}/%{name}/%{version}/mkinstalldirs
a588c1
%{_datadir}/%{name}/%{version}/config
a588c1
a588c1
%files -n lib%{name}-doc
a588c1
%license LICENSE
a588c1
%doc readme.html
a588c1
%doc source/__docs/%{name}/html/*
a588c1
a588c1
a588c1
%changelog
a588c1
* Wed Aug 18 2021 Mike FABIAN <mfabian@redhat.com> - 67.1-9
a588c1
- Resolves: rhbz#1938741 Fix coverity scan problems
a588c1
a588c1
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 67.1-8
a588c1
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
a588c1
  Related: rhbz#1991688
a588c1
a588c1
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 67.1-7
a588c1
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
a588c1
a588c1
* Tue Mar 30 2021 Jonathan Wakely <jwakely@redhat.com> - 67.1-6
a588c1
- Rebuilt for removed libstdc++ symbol (#1937698)
a588c1
a588c1
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 67.1-5
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
a588c1
a588c1
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 67.1-4
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
a588c1
a588c1
* Tue Jul 21 2020 Eike Rathke <erack@redhat.com> - 67.1-3
a588c1
- Replace unversioned %%{__python} macro with %%{__python3}
a588c1
a588c1
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 67.1-2
a588c1
- Use make macros
a588c1
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
a588c1
a588c1
* Fri May 15 2020 Pete Walter <pwalter@fedoraproject.org> - 67.1-1
a588c1
- Update to 67.1
a588c1
a588c1
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 65.1-2
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
a588c1
a588c1
* Fri Nov 01 2019 Pete Walter <pwalter@fedoraproject.org> - 65.1-1
a588c1
- Update to 65.1
a588c1
- Add a patch from gentoo to fix the build on s390x
a588c1
- Drop arm test disabling patches as they are no longer needed
a588c1
a588c1
* Fri Nov 01 2019 Pete Walter <pwalter@fedoraproject.org> - 63.2-4
a588c1
- Build with Python 3
a588c1
a588c1
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 63.2-3
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
a588c1
a588c1
* Mon May 13 2019 Eike Rathke <erack@redhat.com> - 63.2-2
a588c1
- Resolves: rhbz#1708935 temporarily roll back to 63.1
a588c1
a588c1
* Thu May 09 2019 Eike Rathke <erack@redhat.com> - 63.2-1
a588c1
- Update to 63.2
a588c1
a588c1
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 63.1-2
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a588c1
a588c1
* Wed Jan 23 2019 Pete Walter <pwalter@fedoraproject.org> - 63.1-1
a588c1
- Update to 63.1
a588c1
a588c1
* Tue Nov 06 2018 Eike Rathke <erack@redhat.com> - 62.1-3
a588c1
- Resolves: rhbz#1646703 CVE-2018-18928
a588c1
a588c1
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 62.1-2
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a588c1
a588c1
* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 62.1-1
a588c1
- Update to 62.1
a588c1
a588c1
* Mon May 28 2018 Eike Rathke <erack@redhat.com> - 61.1-2
a588c1
- Resolves: rhbz#1582611 Add riscv64 to icu-config.sh
a588c1
a588c1
* Tue Apr 24 2018 Eike Rathke <erack@redhat.com> - 61.1-1
a588c1
- Update to 61.1
a588c1
a588c1
* Thu Mar 15 2018 Iryna Shcherbina <ishcherb@redhat.com> - 60.2-3
a588c1
- Update Python 2 dependency declarations to new packaging standards
a588c1
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
a588c1
a588c1
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 60.2-2
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
a588c1
a588c1
* Thu Dec 14 2017 Pete Walter <pwalter@fedoraproject.org> - 60.2-1
a588c1
- Update to 60.2
a588c1
a588c1
* Thu Dec 14 2017 Eike Rathke <erack@redhat.com> - 60.1-2
a588c1
- Resolves: rhbz#1524820 CVE-2017-17484
a588c1
a588c1
* Thu Nov 30 2017 Pete Walter <pwalter@fedoraproject.org> - 60.1-1
a588c1
- Update to 60.1
a588c1
a588c1
* Wed Nov 08 2017 Eike Rathke <erack@redhat.com> - 57.1-9
a588c1
- Resolves: rhbz#1510932 CVE-2017-14952
a588c1
a588c1
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 57.1-8
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
a588c1
a588c1
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 57.1-7
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a588c1
a588c1
* Thu Apr 20 2017 Eike Rathke <erack@redhat.com> - 57.1-6
a588c1
- Resolves: rhbz#1444101 CVE-2017-7867 CVE-2017-7868
a588c1
a588c1
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 57.1-5
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
a588c1
a588c1
* Fri Nov 18 2016 Eike Rathke <erack@redhat.com> - 57.1-4
a588c1
- dist.rpmgrill: "Percent signs in specfile changelog should be escaped"
a588c1
a588c1
* Fri Nov 18 2016 Eike Rathke <erack@redhat.com> - 57.1-3
a588c1
- Resolves: rhbz#1377362 CVE-2016-7415
a588c1
a588c1
* Tue Nov 01 2016 Eike Rathke <erack@redhat.com> - 57.1-2
a588c1
- Resolves: rhbz#1360340 CVE-2016-6293
a588c1
a588c1
* Fri Apr 15 2016 Eike Rathke <erack@redhat.com> - 57.1-1
a588c1
- upgrade to upstream ICU 57.1
a588c1
a588c1
* Tue Apr 05 2016 Eike Rathke <erack@redhat.com> - 56.1-7
a588c1
- make check failure is fatal again
a588c1
a588c1
* Tue Apr 05 2016 Eike Rathke <erack@redhat.com> - 56.1-6
a588c1
- remove icu-56.1-codes-cache-extend.patch
a588c1
a588c1
* Sun Feb 28 2016 Raphael Groner <projects.rg@smart.ms> - 56.1-5
a588c1
- even more verbosity and debug output
a588c1
- add path to extend ICU's internal cache of codes
a588c1
- use license macro
a588c1
- provide samples in devel subpackage
a588c1
- modernize generally
a588c1
a588c1
* Sat Feb 27 2016 Rex Dieter <rdieter@fedoraproject.org> - 56.1-4
a588c1
- %%build: make VERBOSE=1
a588c1
- %%check: keep 'make check' non-fatal while investigating rhbz#1307633
a588c1
a588c1
* Sat Feb 06 2016 Caolán McNamara <caolanm@redhat.com> - 56.1-3
a588c1
- Resolves: rhbz#1307633 FTBFS, disable check to get build through for now
a588c1
a588c1
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 56.1-2
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
a588c1
a588c1
* Tue Oct 27 2015 Eike Rathke <erack@redhat.com> - 56.1-1
a588c1
- Resolves: rhbz#1271353 upgrade to ICU 56.1
a588c1
a588c1
* Fri Sep 18 2015 Eike Rathke <erack@redhat.com> - 54.1-5
a588c1
- Workaround rhbz#1239574 disabling offending tests on armv7hl
a588c1
a588c1
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 54.1-4
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a588c1
a588c1
* Fri Apr 10 2015 Eike Rathke <erack@redhat.com> - 54.1-3
a588c1
- Resolves: rhbz#1190131 CVE-2014-7923 CVE-2014-7926 CVE-2014-9654
a588c1
- Resolves: rhbz#1184811 CVE-2014-6585 CVE-2014-6591
a588c1
a588c1
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 54.1-2
a588c1
- Rebuilt for Fedora 23 Change
a588c1
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
a588c1
a588c1
* Mon Jan 26 2015 Eike Rathke <erack@redhat.com> - 54.1-1
a588c1
- Resolves: rhbz#1185433 upgrade to upstream ICU 54.1
a588c1
a588c1
* Tue Aug 26 2014 Eike Rathke <erack@redhat.com> - 53.1-1
a588c1
- Resolves: rhbz#1130771 upgrade to upstream ICU 53.1
a588c1
a588c1
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 52.1-4
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
a588c1
a588c1
* Fri Jun 13 2014 Eike Rathke <erack@redhat.com> - 52.1-3
a588c1
- Resolves: rhbz#1106793 bad 2-digit year test case
a588c1
a588c1
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 52.1-2
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a588c1
a588c1
* Tue Feb 11 2014 Eike Rathke <erack@redhat.com> - 52.1-1
a588c1
- upgrade to upstream ICU 52.1
a588c1
- Resolves: rhbz#1049265 icu-52.1 is available
a588c1
- Resolves: rhbz#1050063 Trivial change to icu-config to support ppc64le
a588c1
- drop icu-51-layout-fix-10107.tgz source
a588c1
- drop integrated icu.10318.CVE-2013-2924_changeset_34076.patch
a588c1
- drop integrated icu.10143.memory.leak.crash.patch
a588c1
a588c1
* Wed Oct 09 2013 Eike Rathke <erack@redhat.com> - 50.1.2-10
a588c1
- Resolves: rhbz#1015594 CVE-2013-2924 use-after-free
a588c1
a588c1
* Fri Oct 04 2013 Eike Rathke <erack@redhat.com> - 50.1.2-9
a588c1
- added %%{?_isa} to Requires for multi-arch systems
a588c1
a588c1
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 50.1.2-8
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a588c1
a588c1
* Mon Jul 22 2013 Eike Rathke <erack@redhat.com> - 50.1.2-7
a588c1
- Resolves: rhbz#986814 install icu-config.sh from source2
a588c1
a588c1
* Wed Jul 17 2013 Eike Rathke <erack@redhat.com> - 50.1.2-6
a588c1
- Resolves: rhbz#966141 various flaws in Layout Engine font processing
a588c1
- Resolves: rhbz#966077 aarch64 support for icu-config.sh wrapper
a588c1
a588c1
* Mon Feb 25 2013 Eike Rathke <erack@redhat.com> - 50.1.2-5
a588c1
- added manpages for gennorm2 and icuinfo, rhbz#884035 related
a588c1
a588c1
* Tue Feb 19 2013 Caolán McNamara <caolanm@redhat.com> - 50.1.2-4
a588c1
- Resolves: fdo#52519 crash on typing some Malayalam
a588c1
a588c1
* Tue Jan 29 2013 Eike Rathke <erack@redhat.com> - 50.1.2-3
a588c1
- Resolves: rhbz#856594 roll back and build without --disable-renaming again
a588c1
a588c1
* Mon Jan 28 2013 Eike Rathke <erack@redhat.com> - 50.1.2-2
a588c1
- Resolves: rhbz#856594 include content of icu/source/uconfig.h.prepend
a588c1
a588c1
* Fri Jan 25 2013 Eike Rathke <erack@redhat.com> - 50.1.2-1
a588c1
- Update to 50.1.2
a588c1
- Resolves: rhbz#856594 to-do add --disable-renaming on next soname bump
a588c1
- removed upstream applied icu.9283.regexcmp.crash.patch
a588c1
a588c1
* Wed Sep 12 2012 Caolán McNamara <caolanm@redhat.com> - 49.1.1-7
a588c1
- Related: rhbz#856594 reenable icu symbol renaming
a588c1
a588c1
* Wed Sep 12 2012 Caolán McNamara <caolanm@redhat.com> - 49.1.1-6
a588c1
- Resolves: rhbz#856594 disable icu symbol renaming
a588c1
a588c1
* Fri Aug 31 2012 Tom Callaway <spot@fedoraproject.org> - 49.1.1-5
a588c1
- apply upstream fix (bug 9283) for regexcmp crash causing Chromium segfaults
a588c1
a588c1
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 49.1.1-4
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a588c1
a588c1
* Fri Jun 15 2012 Caolán McNamara <caolanm@redhat.com> - 49.1.1-3
a588c1
- probably parallel-build safe by now. Add a check for original breakage
a588c1
a588c1
* Fri Jun 15 2012 Caolán McNamara <caolanm@redhat.com> - 49.1.1-2
a588c1
- Resolves: rhbz#804313 multi-lib pain
a588c1
a588c1
* Thu Apr 19 2012 Eike Rathke <erack@redhat.com> - 49.1.1-1
a588c1
- Update to 49.1.1
a588c1
a588c1
* Thu Apr 19 2012 Eike Rathke <erack@redhat.com> - 4.8.1.1-3
a588c1
- Resolves: rhbz#813484 doxygen 1.8.0 does not provide installdox, omit from install
a588c1
a588c1
* Mon Jan 30 2012 Jon Masters <jcm@jonmasters.org> - 4.8.1.1-2
a588c1
- Correct reference to BZ681941, add temporary fix for ARM FTBFS side effect
a588c1
a588c1
* Fri Jan 20 2012 Peter Robinson <pbrobinson@fedoraproject.org> -4.8.1.1-1
a588c1
- Update to 4.8.1.1
a588c1
a588c1
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.1-4
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
a588c1
a588c1
* Tue Dec 13 2011 Eike Rathke <erack@redhat.com> - 4.8.1-3
a588c1
- Resolves: rhbz#766542 CVE-2011-4599 Stack-based buffer overflow
a588c1
- add icu.8984.CVE-2011-4599.patch
a588c1
a588c1
* Mon Oct 24 2011 Caolán McNamara <caolanm@redhat.com> - 4.8.1-2
a588c1
- Resolves: rhbz#747193 try and enable ccmp for Indic fonts
a588c1
a588c1
* Wed Sep 07 2011 Caolán McNamara <caolanm@redhat.com> - 4.8.1-1
a588c1
- Resolves: rhbz#681941 don't link unneccessary -lm, etc.
a588c1
- add icu.8800.freeserif.crash.patch
a588c1
a588c1
* Tue Mar 08 2011 Caolán McNamara <caolanm@redhat.com> - 4.6-2
a588c1
- Resolves: rhbz#681941 don't link unneccessary -lm, etc.
a588c1
a588c1
* Mon Mar 07 2011 Caolán McNamara <caolanm@redhat.com> - 4.6-1
a588c1
- latest version
a588c1
- upgrade includes a .pc now of its own, drop ours
a588c1
- drop integrated icu.6995.kannada.patch
a588c1
- drop integrated icu.7971.buildfix.patch
a588c1
- drop integrated icu.7972.buildfix.patch
a588c1
- drop integrated icu.7932.doublecompare.patch
a588c1
- drop integrated icu.8011.buildfix.patch
a588c1
a588c1
* Fri Feb 11 2011 Caolán McNamara <caolanm@redhat.com> - 4.4.2-8
a588c1
- Resolves: rhbz#674328 yet more ways that freeserif crashes libicu
a588c1
a588c1
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.4.2-7
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a588c1
a588c1
* Thu Feb 03 2011 Caolán McNamara <caolanm@redhat.com> - 4.4.2-6
a588c1
- Resolves: rhbz#674328 more ways that freeserif crashes libicu
a588c1
a588c1
* Wed Feb 02 2011 Caolán McNamara <caolanm@redhat.com> - 4.4.2-5
a588c1
- Resolves: rhbz#674328 freeserif crashes libicu
a588c1
a588c1
* Thu Jan 13 2011 Caolán McNamara <caolanm@redhat.com> - 4.4.2-4
a588c1
- Resolves: rhbz#669237 strip libicudata
a588c1
a588c1
* Mon Nov 29 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.2-3
a588c1
- Resolves: rhbz#657964 icu-config bindir returns sbindir
a588c1
a588c1
* Thu Nov 25 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.2-2
a588c1
- Resolves: rhbz#654200 revert icu#5431
a588c1
a588c1
* Mon Oct 04 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.2-1
a588c1
- latest version
a588c1
a588c1
* Wed Sep 29 2010 jkeating - 4.4.1-6
a588c1
- Rebuilt for gcc bug 634757
a588c1
a588c1
* Wed Sep 22 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-5
a588c1
- upstream patches
a588c1
a588c1
* Thu Sep 09 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-4
a588c1
- Resolves: rhbz#631403 doxygen no longer generates gifs
a588c1
a588c1
* Thu Jul 08 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-3
a588c1
- move licences into libicu, and add them into the -doc subpackage
a588c1
  as well
a588c1
a588c1
* Wed May 26 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-2
a588c1
- Resolves: rhbz#596171 drop icu.icu6284.strictalias.patch and use
a588c1
  -fno-strict-aliasig as upstream has added a pile more and doesn't look
a588c1
  interested in proposed patchs
a588c1
a588c1
* Thu Apr 29 2010 Caolán McNamara <caolanm@redhat.com> - 4.4.1-1
a588c1
- latest version
a588c1
- drop integrated icu.icu7567.libctest.patch
a588c1
a588c1
* Fri Apr 02 2010 Caolán McNamara <caolanm@redhat.com> - 4.4-1
a588c1
- latest version
a588c1
- drop integrated icu.6969.pkgdata.patch
a588c1
- drop integrated icu.icu7039.badextract.patch
a588c1
- drop integrated icu.XXXX.buildfix.patch
a588c1
a588c1
* Wed Dec 02 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-8
a588c1
- Resolves: rhbz#543386 update icu-config
a588c1
a588c1
* Thu Nov 19 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-7
a588c1
- Fix FTBFS with yet another autoconf version that changes
a588c1
  behaviour
a588c1
a588c1
* Mon Aug 31 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-6
a588c1
- Resolves: rhbz#520468 fix s390x and other secondary archs
a588c1
a588c1
* Tue Jul 28 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-5
a588c1
- icu#7039 fix broken use of extract to get tests working
a588c1
a588c1
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.1-4
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a588c1
a588c1
* Wed Jul 22 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-3
a588c1
- make documentation noarch
a588c1
a588c1
* Tue Jul 14 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-2
a588c1
- rpmlint warnings
a588c1
a588c1
* Fri Jul 03 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.1-1
a588c1
- 4.2.1 release
a588c1
a588c1
* Fri Jun 26 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.0.1-3
a588c1
- Resolves: rhbz#508288 multilib conflict
a588c1
a588c1
* Thu Jun 11 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.0.1-2
a588c1
- Resolves: rhbz#505252 add icu.6995.kannada.patch
a588c1
a588c1
* Mon Jun 08 2009 Caolán McNamara <caolanm@redhat.com> - 4.2.0.1-1
a588c1
- 4.2.0.1 release
a588c1
a588c1
* Sat May 09 2009 Caolán McNamara <caolanm@redhat.com> - 4.2-1
a588c1
- 4.2 release
a588c1
a588c1
* Sun May 03 2009 Caolán McNamara <caolanm@redhat.com> - 4.2-0.1.d03
a588c1
- 4.2 release candidate
a588c1
- drop resolved icu.icu6008.arm.padding.patch
a588c1
- drop resolved icu.icu6439.bare.elif.patch
a588c1
a588c1
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.1-3
a588c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
a588c1
a588c1
* Tue Feb 03 2009 Caolán McNamara <caolanm@redhat.com> - 4.0.1-2
a588c1
- fix bare elif for gcc-4.4
a588c1
a588c1
* Fri Jan 16 2009 Caolán McNamara <caolanm@redhat.com> - 4.0.1-1
a588c1
- 4.0.1 release
a588c1
a588c1
* Mon Dec 29 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-6
a588c1
- Resolves rhbz#225896 clean up low hanging rpmlint warnings
a588c1
a588c1
* Tue Dec 16 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-5
a588c1
- drop integrated icu.icu5557.safety.patch
a588c1
a588c1
* Thu Nov 20 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-4
a588c1
- annoyingly upstream tarball was repacked apparently to remove 
a588c1
  some unused/cached dirs
a588c1
a588c1
* Sat Sep 06 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-3
a588c1
- Resolves: rhbz#461348 wrong icu-config
a588c1
a588c1
* Tue Aug 26 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-2
a588c1
- Resolves: rhbz#459698 drop Malayalam patches. Note test with Rachana/Meera
a588c1
  instead of Lohit Malayalam before filing bugs against icu wrt.
a588c1
  Malayalam rendering
a588c1
a588c1
* Sat Jul 05 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-1
a588c1
- final release
a588c1
a588c1
* Mon Jun 30 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-0.3.d03
a588c1
- 4.0 release candidate
a588c1
a588c1
* Wed Jun 04 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-0.2.d02
a588c1
- drop icu.icu5498.openoffice.org.patch
a588c1
a588c1
* Sat May 31 2008 Caolán McNamara <caolanm@redhat.com> - 4.0-0.1.d02
a588c1
- 4.0 release candidate
a588c1
- drop integrated icu.regexp.patch
a588c1
a588c1
* Mon May 19 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-8
a588c1
- add icu.icu6284.strictalias.patch and build with 
a588c1
  strict-aliasing
a588c1
a588c1
* Tue Mar 18 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-7
a588c1
- Resolves: rhbz#437761 modify to icu.icu6213.worstcase.patch for
a588c1
  other worst case expansions
a588c1
a588c1
* Mon Mar 17 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-6
a588c1
- Resolves: rhbz#437761 add icu.icu6213.bengali.worstcase.patch
a588c1
a588c1
* Mon Feb 04 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-5
a588c1
- Resolves: rhbz#431401 split syllables on 1st 0d4d of a 0d4d + 
a588c1
  (>= 0d15 && <= 0d39) + 0d4d + 0d30 sequence
a588c1
a588c1
* Thu Jan 31 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-4
a588c1
- Resolves: rhbz#431029, rhbz#424661 Remove workaround for 0D31 characters
a588c1
a588c1
* Fri Jan 25 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-3
a588c1
- CVE-2007-4770 CVE-2007-4771 add icu.regexp.patch
a588c1
- Resolves: rhbz#423211 fix malalayam stuff in light of syllable
a588c1
  changes
a588c1
a588c1
* Fri Jan 11 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-2
a588c1
- remove icu.icu5365.dependantvowels.patch and cleanup
a588c1
  icu.icu5506.multiplevowels.patch as they patch and unpatch 
a588c1
  eachother (thanks George Rhoten for pointing out that madness)
a588c1
a588c1
* Fri Jan 11 2008 Caolán McNamara <caolanm@redhat.com> - 3.8.1-1
a588c1
- latest version
a588c1
- drop fixed icu.icu6084.zwnj.notdef.patch
a588c1
a588c1
* Thu Dec 13 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-6
a588c1
- Resolves: rhbz#423211 experimental hack for 0d15+0d4d+0d30
a588c1
a588c1
* Tue Dec 11 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-5
a588c1
- Resolves: rhbz#415541 icu.icu6084.zwnj.notdef.patch
a588c1
a588c1
* Wed Nov 28 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-4
a588c1
- Resolves: ooo#83991 Malayalam "Kartika" font fix
a588c1
a588c1
* Tue Nov 13 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-3
a588c1
- add icu.openoffice.org.patch
a588c1
a588c1
* Sat Oct 27 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-2
a588c1
- add icu.icu6008.arm.padding.patch to fix an arm problem
a588c1
a588c1
* Tue Oct 02 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-1
a588c1
- latest version
a588c1
a588c1
* Mon Sep 03 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-0.2.d02
a588c1
- next release candidate
a588c1
a588c1
* Wed Aug 29 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-0.2.d01
a588c1
- rebuild
a588c1
a588c1
* Tue Aug 07 2007 Caolán McNamara <caolanm@redhat.com> - 3.8-0.1.d01
a588c1
- 3.8 release candidate
a588c1
- drop integrated icu.icu5433.oriya.patch
a588c1
- drop integrated icu.icu5488.assamese.patch
a588c1
- drop integrated icu.icu5500.devicetablecrash.patch
a588c1
- drop integrated icu.icu5501.sinhala.biggerexpand.patch
a588c1
- drop integrated icu.icu5594.gujarati.patch
a588c1
- drop integrated icu.icu5465.telegu.patch
a588c1
a588c1
* Wed Jun 13 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-20
a588c1
- Resolves: rhbz#243984 change the icu group as it is libicu 
a588c1
  which is "System Environment/Libraries" not icu
a588c1
a588c1
* Mon Apr 30 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-19
a588c1
- Resolves: rhbz#220867 Malayalam rendering
a588c1
a588c1
* Tue Feb 13 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-18
a588c1
- Resolves: rhbz#228457 icu.icu5594.gujarati.patch
a588c1
a588c1
* Fri Feb 09 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-17
a588c1
- spec cleanups
a588c1
a588c1
* Mon Feb 05 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-16
a588c1
- Resolves: rhbz#226949 layout telegu like pango
a588c1
a588c1
* Fri Jan 19 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-15
a588c1
- Resolves: rhbz#214948 icu.icu5506.multiplevowels.patch
a588c1
a588c1
* Tue Jan 09 2007 Caolán McNamara <caolanm@redhat.com> - 3.6-14
a588c1
- Related: rhbz#216089 add icu.icu5557.safety.patch
a588c1
a588c1
* Thu Dec 21 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-13
a588c1
- Resolves: rhbz#220433 modify icu.icu5431.malayam.patch
a588c1
a588c1
* Fri Nov 10 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-12
a588c1
- Resolves: rhbz#214948 icu.icu5506.multiplevowels.patch
a588c1
a588c1
* Wed Nov 08 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-11
a588c1
- Resolves: rhbz#214555 icu.icu5501.sinhala.biggerexpand.patch
a588c1
a588c1
* Wed Nov 08 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-10
a588c1
- Resolves: rhbz#214555 icu.icu5500.devicetablecrash.patch
a588c1
a588c1
* Wed Oct 18 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-9
a588c1
- Resolves: rhbz#213648 extend prev/next to handle ZWJ
a588c1
a588c1
* Wed Oct 18 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-8
a588c1
- Resolves: rhbz213375 (icu.icu5488.assamese.patch)
a588c1
a588c1
* Wed Oct 18 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-7
a588c1
- Resolves: rhbz#211258 (icu.icu5465.telegu.patch)
a588c1
a588c1
* Thu Oct 05 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-6
a588c1
- rh#209391# add icu.icuXXXX.virama.prevnext.patch
a588c1
a588c1
* Mon Oct 02 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-5
a588c1
- rh#208705# add pkg-config Require for -devel package
a588c1
- add icu.icu5431.malayam.patch for rh#208551#/rh#209084#
a588c1
- add icu.icu5433.oriya.patch for rh#208559#/rh#209083#
a588c1
a588c1
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 3.6-4
a588c1
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
a588c1
a588c1
* Mon Sep 25 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-3
a588c1
- rh#206615# render malayam like pango
a588c1
a588c1
* Wed Sep 06 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-2
a588c1
- fix rh#205252#/icu#5365 (gnome#121882#/#icu#4026#) to make icu 
a588c1
  like pango for multiple dependant vowels
a588c1
a588c1
* Sun Sep 03 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-1
a588c1
- final release
a588c1
a588c1
* Mon Aug 14 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-0.1.d02
a588c1
- bump
a588c1
a588c1
* Tue Aug 08 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-0.2.d01
a588c1
- c++ code not alias correct
a588c1
a588c1
* Mon Jul 31 2006 Caolán McNamara <caolanm@redhat.com> - 3.6-0.1.d01
a588c1
- rh#200728# update to prelease 3.6d01 to pick up on sinhala fixes
a588c1
- drop integrated rh190879.patch
a588c1
- drop integrated icu-3.4-sinhala1.patch
a588c1
a588c1
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.4-10.1.1
a588c1
- rebuild
a588c1
a588c1
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.4-10.1
a588c1
- rebuild
a588c1
a588c1
* Sat Jun 10 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-10
a588c1
- rh#194686# BuildRequires
a588c1
a588c1
* Tue May 09 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-9
a588c1
- rh#190879# backport fix
a588c1
a588c1
* Wed May 03 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-8
a588c1
- add Harshula's icu-3.4-sinhala1.patch for some Sinhala support
a588c1
a588c1
* Tue May 02 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-7
a588c1
- add a pkgconfig.pc, make icu-config use it
a588c1
a588c1
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.4-6.2
a588c1
- bump again for double-long bug on ppc(64)
a588c1
a588c1
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.4-6.1
a588c1
- rebuilt for new gcc4.1 snapshot and glibc changes
a588c1
a588c1
* Tue Jan 03 2006 Caolán McNamara <caolanm@redhat.com> - 3.4-6
a588c1
- add icu-gcc41.patch
a588c1
a588c1
* Tue Oct 11 2005 Caolán McNamara <caolanm@redhat.com> - 3.4-5
a588c1
- clear execstack requirement for libicudata
a588c1
a588c1
* Mon Sep 12 2005 Caolán McNamara <caolanm@redhat.com> - 3.4-4
a588c1
- import extra icu.spec into fedora core for openoffice.org
a588c1
- build with gcc 4
a588c1
a588c1
* Wed Aug 31 2005 Thorsten Leemhuis <fedora at leemhuis.info> - 3.4-3
a588c1
- Use dist
a588c1
- gcc32 does not understand -fstack-protector and 
a588c1
  --param=ssp-buffer-size=4
a588c1
a588c1
* Tue Aug  2 2005 Ville Skyttä <ville.skytta at iki.fi> - 3.4-2
a588c1
- 3.4.
a588c1
a588c1
* Sun Jul 31 2005 Ville Skyttä <ville.skytta at iki.fi> - 3.4-0.2.d02
a588c1
- 3.4-d02.
a588c1
- Don't ship static libraries.
a588c1
a588c1
* Wed Apr 27 2005 Ville Skyttä <ville.skytta at iki.fi> - 3.2-3
a588c1
- Apply upstream case mapping mutex lock removal patch.
a588c1
- Build with gcc 3.2 as a temporary workaround for #152495.
a588c1
a588c1
* Thu Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 3.2-2
a588c1
- rebuilt
a588c1
a588c1
* Sat Jan  1 2005 Ville Skyttä <ville.skytta at iki.fi> - 3.2-1
a588c1
- Don't use %%{_smp_mflags} (b.f.u #2357).
a588c1
- Remove unnecessary Epochs.
a588c1
a588c1
* Sat Dec  4 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:3.2-0.fdr.1
a588c1
- Update to 3.2.
a588c1
a588c1
* Sun Jul 18 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:3.0-0.fdr.1
a588c1
- Update to 3.0, datadirs patch no longer needed.
a588c1
- Package data in shared libs, drop -locales subpackage.
a588c1
- Rename -docs subpackage to libicu-doc, and generate graphs with graphviz.
a588c1
a588c1
* Sat Dec 13 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.6.1-0.fdr.3
a588c1
- Partial fix for bad datadirs returned by icu-config (works as long as
a588c1
  data packaging mode is not "common" or "dll").
a588c1
a588c1
* Sun Nov 23 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.6.1-0.fdr.2
a588c1
- First complete version.
a588c1
a588c1
* Sun Sep 28 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.6.1-0.fdr.1
a588c1
- Update to 2.6.1.
a588c1
a588c1
* Wed Aug 27 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.6-0.fdr.1
a588c1
- First build, based on upstream and SuSE 8.2 packages.