nim / rpms / fontconfig

Forked from rpms/fontconfig 4 years ago
Clone
Akira TAGOH 171686a
# ifdef'd in source code but runtime dep will be made for FT_Done_MM_Var symbol in freetype-2.9.1
Akira TAGOH 171686a
# so update the build deps as well to keep deps consistency between runtime and build time.
Akira TAGOH 171686a
%global freetype_version 2.9.1
cvsdist 236d5de
89aa83a
Summary:	Font configuration and customization library
89aa83a
Name:		fontconfig
Akira TAGOH d4bb4b1
Version:	2.13.1
Akira TAGOH b2a0a1a
Release:	4%{?dist}
5530146
# src/ftglue.[ch] is in Public Domain
5530146
# src/fccache.c contains Public Domain code
5530146
# fc-case/CaseFolding.txt is in the UCD
5530146
# otherwise MIT
5530146
License:	MIT and Public Domain and UCD
9a86d5d
Source:		http://fontconfig.org/release/%{name}-%{version}.tar.bz2
89aa83a
URL:		http://fontconfig.org
89aa83a
Source1:	25-no-bitmap-fedora.conf
Akira TAGOH 61e3ec4
Source2:	fc-cache
89aa83a
9a86d5d
# https://bugzilla.redhat.com/show_bug.cgi?id=140335
f6b9d20
Patch0:		%{name}-sleep-less.patch
Akira TAGOH 8294176
Patch1:		%{name}-required-freetype-version.patch
Akira TAGOH 04871bf
Patch2:		%{name}-stop-cleanup-uuid.patch
Akira TAGOH b2a0a1a
Patch3:		%{name}-use-rachana.patch
Akira TAGOH 93f4fdf
Patch4:		%{name}-test-delay.patch
89aa83a
89aa83a
BuildRequires:	expat-devel
89aa83a
BuildRequires:	freetype-devel >= %{freetype_version}
89aa83a
BuildRequires:	fontpackages-devel
Akira TAGOH e051f51
BuildRequires:	libuuid-devel
Akira TAGOH f106891
BuildRequires:	autoconf automake libtool gettext
073a4b0
BuildRequires:	gperf
89aa83a
fdb339d
Requires:	fontpackages-filesystem freetype
Akira TAGOH 171686a
Requires(pre):	freetype >= 2.9.1
68f25d2
Requires(post):	grep coreutils
Akira TAGOH da37d70
Requires(postun):	/sbin/ldconfig
7aac546
Requires:	font(:lang=en)
Akira TAGOH daa9578
Suggests:	dejavu-sans-fonts
cvsdist 6e6fdb0
cvsdist 236d5de
%description
cvsdist 236d5de
Fontconfig is designed to locate fonts within the
cvsdist 236d5de
system and select them according to requirements specified by 
cvsdist 236d5de
applications.
cvsdist 236d5de
89aa83a
%package	devel
89aa83a
Summary:	Font configuration and customization library
9a86d5d
Requires:	%{name}%{?_isa} = %{version}-%{release}
89aa83a
Requires:	freetype-devel >= %{freetype_version}
89aa83a
Requires:	pkgconfig
Akira TAGOH ff451d6
Requires:	gettext
cvsdist 236d5de
89aa83a
%description	devel
cvsdist 236d5de
The fontconfig-devel package includes the header files,
cvsdist 236d5de
and developer docs for the fontconfig package.
cvsdist 236d5de
cvsdist 236d5de
Install fontconfig-devel if you want to develop programs which 
cvsdist 236d5de
will use fontconfig.
cvsdist 236d5de
9a86d5d
%package	devel-doc
9a86d5d
Summary:	Development Documentation files for fontconfig library
9a86d5d
BuildArch:	noarch
9a86d5d
Requires:	%{name}-devel = %{version}-%{release}
9a86d5d
9a86d5d
%description	devel-doc
9a86d5d
The fontconfig-devel-doc package contains the documentation files
9a86d5d
which is useful for developing applications that uses fontconfig.
9a86d5d
cvsdist 236d5de
%prep
Akira TAGOH dc4c588
%autosetup -p1
cvsdist cbf56a6
cvsdist 236d5de
%build
Behdad Esfahbod 317ca66
# We don't want to rebuild the docs, but we want to install the included ones.
Behdad Esfahbod 317ca66
export HASDOCBOOK=no
Behdad Esfahbod 317ca66
6742b0b
autoreconf
89aa83a
%configure	--with-add-fonts=/usr/share/X11/fonts/Type1,/usr/share/X11/fonts/TTF,/usr/local/share/fonts \
d5e3724
		--disable-static --with-cache-dir=/usr/lib/fontconfig/cache
Kristian Høgsberg 8cc5137
89aa83a
make %{?_smp_mflags}
cvsdist ae66be9
cvsdist 236d5de
%install
89aa83a
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
cvsdist 236d5de
89aa83a
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
Kristian Høgsberg e35966c
89aa83a
install -p -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/fonts/conf.d
2a8b7bf
ln -s %{_fontconfig_templatedir}/25-unhint-nonlatin.conf $RPM_BUILD_ROOT%{_fontconfig_confdir}/
cvsdist d2e9e4f
Akira TAGOH 61e3ec4
# move installed doc files back to build directory to package them
cvsdist d2e9e4f
# in the right place
cvsdist d2e9e4f
mv $RPM_BUILD_ROOT%{_docdir}/fontconfig/* .
cvsdist d2e9e4f
rmdir $RPM_BUILD_ROOT%{_docdir}/fontconfig/
cvsdist d2e9e4f
Akira TAGOH 61e3ec4
# rename fc-cache binary
Akira TAGOH 61e3ec4
mv $RPM_BUILD_ROOT%{_bindir}/fc-cache $RPM_BUILD_ROOT%{_bindir}/fc-cache-%{__isa_bits}
Akira TAGOH 61e3ec4
Akira TAGOH 67bdb04
# create link to man page
Akira TAGOH 67bdb04
echo ".so man1/fc-cache.1" > $RPM_BUILD_ROOT%{_mandir}/man1/fc-cache-%{__isa_bits}.1
Akira TAGOH 67bdb04
Akira TAGOH 61e3ec4
install -p -m 0755 %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}/fc-cache
Akira TAGOH 61e3ec4
Akira TAGOH d35bda7
%find_lang %{name}
Akira TAGOH 9973b49
%find_lang %{name}-conf
Akira TAGOH 9973b49
cat %{name}-conf.lang >> %{name}.lang
Akira TAGOH d35bda7
89aa83a
%check
89aa83a
make check
cvsdist 236d5de
cvsdist cbf56a6
%post
68f25d2
%{?ldconfig}
cvsdist cbf56a6
besfahbo 57dfd53
umask 0022
besfahbo 57dfd53
d5e3724
mkdir -p /usr/lib/fontconfig/cache
d5e3724
d5e3724
[[ -d %{_localstatedir}/cache/fontconfig ]] && rm -rf %{_localstatedir}/cache/fontconfig/* 2> /dev/null || :
Carl Worth 03a2256
cvsdist 58605dc
# Force regeneration of all fontconfig cache files
cvsdist 58605dc
# The check for existance is needed on dual-arch installs (the second
cvsdist 58605dc
#  copy of fontconfig might install the binary instead of the first)
cvsdist 58605dc
# The HOME setting is to avoid problems if HOME hasn't been reset
e6705f1
if [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache --version 2>&1 | grep -q %{version} ; then
70c216f
  HOME=/root /usr/bin/fc-cache -f
cvsdist 58605dc
fi
cvsdist 236d5de
Akira TAGOH da37d70
%ldconfig_postun
cvsdist 236d5de
e06087b
%transfiletriggerin -- /usr/share/fonts /usr/share/X11/fonts/Type1 /usr/share/X11/fonts/TTF /usr/local/share/fonts
e06087b
HOME=/root /usr/bin/fc-cache -s
e06087b
e06087b
%transfiletriggerpostun -- /usr/share/fonts /usr/share/X11/fonts/Type1 /usr/share/X11/fonts/TTF /usr/local/share/fonts
e06087b
HOME=/root /usr/bin/fc-cache -s
e06087b
Akira TAGOH d35bda7
%files -f %{name}.lang
711f06d
%doc README AUTHORS
cvsdist d2e9e4f
%doc fontconfig-user.txt fontconfig-user.html
89aa83a
%doc %{_fontconfig_confdir}/README
711f06d
%license COPYING
cvsdist 236d5de
%{_libdir}/libfontconfig.so.*
Akira TAGOH 61e3ec4
%{_bindir}/fc-cache*
Behdad Esfahbod 1976816
%{_bindir}/fc-cat
Akira TAGOH 5bceb3e
%{_bindir}/fc-conflist
cvsdist 236d5de
%{_bindir}/fc-list
Kristian Høgsberg e35966c
%{_bindir}/fc-match
89aa83a
%{_bindir}/fc-pattern
Behdad Esfahbod 1976816
%{_bindir}/fc-query
Behdad Esfahbod 1976816
%{_bindir}/fc-scan
22ed065
%{_bindir}/fc-validate
2a8b7bf
%{_fontconfig_templatedir}/*.conf
9a86d5d
%{_datadir}/xml/fontconfig
9a86d5d
# fonts.conf is not supposed to be modified.
9a86d5d
# If you want to do so, you should use local.conf instead.
89aa83a
%config %{_fontconfig_masterdir}/fonts.conf
89aa83a
%config(noreplace) %{_fontconfig_confdir}/*.conf
d5e3724
%dir /usr/lib/fontconfig/cache
cvsdist d2e9e4f
%{_mandir}/man1/*
cvsdist d2e9e4f
%{_mandir}/man5/*
cvsdist 236d5de
cvsdist 236d5de
%files devel
cvsdist 236d5de
%{_libdir}/libfontconfig.so
0b9f3ea
%{_libdir}/pkgconfig/*
cvsdist 236d5de
%{_includedir}/fontconfig
cvsdist d2e9e4f
%{_mandir}/man3/*
Akira TAGOH ff451d6
%{_datadir}/gettext/its/fontconfig.its
Akira TAGOH ff451d6
%{_datadir}/gettext/its/fontconfig.loc
cvsdist cbf56a6
9a86d5d
%files devel-doc
9a86d5d
%doc fontconfig-devel.txt fontconfig-devel
9a86d5d
cvsdist cbf56a6
%changelog
Akira TAGOH b2a0a1a
* Tue Nov 13 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.1-4
Akira TAGOH b2a0a1a
- Use Rachana instead of Meera for serif subsitution. (#1649184)
Akira TAGOH b2a0a1a
Akira TAGOH 04871bf
* Wed Nov 07 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.1-3
Akira TAGOH 04871bf
- Stop cleaning up .uuid file even when a directory is empty.
Akira TAGOH 04871bf
Akira TAGOH 67bdb04
* Wed Sep 26 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.1-2
Akira TAGOH 67bdb04
- Add man page for fc-cache-* links to fc-cache.
Akira TAGOH f106891
- Drop unnecessary BR.
Akira TAGOH 67bdb04
Akira TAGOH d4bb4b1
* Thu Aug 30 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.1-1
Akira TAGOH d4bb4b1
- New upstream release.
Akira TAGOH d4bb4b1
4c91eea
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.0-8
4c91eea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
4c91eea
Akira TAGOH da37d70
* Fri Jun 29 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-7
Akira TAGOH da37d70
- Use ldconfig rpm macro.
Akira TAGOH da37d70
Akira TAGOH daa9578
* Thu Jun 07 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-6
Akira TAGOH daa9578
- Add Suggests: dejavu-sans-fonts to address pulling the unpredicted
Akira TAGOH daa9578
  font package as dependency. (#1321551)
Akira TAGOH daa9578
Akira TAGOH 171686a
* Wed Jun 06 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-5
Akira TAGOH 171686a
- Update the version deps of freetype to resolve FT_Done_MM_Var symbol. (#1579464)
Akira TAGOH 171686a
Akira TAGOH 484997d
* Fri May 11 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-4
Akira TAGOH 484997d
- Fix the emboldening logic. (#1575649)
Akira TAGOH 484997d
Akira TAGOH dbbd149
* Thu Mar 15 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-3
Akira TAGOH dbbd149
- Another fix to accept the const names in param.
Akira TAGOH dbbd149
- Fix locale issue.
Akira TAGOH dbbd149
Akira TAGOH 59f6757
* Mon Mar 12 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-2
Akira TAGOH 59f6757
- Allow the const names in the range.
Akira TAGOH 59f6757
Akira TAGOH 55aab9c
* Tue Mar 06 2018 Akira TAGOH <tagoh@redhat.com> - 2.13.0-1
Akira TAGOH 55aab9c
- New upstream release.
Akira TAGOH 55aab9c
Akira TAGOH 54fea1e
* Thu Feb 15 2018 Akira TAGOH <tagoh@redhat.com> - 2.12.93-1
Akira TAGOH 54fea1e
- New upstream release.
Akira TAGOH 54fea1e
db4c5fb
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.12.92-2
db4c5fb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
db4c5fb
Akira TAGOH 2c038fb
* Thu Jan  4 2018 Akira TAGOH <tagoh@redhat.com> - 2.12.92-1
Akira TAGOH 2c038fb
- New upstream release.
Akira TAGOH 2c038fb
- Fix the mis-ordering of evaluating config. (#1530211)
Akira TAGOH 2c038fb
Akira TAGOH 1dba14a
* Sat Dec 23 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.91-2
Akira TAGOH 1dba14a
- Fix crash (#1528706)
Akira TAGOH 1dba14a
Akira TAGOH 4dc1c1f
* Thu Dec 14 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.91-1
Akira TAGOH 4dc1c1f
- New upstream release.
Akira TAGOH 4dc1c1f
Akira TAGOH d261f15
* Wed Nov  8 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-4
Akira TAGOH d261f15
- Remove the debug print in fc-query. (#1509790)
Akira TAGOH d261f15
Akira TAGOH ce2cb4f
* Thu Oct  5 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-3
Akira TAGOH ce2cb4f
- Backport a patch to change the order of the emoji fonts. (#1496761)
Akira TAGOH ce2cb4f
Akira TAGOH 446f303
* Tue Oct  3 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-2
Akira TAGOH 446f303
- Bump the release to address the upgrade path issue.
Akira TAGOH 446f303
Akira TAGOH 360658f
* Thu Sep 21 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.6-1
Akira TAGOH 360658f
- New upstream release.
Akira TAGOH 360658f
Akira TAGOH 3b658cf
* Sat Sep  9 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.5-1
Akira TAGOH 3b658cf
- New upstream release.
Akira TAGOH 3b658cf
Akira TAGOH a2fdd44
* Mon Jul 31 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.4-4
Akira TAGOH a2fdd44
- Fix exiting with 1 on 32bit arch. (#1476831)
Akira TAGOH a2fdd44
11b4d3f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.12.4-3
11b4d3f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
11b4d3f
Akira TAGOH 61e3ec4
* Mon Jul 24 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.4-2
Akira TAGOH 61e3ec4
- Allow installing 32/64 bit version of fc-cache at the same time. (#1474257)
Akira TAGOH 61e3ec4
- Add fc-cache script to invoke both version of fc-cache if available.
Akira TAGOH 61e3ec4
a5b2170
* Wed Jul  5 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.4-1
a5b2170
- New upstream release.
a5b2170
f1ad5e8
* Wed May 31 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.3-1
518193d
- New upstream release.
518193d
d5e3724
* Thu Feb 23 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.1-4
d5e3724
- Move the cache files into /usr/lib/fontconfig/cache (#1377367, #1416380)
d5e3724
cffc878
* Wed Feb 22 2017 Akira TAGOH <tagoh@redhat.com> - 2.12.1-3
cffc878
- Fix FTBFS (#1423570)
cffc878
c039c29
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.12.1-2
c039c29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c039c29
d5f2814
* Fri Aug  5 2016 Akira TAGOH <tagoh@redhat.com> - 2.12.1-1
d5f2814
- New upstream release.
d5f2814
7bd4790
* Wed Jun 15 2016 Akira TAGOH <tagoh@redhat.com> - 2.12.0-1
7bd4790
- New upstream release.
7bd4790
711f06d
* Tue Apr 12 2016 Akira TAGOH <tagoh@redhat.com> - 2.11.95-1
711f06d
- New upstream release. (#1325560)
711f06d
fdb339d
* Mon Mar 28 2016 Akira TAGOH <tagoh@redhat.com> - 2.11.94-7
fdb339d
- Add Requires: freetype.
fdb339d
d8e7dfe
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.94-6
d8e7dfe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d8e7dfe
e06087b
* Mon Sep  7 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-5
e06087b
- Add file triggers for fonts.
e06087b
0d331f6
* Fri Aug 14 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-4
0d331f6
- Revise the patch. (#1236034)
0d331f6
2f41965
* Wed Aug 12 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-3
2f41965
- Lock the cache file until scanning and writing finished. (#1236034)
2f41965
17d3f99
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.94-2
17d3f99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
17d3f99
cb2a5a8
* Tue Jun  2 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-1
cb2a5a8
- New upstream release.
cb2a5a8
  - Fix bitmap scaling. (#1187528, #1226433, 1226522, #1226722)
cb2a5a8
7082457
* Mon Mar 30 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.93-2
7082457
- Fix SIGFPE (#1203118)
7082457
Akira TAGOH a14ddb6
* Mon Mar  9 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.93-1
Akira TAGOH a14ddb6
- New upstream release.
Akira TAGOH a14ddb6
9b991bd
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.11.92-2
9b991bd
- Rebuilt for Fedora 23 Change
9b991bd
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
9b991bd
a74010e
* Tue Jan 13 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.92-1
a74010e
- New upstream release.
a74010e
52c9e14
* Thu Dec 25 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.91-1
52c9e14
- New upstream release.
52c9e14
ccfc52f
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.1-5
ccfc52f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
ccfc52f
40cf76b
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.1-4
40cf76b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
40cf76b
8d6c125
* Thu Jun  5 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.1-3
aa77914
- Workaround that the cache isn't updated properly. (#921706)
aa77914
f6b9d20
* Fri Apr 11 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.1-2
f6b9d20
- Fix failing on updating cache with --really-force.
f6b9d20
d6cd6e2
* Mon Mar 24 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.1-1
d6cd6e2
- New upstream release.
d6cd6e2
7aac546
* Fri Jan 24 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.0-2
7aac546
- Add Requires: font(:lang=en) (#1025331, #845712)
7aac546
0898950
* Fri Oct 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.11.0-1
0898950
- New upstream release.
0898950
a49dc69
* Fri Sep 13 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-4
a49dc69
- Fix memory leaks in FcFreeTypeQueryFace().
a49dc69
70c216f
* Mon Sep  2 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-3
70c216f
- Do not create a directory for migration when no old config file and directory.
70c216f
  (#1003495)
027b96b
8c50a45
* Sat Aug 31 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-1
8c50a45
- Fix a crash issue (#1003069)
8c50a45
48deb94
* Fri Aug 30 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.94-1
48deb94
- New upstream release.
48deb94
- migrate the configuration for XDG Base Directory spec automatically (#882267)
48deb94
204d2b4
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.93-2
204d2b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
204d2b4
b4a113b
* Mon May 20 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.93-1
b4a113b
- New upstream release.
b4a113b
e669d01
* Thu Apr 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-3
e669d01
- Fix a web font issue in firefox. (#946859)
e669d01
bcdb38e
* Mon Apr  1 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-2
bcdb38e
- Fix font matching issue. (#929372)
bcdb38e
c169ba9
* Fri Mar 29 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-1
c169ba9
- New upstream release.
c169ba9
9a86d5d
* Tue Feb 12 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.91-3
9a86d5d
- Improve the spec to meet the latest packaging guidelines (#225759)
9a86d5d
  - add -devel-doc subpackage.
9a86d5d
- Fix a build issue with automake 1.13
9a86d5d
c584d45
* Fri Feb  8 2013 Ville Skyttä <ville.skytta@iki.fi> - 2.10.91-2
c584d45
- Own the %%{_datadir}/xml/fontconfig dir.
c584d45
- Fix bogus dates in %%changelog.
c584d45
22ed065
* Fri Jan 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.91-1
22ed065
- New upstream release (#894109)
22ed065
  - threadsafe
22ed065
  - new tool to validate the glyph coverage
22ed065
  - add new rule to scale the bitmap font.
22ed065
50be76d
* Mon Nov 26 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.2-1
50be76d
- New upstream release.
50be76d
  - Fix an regression on FcFontMatch with namelang. (#876970)
50be76d
5530146
* Thu Oct 25 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.1-2
5530146
- Update License field (#869614)
5530146
1ec2fdc
* Fri Jul 27 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.1-1
1ec2fdc
- New upstream release.
1ec2fdc
86730c4
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.0-2
86730c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
86730c4
c584d45
* Tue Jul 17 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.0-1
38d6de9
- New upstream release.
38d6de9
2420e43
* Mon Jun 25 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.92-1
2420e43
- New upstream release.
2420e43
2a8b7bf
* Mon Jun 11 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.91-1
2a8b7bf
- New upstream release.
2a8b7bf
  - docs are generated with the fixed docbook (#826145)
2a8b7bf
  - handle whitespace in family name correctly (#468565, #591634)
2a8b7bf
  - Updated ne.orth. (#586763)
2a8b7bf
e4133ef
* Wed May 16 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.0-2
5fb5f5f
- Add grep and coreutils to Requires(post). (#821957)
5fb5f5f
5fb5f5f
* Fri Mar 23 2012 Akira TAGOH <tagoh@redhat.com>
5fb5f5f
- backport patch to make 'result' from FcFontMatch() and FcFontSort()
5fb5f5f
  more reliable.
5fb5f5f
89aa83a
* Wed Mar 21 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.0-1
89aa83a
- New upstream release (#803559)
89aa83a
  - Update ks.orth (#790471)
89aa83a
  - Add brx.orth (#790460)
89aa83a
  - Update ur.orth (#757985)
89aa83a
  - No Apple Roman cmap support anymore. should works. (#681808)
89aa83a
  - Update ne.orth (#586763)
89aa83a
  - Add a workaround for ZapfDingbats. (#562952, #497648, #468565)
89aa83a
- clean up the spec file.
89aa83a
- Add BR: fontpackages-devel.
89aa83a
- Add R: fontpackages-filesystem.
89aa83a
ee326b4
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-5
ee326b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
ee326b4
eca3a89
* Tue May 31 2011 Adam Jackson <ajax@redhat.com> 2.8.0-4
eca3a89
- fontconfig-2.8.0-dingbats.patch: Hack for dingbats font matching. (#468565)
eca3a89
e55cbbe
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-3
e55cbbe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e55cbbe
ffa596b
* Thu Jun 24 2010 Adam Jackson <ajax@redhat.com> 2.8.0-2
ffa596b
- fontconfig-2.8.0-sleep-less.patch: Make a stupid sleep() in fc-cache
ffa596b
  slightly less stupid.
ffa596b
Behdad Esfahbod 8aef861
* Thu Dec  3 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.8.0-1
Behdad Esfahbod 8aef861
- Update to 2.8.0
Behdad Esfahbod 8aef861
Behdad Esfahbod 6ad23d5
* Tue Sep  8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.3-1
Behdad Esfahbod 6ad23d5
- Update to 2.7.3
Behdad Esfahbod 6ad23d5
Behdad Esfahbod 0834b3c
* Mon Aug 31 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.2-1
Behdad Esfahbod 0834b3c
- Update to 2.7.2
Behdad Esfahbod 0834b3c
Behdad Esfahbod 942bbbe
* Mon Jul  27 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.1-1
Behdad Esfahbod 942bbbe
- Update to 2.7.1
Behdad Esfahbod 942bbbe
fd253a0
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.0-2
fd253a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
fd253a0
c584d45
* Wed Jun 24 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.0
Behdad Esfahbod 4a2846e
- Update to 2.7.0
Behdad Esfahbod 4a2846e
Behdad Esfahbod 997931c
* Mon Jun  1 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090601-1
Behdad Esfahbod d8a8ace
- Update to 2.6.99.behdad.20090601
Behdad Esfahbod d8a8ace
c584d45
* Fri May  8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090508-1
Behdad Esfahbod 17780eb
- Update to 2.6.99.behdad.20090508
Behdad Esfahbod 17780eb
- Resolves #497984
Behdad Esfahbod 17780eb
c584d45
* Wed Mar 18 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090318-1
Behdad Esfahbod 2d6a5db
- Update to 2.6.99.behdad.20090318
Behdad Esfahbod 2d6a5db
- Resolves #490888
Behdad Esfahbod 2d6a5db
Behdad Esfahbod 61b5efc
* Tue Mar 17 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090317-1
Behdad Esfahbod 8ae9a64
- Update to 2.6.99.behdad.20090317
Behdad Esfahbod 8ae9a64
- Resolves #485685
Behdad Esfahbod 8ae9a64
c584d45
* Sat Mar 14 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-3
Behdad Esfahbod 93d26b3
- New tarball with version fixed in the header
Behdad Esfahbod 93d26b3
c584d45
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-2
Behdad Esfahbod 3721205
- Previous tarball was broken.  Rebuild with respinned ball.
Behdad Esfahbod 3721205
c584d45
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-1
Behdad Esfahbod e47d7fe
- Update to 2.6.99.behdad
Behdad Esfahbod e47d7fe
Behdad Esfahbod 3e37970
* Tue Mar 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.98-1.gb39c36a
Behdad Esfahbod 3e37970
- Update to 2.6.98-1.gb39c36a
Behdad Esfahbod 3e37970
74711b0
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.97-5.g945d6a4
74711b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
74711b0
3c81d19
* Mon Feb 23 2009 Nicolas Mailhot <nim at fedoraproject dot org>
3c81d19
- 2.6.97-4.g945d6a4
3c81d19
— global-ization
3c81d19
dabeffb
* Mon Feb 16 2009 Richard Hughes <rhughes@redhat.com> - 2.6.97-3.g945d6a4
dabeffb
- Correct the rpm provide name to be font(), not Font().
dabeffb
Behdad Esfahbod 1554f5d
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.97-2.g945d6a4
Behdad Esfahbod 1554f5d
- Another try.
Behdad Esfahbod 1554f5d
Behdad Esfahbod 63e046b
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.97-1.g945d6a4
Behdad Esfahbod 63e046b
- Update to 2.6.97-1.g945d6a4
Behdad Esfahbod 63e046b
Behdad Esfahbod fbb2284
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.96-1.g0b290a6
Behdad Esfahbod fbb2284
- Update to 2.6.96-1.g0b290a6
Behdad Esfahbod fbb2284
Behdad Esfahbod f9fb7a0
* Tue Jan 27 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.95-1.git.66.gb162bfb
Behdad Esfahbod f9fb7a0
- Update to 2.6.95-1.git.66.gb162bfb
Behdad Esfahbod f9fb7a0
Behdad Esfahbod 9f4eef2
* Fri Jan 23 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.94-1.git.65.g628ee83
Behdad Esfahbod 9f4eef2
- Update to 2.6.94-1.git.65.g628ee83
Behdad Esfahbod 9f4eef2
c584d45
* Wed Jan 21 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.93-1.git.64.g6aa4dce
Behdad Esfahbod 717c330
- Update to 2.6.93-1.git.64.g6aa4dce
Behdad Esfahbod 717c330
Behdad Esfahbod 2277140
* Mon Jan 19 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.92-1.git.64.g167bb82
Behdad Esfahbod 717c330
- Update to 2.6.92-1.git.64.g167bb82
Behdad Esfahbod 2277140
Behdad Esfahbod c23313d
* Mon Jan 19 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.91-1.git.64.g9feaf34
Behdad Esfahbod c23313d
- Update to 2.6.91-1.git.64.g9feaf34
Behdad Esfahbod c23313d
Behdad Esfahbod 1976816
* Fri Jan 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.90-3.git.63.g6bb4b9a
Behdad Esfahbod 1976816
- Install fc-scan and fc-query
Behdad Esfahbod 1976816
Behdad Esfahbod b8e988f
* Fri Jan 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.90-2.git.63.g6bb4b9a
Behdad Esfahbod 05d670b
- Update to 2.6.90-1.git.63.g6bb4b9a
Behdad Esfahbod b8e988f
- Remove upstreamed patch
Behdad Esfahbod 05d670b
Behdad Esfahbod 30449a5
* Mon Oct 20 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-3
Behdad Esfahbod 30449a5
- Add fontconfig-2.6.0-indic.patch
Behdad Esfahbod 30449a5
- Resolves: #464470
Behdad Esfahbod 30449a5
c584d45
* Sun Jun 01 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-2
Behdad Esfahbod 0474ea7
- Fix build.
Behdad Esfahbod 0474ea7
Behdad Esfahbod efb3b2a
* Sat May 31 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-1
Behdad Esfahbod efb3b2a
- Update to 2.6.0.
Behdad Esfahbod efb3b2a
5c8ff07
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.5.0-2
5c8ff07
- Autorebuild for GCC 4.3
5c8ff07
c584d45
* Wed Nov 14 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.5.0-1
Behdad Esfahbod 6aa0e09
- Update to 2.5.0.
Behdad Esfahbod 6aa0e09
c584d45
* Tue Nov 06 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.92-1
Behdad Esfahbod b127d80
- Update to 2.4.92.
Behdad Esfahbod b127d80
- Mark /etc/fonts/conf.d/* as config(noreplace).
Behdad Esfahbod b127d80
- Remove most of our conf file, all upstreamed except for
Behdad Esfahbod b127d80
  75-blacklist-fedora.conf that I'm happily dropping.  Who has
Behdad Esfahbod b127d80
  Hershey fonts these days...
Behdad Esfahbod b127d80
- ln upstream'ed 25-unhint-nonlatin.conf from conf.avail in conf.d
Behdad Esfahbod b127d80
- Add 25-no-bitmap-fedora.conf which is the tiny remaining bit
Behdad Esfahbod b127d80
  of conf that didn't end up upstream.  Can get rid of it in the
Behdad Esfahbod b127d80
  future, but not just yet.
Behdad Esfahbod b127d80
Behdad Esfahbod 317ca66
* Thu Oct 25 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.91-1
Behdad Esfahbod 317ca66
- Update to 2.4.91.
Behdad Esfahbod 317ca66
- Add /usr/local/share/fonts to default config. (#147004)
Behdad Esfahbod 317ca66
- Don't rebuild docs, to fix multilib conflicts. (#313011)
Behdad Esfahbod 92197b9
- Remove docbook and elinks BuildRequires and stuff as we don't
Behdad Esfahbod 92197b9
  rebuild docs.
Behdad Esfahbod 317ca66
c4e7ac2
* Wed Aug 22 2007 Adam Jackson <ajax@redhat.com> - 2.4.2-5
c4e7ac2
- Rebuild for PPC toolchain bug
9dd83c5
- Add BuildRequires: gawk
c4e7ac2
d733b56
* Sun Jun 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.4.2-4
d733b56
- /etc/fonts/conf.d is now owned by filesystem
d733b56
5390881
* Fri May 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.4.2-3
5390881
- Add Liberation fonts to 30-aliases-fedora.conf
5390881
besfahbo ad785d4
* Fri Jan 12 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.2-2
besfahbo ad785d4
- Change /usr/share/X11/fonts/OTF to /usr/share/X11/fonts/TTF
besfahbo ad785d4
- Resolves: #220809
besfahbo ad785d4
0b9f3ea
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 2.4.2-1
0b9f3ea
- Update to 2.4.2
0b9f3ea
e6705f1
* Wed Oct  4 2006 Matthias Clasen <mclasen@redhat.com> - 2.4.1-4
e6705f1
- Fix a multilib upgrade problem (#208151)
e6705f1
4c51be1
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.4.1-3
4c51be1
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
4c51be1
besfahbo 2678adb
* Fri Sep 22 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.1-2
besfahbo 2678adb
- Update 30-aliases-fedora.conf to correctly alias MS and StarOffice
besfahbo 2678adb
  fonts. (#207460)
besfahbo 2678adb
besfahbo 5edb356
* Fri Sep 15 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.1-1
besfahbo 5edb356
- Update to 2.4.1, a public API was dropped from 2.4.0
besfahbo 5edb356
- Remove upstreamed patch
besfahbo 5edb356
besfahbo 31433cb
* Mon Sep 11 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.0-1
besfahbo 31433cb
- Update to 2.4.0
besfahbo 31433cb
- Rename/order our configuration stuff to match the new scheme.
besfahbo 31433cb
  Breaks expected :-(
besfahbo 31433cb
besfahbo 03a037e
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-3
besfahbo 03a037e
- Add missing file.  Previous update didn't go through
besfahbo 03a037e
besfahbo e35b711
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-2
besfahbo e35b711
- Add fontconfig-2.3.97-ppc64.patch, for ppc64 arch signature
besfahbo e35b711
besfahbo 2c0d482
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-1
besfahbo 2c0d482
- update to 2.3.97
besfahbo 2c0d482
- Drop upstreamed patches
besfahbo 2c0d482
- Regenerate defaultconfig patch
besfahbo 2c0d482
- Don't touch stamp as it was not ever needed
besfahbo 2c0d482
besfahbo e0b8f8c
* Thu Aug 17 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.95-11
besfahbo e0b8f8c
- inclusion of zhong yi font and rearranged font prefer list. (bug# 201300)
besfahbo e0b8f8c
726493f
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-10
89aa83a
- use "%%5x" instead of " %%4x" to support 64k instead of
726493f
  clamping.  Idea from Behdad.
726493f
1d7ef06
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-9
1d7ef06
- tweak last patch to give a more reasonable page size
1d7ef06
  value if 64k page size is in effect.
1d7ef06
de97ec7
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-8
de97ec7
- maybe fix buffer overflow (bug 202152).
de97ec7
c0d49a5
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-7
c0d49a5
- Update configs to provide better openoffice/staroffice
c0d49a5
  compatibility (bug 200723)
c0d49a5
besfahbo 57dfd53
* Thu Jul 27 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.95-6
besfahbo 57dfd53
- Do umask 0022 in post
besfahbo 57dfd53
- Update configs to reflect addition of new Indic fonts (#200381, #200397)
besfahbo 57dfd53
5ff777e
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-5
5ff777e
- Plug a small memory leak
5ff777e
1d90166
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3.95-4.1.1
1d90166
- rebuild
1d90166
8b2d2d9
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3.95-4.1
8b2d2d9
- rebuild
8b2d2d9
2c7c8de
* Fri Jun  2 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-4
2c7c8de
- Fix the handling of TTF font collections
2c7c8de
a84afd1
* Thu May 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-3
2c7c8de
- Apply a patch by David Turner to speed up cache generation
a84afd1
2391e48
* Wed Apr 26 2006 Bill Nottingham <notting@redhat.com> - 2.3.95-2
2391e48
- fix fonts.conf typo
2391e48
a20de07
* Wed Apr 26 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-1
a20de07
- Update to 2.3.95
a20de07
5a4d6e2
* Fri Feb 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.94-1
5a4d6e2
- Update to 2.3.94
5a4d6e2
c584d45
* Sat Feb 11 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060211-1
cfd8a36
- Newer cvs snapshot
cfd8a36
7b8634d
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.3.93.cvs20060208-1.1
7b8634d
- bump again for double-long bug on ppc(64)
7b8634d
d2a656e
* Wed Feb  8 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060208-1
d2a656e
- Newer cvs snapshot
d2a656e
c55bb90
* Tue Feb  7 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060207-1
c55bb90
- Newer cvs snapshot
c55bb90
- Drop upstreamed patches, pick up some new ones
c55bb90
0252b8d
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.3.93.cvs20060131-3.1
0252b8d
- rebuilt for new gcc4.1 snapshot and glibc changes
0252b8d
8b3d993
* Thu Feb  2 2006 Ray Strode <rstrode@redhat.com> - 2.3.93.cvs20060131-3
8b3d993
- Move user cache to a subdirectory (bug 160275)
8b3d993
0604853
* Thu Feb  2 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060131-2
0604853
- Accumulated patches
0604853
a1b33ae
* Tue Jan 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060131-1
a1b33ae
- Newer cvs snapshot
a1b33ae
794d1d5
* Tue Jan 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060124-1
794d1d5
- Newer cvs snapshot
794d1d5
ad30293
* Tue Jan 17 2006 Ray Strode <rstrode@redhat.com> - 2.3.93-4
ad30293
- apply patch from Tim Mayberry to correct aliasing and disable
ad30293
  hinting for the two Chinese font names AR PL ShanHeiSun Uni 
ad30293
  and AR PL Zenkai Uni
ad30293
be49880
* Tue Jan 10 2006 Bill Nottingham <notting@redhat.com> - 2.3.93-3
be49880
- prereq coreutils for mkdir/touch in %%post
be49880
Carl Worth 03a2256
* Wed Dec 21 2005 Carl Worth <cworth@redhat.com> - 2.3.93-2
Carl Worth 03a2256
- Fix to create /var/cache/fontconfig/stamp in the post install stage.
Carl Worth 03a2256
Carl Worth 612a821
* Wed Dec 21 2005 Carl Worth <cworth@redhat.com> - 2.3.93-1
Carl Worth 612a821
- New upstream version.
Carl Worth 612a821
Carl Worth f90decf
* Tue Dec 13 2005 Carl Worth <cworth@redhat.com> - 2.3.92.cvs20051129-3
Carl Worth f90decf
- Disable hinting for Lohit Gujarati
Carl Worth f90decf
Carl Worth 5a4572a
* Fri Dec  9 2005 Carl Worth <cworth@redhat.com> - 2.3.92.cvs20051129-2
Carl Worth 5a4572a
- Add two new Chinese font names to the default fonts.conf file:
89aa83a
    AR PL ShanHeiSun Uni
89aa83a
    AR PL Zenkai Uni
Carl Worth 5a4572a
2d31d5a
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
2d31d5a
- rebuilt
2d31d5a
c584d45
* Tue Nov 29 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92.cvs20051129-1
378a978
- Update to a newer cvs snapshot
378a978
a7497ae
* Sat Nov 19 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92.cvs20051119-1
a7497ae
- Update to a newer cvs snapshot
a7497ae
4113c9b
* Wed Nov 16 2005 Bill Nottingham <notting@redhat.com> - 2.3.93-3
4113c9b
- modular X moved fonts from /usr/X11R6/lib/X11/fonts to
23c6e21
  /usr/share/X11/fonts, adjust %%configure accordingly and 
23c6e21
  conflict with older font packages
4113c9b
Carl Worth 395f035
* Wed Nov  9 2005 Carl Worth <cworth@redhat.com> - 2.3.92-2
Carl Worth 395f035
- Remove inadvertent rejection of Luxi Mono from 40-blacklist-fonts.conf.
Carl Worth 395f035
  Fixes #172437
Carl Worth 395f035
9621845
* Fri Nov  4 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92-1
9621845
- Update to 2.3.92
9621845
c584d45
* Mon Oct 31 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051031-1
bfd005f
- Update to a newer cvs snapshot
bfd005f
- Add a patch which should help to understand broken cache problems
bfd005f
c200561
* Fri Oct 21 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051017-2
c200561
- Add new Chinese fonts
647877e
- Fix the 40-blacklist-fonts.conf file to use the documented
647877e
  fonts.conf syntax, and exclude the Hershey fonts by family
647877e
  name.
647877e
f42df6a
* Fri Oct 14 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051017-1
f42df6a
- Update to the mmap branch of fontconfig
f42df6a
Kristian Høgsberg e35966c
* Fri Jul 22 2005 Kristian Høgsberg <krh@redhat.com> - 2.3.2-1
Kristian Høgsberg e35966c
- Update to fontconfig-2.3.2.  Drop
Kristian Høgsberg e35966c
Kristian Høgsberg e35966c
	fontconfig-2.1-slighthint.patch,
Kristian Høgsberg e35966c
	fontconfig-2.2.3-timestamp.patch,
Kristian Høgsberg e35966c
	fontconfig-2.2.3-names.patch,
Kristian Høgsberg e35966c
	fontconfig-2.2.3-ta-pa-orth.patch, and
Kristian Høgsberg e35966c
	fontconfig-2.2.3-timestamp.patch,
Kristian Høgsberg e35966c
Kristian Høgsberg e35966c
  as they are now merged upstream.
Kristian Høgsberg e35966c
Kristian Høgsberg e35966c
- Fold fontconfig-2.2.3-add-sazanami.patch into
Kristian Høgsberg e35966c
  fontconfig-2.3.2-defaultconfig.patch and split rules to disable CJK
Kristian Høgsberg e35966c
  hinting out into /etc/fonts/conf.d/50-no-hint-fonts.conf.
Kristian Høgsberg e35966c
Kristian Høgsberg e35966c
- Drop fontconfig-0.0.1.020826.1330-blacklist.patch and use the new
Kristian Høgsberg e35966c
  rejectfont directive to reject those fonts in 40-blacklist-fonts.conf.
Kristian Høgsberg e35966c
Kristian Høgsberg e35966c
- Add fontconfig-2.3.2-only-parse-conf-files.patch to avoid parsing
Kristian Høgsberg e35966c
  .rpmsave files.
Kristian Høgsberg e35966c
Kristian Høgsberg 202206c
- Renable s390 documentation now that #97079 has been fixed and add
Kristian Høgsberg 202206c
  BuildRequires: for docbook-utils and docbook-utils-pdf.
Kristian Høgsberg 202206c
Kristian Høgsberg 202206c
- Drop code to iconv and custom install man pages, upstream does the
Kristian Høgsberg 202206c
  right thing now.
Kristian Høgsberg 202206c
Kristian Høgsberg 8cc5137
- Add workaround from hell to make elinks cooperate so we can build
Kristian Høgsberg 8cc5137
  txt documentation.
Kristian Høgsberg 8cc5137
David Zeuthen 9f6389f
* Tue Apr 19 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-13
David Zeuthen 9f6389f
- Add another font family name Sazanami Gothic/Mincho (#148748)
David Zeuthen 9f6389f
David Zeuthen d88303e
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-12
David Zeuthen d88303e
- Rebuild
David Zeuthen d88303e
David Zeuthen d0cef85
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-11
David Zeuthen d0cef85
- Rebuild
David Zeuthen d0cef85
David Zeuthen 951d06c
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-10
David Zeuthen 951d06c
- Rebuild
David Zeuthen 951d06c
David Zeuthen 66701bd
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-9
David Zeuthen 66701bd
- Disable docs for s390 for now
David Zeuthen 66701bd
David Zeuthen 3e38486
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-8
David Zeuthen 97dd89c
- Rebuild
David Zeuthen 97dd89c
f5d3299
* Wed Dec  1 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-6
f5d3299
- Sleep a second before the exit of fc-cache to fix problems with fast 
f5d3299
  serial installs of fonts (#140335)
f5d3299
- Turn off hinting for Lohit Hindi/Bengali/Punjabi (#139816)
f5d3299
5c7b4e5
* Tue Oct 19 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-5
5c7b4e5
- Add Lohit fonts for Indic languages (#134492)
5c7b4e5
- Add Punjabi converage, fix Tamil coverage
5c7b4e5
66ede51
* Wed Sep 22 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-4
66ede51
- Update fonts-hebrew names to include CLM suffix
66ede51
cvsdist 8749e0c
* Thu Sep  2 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-3
cvsdist 8749e0c
- Backport code from head branch of fontconfig CVS to parse names 
cvsdist 8749e0c
  for postscript fonts (fixes #127500, J. J. Ramsey)
cvsdist 8749e0c
- Own /usr/share/fonts (#110956, David K. Levine)
cvsdist 8749e0c
- Add KacstQura to serif/sans-serif/monospace aliases (#101182)
cvsdist 8749e0c
cvsdist 58605dc
* Mon Aug 16 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-2
cvsdist 58605dc
- Don't run fc-cache if the binary isn't there (#128072, tracked
cvsdist 58605dc
  down by Jay Turner)
cvsdist 58605dc
cvsdist 2d0faba
* Tue Aug  3 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-1
cvsdist 2d0faba
- Upgrade to 2.2.3
cvsdist 2d0faba
- Convert man pages to UTF-8 (#108730, Peter van Egdom)
cvsdist 2d0faba
- Renable docs on s390
cvsdist 2d0faba
cvsdist 2d0faba
* Mon Jul 26 2004 Owen Taylor <otaylor@redhat.com> - 2.2.1-12
cvsdist 2d0faba
- Rebuild for RHEL
cvsdist 2d0faba
- Back freetype required version down to 2.1.4
cvsdist 2d0faba
cvsdist 0f4a8a4
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 0f4a8a4
- rebuilt
cvsdist 0f4a8a4
cvsdist 4dbea28
* Mon Apr 19 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-10
cvsdist 4dbea28
- Require recent freetype (#109592, Peter Oliver)
cvsdist 4dbea28
- Remove fonts.conf timestamp to fix multiarch conflict (#118182)
cvsdist 4dbea28
- Disable hinting for Mukti Narrow (#120915, Sayamindu Dasgupta)
cvsdist 4dbea28
cvsdist 2644638
* Wed Mar 10 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-8.1
cvsdist 2644638
- Rebuild
cvsdist 2644638
cvsdist 2644638
* Wed Mar 10 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-8.0
cvsdist 2644638
- Add Albany/Cumberland/Thorndale as fallbacks for Microsoft core fonts and 
cvsdist 2644638
  as non-preferred alternatives for Sans/Serif/Monospace
cvsdist 2644638
- Fix FreeType includes for recent FreeType
cvsdist 2644638
cvsdist 2644638
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 2644638
- rebuilt
cvsdist 2644638
cvsdist 2644638
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 2644638
- rebuilt
cvsdist 2644638
cvsdist d2e9e4f
* Mon Sep 22 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-6.0
cvsdist d2e9e4f
- Should have been passing --with-add-fonts, not --with-add-dirs to 
cvsdist d2e9e4f
  configure ... caused wrong version of Luxi to be used. (#100862)
cvsdist d2e9e4f
cvsdist d2e9e4f
* Fri Sep 19 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-5.0
cvsdist d2e9e4f
- Tweak fonts.conf to get right hinting for CJK fonts (#97337)
cvsdist d2e9e4f
cvsdist d2e9e4f
* Tue Jun 17 2003 Bill Nottingham <notting@redhat.com> 2.2.1-3
cvsdist d2e9e4f
- handle null config->cache correctly
cvsdist d2e9e4f
cvsdist d2e9e4f
* Thu Jun 12 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-2
cvsdist d2e9e4f
- Update default config to include Hebrew fonts (#90501, Dov Grobgeld)
cvsdist d2e9e4f
cvsdist d2e9e4f
* Tue Jun 10 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-2
cvsdist d2e9e4f
- As a workaround disable doc builds on s390
cvsdist d2e9e4f
cvsdist d2e9e4f
* Mon Jun  9 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-1
cvsdist d2e9e4f
- Version 2.2.1
cvsdist d2e9e4f
cvsdist d2e9e4f
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist d2e9e4f
- rebuilt
cvsdist d2e9e4f
cvsdist e97d6b8
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
cvsdist e97d6b8
- debuginfo rebuild
cvsdist e97d6b8
cvsdist e97d6b8
* Mon Feb 24 2003 Owen Taylor <otaylor@redhat.com> 2.1-8
cvsdist e97d6b8
- Fix segfault in fc-cache from .dircache patch
cvsdist e97d6b8
cvsdist ae66be9
* Mon Feb 24 2003 Owen Taylor <otaylor@redhat.com>
cvsdist ae66be9
- Back out patch that wrote fonts.conf entries that crash RH-8.0 
cvsdist ae66be9
  gnome-terminal, go with patch from fontconfig CVS instead.
cvsdist ae66be9
  (#84863)
cvsdist ae66be9
cvsdist ae66be9
* Tue Feb 11 2003 Owen Taylor <otaylor@redhat.com>
cvsdist ae66be9
- Move fontconfig man page to main package, since it contains non-devel 
cvsdist ae66be9
  information (#76189)
cvsdist ae66be9
- Look in the OTF subdirectory of /usr/X11R6/lib/fonts as well
cvsdist ae66be9
  so we find Syriac fonts (#82627)
cvsdist ae66be9
cvsdist ae66be9
* Thu Feb  6 2003 Matt Wilson <msw@redhat.com> 2.1-5
cvsdist ae66be9
- modified fontconfig-0.0.1.020626.1517-fontdir.patch to hard code
cvsdist ae66be9
  /usr/X11R6/lib/X11/fonts instead of using $(X_FONT_DIR).  This is
cvsdist ae66be9
  because on lib64 machines, fonts are not in /usr/X11R6/lib64/....
cvsdist ae66be9
cvsdist ae66be9
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist ae66be9
- rebuilt
cvsdist ae66be9
cvsdist ae66be9
* Wed Jan 15 2003 Owen Taylor <otaylor@redhat.com>
cvsdist ae66be9
- Try a different tack when fixing cache problem
cvsdist ae66be9
cvsdist ae66be9
* Tue Jan 14 2003 Owen Taylor <otaylor@redhat.com>
cvsdist ae66be9
- Try to fix bug where empty cache entries would be found in 
cvsdist ae66be9
  ~/.fonts.cache-1 during scanning (#81335)
cvsdist ae66be9
cvsdist ae66be9
* Thu Nov 21 2002 Mike A. Harris <mharris@redhat.com> 2.1-1
cvsdist ae66be9
- Updated to version 2.1
cvsdist ae66be9
- Updated slighthint patch to fontconfig-2.1-slighthint.patch
cvsdist ae66be9
- Updated freetype version required to 2.1.2-7
cvsdist f08ee8c
cvsdist cf3d6d1
* Mon Sep  2 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cf3d6d1
- Version 2.0
cvsdist f64281a
- Correct capitalization/spacing for ZYSong18030 name (#73272)
cvsdist cf3d6d1
cvsdist e1b900e
* Fri Aug 30 2002 Owen Taylor <otaylor@redhat.com>
cvsdist e1b900e
- Blacklist fonts from ghostscript-fonts that don't render correctly
cvsdist e1b900e
cvsdist f7d306b
* Mon Aug 26 2002 Owen Taylor <otaylor@redhat.com>
cvsdist f7d306b
- Upgrade to fcpackage rc3
cvsdist b7a08a3
- Fix bug in comparisons for xx_XX language tags
cvsdist b7a08a3
- Compensate for a minor config file change in rc3
cvsdist f7d306b
cvsdist c4600b2
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 6e6fdb0
- Add an explicit PreReq for freetype
cvsdist 6e6fdb0
- Move fonts we don't ship to the end of the fonts.conf aliases so
cvsdist 6e6fdb0
  installing them doesn't change the look.
cvsdist 6e6fdb0
cvsdist 6e6fdb0
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 6e6fdb0
- Memory leak fix when parsing config files
cvsdist c4600b2
- Set rh_prefer_bitmaps for .ja fonts to key off of in Xft
cvsdist c4600b2
- Fix some groff warnings for fontconfig.man (#72138)
cvsdist c4600b2
cvsdist cbf56a6
* Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Try once more to get the right default Sans-serif font :-(
cvsdist cbf56a6
- Switch the Sans/Monospace aliases for Korean to Gulim, not Dotum
cvsdist cbf56a6
cvsdist cbf56a6
* Wed Aug 14 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Fix %%post
cvsdist cbf56a6
cvsdist cbf56a6
* Tue Aug 13 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Fix lost Luxi Sans default
cvsdist cbf56a6
cvsdist cbf56a6
* Mon Aug 12 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Upgrade to rc2
cvsdist cbf56a6
- Turn off hinting for all CJK fonts
cvsdist cbf56a6
- Fix typo in %%post
cvsdist cbf56a6
- Remove the custom language tag stuff in favor of Keith's standard 
cvsdist cbf56a6
  solution.
cvsdist cbf56a6
cvsdist cbf56a6
* Mon Jul 15 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Prefer Luxi Sans to Nimbus Sans again
cvsdist cbf56a6
cvsdist cbf56a6
* Fri Jul 12 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Add FC_HINT_STYLE to FcBaseObjectTypes
cvsdist cbf56a6
- Switch Chinese fonts to always using Sung-ti / Ming-ti, and never Kai-ti
cvsdist cbf56a6
- Add ZYSong18030 to aliases (#68428)
cvsdist cbf56a6
cvsdist cbf56a6
* Wed Jul 10 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Fix a typo in the langtag patch (caught by Erik van der Poel)
cvsdist cbf56a6
cvsdist cbf56a6
* Wed Jul  3 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Add FC_HINT_STYLE tag
cvsdist cbf56a6
cvsdist cbf56a6
* Thu Jun 27 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- New upstream version, with fix for problems with
cvsdist cbf56a6
  ghostscript-fonts (Fonts don't work for Qt+CJK,
cvsdist cbf56a6
  etc.)
cvsdist cbf56a6
cvsdist cbf56a6
* Wed Jun 26 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- New upstream version, fixing locale problem
cvsdist cbf56a6
cvsdist cbf56a6
* Mon Jun 24 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Add a hack where we set the "language" fontconfig property based on the locale, then 
cvsdist cbf56a6
  we conditionalize base on that in the fonts.conf file.
cvsdist cbf56a6
cvsdist cbf56a6
* Sun Jun 23 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- New upstream version
cvsdist cbf56a6
cvsdist cbf56a6
* Tue Jun 18 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Fix crash from FcObjectSetAdd
cvsdist cbf56a6
cvsdist cbf56a6
* Tue Jun 11 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- make fonts.conf %%config, not %%config(noreplace)
cvsdist cbf56a6
- Another try at the CJK aliases
cvsdist cbf56a6
- Add some CJK fonts to the config
cvsdist cbf56a6
- Prefer Luxi Mono to Nimbus Mono
cvsdist cbf56a6
cvsdist cbf56a6
* Mon Jun 10 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- New upstream version
cvsdist cbf56a6
- Fix matching for bitmap fonts
cvsdist cbf56a6
cvsdist cbf56a6
* Mon Jun  3 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- New version, new upstream mega-tarball
cvsdist cbf56a6
cvsdist cbf56a6
* Tue May 28 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Fix problem with FcConfigSort
cvsdist cbf56a6
cvsdist cbf56a6
* Fri May 24 2002 Owen Taylor <otaylor@redhat.com>
cvsdist cbf56a6
- Initial specfile
cvsdist cbf56a6