f96064
%global gettext_package FontForge
1c70a4
%global gittag0 20200314
f96064
f96064
Name:           fontforge
1c70a4
Version:        20200314
1c70a4
Release:        5%{?dist}
f96064
Summary:        Outline and bitmap font editor
f96064
f96064
License:        GPLv3+
f96064
URL:            http://fontforge.github.io/
f96064
Source0:        https://github.com/fontforge/%{name}/archive/%{gittag0}.tar.gz#/%{name}-%{version}.tar.gz
1c70a4
1c70a4
# https://github.com/fontforge/fontforge/pull/4253
1c70a4
Patch0:         fontforge-20200314-Call-gdk_set_allowed_backends-before-gdk_init.patch
1c70a4
# https://github.com/fontforge/fontforge/pull/4257
1c70a4
Patch1:         fontforge-20200314-minor-backward-compatible-sphinx-changes.patch
Pablo Greco 170d56
f96064
Requires:       xdg-utils
f96064
Requires:       autotrace
f96064
Requires:       hicolor-icon-theme
f96064
1c70a4
BuildRequires:  gcc-c++
1c70a4
BuildRequires:  cmake
f96064
BuildRequires:  libjpeg-devel
f96064
BuildRequires:  libtiff-devel
f96064
BuildRequires:  libpng-devel
f96064
BuildRequires:  giflib-devel
f96064
BuildRequires:  libxml2-devel
f96064
BuildRequires:  freetype-devel
f96064
BuildRequires:  desktop-file-utils
f96064
BuildRequires:  libuninameslist-devel
f96064
BuildRequires:  libXt-devel
f96064
BuildRequires:  xorg-x11-proto-devel
f96064
BuildRequires:  gettext
f96064
BuildRequires:  pango-devel
f96064
BuildRequires:  cairo-devel
f96064
BuildRequires:  libspiro-devel
f96064
BuildRequires:  python3-devel
f96064
BuildRequires:  readline-devel
1c70a4
BuildRequires:  libappstream-glib
f96064
# F25 build is failing add following to fix
f96064
BuildRequires:  shared-mime-info
1c70a4
# F33 onward need now
1c70a4
BuildRequires:  gtk3-devel
1c70a4
BuildRequires:  python3-sphinx
f96064
f96064
%description
f96064
FontForge (former PfaEdit) is a font editor for outline and bitmap
f96064
fonts. It supports a range of font formats, including PostScript
f96064
(ASCII and binary Type 1, some Type 3 and Type 0), TrueType, OpenType
f96064
(Type2) and CID-keyed fonts.
f96064
f96064
%package devel
1c70a4
Summary: Development files for fontforge
1c70a4
Requires: %{name}%{?_isa} = %{version}-%{release}
f96064
Requires: %{name}-doc = %{version}-%{release}
f96064
f96064
%description devel
1c70a4
This package includes the library files you will need to compile
1c70a4
applications against fontforge.
f96064
f96064
%package doc
f96064
Summary: Documentation files for %{name}
f96064
BuildArch: noarch
f96064
f96064
%description doc
f96064
This package contains documentation files for %{name}.
f96064
f96064
f96064
%prep
1c70a4
%setup -q
1c70a4
%patch0 -p1
1c70a4
%patch1 -p1
1c70a4
1c70a4
# Remove tests that requires Internet access
1c70a4
sed -i '45d;83d;101d;102d;114d;115d;125d' tests/CMakeLists.txt
1c70a4
rm tests/test003.pe tests/test130.pe tests/test0101.py tests/test929.py
1c70a4
# Remove tests for s390x
1c70a4
rm tests/test0004.py tests/test1009.py tests/test1010.py
1c70a4
# Remove desktop-file-validate warning
1c70a4
sed -i '5d' desktop/org.fontforge.FontForge.desktop
f96064
f96064
%build
1c70a4
rm -rf build && mkdir build
1c70a4
pushd build
f96064
export CFLAGS="%{optflags} -fno-strict-aliasing"
f96064
1c70a4
%cmake .. -DCMAKE_BUILD_TYPE=Release
1c70a4
1c70a4
%{make_build}
1c70a4
popd
f96064
f96064
%install
1c70a4
pushd build
1c70a4
%{make_install}
1c70a4
popd
1c70a4
f96064
f96064
desktop-file-install \
f96064
  --dir $RPM_BUILD_ROOT%{_datadir}/applications            \
f96064
  --add-category X-Fedora                                  \
1c70a4
  desktop/org.fontforge.FontForge.desktop
f96064
f96064
# remove unneeded .la and .a files
f96064
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
f96064
find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} ';'
f96064
1c70a4
rm -f %{buildroot}%{_datadir}/doc/fontforge/{.buildinfo,.nojekyll}
1c70a4
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.appdata.xml
1c70a4
f96064
# Find translations
f96064
%find_lang %{gettext_package}
f96064
1c70a4
%check
1c70a4
pushd build
1c70a4
make check
1c70a4
popd
f96064
f96064
%files -f %{gettext_package}.lang
f96064
%doc AUTHORS
1c70a4
%license LICENSE COPYING.gplv3
f96064
%{_bindir}/*
f96064
%{_libdir}/lib*.so.*
1c70a4
%{_datadir}/applications/*FontForge.desktop
f96064
%{_datadir}/fontforge
1c70a4
%{_datadir}/icons/hicolor/*/apps/org.fontforge.FontForge*
f96064
%{_mandir}/man1/*.1*
1c70a4
%{_datadir}/pixmaps/org.fontforge.FontForge*
f96064
%{_datadir}/mime/packages/fontforge.xml
1c70a4
%{_metainfodir}/org.fontforge.FontForge.appdata.xml
f96064
%{python3_sitearch}/fontforge.so
f96064
%{python3_sitearch}/psMat.so
f96064
f96064
%files devel
f96064
%{_libdir}/lib*.so
f96064
f96064
%files doc
1c70a4
%doc %{_pkgdocdir}
f96064
f96064
%changelog
1c70a4
* Mon Dec 14 2020 Parag Nemade <pnemade AT redhat DOT com> - 20200314-5
1c70a4
- The %%find_lang should run as part of %%install only
1c70a4
1c70a4
* Mon Dec 07 2020 Parag Nemade <pnemade AT redhat DOT com> - 20200314-4
1c70a4
- Minor changes for backwards compatibility with older versions of Sphinx
1c70a4
  Resolves: rhbz#1646212
1c70a4
da3bdb
* Wed Apr 08 2020 Parag Nemade <pnemade AT redhat DOT com> - 20170731-15
1c70a4
- Resolves:rh#1821664 - out-of-bounds write in sfd.c
da3bdb
5581de
* Thu Jan 16 2020 Parag Nemade <pnemade AT redhat DOT com> - 20170731-14
1c70a4
- Resolves:rh#1790974 - out-of-bounds write in sfd.c
5581de
5035d3
* Sun Jun 02 2019 Parag Nemade <pnemade AT redhat DOT com> - 20170731-13
5035d3
- Resolves:rh#1665940 - harden the missing splinerefigure.c file
5035d3
5035d3
* Fri May 31 2019 Parag Nemade <pnemade AT redhat DOT com> - 20170731-12
5035d3
- Resolves:rh#1665940 - Fixed covscan patch to fix some font packages build
5035d3
5035d3
* Mon May 20 2019 Parag Nemade <pnemade AT redhat DOT com> - 20170731-11
5035d3
- Resolves:rh#1682233 - Fixed gating.yml rule
5035d3
5035d3
* Sat May 18 2019 Parag Nemade <pnemade AT redhat DOT com> - 20170731-10
5035d3
- Resolves:rh#1682233 - fontforge changes blocked until gating tests are added
b512da
5035d3
* Mon May 13 2019 Parag Nemade <pnemade AT redhat DOT com> - 20170731-9
5035d3
- Resolves:rh#1665940 - fontforge: Use after free during dejavu-fonts build
Pablo Greco 170d56
f96064
* Tue Oct 30 2018 Parag Nemade <pnemade AT redhat DOT com> - 20170731-8
f96064
- Resolves:rh#1644224 - fix some issues from covscan patch
f96064
f96064
* Sat Sep 22 2018 Parag Nemade <pnemade AT redhat DOT com> - 20170731-7
f96064
- Resolves:rh#1602497 - Fix some covscan issues
f96064
f96064
* Sun Feb 11 2018 Sandro Mani <manisandro@gmail.com> - 20170731-5
f96064
- Rebuild (giflib)
f96064
f96064
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20170731-4
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f96064
f96064
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 20170731-3
f96064
- Remove obsolete scriptlets
f96064
f96064
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20170731-2
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
f96064
f96064
* Mon Jul 31 2017 Parag Nemade <pnemade AT redhat DOT com> - 20170731-1
f96064
- Update to 20170731
f96064
f96064
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161012-7
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f96064
f96064
* Thu Mar 09 2017 Parag Nemade <pnemade AT redhat DOT com> - 20161012-6
f96064
- Resolves:rh#1429574 - [abrt] fontforge: PyFF_OpenFont(): fontforge killed by signal 6
f96064
- Added patch to fix python module for python3.6
f96064
f96064
* Sat Feb 18 2017 Parag Nemade <pnemade AT redhat DOT com> - 20161012-5
f96064
- Add missing BR: git
f96064
f96064
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161012-4
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
f96064
f96064
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 20161012-3
f96064
- Rebuild for readline 7.x
f96064
f96064
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 20161012-2
f96064
- Rebuild for Python 3.6
f96064
f96064
* Thu Oct 13 2016 Parag Nemade <pnemade AT redhat DOT com> - 20161012-1
f96064
- Update to 20161012
f96064
f96064
* Thu Oct 06 2016 Parag Nemade <pnemade AT redhat DOT com> - 20161005-1
f96064
- Update to 20161005
f96064
f96064
* Wed Oct 05 2016 Parag Nemade <pnemade AT redhat DOT com> - 20161004-1
f96064
- Update to 20161004
f96064
f96064
* Mon Oct 03 2016 Parag Nemade <pnemade AT redhat DOT com> - 20161001-1
f96064
- Update to 20161001
f96064
f96064
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20160404-4
f96064
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
f96064
f96064
* Thu Jul 07 2016 Parag Nemade <pnemade AT redhat DOT com> - 20160404-3
f96064
- Rebuild for new libuninameslist-20160701 build
f96064
- Add BuildRequires: shared-mime-info
f96064
- Add BuildRequires: gcc
f96064
f96064
* Wed Apr 06 2016 Parag Nemade <pnemade AT redhat DOT com> - 20160404-2
f96064
- Move from python2 to python3 support
f96064
f96064
* Tue Apr 05 2016 Parag Nemade <pnemade AT redhat DOT com> - 20160404-1
f96064
- Update to 20160404
f96064
f96064
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 20150824-2
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f96064
f96064
* Wed Aug 26 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150824-1
f96064
- Update to 20150824
f96064
- Follow https://fedoraproject.org/wiki/Packaging:SourceURL#Git_Tags
f96064
f96064
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20150612-2
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f96064
f96064
* Sat Jun 13 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150612-1
f96064
- Update to 20150612
f96064
f96064
* Fri May 01 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150430-1
f96064
- Update to 20150430
f96064
f96064
* Mon Mar 30 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150330-1
f96064
- Update to 20150330
f96064
- use %%license macro for LICENSE file
f96064
f96064
* Thu Mar 12 2015 Parag Nemade <pnemade AT redhat DOT com> - 20150228-1
f96064
- Update to 20150228
f96064
f96064
* Sun Feb 01 2015 Kevin Fenzi <kevin@scrye.com> 20141230-2
f96064
- Rebuild for new libspiro
f96064
f96064
* Sun Jan 04 2015 Kevin Fenzi <kevin@scrye.com> 20141230-1
f96064
- Update to 20141230
f96064
f96064
* Tue Sep 09 2014 Parag Nemade <pnemade AT redhat DOT com> - 20140813-3
f96064
- drop BR: python-ipython for aarch64 builds (rh#1139508)
f96064
f96064
* Mon Sep 08 2014 Parag Nemade <pnemade AT redhat DOT com> - 20140813-2
f96064
- Add gnulib source for bootstrap as koji don't have network
f96064
- Patch Makefile.am to use system uthash-devel
f96064
- We also need gnulib-devel
f96064
f96064
* Mon Sep 08 2014 Parag Nemade <pnemade AT redhat DOT com> - 20140813-1
f96064
- Update to fontforge 2.0 snapshot 20140813
f96064
- corrected some scriptlets as per packaging guidelines
f96064
- Added new subpackage -doc
f96064
f96064
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120731b-13
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
f96064
f96064
* Sat Aug 09 2014 Rex Dieter <rdieter@fedoraproject.org> 20120731b-12
f96064
- update mime scriptlet
f96064
f96064
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120731b-11
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f96064
f96064
* Mon Sep 02 2013 Parag Nemade <pnemade AT redhat DOT com> - 20120731b-10
f96064
- Revert previously added -Wstrict-aliasing cflags
f96064
- We actaully need -fno-strict-aliasing (rh#903288)
f96064
- Remove %%defattr() (rh#1003518)
f96064
- fontforge.xml should not be executable (rh#1003518)
f96064
f96064
* Thu Aug 22 2013 Parag Nemade <pnemade AT redhat DOT com> - 20120731b-9
f96064
- Added cflags -Wstrict-aliasing
f96064
- Fixed some compile-time errors from invalid Makefile rules
f96064
- Fixed bogus date in changelog
f96064
f96064
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120731b-8
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
f96064
f96064
* Mon Apr 15 2013 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-7
f96064
- Don't crash on PDFs with filters we can't understand. Fixes bug #906492
f96064
f96064
* Sat Mar 23 2013 Kevin Fenzi <kevin@scrye.com> 20120731b-6
f96064
- Add fix for aarch64 support. Fixes bug #925354
f96064
f96064
* Mon Feb 11 2013 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-5
f96064
- De-vendorize desktop installation
f96064
f96064
* Thu Feb 07 2013 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-4
f96064
- Patch for bug #902089, out-of-bounds errors while reading PDFs
f96064
f96064
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 20120731b-3
f96064
- rebuild due to "jpeg8-ABI" feature drop
f96064
f96064
* Tue Nov 27 2012 Kevin Fenzi <kevin@scrye.com> 20120731b-2
f96064
- Cosmetic cleanups for bug 880472
f96064
f96064
* Thu Aug 02 2012 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-1
f96064
- Update to 20120731b (problem with 64-bit builds in first release)
f96064
f96064
* Thu Aug 02 2012 Paul Flo Williams <paul@frixxon.co.uk> - 20120731-1
f96064
- Update to 20120731
f96064
f96064
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20110222-9
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f96064
f96064
* Sun May 06 2012 Kevin Fenzi <kevin@scrye.com> - 20110222-8
f96064
- Rebuild for new libtiff. 
f96064
f96064
* Sat Jan 28 2012 Parag Nemade <paragn AT fedoraproject.org> - 2011022-7
f96064
- Add patch for libpng15
f96064
f96064
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20110222-6
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f96064
f96064
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 20110222-5
f96064
- Rebuild for new libpng
f96064
f96064
* Thu Apr 07 2011 Parag Nemade <paragn AT fedoraproject.org> - 2011022-4
f96064
- Add patch for multilib. Fixes bug #694409
f96064
f96064
* Thu Mar 31 2011 Paul Flo Williams <paul@frixxon.co.uk> - 20110222-3
f96064
- Add patch for charview crash. Fixes bug #660376
f96064
f96064
* Thu Mar 17 2011 Kevin Fenzi <kevin@tummy.com> - 20110222-2
f96064
- Drop sources that are now upstream. Fixes bug #688470
f96064
f96064
* Tue Feb 22 2011 Kevin Fenzi <kevin@tummy.com> - 20110222-1
f96064
- Update to 20110222
f96064
f96064
* Wed Feb 16 2011 Kevin Fenzi <kevin@tummy.com> - 20100501-7
f96064
- Fix patch for python. Fixes bug #677917
f96064
- Add patch for unicode glyph crash. Fixes bug #631172
f96064
f96064
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20100501-6
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f96064
f96064
* Sat Dec 04 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-5
f96064
- Add patch for CVE-2010-4259
f96064
f96064
* Wed Jul 28 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-4
f96064
- Add patch to build with python 2.7
f96064
f96064
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 20100501-3
f96064
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
f96064
f96064
* Fri Jul 16 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-2
f96064
- Add patch for bug 536920
f96064
f96064
* Wed May 19 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-1
f96064
- Update to 20100501
f96064
f96064
* Fri Apr 30 2010 Kevin Fenzi <kevin@tummy.com> - 20100429-1
f96064
- Update to 20100429
f96064
f96064
* Sat Mar 20 2010 Kevin Fenzi <kevin@tummy.com> - 20090923-3
f96064
- Fix patch to fix python module (fixes #560277)
f96064
f96064
* Wed Dec 30 2009 Kevin Fenzi <kevin@tummy.com> - 20090923-2
f96064
- Add patch to fix relative paths for fontlint (fixes #530760)
f96064
f96064
* Sun Nov 01 2009 Kevin Fenzi <kevin@tummy.com> - 20090923-1
f96064
- Upgrade to 20090923
f96064
f96064
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20090622-2
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f96064
f96064
* Thu Jul 16 2009 Kevin Fenzi <kevin@tummy.com> - 20090622-1
f96064
- Upgrade to 20090622
f96064
f96064
* Thu Apr 16 2009 Kevin Fenzi <kevin@tummy.com> - 20090408-1
f96064
- Upgrade to 20090408
f96064
f96064
* Thu Apr 02 2009 Kevin Fenzi <kevin@tummy.com> - 20090224-2
f96064
- Apply patch for python modules loading (fixes #489109)
f96064
- use install -p to fix multiarch issue (fixes #480685)
f96064
f96064
* Thu Feb 26 2009 Kevin Fenzi <kevin@tummy.com> - 20090224-1
f96064
- Upgrade to 20090224
f96064
f96064
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20081224-3
f96064
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f96064
f96064
* Mon Feb 23 2009 Nicolas Mailhot <nim at fedoraproject dot org>
f96064
- 20081224-2
f96064
— global-ization
f96064
f96064
* Fri Feb 20 2009 Kevin Fenzi <kevin@tummy.com> - 20081224-1
f96064
- Upgrade to 20081224
f96064
- Enable python bindings
f96064
f96064
* Wed Jan 21 2009 Kevin Fenzi <kevin@tummy.com> - 20081215-4
f96064
- Add python-devel to BuildRequires
f96064
f96064
* Tue Dec 23 2008 Kevin Fenzi <kevin@tummy.com> - 20081215-3
f96064
- Add patch to fix buffer overflow. Fixes 471538
f96064
f96064
* Wed Dec 17 2008 Kevin Fenzi <kevin@tummy.com> - 20081215-2
f96064
- Add libspiro-devel to build with spiro
f96064
f96064
* Tue Dec 16 2008 Kevin Fenzi <kevin@tummy.com> - 20081215-1
f96064
- Upgrade to 20081215
f96064
- Build with cairo and pango
f96064
f96064
* Mon Dec 01 2008 Kevin Fenzi <kevin@tummy.com> - 20081117-1
f96064
- Upgrade to 20081117
f96064
f96064
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 20080927-2
f96064
- Rebuild for Python 2.6
f96064
f96064
* Sat Nov 08 2008 Nicolas Mailhot <nicolas.mailhot at laposte.net>
f96064
- 20080927-1
f96064
☢ quick & dirty version bump to start working on F11 font packages
f96064
⟲ time to forget about pfaedit
f96064
⤑ take care of rpmlint warnings
f96064
f96064
* Wed Sep 03 2008 Kevin Fenzi <kevin@tummy.com> - 20080828-1
f96064
- Upgrade to 20080828
f96064
- Add Requires on autotrace. Fixes 460668
f96064
- Confirm patch from 459451 is upstream here.
f96064
f96064
* Fri May 16 2008 Kevin Fenzi <kevin@tummy.com> - 20080429-1
f96064
- Upgrade to 20080429
f96064
f96064
* Mon Mar 24 2008 Kevin Fenzi <kevin@tummy.com> - 20080309-2
f96064
- Add mime info for .sfd files. Fixes 240669
f96064
f96064
* Mon Mar 17 2008 Kevin Fenzi <kevin@tummy.com> - 20080309-1
f96064
- Upgrade to 20080309
f96064
- Fixes bug 437833
f96064
f96064
* Mon Mar 03 2008 Kevin Fenzi <kevin@tummy.com> - 20080302-2
f96064
- Commit new sources
f96064
f96064
* Mon Mar 03 2008 Kevin Fenzi <kevin@tummy.com> - 20080302-1
f96064
- Update to upstream 20080302
f96064
f96064
* Sun Mar 02 2008 Kevin Fenzi <kevin@tummy.com> - 20080203-2
f96064
- Change Requires from htmlview to xdg-utils (bz 312691)
f96064
f96064
* Sat Mar 01 2008 Kevin Fenzi <kevin@tummy.com> - 20080203-1
f96064
- Update to upstream 20080203
f96064
- Add new devel subpackage
f96064
f96064
* Sun Dec 02 2007 Roozbeh Pournader <roozbeh@farsiweb.info> - 20071110-1
f96064
- Update to upstream 20071110
f96064
f96064
* Sun Oct 21 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
f96064
☢ 20071002-1
f96064
⚠ quick & dirty version bump to start working on F9 font packages
f96064
f96064
* Sun Aug 26 2007 Kevin Fenzi <kevin@tummy.com> - 20070511-2
f96064
- Rebuild for BuildID
f96064
f96064
* Thu Jun  7 2007 Kevin Fenzi <kevin@tummy.com> - 20070511-1
f96064
- Update to upstream 20070511
f96064
- Remove some leftover CVS bits
f96064
- Remove useless .pc file.
f96064
f96064
* Fri Dec 22 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20061220-1
f96064
- Update to upstream 20061220
f96064
f96064
* Sat Dec 09 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20061025-2
f96064
- Add patch to fix fsSelection problem with DejaVu ExtraLight
f96064
f96064
* Sat Nov 25 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20061025-1
f96064
- Update to 20061025
f96064
- Patch to correct usFirstCharIndex (George Williams)
f96064
f96064
* Fri Oct 20 2006 Kevin Fenzi <kevin@tummy.com> - 20061019-1
f96064
- Update to 20061019
f96064
f96064
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 20060822-2
f96064
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
f96064
f96064
* Thu Sep 21 2006 Kevin Fenzi <kevin@tummy.com> - 20060822-1
f96064
- Update to 20060822
f96064
- Remove unneeded patch
f96064
- Add flag to compile right with giflib
f96064
f96064
* Sun Jun 18 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-7
f96064
- Add BuildRequires on gettext, to make sure the package builds in minimal
f96064
  mock environments
f96064
f96064
* Mon Feb 13 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-6
f96064
- Rebuild for Fedora Extras 5
f96064
f96064
* Sun Feb 12 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-5
f96064
- Add patch to fix crash (#181052, George Williams)
f96064
f96064
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-4
f96064
- Add "BuildRequires:" on libXt-devel and xorg-x11-proto-devel
f96064
f96064
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-3
f96064
- Really remove XFree86-devel BuildReq
f96064
f96064
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-2
f96064
- Remove XFree86-devel BuildReq
f96064
f96064
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-1
f96064
- Update to 20060125 (bug #170177)
f96064
- Update docs to 20060114
f96064
- Change versioning to reflect upstream and follow packaging guidelines
f96064
- Provide pfaedit (bug #176548)
f96064
- Use %%{?dist} tag (bug #176472)
f96064
- Add localizations
f96064
- No need to remove CVS subdir: fixed upstream
f96064
- No need to covert man pages to UTF-8: fixed upstream
f96064
- Fixed DOS line terminators
f96064
- Use parallel build
f96064
f96064
* Sat Jul 30 2005 Owen Taylor <otaylor@redhat.com> - 0.0-2.20050729.fc4
f96064
- Update to 20050729
f96064
- Remove .docview patch, looking for HTMLview is upstream so no longer needed
f96064
f96064
* Tue May 10 2005 Owen Taylor <otaylor@redhat.com> - 0.0-2.20050502.fc4
f96064
- Update to 20050502
f96064
- Fix the build to look for the docs where we install them
f96064
f96064
* Sat Mar 19 2005 Owen Taylor <otaylor@redhat.com> - 0.0-2.20050310
f96064
- Update to 20050310
f96064
f96064
* Sat Jan 29 2005 Ville Skyttä <ville.skytta at iki.fi> - 0:0.0-2.20041231
f96064
- Avoid RPATH.
f96064
- Convert man pages to UTF-8.
f96064
- Fix pkgconfig and doc file permissions.
f96064
- Use updated upstream icon.
f96064
- Don't include installation documentation.
f96064
f96064
* Mon Jan 17 2005 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-1.20041231
f96064
- Updated to 20041231.
f96064
f96064
* Thu Oct 28 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20041014
f96064
- Updated to 20041014.
f96064
f96064
* Sun Sep 19 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040824
f96064
- Updated to 20040824.
f96064
f96064
* Wed Jun 30 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040618
f96064
- Updated to 20040618.
f96064
f96064
* Wed Jun  2 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040601
f96064
- Updated to 20040601.
f96064
f96064
* Tue May 11 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040509
f96064
- Updated to 20040509.
f96064
f96064
* Thu Apr 15 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040410
f96064
- Updated to 20040410.
f96064
f96064
* Sun Mar 28 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040321
f96064
- Updated to 20040321.
f96064
- Changed package name from pfaedit to fontforge.
f96064
- Added Obsoletes: pfaedit.
f96064
f96064
* Mon Mar 15 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.8.040310
f96064
- Updated to 040310.
f96064
f96064
* Sat Feb  7 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.8.040204
f96064
- Updated to 040204.
f96064
- Removed some unnecessary directory ownerships (bug 1061).
f96064
f96064
* Sun Jan 25 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.8.040111
f96064
- Updated documentation to 040111.
f96064
f96064
* Sun Jan 11 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.040111
f96064
- Updated to 040111.
f96064
- Converted spec file to UTF-8.
f96064
f96064
* Wed Jan  7 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.040102
f96064
- Updated to 040102.
f96064
f96064
* Sat Dec 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.031210
f96064
- Updated to 031210.
f96064
f96064
* Sat Dec 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.031205
f96064
- Updated to 031205.
f96064
f96064
* Fri Nov 28 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.031123
f96064
- Updated to 031123.
f96064
f96064
* Wed Nov 12 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.6.031110
f96064
- Updated to 031110.
f96064
- Eliminated build patch; incorporated in upstream tarball.
f96064
- Re-added documentation tarball since no longer included in source tarball.
f96064
- Added pfaicon.gif as Packaging directory disappeared from tarball.
f96064
f96064
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.5.031012
f96064
- Refetched sources since upstream suddenly decided to change them (bug 497).
f96064
f96064
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.4.031012
f96064
- Build req libuninameslist-devel instead of libuninameslist.
f96064
f96064
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.3.031012
f96064
- Fixed non-standard value in desktop file (bug 497).
f96064
- Added libuninameslist support.
f96064
- Removed separate documentation tarball; mostly identical to those in source (bug 497).
f96064
f96064
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.2.031012
f96064
- Patched to use dynamic linking instead of dlopen'ing (bug 497).
f96064
- Patched to use htmlview and use installed documentation (bug 497).
f96064
- Added build req libxml2-devel (bug 497).
f96064
- Disabled parallell make (bug 497).
f96064
- Added desktop entry (bug 497).
f96064
f96064
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.031012
f96064
- Updated to 031012.
f96064
- Removed .so links.
f96064
- Removed empty AUTHORS file.
f96064
- Removed the samples subpackage.
f96064
f96064
* Mon Sep 22 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030904
f96064
- Updated to 030904.
f96064
f96064
* Wed Sep  3 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030831
f96064
- Updated to 030831.
f96064
f96064
* Tue Aug 12 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030803
f96064
- Updated to 030803.
f96064
f96064
* Mon Jul 21 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.3.030702
f96064
- Added font samples.
f96064
- Added ldconfig to post and postun.
f96064
- Added samples subpackage.
f96064
f96064
* Sun Jul  6 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.2.030702
f96064
- Removed README-MS and README-MacOSX from documentation.
f96064
f96064
* Thu Jul  3 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030512
f96064
- Initial RPM release based on Mandrake's PfaEdit-030512 RPM.