Blame SPECS/pango.spec

9301b1
%global glib2_version 2.33.12
9301b1
%global pkgconfig_version 0.12
9301b1
%global freetype_version 2.1.5
9301b1
%global fontconfig_version 2.10.91
9301b1
%global cairo_version 1.7.6
9301b1
%global libthai_version 0.1.9
9301b1
%global harfbuzz_version 0.9.9
9301b1
%global bin_version 1.8.0
9301b1
9301b1
Summary: System for layout and rendering of internationalized text
9301b1
Name: pango
47b975
Version: 1.36.8
47b975
Release: 2%{?dist}
9301b1
License: LGPLv2+
9301b1
Group: System Environment/Libraries
9301b1
#VCS: git:git://git.gnome.org/pango
47b975
Source: http://download.gnome.org/sources/pango/1.36/pango-%{version}.tar.xz
9301b1
URL: http://www.pango.org
9301b1
9301b1
BuildRequires: glib2-devel >= %{glib2_version}
9301b1
BuildRequires: pkgconfig >= %{pkgconfig_version}
9301b1
BuildRequires: freetype-devel >= %{freetype_version}
9301b1
BuildRequires: fontconfig-devel >= %{fontconfig_version}
9301b1
BuildRequires: libXft-devel
9301b1
BuildRequires: cairo-devel >= %{cairo_version}
9301b1
BuildRequires: libthai-devel >= %{libthai_version}
9301b1
BuildRequires: harfbuzz-devel >= %{harfbuzz_version}
9301b1
BuildRequires: gobject-introspection-devel
9301b1
BuildRequires: cairo-gobject-devel
9301b1
# Bootstrap requirements
9301b1
BuildRequires: gnome-common intltool gtk-doc
47b975
BuildRequires: help2man
47b975
47b975
Requires: glib2%{?_isa} >= %{glib2_version}
47b975
Requires: freetype%{?_isa} >= %{freetype_version}
47b975
Requires: fontconfig%{?_isa} >= %{fontconfig_version}
47b975
Requires: cairo%{?_isa} >= %{cairo_version}
47b975
Requires: libthai%{?_isa} >= %{libthai_version}
9301b1
9301b1
%description
9301b1
Pango is a library for laying out and rendering of text, with an emphasis
9301b1
on internationalization. Pango can be used anywhere that text layout is needed,
9301b1
though most of the work on Pango so far has been done in the context of the
9301b1
GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+.
9301b1
9301b1
Pango is designed to be modular; the core Pango layout engine can be used
9301b1
with different font backends.
9301b1
9301b1
The integration of Pango with Cairo provides a complete solution with high
9301b1
quality text handling and graphics rendering.
9301b1
9301b1
%package devel
9301b1
Summary: Development files for pango
9301b1
Group: Development/Libraries
9301b1
Requires: pango%{?_isa} = %{version}-%{release}
47b975
Requires: glib2-devel%{?_isa} >= %{glib2_version}
47b975
Requires: freetype-devel%{?_isa} >= %{freetype_version}
47b975
Requires: fontconfig-devel%{?_isa} >= %{fontconfig_version}
47b975
Requires: cairo-devel%{?_isa} >= %{cairo_version}
9301b1
9301b1
%description devel
9301b1
The pango-devel package includes the header files and developer documentation
9301b1
for the pango package.
9301b1
47b975
%package tests
47b975
Summary: Tests for the %{name} package
47b975
Group: Development/Libraries
47b975
Requires: %{name}%{?_isa} = %{version}-%{release}
47b975
47b975
%description tests
47b975
The %{name}-tests package contains tests that can be used to verify
47b975
the functionality of the installed %{name} package.
47b975
47b975
9301b1
%prep
9301b1
%setup -q -n pango-%{version}
9301b1
9301b1
%build
9301b1
47b975
# Force regeneration of the man page
47b975
rm pango-view/pango-view.1.in
47b975
9301b1
# We try hard to not link to libstdc++
9301b1
(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi;
9301b1
 %configure $CONFIGFLAGS \
9301b1
          --enable-doc-cross-references \
47b975
          --with-included-modules=basic-fc \
47b975
          --enable-installed-tests
47b975
)
9301b1
make %{?_smp_mflags} V=1
9301b1
9301b1
9301b1
%install
9301b1
9301b1
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
9301b1
9301b1
# Remove files that should not be packaged
9301b1
rm $RPM_BUILD_ROOT%{_libdir}/*.la
9301b1
rm $RPM_BUILD_ROOT%{_libdir}/pango/*/modules/*.la
9301b1
9301b1
PANGOXFT_SO=$RPM_BUILD_ROOT%{_libdir}/libpangoxft-1.0.so
9301b1
if ! test -e $PANGOXFT_SO; then
9301b1
        echo "$PANGOXFT_SO not found; did not build with Xft support?"
9301b1
        ls $RPM_BUILD_ROOT%{_libdir}
9301b1
        exit 1
9301b1
fi
9301b1
9301b1
# We need to have separate 32-bit and 64-bit pango-querymodules binaries
9301b1
# for places where we have two copies of the Pango libraries installed.
9301b1
# (we might have x86_64 and i686 packages on the same system, for example.)
9301b1
mv $RPM_BUILD_ROOT%{_bindir}/pango-querymodules $RPM_BUILD_ROOT%{_bindir}/pango-querymodules-%{__isa_bits}
9301b1
9301b1
# and add a man page too
9301b1
echo ".so man1/pango-querymodules.1" > $RPM_BUILD_ROOT%{_mandir}/man1/pango-querymodules-%{__isa_bits}.1
9301b1
9301b1
touch $RPM_BUILD_ROOT%{_libdir}/pango/%{bin_version}/modules.cache
9301b1
9301b1
%post
9301b1
/sbin/ldconfig
9301b1
/usr/bin/pango-querymodules-%{__isa_bits} --update-cache || :
9301b1
9301b1
%postun
9301b1
/sbin/ldconfig
9301b1
if test $1 -gt 0; then
9301b1
  /usr/bin/pango-querymodules-%{__isa_bits} --update-cache || :
9301b1
fi
9301b1
9301b1
%files
9301b1
%doc README AUTHORS COPYING NEWS
9301b1
%doc pango-view/HELLO.txt
9301b1
%{_libdir}/libpango*-*.so.*
9301b1
%{_bindir}/pango-querymodules*
9301b1
%{_bindir}/pango-view
9301b1
%{_mandir}/man1/pango-view.1.gz
9301b1
%{_mandir}/man1/pango-querymodules*
9301b1
%dir %{_libdir}/pango
9301b1
%dir %{_libdir}/pango/%{bin_version}
9301b1
%{_libdir}/pango/%{bin_version}/modules
9301b1
%ghost %{_libdir}/pango/%{bin_version}/modules.cache
9301b1
%{_libdir}/girepository-1.0/Pango-1.0.typelib
9301b1
%{_libdir}/girepository-1.0/PangoCairo-1.0.typelib
9301b1
%{_libdir}/girepository-1.0/PangoFT2-1.0.typelib
9301b1
%{_libdir}/girepository-1.0/PangoXft-1.0.typelib
9301b1
9301b1
9301b1
%files devel
9301b1
%{_libdir}/libpango*.so
9301b1
%{_includedir}/*
9301b1
%{_libdir}/pkgconfig/*
9301b1
%doc %{_datadir}/gtk-doc/html/pango
9301b1
%{_datadir}/gir-1.0/Pango-1.0.gir
9301b1
%{_datadir}/gir-1.0/PangoCairo-1.0.gir
9301b1
%{_datadir}/gir-1.0/PangoFT2-1.0.gir
9301b1
%{_datadir}/gir-1.0/PangoXft-1.0.gir
9301b1
9301b1
47b975
%files tests
47b975
%{_libexecdir}/installed-tests/%{name}
47b975
%{_datadir}/installed-tests
47b975
47b975
9301b1
%changelog
47b975
* Thu May 14 2015 Matthias Clasen <mclasen@redhat.com> - 1.36.8-2
47b975
- Regenerate man page for pango-view
47b975
- Related: #1174436
47b975
47b975
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 1.36.8-1
47b975
- Update to 1.36.8
47b975
- Resolves: #1174436
47b975
32f0db
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.34.1-5
32f0db
- Mass rebuild 2014-01-24
32f0db
32f0db
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.34.1-4
32f0db
- Mass rebuild 2013-12-27
32f0db
9301b1
* Fri Sep 20 2013 Akira TAGOH <tagoh@redhat.com> - 1.34.1-3
9301b1
- Fix the strict aliasing warnings (#884136)
9301b1
9301b1
* Fri Aug 23 2013 Akira TAGOH <tagoh@redhat.com> - 1.34.1-2
9301b1
- Fix duplicate file list for modules.cache
9301b1
- s/%%define/%%global/g
9301b1
- Fix bogus date in %%changelog
9301b1
- Do not suppress the detailed build log.
9301b1
9301b1
* Mon May 13 2013 Richard Hughes <rhughes@redhat.com> - 1.34.1-1
9301b1
- Update to 1.34.1
9301b1
9301b1
* Wed May  8 2013 Matthias Clasen <mclasen@redhat.com> - 1.34.0-2
9301b1
- Make man pango-query-modules-64 work
9301b1
9301b1
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 1.34.0-1
9301b1
- Update to 1.34.0
9301b1
9301b1
* Tue Mar 19 2013 Richard Hughes <rhughes@redhat.com> - 1.33.9-1
9301b1
- Update to 1.33.9
9301b1
9301b1
* Tue Mar  5 2013 Matthias Clasen <mclasen@redhat.com> - 1.33.8-1
9301b1
- Update to 1.33.8
9301b1
9301b1
* Tue Feb 05 2013 Kalev Lember <kalevlember@gmail.com> - 1.33.7-1
9301b1
- Update to 1.33.7
9301b1
9301b1
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 1.32.6-1
9301b1
- Update to 1.32.6
9301b1
9301b1
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 1.32.5-1
9301b1
- Update to 1.32.5
9301b1
9301b1
* Wed Nov 21 2012 Richard Hughes <hughsient@gmail.com> - 1.32.3-1
9301b1
- Update to 1.32.3
9301b1
9301b1
* Wed Nov 14 2012 Kalev Lember <kalevlember@gmail.com> - 1.32.2-1
9301b1
- Update to 1.32.2
9301b1
9301b1
* Thu Sep 27 2012 Matthias Clasen <mclasen@redhat.com> - 1.32.1-1
9301b1
- Update to 1.32.1
9301b1
- Move module cache file to /usr/lib64/pango/1.8.0/modules.cache
9301b1
- No more /etc/pango
9301b1
9301b1
* Sat Aug 25 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.31.0-3
9301b1
- Fix %%postun error on multilib erase (#684729).
9301b1
9301b1
* Wed Aug 22 2012 Parag Nemade <paragn AT fedoraproject DOT org> - 1.31.0-2
9301b1
- Add missing BR:harfbuzz-devel
9301b1
- Remove file pangox.aliases as pangox support is now removed
9301b1
9301b1
* Tue Aug 21 2012 Richard Hughes <hughsient@gmail.com> - 1.31.0-1
9301b1
- Update to 1.31.0
9301b1
9301b1
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.30.1-2
9301b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9301b1
9301b1
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 1.30.1-1
9301b1
- Update to 1.30.1
9301b1
9301b1
* Sat May 19 2012 Matthias Clasen <mclasen@redhat.com> - 1.30.0-2
9301b1
- Fix up scriptlet dependencies (#684729)
9301b1
9301b1
* Wed Mar 28 2012 Richard Hughes <hughsient@gmail.com> - 1.30.0-1
9301b1
- Update to 1.30.0
9301b1
9301b1
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.29.5-2
9301b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9301b1
9301b1
* Tue Nov 22 2011 Matthias Clasen <mclasen@redhat.com> - 1.29.5-1
9301b1
- Update to 1.29.5
9301b1
9301b1
* Wed Sep 28 2011 Ray <rstrode@redhat.com> - 1.29.4-1
9301b1
- Update to 1.29.4
9301b1
9301b1
* Wed Aug 17 2011 Kalev Lember <kalevlember@gmail.com> - 1.29.3-2
9301b1
- Fix a crash in the fallback engine
9301b1
9301b1
* Fri Jun 17 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.29.3-1
9301b1
- Update to 1.29.3
9301b1
9301b1
* Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.28.4-2
9301b1
- Stop using G_CONST_RETURN
9301b1
9301b1
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> - 1.28.4-1
9301b1
- Update to 1.28.4
9301b1
9301b1
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.28.3-2
9301b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9301b1
9301b1
* Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 1.28.3-1
9301b1
- Update 1.28.3
9301b1
9301b1
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 1.28.1-6
9301b1
- Rebuild against newer gobject-introspection
9301b1
9301b1
* Fri Sep 03 2010 Parag Nemade <paragn AT fedoraproject.org> - 1.28.1-5
9301b1
- Merge Review cleanup (rh#226229)
9301b1
9301b1
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 1.28.1-4
9301b1
- Rebuild for new gobject-introspection
9301b1
9301b1
* Tue Jun 29 2010 Colin Walters <walters@verbum.org> - 1.28.1-3
9301b1
- Remove usage of chrpath, should no longer be needed
9301b1
9301b1
* Tue Jun 29 2010 Colin Walters <walters@verbum.org> - 1.28.1-2
9301b1
- Support builds from snapshots
9301b1
9301b1
* Tue Jun 15 2010 Matthias Clasen <mclasen@redhat.com> - 1.28.1-1
9301b1
- Update to 1.28.1
9301b1
9301b1
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> - 1.28.0-2
9301b1
- Enable introspection
9301b1
9301b1
* Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 1.28.0-1
9301b1
- Update to 1.28.0
9301b1
9301b1
* Mon Feb 22 2010 Matthias Clasen <mclasen@redhat.com> - 1.27.1-1
9301b1
- Update to 1.27.1
9301b1
9301b1
* Wed Dec 16 2009 Matthias Clasen <mclasen@redhat.com> - 1.26.2-1
9301b1
- Update to 1.26.2
9301b1
- See http://download.gnome.org/sources/pango/1.26/pango-1.26.2.news
9301b1
9301b1
* Thu Dec  3 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.26.1-1
9301b1
- 1.26.1
9301b1
9301b1
* Mon Sep 21 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.26.0-1
9301b1
- 1.26.0
9301b1
9301b1
* Tue Sep  8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.6-1
9301b1
- 1.25.6
9301b1
9301b1
* Mon Aug 24 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.5-1
9301b1
- 1.25.5
9301b1
9301b1
* Thu Aug 20 2009 Karsten Hopp <karsten@redhat.com> 1.25.4-2
9301b1
- fix autoconf host on s390x
9301b1
9301b1
* Mon Aug 17 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.4-1
9301b1
- 1.25.4
9301b1
9301b1
* Tue Aug 11 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.3-1
9301b1
- 1.25.3
9301b1
9301b1
* Tue Aug 11 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.2-1
9301b1
- 1.25.2
9301b1
9301b1
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-7
9301b1
- Yes, I am stupid.
9301b1
9301b1
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-6
9301b1
- One more try
9301b1
9301b1
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-5
9301b1
- Remove -fexceptions from CXXFLAGS actually
9301b1
- Hopefully builds this time
9301b1
9301b1
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-4
9301b1
- Remove -fexceptions from RPM_OPT_FLAGS
9301b1
- Hopefully builds this time
9301b1
9301b1
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-3
9301b1
- Remove pango-1.25.1-no-hb-main.patch
9301b1
- Add pango-1.25.1-cxx.patch
9301b1
- Hopefully builds this time
9301b1
9301b1
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-2
9301b1
- Add pango-1.25.1-no-hb-main.patch to fix build on x86-64
9301b1
9301b1
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-1
9301b1
- Update to 1.25.1
9301b1
9301b1
* Wed Jul 22 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.24.5-1
9301b1
- Update to 1.24.5
9301b1
9301b1
* Tue Jun 30 2009 Matthias Clasen <mclasen@redhat.com> - 1.24.4-1
9301b1
- Update to 1.24.4
9301b1
9301b1
* Wed Jun 24 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.24.3-1
9301b1
- Update to 1.24.3
9301b1
9301b1
* Fri May 15 2009 Karsten Hopp <karsten@redhat.com> 1.24.2-1
9301b1
- Update to 1.24.2
9301b1
- See http://download.gnome.org/sources/pango/1.24/pango-1.24.2.news
9301b1
9301b1
* Sat Apr 18 2009 Karsten Hopp <karsten@redhat.com> 1.24.1-1.1
9301b1
- autoconf uses ibm-linux not redhat-linux (s390x)
9301b1
9301b1
* Mon Apr 13 2009 Matthias Clasen <mclasen@redhat.com> - 1.24.1-1
9301b1
- Update to 1.24.1
9301b1
- See http://download.gnome.org/sources/pango/1.24/pango-1.24.1.news
9301b1
9301b1
* Thu Mar 26 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.24.0-2
9301b1
- Remove weird Requires(pre).
9301b1
- Resolves #486641
9301b1
9301b1
* Mon Mar 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.24.0-1
9301b1
- Update to 1.24.0
9301b1
- Package pango-view.1.gz
9301b1
9301b1
* Wed Mar 11 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.23.0-4.g5317893
9301b1
- Push changes from git
9301b1
9301b1
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.23.0-3
9301b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
9301b1
9301b1
* Wed Feb  4 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.23.0-2
9301b1
- Move pango-view from pango-devel to pango
9301b1
9301b1
* Tue Feb  3 2009 Matthias Clasen <mclasen@redhat.com> - 1.23.0-1
9301b1
- Update to 1.23.0
9301b1
9301b1
* Tue Dec 16 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.4-1
9301b1
- Update to 1.22.4
9301b1
9301b1
* Sun Dec  7 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.22.3-2
9301b1
- Rebuild for pkgconfig provides
9301b1
9301b1
* Mon Nov 24 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.3-1
9301b1
- Update to 1.22.3
9301b1
9301b1
* Wed Nov 12 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.2-1
9301b1
- Update to 1.22.2
9301b1
9301b1
* Mon Oct 20 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.1-1
9301b1
- Update to 1.22.1
9301b1
9301b1
* Mon Sep 22 2008 Behdad Esfahbod <besfahbo@redhat.com> - 1.22.0-1.1
9301b1
- Rebuild against cairo 1.7.6
9301b1
- Update cairo and glib required versions
9301b1
9301b1
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.0-1
9301b1
- Update to 1.22.0
9301b1
9301b1
* Mon Sep  8 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.6-1
9301b1
- Update to 1.21.6
9301b1
9301b1
* Tue Aug 26 2008 Behdad Esfahbod <besfahbo@redhat.com> - 1.21.5-1
9301b1
- Update to 1.21.5
9301b1
9301b1
* Mon Aug 11 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.4-1
9301b1
- Update to 1.21.4
9301b1
9301b1
* Tue Jun 17 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.3-1
9301b1
- Update to 1.21.3
9301b1
9301b1
* Tue Jun  3 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.2-1
9301b1
- Update to 1.21.2
9301b1
9301b1
* Mon May 26 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.21.1-2
9301b1
- add sparc64 to multilib handling
9301b1
9301b1
* Tue May 13 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.1-1
9301b1
- Update to 1.21.1
9301b1
9301b1
* Fri Apr 25 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.0-1
9301b1
- Update to 1.21.0
9301b1
9301b1
* Tue Apr  8 2008 Matthias Clasen <mclasen@redhat.com> - 1.20.1-1
9301b1
- Update to 1.20.1
9301b1
9301b1
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 1.20.0-1
9301b1
- Update to 1.20.0
9301b1
9301b1
* Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 1.19.4-1
9301b1
- Update to 1.19.4
9301b1
9301b1
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.19.3-3
9301b1
- Autorebuild for GCC 4.3
9301b1
9301b1
* Tue Jan 29 2008 Behdad Esfahbod <besfahbo@redhat.com> - 1.19.3-2
9301b1
- Bump libthai requirement.
9301b1
9301b1
* Mon Jan 21 2008 Behdad Esfahbod <besfahbo@redhat.com> - 1.19.3-1
9301b1
- Update to 1.19.3
9301b1
9301b1
* Tue Dec 18 2007 Matthias Clasen <mclasne@redhat.com> - 1.19.2-1
9301b1
- Update to 1.19.2
9301b1
9301b1
* Thu Dec  6 2007 Matthias Clasen <mclasne@redhat.com> - 1.19.1-1
9301b1
- Update to 1.19.1
9301b1
9301b1
* Wed Oct 31 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.19.0-1
9301b1
- Update to 1.19.0
9301b1
9301b1
* Mon Oct 15 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.3-1
9301b1
- Update to 1.18.3 (make Nafees Nastaliq font work)
9301b1
9301b1
* Tue Sep 18 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.2-1
9301b1
- Update to 1.18.2
9301b1
9301b1
* Tue Sep  4 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.1-1
9301b1
- Update to 1.18.1
9301b1
9301b1
* Thu Aug 23 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.18.0-1
9301b1
- Update to 1.18.0
9301b1
9301b1
* Wed Aug 22 2007 Adam Jackson <ajax@redhat.com> - 1.17.5-3
9301b1
- Rebuild for PPC toolchain bug
9301b1
9301b1
* Thu Aug  2 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.5-2
9301b1
- Update license field
9301b1
- Don't install ChangeLog
9301b1
9301b1
* Mon Jul 30 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.5-1
9301b1
- Update to 1.17.5
9301b1
9301b1
* Tue Jul 03 2007 Behdad Esfahbod <besfahbo@redhat.com>
9301b1
- Distribute NEWS
9301b1
9301b1
* Mon Jul  2 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.4-1
9301b1
- Update to 1.17.4
9301b1
9301b1
* Mon Jul  2 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.3-1
9301b1
- Update to 1.17.3
9301b1
- Drop ancient Obsoletes
9301b1
9301b1
* Mon Jun  4 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.2-1
9301b1
- Update to 1.17.2
9301b1
9301b1
* Mon May 28 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.1-1
9301b1
- Update to 1.17.1
9301b1
9301b1
* Sat May 19 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.0-1
9301b1
- Update to 1.17.0
9301b1
9301b1
* Fri Apr 27 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.16.4-1
9301b1
- Update to 1.16.4.
9301b1
- Enable doc rebuilding to get cross-references right.
9301b1
9301b1
* Tue Apr 10 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.16.2-1
9301b1
- Update to 1.16.2.
9301b1
9301b1
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 1.16.1-1
9301b1
- Update to 1.16.1
9301b1
9301b1
* Tue Feb 27 2007 Matthias Clasen <mclasen@redhat.com> - 1.16.0-1
9301b1
- Update to 1.16.0
9301b1
9301b1
* Tue Feb 13 2007 Matthias Clasen <mclasen@redhat.com> - 1.15.6-1
9301b1
- Update to 1.15.6
9301b1
9301b1
* Mon Jan 22 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.5-1
9301b1
- Update to 1.15.5.
9301b1
- Drop upstreamed pango-1.15.4-slighthint.patch
9301b1
9301b1
* Thu Jan 18 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-5
9301b1
- Again... HELLO.txt is moved.
9301b1
9301b1
* Thu Jan 18 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-4
9301b1
- Bump again.  I accidentally tagged 1.15.3-4 as 1.15.4-3 previously :(.
9301b1
9301b1
* Thu Jan 18 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-3
9301b1
- s/HELLO.utf8/HELLO.txt/ to match upstream.
9301b1
9301b1
* Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-2
9301b1
- Update slighthint patch to apply.
9301b1
9301b1
* Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-1
9301b1
- Update to 1.15.4
9301b1
- [Build]Require libthai[-devel]
9301b1
- Require pkgconfig in -devel
9301b1
- Remove "static libs" from -devel description, since we don't ship them.
9301b1
9301b1
* Fri Jan 12 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-5
9301b1
- Require pango = %%{version}-%%{release} in devel (previously didn't have
9301b1
  releaes).
9301b1
9301b1
* Thu Jan 11 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-4
9301b1
- Undo the posttrans change.  That's a no no.  We now regenerate the module
9301b1
  file in postun if there are any other pango versions left.  This should
9301b1
  take care of the problem in the future.
9301b1
9301b1
* Thu Jan 11 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-3
9301b1
- Move pango.modules generation to posttrans, to make sure modules available
9301b1
  in an older version but not this one are removed.
9301b1
- Resolves #222217
9301b1
9301b1
* Tue Jan 09 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-2
9301b1
- Update sources
9301b1
9301b1
* Tue Jan 09 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-1
9301b1
- Update to 1.15.3
9301b1
- Pass --with-included-modules=basic-fc.  Saves one page of memory per process.
9301b1
9301b1
* Thu Dec 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.15.2-1
9301b1
- Update to 1.15.2
9301b1
9301b1
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 1.15.1-1
9301b1
- Update to 1.15.1
9301b1
9301b1
* Fri Oct 20 2006 Matthias Clasen <mclasen@redhat.com> - 1.15.0-1
9301b1
- Update to 1.15.0
9301b1
9301b1
* Thu Oct 12 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.6-1
9301b1
- Update to 1.14.6
9301b1
9301b1
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.14.4-3
9301b1
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
9301b1
9301b1
* Mon Sep 25 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.4-2
9301b1
- Remove illegal g_object_unref().
9301b1
9301b1
* Fri Sep 15 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.4-1
9301b1
- Update to 1.14.4
9301b1
- Fixes bugs 198136, 306388, 206390
9301b1
- Remove upstreamed patch
9301b1
9301b1
* Tue Sep 12 2006 Matthias Clasen <mclasen@redhat.com> - 1.14.3-2
9301b1
- Fix Hangul decomposition issues (#206044)
9301b1
9301b1
* Mon Sep  4 2006 Matthias Clasen <mclasen@redhat.com> - 1.14.3-1
9301b1
- Update to 1.14.3
9301b1
9301b1
* Tue Aug 22 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.2-1
9301b1
- Update to 1.14.2
9301b1
9301b1
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.14.1-1.fc6
9301b1
- Update to 1.14.1
9301b1
9301b1
* Thu Aug 17 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.0-3
9301b1
- Bump glib requirement to 2.12.0. (bug #201586)
9301b1
9301b1
* Mon Aug 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.0-2
9301b1
- Incorrect sources in last update.  Fix.
9301b1
9301b1
* Mon Aug 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.0-1
9301b1
- Update to 1.14.0
9301b1
9301b1
* Wed Aug 02 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.13.5-1
9301b1
- Update to 1.13.5
9301b1
9301b1
* Thu Jul 27 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.13.4-2
9301b1
- Add umask 022 to post (#185419)
9301b1
9301b1
* Tue Jul 25 2006 Matthias Clasen <mclasen@redhat.com> - 1.13.4-1
9301b1
- Update to 1.13.4
9301b1
9301b1
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.13.3-1.1
9301b1
- rebuild
9301b1
9301b1
* Mon Jul 10 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.13.3-1
9301b1
- Update to 1.13.3
9301b1
9301b1
* Thu Jun 15 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.13.2-1
9301b1
- Update to 1.13.2
9301b1
9301b1
* Sun May 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.13.1-3
9301b1
- Add missing BuildRequires (#191958)
9301b1
9301b1
* Tue May 16 2006 Matthias Clasen <mclasen@redhat.com> - 1.13.1-2
9301b1
- Update to 1.13.1
9301b1
9301b1
* Mon May  8 2006 Matthias Clasen <mclasen@redhat.com> - 1.13.0-1
9301b1
- Update to 1.13.0
9301b1
9301b1
* Fri Apr  7 2006 Matthias Clasen <mclasen@redhat.com> - 1.12.1-2
9301b1
- Update to 1.12.1
9301b1
9301b1
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 1.12.0-1
9301b1
- Update to 1.12.0
9301b1
9301b1
* Sun Feb 26 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.99-1
9301b1
- Update to 1.11.99
9301b1
9301b1
* Tue Feb 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.6-1
9301b1
- Upate to 1.11.6
9301b1
- Drop upstreamed patches
9301b1
9301b1
* Fri Feb 17 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.5-2
9301b1
- Fix a crash in pango_split
9301b1
- Hide some private API
9301b1
9301b1
* Mon Feb 13 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.5-1
9301b1
- Update to 1.11.5
9301b1
9301b1
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.11.4-1.2
9301b1
- bump again for double-long bug on ppc(64)
9301b1
9301b1
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.11.4-1.1
9301b1
- rebuilt for new gcc4.1 snapshot and glibc changes
9301b1
9301b1
* Mon Feb  6 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.4-1
9301b1
- Update to 1.11.4
9301b1
9301b1
* Mon Jan 30 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.3-1
9301b1
- Update to 1.11.3
9301b1
9301b1
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.2-1
9301b1
- Update to 1.11.2
9301b1
9301b1
* Mon Dec 19 2005 Matthias Clasen <mclasen@redhat.com> - 1.11.1-2
9301b1
- BuildRequire cairo-devel
9301b1
9301b1
* Wed Dec 14 2005 Matthias Clasen <mclasen@redhat.com> - 1.11.1-1
9301b1
- Update to 1.11.1
9301b1
9301b1
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
9301b1
- rebuilt
9301b1
9301b1
* Wed Nov 30 2005 Matthias Clasen <mclasen@redhat.com> - 1.11.0-1
9301b1
- Update to 1.11.0
9301b1
9301b1
* Tue Nov 29 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.2-1
9301b1
- Update to 1.10.2
9301b1
9301b1
* Sun Nov 13 2005 Jeremy Katz <katzj@redhat.com> - 1.10.1-6
9301b1
- switch prereqs to modular X
9301b1
9301b1
* Fri Nov  4 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.1-5
9301b1
- Switch buildrequires to modular X.
9301b1
- Don't install .la files for modules.
9301b1
9301b1
* Thu Oct 27 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.1-2
9301b1
- Bump the requirement for glib (#165928)
9301b1
9301b1
* Mon Oct  3 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.1-1
9301b1
- Newer upstream version
9301b1
- Use the docs which are included in the tarball
9301b1
9301b1
* Wed Aug 17 2005 Owen Taylor <otaylor@redhat.com> - 1.10.0-1
9301b1
- Upgrade to 1.10.0
9301b1
9301b1
* Mon Aug 15 2005 Kristian Høgsberg <krh@redhat.com> 1.9.1-2
9301b1
- Patch out libpixman dependency.
9301b1
9301b1
* Thu Jul 28 2005 Owen Taylor <otaylor@redhat.com> 1.9.1-1
9301b1
- Update to 1.9.1
9301b1
9301b1
* Tue Jun 21 2005 Matthias Clasen <mclasen@redhat.com> 
9301b1
- Add a missing requires
9301b1
9301b1
* Tue Jun 21 2005 Matthias Clasen <mclasen@redhat.com> 1.9.0-1
9301b1
- Update to 1.9.0
9301b1
- Require cairo
9301b1
9301b1
* Fri Mar  4 2005 Owen Taylor <otaylor@redhat.com> - 1.8.1-1
9301b1
- Update to 1.8.1
9301b1
9301b1
* Tue Dec 21 2004 Matthias Clasen <mclasen@redhat.com> - 1.8.0-1
9301b1
- Version 1.8.0
9301b1
- Drop unneeded patches and hacks
9301b1
9301b1
* Wed Oct 20 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-7
9301b1
- Fix problem with pango_layout_get_attributes returning one too few items
9301b1
  (Needed to fix problems mentioned in #135656, 
9301b1
  http://bugzilla.gnome.org/show_bug.cgi?id=155912)
9301b1
9301b1
* Tue Oct 19 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-6
9301b1
- Make Hangul and Kana not backspace-deletes-char (#135356)
9301b1
9301b1
* Tue Oct 19 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-5
9301b1
- Fix problem in the last patch where we weren't getting the metrics from the 
9301b1
  right font description (#136428, Steven Lawrance)
9301b1
9301b1
* Mon Oct 18 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-4
9301b1
- Move place where we compute fontset metrics to fix problems with line 
9301b1
  height in CJK locales (#131218)
9301b1
9301b1
* Mon Oct 11 2004 Colin Walters <walters@redhat.com> - 1.6.0-3
9301b1
- BR xorg-x11-devel instead of XFree86-devel
9301b1
9301b1
* Mon Sep 20 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-2
9301b1
- Add patch from CVS to fix display of U+3000 (#132203,  
9301b1
  reported upstream by Suresh Chandrasekharan, Federic Zhang)
9301b1
9301b1
* Mon Sep 20 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-1
9301b1
- Version 1.6.0
9301b1
- Add patch from CVS to fix bitmap-fonts/no-hint problem (#129246)
9301b1
9301b1
* Wed Sep  8 2004 Jeremy Katz <katzj@redhat.com> - 1.5.2-3
9301b1
- fix running of pango-query-modules to have necessary libraries available
9301b1
  (#132052)
9301b1
9301b1
* Mon Aug 16 2004 Owen Taylor <otaylor@redhat.com> - 1.5.2-2
9301b1
- Fix crashes with left-matra fixups (#129982, Jatin Nansi)
9301b1
9301b1
* Mon Aug  2 2004 Owen Taylor <otaylor@redhat.com> - 1.5.2-1
9301b1
- Update to 1.5.2
9301b1
- Fix ppc/powerpc confusion when creating query-modules binary (#128645)
9301b1
9301b1
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
9301b1
- rebuilt
9301b1
9301b1
* Wed Mar 17 2004 Owen Taylor <otaylor@redhat.com> 1.4.0-2
9301b1
- Fix location for modules file on ppc/ppc64 (#114399)
9301b1
- Make the spec file check to avoid further mismatches
9301b1
9301b1
* Wed Mar 17 2004 Alex Larsson <alexl@redhat.com> 1.4.0-1
9301b1
- update to 1.4.0
9301b1
9301b1
* Wed Mar 10 2004 Mark McLoughlin <markmc@redhat.com> 1.3.6-1
9301b1
- Update to 1.3.6
9301b1
- Bump required glib2 to 2.3.1
9301b1
9301b1
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
9301b1
- rebuilt
9301b1
9301b1
* Tue Mar 02 2004 Mark McLoughlin <markmc@redhat.com> 1.3.5-1
9301b1
- Update to 1.3.5
9301b1
9301b1
* Wed Feb 25 2004 Mark McLoughlin <markmc@redhat.com> 1.3.3-1
9301b1
- Update to 1.3.3
9301b1
9301b1
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
9301b1
- rebuilt
9301b1
9301b1
* Fri Jan 23 2004 Jonathan Blandford <jrb@redhat.com> 1.3.2-1
9301b1
- new version
9301b1
- add man page
9301b1
9301b1
* Thu Dec 18 2003 Owen Taylor <otaylor@redhat.com> 1.2.5-4
9301b1
- Deal with autoconf changing -linux to -linux-gnu (#112387)
9301b1
9301b1
* Mon Dec  8 2003 Owen Taylor <otaylor@redhat.com> 1.2.5-3.0
9301b1
- Package pango-querymodules as pango-querymodules-{32,64}; look for 
9301b1
  pango.modules in an architecture-specific directory.
9301b1
  (Fixes #111511, Justin M. Forbes)
9301b1
9301b1
* Mon Sep  8 2003 Owen Taylor <otaylor@redhat.com> 1.2.5-2.0
9301b1
- Fix problem with corrupt Thai shaper
9301b1
9301b1
* Wed Aug 27 2003 Owen Taylor <otaylor@redhat.com> 1.2.5-1.1
9301b1
- Version 1.2.5
9301b1
9301b1
* Tue Aug 26 2003 Owen Taylor <otaylor@redhat.com> 1.2.4-1.1
9301b1
- Version 1.2.4
9301b1
9301b1
* Tue Jul  8 2003 Owen Taylor <otaylor@redhat.com> 1.2.3-2.0
9301b1
- Bump for rebuild
9301b1
9301b1
* Mon Jun  9 2003 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.2.3
9301b1
9301b1
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
9301b1
- rebuilt
9301b1
9301b1
* Mon Jun  2 2003 Owen Taylor <otaylor@redhat.com>
9301b1
- Use the right version-1.2.2 tarball
9301b1
9301b1
* Thu May 29 2003 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.2.2
9301b1
9301b1
* Thu Feb 13 2003 Tim Powers <timp@redhat.com> 1.2.1-3
9301b1
- remove deps on Xft and Xft-devel since XFree86 no longer has the
9301b1
  virtual prvodes. Instead, require XFree86-devel > 4.2.99
9301b1
9301b1
* Tue Feb 11 2003 Owen Taylor <otaylor@redhat.com>
9301b1
- Fix problem where language tag wasn't causing relookup of font (#84034)
9301b1
9301b1
* Sun Feb  2 2003 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.2.1
9301b1
9301b1
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
9301b1
- rebuilt
9301b1
9301b1
* Tue Jan 14 2003 Owen Taylor <otaylor@redhat.com>
9301b1
- Patch from CVS to synthesize GDEF tables for fonts
9301b1
  without them, like the Kacst fonts in fonts-arabic
9301b1
9301b1
* Thu Jan  9 2003 Owen Taylor <otaylor@redhat.com>
9301b1
- Make requires freetype, not freetype-devel (#81423)
9301b1
9301b1
* Tue Jan  7 2003 Owen Taylor <otaylor@redhat.com>
9301b1
- Update slighthint patch for freetype-2.1.3 (#81125)
9301b1
9301b1
* Fri Dec 20 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.2.0
9301b1
9301b1
* Mon Dec 16 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.1.6
9301b1
9301b1
* Wed Dec 11 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.1.5
9301b1
9301b1
* Tue Dec  3 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.1.4
9301b1
9301b1
* Thu Nov 21 2002 Havoc Pennington <hp@redhat.com>
9301b1
- change PKG_CONFIG_PATH hack to also search /usr/X11R6/lib64/pkgconfig
9301b1
9301b1
* Wed Nov 20 2002 Havoc Pennington <hp@redhat.com>
9301b1
- explicitly require pangoxft to be built, so we catch situations such
9301b1
  as xft.pc moving to /usr/X11R6
9301b1
- also add /usr/X11R6/lib/pkgconfig to PKG_CONFIG_PATH as a temporary 
9301b1
  hack
9301b1
9301b1
* Thu Nov  7 2002 Havoc Pennington <hp@redhat.com>
9301b1
- 1.1.3
9301b1
9301b1
* Thu Oct 31 2002 Owen Taylor <otaylor@redhat.com> 1.1.1-5
9301b1
- Require the necessary freetype version, don't just
9301b1
  BuildRequires it (#74744)
9301b1
9301b1
* Thu Oct 31 2002 Owen Taylor <otaylor@redhat.com> 1.1.1-4
9301b1
- Own /etc/pango (#73962, Enrico Scholz)
9301b1
- Remove .la files from the build root
9301b1
9301b1
* Mon Oct  7 2002 Havoc Pennington <hp@redhat.com>
9301b1
- require glib 2.0.6-3, try rebuild on more arches
9301b1
9301b1
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.1.1 (main change, fixes font selection for FT2 backend, 
9301b1
  as in gdmgreeter)
9301b1
9301b1
* Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Fix linked list manipulation problem that was causing hang for anaconda
9301b1
- Fix warning from loading mini-fonts with context == NULL
9301b1
9301b1
* Wed Aug 14 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Fix major memory leak in the last patch
9301b1
9301b1
* Tue Aug 13 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Actually use language tags at the rendering layer (should fix #68211)
9301b1
9301b1
* Mon Jul 15 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Remove fixed-ltmain.sh, relibtoolize; to fix relink problems without 
9301b1
- Fix bug causing hex boxes to be misrendered
9301b1
  leaving RPATH (#66005)
9301b1
- For FT2 backend, supply FT_LOAD_NO_BITMAP to avoid problems with 
9301b1
  fonts with embedded bitmaps (#67851)
9301b1
9301b1
* Mon Jul  8 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Make basic-x shaper work with our big-5 fonts
9301b1
9301b1
* Wed Jul  3 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- New upstream tarball with hooks for change-on-the fly font rendering
9301b1
9301b1
* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Up FreeType version to deal with FreeType-2.0.x / 2.1.x \
9301b1
  ABI changes for pango's OpenType code.
9301b1
9301b1
* Mon Jun 24 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Add some Korean aliases that the installer wants
9301b1
9301b1
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
9301b1
- automated rebuild
9301b1
9301b1
* Sat Jun  8 2002 Havoc Pennington <hp@redhat.com>
9301b1
- devel package requires fontconfig/Xft devel packages
9301b1
9301b1
* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
9301b1
- rebuild in different environment
9301b1
9301b1
* Thu Jun  6 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Snapshot with Xft2/fontconfig support
9301b1
9301b1
* Wed May 29 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.0.2
9301b1
- Patch for charmaps problem
9301b1
9301b1
* Sun May 26 2002 Tim Powers <timp@redhat.com>
9301b1
- automated rebuild
9301b1
9301b1
* Wed May 22 2002 Havoc Pennington <hp@redhat.com>
9301b1
- rebuild in different environment
9301b1
9301b1
* Wed May 22 2002 Havoc Pennington <hp@redhat.com>
9301b1
- add patch to adjust to newer version of freetype
9301b1
9301b1
* Wed Apr  3 2002 Alex Larsson <alexl@redhat.com>
9301b1
- Update to version 1.0.1, remove patch
9301b1
9301b1
* Tue Mar 19 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Patch from CVS for big speedup with FreeType-2.0.9
9301b1
9301b1
* Mon Mar 11 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Rebuild
9301b1
9301b1
* Fri Mar  8 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 1.0.0
9301b1
9301b1
* Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
9301b1
- Update to 0.26
9301b1
9301b1
* Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
9301b1
- Bump for rebuild
9301b1
9301b1
* Mon Feb 18 2002 Alex Larsson <alexl@redhat.com>
9301b1
- Update to 0.25
9301b1
9301b1
* Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
9301b1
- add horrible buildrequires hack
9301b1
9301b1
* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
9301b1
- 0.24.90 cvs snap
9301b1
9301b1
* Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 0.24
9301b1
9301b1
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
9301b1
- automated rebuild
9301b1
9301b1
* Wed Jan  2 2002 Havoc Pennington <hp@redhat.com>
9301b1
- new snap 0.23.90
9301b1
9301b1
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
9301b1
- rebuild with 64-bit-fixed glib
9301b1
9301b1
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
9301b1
- Version 0.22
9301b1
- add explicit check for required glib2 version before we do the build,
9301b1
  so we don't end up with bad RPMs on --nodeps builds
9301b1
- PreReq the glib2_version version, instead of 1.3.8 hardcoded that 
9301b1
  no one had updated recently
9301b1
9301b1
* Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
9301b1
- Version 0.21
9301b1
9301b1
* Thu Oct  4 2001 Havoc Pennington <hp@redhat.com>
9301b1
- cvs snap
9301b1
- new cvs snap with a bugfix
9301b1
9301b1
* Thu Sep 27 2001 Havoc Pennington <hp@redhat.com>
9301b1
- sync with Owen's changes, fix up dependency versions
9301b1
9301b1
* Wed Sep 19 2001 Havoc Pennington <hp@redhat.com>
9301b1
- 0.19
9301b1
9301b1
* Mon Sep 10 2001 Havoc Pennington <hp@redhat.com>
9301b1
- build CVS snap
9301b1
9301b1
* Wed Sep 05 2001 Havoc Pennington <hp@redhat.com>
9301b1
- no relinking junk
9301b1
9301b1
* Tue Sep  4 2001 root <root@dhcpd37.meridian.redhat.com>
9301b1
- Version 0.18
9301b1
9301b1
* Fri Jul 20 2001 Owen Taylor <otaylor@redhat.com>
9301b1
- Configure --disable-gtk-doc
9301b1
- BuildRequires freetype-devel, XFree86-devel
9301b1
9301b1
* Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
9301b1
- 0.17
9301b1
- libtool hackarounds
9301b1
9301b1
* Fri May 04 2001 Owen Taylor <otaylor@redhat.com>
9301b1
- 0.16, rename back to pango from pango-gtkbeta
9301b1
9301b1
* Fri Feb 16 2001 Owen Taylor <otaylor@redhat.com>
9301b1
- Obsolete fribidi-gtkbeta
9301b1
9301b1
* Mon Dec 11 2000 Havoc Pennington <hp@redhat.com>
9301b1
- Remove that patch I just put in
9301b1
9301b1
* Mon Dec 11 2000 Havoc Pennington <hp@redhat.com>
9301b1
- Patch pangox.pc.in to include -Iincludedir
9301b1
9301b1
* Fri Nov 17 2000 Owen Taylor <otaylor@redhat.com>
9301b1
- final 0.13
9301b1
9301b1
* Tue Nov 14 2000 Owen Taylor <otaylor@redhat.com>
9301b1
- New 0.13 tarball
9301b1
9301b1
* Mon Nov 13 2000 Owen Taylor <otaylor@redhat.com>
9301b1
- 0.13pre1
9301b1
9301b1
* Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
9301b1
- Rename to 0.12b to avoid versioning problems
9301b1
9301b1
* Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
9301b1
- Move to a CVS snapshot
9301b1
9301b1
* Fri Jul 07 2000 Owen Taylor <otaylor@redhat.com>
9301b1
- Move back to /usr
9301b1
- Version 0.12
9301b1
9301b1
* Mon Jun 19 2000  Owen Taylor <otaylor@redhat.com>
9301b1
- Add missing %%defattr
9301b1
9301b1
* Thu Jun 8 2000  Owen Taylor <otaylor@redhat.com>
9301b1
- Rebuild with a prefix of /opt/gtk-beta
9301b1
9301b1
* Wed May 31 2000 Owen Taylor <otaylor@redhat.com>
9301b1
- version 0.11
9301b1
- add --without-qt
9301b1
9301b1
* Wed Apr 26 2000 Owen Taylor <otaylor@redhat.com>
9301b1
- Make the devel package require *-gtkbeta-* not the normal packages.
9301b1
9301b1
* Tue Apr 25 2000 Owen Taylor <otaylor@redhat.com>
9301b1
- GTK+ snapshot version installing in /opt/gtk-beta
9301b1
9301b1
* Fri Feb 11 2000 Owen Taylor <otaylor@redhat.com>
9301b1
- Created spec file