2009-02-23 09:10:14 +00:00
|
|
|
%global freetype_version 2.1.4
|
2004-09-09 04:47:16 +00:00
|
|
|
|
2012-03-21 10:35:21 +00:00
|
|
|
Summary: Font configuration and customization library
|
|
|
|
Name: fontconfig
|
2015-06-02 08:52:49 +00:00
|
|
|
Version: 2.11.94
|
2015-08-13 02:30:59 +00:00
|
|
|
Release: 3%{?dist}
|
2012-10-25 05:48:42 +00:00
|
|
|
# src/ftglue.[ch] is in Public Domain
|
|
|
|
# src/fccache.c contains Public Domain code
|
|
|
|
# fc-case/CaseFolding.txt is in the UCD
|
|
|
|
# otherwise MIT
|
|
|
|
License: MIT and Public Domain and UCD
|
2012-03-21 10:35:21 +00:00
|
|
|
Group: System Environment/Libraries
|
2013-02-12 10:07:07 +00:00
|
|
|
Source: http://fontconfig.org/release/%{name}-%{version}.tar.bz2
|
2012-03-21 10:35:21 +00:00
|
|
|
URL: http://fontconfig.org
|
|
|
|
Source1: 25-no-bitmap-fedora.conf
|
|
|
|
|
2013-02-12 10:07:07 +00:00
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=140335
|
2014-04-11 03:43:49 +00:00
|
|
|
Patch0: %{name}-sleep-less.patch
|
2015-08-13 02:30:59 +00:00
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1236034
|
|
|
|
Patch1: %{name}-lock-cache.patch
|
2012-03-21 10:35:21 +00:00
|
|
|
|
|
|
|
BuildRequires: expat-devel
|
|
|
|
BuildRequires: freetype-devel >= %{freetype_version}
|
|
|
|
BuildRequires: fontpackages-devel
|
|
|
|
|
|
|
|
Requires: fontpackages-filesystem
|
|
|
|
Requires(pre): freetype
|
2012-05-16 03:22:17 +00:00
|
|
|
Requires(post): grep coreutils
|
2014-01-24 04:23:40 +00:00
|
|
|
Requires: font(:lang=en)
|
2004-09-09 04:48:50 +00:00
|
|
|
|
2004-09-09 04:47:16 +00:00
|
|
|
%description
|
|
|
|
Fontconfig is designed to locate fonts within the
|
|
|
|
system and select them according to requirements specified by
|
|
|
|
applications.
|
|
|
|
|
2012-03-21 10:35:21 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Font configuration and customization library
|
|
|
|
Group: Development/Libraries
|
2013-02-12 10:07:07 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2012-03-21 10:35:21 +00:00
|
|
|
Requires: freetype-devel >= %{freetype_version}
|
|
|
|
Requires: pkgconfig
|
2004-09-09 04:47:16 +00:00
|
|
|
|
2012-03-21 10:35:21 +00:00
|
|
|
%description devel
|
2004-09-09 04:47:16 +00:00
|
|
|
The fontconfig-devel package includes the header files,
|
|
|
|
and developer docs for the fontconfig package.
|
|
|
|
|
|
|
|
Install fontconfig-devel if you want to develop programs which
|
|
|
|
will use fontconfig.
|
|
|
|
|
2013-02-12 10:07:07 +00:00
|
|
|
%package devel-doc
|
|
|
|
Summary: Development Documentation files for fontconfig library
|
|
|
|
Group: Documentation
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel-doc
|
|
|
|
The fontconfig-devel-doc package contains the documentation files
|
|
|
|
which is useful for developing applications that uses fontconfig.
|
|
|
|
|
2004-09-09 04:47:16 +00:00
|
|
|
%prep
|
2004-09-09 04:52:09 +00:00
|
|
|
%setup -q
|
2010-06-24 19:11:18 +00:00
|
|
|
%patch0 -p1 -b .sleep-less
|
2015-08-13 02:30:59 +00:00
|
|
|
%patch1 -p1 -b .lock-cache
|
2004-09-09 04:47:22 +00:00
|
|
|
|
2004-09-09 04:47:16 +00:00
|
|
|
%build
|
2007-10-26 01:16:55 +00:00
|
|
|
# We don't want to rebuild the docs, but we want to install the included ones.
|
|
|
|
export HASDOCBOOK=no
|
|
|
|
|
2012-03-21 10:35:21 +00:00
|
|
|
%configure --with-add-fonts=/usr/share/X11/fonts/Type1,/usr/share/X11/fonts/TTF,/usr/local/share/fonts \
|
|
|
|
--disable-static
|
2005-07-26 03:42:15 +00:00
|
|
|
|
2012-03-21 10:35:21 +00:00
|
|
|
make %{?_smp_mflags}
|
2004-09-09 04:50:33 +00:00
|
|
|
|
2004-09-09 04:47:16 +00:00
|
|
|
%install
|
2012-03-21 10:35:21 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
2004-09-09 04:47:16 +00:00
|
|
|
|
2012-03-21 10:35:21 +00:00
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
2005-07-25 21:18:26 +00:00
|
|
|
|
2012-03-21 10:35:21 +00:00
|
|
|
install -p -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/fonts/conf.d
|
2012-06-11 12:03:28 +00:00
|
|
|
ln -s %{_fontconfig_templatedir}/25-unhint-nonlatin.conf $RPM_BUILD_ROOT%{_fontconfig_confdir}/
|
2004-09-09 04:52:09 +00:00
|
|
|
|
|
|
|
# move installed doc files back to build directory to package themm
|
|
|
|
# in the right place
|
|
|
|
mv $RPM_BUILD_ROOT%{_docdir}/fontconfig/* .
|
|
|
|
rmdir $RPM_BUILD_ROOT%{_docdir}/fontconfig/
|
|
|
|
|
2012-03-21 10:35:21 +00:00
|
|
|
%check
|
|
|
|
make check
|
2004-09-09 04:47:16 +00:00
|
|
|
|
2004-09-09 04:47:22 +00:00
|
|
|
%post
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
2006-07-27 22:36:43 +00:00
|
|
|
umask 0022
|
|
|
|
|
2005-12-22 00:30:11 +00:00
|
|
|
mkdir -p %{_localstatedir}/cache/fontconfig
|
|
|
|
|
2004-09-09 04:54:31 +00:00
|
|
|
# Force regeneration of all fontconfig cache files
|
|
|
|
# The check for existance is needed on dual-arch installs (the second
|
|
|
|
# copy of fontconfig might install the binary instead of the first)
|
|
|
|
# The HOME setting is to avoid problems if HOME hasn't been reset
|
2006-10-05 03:03:23 +00:00
|
|
|
if [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache --version 2>&1 | grep -q %{version} ; then
|
2013-09-02 12:10:14 +00:00
|
|
|
HOME=/root /usr/bin/fc-cache -f
|
2004-09-09 04:54:31 +00:00
|
|
|
fi
|
2004-09-09 04:47:16 +00:00
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
2012-03-21 10:35:21 +00:00
|
|
|
%doc README AUTHORS COPYING
|
2004-09-09 04:52:09 +00:00
|
|
|
%doc fontconfig-user.txt fontconfig-user.html
|
2012-03-21 10:35:21 +00:00
|
|
|
%doc %{_fontconfig_confdir}/README
|
2004-09-09 04:47:16 +00:00
|
|
|
%{_libdir}/libfontconfig.so.*
|
|
|
|
%{_bindir}/fc-cache
|
2009-01-16 05:58:10 +00:00
|
|
|
%{_bindir}/fc-cat
|
2004-09-09 04:47:16 +00:00
|
|
|
%{_bindir}/fc-list
|
2005-07-25 21:18:26 +00:00
|
|
|
%{_bindir}/fc-match
|
2012-03-21 10:35:21 +00:00
|
|
|
%{_bindir}/fc-pattern
|
2009-01-16 05:58:10 +00:00
|
|
|
%{_bindir}/fc-query
|
|
|
|
%{_bindir}/fc-scan
|
2013-01-11 06:34:45 +00:00
|
|
|
%{_bindir}/fc-validate
|
2012-06-11 12:03:28 +00:00
|
|
|
%{_fontconfig_templatedir}/*.conf
|
2013-02-12 10:07:07 +00:00
|
|
|
%{_datadir}/xml/fontconfig
|
|
|
|
# fonts.conf is not supposed to be modified.
|
|
|
|
# If you want to do so, you should use local.conf instead.
|
2012-03-21 10:35:21 +00:00
|
|
|
%config %{_fontconfig_masterdir}/fonts.conf
|
|
|
|
%config(noreplace) %{_fontconfig_confdir}/*.conf
|
2006-01-24 20:52:34 +00:00
|
|
|
%dir %{_localstatedir}/cache/fontconfig
|
2004-09-09 04:52:09 +00:00
|
|
|
%{_mandir}/man1/*
|
|
|
|
%{_mandir}/man5/*
|
2004-09-09 04:47:16 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_libdir}/libfontconfig.so
|
2006-12-06 03:59:54 +00:00
|
|
|
%{_libdir}/pkgconfig/*
|
2004-09-09 04:47:16 +00:00
|
|
|
%{_includedir}/fontconfig
|
2004-09-09 04:52:09 +00:00
|
|
|
%{_mandir}/man3/*
|
2004-09-09 04:47:22 +00:00
|
|
|
|
2013-02-12 10:07:07 +00:00
|
|
|
%files devel-doc
|
|
|
|
%doc fontconfig-devel.txt fontconfig-devel
|
|
|
|
|
2004-09-09 04:47:22 +00:00
|
|
|
%changelog
|
2015-08-13 02:30:59 +00:00
|
|
|
* Wed Aug 12 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-3
|
|
|
|
- Lock the cache file until scanning and writing finished. (#1236034)
|
|
|
|
|
2015-06-17 06:32:36 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.94-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-02 08:52:49 +00:00
|
|
|
* Tue Jun 2 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.94-1
|
|
|
|
- New upstream release.
|
|
|
|
- Fix bitmap scaling. (#1187528, #1226433, 1226522, #1226722)
|
|
|
|
|
2015-03-30 06:21:47 +00:00
|
|
|
* Mon Mar 30 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.93-2
|
|
|
|
- Fix SIGFPE (#1203118)
|
|
|
|
|
2015-03-09 04:03:48 +00:00
|
|
|
* Mon Mar 9 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.93-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2015-02-21 21:21:36 +00:00
|
|
|
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.11.92-2
|
|
|
|
- Rebuilt for Fedora 23 Change
|
|
|
|
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
|
|
|
2015-01-13 08:35:13 +00:00
|
|
|
* Tue Jan 13 2015 Akira TAGOH <tagoh@redhat.com> - 2.11.92-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2014-12-25 08:01:58 +00:00
|
|
|
* Thu Dec 25 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.91-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2014-08-16 12:50:18 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 12:30:28 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-06-05 10:13:50 +00:00
|
|
|
* Thu Jun 5 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.1-3
|
2014-06-05 10:13:14 +00:00
|
|
|
- Workaround that the cache isn't updated properly. (#921706)
|
|
|
|
|
2014-04-11 03:43:49 +00:00
|
|
|
* Fri Apr 11 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.1-2
|
|
|
|
- Fix failing on updating cache with --really-force.
|
|
|
|
|
2014-03-24 06:23:04 +00:00
|
|
|
* Mon Mar 24 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.1-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2014-01-24 04:23:40 +00:00
|
|
|
* Fri Jan 24 2014 Akira TAGOH <tagoh@redhat.com> - 2.11.0-2
|
|
|
|
- Add Requires: font(:lang=en) (#1025331, #845712)
|
|
|
|
|
2013-10-11 04:00:47 +00:00
|
|
|
* Fri Oct 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.11.0-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2013-09-13 08:35:18 +00:00
|
|
|
* Fri Sep 13 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-4
|
|
|
|
- Fix memory leaks in FcFreeTypeQueryFace().
|
|
|
|
|
2013-09-02 12:10:14 +00:00
|
|
|
* Mon Sep 2 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-3
|
|
|
|
- Do not create a directory for migration when no old config file and directory.
|
|
|
|
(#1003495)
|
2013-09-02 09:36:46 +00:00
|
|
|
|
2013-08-31 02:03:15 +00:00
|
|
|
* Sat Aug 31 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-1
|
|
|
|
- Fix a crash issue (#1003069)
|
|
|
|
|
2013-08-30 06:12:07 +00:00
|
|
|
* Fri Aug 30 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.94-1
|
|
|
|
- New upstream release.
|
|
|
|
- migrate the configuration for XDG Base Directory spec automatically (#882267)
|
|
|
|
|
2013-08-03 11:36:54 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.93-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-05-20 09:25:33 +00:00
|
|
|
* Mon May 20 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.93-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2013-04-11 09:32:21 +00:00
|
|
|
* Thu Apr 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-3
|
|
|
|
- Fix a web font issue in firefox. (#946859)
|
|
|
|
|
2013-04-01 08:03:42 +00:00
|
|
|
* Mon Apr 1 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-2
|
|
|
|
- Fix font matching issue. (#929372)
|
|
|
|
|
2013-03-29 07:40:25 +00:00
|
|
|
* Fri Mar 29 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2013-02-12 10:07:07 +00:00
|
|
|
* Tue Feb 12 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.91-3
|
|
|
|
- Improve the spec to meet the latest packaging guidelines (#225759)
|
|
|
|
- add -devel-doc subpackage.
|
|
|
|
- Fix a build issue with automake 1.13
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Fri Feb 8 2013 Ville Skyttä <ville.skytta@iki.fi> - 2.10.91-2
|
|
|
|
- Own the %%{_datadir}/xml/fontconfig dir.
|
|
|
|
- Fix bogus dates in %%changelog.
|
|
|
|
|
2013-01-11 06:34:45 +00:00
|
|
|
* Fri Jan 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.91-1
|
|
|
|
- New upstream release (#894109)
|
|
|
|
- threadsafe
|
|
|
|
- new tool to validate the glyph coverage
|
|
|
|
- add new rule to scale the bitmap font.
|
|
|
|
|
2012-11-26 10:10:48 +00:00
|
|
|
* Mon Nov 26 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.2-1
|
|
|
|
- New upstream release.
|
|
|
|
- Fix an regression on FcFontMatch with namelang. (#876970)
|
|
|
|
|
2012-10-25 05:48:42 +00:00
|
|
|
* Thu Oct 25 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.1-2
|
|
|
|
- Update License field (#869614)
|
|
|
|
|
2012-07-27 02:46:52 +00:00
|
|
|
* Fri Jul 27 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.1-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2012-07-19 02:51:31 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Tue Jul 17 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.0-1
|
2012-07-17 05:04:55 +00:00
|
|
|
- New upstream release.
|
|
|
|
|
2012-06-25 06:58:13 +00:00
|
|
|
* Mon Jun 25 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.92-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2012-06-11 12:03:28 +00:00
|
|
|
* Mon Jun 11 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.91-1
|
|
|
|
- New upstream release.
|
|
|
|
- docs are generated with the fixed docbook (#826145)
|
|
|
|
- handle whitespace in family name correctly (#468565, #591634)
|
|
|
|
- Updated ne.orth. (#586763)
|
|
|
|
|
2012-05-16 03:22:49 +00:00
|
|
|
* Wed May 16 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.0-2
|
2012-05-16 03:22:17 +00:00
|
|
|
- Add grep and coreutils to Requires(post). (#821957)
|
|
|
|
|
|
|
|
* Fri Mar 23 2012 Akira TAGOH <tagoh@redhat.com>
|
|
|
|
- backport patch to make 'result' from FcFontMatch() and FcFontSort()
|
|
|
|
more reliable.
|
|
|
|
|
2012-03-21 10:35:21 +00:00
|
|
|
* Wed Mar 21 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.0-1
|
|
|
|
- New upstream release (#803559)
|
|
|
|
- Update ks.orth (#790471)
|
|
|
|
- Add brx.orth (#790460)
|
|
|
|
- Update ur.orth (#757985)
|
|
|
|
- No Apple Roman cmap support anymore. should works. (#681808)
|
|
|
|
- Update ne.orth (#586763)
|
|
|
|
- Add a workaround for ZapfDingbats. (#562952, #497648, #468565)
|
|
|
|
- clean up the spec file.
|
|
|
|
- Add BR: fontpackages-devel.
|
|
|
|
- Add R: fontpackages-filesystem.
|
|
|
|
|
2012-01-13 02:36:46 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-05-31 20:02:29 +00:00
|
|
|
* Tue May 31 2011 Adam Jackson <ajax@redhat.com> 2.8.0-4
|
|
|
|
- fontconfig-2.8.0-dingbats.patch: Hack for dingbats font matching. (#468565)
|
|
|
|
|
2011-02-08 21:05:03 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-06-24 19:11:18 +00:00
|
|
|
* Thu Jun 24 2010 Adam Jackson <ajax@redhat.com> 2.8.0-2
|
|
|
|
- fontconfig-2.8.0-sleep-less.patch: Make a stupid sleep() in fc-cache
|
|
|
|
slightly less stupid.
|
|
|
|
|
2009-12-03 20:51:28 +00:00
|
|
|
* Thu Dec 3 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.8.0-1
|
|
|
|
- Update to 2.8.0
|
|
|
|
|
2009-09-08 15:55:23 +00:00
|
|
|
* Tue Sep 8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.3-1
|
|
|
|
- Update to 2.7.3
|
|
|
|
|
2009-08-31 21:41:48 +00:00
|
|
|
* Mon Aug 31 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.2-1
|
|
|
|
- Update to 2.7.2
|
|
|
|
|
2009-07-27 22:17:26 +00:00
|
|
|
* Mon Jul 27 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.1-1
|
|
|
|
- Update to 2.7.1
|
|
|
|
|
2009-07-24 22:59:11 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Wed Jun 24 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.0
|
2009-06-24 19:25:00 +00:00
|
|
|
- Update to 2.7.0
|
|
|
|
|
2009-06-02 01:58:15 +00:00
|
|
|
* Mon Jun 1 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090601-1
|
2009-06-02 01:55:45 +00:00
|
|
|
- Update to 2.6.99.behdad.20090601
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Fri May 8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090508-1
|
2009-05-08 20:00:25 +00:00
|
|
|
- Update to 2.6.99.behdad.20090508
|
|
|
|
- Resolves #497984
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Wed Mar 18 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090318-1
|
2009-03-18 23:43:18 +00:00
|
|
|
- Update to 2.6.99.behdad.20090318
|
|
|
|
- Resolves #490888
|
|
|
|
|
2009-03-17 17:04:17 +00:00
|
|
|
* Tue Mar 17 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090317-1
|
2009-03-17 17:00:38 +00:00
|
|
|
- Update to 2.6.99.behdad.20090317
|
|
|
|
- Resolves #485685
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Sat Mar 14 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-3
|
2009-03-14 23:00:00 +00:00
|
|
|
- New tarball with version fixed in the header
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-2
|
2009-03-13 23:11:08 +00:00
|
|
|
- Previous tarball was broken. Rebuild with respinned ball.
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-1
|
2009-03-13 22:29:39 +00:00
|
|
|
- Update to 2.6.99.behdad
|
|
|
|
|
2009-03-10 08:07:08 +00:00
|
|
|
* Tue Mar 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.98-1.gb39c36a
|
|
|
|
- Update to 2.6.98-1.gb39c36a
|
|
|
|
|
2009-02-24 17:47:44 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.97-5.g945d6a4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-23 09:10:14 +00:00
|
|
|
* Mon Feb 23 2009 Nicolas Mailhot <nim at fedoraproject dot org>
|
|
|
|
- 2.6.97-4.g945d6a4
|
|
|
|
— global-ization
|
|
|
|
|
2009-02-16 11:34:37 +00:00
|
|
|
* Mon Feb 16 2009 Richard Hughes <rhughes@redhat.com> - 2.6.97-3.g945d6a4
|
|
|
|
- Correct the rpm provide name to be font(), not Font().
|
|
|
|
|
2009-02-15 22:46:16 +00:00
|
|
|
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.97-2.g945d6a4
|
|
|
|
- Another try.
|
|
|
|
|
2009-02-15 22:31:22 +00:00
|
|
|
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.97-1.g945d6a4
|
|
|
|
- Update to 2.6.97-1.g945d6a4
|
|
|
|
|
2009-02-15 22:05:27 +00:00
|
|
|
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.96-1.g0b290a6
|
|
|
|
- Update to 2.6.96-1.g0b290a6
|
|
|
|
|
2009-01-27 09:02:41 +00:00
|
|
|
* Tue Jan 27 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.95-1.git.66.gb162bfb
|
|
|
|
- Update to 2.6.95-1.git.66.gb162bfb
|
|
|
|
|
2009-01-23 19:21:24 +00:00
|
|
|
* Fri Jan 23 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.94-1.git.65.g628ee83
|
|
|
|
- Update to 2.6.94-1.git.65.g628ee83
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Wed Jan 21 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.93-1.git.64.g6aa4dce
|
2009-01-21 01:17:23 +00:00
|
|
|
- Update to 2.6.93-1.git.64.g6aa4dce
|
|
|
|
|
2009-01-19 23:55:36 +00:00
|
|
|
* Mon Jan 19 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.92-1.git.64.g167bb82
|
2009-01-21 01:17:23 +00:00
|
|
|
- Update to 2.6.92-1.git.64.g167bb82
|
2009-01-19 23:55:36 +00:00
|
|
|
|
2009-01-19 22:11:23 +00:00
|
|
|
* Mon Jan 19 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.91-1.git.64.g9feaf34
|
|
|
|
- Update to 2.6.91-1.git.64.g9feaf34
|
|
|
|
|
2009-01-16 05:58:10 +00:00
|
|
|
* Fri Jan 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.90-3.git.63.g6bb4b9a
|
|
|
|
- Install fc-scan and fc-query
|
|
|
|
|
2009-01-16 05:53:21 +00:00
|
|
|
* Fri Jan 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.90-2.git.63.g6bb4b9a
|
2009-01-16 05:44:55 +00:00
|
|
|
- Update to 2.6.90-1.git.63.g6bb4b9a
|
2009-01-16 05:53:21 +00:00
|
|
|
- Remove upstreamed patch
|
2009-01-16 05:44:55 +00:00
|
|
|
|
2008-10-20 22:58:41 +00:00
|
|
|
* Mon Oct 20 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-3
|
|
|
|
- Add fontconfig-2.6.0-indic.patch
|
|
|
|
- Resolves: #464470
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Sun Jun 01 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-2
|
2008-06-01 04:01:12 +00:00
|
|
|
- Fix build.
|
|
|
|
|
2008-06-01 03:48:56 +00:00
|
|
|
* Sat May 31 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-1
|
|
|
|
- Update to 2.6.0.
|
|
|
|
|
2008-02-18 21:00:31 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.5.0-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Wed Nov 14 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.5.0-1
|
2007-11-14 03:52:37 +00:00
|
|
|
- Update to 2.5.0.
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Tue Nov 06 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.92-1
|
2007-11-06 01:14:00 +00:00
|
|
|
- Update to 2.4.92.
|
|
|
|
- Mark /etc/fonts/conf.d/* as config(noreplace).
|
|
|
|
- Remove most of our conf file, all upstreamed except for
|
|
|
|
75-blacklist-fedora.conf that I'm happily dropping. Who has
|
|
|
|
Hershey fonts these days...
|
|
|
|
- ln upstream'ed 25-unhint-nonlatin.conf from conf.avail in conf.d
|
|
|
|
- Add 25-no-bitmap-fedora.conf which is the tiny remaining bit
|
|
|
|
of conf that didn't end up upstream. Can get rid of it in the
|
|
|
|
future, but not just yet.
|
|
|
|
|
2007-10-26 01:16:55 +00:00
|
|
|
* Thu Oct 25 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.91-1
|
|
|
|
- Update to 2.4.91.
|
|
|
|
- Add /usr/local/share/fonts to default config. (#147004)
|
|
|
|
- Don't rebuild docs, to fix multilib conflicts. (#313011)
|
2007-10-26 01:19:45 +00:00
|
|
|
- Remove docbook and elinks BuildRequires and stuff as we don't
|
|
|
|
rebuild docs.
|
2007-10-26 01:16:55 +00:00
|
|
|
|
2007-08-22 21:42:12 +00:00
|
|
|
* Wed Aug 22 2007 Adam Jackson <ajax@redhat.com> - 2.4.2-5
|
|
|
|
- Rebuild for PPC toolchain bug
|
2007-08-23 15:00:47 +00:00
|
|
|
- Add BuildRequires: gawk
|
2007-08-22 21:42:12 +00:00
|
|
|
|
2007-06-17 04:56:16 +00:00
|
|
|
* Sun Jun 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.4.2-4
|
|
|
|
- /etc/fonts/conf.d is now owned by filesystem
|
|
|
|
|
2007-05-11 21:58:58 +00:00
|
|
|
* Fri May 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.4.2-3
|
|
|
|
- Add Liberation fonts to 30-aliases-fedora.conf
|
|
|
|
|
2007-01-12 20:56:37 +00:00
|
|
|
* Fri Jan 12 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.2-2
|
|
|
|
- Change /usr/share/X11/fonts/OTF to /usr/share/X11/fonts/TTF
|
|
|
|
- Resolves: #220809
|
|
|
|
|
2006-12-06 03:59:54 +00:00
|
|
|
* Tue Dec 5 2006 Matthias Clasen <mclasen@redhat.com> - 2.4.2-1
|
|
|
|
- Update to 2.4.2
|
|
|
|
|
2006-10-05 03:03:23 +00:00
|
|
|
* Wed Oct 4 2006 Matthias Clasen <mclasen@redhat.com> - 2.4.1-4
|
|
|
|
- Fix a multilib upgrade problem (#208151)
|
|
|
|
|
2006-10-01 21:16:35 +00:00
|
|
|
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.4.1-3
|
|
|
|
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
|
|
|
|
|
2006-09-22 15:44:06 +00:00
|
|
|
* Fri Sep 22 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.1-2
|
|
|
|
- Update 30-aliases-fedora.conf to correctly alias MS and StarOffice
|
|
|
|
fonts. (#207460)
|
|
|
|
|
2006-09-15 23:36:30 +00:00
|
|
|
* Fri Sep 15 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.1-1
|
|
|
|
- Update to 2.4.1, a public API was dropped from 2.4.0
|
|
|
|
- Remove upstreamed patch
|
|
|
|
|
2006-09-11 19:48:16 +00:00
|
|
|
* Mon Sep 11 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.0-1
|
|
|
|
- Update to 2.4.0
|
|
|
|
- Rename/order our configuration stuff to match the new scheme.
|
|
|
|
Breaks expected :-(
|
|
|
|
|
2006-09-07 22:46:38 +00:00
|
|
|
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-3
|
|
|
|
- Add missing file. Previous update didn't go through
|
|
|
|
|
2006-09-07 22:01:21 +00:00
|
|
|
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-2
|
|
|
|
- Add fontconfig-2.3.97-ppc64.patch, for ppc64 arch signature
|
|
|
|
|
2006-09-07 21:41:05 +00:00
|
|
|
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-1
|
|
|
|
- update to 2.3.97
|
|
|
|
- Drop upstreamed patches
|
|
|
|
- Regenerate defaultconfig patch
|
|
|
|
- Don't touch stamp as it was not ever needed
|
|
|
|
|
2006-08-17 22:05:17 +00:00
|
|
|
* Thu Aug 17 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.95-11
|
|
|
|
- inclusion of zhong yi font and rearranged font prefer list. (bug# 201300)
|
|
|
|
|
2006-08-11 17:35:44 +00:00
|
|
|
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-10
|
2012-03-21 10:35:21 +00:00
|
|
|
- use "%%5x" instead of " %%4x" to support 64k instead of
|
2006-08-11 17:35:44 +00:00
|
|
|
clamping. Idea from Behdad.
|
|
|
|
|
2006-08-11 16:38:58 +00:00
|
|
|
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-9
|
|
|
|
- tweak last patch to give a more reasonable page size
|
|
|
|
value if 64k page size is in effect.
|
|
|
|
|
2006-08-11 16:04:33 +00:00
|
|
|
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-8
|
|
|
|
- maybe fix buffer overflow (bug 202152).
|
|
|
|
|
2006-08-11 15:03:49 +00:00
|
|
|
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-7
|
|
|
|
- Update configs to provide better openoffice/staroffice
|
|
|
|
compatibility (bug 200723)
|
|
|
|
|
2006-07-27 22:36:43 +00:00
|
|
|
* Thu Jul 27 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.95-6
|
|
|
|
- Do umask 0022 in post
|
|
|
|
- Update configs to reflect addition of new Indic fonts (#200381, #200397)
|
|
|
|
|
2006-07-19 03:54:14 +00:00
|
|
|
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-5
|
|
|
|
- Plug a small memory leak
|
|
|
|
|
2006-07-12 17:31:28 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3.95-4.1.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-07-12 17:23:41 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3.95-4.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-06-02 16:33:32 +00:00
|
|
|
* Fri Jun 2 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-4
|
|
|
|
- Fix the handling of TTF font collections
|
|
|
|
|
2006-05-18 12:14:27 +00:00
|
|
|
* Thu May 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-3
|
2006-06-02 16:33:32 +00:00
|
|
|
- Apply a patch by David Turner to speed up cache generation
|
2006-05-18 12:14:27 +00:00
|
|
|
|
2006-04-27 03:27:48 +00:00
|
|
|
* Wed Apr 26 2006 Bill Nottingham <notting@redhat.com> - 2.3.95-2
|
|
|
|
- fix fonts.conf typo
|
|
|
|
|
2006-04-26 16:41:41 +00:00
|
|
|
* Wed Apr 26 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-1
|
|
|
|
- Update to 2.3.95
|
|
|
|
|
2006-02-24 20:33:50 +00:00
|
|
|
* Fri Feb 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.94-1
|
|
|
|
- Update to 2.3.94
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Sat Feb 11 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060211-1
|
2006-02-11 22:16:10 +00:00
|
|
|
- Newer cvs snapshot
|
|
|
|
|
2006-02-11 02:45:06 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.3.93.cvs20060208-1.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-08 14:42:21 +00:00
|
|
|
* Wed Feb 8 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060208-1
|
|
|
|
- Newer cvs snapshot
|
|
|
|
|
2006-02-07 20:46:51 +00:00
|
|
|
* Tue Feb 7 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060207-1
|
|
|
|
- Newer cvs snapshot
|
|
|
|
- Drop upstreamed patches, pick up some new ones
|
|
|
|
|
2006-02-07 11:40:49 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.3.93.cvs20060131-3.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-02-02 23:13:50 +00:00
|
|
|
* Thu Feb 2 2006 Ray Strode <rstrode@redhat.com> - 2.3.93.cvs20060131-3
|
|
|
|
- Move user cache to a subdirectory (bug 160275)
|
|
|
|
|
2006-02-02 15:07:23 +00:00
|
|
|
* Thu Feb 2 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060131-2
|
|
|
|
- Accumulated patches
|
|
|
|
|
2006-01-31 13:44:03 +00:00
|
|
|
* Tue Jan 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060131-1
|
|
|
|
- Newer cvs snapshot
|
|
|
|
|
2006-01-24 20:52:34 +00:00
|
|
|
* Tue Jan 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060124-1
|
|
|
|
- Newer cvs snapshot
|
|
|
|
|
2006-01-17 23:16:50 +00:00
|
|
|
* Tue Jan 17 2006 Ray Strode <rstrode@redhat.com> - 2.3.93-4
|
|
|
|
- apply patch from Tim Mayberry to correct aliasing and disable
|
|
|
|
hinting for the two Chinese font names AR PL ShanHeiSun Uni
|
|
|
|
and AR PL Zenkai Uni
|
|
|
|
|
2006-01-10 20:31:37 +00:00
|
|
|
* Tue Jan 10 2006 Bill Nottingham <notting@redhat.com> - 2.3.93-3
|
|
|
|
- prereq coreutils for mkdir/touch in %%post
|
|
|
|
|
2005-12-22 00:30:11 +00:00
|
|
|
* Wed Dec 21 2005 Carl Worth <cworth@redhat.com> - 2.3.93-2
|
|
|
|
- Fix to create /var/cache/fontconfig/stamp in the post install stage.
|
|
|
|
|
2005-12-21 19:57:05 +00:00
|
|
|
* Wed Dec 21 2005 Carl Worth <cworth@redhat.com> - 2.3.93-1
|
|
|
|
- New upstream version.
|
|
|
|
|
2005-12-13 23:35:56 +00:00
|
|
|
* Tue Dec 13 2005 Carl Worth <cworth@redhat.com> - 2.3.92.cvs20051129-3
|
|
|
|
- Disable hinting for Lohit Gujarati
|
|
|
|
|
2005-12-09 23:17:58 +00:00
|
|
|
* Fri Dec 9 2005 Carl Worth <cworth@redhat.com> - 2.3.92.cvs20051129-2
|
|
|
|
- Add two new Chinese font names to the default fonts.conf file:
|
2012-03-21 10:35:21 +00:00
|
|
|
AR PL ShanHeiSun Uni
|
|
|
|
AR PL Zenkai Uni
|
2005-12-09 23:17:58 +00:00
|
|
|
|
2005-12-09 22:40:26 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Tue Nov 29 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92.cvs20051129-1
|
2005-11-29 14:05:07 +00:00
|
|
|
- Update to a newer cvs snapshot
|
|
|
|
|
2005-11-19 22:03:46 +00:00
|
|
|
* Sat Nov 19 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92.cvs20051119-1
|
|
|
|
- Update to a newer cvs snapshot
|
|
|
|
|
2005-11-16 20:34:35 +00:00
|
|
|
* Wed Nov 16 2005 Bill Nottingham <notting@redhat.com> - 2.3.93-3
|
|
|
|
- modular X moved fonts from /usr/X11R6/lib/X11/fonts to
|
2005-11-16 20:37:07 +00:00
|
|
|
/usr/share/X11/fonts, adjust %%configure accordingly and
|
|
|
|
conflict with older font packages
|
2005-11-16 20:34:35 +00:00
|
|
|
|
2005-11-09 17:07:05 +00:00
|
|
|
* Wed Nov 9 2005 Carl Worth <cworth@redhat.com> - 2.3.92-2
|
|
|
|
- Remove inadvertent rejection of Luxi Mono from 40-blacklist-fonts.conf.
|
|
|
|
Fixes #172437
|
|
|
|
|
2005-11-04 19:54:33 +00:00
|
|
|
* Fri Nov 4 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92-1
|
|
|
|
- Update to 2.3.92
|
|
|
|
|
2013-02-08 10:46:50 +00:00
|
|
|
* Mon Oct 31 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051031-1
|
2005-10-31 17:27:19 +00:00
|
|
|
- Update to a newer cvs snapshot
|
|
|
|
- Add a patch which should help to understand broken cache problems
|
|
|
|
|
2005-10-21 20:13:00 +00:00
|
|
|
* Fri Oct 21 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051017-2
|
|
|
|
- Add new Chinese fonts
|
2005-10-20 19:50:21 +00:00
|
|
|
- Fix the 40-blacklist-fonts.conf file to use the documented
|
|
|
|
fonts.conf syntax, and exclude the Hershey fonts by family
|
|
|
|
name.
|
|
|
|
|
2005-10-17 14:47:04 +00:00
|
|
|
* Fri Oct 14 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051017-1
|
|
|
|
- Update to the mmap branch of fontconfig
|
|
|
|
|
2005-07-25 21:18:26 +00:00
|
|
|
* Fri Jul 22 2005 Kristian Høgsberg <krh@redhat.com> - 2.3.2-1
|
|
|
|
- Update to fontconfig-2.3.2. Drop
|
|
|
|
|
|
|
|
fontconfig-2.1-slighthint.patch,
|
|
|
|
fontconfig-2.2.3-timestamp.patch,
|
|
|
|
fontconfig-2.2.3-names.patch,
|
|
|
|
fontconfig-2.2.3-ta-pa-orth.patch, and
|
|
|
|
fontconfig-2.2.3-timestamp.patch,
|
|
|
|
|
|
|
|
as they are now merged upstream.
|
|
|
|
|
|
|
|
- Fold fontconfig-2.2.3-add-sazanami.patch into
|
|
|
|
fontconfig-2.3.2-defaultconfig.patch and split rules to disable CJK
|
|
|
|
hinting out into /etc/fonts/conf.d/50-no-hint-fonts.conf.
|
|
|
|
|
|
|
|
- Drop fontconfig-0.0.1.020826.1330-blacklist.patch and use the new
|
|
|
|
rejectfont directive to reject those fonts in 40-blacklist-fonts.conf.
|
|
|
|
|
|
|
|
- Add fontconfig-2.3.2-only-parse-conf-files.patch to avoid parsing
|
|
|
|
.rpmsave files.
|
|
|
|
|
2005-07-26 02:43:08 +00:00
|
|
|
- Renable s390 documentation now that #97079 has been fixed and add
|
|
|
|
BuildRequires: for docbook-utils and docbook-utils-pdf.
|
|
|
|
|
|
|
|
- Drop code to iconv and custom install man pages, upstream does the
|
|
|
|
right thing now.
|
|
|
|
|
2005-07-26 03:42:15 +00:00
|
|
|
- Add workaround from hell to make elinks cooperate so we can build
|
|
|
|
txt documentation.
|
|
|
|
|
2005-04-19 20:51:00 +00:00
|
|
|
* Tue Apr 19 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-13
|
|
|
|
- Add another font family name Sazanami Gothic/Mincho (#148748)
|
|
|
|
|
2005-03-04 17:12:45 +00:00
|
|
|
* Fri Mar 4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-12
|
|
|
|
- Rebuild
|
|
|
|
|
2005-03-04 17:10:09 +00:00
|
|
|
* Fri Mar 4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-11
|
|
|
|
- Rebuild
|
|
|
|
|
2005-03-04 17:06:23 +00:00
|
|
|
* Fri Mar 4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-10
|
|
|
|
- Rebuild
|
|
|
|
|
2005-03-04 16:51:47 +00:00
|
|
|
* Fri Mar 4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-9
|
|
|
|
- Disable docs for s390 for now
|
|
|
|
|
2005-03-04 16:18:08 +00:00
|
|
|
* Fri Mar 4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-8
|
2005-03-04 16:14:36 +00:00
|
|
|
- Rebuild
|
|
|
|
|
2004-12-01 20:14:42 +00:00
|
|
|
* Wed Dec 1 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-6
|
|
|
|
- Sleep a second before the exit of fc-cache to fix problems with fast
|
|
|
|
serial installs of fonts (#140335)
|
|
|
|
- Turn off hinting for Lohit Hindi/Bengali/Punjabi (#139816)
|
|
|
|
|
2004-10-19 23:20:59 +00:00
|
|
|
* Tue Oct 19 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-5
|
|
|
|
- Add Lohit fonts for Indic languages (#134492)
|
|
|
|
- Add Punjabi converage, fix Tamil coverage
|
|
|
|
|
2004-09-22 15:20:54 +00:00
|
|
|
* Wed Sep 22 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-4
|
|
|
|
- Update fonts-hebrew names to include CLM suffix
|
|
|
|
|
2004-09-09 04:54:39 +00:00
|
|
|
* Thu Sep 2 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-3
|
|
|
|
- Backport code from head branch of fontconfig CVS to parse names
|
|
|
|
for postscript fonts (fixes #127500, J. J. Ramsey)
|
|
|
|
- Own /usr/share/fonts (#110956, David K. Levine)
|
|
|
|
- Add KacstQura to serif/sans-serif/monospace aliases (#101182)
|
|
|
|
|
2004-09-09 04:54:31 +00:00
|
|
|
* Mon Aug 16 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-2
|
|
|
|
- Don't run fc-cache if the binary isn't there (#128072, tracked
|
|
|
|
down by Jay Turner)
|
|
|
|
|
2004-09-09 04:54:28 +00:00
|
|
|
* Tue Aug 3 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-1
|
|
|
|
- Upgrade to 2.2.3
|
|
|
|
- Convert man pages to UTF-8 (#108730, Peter van Egdom)
|
|
|
|
- Renable docs on s390
|
|
|
|
|
|
|
|
* Mon Jul 26 2004 Owen Taylor <otaylor@redhat.com> - 2.2.1-12
|
|
|
|
- Rebuild for RHEL
|
|
|
|
- Back freetype required version down to 2.1.4
|
|
|
|
|
2004-09-09 04:53:37 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:53:29 +00:00
|
|
|
* Mon Apr 19 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-10
|
|
|
|
- Require recent freetype (#109592, Peter Oliver)
|
|
|
|
- Remove fonts.conf timestamp to fix multiarch conflict (#118182)
|
|
|
|
- Disable hinting for Mukti Narrow (#120915, Sayamindu Dasgupta)
|
|
|
|
|
2004-09-09 04:53:20 +00:00
|
|
|
* Wed Mar 10 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-8.1
|
|
|
|
- Rebuild
|
|
|
|
|
|
|
|
* Wed Mar 10 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-8.0
|
|
|
|
- Add Albany/Cumberland/Thorndale as fallbacks for Microsoft core fonts and
|
|
|
|
as non-preferred alternatives for Sans/Serif/Monospace
|
|
|
|
- Fix FreeType includes for recent FreeType
|
|
|
|
|
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:52:09 +00:00
|
|
|
* Mon Sep 22 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-6.0
|
|
|
|
- Should have been passing --with-add-fonts, not --with-add-dirs to
|
|
|
|
configure ... caused wrong version of Luxi to be used. (#100862)
|
|
|
|
|
|
|
|
* Fri Sep 19 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-5.0
|
|
|
|
- Tweak fonts.conf to get right hinting for CJK fonts (#97337)
|
|
|
|
|
|
|
|
* Tue Jun 17 2003 Bill Nottingham <notting@redhat.com> 2.2.1-3
|
|
|
|
- handle null config->cache correctly
|
|
|
|
|
|
|
|
* Thu Jun 12 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-2
|
|
|
|
- Update default config to include Hebrew fonts (#90501, Dov Grobgeld)
|
|
|
|
|
|
|
|
* Tue Jun 10 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-2
|
|
|
|
- As a workaround disable doc builds on s390
|
|
|
|
|
|
|
|
* Mon Jun 9 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-1
|
|
|
|
- Version 2.2.1
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:50:39 +00:00
|
|
|
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- debuginfo rebuild
|
|
|
|
|
|
|
|
* Mon Feb 24 2003 Owen Taylor <otaylor@redhat.com> 2.1-8
|
|
|
|
- Fix segfault in fc-cache from .dircache patch
|
|
|
|
|
2004-09-09 04:50:33 +00:00
|
|
|
* Mon Feb 24 2003 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Back out patch that wrote fonts.conf entries that crash RH-8.0
|
|
|
|
gnome-terminal, go with patch from fontconfig CVS instead.
|
|
|
|
(#84863)
|
|
|
|
|
|
|
|
* Tue Feb 11 2003 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Move fontconfig man page to main package, since it contains non-devel
|
|
|
|
information (#76189)
|
|
|
|
- Look in the OTF subdirectory of /usr/X11R6/lib/fonts as well
|
|
|
|
so we find Syriac fonts (#82627)
|
|
|
|
|
|
|
|
* Thu Feb 6 2003 Matt Wilson <msw@redhat.com> 2.1-5
|
|
|
|
- modified fontconfig-0.0.1.020626.1517-fontdir.patch to hard code
|
|
|
|
/usr/X11R6/lib/X11/fonts instead of using $(X_FONT_DIR). This is
|
|
|
|
because on lib64 machines, fonts are not in /usr/X11R6/lib64/....
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Jan 15 2003 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Try a different tack when fixing cache problem
|
|
|
|
|
|
|
|
* Tue Jan 14 2003 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Try to fix bug where empty cache entries would be found in
|
|
|
|
~/.fonts.cache-1 during scanning (#81335)
|
|
|
|
|
|
|
|
* Thu Nov 21 2002 Mike A. Harris <mharris@redhat.com> 2.1-1
|
|
|
|
- Updated to version 2.1
|
|
|
|
- Updated slighthint patch to fontconfig-2.1-slighthint.patch
|
|
|
|
- Updated freetype version required to 2.1.2-7
|
2004-09-09 04:49:53 +00:00
|
|
|
|
2004-09-09 04:49:30 +00:00
|
|
|
* Mon Sep 2 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 2.0
|
2004-09-09 04:49:48 +00:00
|
|
|
- Correct capitalization/spacing for ZYSong18030 name (#73272)
|
2004-09-09 04:49:30 +00:00
|
|
|
|
2004-09-09 04:49:12 +00:00
|
|
|
* Fri Aug 30 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Blacklist fonts from ghostscript-fonts that don't render correctly
|
|
|
|
|
2004-09-09 04:48:57 +00:00
|
|
|
* Mon Aug 26 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Upgrade to fcpackage rc3
|
2004-09-09 04:49:04 +00:00
|
|
|
- Fix bug in comparisons for xx_XX language tags
|
|
|
|
- Compensate for a minor config file change in rc3
|
2004-09-09 04:48:57 +00:00
|
|
|
|
2004-09-09 04:48:08 +00:00
|
|
|
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
|
2004-09-09 04:48:50 +00:00
|
|
|
- Add an explicit PreReq for freetype
|
|
|
|
- Move fonts we don't ship to the end of the fonts.conf aliases so
|
|
|
|
installing them doesn't change the look.
|
|
|
|
|
|
|
|
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Memory leak fix when parsing config files
|
2004-09-09 04:48:08 +00:00
|
|
|
- Set rh_prefer_bitmaps for .ja fonts to key off of in Xft
|
|
|
|
- Fix some groff warnings for fontconfig.man (#72138)
|
|
|
|
|
2004-09-09 04:47:22 +00:00
|
|
|
* Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Try once more to get the right default Sans-serif font :-(
|
|
|
|
- Switch the Sans/Monospace aliases for Korean to Gulim, not Dotum
|
|
|
|
|
|
|
|
* Wed Aug 14 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Fix %%post
|
|
|
|
|
|
|
|
* Tue Aug 13 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Fix lost Luxi Sans default
|
|
|
|
|
|
|
|
* Mon Aug 12 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Upgrade to rc2
|
|
|
|
- Turn off hinting for all CJK fonts
|
|
|
|
- Fix typo in %%post
|
|
|
|
- Remove the custom language tag stuff in favor of Keith's standard
|
|
|
|
solution.
|
|
|
|
|
|
|
|
* Mon Jul 15 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Prefer Luxi Sans to Nimbus Sans again
|
|
|
|
|
|
|
|
* Fri Jul 12 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Add FC_HINT_STYLE to FcBaseObjectTypes
|
|
|
|
- Switch Chinese fonts to always using Sung-ti / Ming-ti, and never Kai-ti
|
|
|
|
- Add ZYSong18030 to aliases (#68428)
|
|
|
|
|
|
|
|
* Wed Jul 10 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Fix a typo in the langtag patch (caught by Erik van der Poel)
|
|
|
|
|
|
|
|
* Wed Jul 3 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Add FC_HINT_STYLE tag
|
|
|
|
|
|
|
|
* Thu Jun 27 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- New upstream version, with fix for problems with
|
|
|
|
ghostscript-fonts (Fonts don't work for Qt+CJK,
|
|
|
|
etc.)
|
|
|
|
|
|
|
|
* Wed Jun 26 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- New upstream version, fixing locale problem
|
|
|
|
|
|
|
|
* Mon Jun 24 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Add a hack where we set the "language" fontconfig property based on the locale, then
|
|
|
|
we conditionalize base on that in the fonts.conf file.
|
|
|
|
|
|
|
|
* Sun Jun 23 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- New upstream version
|
|
|
|
|
|
|
|
* Tue Jun 18 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Fix crash from FcObjectSetAdd
|
|
|
|
|
|
|
|
* Tue Jun 11 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- make fonts.conf %%config, not %%config(noreplace)
|
|
|
|
- Another try at the CJK aliases
|
|
|
|
- Add some CJK fonts to the config
|
|
|
|
- Prefer Luxi Mono to Nimbus Mono
|
|
|
|
|
|
|
|
* Mon Jun 10 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- New upstream version
|
|
|
|
- Fix matching for bitmap fonts
|
|
|
|
|
|
|
|
* Mon Jun 3 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- New version, new upstream mega-tarball
|
|
|
|
|
|
|
|
* Tue May 28 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Fix problem with FcConfigSort
|
|
|
|
|
|
|
|
* Fri May 24 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Initial specfile
|
|
|
|
|