Blame SPECS/fontconfig.spec

24ea22
# ifdef'd in source code but runtime dep will be made for FT_Done_MM_Var symbol in freetype-2.9.1
24ea22
# so update the build deps as well to keep deps consistency between runtime and build time.
24ea22
%global freetype_version 2.9.1
24ea22
24ea22
Summary:	Font configuration and customization library
24ea22
Name:		fontconfig
cef580
Version:	2.14.0
cef580
Release:	1%{?dist}
24ea22
# src/ftglue.[ch] is in Public Domain
24ea22
# src/fccache.c contains Public Domain code
24ea22
# fc-case/CaseFolding.txt is in the UCD
24ea22
# otherwise MIT
24ea22
License:	MIT and Public Domain and UCD
24ea22
Source:		http://fontconfig.org/release/%{name}-%{version}.tar.xz
24ea22
URL:		http://fontconfig.org
24ea22
Source1:	25-no-bitmap-fedora.conf
24ea22
Source2:	fc-cache
24ea22
24ea22
# https://bugzilla.redhat.com/show_bug.cgi?id=140335
24ea22
Patch0:		%{name}-sleep-less.patch
24ea22
Patch4:		%{name}-drop-lang-from-pkgkit-format.patch
24ea22
Patch5:		%{name}-disable-network-required-test.patch
cef580
Patch6:		%{name}-revert-noto-default.patch
24ea22
24ea22
BuildRequires:	libxml2-devel
24ea22
BuildRequires:	freetype-devel >= %{freetype_version}
24ea22
BuildRequires:	fontpackages-devel
24ea22
BuildRequires:	autoconf automake libtool gettext
24ea22
BuildRequires:	gperf
24ea22
BuildRequires:  docbook-utils docbook-utils-pdf
24ea22
BuildRequires: make
24ea22
24ea22
Requires:	fonts-filesystem freetype
24ea22
# Register DTD system-wide to make validation work by default
24ea22
# (used by fonts-rpm-macros)
24ea22
Requires(pre):    xml-common
24ea22
Requires(postun): xml-common
24ea22
PreReq:		freetype >= 2.9.1-6
24ea22
Requires(post):	grep coreutils
24ea22
Requires:	font(:lang=en)
24ea22
Suggests:	font(dejavusans)
24ea22
24ea22
%description
24ea22
Fontconfig is designed to locate fonts within the
24ea22
system and select them according to requirements specified by 
24ea22
applications.
24ea22
24ea22
%package	devel
24ea22
Summary:	Font configuration and customization library
24ea22
Requires:	%{name}%{?_isa} = %{version}-%{release}
24ea22
Requires:	freetype-devel >= %{freetype_version}
24ea22
Requires:	pkgconfig
24ea22
Requires:	gettext
24ea22
24ea22
%description	devel
24ea22
The fontconfig-devel package includes the header files,
24ea22
and developer docs for the fontconfig package.
24ea22
24ea22
Install fontconfig-devel if you want to develop programs which 
24ea22
will use fontconfig.
24ea22
24ea22
%package	devel-doc
24ea22
Summary:	Development Documentation files for fontconfig library
24ea22
BuildArch:	noarch
24ea22
Requires:	%{name}-devel = %{version}-%{release}
24ea22
24ea22
%description	devel-doc
24ea22
The fontconfig-devel-doc package contains the documentation files
24ea22
which is useful for developing applications that uses fontconfig.
24ea22
24ea22
%prep
24ea22
%autosetup -p1
24ea22
24ea22
%build
24ea22
# We don't want to rebuild the docs, but we want to install the included ones.
24ea22
export HASDOCBOOK=no
24ea22
24ea22
for i in doc/*.fncs; do
24ea22
  touch -r $i ${i//.fncs/.sgml}
24ea22
done
24ea22
autoreconf
24ea22
%configure	--with-add-fonts=/usr/share/X11/fonts/Type1,/usr/share/X11/fonts/TTF,/usr/local/share/fonts \
24ea22
		--enable-libxml2 \
24ea22
		--disable-static --with-cache-dir=/usr/lib/fontconfig/cache
24ea22
24ea22
make %{?_smp_mflags}
24ea22
24ea22
%install
24ea22
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
24ea22
24ea22
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
24ea22
24ea22
install -p -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/fonts/conf.d
24ea22
ln -s %{_fontconfig_templatedir}/25-unhint-nonlatin.conf $RPM_BUILD_ROOT%{_fontconfig_confdir}/
24ea22
24ea22
# move installed doc files back to build directory to package them
24ea22
# in the right place
24ea22
mv $RPM_BUILD_ROOT%{_docdir}/fontconfig/* .
24ea22
rmdir $RPM_BUILD_ROOT%{_docdir}/fontconfig/
24ea22
24ea22
# adjust the timestamp to avoid conflicts for multilib
24ea22
touch -r doc/fontconfig-user.sgml fontconfig-user.txt
24ea22
touch -r doc/fontconfig-user.sgml fontconfig-user.html
24ea22
24ea22
# rename fc-cache binary
24ea22
mv $RPM_BUILD_ROOT%{_bindir}/fc-cache $RPM_BUILD_ROOT%{_bindir}/fc-cache-%{__isa_bits}
24ea22
24ea22
# create link to man page
24ea22
echo ".so man1/fc-cache.1" > $RPM_BUILD_ROOT%{_mandir}/man1/fc-cache-%{__isa_bits}.1
24ea22
24ea22
install -p -m 0755 %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}/fc-cache
24ea22
24ea22
%find_lang %{name}
24ea22
%find_lang %{name}-conf
24ea22
cat %{name}-conf.lang >> %{name}.lang
24ea22
24ea22
%check
24ea22
VERBOSE=1 make check
24ea22
24ea22
%post
24ea22
umask 0022
24ea22
24ea22
mkdir -p /usr/lib/fontconfig/cache
24ea22
24ea22
[[ -d %{_localstatedir}/cache/fontconfig ]] && rm -rf %{_localstatedir}/cache/fontconfig/* 2> /dev/null || :
24ea22
24ea22
# Force regeneration of all fontconfig cache files
24ea22
# The check for existance is needed on dual-arch installs (the second
24ea22
#  copy of fontconfig might install the binary instead of the first)
24ea22
# The HOME setting is to avoid problems if HOME hasn't been reset
24ea22
if [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache --version 2>&1 | grep -q %{version} ; then
24ea22
  HOME=/root /usr/bin/fc-cache -f
24ea22
fi
24ea22
24ea22
%transfiletriggerin -- /usr/share/fonts /usr/share/X11/fonts/Type1 /usr/share/X11/fonts/TTF /usr/local/share/fonts
24ea22
HOME=/root /usr/bin/fc-cache -s
24ea22
24ea22
%transfiletriggerpostun -- /usr/share/fonts /usr/share/X11/fonts/Type1 /usr/share/X11/fonts/TTF /usr/local/share/fonts
24ea22
HOME=/root /usr/bin/fc-cache -s
24ea22
24ea22
%posttrans
24ea22
if [ -e %{_sysconfdir}/xml/catalog ]; then
24ea22
  %{_bindir}/xmlcatalog --noout --add system \
24ea22
                        "urn:fontconfig:fonts.dtd" \
24ea22
                        "file://%{_datadir}/xml/fontconfig/fonts.dtd" \
24ea22
                        %{_sysconfdir}/xml/catalog
24ea22
fi
24ea22
24ea22
%postun
24ea22
if [ $1 == 0 ] && [ -e %{_sysconfdir}/xml/catalog ]; then
24ea22
  %{_bindir}/xmlcatalog --noout --del "urn:fontconfig:fonts.dtd" %{_sysconfdir}/xml/catalog
24ea22
fi
24ea22
24ea22
%files -f %{name}.lang
24ea22
%doc README AUTHORS
24ea22
%doc fontconfig-user.txt fontconfig-user.html
24ea22
%doc %{_fontconfig_confdir}/README
24ea22
%license COPYING
24ea22
%{_libdir}/libfontconfig.so.*
24ea22
%{_bindir}/fc-cache*
24ea22
%{_bindir}/fc-cat
24ea22
%{_bindir}/fc-conflist
24ea22
%{_bindir}/fc-list
24ea22
%{_bindir}/fc-match
24ea22
%{_bindir}/fc-pattern
24ea22
%{_bindir}/fc-query
24ea22
%{_bindir}/fc-scan
24ea22
%{_bindir}/fc-validate
24ea22
%{_fontconfig_templatedir}/*.conf
24ea22
%{_datadir}/xml/fontconfig
24ea22
# fonts.conf is not supposed to be modified.
24ea22
# If you want to do so, you should use local.conf instead.
24ea22
%config %{_fontconfig_masterdir}/fonts.conf
24ea22
%config(noreplace) %{_fontconfig_confdir}/*.conf
24ea22
%dir /usr/lib/fontconfig/cache
24ea22
%{_mandir}/man1/*
24ea22
%{_mandir}/man5/*
24ea22
24ea22
%files devel
24ea22
%{_libdir}/libfontconfig.so
24ea22
%{_libdir}/pkgconfig/*
24ea22
%{_includedir}/fontconfig
24ea22
%{_mandir}/man3/*
24ea22
%{_datadir}/gettext/its/fontconfig.its
24ea22
%{_datadir}/gettext/its/fontconfig.loc
24ea22
24ea22
%files devel-doc
24ea22
%doc fontconfig-devel.txt fontconfig-devel
24ea22
24ea22
%changelog
cef580
* Thu Mar 31 2022 Akira TAGOH <tagoh@redhat.com> - 2.14.0-1
cef580
- New upstream release.
cef580
- Rebase to 2.14 and revert Noto Default change happened in f36.
cef580
  Resolves: rhbz#2075393
cef580
cef580
* Fri Feb  4 2022 Akira TAGOH <tagoh@redhat.com> - 2.13.96-1
cef580
- New upstream release.
cef580
- Fix missing a file in the archive.
cef580
  Resolves: rhbz#2050478
cef580
cef580
* Tue Feb  1 2022 Akira TAGOH <tagoh@redhat.com> - 2.13.95-1
cef580
- New upstream release.
cef580
- Update deps to font(notosans)
cef580
  https://fedoraproject.org/wiki/Changes/DefaultToNotoFonts
cef580
cef580
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.94-4
cef580
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
cef580
cef580
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.94-3
cef580
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
cef580
142473
* Tue Jul 20 2021 Akira TAGOH <tagoh@redhat.com> - 2.13.94-2
142473
- Fix the score calculation on matching for multiple values.
142473
- Enable 11-lcdfilter-default.conf.
142473
  Resolves: rhbz#1965684
142473
- Rebase to the latest release.
142473
  Resolves: rhbz#2023161
142473
cef580
* Tue Jun 29 2021 Akira TAGOH <tagoh@redhat.com> - 2.13.94-1
142473
- New upstream release.
24ea22
24ea22
* Thu Mar 25 2021 Akira TAGOH <tagoh@redhat.com> - 2.13.93-6
24ea22
- Fix postun scriptlet to remove the entry from xml catalog.
24ea22
24ea22
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.93-5
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
24ea22
24ea22
* Wed Dec 23 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.93-4
24ea22
- cherry pick some upstream patches
24ea22
  - Skip leading white space in style.
24ea22
  - Remove abort from FcCompareSize.
24ea22
  - Fix memory leaks
24ea22
  - Check qual and compare for family tests.
24ea22
- 
24ea22
* Thu Dec  3 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.93-3
24ea22
- Add back fullname property at the scan matching phase for the backward compatibility.
24ea22
  Resolves: rhbz#1902881
24ea22
24ea22
* Mon Nov 30 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.93-2
24ea22
- Fix file conflicts.
24ea22
24ea22
* Sat Nov 28 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.93-1
24ea22
- New upstream release.
24ea22
24ea22
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.92-12
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
24ea22
24ea22
* Thu Apr 23 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.92-11
24ea22
- deal with system caches as always latest on Silverblue. (#1750891)
24ea22
24ea22
* Thu Apr 02 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.92-10
24ea22
- Build against libxml2 instead of expat.
24ea22
24ea22
* Sat Mar 28 2020 Nicolas Mailhot <nim@fedoraproject.org> - 2.13.92-9
24ea22
- Fix DTD declaration and registration so users and Fedora automation can
24ea22
  easily validate new configuration files
24ea22
24ea22
* Mon Mar 23 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.92-8
24ea22
- Fix assertion in FcCacheFini() again.
24ea22
  Resolves: rhbz#1815684
24ea22
24ea22
* Wed Feb 26 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.92-7
24ea22
- Fix assertion in FcCacheFini().
24ea22
24ea22
* Thu Jan 30 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.92-6
24ea22
- Fix some wrong behavior with sysroot option.
24ea22
- Fix reading the outdated caches.
24ea22
- Apply a patch to make it MT-safe more.
24ea22
24ea22
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.92-5
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
24ea22
24ea22
* Mon Jan 20 2020 Akira TAGOH <tagoh@redhat.com> - 2.13.92-4
24ea22
- Drop font(:lang=...) from %%{=pkgkit} format.
24ea22
  Reference: rhbz#1792463
24ea22
24ea22
* Wed Aug 28 2019 Akira TAGOH <tagoh@redhat.com> - 2.13.92-3
24ea22
- Do not return false on FcConfigParseAndLoad*() if complain is set to false.
24ea22
  Resolves: rhbz#1744377
24ea22
24ea22
* Fri Aug  9 2019 Akira TAGOH <tagoh@redhat.com> - 2.13.92-2
24ea22
- Fix to affect fonthashint property for score on match.
24ea22
24ea22
* Fri Aug  9 2019 Akira TAGOH <tagoh@redhat.com> - 2.13.92-1
24ea22
- New upstream release.
24ea22
24ea22
* Wed Jul 31 2019 Akira TAGOH <tagoh@redhat.com> - 2.13.91-4
24ea22
- Fix make check fails.
24ea22
24ea22
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.91-3
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
24ea22
24ea22
* Sun Jun 16 2019 Tim Landscheidt <tim@tim-landscheidt.de> - 2.13.91-2
24ea22
- Remove calls to ldconfig from scriptlets
24ea22
- Use "PreReq" instead of "Requires(pre)" for freetype
24ea22
24ea22
* Mon Jun 10 2019 Akira TAGOH <tagoh@redhat.com> - 2.13.91-1
24ea22
- New upstream release.
24ea22
24ea22
* Fri Feb 22 2019 Akira TAGOH <tagoh@redhat.com> - 2.13.1-6
24ea22
- Update freetype version for runtime dependency to ensure
24ea22
  they have FT_Done_MM_Var symbol certainly. (#1679619)
24ea22
24ea22
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.1-5
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
24ea22
24ea22
* Tue Nov 13 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.1-4
24ea22
- Use Rachana instead of Meera for serif subsitution. (#1649184)
24ea22
24ea22
* Wed Nov 07 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.1-3
24ea22
- Stop cleaning up .uuid file even when a directory is empty.
24ea22
24ea22
* Wed Sep 26 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.1-2
24ea22
- Add man page for fc-cache-* links to fc-cache.
24ea22
- Drop unnecessary BR.
24ea22
24ea22
* Thu Aug 30 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.1-1
24ea22
- New upstream release.
24ea22
24ea22
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.0-8
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
24ea22
24ea22
* Fri Jun 29 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-7
24ea22
- Use ldconfig rpm macro.
24ea22
24ea22
* Thu Jun 07 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-6
24ea22
- Add Suggests: dejavu-sans-fonts to address pulling the unpredicted
24ea22
  font package as dependency. (#1321551)
24ea22
24ea22
* Wed Jun 06 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-5
24ea22
- Update the version deps of freetype to resolve FT_Done_MM_Var symbol. (#1579464)
24ea22
24ea22
* Fri May 11 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-4
24ea22
- Fix the emboldening logic. (#1575649)
24ea22
24ea22
* Thu Mar 15 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-3
24ea22
- Another fix to accept the const names in param.
24ea22
- Fix locale issue.
24ea22
24ea22
* Mon Mar 12 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-2
24ea22
- Allow the const names in the range.
24ea22
24ea22
* Tue Mar 06 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-1
24ea22
- New upstream release.
24ea22
24ea22
* Thu Feb 15 2018 Akira TAGOH <tagoh@redhat.com> - 2.12.93-1
24ea22
- New upstream release.
24ea22
24ea22
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.12.92-2
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
24ea22
24ea22
* Thu Jan  4 2018 Akira TAGOH <tagoh@redhat.com> - 2.12.92-1
24ea22
- New upstream release.
24ea22
- Fix the mis-ordering of evaluating config. (#1530211)
24ea22
24ea22
* Sat Dec 23 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.91-2
24ea22
- Fix crash (#1528706)
24ea22
24ea22
* Thu Dec 14 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.91-1
24ea22
- New upstream release.
24ea22
24ea22
* Wed Nov  8 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-4
24ea22
- Remove the debug print in fc-query. (#1509790)
24ea22
24ea22
* Thu Oct  5 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-3
24ea22
- Backport a patch to change the order of the emoji fonts. (#1496761)
24ea22
24ea22
* Tue Oct  3 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-2
24ea22
- Bump the release to address the upgrade path issue.
24ea22
24ea22
* Thu Sep 21 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-1
24ea22
- New upstream release.
24ea22
24ea22
* Sat Sep  9 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.5-1
24ea22
- New upstream release.
24ea22
24ea22
* Mon Jul 31 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.4-4
24ea22
- Fix exiting with 1 on 32bit arch. (#1476831)
24ea22
24ea22
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.12.4-3
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
24ea22
24ea22
* Mon Jul 24 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.4-2
24ea22
- Allow installing 32/64 bit version of fc-cache at the same time. (#1474257)
24ea22
- Add fc-cache script to invoke both version of fc-cache if available.
24ea22
24ea22
* Wed Jul  5 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.4-1
24ea22
- New upstream release.
24ea22
24ea22
* Wed May 31 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.3-1
24ea22
- New upstream release.
24ea22
24ea22
* Thu Feb 23 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.1-4
24ea22
- Move the cache files into /usr/lib/fontconfig/cache (#1377367, #1416380)
24ea22
24ea22
* Wed Feb 22 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.1-3
24ea22
- Fix FTBFS (#1423570)
24ea22
24ea22
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.12.1-2
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
24ea22
24ea22
* Fri Aug  5 2016 Akira TAGOH <tagoh@redhat.com> - 2.12.1-1
24ea22
- New upstream release.
24ea22
24ea22
* Wed Jun 15 2016 Akira TAGOH <tagoh@redhat.com> - 2.12.0-1
24ea22
- New upstream release.
24ea22
24ea22
* Tue Apr 12 2016 Akira TAGOH <tagoh@redhat.com> - 2.11.95-1
24ea22
- New upstream release. (#1325560)
24ea22
24ea22
* Mon Mar 28 2016 Akira TAGOH <tagoh@redhat.com> - 2.11.94-7
24ea22
- Add Requires: freetype.
24ea22
24ea22
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.94-6
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
24ea22
24ea22
* Mon Sep  7 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-5
24ea22
- Add file triggers for fonts.
24ea22
24ea22
* Fri Aug 14 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-4
24ea22
- Revise the patch. (#1236034)
24ea22
24ea22
* Wed Aug 12 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-3
24ea22
- Lock the cache file until scanning and writing finished. (#1236034)
24ea22
24ea22
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.94-2
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
24ea22
24ea22
* Tue Jun  2 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-1
24ea22
- New upstream release.
24ea22
  - Fix bitmap scaling. (#1187528, #1226433, 1226522, #1226722)
24ea22
24ea22
* Mon Mar 30 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.93-2
24ea22
- Fix SIGFPE (#1203118)
24ea22
24ea22
* Mon Mar  9 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.93-1
24ea22
- New upstream release.
24ea22
24ea22
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.11.92-2
24ea22
- Rebuilt for Fedora 23 Change
24ea22
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
24ea22
24ea22
* Tue Jan 13 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.92-1
24ea22
- New upstream release.
24ea22
24ea22
* Thu Dec 25 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.91-1
24ea22
- New upstream release.
24ea22
24ea22
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.1-5
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
24ea22
24ea22
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.1-4
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
24ea22
24ea22
* Thu Jun  5 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.1-3
24ea22
- Workaround that the cache isn't updated properly. (#921706)
24ea22
24ea22
* Fri Apr 11 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.1-2
24ea22
- Fix failing on updating cache with --really-force.
24ea22
24ea22
* Mon Mar 24 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.1-1
24ea22
- New upstream release.
24ea22
24ea22
* Fri Jan 24 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.0-2
24ea22
- Add Requires: font(:lang=en) (#1025331, #845712)
24ea22
24ea22
* Fri Oct 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.11.0-1
24ea22
- New upstream release.
24ea22
24ea22
* Fri Sep 13 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-4
24ea22
- Fix memory leaks in FcFreeTypeQueryFace().
24ea22
24ea22
* Mon Sep  2 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-3
24ea22
- Do not create a directory for migration when no old config file and directory.
24ea22
  (#1003495)
24ea22
24ea22
* Sat Aug 31 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-1
24ea22
- Fix a crash issue (#1003069)
24ea22
24ea22
* Fri Aug 30 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.94-1
24ea22
- New upstream release.
24ea22
- migrate the configuration for XDG Base Directory spec automatically (#882267)
24ea22
24ea22
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.93-2
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
24ea22
24ea22
* Mon May 20 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.93-1
24ea22
- New upstream release.
24ea22
24ea22
* Thu Apr 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-3
24ea22
- Fix a web font issue in firefox. (#946859)
24ea22
24ea22
* Mon Apr  1 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-2
24ea22
- Fix font matching issue. (#929372)
24ea22
24ea22
* Fri Mar 29 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-1
24ea22
- New upstream release.
24ea22
24ea22
* Tue Feb 12 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.91-3
24ea22
- Improve the spec to meet the latest packaging guidelines (#225759)
24ea22
  - add -devel-doc subpackage.
24ea22
- Fix a build issue with automake 1.13
24ea22
24ea22
* Fri Feb  8 2013 Ville Skyttä <ville.skytta@iki.fi> - 2.10.91-2
24ea22
- Own the %%{_datadir}/xml/fontconfig dir.
24ea22
- Fix bogus dates in %%changelog.
24ea22
24ea22
* Fri Jan 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.91-1
24ea22
- New upstream release (#894109)
24ea22
  - threadsafe
24ea22
  - new tool to validate the glyph coverage
24ea22
  - add new rule to scale the bitmap font.
24ea22
24ea22
* Mon Nov 26 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.2-1
24ea22
- New upstream release.
24ea22
  - Fix an regression on FcFontMatch with namelang. (#876970)
24ea22
24ea22
* Thu Oct 25 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.1-2
24ea22
- Update License field (#869614)
24ea22
24ea22
* Fri Jul 27 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.1-1
24ea22
- New upstream release.
24ea22
24ea22
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.0-2
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
24ea22
24ea22
* Tue Jul 17 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.0-1
24ea22
- New upstream release.
24ea22
24ea22
* Mon Jun 25 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.92-1
24ea22
- New upstream release.
24ea22
24ea22
* Mon Jun 11 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.91-1
24ea22
- New upstream release.
24ea22
  - docs are generated with the fixed docbook (#826145)
24ea22
  - handle whitespace in family name correctly (#468565, #591634)
24ea22
  - Updated ne.orth. (#586763)
24ea22
24ea22
* Wed May 16 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.0-2
24ea22
- Add grep and coreutils to Requires(post). (#821957)
24ea22
24ea22
* Fri Mar 23 2012 Akira TAGOH <tagoh@redhat.com>
24ea22
- backport patch to make 'result' from FcFontMatch() and FcFontSort()
24ea22
  more reliable.
24ea22
24ea22
* Wed Mar 21 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.0-1
24ea22
- New upstream release (#803559)
24ea22
  - Update ks.orth (#790471)
24ea22
  - Add brx.orth (#790460)
24ea22
  - Update ur.orth (#757985)
24ea22
  - No Apple Roman cmap support anymore. should works. (#681808)
24ea22
  - Update ne.orth (#586763)
24ea22
  - Add a workaround for ZapfDingbats. (#562952, #497648, #468565)
24ea22
- clean up the spec file.
24ea22
- Add BR: fontpackages-devel.
24ea22
- Add R: fontpackages-filesystem.
24ea22
24ea22
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-5
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
24ea22
24ea22
* Tue May 31 2011 Adam Jackson <ajax@redhat.com> 2.8.0-4
24ea22
- fontconfig-2.8.0-dingbats.patch: Hack for dingbats font matching. (#468565)
24ea22
24ea22
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-3
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
24ea22
24ea22
* Thu Jun 24 2010 Adam Jackson <ajax@redhat.com> 2.8.0-2
24ea22
- fontconfig-2.8.0-sleep-less.patch: Make a stupid sleep() in fc-cache
24ea22
  slightly less stupid.
24ea22
24ea22
* Thu Dec  3 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.8.0-1
24ea22
- Update to 2.8.0
24ea22
24ea22
* Tue Sep  8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.3-1
24ea22
- Update to 2.7.3
24ea22
24ea22
* Mon Aug 31 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.2-1
24ea22
- Update to 2.7.2
24ea22
24ea22
* Mon Jul  27 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.1-1
24ea22
- Update to 2.7.1
24ea22
24ea22
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.0-2
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
24ea22
24ea22
* Wed Jun 24 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.0
24ea22
- Update to 2.7.0
24ea22
24ea22
* Mon Jun  1 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090601-1
24ea22
- Update to 2.6.99.behdad.20090601
24ea22
24ea22
* Fri May  8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090508-1
24ea22
- Update to 2.6.99.behdad.20090508
24ea22
- Resolves #497984
24ea22
24ea22
* Wed Mar 18 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090318-1
24ea22
- Update to 2.6.99.behdad.20090318
24ea22
- Resolves #490888
24ea22
24ea22
* Tue Mar 17 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090317-1
24ea22
- Update to 2.6.99.behdad.20090317
24ea22
- Resolves #485685
24ea22
24ea22
* Sat Mar 14 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-3
24ea22
- New tarball with version fixed in the header
24ea22
24ea22
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-2
24ea22
- Previous tarball was broken.  Rebuild with respinned ball.
24ea22
24ea22
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-1
24ea22
- Update to 2.6.99.behdad
24ea22
24ea22
* Tue Mar 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.98-1.gb39c36a
24ea22
- Update to 2.6.98-1.gb39c36a
24ea22
24ea22
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.97-5.g945d6a4
24ea22
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
24ea22
24ea22
* Mon Feb 23 2009 Nicolas Mailhot <nim at fedoraproject dot org>
24ea22
- 2.6.97-4.g945d6a4
24ea22
— global-ization
24ea22
24ea22
* Mon Feb 16 2009 Richard Hughes <rhughes@redhat.com> - 2.6.97-3.g945d6a4
24ea22
- Correct the rpm provide name to be font(), not Font().
24ea22
24ea22
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.97-2.g945d6a4
24ea22
- Another try.
24ea22
24ea22
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.97-1.g945d6a4
24ea22
- Update to 2.6.97-1.g945d6a4
24ea22
24ea22
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.96-1.g0b290a6
24ea22
- Update to 2.6.96-1.g0b290a6
24ea22
24ea22
* Tue Jan 27 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.95-1.git.66.gb162bfb
24ea22
- Update to 2.6.95-1.git.66.gb162bfb
24ea22
24ea22
* Fri Jan 23 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.94-1.git.65.g628ee83
24ea22
- Update to 2.6.94-1.git.65.g628ee83
24ea22
24ea22
* Wed Jan 21 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.93-1.git.64.g6aa4dce
24ea22
- Update to 2.6.93-1.git.64.g6aa4dce
24ea22
24ea22
* Mon Jan 19 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.92-1.git.64.g167bb82
24ea22
- Update to 2.6.92-1.git.64.g167bb82
24ea22
24ea22
* Mon Jan 19 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.91-1.git.64.g9feaf34
24ea22
- Update to 2.6.91-1.git.64.g9feaf34
24ea22
24ea22
* Fri Jan 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.90-3.git.63.g6bb4b9a
24ea22
- Install fc-scan and fc-query
24ea22
24ea22
* Fri Jan 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.90-2.git.63.g6bb4b9a
24ea22
- Update to 2.6.90-1.git.63.g6bb4b9a
24ea22
- Remove upstreamed patch
24ea22
24ea22
* Mon Oct 20 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-3
24ea22
- Add fontconfig-2.6.0-indic.patch
24ea22
- Resolves: #464470
24ea22
24ea22
* Sun Jun 01 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-2
24ea22
- Fix build.
24ea22
24ea22
* Sat May 31 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-1
24ea22
- Update to 2.6.0.
24ea22
24ea22
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.5.0-2
24ea22
- Autorebuild for GCC 4.3
24ea22
24ea22
* Wed Nov 14 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.5.0-1
24ea22
- Update to 2.5.0.
24ea22
24ea22
* Tue Nov 06 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.92-1
24ea22
- Update to 2.4.92.
24ea22
- Mark /etc/fonts/conf.d/* as config(noreplace).
24ea22
- Remove most of our conf file, all upstreamed except for
24ea22
  75-blacklist-fedora.conf that I'm happily dropping.  Who has
24ea22
  Hershey fonts these days...
24ea22
- ln upstream'ed 25-unhint-nonlatin.conf from conf.avail in conf.d
24ea22
- Add 25-no-bitmap-fedora.conf which is the tiny remaining bit
24ea22
  of conf that didn't end up upstream.  Can get rid of it in the
24ea22
  future, but not just yet.
24ea22
24ea22
* Thu Oct 25 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.91-1
24ea22
- Update to 2.4.91.
24ea22
- Add /usr/local/share/fonts to default config. (#147004)
24ea22
- Don't rebuild docs, to fix multilib conflicts. (#313011)
24ea22
- Remove docbook and elinks BuildRequires and stuff as we don't
24ea22
  rebuild docs.
24ea22
24ea22
* Wed Aug 22 2007 Adam Jackson <ajax@redhat.com> - 2.4.2-5
24ea22
- Rebuild for PPC toolchain bug
24ea22
- Add BuildRequires: gawk
24ea22
24ea22
* Sun Jun 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.4.2-4
24ea22
- /etc/fonts/conf.d is now owned by filesystem
24ea22
24ea22
* Fri May 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.4.2-3
24ea22
- Add Liberation fonts to 30-aliases-fedora.conf
24ea22
24ea22
* Fri Jan 12 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.2-2
24ea22
- Change /usr/share/X11/fonts/OTF to /usr/share/X11/fonts/TTF
24ea22
- Resolves: #220809
24ea22
24ea22
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 2.4.2-1
24ea22
- Update to 2.4.2
24ea22
24ea22
* Wed Oct  4 2006 Matthias Clasen <mclasen@redhat.com> - 2.4.1-4
24ea22
- Fix a multilib upgrade problem (#208151)
24ea22
24ea22
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.4.1-3
24ea22
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
24ea22
24ea22
* Fri Sep 22 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.1-2
24ea22
- Update 30-aliases-fedora.conf to correctly alias MS and StarOffice
24ea22
  fonts. (#207460)
24ea22
24ea22
* Fri Sep 15 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.1-1
24ea22
- Update to 2.4.1, a public API was dropped from 2.4.0
24ea22
- Remove upstreamed patch
24ea22
24ea22
* Mon Sep 11 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.0-1
24ea22
- Update to 2.4.0
24ea22
- Rename/order our configuration stuff to match the new scheme.
24ea22
  Breaks expected :-(
24ea22
24ea22
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-3
24ea22
- Add missing file.  Previous update didn't go through
24ea22
24ea22
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-2
24ea22
- Add fontconfig-2.3.97-ppc64.patch, for ppc64 arch signature
24ea22
24ea22
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-1
24ea22
- update to 2.3.97
24ea22
- Drop upstreamed patches
24ea22
- Regenerate defaultconfig patch
24ea22
- Don't touch stamp as it was not ever needed
24ea22
24ea22
* Thu Aug 17 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.95-11
24ea22
- inclusion of zhong yi font and rearranged font prefer list. (bug# 201300)
24ea22
24ea22
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-10
24ea22
- use "%%5x" instead of " %%4x" to support 64k instead of
24ea22
  clamping.  Idea from Behdad.
24ea22
24ea22
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-9
24ea22
- tweak last patch to give a more reasonable page size
24ea22
  value if 64k page size is in effect.
24ea22
24ea22
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-8
24ea22
- maybe fix buffer overflow (bug 202152).
24ea22
24ea22
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-7
24ea22
- Update configs to provide better openoffice/staroffice
24ea22
  compatibility (bug 200723)
24ea22
24ea22
* Thu Jul 27 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.95-6
24ea22
- Do umask 0022 in post
24ea22
- Update configs to reflect addition of new Indic fonts (#200381, #200397)
24ea22
24ea22
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-5
24ea22
- Plug a small memory leak
24ea22
24ea22
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3.95-4.1.1
24ea22
- rebuild
24ea22
24ea22
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3.95-4.1
24ea22
- rebuild
24ea22
24ea22
* Fri Jun  2 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-4
24ea22
- Fix the handling of TTF font collections
24ea22
24ea22
* Thu May 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-3
24ea22
- Apply a patch by David Turner to speed up cache generation
24ea22
24ea22
* Wed Apr 26 2006 Bill Nottingham <notting@redhat.com> - 2.3.95-2
24ea22
- fix fonts.conf typo
24ea22
24ea22
* Wed Apr 26 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-1
24ea22
- Update to 2.3.95
24ea22
24ea22
* Fri Feb 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.94-1
24ea22
- Update to 2.3.94
24ea22
24ea22
* Sat Feb 11 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060211-1
24ea22
- Newer cvs snapshot
24ea22
24ea22
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.3.93.cvs20060208-1.1
24ea22
- bump again for double-long bug on ppc(64)
24ea22
24ea22
* Wed Feb  8 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060208-1
24ea22
- Newer cvs snapshot
24ea22
24ea22
* Tue Feb  7 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060207-1
24ea22
- Newer cvs snapshot
24ea22
- Drop upstreamed patches, pick up some new ones
24ea22
24ea22
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.3.93.cvs20060131-3.1
24ea22
- rebuilt for new gcc4.1 snapshot and glibc changes
24ea22
24ea22
* Thu Feb  2 2006 Ray Strode <rstrode@redhat.com> - 2.3.93.cvs20060131-3
24ea22
- Move user cache to a subdirectory (bug 160275)
24ea22
24ea22
* Thu Feb  2 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060131-2
24ea22
- Accumulated patches
24ea22
24ea22
* Tue Jan 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060131-1
24ea22
- Newer cvs snapshot
24ea22
24ea22
* Tue Jan 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060124-1
24ea22
- Newer cvs snapshot
24ea22
24ea22
* Tue Jan 17 2006 Ray Strode <rstrode@redhat.com> - 2.3.93-4
24ea22
- apply patch from Tim Mayberry to correct aliasing and disable
24ea22
  hinting for the two Chinese font names AR PL ShanHeiSun Uni 
24ea22
  and AR PL Zenkai Uni
24ea22
24ea22
* Tue Jan 10 2006 Bill Nottingham <notting@redhat.com> - 2.3.93-3
24ea22
- prereq coreutils for mkdir/touch in %%post
24ea22
24ea22
* Wed Dec 21 2005 Carl Worth <cworth@redhat.com> - 2.3.93-2
24ea22
- Fix to create /var/cache/fontconfig/stamp in the post install stage.
24ea22
24ea22
* Wed Dec 21 2005 Carl Worth <cworth@redhat.com> - 2.3.93-1
24ea22
- New upstream version.
24ea22
24ea22
* Tue Dec 13 2005 Carl Worth <cworth@redhat.com> - 2.3.92.cvs20051129-3
24ea22
- Disable hinting for Lohit Gujarati
24ea22
24ea22
* Fri Dec  9 2005 Carl Worth <cworth@redhat.com> - 2.3.92.cvs20051129-2
24ea22
- Add two new Chinese font names to the default fonts.conf file:
24ea22
    AR PL ShanHeiSun Uni
24ea22
    AR PL Zenkai Uni
24ea22
24ea22
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
24ea22
- rebuilt
24ea22
24ea22
* Tue Nov 29 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92.cvs20051129-1
24ea22
- Update to a newer cvs snapshot
24ea22
24ea22
* Sat Nov 19 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92.cvs20051119-1
24ea22
- Update to a newer cvs snapshot
24ea22
24ea22
* Wed Nov 16 2005 Bill Nottingham <notting@redhat.com> - 2.3.93-3
24ea22
- modular X moved fonts from /usr/X11R6/lib/X11/fonts to
24ea22
  /usr/share/X11/fonts, adjust %%configure accordingly and 
24ea22
  conflict with older font packages
24ea22
24ea22
* Wed Nov  9 2005 Carl Worth <cworth@redhat.com> - 2.3.92-2
24ea22
- Remove inadvertent rejection of Luxi Mono from 40-blacklist-fonts.conf.
24ea22
  Fixes #172437
24ea22
24ea22
* Fri Nov  4 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92-1
24ea22
- Update to 2.3.92
24ea22
24ea22
* Mon Oct 31 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051031-1
24ea22
- Update to a newer cvs snapshot
24ea22
- Add a patch which should help to understand broken cache problems
24ea22
24ea22
* Fri Oct 21 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051017-2
24ea22
- Add new Chinese fonts
24ea22
- Fix the 40-blacklist-fonts.conf file to use the documented
24ea22
  fonts.conf syntax, and exclude the Hershey fonts by family
24ea22
  name.
24ea22
24ea22
* Fri Oct 14 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051017-1
24ea22
- Update to the mmap branch of fontconfig
24ea22
24ea22
* Fri Jul 22 2005 Kristian Høgsberg <krh@redhat.com> - 2.3.2-1
24ea22
- Update to fontconfig-2.3.2.  Drop
24ea22
24ea22
	fontconfig-2.1-slighthint.patch,
24ea22
	fontconfig-2.2.3-timestamp.patch,
24ea22
	fontconfig-2.2.3-names.patch,
24ea22
	fontconfig-2.2.3-ta-pa-orth.patch, and
24ea22
	fontconfig-2.2.3-timestamp.patch,
24ea22
24ea22
  as they are now merged upstream.
24ea22
24ea22
- Fold fontconfig-2.2.3-add-sazanami.patch into
24ea22
  fontconfig-2.3.2-defaultconfig.patch and split rules to disable CJK
24ea22
  hinting out into /etc/fonts/conf.d/50-no-hint-fonts.conf.
24ea22
24ea22
- Drop fontconfig-0.0.1.020826.1330-blacklist.patch and use the new
24ea22
  rejectfont directive to reject those fonts in 40-blacklist-fonts.conf.
24ea22
24ea22
- Add fontconfig-2.3.2-only-parse-conf-files.patch to avoid parsing
24ea22
  .rpmsave files.
24ea22
24ea22
- Renable s390 documentation now that #97079 has been fixed and add
24ea22
  BuildRequires: for docbook-utils and docbook-utils-pdf.
24ea22
24ea22
- Drop code to iconv and custom install man pages, upstream does the
24ea22
  right thing now.
24ea22
24ea22
- Add workaround from hell to make elinks cooperate so we can build
24ea22
  txt documentation.
24ea22
24ea22
* Tue Apr 19 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-13
24ea22
- Add another font family name Sazanami Gothic/Mincho (#148748)
24ea22
24ea22
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-12
24ea22
- Rebuild
24ea22
24ea22
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-11
24ea22
- Rebuild
24ea22
24ea22
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-10
24ea22
- Rebuild
24ea22
24ea22
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-9
24ea22
- Disable docs for s390 for now
24ea22
24ea22
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-8
24ea22
- Rebuild
24ea22
24ea22
* Wed Dec  1 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-6
24ea22
- Sleep a second before the exit of fc-cache to fix problems with fast 
24ea22
  serial installs of fonts (#140335)
24ea22
- Turn off hinting for Lohit Hindi/Bengali/Punjabi (#139816)
24ea22
24ea22
* Tue Oct 19 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-5
24ea22
- Add Lohit fonts for Indic languages (#134492)
24ea22
- Add Punjabi converage, fix Tamil coverage
24ea22
24ea22
* Wed Sep 22 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-4
24ea22
- Update fonts-hebrew names to include CLM suffix
24ea22
24ea22
* Thu Sep  2 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-3
24ea22
- Backport code from head branch of fontconfig CVS to parse names 
24ea22
  for postscript fonts (fixes #127500, J. J. Ramsey)
24ea22
- Own /usr/share/fonts (#110956, David K. Levine)
24ea22
- Add KacstQura to serif/sans-serif/monospace aliases (#101182)
24ea22
24ea22
* Mon Aug 16 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-2
24ea22
- Don't run fc-cache if the binary isn't there (#128072, tracked
24ea22
  down by Jay Turner)
24ea22
24ea22
* Tue Aug  3 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-1
24ea22
- Upgrade to 2.2.3
24ea22
- Convert man pages to UTF-8 (#108730, Peter van Egdom)
24ea22
- Renable docs on s390
24ea22
24ea22
* Mon Jul 26 2004 Owen Taylor <otaylor@redhat.com> - 2.2.1-12
24ea22
- Rebuild for RHEL
24ea22
- Back freetype required version down to 2.1.4
24ea22
24ea22
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
24ea22
- rebuilt
24ea22
24ea22
* Mon Apr 19 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-10
24ea22
- Require recent freetype (#109592, Peter Oliver)
24ea22
- Remove fonts.conf timestamp to fix multiarch conflict (#118182)
24ea22
- Disable hinting for Mukti Narrow (#120915, Sayamindu Dasgupta)
24ea22
24ea22
* Wed Mar 10 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-8.1
24ea22
- Rebuild
24ea22
24ea22
* Wed Mar 10 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-8.0
24ea22
- Add Albany/Cumberland/Thorndale as fallbacks for Microsoft core fonts and 
24ea22
  as non-preferred alternatives for Sans/Serif/Monospace
24ea22
- Fix FreeType includes for recent FreeType
24ea22
24ea22
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
24ea22
- rebuilt
24ea22
24ea22
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
24ea22
- rebuilt
24ea22
24ea22
* Mon Sep 22 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-6.0
24ea22
- Should have been passing --with-add-fonts, not --with-add-dirs to 
24ea22
  configure ... caused wrong version of Luxi to be used. (#100862)
24ea22
24ea22
* Fri Sep 19 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-5.0
24ea22
- Tweak fonts.conf to get right hinting for CJK fonts (#97337)
24ea22
24ea22
* Tue Jun 17 2003 Bill Nottingham <notting@redhat.com> 2.2.1-3
24ea22
- handle null config->cache correctly
24ea22
24ea22
* Thu Jun 12 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-2
24ea22
- Update default config to include Hebrew fonts (#90501, Dov Grobgeld)
24ea22
24ea22
* Tue Jun 10 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-2
24ea22
- As a workaround disable doc builds on s390
24ea22
24ea22
* Mon Jun  9 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-1
24ea22
- Version 2.2.1
24ea22
24ea22
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
24ea22
- rebuilt
24ea22
24ea22
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
24ea22
- debuginfo rebuild
24ea22
24ea22
* Mon Feb 24 2003 Owen Taylor <otaylor@redhat.com> 2.1-8
24ea22
- Fix segfault in fc-cache from .dircache patch
24ea22
24ea22
* Mon Feb 24 2003 Owen Taylor <otaylor@redhat.com>
24ea22
- Back out patch that wrote fonts.conf entries that crash RH-8.0 
24ea22
  gnome-terminal, go with patch from fontconfig CVS instead.
24ea22
  (#84863)
24ea22
24ea22
* Tue Feb 11 2003 Owen Taylor <otaylor@redhat.com>
24ea22
- Move fontconfig man page to main package, since it contains non-devel 
24ea22
  information (#76189)
24ea22
- Look in the OTF subdirectory of /usr/X11R6/lib/fonts as well
24ea22
  so we find Syriac fonts (#82627)
24ea22
24ea22
* Thu Feb  6 2003 Matt Wilson <msw@redhat.com> 2.1-5
24ea22
- modified fontconfig-0.0.1.020626.1517-fontdir.patch to hard code
24ea22
  /usr/X11R6/lib/X11/fonts instead of using $(X_FONT_DIR).  This is
24ea22
  because on lib64 machines, fonts are not in /usr/X11R6/lib64/....
24ea22
24ea22
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
24ea22
- rebuilt
24ea22
24ea22
* Wed Jan 15 2003 Owen Taylor <otaylor@redhat.com>
24ea22
- Try a different tack when fixing cache problem
24ea22
24ea22
* Tue Jan 14 2003 Owen Taylor <otaylor@redhat.com>
24ea22
- Try to fix bug where empty cache entries would be found in 
24ea22
  ~/.fonts.cache-1 during scanning (#81335)
24ea22
24ea22
* Thu Nov 21 2002 Mike A. Harris <mharris@redhat.com> 2.1-1
24ea22
- Updated to version 2.1
24ea22
- Updated slighthint patch to fontconfig-2.1-slighthint.patch
24ea22
- Updated freetype version required to 2.1.2-7
24ea22
24ea22
* Mon Sep  2 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Version 2.0
24ea22
- Correct capitalization/spacing for ZYSong18030 name (#73272)
24ea22
24ea22
* Fri Aug 30 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Blacklist fonts from ghostscript-fonts that don't render correctly
24ea22
24ea22
* Mon Aug 26 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Upgrade to fcpackage rc3
24ea22
- Fix bug in comparisons for xx_XX language tags
24ea22
- Compensate for a minor config file change in rc3
24ea22
24ea22
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Add an explicit PreReq for freetype
24ea22
- Move fonts we don't ship to the end of the fonts.conf aliases so
24ea22
  installing them doesn't change the look.
24ea22
24ea22
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Memory leak fix when parsing config files
24ea22
- Set rh_prefer_bitmaps for .ja fonts to key off of in Xft
24ea22
- Fix some groff warnings for fontconfig.man (#72138)
24ea22
24ea22
* Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Try once more to get the right default Sans-serif font :-(
24ea22
- Switch the Sans/Monospace aliases for Korean to Gulim, not Dotum
24ea22
24ea22
* Wed Aug 14 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Fix %%post
24ea22
24ea22
* Tue Aug 13 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Fix lost Luxi Sans default
24ea22
24ea22
* Mon Aug 12 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Upgrade to rc2
24ea22
- Turn off hinting for all CJK fonts
24ea22
- Fix typo in %%post
24ea22
- Remove the custom language tag stuff in favor of Keith's standard 
24ea22
  solution.
24ea22
24ea22
* Mon Jul 15 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Prefer Luxi Sans to Nimbus Sans again
24ea22
24ea22
* Fri Jul 12 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Add FC_HINT_STYLE to FcBaseObjectTypes
24ea22
- Switch Chinese fonts to always using Sung-ti / Ming-ti, and never Kai-ti
24ea22
- Add ZYSong18030 to aliases (#68428)
24ea22
24ea22
* Wed Jul 10 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Fix a typo in the langtag patch (caught by Erik van der Poel)
24ea22
24ea22
* Wed Jul  3 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Add FC_HINT_STYLE tag
24ea22
24ea22
* Thu Jun 27 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- New upstream version, with fix for problems with
24ea22
  ghostscript-fonts (Fonts don't work for Qt+CJK,
24ea22
  etc.)
24ea22
24ea22
* Wed Jun 26 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- New upstream version, fixing locale problem
24ea22
24ea22
* Mon Jun 24 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Add a hack where we set the "language" fontconfig property based on the locale, then 
24ea22
  we conditionalize base on that in the fonts.conf file.
24ea22
24ea22
* Sun Jun 23 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- New upstream version
24ea22
24ea22
* Tue Jun 18 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Fix crash from FcObjectSetAdd
24ea22
24ea22
* Tue Jun 11 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- make fonts.conf %%config, not %%config(noreplace)
24ea22
- Another try at the CJK aliases
24ea22
- Add some CJK fonts to the config
24ea22
- Prefer Luxi Mono to Nimbus Mono
24ea22
24ea22
* Mon Jun 10 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- New upstream version
24ea22
- Fix matching for bitmap fonts
24ea22
24ea22
* Mon Jun  3 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- New version, new upstream mega-tarball
24ea22
24ea22
* Tue May 28 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Fix problem with FcConfigSort
24ea22
24ea22
* Fri May 24 2002 Owen Taylor <otaylor@redhat.com>
24ea22
- Initial specfile
24ea22